:root {
  --bg: #090909;
  --bg-soft: #11110f;
  --panel: #151512;
  --panel-2: #1b1a16;
  --text: #f2efe8;
  --muted: #9b978f;
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.2);
  --gold: #c5a66c;
  --gold-bright: #e0c28d;
  --max: 1440px;
  --pad: clamp(20px, 4vw, 64px);
  --display: "Playfair Display", Georgia, serif;
  --sans: "Manrope", "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(197,166,108,.09), transparent 36%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: #090909; }

.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;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 86px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled {
  background: rgba(9,9,9,.78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 20px;
  color: var(--gold-bright);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: 14px; letter-spacing: .16em; text-transform: uppercase; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: clamp(24px, 2.7vw, 44px); }
.site-nav a {
  position: relative;
  color: rgba(242,239,232,.72);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right .3s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--text); }
.site-nav a:not(.nav-cta):hover::after, .site-nav a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.nav-cta:hover { border-color: var(--gold); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(142px, 17vh, 190px) var(--pad) 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .78fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto var(--pad) 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent);
}
.hero-atmosphere, .grain { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(8px); }
.orb-one {
  width: 52vw;
  height: 52vw;
  right: -14vw;
  top: 9vh;
  background: radial-gradient(circle at 40% 45%, rgba(197,166,108,.19), rgba(197,166,108,.025) 48%, transparent 66%);
  animation: float 10s ease-in-out infinite;
}
.orb-two {
  width: 34vw;
  height: 34vw;
  left: 18vw;
  bottom: -17vw;
  background: radial-gradient(circle, rgba(77,74,66,.22), transparent 68%);
}
.grain {
  opacity: .24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-content, .hero-reel { position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  margin: 0 0 20px;
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-title {
  margin: 0;
  max-width: 900px;
  font-family: var(--display);
  font-size: clamp(58px, 7.6vw, 126px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .88;
}
.hero-title em { display: block; color: var(--gold-bright); font-weight: 500; }
.hero-intro {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(242,239,232,.7);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--text); color: var(--bg); }
.button-primary:hover { background: var(--gold-bright); }
.button-ghost { border-color: var(--line-strong); background: rgba(255,255,255,.025); }
.button-ghost:hover { border-color: var(--gold); }

.hero-reel { min-width: 0; }
.reel-frame {
  position: relative;
  min-height: clamp(520px, 62vh, 720px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.012));
  box-shadow: 0 40px 100px rgba(0,0,0,.45);
  overflow: hidden;
}
.reel-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.05);
  pointer-events: none;
}
.reel-topline, .reel-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(242,239,232,.55);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.reel-footer { position: absolute; left: 22px; right: 22px; bottom: 22px; }
.reel-visual {
  position: absolute;
  inset: 56px 22px 56px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(197,166,108,.04), transparent 35%),
    radial-gradient(circle at 50% 60%, rgba(197,166,108,.18), transparent 34%),
    linear-gradient(180deg, #10100e, #070707);
}
.reel-horizon {
  position: absolute;
  left: -15%;
  right: -15%;
  top: 58%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,194,141,.7), transparent);
  box-shadow: 0 0 45px rgba(224,194,141,.45);
}
.reel-object {
  position: absolute;
  width: 62%;
  aspect-ratio: 1.75;
  left: 19%;
  top: 37%;
  border-radius: 50% 50% 22% 22% / 65% 65% 25% 25%;
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.015));
  box-shadow: inset 0 -35px 50px rgba(0,0,0,.75), 0 28px 60px rgba(0,0,0,.65);
  transform: perspective(600px) rotateX(8deg);
}
.reel-object::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 8%;
  height: 43%;
  border-radius: 50% 50% 24% 24%;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.15));
}
.reel-glow {
  position: absolute;
  inset: auto 15% 9%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #b72c20 18%, #ff6b55 50%, #b72c20 82%, transparent);
  filter: blur(.5px);
  box-shadow: 0 0 24px rgba(255,75,55,.5);
}
.reel-visual p {
  position: absolute;
  left: 26px;
  bottom: 24px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 2.8vw, 48px);
  line-height: 1.05;
}

.scroll-cue {
  position: absolute;
  left: var(--pad);
  bottom: 31px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(242,239,232,.45);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.scroll-cue i { display: block; width: 54px; height: 1px; background: var(--line-strong); overflow: hidden; }
.scroll-cue i::after {
  content: "";
  display: block;
  width: 50%;
  height: 1px;
  background: var(--gold);
  animation: scrollLine 2.2s ease-in-out infinite;
}

.section { max-width: var(--max); margin: 0 auto; padding: clamp(100px, 12vw, 190px) var(--pad); }
.section-index { color: rgba(242,239,232,.34); font-size: 10px; letter-spacing: .18em; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 50px; align-items: end; margin-bottom: 68px; }
.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6.6vw, 98px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.045em;
}
.section-summary { max-width: 560px; margin: 0; color: var(--muted); font-size: 17px; }

.manifesto {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(260px, .42fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
}
.display-copy {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.3vw, 82px);
  font-weight: 500;
  letter-spacing: -.042em;
  line-height: 1.08;
}
.display-copy em { color: var(--gold-bright); font-weight: 500; }
.manifesto-note {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
}

.work { padding-top: 80px; }
.project-list { display: grid; gap: 90px; }
.project { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr); gap: clamp(28px, 4.5vw, 72px); align-items: end; }
.project:nth-child(even) { grid-template-columns: minmax(300px, .6fr) minmax(0, 1.4fr); }
.project:nth-child(even) .project-visual { order: 2; }
.project:nth-child(even) .project-copy { order: 1; }
.project-visual {
  position: relative;
  min-height: clamp(430px, 55vw, 760px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: #111;
  isolation: isolate;
}
.project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.58));
  pointer-events: none;
}
.project-number {
  position: absolute;
  top: 24px;
  left: 26px;
  z-index: 7;
  color: rgba(255,255,255,.68);
  font-size: 10px;
  letter-spacing: .16em;
}
.project-overlay {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 22px;
  z-index: 7;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.project-copy { padding-bottom: 8px; }
.project-type { margin: 0 0 16px; color: var(--gold-bright); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.project-copy h3 { margin: 0 0 18px; font-family: var(--display); font-size: clamp(38px, 4vw, 66px); font-weight: 500; line-height: 1; }
.project-copy p { margin: 0; color: var(--muted); }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 0; padding: 0; list-style: none; }
.project-tags li { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: rgba(242,239,232,.63); font-size: 10px; }
.text-link { display: inline-flex; gap: 8px; margin-top: 26px; padding-bottom: 5px; border-bottom: 1px solid var(--line-strong); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.text-link:hover { border-color: var(--gold); color: var(--gold-bright); }

.project-automotive { background: radial-gradient(circle at 50% 61%, #504237 0, #171513 36%, #080808 76%); }
.automotive-art { position: absolute; inset: 0; transform: scale(1.02); transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.project:hover .automotive-art { transform: scale(1.065); }
.car-body {
  position: absolute;
  width: 68%;
  height: 28%;
  left: 16%;
  top: 43%;
  border-radius: 45% 45% 18% 18% / 62% 62% 24% 24%;
  background: linear-gradient(180deg, #393834 0%, #111 66%, #050505 100%);
  border: 1px solid rgba(255,255,255,.17);
  box-shadow: inset 0 16px 20px rgba(255,255,255,.04), 0 36px 70px rgba(0,0,0,.6);
}
.car-roof {
  position: absolute;
  width: 42%;
  height: 19%;
  left: 29%;
  top: 31%;
  border-radius: 50% 50% 16% 16%;
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(10,10,10,.8));
  border: 1px solid rgba(255,255,255,.13);
  transform: perspective(500px) rotateX(10deg);
}
.car-light { position: absolute; z-index: 3; top: 59%; width: 18%; height: 3px; background: linear-gradient(90deg, transparent, #e84632, #ff9a84, #e84632, transparent); box-shadow: 0 0 18px rgba(255,62,42,.6); }
.car-light-left { left: 21%; }
.car-light-right { right: 21%; }
.road-line { position: absolute; left: 8%; right: 8%; top: 73%; height: 1px; background: linear-gradient(90deg, transparent, rgba(224,194,141,.6), transparent); box-shadow: 0 0 40px rgba(224,194,141,.45); }

.project-beauty { background: radial-gradient(circle at 63% 40%, rgba(173,106,121,.48), transparent 26%), linear-gradient(135deg, #351f28 0%, #130e13 48%, #080808 100%); }
.beauty-art { position: absolute; inset: 0; }
.beauty-ring { position: absolute; border: 1px solid rgba(255,228,224,.27); border-radius: 50%; box-shadow: inset 0 0 60px rgba(255,200,190,.04); }
.ring-one { width: 52%; aspect-ratio: 1; left: 28%; top: 16%; }
.ring-two { width: 35%; aspect-ratio: 1; left: 36%; top: 25%; }
.beauty-core { position: absolute; width: 20%; aspect-ratio: .72; left: 46%; top: 32%; border-radius: 44% 44% 48% 48% / 30% 30% 60% 60%; background: linear-gradient(150deg, rgba(255,229,223,.9), rgba(160,91,110,.18) 65%, rgba(0,0,0,.1)); box-shadow: 0 0 80px rgba(223,143,155,.28); transform: rotate(9deg); }
.beauty-word { position: absolute; left: 9%; bottom: 17%; font-family: var(--display); font-size: clamp(70px, 11vw, 160px); color: rgba(255,242,236,.08); letter-spacing: -.08em; }

.project-travel { background: linear-gradient(180deg, #6d6048 0%, #2f302a 37%, #101310 74%, #080808 100%); }
.travel-art { position: absolute; inset: 0; overflow: hidden; }
.travel-sun { position: absolute; width: 23%; aspect-ratio: 1; right: 16%; top: 14%; border-radius: 50%; background: #d9c58e; filter: blur(.3px); box-shadow: 0 0 70px rgba(217,197,142,.36); }
.mountain { position: absolute; left: -8%; right: -8%; bottom: 0; height: 58%; clip-path: polygon(0 88%, 17% 41%, 30% 67%, 46% 24%, 59% 61%, 76% 17%, 100% 75%, 100% 100%, 0 100%); }
.mountain-back { background: #353b34; opacity: .8; transform: translateY(-8%); }
.mountain-front { background: linear-gradient(180deg, #1d251e, #0b0d0b); }
.travel-path { position: absolute; left: 47%; bottom: -5%; width: 12%; height: 44%; border-radius: 50% 50% 0 0; background: linear-gradient(180deg, rgba(211,192,145,.7), rgba(211,192,145,.06)); transform: perspective(350px) rotateX(48deg); transform-origin: bottom; }

.project-education { background: radial-gradient(circle at 50% 48%, rgba(77,120,139,.34), transparent 32%), linear-gradient(145deg, #19242a 0%, #0d1519 52%, #070808 100%); }
.education-art { position: absolute; inset: 0; display: grid; place-items: center; }
.edu-core { position: relative; z-index: 4; display: grid; place-items: center; width: 26%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(166,218,238,.38); background: radial-gradient(circle, rgba(131,190,213,.28), rgba(8,15,18,.74)); font-family: var(--display); font-size: clamp(42px, 7vw, 104px); color: rgba(224,243,249,.9); box-shadow: 0 0 85px rgba(90,168,198,.2); }
.edu-orbit { position: absolute; border: 1px solid rgba(170,218,235,.2); border-radius: 50%; }
.orbit-one { width: 52%; aspect-ratio: 1; }
.orbit-two { width: 75%; aspect-ratio: 1; transform: rotateX(67deg) rotateZ(-14deg); }
.edu-node { position: absolute; width: 11px; aspect-ratio: 1; border-radius: 50%; background: #bfe7f4; box-shadow: 0 0 18px rgba(146,215,238,.75); }
.node-one { left: 22%; top: 37%; }
.node-two { right: 17%; top: 51%; }
.node-three { left: 51%; bottom: 13%; }

.services { max-width: none; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services > * { max-width: calc(var(--max) - (var(--pad) * 2)); margin-left: auto; margin-right: auto; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 370px; padding: clamp(30px, 4vw, 58px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.018), transparent); transition: background .3s ease, transform .3s ease; }
.service-card:hover { background: rgba(197,166,108,.045); }
.service-no { color: var(--gold); font-size: 10px; letter-spacing: .16em; }
.service-card h3 { max-width: 420px; margin: 74px 0 18px; font-family: var(--display); font-size: clamp(34px, 3vw, 50px); font-weight: 500; line-height: 1.05; }
.service-card > p { max-width: 520px; color: var(--muted); }
.service-card ul { display: grid; gap: 8px; margin: 26px 0 0; padding: 0; list-style: none; color: rgba(242,239,232,.67); font-size: 13px; }
.service-card li::before { content: "—"; margin-right: 10px; color: var(--gold); }

.process { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 120px); }
.process-intro { position: sticky; top: 130px; align-self: start; }
.process-intro .section-title { font-size: clamp(48px, 5.7vw, 82px); }
.process-intro .section-summary { margin-top: 28px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 28px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--gold); font-size: 10px; letter-spacing: .14em; }
.process-list h3 { margin: 0 0 8px; font-family: var(--display); font-size: clamp(30px, 3vw, 46px); font-weight: 500; }
.process-list p { margin: 0; color: var(--muted); }

.about { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.about-portrait { min-height: 660px; display: grid; place-items: center; background: radial-gradient(circle at 50% 40%, rgba(197,166,108,.14), transparent 42%); }
.portrait-frame { position: relative; width: min(100%, 430px); aspect-ratio: .72; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.005)); overflow: hidden; }
.portrait-frame::before, .portrait-frame::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; }
.portrait-frame::before { width: 78%; aspect-ratio: 1; left: 11%; top: 16%; }
.portrait-frame::after { width: 48%; aspect-ratio: .82; left: 26%; top: 24%; border-radius: 46% 46% 38% 38%; background: radial-gradient(circle at 50% 25%, rgba(224,194,141,.11), transparent 52%); }
.portrait-line { position: absolute; inset: auto 12% 19%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); box-shadow: 0 0 28px rgba(197,166,108,.35); }
.portrait-initials { position: absolute; left: 7%; bottom: 3%; font-family: var(--display); font-size: clamp(90px, 11vw, 170px); color: rgba(242,239,232,.075); letter-spacing: -.08em; }
.portrait-frame small { position: absolute; right: 20px; top: 20px; color: rgba(242,239,232,.38); font-size: 9px; letter-spacing: .15em; text-align: right; text-transform: uppercase; }
.about-copy .section-title { font-size: clamp(48px, 6vw, 86px); }
.about-lead { margin: 32px 0 22px; color: var(--text) !important; font-family: var(--display); font-size: clamp(23px, 2.3vw, 34px); line-height: 1.35; }
.about-copy > p { max-width: 750px; color: var(--muted); }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 42px; }
.about-facts span { min-height: 120px; padding: 20px; display: flex; flex-direction: column; justify-content: end; border: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.about-facts strong { display: block; margin-bottom: 3px; color: var(--gold-bright); font-family: var(--display); font-size: 22px; font-weight: 500; }

.contact { position: relative; max-width: none; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 8vw, 120px); background: #0d0c0a; border-top: 1px solid var(--line); overflow: hidden; }
.contact > *:not(.contact-glow) { position: relative; z-index: 2; }
.contact-glow { position: absolute; width: 70vw; height: 70vw; left: -28vw; bottom: -45vw; border-radius: 50%; background: radial-gradient(circle, rgba(197,166,108,.16), transparent 64%); }
.contact-title { margin: 0; max-width: 760px; font-family: var(--display); font-size: clamp(52px, 7vw, 104px); font-weight: 500; line-height: .94; letter-spacing: -.045em; }
.contact-copy > p:last-child { max-width: 620px; margin-top: 32px; color: var(--muted); }
.enquiry-form { display: grid; gap: 26px; align-self: center; padding: clamp(28px, 4vw, 54px); border: 1px solid var(--line); background: rgba(255,255,255,.022); backdrop-filter: blur(14px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.enquiry-form label { display: grid; gap: 9px; }
.enquiry-form label > span { color: rgba(242,239,232,.6); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  padding: 12px 0;
  transition: border-color .2s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 130px; }
select option { background: #151515; color: var(--text); }
.form-submit { justify-self: start; margin-top: 4px; }
.form-note { margin: -8px 0 0; color: rgba(242,239,232,.4); font-size: 11px; }

.site-footer { max-width: var(--max); margin: 0 auto; padding: 54px var(--pad); display: flex; justify-content: space-between; gap: 40px; border-top: 1px solid var(--line); }
.footer-brand { margin-bottom: 20px; }
.site-footer p { margin: 0; color: var(--muted); font-size: 13px; }
.footer-meta { display: flex; align-items: end; gap: 30px; color: rgba(242,239,232,.48); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.footer-meta a:hover { color: var(--gold-bright); }

.brief-dialog {
  width: min(760px, calc(100vw - 28px));
  max-height: min(84vh, 800px);
  padding: 0;
  border: 1px solid var(--line-strong);
  background: #12110f;
  color: var(--text);
  box-shadow: 0 30px 100px rgba(0,0,0,.7);
}
.brief-dialog::backdrop { background: rgba(0,0,0,.76); backdrop-filter: blur(8px); }
.dialog-head { padding: 22px 24px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); }
.dialog-head div { display: grid; }
.dialog-head span { color: var(--gold); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.dialog-head strong { margin-top: 3px; font-family: var(--display); font-size: 26px; font-weight: 500; }
.dialog-head button { border: 0; background: transparent; cursor: pointer; font-size: 28px; }
.brief-dialog pre { margin: 0; padding: 28px 24px; max-height: 52vh; overflow: auto; white-space: pre-wrap; color: rgba(242,239,232,.72); font: 13px/1.7 var(--sans); }
.dialog-actions { padding: 20px 24px; display: flex; gap: 12px; border-top: 1px solid var(--line); }
.brief-dialog > p { min-height: 22px; margin: 0; padding: 0 24px 18px; color: var(--gold-bright); font-size: 12px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }

@keyframes float { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(-2vw,1.5vh,0); } }
@keyframes scrollLine { 0% { transform: translateX(-100%); } 50% { transform: translateX(120%); } 100% { transform: translateX(120%); } }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-content { max-width: 880px; }
  .hero-reel { width: min(100%, 760px); justify-self: end; }
  .reel-frame { min-height: 620px; }
  .manifesto { grid-template-columns: 50px 1fr; }
  .manifesto-note { grid-column: 2; max-width: 680px; margin-top: 0; }
  .project, .project:nth-child(even) { grid-template-columns: 1fr; }
  .project:nth-child(even) .project-visual, .project:nth-child(even) .project-copy { order: initial; }
  .project-copy { max-width: 760px; }
  .process, .about, .contact { grid-template-columns: 1fr; }
  .process-intro { position: static; }
  .about-portrait { min-height: 540px; }
  .portrait-frame { width: min(80vw, 430px); }
}

@media (max-width: 820px) {
  .site-header { height: 72px; }
  .menu-toggle { display: grid; gap: 7px; width: 44px; height: 44px; place-content: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(0,0,0,.15); }
  .menu-toggle span:not(.sr-only) { width: 18px; height: 1px; background: var(--text); transition: transform .3s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 72px 0 0;
    padding: 46px var(--pad);
    flex-direction: column;
    align-items: flex-start;
    background: rgba(9,9,9,.97);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.2,.75,.25,1);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { font-family: var(--display); font-size: 36px; letter-spacing: -.02em; text-transform: none; }
  .nav-cta { margin-top: 16px; font-family: var(--sans) !important; font-size: 12px !important; letter-spacing: .1em !important; text-transform: uppercase !important; }
  .hero { padding-top: 125px; }
  .hero-title { font-size: clamp(52px, 15vw, 92px); }
  .hero-reel { width: 100%; }
  .reel-frame { min-height: 520px; }
  .section-heading { grid-template-columns: 1fr; align-items: start; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto .section-index, .manifesto-note { grid-column: 1; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .about-facts { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .footer-meta { align-items: flex-start; flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .brand-copy small { display: none; }
  .hero { padding-bottom: 72px; }
  .hero-title { font-size: clamp(48px, 15vw, 72px); line-height: .94; }
  .hero-intro { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .reel-frame { min-height: 440px; padding: 16px; }
  .reel-visual { inset: 46px 16px 48px; }
  .reel-footer { left: 16px; right: 16px; bottom: 16px; }
  .reel-footer span:nth-child(2), .reel-footer span:nth-child(3) { display: none; }
  .scroll-cue { display: none; }
  .section { padding-top: 94px; padding-bottom: 94px; }
  .section-title { font-size: clamp(42px, 13vw, 62px); }
  .display-copy { font-size: clamp(38px, 11vw, 56px); }
  .project-list { gap: 68px; }
  .project-visual { min-height: 390px; }
  .project-overlay { left: 18px; right: 18px; flex-direction: column; gap: 4px; }
  .project-number { left: 18px; }
  .project-copy h3 { font-size: 44px; }
  .service-card { padding: 28px 22px; }
  .service-card h3 { margin-top: 58px; }
  .process-list li { grid-template-columns: 42px 1fr; gap: 16px; }
  .about-portrait { min-height: 470px; }
  .contact { padding-top: 110px; }
  .contact-title { font-size: clamp(48px, 14vw, 68px); }
  .enquiry-form { padding: 24px 18px; }
  .dialog-actions { flex-direction: column; }
  .dialog-actions .button { width: 100%; }
}

@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; }
}
