:root {
  --black: #080808;
  --black-soft: #0d0d0d;
  --surface: #121212;
  --surface-up: #181818;
  --bone: #ece8e1;
  --silver: #b4b1ac;
  --steel: #777570;
  --red: #c8171e;
  --red-dark: #981118;
  --border: rgba(255, 255, 255, .13);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-tech: "Barlow Condensed", sans-serif;
  --shell: min(100% - 4rem, 94rem);
  --section-space: clamp(7.5rem, 11vw, 11rem);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; overflow-x: hidden; background: var(--black); color: var(--bone); font-family: var(--font-body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
body.menu-open .site-header { border-color: transparent; background: var(--black); backdrop-filter: none; }
img { display: block; max-width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
:focus-visible { outline: 2px solid var(--bone); outline-offset: 3px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { margin-bottom: 0; color: var(--bone); font-family: var(--font-display); font-weight: 500; line-height: .96; letter-spacing: -.055em; }
h2 { font-size: clamp(3.4rem, 6.5vw, 7rem); }
p { color: var(--silver); }
section, [id] { scroll-margin-top: 5.5rem; }
.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding-block: var(--section-space); }
.eyebrow, .technical-label { margin-bottom: 1.25rem; color: var(--red); font-family: var(--font-tech); font-size: .74rem; font-weight: 600; letter-spacing: .2em; line-height: 1.2; text-transform: uppercase; }
.skip-link { position: fixed; z-index: 1000; top: .75rem; left: .75rem; padding: .75rem 1rem; background: var(--bone); color: var(--black); transform: translateY(-180%); transition: transform .2s; }
.skip-link:focus { transform: none; }
.top-anchor { position: absolute; top: 0; left: 0; width: 1px; height: 1px; pointer-events: none; }

.site-header { position: fixed; z-index: 100; top: 0; right: 0; left: 0; border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, backdrop-filter .3s; }
.site-header.is-scrolled { border-color: var(--border); background: rgba(8, 8, 8, .96); backdrop-filter: none; }
.nav-shell { display: flex; min-height: 5.5rem; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { position: relative; z-index: 102; display: block; width: 12.5rem; flex: none; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(1.3rem, 2.4vw, 2.5rem); }
.site-nav > a:not(.nav-cta) { position: relative; color: var(--silver); font-family: var(--font-tech); font-size: .72rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; transition: color .25s; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -.55rem; left: 0; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.site-nav > a:not(.nav-cta):hover { color: var(--bone); }
.site-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta, .button { display: inline-flex; min-height: 3rem; padding: .75rem 1.1rem; border-radius: 999px; align-items: center; justify-content: center; gap: 1.5rem; font-family: var(--font-tech); font-size: .72rem; font-weight: 600; letter-spacing: .15em; line-height: 1; text-transform: uppercase; transition: color .25s, background .25s, border-color .25s, transform .25s var(--ease); }
.nav-cta { background: var(--bone); color: var(--black); }
.nav-cta:hover, .button-primary:hover { background: white; transform: translateY(-2px); }
.mobile-book, .menu-toggle { display: none; }

.opening-chapter { position: relative; isolation: isolate; }
.hero { --hero-shift: 0px; position: sticky; z-index: 0; top: 0; height: 100svh; min-height: 42rem; padding: 0; overflow: hidden; isolation: isolate; background: var(--black); }
.hero::before { content: ""; position: absolute; z-index: 1; top: 0; left: 50%; width: 1px; height: 18rem; background: linear-gradient(var(--border), transparent); pointer-events: none; }
.hero-intro { position: relative; z-index: 2; display: flex; height: 100%; padding-top: 5.5rem; align-items: flex-start; justify-content: center; flex-direction: column; text-align: left; }
.hero-intro .eyebrow { margin-bottom: 1.45rem; }
.hero h1 { max-width: 9ch; font-size: clamp(4.6rem, 7vw, 7.4rem); line-height: .84; letter-spacing: -.072em; text-transform: uppercase; }
.hero h1 span { display: inline-block; background: linear-gradient(105deg, #faf8f3 5%, #85827d 86%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lede { max-width: 31rem; margin: 1.65rem 0 0; color: rgba(236, 232, 225, .72); font-size: clamp(.92rem, 1.15vw, 1.05rem); line-height: 1.65; }
.hero-actions { display: flex; margin-top: 1.45rem; align-items: center; gap: .65rem; }
.button-primary { background: var(--red); color: white; }
.button-primary:hover { background: #e21d25; }
.button-quiet { border: 1px solid var(--border); color: var(--bone); }
.button-quiet:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.04); }
.hero-media { position: absolute; z-index: -1; right: clamp(.75rem, 4.5vw, 4.5rem); bottom: 0; left: clamp(.75rem, 4.5vw, 4.5rem); height: 78%; overflow: hidden; background: var(--black); }
.hero-media::after { content: ""; position: absolute; inset: 0 0 0 auto; width: 22%; background: linear-gradient(90deg, transparent, rgba(8,8,8,.18) 38%, rgba(8,8,8,.72) 78%, var(--black)); pointer-events: none; }
.hero-media img { width: 100%; height: 100%; object-position: center 54%; transform: scale(1.045) translate3d(0, var(--hero-shift), 0); transform-origin: center bottom; }
.hero-media-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,8,.88) 0%, rgba(8,8,8,.62) 7%, rgba(8,8,8,.28) 18%, rgba(8,8,8,.04) 38%, transparent 55%), linear-gradient(90deg, var(--black) 0%, rgba(8,8,8,.94) 4%, rgba(8,8,8,.8) 24%, rgba(8,8,8,.43) 40%, rgba(8,8,8,.08) 59%, transparent 73%); pointer-events: none; }
.hero-grain { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; opacity: .19; pointer-events: none; }
.hero-dust { position: absolute; z-index: 1; inset: 20% 2% 3% 27%; width: 71%; height: 77%; opacity: .72; contain: strict; pointer-events: none; }
.hero-atmosphere-hidden .hero-grain, .hero-atmosphere-hidden .hero-dust { display: none; }
.lane-tag, .work-visual-label span { color: rgba(236,232,225,.58); font-family: var(--font-tech); font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }

.intake { position: relative; z-index: 3; padding: clamp(6rem, 9vw, 9rem) 0; overflow: hidden; background: var(--red); color: white; transform: translateZ(0); }
.intake::before { content: ""; position: absolute; z-index: 0; inset: 0 0 auto; height: 2.5rem; background: linear-gradient(180deg, rgba(0,0,0,.18), transparent); pointer-events: none; }
.intake::after { content: ""; position: absolute; top: -13rem; left: -8rem; width: 30rem; height: 30rem; border: 1px solid rgba(8,8,8,.18); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(8,8,8,.03), 0 0 0 10rem rgba(8,8,8,.03); pointer-events: none; }
.intake-shell { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(18rem, .75fr) minmax(0, 1.25fr); gap: clamp(4rem, 9vw, 10rem); }
.intake .eyebrow { color: rgba(8,8,8,.66); }
.intake h2 { color: white; }
.intake-heading > p:last-child { max-width: 26rem; margin: 2rem 0 0; color: rgba(255,255,255,.72); }
.intake-list { border-top: 1px solid rgba(8,8,8,.35); }
.intake-row { display: grid; min-height: 7.8rem; padding: 1.3rem .25rem; border-bottom: 1px solid rgba(8,8,8,.35); grid-template-columns: 3.5rem 1fr auto; align-items: center; gap: 1rem; transition: padding .3s var(--ease), background .3s; }
.intake-row:hover { padding-right: 1rem; padding-left: 1rem; background: rgba(8,8,8,.09); }
.intake-number { color: rgba(8,8,8,.58); font-family: var(--font-tech); font-size: .78rem; font-weight: 600; letter-spacing: .16em; }
.intake-copy { display: flex; flex-direction: column; gap: .45rem; }
.intake-copy strong { color: white; font-family: var(--font-display); font-size: clamp(1.05rem, 1.8vw, 1.42rem); font-weight: 500; line-height: 1.25; letter-spacing: -.03em; }
.intake-copy small { color: rgba(255,255,255,.66); font-size: .78rem; }
.intake-arrow { display: grid; width: 2.6rem; height: 2.6rem; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; place-items: center; font-size: 1.05rem; transition: color .25s, background .25s, transform .25s var(--ease); }
.intake-row:hover .intake-arrow { background: white; color: var(--red); transform: rotate(45deg); }

.services { overflow: hidden; background: var(--black); }
.services-intro, .standard-heading { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(22rem, .5fr); grid-template-areas: "eyebrow copy" "title copy"; column-gap: clamp(3rem, 8vw, 9rem); row-gap: 1.35rem; align-items: end; }
.services-intro { margin-bottom: clamp(5rem, 9vw, 9rem); }
.services-intro .eyebrow, .standard-heading .eyebrow { grid-area: eyebrow; align-self: end; margin: 0; }
.services-intro h2, .standard-heading h2 { grid-area: title; max-width: none; font-size: clamp(4.6rem, 6vw, 6.8rem); }
.services-intro > p:last-child, .standard-heading > p:last-child { grid-area: copy; align-self: end; max-width: 27rem; margin: 0 0 .55rem; }
.service-lanes { display: flex; flex-direction: column; gap: clamp(5rem, 9vw, 9rem); }
.service-lane { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(20rem, .7fr); align-items: stretch; gap: clamp(2.5rem, 6vw, 6.5rem); }
.service-lane-reverse { grid-template-columns: minmax(20rem, .7fr) minmax(0, 1.45fr); }
.service-lane-reverse .lane-media { grid-column: 2; }
.service-lane-reverse .lane-copy { grid-row: 1; grid-column: 1; }
.lane-media { position: relative; min-height: 34rem; overflow: hidden; background: var(--surface); }
.lane-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 64%, rgba(8,8,8,.72)); pointer-events: none; }
.lane-shot { width: 100%; height: 100%; min-width: 0; min-height: 0; overflow: hidden; background: var(--surface); }
.lane-shot img { width: 100%; height: 100%; filter: saturate(.8); transition: transform .8s var(--ease), filter .8s; }
.lane-tag { position: absolute; z-index: 2; bottom: 1.2rem; left: 1.2rem; color: rgba(255,255,255,.72); }
.lane-media-dual { display: grid; grid-template-columns: 1.25fr .75fr; gap: .35rem; }
.lane-copy { display: flex; padding: 2.2rem 0; justify-content: center; flex-direction: column; }
.lane-code { margin-bottom: 1.4rem; color: var(--red); font-family: var(--font-tech); font-size: .72rem; font-weight: 600; letter-spacing: .19em; }
.lane-copy h3 { max-width: 9ch; font-size: clamp(3rem, 5vw, 5.7rem); }
.lane-copy > p { max-width: 31rem; margin: 1.7rem 0; font-size: .92rem; }
.lane-copy ul { margin: 0 0 2.2rem; padding: 0; border-top: 1px solid var(--border); list-style: none; }
.lane-copy li { padding: .65rem 0; border-bottom: 1px solid var(--border); color: var(--silver); font-family: var(--font-tech); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.text-link { display: inline-flex; width: fit-content; padding-bottom: .3rem; border-bottom: 1px solid rgba(200,23,30,.65); align-items: center; gap: 1rem; color: var(--bone); font-family: var(--font-tech); font-size: .74rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; transition: color .25s, gap .25s var(--ease), border-color .25s; }
.text-link:hover { border-color: var(--bone); gap: 1.4rem; }

.work-floor { padding-block: 0; background: var(--black); }
.work-floor-grid { display: grid; width: 100%; min-height: min(58rem, calc(100svh - 5.5rem)); grid-template-columns: minmax(0, 1.1fr) minmax(34rem, .9fr); align-items: stretch; }
.work-visual { position: relative; min-height: 54rem; overflow: hidden; background: #222; }
.work-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(8,8,8,.85)); }
.work-visual img { width: 100%; height: 100%; filter: saturate(.72) contrast(1.04); }
.work-visual-label { position: absolute; z-index: 2; right: 2rem; bottom: 2rem; left: 2rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.work-visual-label strong { max-width: 10ch; color: white; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 3.2rem); font-weight: 500; line-height: 1; letter-spacing: -.05em; text-align: right; }
.work-order { display: flex; background: var(--black); color: var(--bone); flex-direction: column; }
.work-order-topline { display: flex; min-height: 3.5rem; padding: 0 1.4rem; border-bottom: 1px solid var(--border); align-items: center; justify-content: space-between; gap: 1rem; color: var(--steel); font-family: var(--font-tech); font-size: .66rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.work-order-body { display: flex; width: min(100%, 45rem); margin-inline: auto; padding: clamp(2.5rem, 5vw, 5rem); flex: 1; justify-content: center; flex-direction: column; }
.work-order h2 { max-width: none; font-size: clamp(3rem, 3.7vw, 4.8rem); }
.work-order-body > p:not(.eyebrow) { max-width: 32rem; margin: 1.8rem 0 2.5rem; }
.checklist { margin: 0; padding: 0; border-top: 1px solid var(--border); list-style: none; }
.checklist li { display: grid; padding: .95rem 0; border-bottom: 1px solid var(--border); grid-template-columns: 2.8rem 1fr auto; align-items: center; gap: .8rem; }
.checklist span { color: var(--red); font-family: var(--font-tech); font-size: .68rem; letter-spacing: .15em; }
.checklist strong { color: var(--bone); font-family: var(--font-display); font-size: .98rem; font-weight: 500; letter-spacing: -.02em; }
.checklist small { color: var(--steel); font-size: .7rem; text-align: right; }

.shop-standard { background: var(--black-soft); }
.standard-heading { margin-bottom: clamp(4.5rem, 8vw, 8rem); }
.standard-grid { display: grid; border-top: 1px solid var(--border); grid-template-columns: repeat(3, 1fr); }
.standard-card { min-height: 27rem; padding: 2.1rem clamp(1.5rem, 3vw, 3rem) 2.5rem 0; border-right: 1px solid var(--border); }
.standard-card + .standard-card { padding-left: clamp(1.5rem, 3vw, 3rem); }
.standard-card:last-child { border-right: 0; padding-right: 0; }
.standard-card > span { color: var(--red); font-family: var(--font-tech); font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.standard-card h3 { max-width: 9ch; margin-top: 7rem; font-size: clamp(2rem, 3.4vw, 3.8rem); }
.standard-card p { max-width: 24rem; margin: 1.5rem 0 0; font-size: .85rem; }

.process { background: var(--surface); }
.process-shell { display: grid; grid-template-columns: minmax(28rem, .78fr) minmax(0, 1.22fr); gap: clamp(4rem, 8vw, 8rem); }
.process-heading { position: sticky; top: 8rem; align-self: start; }
.process-heading h2 { max-width: 8ch; font-size: clamp(3.6rem, 5.2vw, 4.9rem); }
.process-track { margin: 0; padding: 0; list-style: none; }
.process-track li { --step-delay: 0s; display: grid; min-height: 10.5rem; padding: 2rem 0; grid-template-columns: 6.5rem 2.5rem 1fr; align-items: start; gap: 1.5rem; opacity: 0; transform: translateY(1.5rem); transition: opacity .55s var(--ease), transform .65s var(--ease); transition-delay: var(--step-delay); }
.process-track li:nth-child(2) { --step-delay: .3s; }
.process-track li:nth-child(3) { --step-delay: .6s; }
.process-track li:nth-child(4) { --step-delay: .9s; }
.process-track.is-sequenced li { opacity: 1; transform: none; }
.process-state { color: var(--red); font-family: var(--font-tech); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.process-track i { position: relative; display: block; width: 1rem; min-height: 5rem; align-self: stretch; }
.process-track i::before { content: ""; position: absolute; top: .1rem; left: .1rem; width: .8rem; height: .8rem; border: 1px solid var(--red); border-radius: 50%; background: var(--surface); opacity: 0; transform: scale(.2); transition: opacity .3s, transform .45s var(--ease); transition-delay: var(--step-delay); }
.process-track i::after { content: ""; position: absolute; top: 1.15rem; bottom: -4rem; left: calc(50% - .5px); width: 1px; background: linear-gradient(var(--red), var(--border) 32%, var(--border)); transform: scaleY(0); transform-origin: top; transition: transform .55s var(--ease); transition-delay: calc(var(--step-delay) + .12s); }
.process-track.is-sequenced i::before { opacity: 1; transform: scale(1); }
.process-track.is-sequenced i::after { transform: scaleY(1); }
.process-track li:last-child i::after { display: none; }
.process-track h3 { font-size: clamp(1.55rem, 2.4vw, 2.25rem); line-height: 1.05; }
.process-track p { max-width: 34rem; margin: .8rem 0 0; font-size: .85rem; }

.verification-chapter { position: relative; isolation: isolate; }
.road-test { position: sticky; z-index: 0; top: 0; height: 100svh; min-height: 44rem; overflow: hidden; background: var(--black); }
.road-test-media, .road-test-shade { position: absolute; inset: 0; }
.road-test-media img { width: 100%; height: 100%; filter: saturate(.82) contrast(1.06); object-position: 58% center; transform: scale(1.02); }
.road-test-shade { background: linear-gradient(90deg, rgba(8,8,8,.95) 0%, rgba(8,8,8,.68) 30%, rgba(8,8,8,.12) 62%, rgba(8,8,8,.28) 100%), linear-gradient(180deg, rgba(8,8,8,.72) 0%, transparent 32%, transparent 78%, rgba(8,8,8,.18) 100%); }
.road-test-shell { position: relative; z-index: 1; display: flex; height: 100%; align-items: center; }
.road-test-copy { width: min(43rem, 56%); padding-top: 4rem; }
.road-test-copy h2 { max-width: 10ch; font-size: clamp(4.4rem, 7.5vw, 8rem); }
.road-test-copy > p:not(.eyebrow) { max-width: 34rem; margin: 2rem 0 0; color: rgba(236,232,225,.72); font-size: .94rem; }
.road-test-proof { display: flex; margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.26); border-bottom: 1px solid rgba(255,255,255,.26); }
.road-test-proof span { min-width: 0; padding: .8rem .5rem; color: rgba(236,232,225,.66); flex: 1; font-family: var(--font-tech); font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-align: center; text-transform: uppercase; }
.perspective { position: relative; z-index: 2; padding: clamp(6rem, 9vw, 9rem) 0; background: var(--red); box-shadow: 0 -2.5rem 6rem rgba(0,0,0,.32); }
.perspective-grid { display: grid; grid-template-columns: 1.05fr 1fr 1fr; gap: 0; }
.perspective-title { padding-right: clamp(2rem, 5vw, 5rem); }
.perspective .eyebrow { color: rgba(8,8,8,.62); }
.perspective h2, .quote blockquote { color: white; }
.perspective h2 { font-size: clamp(3rem, 5vw, 5.8rem); }
.demo-note { max-width: 23rem; margin: 1.5rem 0 0; color: rgba(255,255,255,.56); font-size: .69rem; }
.review-link { display: inline-flex; min-height: 3rem; margin-top: 2rem; padding: .75rem 1.1rem; border-radius: 999px; background: var(--bone); color: var(--black); align-items: center; justify-content: center; font-family: var(--font-tech); font-size: .69rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; transition: background .25s, transform .25s var(--ease); }
.review-link:hover { background: white; transform: translateY(-2px); }
.quote { display: flex; min-height: 28rem; margin: 0; padding: clamp(2rem, 3vw, 3.2rem); border-left: 1px solid rgba(8,8,8,.3); flex-direction: column; justify-content: flex-start; gap: clamp(2.25rem, 4vw, 3.75rem); }
.quote-rating { color: rgba(8,8,8,.72); font-size: 1rem; letter-spacing: .22em; line-height: 1; }
.quote blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.38; letter-spacing: -.035em; }

.faq { background: var(--black); }
.faq-grid { display: grid; grid-template-columns: minmax(18rem, .65fr) minmax(0, 1.35fr); gap: clamp(4rem, 10vw, 11rem); }
.faq-intro { position: sticky; top: 8rem; align-self: start; }
.faq-intro h2 { max-width: 8ch; }
.faq-intro > p:not(.eyebrow) { max-width: 25rem; margin: 2rem 0; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item h3 { margin: 0; }
.faq-item button { display: flex; width: 100%; min-height: 6rem; padding: 1.5rem 0; border: 0; align-items: center; justify-content: space-between; gap: 2rem; background: transparent; text-align: left; cursor: pointer; font-family: var(--font-display); font-size: clamp(1rem, 1.45vw, 1.25rem); line-height: 1.35; letter-spacing: -.025em; }
.faq-item button svg { width: 1.1rem; flex: none; fill: none; stroke: var(--red); stroke-width: 1.4; transition: transform .35s var(--ease); }
.faq-item button[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-answer > p { min-height: 0; margin: 0; overflow: hidden; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding: 0 3.5rem 1.9rem 0; }

.booking { background: var(--surface); }
.booking::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--red) 0 18%, var(--border) 18%); }
.booking-grid { display: grid; grid-template-columns: minmax(21rem, .7fr) minmax(0, 1.3fr); align-items: start; gap: clamp(4rem, 8vw, 8rem); }
.booking-copy h2 { max-width: 9ch; }
.booking-copy > p:not(.eyebrow) { max-width: 29rem; margin: 2rem 0 0; }
.calendar-shell { min-height: 46rem; }
.ghl-booking-frame { display: block; width: 100% !important; min-height: 46rem; margin: 0; }

.site-footer { padding: 7rem 0 2rem; background: var(--black); }
.footer-main { display: grid; padding-bottom: 6rem; border-bottom: 1px solid var(--border); grid-template-columns: .55fr 1.45fr; gap: clamp(4rem, 9vw, 10rem); }
.footer-identity p { max-width: 23rem; margin: 1.7rem 0 0; font-size: .78rem; }
.footer-brand { display: block; width: min(15rem, 78%); }
.footer-brand img { width: 100%; height: auto; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-nav > div { display: flex; align-items: flex-start; flex-direction: column; gap: .55rem; }
.footer-nav span { margin-bottom: .8rem; color: var(--red); font-family: var(--font-tech); font-size: .68rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.footer-nav a, .footer-nav p { margin: 0; color: var(--steel); font-size: .76rem; line-height: 1.8; transition: color .25s; }
.footer-nav a:hover { color: var(--bone); }
.footer-bottom { display: grid; padding-top: 1.5rem; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; }
.footer-bottom p { margin: 0; color: var(--steel); font-family: var(--font-tech); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-bottom > p:last-child { text-align: right; }
.footer-legal { display: flex; align-items: center; justify-content: center; gap: .65rem; color: var(--steel); }
.footer-legal a { color: var(--steel); font-family: var(--font-tech); font-size: .64rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; transition: color .25s; }
.footer-legal a:hover, .footer-legal a:focus-visible { color: var(--bone); }

.legal-page { min-height: 100vh; padding: clamp(8rem, 11vw, 10rem) 0 clamp(6rem, 10vw, 10rem); background: var(--black); }
.legal-back { display: flex; width: var(--shell); margin: 0 auto clamp(3rem, 6vw, 5rem); align-items: center; gap: .8rem; color: var(--silver); font-family: var(--font-tech); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; transition: color .25s, gap .25s var(--ease); }
.legal-back span { color: var(--red); font-family: var(--font-body); font-size: 1.1rem; line-height: 1; }
.legal-back:hover { color: var(--bone); gap: 1.1rem; }
.legal-document { width: var(--shell); margin-inline: auto; }
.legal-document-header { display: grid; padding-bottom: clamp(3.5rem, 7vw, 7rem); grid-template-columns: minmax(0, 1.15fr) minmax(20rem, .65fr); grid-template-areas: "eyebrow updated" "title intro"; column-gap: clamp(3rem, 10vw, 10rem); row-gap: 1.25rem; align-items: end; }
.legal-document-header .eyebrow { grid-area: eyebrow; margin: 0; }
.legal-document-header h1, .legal-document-header h2 { grid-area: title; max-width: 10ch; margin: 0; font-size: clamp(3.5rem, 7vw, 7.5rem); text-transform: uppercase; }
.legal-document-header .legal-updated { grid-area: updated; align-self: end; margin: 0; color: var(--steel); font-family: var(--font-tech); font-size: .67rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.legal-document-header > p:last-child { grid-area: intro; max-width: 36rem; margin: 0; font-size: .92rem; line-height: 1.75; }
.legal-sections { border-top: 1px solid var(--border); }
.legal-sections > section { display: grid; padding: 2rem 0 2.25rem; border-bottom: 1px solid var(--border); grid-template-columns: 4rem minmax(0, 1fr); gap: clamp(1rem, 4vw, 4rem); }
.legal-sections > section > span { padding-top: .25rem; color: var(--red); font-family: var(--font-tech); font-size: .7rem; font-weight: 600; letter-spacing: .16em; }
.legal-sections h2, .legal-sections h3 { margin: 0 0 .75rem; font-size: clamp(1.45rem, 2.4vw, 2.2rem); letter-spacing: -.04em; line-height: 1.1; text-transform: none; }
.legal-sections p { max-width: 66rem; margin: 0; color: var(--silver); font-size: .88rem; line-height: 1.8; }

.reveal { opacity: 0; transform: translateY(2rem); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* A short, cinematic first impression without blocking navigation or interaction. */
.site-entering .site-header { opacity: 0; transform: translate3d(0, -1rem, 0); }
.site-entering.site-ready .site-header { opacity: 1; transform: none; transition: opacity .75s .05s ease-out, transform 1s .05s var(--ease); }
.site-entering .hero::before { transform: scaleY(0); transform-origin: top; }
.site-entering.site-ready .hero::before { transform: scaleY(1); transition: transform 1.2s .2s var(--ease); }
.site-entering .hero-media { opacity: 0; }
.site-entering.site-ready .hero-media { opacity: 1; transition: opacity 1.25s .15s ease-out; }
.site-entering .hero-media img { transform: scale(1.105) translate3d(0, var(--hero-shift), 0); }
.site-entering.site-ready .hero-media img { transform: scale(1.045) translate3d(0, var(--hero-shift), 0); transition: transform 1.8s .12s var(--ease); }
.site-entering .hero-intro > * { opacity: 0; transform: translate3d(0, 1.6rem, 0); }
.site-entering.site-ready .hero-intro > * { opacity: 1; transform: none; transition: opacity .8s var(--entrance-delay) ease-out, transform 1s var(--entrance-delay) var(--ease); }
.site-entering .hero-intro > :nth-child(1) { --entrance-delay: .38s; }
.site-entering .hero-intro > :nth-child(2) { --entrance-delay: .5s; }
.site-entering .hero-intro > :nth-child(3) { --entrance-delay: .68s; }
.site-entering .hero-intro > :nth-child(4) { --entrance-delay: .82s; }
.intake-list .reveal:nth-child(2), .standard-grid .reveal:nth-child(2), .perspective-grid .reveal:nth-child(2) { transition-delay: .07s; }
.intake-list .reveal:nth-child(3), .standard-grid .reveal:nth-child(3), .perspective-grid .reveal:nth-child(3) { transition-delay: .14s; }
.intake-list .reveal:nth-child(4) { transition-delay: .21s; }

@media (hover: hover) and (pointer: fine) {
  .lane-shot:hover img { filter: saturate(.98); transform: scale(1.025); }
}

@media (max-width: 1050px) {
  :root { --shell: min(100% - 2.5rem, 94rem); }
  .mobile-book { position: relative; z-index: 102; display: inline-flex; min-height: 2.65rem; margin-left: auto; padding: .6rem 1.2rem; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; align-items: center; justify-content: center; font-family: var(--font-tech); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
  .menu-toggle { position: relative; z-index: 102; display: flex; min-width: 4rem; min-height: 2.75rem; padding: .4rem 0; border: 0; align-items: center; justify-content: flex-end; gap: .8rem; background: transparent; cursor: pointer; }
  .menu-toggle span { font-family: var(--font-tech); font-size: .67rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
  .menu-toggle svg { width: 1.55rem; fill: none; stroke: currentColor; stroke-width: 1.2; transition: transform .3s var(--ease); }
  .menu-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
  .site-nav { position: fixed; z-index: 101; inset: 0; display: flex; padding: 8rem 1.5rem 2rem; background: var(--black); align-items: stretch; justify-content: center; flex-direction: column; gap: 0; visibility: hidden; opacity: 0; transform: translateY(-1rem); transition: opacity .3s, transform .3s, visibility .3s; }
  .site-nav::before { content: "BG / NAVIGATION"; position: absolute; top: 6.5rem; left: 1.5rem; color: var(--red); font-family: var(--font-tech); font-size: .66rem; letter-spacing: .18em; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav > a:not(.nav-cta) { padding: .68rem 0; border-bottom: 1px solid var(--border); color: var(--bone); font-family: var(--font-display); font-size: clamp(1.8rem, 6vw, 3rem); font-weight: 500; letter-spacing: -.045em; text-transform: none; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .site-nav .nav-cta { margin-top: 1.5rem; justify-content: center; text-align: center; }
  .services-intro, .standard-heading { grid-template-columns: minmax(0, 1fr) minmax(18rem, .55fr); column-gap: 3rem; }
  .services-intro > p:last-child, .standard-heading > p:last-child { margin-bottom: .4rem; }
  .service-lane, .service-lane-reverse { grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr); gap: 3rem; }
  .service-lane-reverse .lane-media { grid-column: 2; }
  .service-lane-reverse .lane-copy { grid-column: 1; }
  .lane-media { min-height: 30rem; }
  .work-floor-grid { grid-template-columns: 1fr 1fr; }
  .work-visual { min-height: 47rem; }
  .work-order-body { padding: 2.75rem; }
  .checklist li { grid-template-columns: 2.2rem 1fr; }
  .checklist small { display: none; }
  .process-shell { grid-template-columns: minmax(21rem, .8fr) minmax(0, 1.2fr); gap: 4rem; }
  .perspective-grid { grid-template-columns: 1fr 1fr; }
  .perspective-title { grid-column: 1 / -1; margin-bottom: 4rem; }
  .perspective-title h2 { max-width: 12ch; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 2rem, 94rem); --section-space: 6.5rem; }
  h2 { font-size: clamp(3.1rem, 14vw, 4.6rem); }
  .nav-shell { min-height: 4.65rem; gap: .75rem; }
  .brand { width: 9.75rem; }
  .mobile-book { min-height: 2.45rem; padding: .5rem 1.1rem; }
  .menu-toggle { min-width: 2.4rem; }
  .menu-toggle span { display: none; }

  .hero { height: 100svh; min-height: 43rem; padding: 0; }
  .hero::before { height: 12rem; }
  .hero-intro { height: 100%; padding-top: 8.2rem; align-items: center; justify-content: flex-start; text-align: center; }
  .hero-intro .eyebrow { max-width: 25rem; margin-bottom: 1.25rem; }
  .hero h1 { max-width: none; font-size: clamp(3rem, 13.6vw, 5rem); line-height: .82; }
  .hero-lede { max-width: 31rem; margin: 1.45rem auto 0; font-size: .86rem; line-height: 1.6; }
  .hero-actions { width: 100%; margin-top: 1.35rem; justify-content: center; }
  .button { min-height: 3.2rem; padding-inline: 1rem; gap: .8rem; }
  .hero-media { right: .35rem; left: .35rem; height: 64%; -webkit-mask-image: none; mask-image: none; }
  .hero-media img { object-position: 56% center; transform: scale(1.035) translate3d(0, var(--hero-shift), 0); }
  .site-entering .hero-media img { transform: scale(1.095) translate3d(0, var(--hero-shift), 0); }
  .site-entering.site-ready .hero-media img { transform: scale(1.035) translate3d(0, var(--hero-shift), 0); }
  .hero-media-shade { background: linear-gradient(180deg, var(--black) 0%, rgba(8,8,8,.98) 10%, rgba(8,8,8,.82) 28%, rgba(8,8,8,.28) 52%, transparent 72%), linear-gradient(90deg, var(--black) 0%, rgba(8,8,8,.65) 2%, rgba(8,8,8,.12) 12%, transparent 24%, transparent 76%, rgba(8,8,8,.12) 88%, rgba(8,8,8,.65) 98%, var(--black) 100%); }
  .hero-grain { opacity: .14; }
  .hero-dust { inset: 32% 1% 1% 34%; width: 65%; height: 67%; opacity: .55; }

  .intake { padding: 6rem 0; }
  .intake-shell { grid-template-columns: 1fr; gap: 3.5rem; }
  .intake-heading > p:last-child { margin-top: 1.5rem; }
  .intake-row { min-height: 7.1rem; grid-template-columns: 2.5rem 1fr auto; gap: .75rem; }
  .intake-copy strong { font-size: 1.08rem; }
  .intake-copy small { font-size: .72rem; }
  .intake-arrow { width: 2.35rem; height: 2.35rem; }

  .services-intro, .standard-heading { display: block; margin-bottom: 4.5rem; }
  .services-intro .eyebrow { margin-bottom: 1.5rem; }
  .services-intro h2, .standard-heading h2 { max-width: 10ch; font-size: clamp(3rem, 12vw, 4rem); }
  .services-intro > p:last-child, .standard-heading > p:last-child { max-width: 30rem; margin: 1.6rem 0 0; }
  .service-lanes { gap: 4.25rem; }
  .service-lane, .service-lane-reverse { display: flex; gap: 0; flex-direction: column; }
  .service-lane-reverse .lane-media, .service-lane-reverse .lane-copy { grid-row: auto; grid-column: auto; }
  .lane-media { width: 100%; min-height: 0; height: 22rem; }
  .lane-shot img { object-position: center; }
  .lane-media-dual { height: 26rem; grid-template-columns: 1fr; grid-template-rows: 1.15fr .85fr; }
  .lane-copy { padding: 1.6rem 0 0; }
  .lane-copy h3 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .lane-copy > p { margin: 1.1rem 0; }
  .lane-copy ul { margin-bottom: 1.45rem; }
  .lane-copy li { padding: .55rem 0; }

  .work-floor-grid { display: flex; width: 100%; flex-direction: column; }
  .work-visual { min-height: 0; height: 32rem; }
  .work-visual img { object-position: 54% center; }
  .work-visual-label { right: 1.2rem; bottom: 1.2rem; left: auto; width: min(78%, 17rem); flex-direction: column; align-items: flex-end; text-align: right; }
  .work-order-topline { padding: 0 1rem; font-size: .57rem; }
  .work-order-body { padding: 3rem 1.5rem 3.5rem; }
  .work-order h2 { font-size: clamp(2.45rem, 10vw, 3.3rem); }
  .checklist li { grid-template-columns: 2.3rem 1fr; }

  .standard-grid { grid-template-columns: 1fr; }
  .standard-card, .standard-card + .standard-card, .standard-card:last-child { min-height: 0; padding: 2.2rem 0 2.6rem; border-right: 0; border-bottom: 1px solid var(--border); }
  .standard-card h3 { margin-top: 3.5rem; font-size: clamp(2.25rem, 10vw, 3.4rem); }

  .process-shell { grid-template-columns: 1fr; gap: 4rem; }
  .process-heading { position: static; }
  .process-track li { min-height: 0; padding: 1.5rem 0 3rem; grid-template-columns: 1.25rem 1fr; gap: 1rem; }
  .process-state { grid-row: 1; grid-column: 2; }
  .process-track i { grid-row: 1 / span 2; grid-column: 1; }
  .process-track i::after { bottom: -3rem; }
  .process-track li > div { grid-row: 2; grid-column: 2; }
  .process-track h3 { font-size: 1.75rem; }

  .road-test { height: 100svh; min-height: 43rem; }
  .road-test-media img { object-position: 70% center; }
  .road-test-shade { background: linear-gradient(180deg, rgba(8,8,8,.96) 0%, rgba(8,8,8,.78) 31%, rgba(8,8,8,.18) 61%, rgba(8,8,8,.3) 100%), linear-gradient(90deg, rgba(8,8,8,.68), transparent 48%, rgba(8,8,8,.18)); }
  .road-test-shell { align-items: flex-start; }
  .road-test-copy { display: flex; width: 100%; height: 100%; padding: 8.5rem 0 2.5rem; align-items: center; flex-direction: column; text-align: center; }
  .road-test-copy h2 { max-width: 9ch; font-size: clamp(3.25rem, 14vw, 4.5rem); }
  .road-test-copy > p:not(.eyebrow) { max-width: 24rem; margin: 1.4rem auto 0; font-size: .84rem; }
  .road-test-proof { width: 100%; margin-top: auto; }
  .road-test-proof span { padding-inline: .35rem; }
  .perspective { padding: 6.5rem 0; }
  .perspective-grid { grid-template-columns: 1fr; }
  .perspective-title { margin-bottom: 3.5rem; padding-right: 0; }
  .quote { min-height: 0; padding: 2.2rem 0; border-top: 1px solid rgba(8,8,8,.3); border-left: 0; gap: 2rem; }
  .quote blockquote { font-size: 1.38rem; }

  .faq-grid { grid-template-columns: 1fr; gap: 4rem; }
  .faq-intro { position: static; }
  .faq-item button { min-height: 5.3rem; gap: 1rem; }
  .faq-item.is-open .faq-answer > p { padding-right: 1.4rem; }

  .booking-grid { grid-template-columns: 1fr; gap: 4rem; }
  .calendar-shell { min-height: 42rem; }
  .ghl-booking-frame { min-height: 42rem; }

  .site-footer { padding-top: 5.5rem; }
  .footer-main { grid-template-columns: 1fr; gap: 4rem; padding-bottom: 4rem; text-align: center; }
  .footer-identity { display: flex; align-items: center; flex-direction: column; }
  .footer-identity p { margin-right: auto; margin-left: auto; }
  .footer-brand { margin-inline: auto; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .footer-nav > div { align-items: center; }
  .footer-social { grid-column: 1 / -1; }
  .footer-bottom { display: flex; align-items: center; flex-direction: column; gap: .65rem; text-align: center; }
  .footer-bottom > p:last-child { text-align: center; }
  .footer-legal { order: 3; margin-top: .35rem; flex-wrap: wrap; }
  .legal-document-header { display: block; padding-bottom: 3.5rem; }
  .legal-document-header .eyebrow { margin-bottom: 1.25rem; }
  .legal-document-header h1, .legal-document-header h2 { max-width: 9ch; font-size: clamp(3rem, 13vw, 4.5rem); }
  .legal-document-header .legal-updated { margin: 1.2rem 0 1.5rem; }
  .legal-document-header > p:last-child { font-size: .84rem; }
  .legal-sections > section { grid-template-columns: 2.25rem minmax(0, 1fr); gap: .75rem; }
  .legal-sections h2, .legal-sections h3 { font-size: 1.55rem; }
  .legal-sections p { font-size: .82rem; line-height: 1.75; }
}

@media (max-width: 420px) {
  :root { --shell: calc(100% - 1.4rem); }
  .brand { width: 8.9rem; }
  .mobile-book { min-height: 2.35rem; padding-inline: 1rem; font-size: .62rem; }
  .hero h1 { font-size: clamp(3rem, 13.6vw, 5rem); }
  .hero-lede { max-width: 22rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-media { right: .2rem; left: .2rem; height: 62%; }
  .intake-row { grid-template-columns: 2rem 1fr 2.3rem; }
  .intake-number { font-size: .67rem; }
  .lane-media { height: 20rem; }
  .lane-media-dual { height: 24rem; }
  .work-visual { height: 27rem; }
  .work-order-topline span:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero, .road-test { position: relative; }
  .site-entering .site-header, .site-entering .hero-media, .site-entering .hero-intro > * { opacity: 1; transform: none; }
  .site-entering .hero-media img { transform: scale(1.045) translate3d(0, var(--hero-shift), 0); }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  .process-track li, .process-track i::before { opacity: 1; transform: none; }
  .process-track i::after { transform: scaleY(1); }
}
