:root {
  --ink: #07162d;
  --ink-2: #0c2344;
  --blue: #0b46a0;
  --blue-bright: #1768e0;
  --blue-deep: #052a68;
  --yellow: #ffd100;
  --yellow-2: #f4bd00;
  --paper: #f5f7fa;
  --white: #ffffff;
  --muted: #647084;
  --line: rgba(7, 22, 45, .14);
  --shadow: 0 18px 45px rgba(0, 14, 42, .14);
  --shell: min(1180px, calc(100% - 40px));
  --font-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.shell { width: var(--shell); margin-inline: auto; }

.utility-bar {
  background: #020b19;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  letter-spacing: .02em;
}
.utility-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.utility-inner p { margin: 0; }
.utility-inner strong { color: var(--white); }
.utility-links { display: flex; align-items: center; gap: 12px; }
.utility-links a { text-decoration: none; }
.utility-links a:hover { color: var(--white); }
.rating-stars { color: var(--yellow); letter-spacing: 1px; margin-right: 5px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  color: var(--ink);
  border-bottom: 1px solid rgba(7,22,45,.12);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  flex: none;
}
.brand-logo {
  display: block;
  width: 205px;
  height: auto;
  max-width: min(205px, 32vw);
  object-fit: contain;
}
.footer-brand {
  padding: 7px 10px;
  background: var(--white);
}
.footer-logo {
  width: 205px;
  height: auto;
  max-width: 205px;
}
.primary-nav { display: flex; align-items: center; gap: 27px; }
.primary-nav > a:not(.button) {
  position: relative;
  color: rgba(7,22,45,.72);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--yellow);
  transition: right .2s ease;
}
.primary-nav > a:not(.button):hover { color: var(--blue); }
.primary-nav > a:not(.button):hover::after { right: 0; }
.primary-nav .nav-call { color: var(--blue) !important; }
.nav-toggle { display: none; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--yellow);
  border-radius: 2px;
  background: var(--yellow);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .015em;
  cursor: pointer;
  box-shadow: inset 0 -4px 0 rgba(7,22,45,.11);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: #ffe04a; border-color: #ffe04a; }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 3px solid rgba(255,209,0,.65);
  outline-offset: 3px;
}
.button-small { min-height: 42px; padding-inline: 16px; font-size: 12px; }
.button-light { background: var(--white); border-color: var(--white); color: var(--ink); box-shadow: none; }
.button-light:hover { background: var(--yellow); border-color: var(--yellow); }
.button-outline { background: transparent; border-color: rgba(255,255,255,.4); color: var(--white); box-shadow: none; }
.button-outline:hover { background: var(--white); border-color: var(--white); color: var(--ink); }
.button-ghost { background: transparent; border-color: rgba(255,255,255,.3); color: var(--white); box-shadow: none; }
.button-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--white); }

 .hero {
  position: relative;
  min-height: 690px;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url('/workshop-lift.webp');
  background-size: cover;
  background-position: center 48%;
  filter: saturate(.82) contrast(1.04);
  transform: scale(1.01);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(3,12,27,.97) 0%, rgba(3,13,30,.88) 46%, rgba(4,18,43,.58) 72%, rgba(4,17,39,.72) 100%);
}
.hero-layout {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .72fr);
  align-items: center;
  gap: clamp(48px, 6vw, 90px);
  padding-block: 68px;
}
.hero-copy { max-width: 720px; }
.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}
.eyebrow span { width: 28px; height: 3px; background: var(--yellow); }
.eyebrow.dark { color: var(--blue); }
.hero h1,
.section-heading h2,
.specialist-content h2,
.experience-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .98;
}
.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 5.2vw, 76px);
  text-transform: none;
}
.hero-lead {
  max-width: 650px;
  margin: 25px 0 0;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.6;
  color: rgba(255,255,255,.76);
}
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}
.text-link svg { width: 19px; height: 19px; fill: currentColor; }
.text-link:hover { color: var(--yellow); }
.hero-reputation {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  color: rgba(255,255,255,.7);
}
.review-badge { display: flex; align-items: center; gap: 10px; }
.review-badge strong { color: var(--white); font-size: 13px; }
.proof-divider { width: 1px; height: 28px; background: rgba(255,255,255,.22); }
.hero-reputation p { margin: 0; font-size: 12px; }

.booking-card {
  align-self: center;
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  border-top: 4px solid var(--blue);
  box-shadow: 0 22px 60px rgba(0, 10, 32, .24);
}
.booking-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.form-kicker { margin: 0 0 4px; color: var(--blue); text-transform: uppercase; font-size: 9px; font-weight: 950; letter-spacing: .16em; }
.booking-card h2 { margin: 0; font-family: var(--font-display); font-size: 30px; letter-spacing: -.02em; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 7px 9px;
  background: #edf7f1;
  color: #166033;
  border: 1px solid #cce9d6;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.status-pill i { width: 7px; height: 7px; background: #22a255; border-radius: 50%; }
.booking-intro { margin: 10px 0 20px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.field { display: grid; gap: 6px; min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field > span { color: #394861; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cbd3df;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 10px 11px;
  font-size: 13px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input, .field select { height: 43px; }
.field textarea { resize: vertical; min-height: 72px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #9eabba; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,70,160,.1); outline: none; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #bd2c2c; box-shadow: 0 0 0 3px rgba(189,44,44,.08); }
.honey { position: absolute !important; left: -9999px !important; }
.submit-button { width: 100%; margin-top: 15px; }
.submit-button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.submit-button:hover svg { transform: translateX(4px); }
.submit-button[disabled] { opacity: .62; cursor: wait; transform: none; }
.booking-contact-line { display: flex; justify-content: center; gap: 6px; margin-top: 11px; color: #748095; font-size: 10px; }
.booking-contact-line a { color: var(--blue); font-weight: 800; text-decoration: none; }
.form-status { display: none; margin-top: 12px; padding: 11px 12px; font-size: 12px; font-weight: 700; border-left: 3px solid transparent; }
.form-status.is-success { display: block; color: #12522e; background: #e8f6ed; border-color: #2ba65a; }
.form-status.is-error { display: block; color: #7b1b1b; background: #fbeaea; border-color: #c83b3b; }

.trust-strip { background: var(--blue); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 132px; padding: 25px 25px 22px; border-right: 1px solid rgba(255,255,255,.17); }
.trust-grid > div:first-child { border-left: 1px solid rgba(255,255,255,.17); }
.trust-grid span { display: block; margin-bottom: 10px; color: var(--yellow); font-family: var(--font-display); font-size: 13px; font-weight: 900; }
.trust-grid strong { display: block; font-family: var(--font-display); font-size: 18px; text-transform: uppercase; letter-spacing: -.01em; }
.trust-grid small { display: block; margin-top: 7px; color: rgba(255,255,255,.67); font-size: 11px; line-height: 1.4; }

.section { padding: 110px 0; }
.services-section { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,.55fr); gap: 80px; align-items: end; margin-bottom: 52px; }
.section-heading h2, .experience-copy h2 { font-size: clamp(48px, 5.5vw, 76px); }
.section-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 295px; display: flex; flex-direction: column; padding: 28px 25px; background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.service-card:hover { z-index: 1; transform: translateY(-5px); box-shadow: 0 20px 45px rgba(6,31,71,.12); }
.service-card.featured { background: var(--ink); color: var(--white); grid-row: span 1; min-height: 295px; }
.service-number { color: var(--blue); font-family: var(--font-display); font-weight: 900; font-size: 12px; letter-spacing: .08em; }
.featured .service-number { color: var(--yellow); }
.service-icon { margin: 20px 0 26px; }
.service-icon svg { width: 72px; fill: none; stroke: var(--yellow); stroke-width: 2; }
.service-card h3 { margin: 38px 0 12px; font-family: var(--font-display); font-size: 22px; line-height: 1.05; text-transform: uppercase; }
.service-card.featured h3 { margin-top: 0; font-size: 22px; }
.service-card p { margin: 0 0 28px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.service-card.featured p { color: rgba(255,255,255,.68); }
.service-card a { margin-top: auto; color: var(--blue); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; text-underline-offset: 5px; }
.service-card.featured a { color: var(--yellow); }

.specialist-section { display: grid; grid-template-columns: minmax(380px,.88fr) minmax(0,1.12fr); background: var(--ink); color: var(--white); }
.specialist-image { position: relative; min-height: 790px; overflow: hidden; }
.specialist-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; filter: saturate(.78) contrast(1.05); }
.specialist-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(2,9,22,.77)); }
.image-label { position: absolute; z-index: 1; left: clamp(24px,5vw,74px); right: 24px; bottom: 48px; }
.image-label span { display: block; color: var(--yellow); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .17em; }
.image-label strong { display: block; margin-top: 11px; font-family: var(--font-display); font-size: clamp(33px,4vw,53px); line-height: .95; text-transform: uppercase; }
.specialist-content { display: flex; flex-direction: column; justify-content: center; padding: 90px clamp(40px,8vw,120px); background: var(--ink); }
.specialist-content h2 { max-width: 780px; font-size: clamp(50px,5.4vw,82px); }
.large-copy { max-width: 760px; margin: 30px 0 38px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.65; }
.capability-list { margin-bottom: 37px; border-top: 1px solid rgba(255,255,255,.15); }
.capability-list > div { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.capability-list > div > span { color: var(--yellow); font-family: var(--font-display); font-weight: 900; }
.capability-list strong { display: block; font-family: var(--font-display); font-size: 18px; text-transform: uppercase; }
.capability-list p { margin: 5px 0 0; color: rgba(255,255,255,.58); font-size: 12px; }
.specialist-content .button { align-self: flex-start; }

.experience-section { background: var(--white); }
.experience-grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(400px,.8fr); gap: 110px; align-items: start; }
.experience-copy { position: sticky; top: 125px; }
.experience-copy p:not(.eyebrow) { max-width: 570px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.dark-link { color: var(--blue); margin-top: 14px; }
.process-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 66px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--blue); font-family: var(--font-display); font-size: 19px; font-weight: 900; }
.process-list strong { display: block; font-family: var(--font-display); font-size: 25px; text-transform: uppercase; }
.process-list p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }

.review-section { padding: 100px 0; color: var(--white); background: linear-gradient(115deg, #0b46a0, #062864 75%); }
.review-layout { display: grid; grid-template-columns: minmax(280px,.7fr) minmax(0,1.3fr); gap: 100px; align-items: center; }
.giant-score { display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(82px,10vw,150px); line-height: .72; letter-spacing: -.07em; color: var(--yellow); }
.rating-stars.large { margin-top: 25px; font-size: 22px; }
.review-score > strong { display: block; margin-top: 8px; font-family: var(--font-display); font-size: 23px; text-transform: uppercase; }
.review-score p { max-width: 430px; color: rgba(255,255,255,.67); font-size: 13px; }
.review-score .button { margin-top: 18px; }
.review-quote { margin: 0; padding-left: clamp(0px,4vw,60px); border-left: 1px solid rgba(255,255,255,.22); }
.review-quote > svg { width: 60px; fill: var(--yellow); }
.review-quote > p { margin: 26px 0 32px; font-family: var(--font-display); font-size: clamp(31px,3.8vw,53px); line-height: 1.08; text-transform: uppercase; letter-spacing: -.025em; }
.review-quote footer { display: flex; flex-direction: column; gap: 3px; }
.review-quote footer strong { font-size: 13px; }
.review-quote footer span { color: rgba(255,255,255,.6); font-size: 11px; }

.workshop-section { background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: 1.35fr .65fr 1fr; grid-template-rows: 330px 330px; gap: 14px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; background: var(--ink); }
.gallery-wide { grid-column: 1 / 3; }
.gallery-tall { grid-column: 3; grid-row: 1 / 3; }
.gallery-standard:nth-of-type(3) { grid-column: 1; }
.gallery-standard:nth-of-type(4) { grid-column: 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .3s ease; }
.gallery-grid figure:hover img { transform: scale(1.035); filter: saturate(1.08); }
.gallery-grid figcaption { position: absolute; left: 0; bottom: 0; padding: 11px 14px; background: var(--yellow); color: var(--ink); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.gallery-tall img { object-position: center; }

.contact-section { position: relative; padding: 100px 0; background: #020b19; color: var(--white); overflow: hidden; }
.contact-layout { position: relative; display: grid; grid-template-columns: minmax(0,1fr) minmax(420px,.75fr); gap: 100px; align-items: end; }
.contact-copy h2 { max-width: 650px; font-size: clamp(58px,7vw,96px); }
.contact-copy > p:not(.eyebrow) { max-width: 610px; color: rgba(255,255,255,.68); font-size: 17px; }
.contact-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.contact-details { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }
.contact-details > * { min-height: 132px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); text-decoration: none; }
.contact-details a:hover { background: rgba(255,255,255,.05); }
.contact-details span { color: var(--yellow); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.contact-details strong { font-family: var(--font-display); font-size: 18px; line-height: 1.2; text-transform: uppercase; overflow-wrap: anywhere; }

.site-footer { padding: 54px 0 25px; background: var(--ink); color: var(--white); border-top: 1px solid rgba(255,255,255,.1); }
.footer-grid { display: grid; grid-template-columns: 250px 1fr auto; align-items: center; gap: 60px; }
.footer-grid > p { max-width: 580px; color: rgba(255,255,255,.55); font-size: 12px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 11px; font-weight: 800; text-decoration: none; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { margin-top: 38px; padding-top: 22px; display: flex; justify-content: space-between; color: rgba(255,255,255,.42); border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }
.footer-bottom strong { color: rgba(255,255,255,.75); }
.mobile-actions { display: none; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .primary-nav { gap: 18px; }
  .primary-nav > a:not(.button) { font-size: 12px; }
  .primary-nav .nav-call { display: none; }
  .hero-layout { grid-template-columns: minmax(0,1fr) minmax(420px,.72fr); gap: 42px; }
  .service-grid { grid-template-columns: repeat(3,1fr); }
  .service-card.featured { grid-row: span 1; min-height: 295px; }
  .service-icon { margin: 40px 0 20px; }
  .specialist-content { padding-inline: 60px; }
  .contact-layout { gap: 60px; }
}

@media (max-width: 920px) {
  :root { --shell: min(100% - 32px, 760px); }
  .utility-links { display: none; }
  .utility-inner { justify-content: center; }
  .nav-toggle { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
  .nav-toggle span:not(.sr-only) { width: 24px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 16px 18px; background: var(--white); border-top: 1px solid rgba(7,22,45,.1); box-shadow: 0 20px 30px rgba(0,0,0,.14); }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.button) { padding: 14px 8px; font-size: 14px; border-bottom: 1px solid rgba(7,22,45,.08); }
  .primary-nav > a:not(.button)::after { display: none; }
  .primary-nav .nav-call { display: block; }
  .primary-nav .button { margin-top: 12px; }
  .hero { min-height: 0; }
  .hero-media { background-position: 58% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(3,12,27,.92) 0%, rgba(3,14,32,.86) 50%, rgba(3,14,32,.94) 100%); }
  .hero-layout { min-height: 0; grid-template-columns: 1fr; padding-block: 72px; }
  .hero-copy { max-width: 730px; }
  .booking-card { width: 100%; max-width: 680px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid > div:nth-child(3) { border-left: 1px solid rgba(255,255,255,.17); }
  .section { padding: 86px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .specialist-section { grid-template-columns: 1fr; }
  .specialist-image { min-height: 620px; }
  .specialist-content { padding: 80px max(24px, calc((100vw - 760px)/2)); }
  .experience-grid { grid-template-columns: 1fr; gap: 55px; }
  .experience-copy { position: static; }
  .review-layout { grid-template-columns: 1fr; gap: 58px; }
  .review-quote { padding: 50px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.22); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 300px 360px; }
  .gallery-wide { grid-column: 1 / 3; }
  .gallery-tall { grid-column: 2; grid-row: 2 / 4; }
  .gallery-standard:nth-of-type(3) { grid-column: 1; grid-row: 2; }
  .gallery-standard:nth-of-type(4) { grid-column: 1; grid-row: 3; }
  .contact-layout { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 24px); }
  html { scroll-padding-top: 76px; }
  body { padding-bottom: 60px; }
  .utility-bar { display: none; }
  .nav-wrap { min-height: 76px; }
  .brand-logo { width: 172px; height: auto; max-width: 58vw; }
  .footer-logo { width: 185px; height: auto; max-width: 185px; }
  .hero-layout { padding-block: 56px 48px; gap: 42px; }
  .hero h1 { font-size: clamp(42px,12vw,58px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .hero-actions .text-link { justify-content: center; }
  .hero-reputation { align-items: flex-start; flex-direction: column; gap: 10px; margin-top: 32px; }
  .proof-divider { display: none; }
  .booking-card { padding: 22px 17px; }
  .booking-head { align-items: flex-start; flex-direction: column; gap: 9px; }
  .booking-card h2 { font-size: 27px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div, .trust-grid > div:first-child, .trust-grid > div:nth-child(3) { min-height: 0; border-left: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .section { padding: 72px 0; }
  .section-heading h2, .experience-copy h2 { font-size: 45px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card.featured { min-height: 280px; }
  .service-icon { display: none; }
  .specialist-image { min-height: 520px; }
  .specialist-content { padding: 70px 20px; }
  .specialist-content h2 { font-size: 48px; }
  .large-copy { font-size: 16px; }
  .capability-list > div { grid-template-columns: 36px 1fr; }
  .process-list li { grid-template-columns: 46px 1fr; }
  .review-section { padding: 75px 0; }
  .review-quote > p { font-size: 31px; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 300px); }
  .gallery-wide, .gallery-tall, .gallery-standard:nth-of-type(3), .gallery-standard:nth-of-type(4) { grid-column: 1; grid-row: auto; }
  .contact-section { padding: 78px 0; }
  .contact-copy h2 { font-size: 56px; }
  .contact-actions { flex-direction: column; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-details > * { min-height: 110px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
  .mobile-actions { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200; height: 60px; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); box-shadow: 0 -8px 25px rgba(0,0,0,.22); }
  .mobile-actions a { display: grid; place-items: center; color: var(--white); text-decoration: none; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
  .mobile-actions a:last-child { background: var(--yellow); color: var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
