:root {
  --navy: #16243a;
  --navy-deep: #0b1f33;
  --slate: #5f7b9c;
  --body: #5a6b7e;
  --muted: #93a3b6;
  --mist: #e7eef7;
  --canvas: #f4f7fb;
  --surface: #fff;
  --border: #dde4ee;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shadow: 0 30px 80px -45px rgba(11, 31, 51, .45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--body); background: var(--surface); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; }
.shell { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 130px 0; }
.section-mist { background: var(--canvas); }
.section-dark { color: #cbd6e3; background: var(--navy-deep); }
.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: 200; padding: 12px 18px; color: #fff; background: var(--navy-deep); border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; transition: background .3s, border-color .3s, box-shadow .3s; border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(255,255,255,.88); border-color: rgba(221,228,238,.8); box-shadow: 0 14px 40px -35px rgba(11,31,51,.6); backdrop-filter: blur(14px); }
.header-inner { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); font-weight: 700; letter-spacing: -.02em; }
.brand-logo { width: 36px; height: 36px; object-fit: cover; border: 1px solid rgba(22,36,58,.16); border-radius: 10px; box-shadow: 0 8px 20px -14px rgba(11,31,51,.75); }
.brand-name { font-size: 15px; }
.main-nav { display: flex; align-items: center; gap: 36px; margin-left: auto; }
.main-nav a { color: var(--body); font-size: 14px; font-weight: 500; transition: color .2s; }
.main-nav a:hover { color: var(--navy); }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 14px; padding: 18px 24px; color: #fff; background: var(--navy-deep); border: 1px solid var(--navy-deep); border-radius: 13px; font-weight: 600; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); background: #102a45; box-shadow: 0 18px 40px -22px rgba(11,31,51,.8); }
.button-small { padding: 12px 18px; font-size: 13px; border-radius: 10px; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; background: transparent; border: 0; }
.menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 1px; margin: 6px auto; background: var(--navy); transition: transform .2s; }

.hero { overflow: hidden; padding: 176px 0 0; background: radial-gradient(110% 80% at 50% -5%, var(--mist) 0%, var(--canvas) 44%, #fff 82%); }
.hero-grid { min-height: 640px; display: grid; grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr); align-items: center; gap: 76px; padding-bottom: 100px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 26px; color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow > span { width: 22px; height: 1px; background: #bdc9d7; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { color: var(--navy); font-family: var(--serif); font-weight: 400; letter-spacing: -.025em; }
h1 { max-width: 750px; margin-bottom: 26px; font-size: clamp(54px, 5vw, 76px); line-height: .99; }
h1 em, h2 em { color: var(--slate); font-weight: 400; }
.hero-lead { max-width: 630px; margin-bottom: 34px; font-size: 16px; line-height: 1.8; }
.booking-card { width: min(100%, 630px); display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 14px; padding: 11px 12px 11px 16px; text-align: left; color: var(--body); background: #fff; border: 1px solid #e2e8ef; border-radius: 16px; box-shadow: 0 20px 60px -38px rgba(11,31,51,.48); cursor: pointer; transition: transform .25s, box-shadow .25s; }
.booking-card:hover { transform: translateY(-3px); box-shadow: 0 25px 60px -32px rgba(11,31,51,.58); }
.booking-icon { width: 40px; height: 40px; display: grid; place-items: center; color: var(--slate); background: var(--canvas); border-radius: 11px; }
.booking-icon svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.booking-label { display: flex; flex-direction: column; line-height: 1.35; }
.booking-label small { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.booking-label strong { color: var(--navy); font-size: 14px; }
.booking-action { padding: 15px 18px; color: #fff; background: var(--navy-deep); border-radius: 11px; font-size: 13px; font-weight: 600; }
.booking-action span { margin-left: 7px; }
.hero-links { max-width: 630px; display: flex; justify-content: space-between; gap: 20px; margin-top: 17px; font-size: 13px; }
.hero-links span { color: var(--muted); }
.hero-links a { color: var(--navy); font-weight: 600; }
.hero-links a span { display: inline-block; margin-left: 4px; color: var(--slate); transition: transform .2s; }
.hero-links a:hover span { transform: translateX(4px); }

.hero-showcase { position: relative; min-width: 0; }
.showcase-glow { position: absolute; inset: 8% 4%; filter: blur(55px); background: rgba(95,123,156,.22); border-radius: 50%; }
.browser-card { position: relative; z-index: 2; overflow: hidden; background: #fff; border: 1px solid rgba(22,36,58,.12); border-radius: 22px; box-shadow: 0 35px 90px -35px rgba(11,31,51,.45); transform: rotate(1.2deg); }
.browser-bar { height: 46px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 17px; color: #9aa8b8; background: #fbfcfd; border-bottom: 1px solid #edf0f4; font-size: 11px; letter-spacing: .06em; }
.browser-dots { display: flex; gap: 5px; }
.browser-dots i { width: 6px; height: 6px; background: #d7dee7; border-radius: 50%; }
.browser-live { justify-self: end; display: flex; align-items: center; gap: 6px; }
.browser-live i { width: 5px; height: 5px; background: #5bb89b; border-radius: 50%; box-shadow: 0 0 0 4px rgba(91,184,155,.12); }
.browser-screen { height: 410px; overflow: hidden; background: #eef1f4; }
.browser-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 4s cubic-bezier(.2,.7,.2,1); }
.browser-card:hover .browser-screen img { transform: translateY(-8%) scale(1.03); }
.project-pill { position: absolute; z-index: 4; top: 65px; left: -20px; display: flex; align-items: center; gap: 8px; padding: 9px 13px; color: var(--navy); background: rgba(255,255,255,.92); border: 1px solid rgba(22,36,58,.1); border-radius: 999px; box-shadow: 0 14px 30px -20px rgba(11,31,51,.5); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; backdrop-filter: blur(10px); }
.project-pill span { width: 6px; height: 6px; background: #5bb89b; border-radius: 50%; }
.metric-card { position: absolute; z-index: 4; min-width: 160px; padding: 16px 18px; color: var(--body); background: rgba(255,255,255,.94); border: 1px solid rgba(22,36,58,.1); border-radius: 15px; box-shadow: 0 20px 50px -28px rgba(11,31,51,.55); backdrop-filter: blur(12px); }
.metric-card small { display: block; margin-bottom: 3px; color: var(--muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.metric-card strong { color: var(--navy); font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1; }
.metric-card sup { color: var(--slate); font-size: 15px; }
.metric-main { right: -24px; bottom: 78px; }
.metric-secondary { left: 22px; bottom: -38px; }
.metric-note { position: absolute; right: 0; bottom: -48px; color: var(--muted); font-size: 11px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); }
.hero-facts > div { position: relative; display: grid; gap: 1px; padding: 26px 32px; border-right: 1px solid var(--border); }
.hero-facts > div:first-child { padding-left: 0; }
.hero-facts > div:last-child { border-right: 0; }
.hero-facts strong { color: var(--navy); font-size: 14px; }
.hero-facts small { color: var(--muted); font-size: 13px; }

.section-heading h2, .value-intro h2, .difference-heading h2, .studio-copy h2, .booking-copy h2, .faq-heading h2, .final-cta h2 { margin-bottom: 22px; font-size: clamp(44px, 4.3vw, 64px); line-height: 1.04; }
.split-heading { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 100px; margin-bottom: 66px; }
.split-heading .eyebrow, .split-heading h2 { margin-bottom: 0; }
.split-heading .eyebrow { margin-bottom: 26px; }
.split-heading > p { margin-bottom: 4px; font-size: 15px; }
.centered { max-width: 760px; margin: 0 auto 66px; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered > p { max-width: 580px; margin: 0 auto; font-size: 15px; }

.featured-project { display: grid; grid-template-columns: 1.35fr .65fr; overflow: hidden; background: var(--canvas); border: 1px solid #e7ecf2; border-radius: 26px; }
.project-visual { position: relative; min-height: 540px; overflow: hidden; background: #e9edf2; }
.project-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .8s; }
.project-visual:hover img { transform: scale(1.025); }
.project-visual > span, .project-card-image > span { position: absolute; right: 18px; bottom: 18px; padding: 10px 14px; color: var(--navy); background: rgba(255,255,255,.92); border-radius: 9px; font-size: 12px; font-weight: 600; backdrop-filter: blur(10px); }
.project-visual > span b { margin-left: 5px; }
.project-copy { display: flex; flex-direction: column; justify-content: center; padding: 58px; }
.project-copy .project-index, .project-card-copy > p { margin-bottom: 20px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.project-copy h3 { margin-bottom: 6px; color: var(--navy); font-family: var(--serif); font-size: 46px; font-weight: 400; }
.project-tagline { color: var(--navy); font-weight: 600; line-height: 1.5; }
.project-copy > p:not(.project-index):not(.project-tagline) { font-size: 14px; }
.project-results { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0 16px; padding-top: 24px; border-top: 1px solid var(--border); }
.project-results strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 32px; font-weight: 400; line-height: 1; }
.project-results span, .project-copy > small { color: var(--muted); font-size: 11px; }
.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 28px; }
.project-card-image { height: 390px; position: relative; display: block; overflow: hidden; background: var(--canvas); border: 1px solid #e7ecf2; border-radius: 22px; }
.project-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .8s; }
.project-card-image:hover img { transform: scale(1.03); }
.project-card-copy { display: grid; grid-template-columns: 1fr auto; align-items: end; padding: 20px 3px 0; }
.project-card-copy > p { grid-column: 1 / -1; margin-bottom: 5px; }
.project-card-copy h3 { margin: 0; color: var(--navy); font-family: var(--serif); font-size: 31px; font-weight: 400; }
.project-card-copy > span { color: var(--muted); font-size: 12px; }

.value-intro { max-width: 860px; margin-bottom: 68px; }
.value-intro > p:last-child { max-width: 680px; margin: 0; font-size: 15px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { min-height: 340px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 34px; background: #fff; border: 1px solid #e3e9f0; border-radius: 23px; transition: transform .25s, box-shadow .25s; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-number { position: absolute; top: 26px; right: 28px; color: #c0cbd8; font-family: var(--serif); font-size: 25px; }
.value-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 32px; color: var(--slate); background: var(--canvas); border-radius: 14px; font-family: var(--serif); font-size: 25px; }
.value-card h3 { margin-bottom: 9px; color: var(--navy); font-family: var(--serif); font-size: 34px; font-weight: 400; }
.value-card p { margin: 0; font-size: 14px; }

.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offer-card { position: relative; display: flex; flex-direction: column; min-height: 670px; padding: 34px; border-radius: 24px; }
.offer-light { background: var(--canvas); border: 1px solid #e3e9f0; }
.offer-dark { color: #c8d4e0; background: var(--navy-deep); border: 1px solid var(--navy-deep); }
.offer-training { background: #edf3f9; border: 1px solid #dce6f0; }
.offer-topline { display: flex; justify-content: space-between; padding-bottom: 23px; border-bottom: 1px solid var(--border); color: var(--navy); font-size: 12px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.offer-dark .offer-topline { color: #fff; border-color: rgba(255,255,255,.15); }
.offer-topline small { color: var(--muted); font-size: inherit; font-weight: 500; }
.offer-dark .offer-topline small { color: #879cb5; }
.offer-card h3 { max-width: 560px; margin: 30px 0 24px; color: var(--navy); font-family: var(--serif); font-size: 33px; font-weight: 400; line-height: 1.08; }
.offer-dark h3 { color: #fff; }
.offer-price { display: flex; flex-direction: column; margin-bottom: 30px; }
.offer-price > span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .11em; }
.offer-price-values { display: flex; align-items: center; gap: 17px; min-height: 59px; }
.offer-price del { position: relative; display: inline-flex; align-items: center; padding: 5px 8px; color: var(--muted); background: rgba(95,123,156,.08); border-radius: 7px; font-family: var(--sans); font-size: 14px; font-weight: 600; line-height: 1; text-decoration-color: currentColor; text-decoration-thickness: 1.5px; }
.offer-price strong { color: var(--navy); font-family: var(--serif); font-size: 48px; font-weight: 400; line-height: 1.15; }
.offer-price strong small { font-family: var(--sans); font-size: 12px; letter-spacing: .08em; }
.offer-dark .offer-price strong { color: #fff; }
.offer-dark .offer-price del { color: #9db0c5; background: rgba(255,255,255,.08); }
.offer-card ul { display: grid; gap: 11px; margin: 0 0 35px; padding: 0; list-style: none; font-size: 13px; }
.offer-card li { position: relative; padding-left: 24px; }
.offer-card li::before { content: "✓"; position: absolute; left: 0; color: var(--slate); font-weight: 700; }
.offer-dark li::before { color: #8ca7c5; }
.offer-button { width: 100%; display: flex; justify-content: space-between; margin-top: auto; padding: 17px 20px; color: var(--navy); background: #fff; border: 1px solid var(--border); border-radius: 11px; font-size: 13px; font-weight: 600; cursor: pointer; }
.offer-dark .offer-button { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }
.offer-badge { position: absolute; z-index: 2; top: -16px; right: 32px; padding: 10px 17px; color: #fff; background: var(--slate); border: 3px solid #fff; border-radius: 999px; box-shadow: 0 12px 26px -14px rgba(11,31,51,.75); font-size: 12px; font-weight: 800; line-height: 1; letter-spacing: .07em; white-space: nowrap; }
.custom-note { margin: 28px 0 0; text-align: center; color: var(--muted); font-size: 13px; }
.text-button { padding: 0; color: var(--navy); background: none; border: 0; font-weight: 600; cursor: pointer; }

.difference-heading { max-width: 800px; margin-bottom: 65px; }
.difference-heading h2 { color: #fff; }
.difference-heading h2 em { color: #8aa2bd; }
.difference-heading > p:last-child { max-width: 560px; color: #8ea0b4; font-size: 15px; }
.eyebrow-dark { color: #7890aa; }
.eyebrow-dark > span { background: #55708e; }
.comparison { overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; }
.comparison-head, .comparison-row { display: grid; grid-template-columns: 1fr 1fr; }
.comparison-head { background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.12); }
.comparison-head > * { padding: 23px 30px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.comparison-head > strong { display: flex; align-items: center; gap: 10px; color: #fff; border-left: 1px solid rgba(255,255,255,.12); }
.comparison-head i { width: 26px; height: 26px; display: grid; place-items: center; color: var(--navy-deep); background: #fff; border-radius: 7px; font-size: 9px; font-style: normal; }
.comparison-row { border-bottom: 1px solid rgba(255,255,255,.1); }
.comparison-row:last-child { border-bottom: 0; }
.comparison-row > * { padding: 25px 30px; font-size: 13px; font-weight: 400; }
.comparison-row > span { color: #758ba4; }
.comparison-row > strong { color: #d8e1eb; border-left: 1px solid rgba(255,255,255,.12); }
.comparison-row b { display: inline-grid; width: 21px; height: 21px; margin-right: 10px; place-items: center; color: var(--navy-deep); background: #d5e2ef; border-radius: 50%; font-size: 10px; }

.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--border); }
.process-list li { display: grid; grid-template-columns: 110px 1fr auto; align-items: center; gap: 42px; padding: 34px 6px; border-bottom: 1px solid var(--border); }
.process-list li > span { color: var(--slate); font-family: var(--serif); font-size: 34px; }
.process-list h3 { margin: 0 0 5px; color: var(--navy); font-size: 16px; }
.process-list p { max-width: 640px; margin: 0; font-size: 13px; }
.process-list small { padding: 7px 11px; color: var(--slate); background: #fff; border: 1px solid var(--border); border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }

.studio-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.studio-copy > p:not(.eyebrow):not(.studio-note) { max-width: 570px; font-size: 14px; }
.studio-note { display: inline-block; margin: 18px 0 0; padding: 10px 13px; color: var(--muted); background: var(--canvas); border-radius: 8px; font-size: 11px; }
.duo-cards { position: relative; min-height: 540px; }
.person-card { position: absolute; width: 58%; overflow: hidden; background: var(--canvas); border: 1px solid #e3e9f0; border-radius: 24px; box-shadow: var(--shadow); }
.person-one { top: 0; left: 0; transform: rotate(-2.4deg); }
.person-two { right: 0; bottom: 0; transform: rotate(2.8deg); }
.portrait-placeholder { height: 360px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 35%, #eef3f8 0 15%, #dfe8f1 16% 28%, #b8c7d8 29% 30%, #d8e2ed 31% 100%); }
.portrait-placeholder span { display: grid; width: 145px; height: 145px; place-items: center; color: #fff; background: var(--slate); border-radius: 50%; font-family: var(--serif); font-size: 72px; opacity: .55; }
.person-card > div:last-child { padding: 18px 22px; background: #fff; }
.person-card h3 { margin: 0; color: var(--navy); font-family: var(--serif); font-size: 25px; font-weight: 400; }
.person-card p { margin: 1px 0 0; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }

.booking-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 100px; }
.booking-copy > p:not(.eyebrow):not(.booking-alternative) { max-width: 540px; font-size: 15px; }
.booking-copy ul { display: grid; gap: 9px; margin: 28px 0 32px; padding: 0; list-style: none; font-size: 13px; }
.booking-copy li::before { content: "✓"; display: inline-grid; width: 21px; height: 21px; margin-right: 10px; place-items: center; color: #fff; background: var(--slate); border-radius: 50%; font-size: 9px; }
.booking-alternative { color: var(--muted); font-size: 13px; }
.booking-alternative a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.calendar-preview { padding: 30px; background: #fff; border: 1px solid #e1e7ee; border-radius: 25px; box-shadow: 0 35px 80px -50px rgba(11,31,51,.5); }
.calendar-head { display: flex; align-items: center; gap: 13px; padding-bottom: 23px; border-bottom: 1px solid var(--border); }
.calendar-avatar { width: 46px; height: 46px; object-fit: cover; border: 1px solid var(--border); border-radius: 13px; }
.calendar-head > div:last-child { display: flex; flex-direction: column; }
.calendar-head strong { color: var(--navy); font-size: 14px; }
.calendar-head span { color: var(--muted); font-size: 12px; }
.calendar-body { padding: 24px 0 19px; }
.calendar-month { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; color: var(--navy); font-size: 13px; }
.calendar-month button { width: 30px; height: 30px; color: var(--slate); background: var(--canvas); border: 0; border-radius: 8px; cursor: pointer; transition: color .2s, background .2s, opacity .2s; }
.calendar-month button:hover:not(:disabled) { color: #fff; background: var(--slate); }
.calendar-month button:disabled { opacity: .32; cursor: not-allowed; }
.weekdays, .days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; text-align: center; }
.weekdays { margin-bottom: 7px; color: var(--muted); font-size: 11px; text-transform: uppercase; }
.days button { padding: 11px 0; color: var(--body); background: var(--canvas); border: 0; border-radius: 9px; font: inherit; font-size: 13px; cursor: pointer; transition: color .2s, background .2s, transform .2s; }
.days button:hover { color: var(--navy); background: #e6edf4; transform: translateY(-1px); }
.days button:focus-visible { outline: 2px solid var(--slate); outline-offset: 2px; }
.days .selected { color: #fff; background: var(--navy); }
.days .selected:hover { color: #fff; background: var(--navy); }
.times { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin-top: 18px; }
.times button { padding: 10px; color: var(--slate); background: #fff; border: 1px solid var(--border); border-radius: 8px; font-size: 12px; cursor: pointer; }
.calendar-button { width: 100%; }

.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; align-items: start; gap: 100px; }
.faq-heading { position: sticky; top: 130px; }
.faq-heading p:last-child { color: var(--muted); font-size: 13px; }
.faq-heading a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 25px 0; color: var(--navy); font-size: 14px; font-weight: 600; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--slate); font-family: var(--serif); font-size: 24px; font-weight: 400; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 700px; padding: 0 60px 25px 0; font-size: 13px; }

.final-cta { overflow: hidden; padding: 120px 0; text-align: center; color: #aebed0; background: radial-gradient(circle at 50% 20%, #183653 0%, var(--navy-deep) 58%); }
.final-cta-inner { max-width: 900px; }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { color: #fff; }
.final-cta h2 em { color: #91a9c4; }
.final-cta p:not(.eyebrow) { max-width: 620px; margin: 0 auto 34px; font-size: 15px; }
.button-light { color: var(--navy-deep); background: #fff; border-color: #fff; }
.button-light:hover { color: var(--navy-deep); background: #f4f7fb; }

.site-footer { color: #8899ad; background: #071523; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 70px; padding: 75px 0 55px; }
.brand-footer { color: #fff; }
.brand-footer .brand-logo { border-color: rgba(255,255,255,.16); }
.footer-top > div:first-child > p { margin: 20px 0 0; font-size: 13px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; font-size: 12px; }
.footer-links strong { margin-bottom: 8px; color: #d6e0e9; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a:hover, .footer-links .text-button:hover { color: #fff; }
.footer-links .text-button { color: inherit; font-weight: 400; }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,.08); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.booking-modal { width: min(520px, calc(100% - 32px)); padding: 40px; color: var(--body); background: #fff; border: 1px solid var(--border); border-radius: 24px; box-shadow: 0 40px 100px rgba(11,31,51,.35); }
.booking-modal::backdrop { background: rgba(7,21,35,.68); backdrop-filter: blur(7px); }
.booking-modal h2 { font-size: 43px; line-height: 1.04; }
.booking-modal > p:not(.eyebrow) { font-size: 13px; }
.modal-close { position: absolute; top: 14px; right: 15px; width: 34px; height: 34px; color: var(--navy); background: var(--canvas); border: 0; border-radius: 50%; font-family: var(--serif); font-size: 24px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 75px; padding-bottom: 120px; }
  .hero-copy { max-width: 760px; }
  .hero-showcase { width: min(720px, 90%); margin-inline: auto; }
  .featured-project { grid-template-columns: 1fr; }
  .project-visual { min-height: 450px; }
  .studio-grid, .booking-layout { grid-template-columns: 1fr; gap: 65px; }
  .duo-cards { width: min(700px, 100%); }
  .booking-copy { max-width: 700px; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .offer-training { grid-column: 1 / -1; min-height: auto; }
}

@media (max-width: 800px) {
  .shell { width: min(100% - 36px, 680px); }
  .section { padding: 92px 0; }
  .header-inner { height: 72px; }
  .main-nav { position: fixed; inset: 72px 18px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 10px; }
  .menu-toggle { display: block; margin-left: auto; }
  .header-inner > .button { display: none; }
  .hero { padding-top: 128px; }
  .hero-grid { min-height: auto; }
  h1 { font-size: clamp(47px, 13vw, 64px); }
  .hero-showcase { width: 100%; }
  .browser-screen { height: 330px; }
  .metric-main { right: -5px; }
  .metric-secondary { left: 10px; }
  .hero-facts { grid-template-columns: 1fr; padding: 12px 0; }
  .hero-facts > div, .hero-facts > div:first-child { padding: 17px 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .hero-facts > div:last-child { border-bottom: 0; }
  .split-heading, .faq-layout { grid-template-columns: 1fr; gap: 24px; }
  .split-heading { margin-bottom: 44px; }
  .faq-heading { position: static; }
  .project-grid, .value-grid, .offer-grid { grid-template-columns: 1fr; }
  .offer-training { grid-column: auto; }
  .project-copy { padding: 38px; }
  .project-card-image { height: 350px; }
  .value-card { min-height: 290px; }
  .comparison-head, .comparison-row { grid-template-columns: .75fr 1.25fr; }
  .comparison-head > *, .comparison-row > * { padding: 20px 17px; }
  .process-list li { grid-template-columns: 60px 1fr; gap: 18px; }
  .process-list small { grid-column: 2; justify-self: start; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .shell { width: calc(100% - 30px); }
  .section { padding: 78px 0; }
  .brand-name { font-size: 14px; }
  .eyebrow { margin-bottom: 20px; font-size: 11px; letter-spacing: .18em; }
  .hero { padding-top: 112px; }
  .hero-grid { gap: 62px; padding-bottom: 90px; }
  h1 { margin-bottom: 22px; font-size: 47px; }
  .hero-lead { font-size: 15px; line-height: 1.7; }
  .booking-card { grid-template-columns: 38px 1fr; }
  .booking-action { grid-column: 1 / -1; width: 100%; text-align: center; }
  .hero-links { flex-direction: column; gap: 6px; }
  .browser-card { transform: none; border-radius: 16px; }
  .browser-screen { height: 260px; }
  .project-pill { top: 56px; left: 10px; }
  .metric-card { min-width: 135px; padding: 13px; }
  .metric-card strong { font-size: 23px; }
  .metric-main { bottom: 38px; }
  .metric-secondary { bottom: -50px; }
  .metric-note { display: none; }
  .section-heading h2, .value-intro h2, .difference-heading h2, .studio-copy h2, .booking-copy h2, .faq-heading h2, .final-cta h2 { font-size: 43px; }
  .project-visual { min-height: 300px; }
  .project-copy { padding: 32px 25px; }
  .project-card-image { height: 270px; }
  .project-card-copy { grid-template-columns: 1fr; }
  .project-card-copy > span { margin-top: 3px; }
  .offer-card { min-height: auto; padding: 32px 25px; }
  .offer-card h3 { font-size: 34px; }
  .offer-button { margin-top: 20px; }
  .comparison { overflow: visible; border: 0; }
  .comparison-head { display: none; }
  .comparison-row { grid-template-columns: 1fr; margin-bottom: 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; }
  .comparison-row > span { padding-bottom: 10px; }
  .comparison-row > strong { padding-top: 10px; border-left: 0; }
  .process-list li { grid-template-columns: 48px 1fr; padding: 27px 0; }
  .process-list li > span { font-size: 28px; }
  .duo-cards { min-height: 690px; }
  .person-card { width: 78%; }
  .portrait-placeholder { height: 330px; }
  .calendar-preview { padding: 21px; }
  .times { grid-template-columns: 1fr 1fr; }
  .faq-list details p { padding-right: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 38px 20px; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { gap: 20px; }
  .booking-modal { padding: 34px 25px; }
}

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