:root {
  --black: #050505;
  --black-2: #090909;
  --black-3: #0d0d0e;
  --panel: #111113;
  --panel-2: #151516;
  --cream: #f2ede5;
  --cream-2: #e8e0d4;
  --white: #f7f4ef;
  --muted: #a09c96;
  --muted-dark: #68645e;
  --red: #c51624;
  --red-deep: #760d16;
  --gold: #c59a51;
  --gold-light: #ebcf8e;
  --line: rgba(218, 180, 108, .18);
  --line-soft: rgba(255, 255, 255, .08);
  --shadow: 0 28px 80px rgba(0, 0, 0, .4);
  --shell: min(1320px, calc(100% - 64px));
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--black);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.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; z-index: 200; top: 10px; left: 10px; padding: 12px 16px; color: #111; background: var(--cream); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 78px;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled { background: rgba(5, 5, 5, .86); border-color: var(--line-soft); backdrop-filter: blur(18px); }
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 13px; font-weight: 700; letter-spacing: .28em; }
.brand img { width: 34px; height: 34px; }
.main-nav { display: flex; align-items: center; gap: 32px; font-size: 12px; letter-spacing: .08em; color: #d8d4ce; }
.main-nav a { position: relative; transition: color .25s ease; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold); transition: right .25s ease; }
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { right: 0; }
.nav-cta { padding: 11px 16px; border: 1px solid rgba(229, 194, 125, .42); color: var(--gold-light); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; }
.menu-toggle i { display: block; width: 22px; height: 1px; margin: 6px auto; background: var(--white); transition: transform .25s ease; }

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/hero-structure.webp");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.03);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5,5,5,.98) 28%, rgba(5,5,5,.83) 45%, rgba(5,5,5,.18) 70%, rgba(5,5,5,.12) 100%),
    linear-gradient(180deg, rgba(5,5,5,.56), transparent 30%, rgba(5,5,5,.36) 100%);
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px; background: linear-gradient(180deg, transparent, rgba(5,5,5,.96)); pointer-events: none; }
.hero-inner { min-height: 660px; display: flex; align-items: center; padding-top: 70px; }
.hero-copy { width: min(640px, 50%); padding: 55px 0 60px; }
.kicker { margin: 0 0 20px; display: flex; align-items: center; gap: 12px; color: var(--gold-light); font-size: 11px; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; }
.kicker > span { width: 28px; height: 1px; background: var(--red); box-shadow: 0 0 12px rgba(197, 22, 36, .6); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; max-width: 600px; font-size: clamp(46px, 5.5vw, 82px); line-height: .96; letter-spacing: -.055em; font-weight: 520; }
h1 em, h2 em { color: var(--gold-light); font-style: normal; }
.hero-lead { max-width: 580px; margin-bottom: 32px; color: #c2bdb6; font-size: 17px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border: 1px solid transparent; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--red); box-shadow: 0 12px 28px rgba(197, 22, 36, .24); }
.button-primary:hover { background: #df1d2c; }
.button-secondary { color: #e5dfd6; background: rgba(10,10,10,.48); border-color: rgba(255,255,255,.16); }
.button-secondary:hover { border-color: rgba(229,194,125,.55); color: var(--gold-light); }
.hero-proof { margin-top: 34px; display: flex; align-items: center; flex-wrap: wrap; gap: 13px; color: #807b75; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.hero-proof i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

.capability-strip { position: relative; z-index: 2; background: #080808; border-bottom: 1px solid var(--line); }
.capability-grid { display: grid; grid-template-columns: repeat(5, 1fr); min-height: 112px; }
.capability-grid article { display: flex; align-items: center; justify-content: center; gap: 13px; padding: 20px 18px; border-right: 1px solid var(--line-soft); color: #b8b2a9; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.capability-grid article:first-child { border-left: 1px solid var(--line-soft); }
.capability-grid svg { width: 28px; height: 28px; fill: none; stroke: var(--gold); stroke-width: 1.4; opacity: .9; }

.split-story { display: grid; grid-template-columns: 52% 48%; min-height: 530px; border-bottom: 1px solid var(--line-soft); background: #070707; }
.story-media { min-height: 530px; overflow: hidden; }
.story-media img { height: 100%; object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.06); }
.story-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px clamp(44px, 6vw, 100px); background: radial-gradient(circle at 90% 15%, rgba(118,13,22,.12), transparent 33%), #080808; }
.story-copy h2, .section-intro h2, .process-heading h2, .analytics-heading h2, .manifesto-copy h2, .light-intro h2, .faq-heading h2, .contact-copy h2, .final-cta-inner h2 { margin-bottom: 24px; font-size: clamp(34px, 4vw, 60px); line-height: 1.02; letter-spacing: -.045em; font-weight: 520; }
.story-copy > p:not(.kicker) { max-width: 640px; color: #a9a39b; font-size: 16px; line-height: 1.78; }
.story-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--line); }
.story-metrics div { display: grid; gap: 7px; }
.story-metrics strong { color: var(--gold); font-size: 12px; letter-spacing: .12em; }
.story-metrics span { color: #d2ccc4; font-size: 12px; line-height: 1.45; }

.services { padding: 105px 0 112px; background: radial-gradient(circle at 10% 0%, rgba(110, 11, 18, .12), transparent 35%), #080808; }
.section-intro { display: grid; grid-template-columns: 1.4fr .7fr; align-items: end; gap: 80px; margin-bottom: 48px; }
.section-intro h2 { margin-bottom: 0; max-width: 820px; }
.section-intro > p { margin: 0 0 5px; color: #918c85; font-size: 15px; line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-soft); border-left: 1px solid var(--line-soft); }
.service-card { position: relative; min-height: 350px; padding: 34px 30px 30px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: linear-gradient(160deg, rgba(255,255,255,.018), transparent 60%); transition: background .3s ease, transform .3s ease; overflow: hidden; }
.service-card::after { content: ""; position: absolute; right: -45px; bottom: -50px; width: 120px; height: 120px; border: 1px solid rgba(197,22,36,.18); transform: rotate(45deg); opacity: 0; transition: opacity .3s ease, transform .3s ease; }
.service-card:hover { background: linear-gradient(160deg, rgba(197,22,36,.08), rgba(255,255,255,.018)); transform: translateY(-5px); }
.service-card:hover::after { opacity: 1; transform: rotate(45deg) translate(-14px,-14px); }
.card-icon { height: 62px; display: flex; align-items: flex-start; }
.card-icon svg { width: 42px; height: 42px; fill: none; stroke: var(--gold); stroke-width: 1.25; }
.card-number { position: absolute; top: 34px; right: 28px; color: #59554f; font-size: 10px; letter-spacing: .16em; }
.service-card h3 { margin: 20px 0 14px; max-width: 230px; font-size: 21px; font-weight: 520; line-height: 1.2; letter-spacing: -.02em; }
.service-card p { color: #8e8982; font-size: 13px; line-height: 1.7; }
.service-card a { position: absolute; left: 30px; bottom: 26px; color: var(--gold-light); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.service-card a span { margin-left: 5px; color: var(--red); }

.studio-banner { position: relative; height: 355px; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.studio-banner img { height: 100%; object-fit: cover; object-position: center; filter: saturate(.78) contrast(1.12); }
.studio-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,3,3,.68), rgba(3,3,3,.05) 45%, rgba(3,3,3,.35)), linear-gradient(180deg, transparent 45%, rgba(3,3,3,.65)); }
.studio-copy { position: absolute; inset: auto 0 34px; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.studio-copy span { color: var(--gold-light); font-size: 10px; letter-spacing: .2em; }
.studio-copy p { max-width: 360px; margin: 0; text-align: right; color: #d1ccc5; font-size: 13px; line-height: 1.5; }

.process { padding: 72px 0 84px; background: linear-gradient(120deg, rgba(112, 4, 15, .88), rgba(31, 5, 8, .95)), radial-gradient(circle at 35% 30%, rgba(197,22,36,.45), transparent 40%), #30040a; border-bottom: 1px solid var(--line); overflow: hidden; }
.process-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 54px; }
.process-heading .kicker { margin-bottom: 0; }
.process-heading h2 { max-width: 790px; margin: 0; text-align: right; color: #f1e8df; font-size: clamp(30px, 3.2vw, 48px); }
.process-track { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; list-style: none; padding: 0; margin-top: 0; margin-bottom: 0; }
.process-track::before { content: ""; position: absolute; left: 8.5%; right: 8.5%; top: 16px; height: 1px; background: linear-gradient(90deg, rgba(229,194,125,.35), var(--gold), rgba(229,194,125,.35)); }
.process-track li { position: relative; padding: 50px 16px 0; text-align: center; }
.process-track li::before { content: ""; position: absolute; z-index: 1; left: 50%; top: 6px; width: 19px; height: 19px; border: 1px solid var(--gold); border-radius: 50%; background: #32060b; transform: translateX(-50%); box-shadow: 0 0 0 5px rgba(0,0,0,.08); }
.process-track span { display: block; margin-bottom: 7px; color: var(--gold-light); font-size: 9px; letter-spacing: .15em; }
.process-track strong { display: block; margin-bottom: 7px; color: #efe9e2; font-size: 13px; }
.process-track p { margin: 0; color: rgba(240,230,221,.55); font-size: 11px; line-height: 1.5; }

.projects { padding: 105px 0 112px; background: #070707; }
.project-intro { margin-bottom: 50px; }
.project-grid { display: grid; grid-template-columns: 1.05fr .8fr .8fr; grid-template-rows: 265px 265px; gap: 14px; }
.project-card { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.12); min-height: 0; background: #0c0c0d; }
.project-main { grid-row: 1 / 3; }
.project-card img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .6s ease; filter: saturate(.8) contrast(1.08); }
.project-card:hover img { transform: scale(1.05); filter: saturate(1) contrast(1.05); }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(3,3,3,.92)); }
.project-copy { position: absolute; left: 24px; right: 22px; bottom: 20px; }
.project-copy span { color: var(--gold-light); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.project-copy h3 { margin: 7px 0 5px; max-width: 360px; font-size: 19px; font-weight: 520; letter-spacing: -.02em; }
.project-main .project-copy h3 { font-size: 28px; }
.project-copy p { margin: 0; color: #8f8a83; font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }

.analytics { padding: 0 0 110px; background: #070707; }
.analytics-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; padding: 38px 0 32px; border-top: 1px solid var(--line-soft); }
.analytics-heading h2 { max-width: 720px; margin: 0; font-size: clamp(30px, 3.4vw, 48px); text-align: right; }
.analytics-heading .kicker { margin: 0; }
.analytics-grid { display: grid; grid-template-columns: .8fr 1.35fr .8fr; gap: 14px; }
.analytics-card { min-height: 300px; padding: 25px; border: 1px solid rgba(255,255,255,.1); background: linear-gradient(160deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); box-shadow: inset 0 1px rgba(255,255,255,.02); }
.analytics-title { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 17px; border-bottom: 1px solid var(--line-soft); color: #c6c1ba; font-size: 11px; letter-spacing: .05em; }
.analytics-title b { color: var(--gold-light); font-size: 10px; font-weight: 500; }
.mini-dashboard { display: flex; align-items: center; gap: 22px; padding: 24px 0 8px; }
.donut { width: 105px; height: 105px; transform: rotate(-90deg); }
.donut circle { fill: none; stroke-width: 11; cx: 60; cy: 60; r: 38; }
.donut circle:nth-child(1) { stroke: #28282b; }
.donut circle:nth-child(2) { stroke: var(--gold); stroke-dasharray: 48 52; stroke-dashoffset: 0; }
.donut circle:nth-child(3) { stroke: var(--red); stroke-dasharray: 23 77; stroke-dashoffset: -49; }
.legend { display: grid; gap: 8px; color: #77726c; font-size: 10px; }
.legend span { display: flex; align-items: center; gap: 8px; }
.legend i { width: 7px; height: 7px; background: var(--red); }
.legend span:nth-child(2) i { background: var(--gold); }
.legend span:nth-child(3) i { background: #5a5650; }
.spark-lines { width: 100%; height: 70px; overflow: visible; }
.spark-lines polyline { fill: none; stroke: var(--red); stroke-width: 2; vector-effect: non-scaling-stroke; }
.spark-lines polyline:last-child { stroke: var(--gold); opacity: .85; }
.area-chart { width: 100%; height: 230px; margin-top: 20px; overflow: visible; }
.chart-grid path { fill: none; stroke: rgba(255,255,255,.06); stroke-width: 1; vector-effect: non-scaling-stroke; }
.area-red { fill: url(#redArea); stroke: #d02230; stroke-width: 2; vector-effect: non-scaling-stroke; }
.area-gold { fill: url(#goldArea); stroke: #d6a85d; stroke-width: 1.5; vector-effect: non-scaling-stroke; }
.bar-chart { height: 150px; display: flex; align-items: end; justify-content: space-between; gap: 10px; padding: 25px 6px 0; border-bottom: 1px solid var(--line-soft); }
.bar-chart span { flex: 1; height: var(--h); min-height: 18px; background: linear-gradient(180deg, #d52331, #8b111b); box-shadow: 0 0 18px rgba(197,22,36,.12); }
.bar-chart span:nth-child(even) { background: linear-gradient(180deg, #d5ae69, #906b2f); }
.analytics-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 18px; }
.ring { width: 68px; height: 68px; border: 6px solid #2b2b2e; border-top-color: var(--red); border-right-color: var(--gold); border-radius: 50%; position: relative; }
.ring i { position: absolute; inset: 9px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }

.manifesto { display: grid; grid-template-columns: 47% 53%; min-height: 430px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #070707; }
.manifesto-media { overflow: hidden; }
.manifesto-media img { height: 100%; object-fit: cover; object-position: center top; filter: saturate(.9) contrast(1.05); }
.manifesto-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px clamp(45px, 7vw, 115px); background: radial-gradient(circle at 80% 40%, rgba(129,14,24,.1), transparent 35%), #080808; }
.manifesto-copy h2 { max-width: 760px; }
.manifesto-copy > p:not(.kicker) { max-width: 650px; color: #969089; font-size: 15px; line-height: 1.75; }
.text-link { margin-top: 20px; color: var(--gold-light); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.text-link span { margin-left: 6px; color: var(--red); }

.testimonials { padding: 85px 0 95px; color: #191716; background: var(--cream); }
.light-intro { margin-bottom: 40px; }
.light-intro .kicker, .faq .kicker { color: #8d6a32; }
.light-intro h2 { color: #1c1917; }
.light-intro > p { color: #6d675f; }
.testimonial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.testimonial-card { min-height: 200px; padding: 25px; border: 1px solid rgba(38,30,23,.09); background: rgba(255,255,255,.55); box-shadow: 0 9px 24px rgba(50,35,20,.06); }
.avatar { width: 31px; height: 31px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 50%; color: #5b431f; background: linear-gradient(135deg, #d2b57d, #a77936); font-size: 9px; font-weight: 700; }
.testimonial-card p { min-height: 74px; color: #3d3935; font-size: 13px; line-height: 1.65; }
.testimonial-card span { display: block; padding-top: 16px; border-top: 1px solid rgba(28,25,23,.09); color: #8b8378; font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }

.orbit-section { min-height: 240px; display: flex; align-items: center; background: radial-gradient(circle at center, rgba(146,95,32,.12), transparent 32%), #070707; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.orbit-wrap { width: min(1500px, 100%); }
.orbit-wrap svg { width: 100%; height: 220px; overflow: visible; }
.orbit-line { fill: none; stroke-width: 1.2; opacity: .48; }
.orbit-line.gold { stroke: #b98e49; }
.orbit-line.red { stroke: #9a1520; }
.orbit-line.subtle { stroke: #3e362d; stroke-dasharray: 5 7; }
.orb-blur { fill: url(#orbGlow); opacity: .8; filter: url(#blurGlow); }
.orb-core { fill: #f2d392; stroke: #fff4d6; stroke-width: 2; }
.orbit-points circle { fill: #d8b066; filter: drop-shadow(0 0 5px rgba(216,176,102,.75)); }

.faq { padding: 85px 0 90px; color: #1c1917; background: var(--cream); }
.faq-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 35px; }
.faq-heading h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); }
.faq-heading .kicker { margin: 0; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 24px; }
details { border: 1px solid rgba(42,34,26,.12); background: rgba(255,255,255,.52); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 60px; padding: 0 18px; cursor: pointer; list-style: none; color: #393530; font-size: 12px; font-weight: 600; }
summary::-webkit-details-marker { display: none; }
summary span { color: #a88243; font-size: 18px; font-weight: 300; transition: transform .25s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: 0; padding: 0 18px 18px; color: #746d64; font-size: 12px; line-height: 1.65; }

.contact { display: grid; grid-template-columns: 48% 52%; min-height: 520px; background: #080808; border-top: 1px solid var(--line); }
.contact-media { min-height: 520px; overflow: hidden; }
.contact-media img { height: 100%; object-fit: cover; object-position: center bottom; filter: saturate(.86) contrast(1.08); }
.contact-copy { display: flex; flex-direction: column; justify-content: center; padding: 65px clamp(40px, 6vw, 100px); }
.contact-copy h2 { max-width: 650px; }
.contact-copy > p:not(.kicker) { color: #8f8a83; font-size: 14px; line-height: 1.7; }
.contact-form { display: grid; gap: 14px; margin-top: 18px; max-width: 660px; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: #857f77; font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.1); border-radius: 0; padding: 12px 13px; color: #f0ece7; outline: none; background: #0d0d0f; transition: border-color .2s ease, box-shadow .2s ease; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(216,176,102,.55); box-shadow: 0 0 0 3px rgba(216,176,102,.06); }
.contact-form .button { justify-self: start; margin-top: 2px; }
.form-status { min-height: 18px; margin: 0; color: var(--gold-light); font-size: 11px; line-height: 1.5; }

.final-cta { position: relative; min-height: 330px; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #4f0810, #140406 70%); border-top: 1px solid rgba(218,180,108,.15); }
.final-cta::before { content: ""; position: absolute; inset: 0; background-image: url("assets/red-gold-detail.webp"); background-size: cover; background-position: center 36%; opacity: .58; filter: saturate(1.15) contrast(1.12); }
.final-cta-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,3,5,.58), rgba(40,3,7,.18), rgba(5,5,5,.62)), linear-gradient(180deg, rgba(5,5,5,.16), rgba(5,5,5,.45)); }
.final-cta-inner { position: relative; z-index: 1; display: grid; justify-items: center; text-align: center; }
.final-cta-inner p { margin-bottom: 18px; color: var(--gold-light); font-size: 9px; letter-spacing: .2em; }
.final-cta-inner h2 { max-width: 850px; margin-bottom: 27px; font-size: clamp(34px, 4.2vw, 58px); }

.site-footer { padding: 38px 0 26px; background: #050505; border-top: 1px solid var(--line-soft); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 28px; }
.footer-top nav { display: flex; gap: 30px; color: #858079; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.footer-top nav a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line-soft); color: #5e5a55; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@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; }
}

@media (max-width: 1100px) {
  :root { --shell: min(100% - 44px, 980px); }
  .main-nav { gap: 20px; }
  .hero-copy { width: 58%; }
  .story-copy { padding-inline: 45px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 310px; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 370px 240px 240px; }
  .project-main { grid-column: 1 / 3; grid-row: auto; }
  .analytics-grid { grid-template-columns: 1fr 1fr; }
  .analytics-card-wide { grid-column: 1 / 3; grid-row: 1; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 36px); }
  .site-header { height: 68px; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .main-nav { position: fixed; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px; padding: 90px 28px 40px; font-size: 19px; background: rgba(5,5,5,.97); transform: translateX(100%); transition: transform .32s ease; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav .nav-cta { margin-top: 10px; }
  .menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { min-height: 720px; }
  .hero-backdrop { background-position: 61% center; opacity: .7; }
  .hero::before { background: linear-gradient(90deg, rgba(5,5,5,.98), rgba(5,5,5,.86) 58%, rgba(5,5,5,.38)), linear-gradient(180deg, rgba(5,5,5,.55), transparent, rgba(5,5,5,.65)); }
  .hero-inner { min-height: 720px; align-items: flex-end; }
  .hero-copy { width: 100%; max-width: 600px; padding: 125px 0 70px; }
  h1 { max-width: 600px; font-size: clamp(46px, 10vw, 68px); }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-grid article:nth-child(5) { grid-column: 1 / 3; }
  .split-story, .manifesto, .contact { grid-template-columns: 1fr; }
  .story-media, .contact-media { min-height: 380px; }
  .story-copy, .manifesto-copy, .contact-copy { padding: 62px 24px; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; }
  .section-intro > p { max-width: 620px; }
  .studio-copy { align-items: flex-start; flex-direction: column; }
  .studio-copy p { text-align: left; }
  .process-heading { display: block; }
  .process-heading h2 { margin-top: 20px; text-align: left; }
  .process-track { grid-template-columns: repeat(3, 1fr); gap: 35px 0; }
  .process-track::before { display: none; }
  .process-track li { padding-top: 34px; }
  .process-track li::before { top: 0; }
  .analytics-heading { display: block; }
  .analytics-heading h2 { margin-top: 20px; text-align: left; }
  .manifesto-media { min-height: 340px; }
  .faq-heading { display: block; }
  .faq-heading h2 { margin-top: 18px; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  .brand span { font-size: 11px; }
  .hero { min-height: 680px; }
  .hero-inner { min-height: 680px; }
  .hero-copy { padding-bottom: 52px; }
  h1 { font-size: 43px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { display: grid; width: 100%; }
  .button { width: 100%; }
  .hero-proof { gap: 9px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid article, .capability-grid article:first-child { justify-content: flex-start; border-left: 1px solid var(--line-soft); }
  .capability-grid article:nth-child(5) { grid-column: auto; }
  .story-metrics { grid-template-columns: 1fr; }
  .services, .projects { padding: 78px 0 82px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .studio-banner { height: 300px; }
  .process { padding: 62px 0; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .project-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .project-main { grid-column: auto; min-height: 430px; }
  .project-card { min-height: 260px; }
  .analytics { padding-bottom: 78px; }
  .analytics-grid { grid-template-columns: 1fr; }
  .analytics-card-wide { grid-column: auto; grid-row: auto; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .orbit-section { min-height: 190px; }
  .orbit-wrap svg { height: 170px; width: 140%; margin-left: -20%; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-top nav { flex-wrap: wrap; gap: 16px 24px; }
}

/* Scroll-driven cinematic experience */
.scroll-film{position:relative;height:560vh;background:#030303;color:#fff}
.scroll-film-sticky{position:sticky;top:0;height:100vh;min-height:680px;overflow:hidden;background:#030303}
.scroll-film-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transform:scale(1.02);filter:saturate(.92) contrast(1.08) brightness(.72)}
.scroll-film-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(2,2,2,.88) 0%,rgba(2,2,2,.48) 48%,rgba(2,2,2,.22) 100%),linear-gradient(180deg,rgba(0,0,0,.18),rgba(0,0,0,.5));pointer-events:none}
.scroll-film-content{position:relative;height:100%;z-index:2}
.scroll-film-intro,.scroll-film-step{position:absolute;left:0;top:50%;max-width:720px;opacity:0;transform:translateY(calc(-50% + 34px));transition:opacity .45s ease,transform .65s cubic-bezier(.2,.8,.2,1);pointer-events:none}
.scroll-film-intro.is-active,.scroll-film-step.is-active{opacity:1;transform:translateY(-50%);pointer-events:auto}
.scroll-film-intro h2{font-size:clamp(2.5rem,5vw,5.7rem);line-height:.95;letter-spacing:-.055em;max-width:900px;margin:.6rem 0 1.3rem}
.scroll-film-intro>p:last-child{font-size:clamp(1rem,1.5vw,1.25rem);line-height:1.6;color:rgba(255,255,255,.72);max-width:620px}
.scroll-film-step{max-width:650px}
.scroll-film-step>span{display:block;font-size:.76rem;letter-spacing:.28em;color:#c5a572;margin-bottom:1rem}
.scroll-film-step>p{font-size:clamp(2.15rem,4.7vw,5rem);line-height:1;letter-spacing:-.05em;font-weight:650;text-wrap:balance}
.scroll-film-final .button{margin-top:1.8rem;pointer-events:auto}
.scroll-film-progress{position:absolute;right:clamp(20px,4vw,64px);top:18%;bottom:18%;width:2px;background:rgba(255,255,255,.16);z-index:3}
.scroll-film-progress i{position:absolute;top:0;left:0;width:100%;height:0;background:linear-gradient(#c5a572,#c8102e);box-shadow:0 0 18px rgba(200,16,46,.7)}
.scroll-film-hint{position:absolute;right:clamp(38px,6vw,92px);bottom:34px;z-index:3;font-size:.62rem;letter-spacing:.26em;color:rgba(255,255,255,.56);writing-mode:vertical-rl}
@media (max-width:800px){
  .scroll-film{height:480vh}
  .scroll-film-sticky{min-height:560px}
  .scroll-film-overlay{background:linear-gradient(180deg,rgba(0,0,0,.32),rgba(0,0,0,.84) 72%,#030303)}
  .scroll-film-intro,.scroll-film-step{left:20px;right:44px;top:66%;max-width:none}
  .scroll-film-intro h2{font-size:clamp(2.25rem,11vw,3.7rem)}
  .scroll-film-step>p{font-size:clamp(2rem,9vw,3.4rem)}
  .scroll-film-progress{right:18px;top:12%;bottom:12%}
  .scroll-film-hint{display:none}
}
@media (prefers-reduced-motion:reduce){
  .scroll-film{height:auto}
  .scroll-film-sticky{position:relative;height:auto;min-height:820px}
  .scroll-film-video{display:none}
  .scroll-film-sticky{background:linear-gradient(rgba(0,0,0,.56),rgba(0,0,0,.86)),url('assets/hero-structure.webp') center/cover}
  .scroll-film-intro{position:relative;top:auto;left:auto;padding-top:140px;opacity:1;transform:none}
  .scroll-film-step,.scroll-film-progress,.scroll-film-hint{display:none}
}
