@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500&family=Montserrat:wght@300;400&display=swap');

:root {
  --bg: #080706;
  --bg-soft: #100d0b;
  --cream: #f1dfd2;
  --muted: #a99b91;
  --copper: #d49468;
  --copper-light: #f1ba91;
  --line: rgba(229, 177, 138, .2);
  --white-line: rgba(255, 255, 255, .07);
  --page: clamp(24px, 5vw, 84px);
  --serif: Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); scroll-padding-top: 90px; }
body { margin: 0; min-width: 320px; color: var(--cream); background: var(--bg); font-family: 'Manrope', sans-serif; font-weight: 300; overflow-x: hidden; }
body::after { content: ''; position: fixed; inset: 0; z-index: 20; pointer-events: none; box-shadow: inset 0 0 180px rgba(0, 0, 0, .48); }
a, a:link, a:visited { color: inherit; }
img { max-width: 100%; }

.noise { position: fixed; inset: -50%; z-index: 19; opacity: .035; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E"); animation: noise .2s steps(2) infinite; }
@keyframes noise { 0% { transform: translate3d(0,0,0); } 25% { transform: translate3d(2%,-1%,0); } 50% { transform: translate3d(-1%,2%,0); } 75% { transform: translate3d(1%,1%,0); } }
.ambient { position: fixed; border-radius: 50%; filter: blur(110px); opacity: .1; pointer-events: none; }
.ambient-one { width: 36vw; height: 36vw; right: -15vw; top: 5vh; background: #c86e35; }
.ambient-two { width: 26vw; height: 26vw; left: -12vw; bottom: -8vh; background: #5c2f1b; }

.site-header { position: absolute; z-index: 10; top: 0; left: 0; width: 100%; height: 88px; padding: 0 var(--page); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--white-line); }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; width: max-content; }
.brand img { width: 43px; height: 34px; object-fit: contain; }
.brand span, .footer-brand { font-family: 'Montserrat', sans-serif; font-size: 17px; letter-spacing: .44em; font-weight: 300; }
.site-header nav { display: flex; gap: clamp(24px, 3vw, 52px); }
.site-header nav a { position: relative; color: #887a71; text-decoration: none; text-transform: uppercase; letter-spacing: .2em; font-size: 8px; transition: color .3s ease; }
.site-header nav a::after { content: ''; position: absolute; height: 1px; left: 0; right: .2em; bottom: -8px; background: var(--copper); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.site-header nav a:hover { color: var(--cream); }
.site-header nav a:hover::after { transform: scaleX(1); }
.header-note { justify-self: end; color: var(--muted); text-transform: uppercase; font-size: 8px; letter-spacing: .24em; display: flex; align-items: center; gap: 10px; }
.header-note span, .status span { width: 5px; height: 5px; border-radius: 50%; background: var(--copper); box-shadow: 0 0 12px var(--copper); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .35; transform: scale(.75); } }

.hero { min-height: 100svh; position: relative; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; padding: 138px var(--page) 92px; }
.hero-copy { position: relative; z-index: 3; max-width: 780px; }
.eyebrow { display: flex; align-items: center; gap: 13px; margin: 0 0 32px; color: var(--copper-light); text-transform: uppercase; letter-spacing: .3em; font-size: 9px; }
.eyebrow i { display: block; width: 18px; height: 1px; background: var(--copper); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: clamp(52px, 6.3vw, 106px); line-height: .95; letter-spacing: -.055em; font-weight: 300; }
h1 span, h2 em { color: var(--copper-light); font-family: var(--serif); font-weight: 400; font-style: italic; }
.intro { max-width: 560px; margin: 36px 0 0; color: var(--muted); font-size: clamp(13px, 1.05vw, 17px); line-height: 1.8; }
.launch-status { width: min(100%, 560px); margin-top: 44px; padding: 22px 0 21px; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 8px 28px; border-top: 1px solid var(--line); border-bottom: 1px solid rgba(229,177,138,.11); }
.launch-kicker { grid-column: 1 / -1; display: flex; align-items: center; gap: 12px; color: var(--copper-light); text-transform: uppercase; letter-spacing: .24em; font-size: 8px; }
.launch-kicker i { width: 30px; height: 1px; background: linear-gradient(90deg,var(--copper),transparent); }
.launch-status strong { font-family: var(--serif); font-size: clamp(27px,2.4vw,40px); line-height: 1; font-weight: 400; font-style: italic; letter-spacing: -.025em; }
.launch-status small { padding-bottom: 3px; color: #766861; text-transform: uppercase; letter-spacing: .18em; font-size: 7px; text-align: right; }
.hero-visual { position: relative; height: min(68vh, 700px); display: flex; align-items: center; justify-content: center; }
.hero-mark { position: relative; z-index: 2; width: min(90%, 620px); filter: drop-shadow(0 0 12px rgba(226,145,88,.2)); }
.projection-beam { position: absolute; z-index: 1; width: 74%; height: 48%; left: -18%; top: 30%; clip-path: polygon(0 52%,100% 0,100% 100%); background: linear-gradient(90deg,rgba(238,170,116,.03),rgba(238,170,116,.19) 65%,rgba(238,170,116,.04)); filter: blur(3px); transform-origin: left center; animation: beam 7s ease-in-out infinite; }
.projection-glow { position: absolute; width: 50%; height: 40%; background: rgba(205,112,56,.13); filter: blur(70px); }
@keyframes beam { 0%,100% { opacity: .55; transform: rotate(-1deg); } 50% { opacity: 1; transform: rotate(1.5deg); } }
.coordinate { position: absolute; color: #6e625b; font-size: 7px; letter-spacing: .22em; writing-mode: vertical-rl; }
.coordinate-top { top: 4%; right: 1%; }
.coordinate-bottom { bottom: 4%; left: 2%; transform: rotate(180deg); }
.corner { position: absolute; width: 32px; height: 32px; opacity: .35; }
.corner-tl { top: 10%; left: 10%; border-top: 1px solid var(--copper); border-left: 1px solid var(--copper); }
.corner-br { right: 8%; bottom: 10%; border-right: 1px solid var(--copper); border-bottom: 1px solid var(--copper); }
.scroll-hint { position: absolute; bottom: 28px; right: var(--page); display: flex; align-items: center; gap: 14px; color: #5f5550; font-size: 8px; letter-spacing: .3em; text-transform: uppercase; text-decoration: none; }
.scroll-hint i { width: 54px; height: 1px; background: #3b3430; position: relative; overflow: hidden; }
.scroll-hint i::after { content: ''; position: absolute; inset: 0; background: var(--copper); transform: translateX(-100%); animation: scan 2.8s ease-in-out infinite; }
@keyframes scan { 60%,100% { transform: translateX(100%); } }

.section-index { margin: 0; color: #75675f; font-size: 8px; letter-spacing: .24em; text-transform: uppercase; }
.manifesto { min-height: 78vh; padding: 14vh var(--page); border-top: 1px solid var(--white-line); display: grid; grid-template-columns: 1fr 4fr 1.5fr; align-items: center; gap: 5vw; }
.manifesto .section-index { align-self: start; }
.manifesto h2 { margin: 0; font-family: var(--serif); font-size: clamp(37px,4.5vw,76px); line-height: 1.18; letter-spacing: -.035em; font-weight: 400; }
.manifesto h2 span { color: #6d625b; }
.manifesto > p:last-child { align-self: end; margin-bottom: 0; color: var(--muted); font-size: 11px; line-height: 1.9; }

.projects { padding: 12vh var(--page) 10vh; border-top: 1px solid var(--white-line); }
.section-heading { display: grid; grid-template-columns: minmax(0,2.2fr) minmax(240px,.8fr); gap: 8vw; align-items: end; margin-bottom: clamp(52px,8vw,110px); }
.section-heading .section-index { margin-bottom: 28px; }
.section-heading h2 { max-width: 900px; margin-bottom: 0; font-size: clamp(42px,5.3vw,86px); line-height: 1.02; letter-spacing: -.045em; font-weight: 300; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.9; }
.project-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: clamp(38px,6vw,96px) clamp(18px,2.5vw,42px); align-items: start; }
.project-card { grid-column: span 6; margin: 0; }
.project-feature { grid-column: 1 / -1; }
.project-portrait { grid-column: 2 / span 4; }
.project-portrait + .project-card { grid-column: 7 / span 6; margin-top: 13vw; }
.project-wide { grid-column: 3 / span 8; }
.project-image { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: #130f0c; border: 1px solid rgba(229,177,138,.12); }
.project-image::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg,transparent 68%,rgba(0,0,0,.28)); box-shadow: inset 0 0 70px rgba(0,0,0,.2); }
.project-card img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) contrast(1.02); transform: scale(1.005); transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .6s; }
.project-feature .project-image { aspect-ratio: 16 / 8.5; }
.project-portrait .project-image { aspect-ratio: 3 / 4; }
.project-card:hover img { transform: scale(1.035); filter: saturate(1) contrast(1.02); }
.project-number { position: absolute; z-index: 2; top: 16px; left: 18px; display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.25); color: #ead1bf; font-size: 8px; letter-spacing: .14em; backdrop-filter: blur(8px); }
.project-card figcaption { display: flex; justify-content: space-between; align-items: end; gap: 18px; padding-top: 18px; }
.project-card h3 { margin: 0 0 5px; font-family: var(--serif); font-size: clamp(20px,2vw,31px); font-weight: 400; }
.project-card figcaption p, .project-card figcaption > span { margin: 0; color: #786b63; text-transform: uppercase; letter-spacing: .18em; font-size: 7px; }
.project-card figcaption > span { padding-bottom: 4px; text-align: right; }
.concept-note { margin: 8vh 0 0; text-align: right; color: #554b46; text-transform: uppercase; letter-spacing: .2em; font-size: 7px; }

.approach { padding: 14vh var(--page); display: grid; grid-template-columns: .85fr 1.15fr; gap: 10vw; border-top: 1px solid var(--white-line); background: linear-gradient(120deg,rgba(173,91,44,.055),transparent 48%); }
.approach-intro .section-index { margin-bottom: 32px; }
.approach-intro h2 { margin: 0; font-size: clamp(44px,4.6vw,74px); line-height: 1.06; letter-spacing: -.045em; font-weight: 300; }
.approach-steps article { display: grid; grid-template-columns: 52px minmax(140px,.8fr) minmax(180px,1.2fr); gap: 24px; align-items: baseline; padding: 30px 0; border-top: 1px solid var(--line); }
.approach-steps article:last-child { border-bottom: 1px solid var(--line); }
.approach-steps span { color: var(--copper); font-size: 8px; letter-spacing: .2em; }
.approach-steps h3 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 20px; }
.approach-steps p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.8; }

.finale { position: relative; min-height: 76vh; padding: 14vh var(--page); display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; text-align: center; border-top: 1px solid var(--white-line); }
.finale::before { content: ''; position: absolute; width: min(70vw,900px); aspect-ratio: 1; border-radius: 50%; background: rgba(174,87,42,.1); filter: blur(110px); }
.finale img { position: absolute; width: min(52vw,620px); opacity: .055; }
.finale > * { position: relative; }
.finale > p { margin: 0 0 24px; color: var(--copper-light); text-transform: uppercase; letter-spacing: .28em; font-size: 8px; }
.finale h2 { margin: 0; font-size: clamp(52px,7vw,112px); line-height: .96; letter-spacing: -.055em; font-weight: 300; }
.status { margin-top: 48px; display: flex; align-items: center; gap: 12px; color: #8b7b71; text-transform: uppercase; letter-spacing: .24em; font-size: 8px; }

footer { padding: 54px var(--page); border-top: 1px solid var(--white-line); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; }
.footer-brand { text-decoration: none; }
footer p { margin: 0; text-align: center; color: #665c56; font-size: 8px; letter-spacing: .24em; text-transform: uppercase; }
footer .copyright { text-align: right; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 1s ease,transform 1s cubic-bezier(.16,1,.3,1); }
.loaded .reveal { opacity: 1; transform: none; }
.loaded .hero-copy .reveal:nth-child(2) { transition-delay: .1s; }
.loaded .hero-copy .reveal:nth-child(3) { transition-delay: .22s; }
.loaded .hero-copy .reveal:nth-child(4) { transition-delay: .34s; }
.loaded .hero-visual { transition-delay: .18s; }
.reveal-scroll { opacity: 0; transform: translateY(34px); transition: opacity .9s ease,transform .9s cubic-bezier(.16,1,.3,1); }
.reveal-scroll.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header nav { display: none; }
  .site-header { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-copy { padding-bottom: 20px; }
  .hero-visual { height: 42vh; min-height: 330px; }
  .manifesto { grid-template-columns: 1fr; gap: 42px; }
  .manifesto > p:last-child { max-width: 440px; justify-self: end; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p { max-width: 480px; justify-self: end; }
  .approach { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --page: 22px; }
  .site-header { height: 74px; }
  .brand span { font-size: 13px; }
  .brand img { width: 36px; }
  .header-note { font-size: 7px; }
  .hero { min-height: auto; padding-top: 124px; padding-bottom: 76px; }
  h1 { font-size: clamp(48px,15vw,70px); }
  .intro { max-width: 94%; }
  .launch-status { margin-top: 36px; padding: 19px 0; grid-template-columns: 1fr; }
  .launch-status strong { font-size: 32px; }
  .launch-status small { padding: 0; text-align: left; }
  .hero-visual { margin-top: 14px; height: 34vh; min-height: 260px; }
  .coordinate,.scroll-hint { display: none; }
  .manifesto,.projects,.approach { padding-top: 90px; padding-bottom: 90px; }
  .manifesto { min-height: auto; }
  .manifesto h2 { font-size: 38px; }
  .section-heading { margin-bottom: 54px; }
  .section-heading h2 { font-size: 42px; }
  .project-grid { display: block; }
  .project-card,.project-portrait + .project-card { margin: 0 0 54px; }
  .project-card .project-image,.project-feature .project-image,.project-portrait .project-image { aspect-ratio: 4 / 3; }
  .project-feature img { object-position: center 61%; }
  .project-portrait img { object-position: center 36%; }
  .project-card figcaption > span { display: none; }
  .project-wide { margin-bottom: 0; }
  .concept-note { margin-top: 44px; text-align: left; line-height: 1.7; }
  .approach-intro h2 { font-size: 45px; }
  .approach-steps article { grid-template-columns: 34px 1fr; gap: 12px; }
  .approach-steps p { grid-column: 2; }
  .finale { min-height: 66vh; }
  .finale img { width: 92vw; }
  footer { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  footer p,footer .copyright { text-align: center; }
}

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