:root {
  --bg: #070606;
  --panel: #0d0a09;
  --ink: #f6ecdf;
  --soft: #d7c8b8;
  --muted: #a99983;
  --gold: #c6a66b;
  --park: #6f9f58;
  --line: rgba(246, 236, 223, .16);
  --pad: clamp(20px, 5vw, 84px);
  --serif: "Bodoni 72", Didot, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.project-header { position: absolute; z-index: 10; top: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; padding: 24px var(--pad); text-shadow: 0 2px 18px #000; }
.brand { color:var(--gold); font-family: var(--serif); font-size: 40px; }
.accent-gold { color:var(--gold); }
.accent-park { color:var(--park); text-shadow:0 1px 2px rgba(0,0,0,.95),0 0 14px rgba(184,216,165,.22); }
.back { padding: 12px 17px; border: 1px solid rgba(246,236,223,.35); border-radius: 999px; background: rgba(7,6,6,.36); backdrop-filter: blur(14px); font-size: 12px; font-weight:650; letter-spacing: .13em; text-transform: uppercase; }
.project-hero { position: relative; min-height: 84svh; display: flex; align-items: flex-end; overflow: hidden; }
.project-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.shade { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(5,4,4,.85),transparent 62%), linear-gradient(90deg,rgba(4,3,3,.34),transparent 58%); }
.hero-copy { position: relative; z-index: 3; width: min(1120px,100%); padding: 150px var(--pad) clamp(52px,8vh,100px); }
.eyebrow { color: var(--gold); font-size: clamp(12px,.82vw,15px); font-weight:650; line-height:1.35; letter-spacing: .19em; text-transform: uppercase; }
.hero-copy h1 { margin: .15em 0 0; font-family: var(--serif); font-size: clamp(62px,9vw,148px); font-weight: 400; line-height: .82; letter-spacing: -.055em; text-wrap: balance; }
.hero-copy p { max-width: 750px; margin: 24px 0 0; color: var(--soft); font-size: clamp(17px,1.5vw,22px); line-height: 1.5; }
.ai-label { position: absolute; z-index: 4; top: 96px; right: var(--pad); display: inline-flex; align-items: center; gap: 6px; max-width: calc(100% - 40px); padding: 7px 10px; border: 1px solid rgba(246,236,223,.68); border-radius: 999px; background: rgba(7,6,6,.88); -webkit-backdrop-filter: blur(18px) saturate(1.15); backdrop-filter: blur(18px) saturate(1.15); box-shadow: 0 8px 28px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.08); color: #fff; font-size: clamp(7.5px,.52vw,9px); font-weight: 720; line-height: 1.15; letter-spacing: .055em; text-shadow: 0 1px 5px #000; text-transform:uppercase; white-space:nowrap; }
.ai-label::before { content:""; flex:0 0 auto; width:5px; height:5px; border-radius:50%; background:var(--gold); box-shadow:0 0 0 3px rgba(198,166,107,.14),0 0 13px rgba(198,166,107,.68); }

.content { max-width: 1450px; margin: auto; padding: clamp(80px,11vw,160px) var(--pad); }
.intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(40px,9vw,150px); align-items: start; }
.intro h2 { margin: 0; font-family: var(--serif); font-size: clamp(48px,6vw,98px); font-weight: 400; line-height: .9; letter-spacing: -.045em; }
.intro-copy p { margin: 0 0 22px; color: var(--soft); font-size: 18px; line-height: 1.65; }
.project-disclaimer { padding:15px 17px; border-left:2px solid var(--gold); background:rgba(198,166,107,.08); color:var(--soft); font-size:13px !important; line-height:1.55 !important; }
.facts { margin-top: 38px; border-top: 1px solid var(--line); }
.facts div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.facts dt { color: var(--muted); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.facts dd { margin: 0; }
.gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: clamp(75px,10vw,140px); }
.gallery figure { position: relative; margin: 0; overflow: hidden; background: var(--panel); }
.gallery figure:first-child:nth-last-child(odd) { grid-column: 1/-1; }
.gallery img { height: 100%; min-height: 360px; aspect-ratio: 4/3; object-fit: cover; }
.gallery .ai-label { top:18px; right:18px; max-width:calc(100% - 36px); font-size:7px; }

@keyframes page-reveal { from { opacity:0; transform:translate3d(0,44px,0); } to { opacity:1; transform:none; } }
.hero-copy > * { animation: page-reveal 820ms cubic-bezier(.22,1,.36,1) both; }
.hero-copy > *:nth-child(2) { animation-delay:80ms; }
.hero-copy > *:nth-child(3) { animation-delay:150ms; }
@supports (animation-timeline: view()) {
  .intro > *, .gallery figure, .answers, .project-nav, .cta { animation: page-reveal both linear; animation-timeline:view(); animation-range:entry 4% cover 29%; }
}

.answers { margin-top: clamp(80px,11vw,150px); padding-top: clamp(54px,7vw,90px); border-top: 1px solid var(--line); }
.answers > span { color: var(--gold); font-size: clamp(12px,.82vw,14px); font-weight:650; letter-spacing: .17em; text-transform: uppercase; }
.answers h2 { max-width: 850px; margin: 20px 0 45px; font-family: var(--serif); font-size: clamp(42px,5vw,76px); font-weight: 400; line-height: .94; letter-spacing: -.035em; }
.answer-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); }
.answer-grid article { min-height: 220px; padding: clamp(28px,4vw,52px); background: var(--panel); }
.answer-grid h3 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(26px,2.6vw,39px); font-weight: 400; line-height: 1.05; }
.answer-grid p { margin: 0; color: var(--soft); font-size: 16px; line-height: 1.65; }

.project-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(72px,9vw,120px); padding-top: 28px; border-top: 1px solid var(--line); }
.project-nav a { padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--soft); font-size: 12px; font-weight:650; letter-spacing: .1em; text-transform: uppercase; transition: border-color 180ms ease, color 180ms ease, background 180ms ease; }
.project-nav a:hover, .project-nav a:focus-visible { border-color: var(--gold); background: rgba(198,166,107,.08); color: var(--gold); }
.back-to-projects-bottom { display:flex; align-items:center; justify-content:center; gap:14px; width:100%; margin-top:28px; padding:17px 20px; border:1px solid rgba(198,166,107,.58); border-radius:999px; background:rgba(198,166,107,.08); color:var(--gold); font-size:13px; font-weight:650; letter-spacing:.15em; text-transform:uppercase; transition:background 180ms ease,color 180ms ease,transform 180ms ease; }
.back-to-projects-bottom b { font-size:18px; font-weight:400; line-height:1; }
.back-to-projects-bottom:hover, .back-to-projects-bottom:focus-visible { background:var(--gold); color:var(--bg); transform:translateY(-2px); }
.cta { display: flex; justify-content: space-between; align-items: center; margin-top: 70px; padding: 24px; border: 1px solid rgba(198,166,107,.55); color: var(--gold); font-size: 13px; font-weight:650; letter-spacing: .15em; text-transform: uppercase; }
.cta:hover { background: var(--gold); color: var(--bg); }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px var(--pad); border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:14px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (max-width: 760px) {
  .project-header { padding-top: 18px; }
  .back { font-size: 10px; }
  .eyebrow { font-size:clamp(11px,3vw,13px); letter-spacing:.14em; }
  .back-to-projects-bottom { font-size:11px; letter-spacing:.12em; }
  .ai-label { top:78px; right:20px; max-width:calc(100% - 40px); gap:5px; padding:6px 8px; font-size:6.4px; letter-spacing:.04em; white-space:nowrap; }
  .gallery .ai-label { top:10px; right:10px; max-width:calc(100% - 20px); gap:4px; padding:5px 6px; font-size:5.2px; letter-spacing:.02em; }
  .project-hero { min-height: 78svh; }
  .hero-copy h1 { font-size:clamp(46px,15vw,62px); line-height:.86; letter-spacing:-.045em; overflow-wrap:anywhere; }
  .intro, .answer-grid { grid-template-columns: 1fr; }
  .answer-grid article { min-height: 0; }
  .gallery { grid-template-columns: 1fr; }
  .gallery figure:first-child:nth-last-child(odd) { grid-column: auto; }
  .gallery img { min-height: 280px; }
  footer { flex-direction: column; }
  .facts div { grid-template-columns: 95px 1fr; }
}

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