:root {
  --ink: #090b0a;
  --ink-soft: #101310;
  --panel: #151916;
  --white: #f0f2ed;
  --muted: #919890;
  --line: rgba(240, 242, 237, .14);
  --acid: #5f819a;
  --acid-dark: #283642;
  --font-display: "Manrope", sans-serif;
  --font-mono: "DM Mono", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  overflow-x: hidden;
  cursor: default;
}
body.loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
::selection { background: var(--acid); color: var(--ink); }

.noise {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: .035;
  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='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
.cursor-dot, .cursor-ring { position: fixed; pointer-events: none; z-index: 10000; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor-dot { width: 5px; height: 5px; background: var(--acid); }
.cursor-ring { width: 36px; height: 36px; border: 1px solid rgba(95,129,154,.75); transition: width .2s, height .2s, background .2s; }
.cursor-ring.active { width: 62px; height: 62px; background: rgba(95,129,154,.12); }

.loader { position: fixed; inset: 0; z-index: 9999; background: var(--acid-dark); color: var(--white); padding: 28px 3vw; display: flex; flex-direction: column; justify-content: space-between; }
.loader__top { display: flex; justify-content: space-between; font: 500 12px var(--font-mono); letter-spacing: .08em; }
.loader__line { position: absolute; left: 3vw; right: 3vw; top: 50%; height: 1px; background: rgba(255,255,255,.2); }
.loader__line span { display: block; width: 0; height: 100%; background: var(--white); }
.loader__word { font-size: clamp(4rem, 17vw, 15rem); line-height: .76; font-weight: 800; letter-spacing: -.08em; align-self: center; overflow: hidden; }

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 90px; padding: 0 3vw; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid transparent; transition: background .35s, border-color .35s, height .35s;
}
.header.scrolled { height: 72px; background: rgba(9,11,10,.82); backdrop-filter: blur(18px); border-color: var(--line); }
.brand { width: 156px; height: 42px; overflow: hidden; display: flex; align-items: center; }
.brand img { width: 100%; filter: brightness(0) invert(1); }
.nav { display: flex; gap: 34px; margin-left: 8vw; }
.nav a { font: 400 11px var(--font-mono); text-transform: uppercase; letter-spacing: .1em; color: #c2c7c0; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--acid); transition: width .25s; }
.nav a:hover::after { width: 100%; }
.header__cta { display: flex; align-items: center; gap: 16px; padding: 11px 18px 11px 20px; border: 1px solid var(--line); border-radius: 100px; font: 500 11px var(--font-mono); text-transform: uppercase; letter-spacing: .05em; transition: background .25s, color .25s; }
.header__cta:hover { background: var(--acid); color: var(--ink); }
.header__cta svg, .cta__button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.menu-toggle { display: none; background: none; border: 0; width: 38px; height: 38px; position: relative; }
.menu-toggle span { position: absolute; width: 22px; height: 1px; background: var(--white); left: 8px; transition: transform .3s, top .3s; }
.menu-toggle span:first-child { top: 14px; }.menu-toggle span:last-child { top: 23px; }

.hero { min-height: 100svh; position: relative; padding: 130px 3vw 0; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero__grid { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 8.333vw 8.333vw; mask-image: linear-gradient(to bottom, black, transparent 85%); }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.orb--one { width: 35vw; height: 35vw; right: -12vw; top: 4vh; background: radial-gradient(circle at 35% 35%, rgba(95,129,154,.28), rgba(40,54,66,.1) 45%, transparent 70%); }
.orb--two { width: 20vw; height: 20vw; left: 23vw; bottom: -8vw; background: radial-gradient(circle, rgba(95,129,154,.15), transparent 70%); }
.hero__eyebrow { position: absolute; top: 126px; left: 3vw; right: 3vw; display: flex; align-items: center; gap: 13px; font: 400 10px var(--font-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.hero__eyebrow span:last-child { margin-left: auto; }
.status-dot { width: 7px; height: 7px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 14px var(--acid); animation: pulse 2s ease infinite; }
@keyframes pulse { 50% { opacity: .35; transform: scale(.8); } }
.hero__title { position: relative; z-index: 2; padding: 8vh 0 7vh; }
.title-line { overflow: hidden; }
.title-line > span { display: block; font-size: clamp(4rem, 10.5vw, 10.4rem); line-height: .83; font-weight: 800; letter-spacing: -.075em; }
.title-line--accent { display: flex; align-items: center; gap: 4vw; color: var(--acid); }
.title-line em { font-style: normal; color: transparent; -webkit-text-stroke: 1px var(--acid); }
.title-line--right { text-align: right; }
.hero__arrow { width: clamp(45px, 6vw, 90px); flex: none; fill: none; stroke: var(--acid); stroke-width: 1.1; }
.hero__bottom { display: flex; justify-content: space-between; align-items: flex-end; position: relative; z-index: 2; padding-bottom: 72px; }
.hero__description { max-width: 480px; font-size: clamp(1rem, 1.35vw, 1.25rem); line-height: 1.6; color: #b4bab2; }
.hero__description strong { color: var(--white); font-weight: 500; }
.scroll-cue { display: flex; align-items: center; gap: 18px; font: 400 10px var(--font-mono); text-transform: uppercase; letter-spacing: .12em; }
.scroll-cue__circle { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: background .25s, border-color .25s; }
.scroll-cue:hover .scroll-cue__circle { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.scroll-cue svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.hero__ticker { position: absolute; bottom: 0; left: 0; right: 0; height: 37px; background: var(--acid-dark); color: var(--white); overflow: hidden; display: flex; align-items: center; transform: rotate(-.8deg) scale(1.02); transform-origin: center; }
.ticker-track { display: flex; align-items: center; gap: 25px; white-space: nowrap; font: 500 10px var(--font-mono); letter-spacing: .09em; animation: ticker 22s linear infinite; }
.ticker-track i { width: 5px; height: 5px; background: var(--white); border-radius: 50%; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-pad { padding: 130px 6vw; }
.section-index { font: 400 10px var(--font-mono); letter-spacing: .15em; color: var(--muted); margin-bottom: 72px; }
.manifesto { min-height: 95vh; display: flex; flex-direction: column; justify-content: center; }
.manifesto__content { max-width: 1450px; }
.manifesto__lead, .manifesto__statement { font-size: clamp(2.4rem, 5.5vw, 6.2rem); line-height: 1.06; letter-spacing: -.055em; }
.manifesto__lead { color: #555b55; }
.manifesto__statement span { color: var(--acid); }
.split-text .word { display: inline-block; opacity: .15; }
.manifesto__meta { margin-top: 80px; display: flex; gap: 32px; font: 400 10px var(--font-mono); letter-spacing: .12em; color: var(--muted); }
.manifesto__meta span::before { content: "◆"; color: var(--acid); font-size: 6px; margin-right: 10px; vertical-align: 1px; }

.projects { background: #e8ebe4; color: var(--ink); }
.projects .section-index { color: #70766f; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; }
.section-heading h2, .services h2, .process h2 { font-size: clamp(3.2rem, 6.6vw, 7.4rem); line-height: .92; letter-spacing: -.065em; }
.section-heading h2 span, .services h2 span, .process h2 span { color: transparent; -webkit-text-stroke: 1px currentColor; }
.section-heading p { width: 340px; font-size: 15px; line-height: 1.7; color: #5e645d; margin-bottom: 8px; }
.projects__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 80px 2.2vw; }
.project-card { min-width: 0; }
.project-card--wide { grid-column: 1 / -1; }
.project-card__visual { position: relative; overflow: hidden; aspect-ratio: 1.3; background: #101310; }
.project-card--wide .project-card__visual { aspect-ratio: 2.15; }
.project-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.75,.2,1), filter .5s; }
.project-card:hover .project-card__visual img { transform: scale(1.04); filter: saturate(1.1); }
.project-card__scan { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 49%, rgba(95,129,154,.42) 50%, transparent 51%); transform: translateY(-100%); opacity: 0; }
.project-card:hover .project-card__scan { animation: scan 1.1s ease; }
@keyframes scan { 20% { opacity: 1; } 100% { opacity: 0; transform: translateY(100%); } }
.project-card__number { position: absolute; top: 18px; left: 18px; width: 38px; height: 25px; background: rgba(9,11,10,.75); backdrop-filter: blur(8px); color: white; display: grid; place-items: center; font: 400 9px var(--font-mono); }
.project-card__open { position: absolute; right: 20px; bottom: 20px; width: 54px; height: 54px; background: var(--acid); border-radius: 50%; display: grid; place-items: center; transform: scale(0) rotate(-35deg); transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.project-card:hover .project-card__open { transform: scale(1) rotate(0); }
.project-card__open svg { width: 21px; fill: none; stroke: var(--ink); stroke-width: 1.5; }
.project-card__info { display: flex; justify-content: space-between; align-items: end; padding-top: 21px; border-top: 1px solid rgba(9,11,10,.18); }
.project-card__info h3 { font-size: clamp(1.35rem, 2vw, 2rem); letter-spacing: -.035em; }
.project-card__info p, .project-card__info > span { font: 400 10px var(--font-mono); text-transform: uppercase; letter-spacing: .08em; color: #686e67; margin-top: 7px; }
.state-art { color: #173b34; background: #e9e1d3; border: 1px solid rgba(23,59,52,.16); }
.state-art::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(23,59,52,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(23,59,52,.08) 1px, transparent 1px); background-size: 64px 64px; }
.state-art__rail { position: absolute; top: 24px; left: 0; right: 0; display: flex; justify-content: space-around; font: 500 9px var(--font-mono); letter-spacing: .16em; }
.state-art__monogram { position: absolute; right: 8%; top: 47%; transform: translateY(-50%); font: 300 clamp(7rem, 16vw, 14rem) var(--font-display); letter-spacing: -.14em; opacity: .11; }
.state-art__copy { position: absolute; left: 7%; top: 50%; transform: translateY(-50%); font-size: clamp(1.8rem, 3.2vw, 3.6rem); font-weight: 700; line-height: .96; letter-spacing: -.055em; }
.state-art__copy em { font-family: Georgia, serif; font-weight: 400; }
.state-art__coordinates { position: absolute; right: 7%; bottom: 24px; font: 400 8px/1.5 var(--font-mono); letter-spacing: .08em; text-align: right; }
.aurea-art img { filter: saturate(.72) contrast(1.05); }
.aurea-art__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,7,7,.72), rgba(6,7,7,.06) 65%); }
.aurea-art__brand { position: absolute; left: 5%; top: 50%; transform: translateY(-50%); color: #f5eee2; font-family: Georgia, serif; font-size: clamp(4rem, 10vw, 11rem); letter-spacing: .04em; }
.aurea-art__caption { position: absolute; left: 5.5%; bottom: 11%; color: #f5eee2; font: 400 9px var(--font-mono); letter-spacing: .17em; }

.services { background: var(--ink); }
.services__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 100px; }
.services__header p { width: 330px; color: var(--muted); line-height: 1.7; }
.services__list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 70px 1fr 1fr 60px; gap: 30px; align-items: center; min-height: 150px; border-bottom: 1px solid var(--line); position: relative; transition: color .35s; overflow: hidden; }
.service-row::before { content: ""; position: absolute; inset: 0; background: var(--acid); transform: translateY(101%); transition: transform .45s cubic-bezier(.7,0,.2,1); }
.service-row:hover::before { transform: translateY(0); }
.service-row > * { position: relative; z-index: 1; }
.service-row:hover { color: var(--ink); }
.service-row__number { font: 400 10px var(--font-mono); color: var(--muted); }
.service-row:hover .service-row__number { color: var(--ink); }
.service-row h3 { font-size: clamp(1.6rem, 2.6vw, 2.7rem); letter-spacing: -.04em; }
.service-row p { max-width: 380px; color: var(--muted); line-height: 1.6; font-size: 14px; }
.service-row:hover p { color: rgba(9,11,10,.7); }
.service-row__icon { font-size: 28px; justify-self: end; transition: transform .3s; }
.service-row:hover .service-row__icon { transform: rotate(45deg); }

.process { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; background: var(--ink-soft); }
.process__sticky { align-self: start; position: sticky; top: 130px; }
.process__sticky p { max-width: 380px; margin-top: 40px; line-height: 1.7; color: var(--muted); }
.process__steps { display: flex; flex-direction: column; gap: 24px; }
.process-step { min-height: 430px; padding: 35px; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; background: var(--ink-soft); }
.process-step::before { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: var(--acid); filter: blur(100px); opacity: .07; right: -70px; top: -70px; }
.process-step__top { display: flex; justify-content: space-between; font: 400 10px var(--font-mono); letter-spacing: .12em; color: var(--muted); }
.process-step__top span:first-child { color: var(--acid); }
.process-step h3 { font-size: clamp(2rem, 3.4vw, 3.8rem); line-height: 1; letter-spacing: -.055em; }
.process-step p { max-width: 420px; line-height: 1.7; color: var(--muted); font-size: 14px; }

.cta { min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; padding: 120px 4vw 150px; }
.cta::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 7vw 7vw; opacity: .1; mask-image: radial-gradient(circle, black, transparent 70%); }
.cta__orb { position: absolute; width: 55vw; height: 55vw; max-width: 850px; max-height: 850px; border: 1px solid rgba(95,129,154,.16); border-radius: 50%; box-shadow: 0 0 120px rgba(95,129,154,.1), inset 0 0 100px rgba(95,129,154,.04); }
.cta__label { position: relative; display: flex; align-items: center; gap: 11px; font: 400 10px var(--font-mono); letter-spacing: .12em; margin-bottom: 45px; }
.cta__title { position: relative; font-size: clamp(4rem, 10vw, 10.5rem); font-weight: 800; line-height: .84; letter-spacing: -.075em; }
.cta__title span { color: var(--acid); }
.cta > p { position: relative; max-width: 530px; color: var(--muted); line-height: 1.7; margin: 45px 0 35px; }
.cta__button { position: relative; display: flex; align-items: center; gap: 35px; background: var(--acid); color: var(--ink); padding: 20px 26px 20px 32px; border-radius: 100px; font: 500 11px var(--font-mono); text-transform: uppercase; letter-spacing: .08em; transition: box-shadow .3s; }
.cta__button:hover { box-shadow: 0 0 45px rgba(95,129,154,.28); }
.cta__marquee { position: absolute; left: 0; right: 0; bottom: 25px; overflow: hidden; white-space: nowrap; color: rgba(240,242,237,.07); font-size: 5vw; font-weight: 800; letter-spacing: -.05em; }
.cta__marquee span { display: inline-block; animation: ticker 18s linear infinite; }

.footer { border-top: 1px solid var(--line); padding: 70px 4vw 25px; }
.footer__brand { display: flex; flex-direction: column; gap: 25px; }
.footer__brand img { width: 190px; filter: brightness(0) invert(1); }
.footer__brand p { color: var(--muted); line-height: 1.6; font-size: 14px; }
.footer__links { display: flex; gap: 10vw; justify-content: flex-end; margin-top: -75px; }
.footer__links > div { display: flex; flex-direction: column; gap: 12px; min-width: 150px; }
.footer__links span { font: 400 9px var(--font-mono); letter-spacing: .12em; color: #60665f; margin-bottom: 7px; }
.footer__links a { font-size: 13px; color: #bcc2ba; }
.footer__links a:hover { color: var(--acid); }
.footer__bottom { margin-top: 80px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font: 400 9px var(--font-mono); letter-spacing: .09em; color: #60665f; }

@media (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
  .nav, .header__cta { display: none; }
  .menu-toggle { display: block; }
  .header.menu-open .nav { display: flex; position: fixed; top: 72px; right: 0; bottom: auto; left: 0; height: calc(100svh - 72px); background: var(--ink); flex-direction: column; align-items: center; justify-content: center; gap: 35px; margin: 0; }
  .header.menu-open .nav a { font-size: 18px; }
  .header.menu-open .menu-toggle span:first-child { top: 19px; transform: rotate(45deg); }
  .header.menu-open .menu-toggle span:last-child { top: 19px; transform: rotate(-45deg); }
  .hero { padding-top: 120px; min-height: 820px; }
  .hero__eyebrow { top: 105px; }
  .hero__title { padding: 15vh 0 8vh; }
  .title-line > span { font-size: clamp(3.7rem, 15vw, 7rem); }
  .hero__arrow { display: none; }
  .hero__bottom { align-items: flex-start; gap: 35px; flex-direction: column; }
  .section-pad { padding: 95px 5vw; }
  .section-heading, .services__header { align-items: flex-start; flex-direction: column; gap: 40px; }
  .projects__grid { gap: 55px 18px; }
  .project-card--wide .project-card__visual { aspect-ratio: 1.6; }
  .process { grid-template-columns: 1fr; }
  .process__sticky { position: relative; top: 0; }
  .service-row { grid-template-columns: 45px 1fr 45px; padding: 25px 0; }
  .service-row p { grid-column: 2; }
  .service-row__icon { grid-column: 3; grid-row: 1; }
}

@media (max-width: 600px) {
  .header { height: 72px; padding: 0 5vw; }
  .brand { width: 130px; }
  .hero { padding-left: 5vw; padding-right: 5vw; min-height: 760px; justify-content: flex-start; }
  .hero__eyebrow { left: 5vw; right: 5vw; }
  .hero__eyebrow span:last-child { display: none; }
  .hero__title { padding-top: 22vh; padding-bottom: 9vh; }
  .title-line > span { font-size: 15.2vw; line-height: .88; }
  .title-line--right { text-align: left; }
  .hero__description { font-size: 15px; max-width: 330px; }
  .scroll-cue { display: none; }
  .section-index { margin-bottom: 45px; }
  .manifesto { min-height: 80vh; }
  .manifesto__lead, .manifesto__statement { font-size: 10.5vw; }
  .manifesto__meta { flex-direction: column; gap: 12px; margin-top: 50px; }
  .section-heading h2, .services h2, .process h2 { font-size: 13vw; }
  .section-heading p, .services__header p { width: auto; }
  .projects__grid { grid-template-columns: 1fr; gap: 58px; }
  .project-card--wide { grid-column: auto; }
  .project-card__visual, .project-card--wide .project-card__visual { aspect-ratio: 1.2; }
  .project-card__info { align-items: flex-start; gap: 18px; }
  .project-card__info > div { min-width: 0; }
  .project-card__info > span { text-align: right; max-width: 44%; }
  .state-art__copy { font-size: 8vw; }
  .state-art__monogram { font-size: 30vw; }
  .aurea-art__brand { font-size: 17vw; }
  .services__header { margin-bottom: 65px; }
  .service-row { grid-template-columns: 36px 1fr 35px; min-height: 170px; gap: 12px; }
  .service-row h3 { font-size: 1.65rem; }
  .process-step { min-height: 360px; padding: 26px; }
  .cta { min-height: 800px; }
  .cta__title { font-size: 16vw; }
  .cta__orb { width: 110vw; height: 110vw; }
  .footer__links { margin-top: 60px; justify-content: flex-start; gap: 15vw; }
  .footer__bottom { flex-direction: column; gap: 13px; }
}

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