:root {
  --ink: #080a09;
  --ink-soft: #111512;
  --panel: #151a16;
  --paper: #f1f1eb;
  --muted: #aeb8b8;
  --line: rgba(255,255,255,.14);
  --accent: #84ff00;
  --accent-soft: rgba(132,255,0,.16);
  --max: 1240px;
  --header-height: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: .7rem 1rem;
  color: #000;
  background: #fff;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 62px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s ease;
}
.site-header.scrolled {
  height: 70px;
  background: rgba(8,10,9,.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand img { width: 185px; height: auto; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.7vw, 42px);
  font-size: .76rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.desktop-nav a:not(.nav-cta) { color: rgba(255,255,255,.74); }
.desktop-nav a:hover { color: #fff; }
.nav-cta {
  border: 1px solid rgba(255,255,255,.38);
  padding: .7rem 1.05rem;
  transition: border-color .25s ease, background .25s ease;
}
.nav-cta:hover { border-color: var(--accent); background: var(--accent-soft); }

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  position: relative;
}
.menu-button span {
  position: absolute;
  width: 24px;
  height: 1px;
  left: 10px;
  background: #fff;
  transition: transform .25s ease, top .25s ease;
}
.menu-button span:first-child { top: 17px; }
.menu-button span:last-child { top: 25px; }
.menu-button[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  z-index: 45;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 100px 10vw;
  background: rgba(8,10,9,.98);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 1rem 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 9vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 80px) clamp(22px, 6vw, 92px) clamp(55px, 8vh, 90px);
}
.hero-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 35%, rgba(132,255,0,.12), transparent 27%),
    linear-gradient(135deg, #121713 0%, #060807 50%, #171c18 100%);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.52) 44%, rgba(0,0,0,.14) 74%),
    linear-gradient(0deg, rgba(0,0,0,.78) 0%, transparent 55%);
}
.hero-accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .23;
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}
.hero-accent-one {
  width: 38vw;
  height: 38vw;
  background: rgba(132,255,0,.24);
  right: -16vw;
  top: 12vh;
}
.hero-accent-two {
  width: 28vw;
  height: 28vw;
  background: rgba(173,190,191,.18);
  right: 20vw;
  bottom: -15vw;
  animation-delay: -4s;
}
@keyframes drift {
  to { transform: translate3d(-4vw, 3vh, 0) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding-bottom: 122px;
}
.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.025em;
}
h1 {
  margin: 0;
  font-size: clamp(4.2rem, 10.2vw, 9.6rem);
}
.hero-copy {
  max-width: 640px;
  margin: 2rem 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.45vw, 1.26rem);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 2.25rem;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .78rem 1.25rem;
  border: 1px solid transparent;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #080a09; background: var(--accent); }
.button-primary:hover { background: #a0ff3c; }
.button-ghost { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: var(--accent); }
.play-mark { font-size: .68rem; }
.text-link {
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 4px;
}

.hero-stats {
  position: absolute;
  z-index: 4;
  left: clamp(22px, 6vw, 92px);
  right: clamp(22px, 6vw, 92px);
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 760px;
  border-top: 1px solid var(--line);
}
.hero-stats div { padding: 20px 28px 0 0; }
.hero-stats strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}
.hero-stats span {
  display: block;
  margin-top: .45rem;
  color: rgba(255,255,255,.54);
  font-size: .67rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.scroll-cue {
  position: absolute;
  z-index: 4;
  right: clamp(22px, 6vw, 92px);
  bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.45);
  font-size: .63rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scroll-cue i {
  width: 1px;
  height: 62px;
  background: linear-gradient(#fff, transparent);
}

.section-shell {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}
.film-section {
  padding-top: clamp(100px, 13vw, 170px);
  padding-bottom: clamp(110px, 15vw, 190px);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  column-gap: 4vw;
  margin-bottom: 46px;
}
.section-heading .eyebrow { align-self: start; margin-top: 12px; }
.section-heading h2 {
  grid-column: 2;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 7rem);
}
.section-heading > p:last-child {
  grid-column: 2;
  max-width: 570px;
  color: var(--muted);
  margin: 1.4rem 0 0;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050605;
  box-shadow: 0 44px 120px rgba(0,0,0,.45);
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  background:
    linear-gradient(rgba(6,8,7,.58), rgba(6,8,7,.88)),
    radial-gradient(circle at 50% 38%, rgba(132,255,0,.18), transparent 28%),
    linear-gradient(135deg, #202621, #070908 62%);
}
.video-placeholder::before,
.video-placeholder::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.07);
}
.video-placeholder::before { inset: 22px; }
.video-placeholder::after { inset: 44px; }
.video-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(132,255,0,.13);
  filter: blur(40px);
}
.placeholder-play {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.6);
  color: #fff;
  background: rgba(0,0,0,.25);
  font-size: 1.25rem;
  padding-left: 7px;
}
.video-kicker {
  position: relative;
  z-index: 2;
  color: var(--accent);
  margin: 2rem 0 .45rem;
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.video-placeholder h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
}
.video-placeholder p:last-child {
  position: relative;
  z-index: 2;
  max-width: 560px;
  color: var(--muted);
  font-size: .9rem;
}

.statement-section {
  min-height: 80vh;
  display: grid;
  grid-template-columns: .9fr 2.1fr;
  gap: 4vw;
  align-items: center;
  padding: clamp(100px, 15vw, 210px) max(22px, calc((100vw - var(--max)) / 2));
  color: #111512;
  background: var(--paper);
}
.statement-number {
  align-self: start;
  color: rgba(17,21,18,.16);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5rem, 12vw, 12rem);
  line-height: .8;
}
.statement-content .eyebrow { color: #5e7f29; }
.statement-content h2 {
  margin: 0;
  max-width: 940px;
  font-size: clamp(3rem, 6.5vw, 6.5rem);
}
.statement-content > p:last-child {
  max-width: 690px;
  margin: 2rem 0 0;
  color: rgba(17,21,18,.67);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.feature-section {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 24px;
  padding-top: clamp(90px, 12vw, 160px);
  padding-bottom: clamp(100px, 15vw, 190px);
}
.feature-card {
  min-height: 620px;
  padding: clamp(32px, 5vw, 72px);
  border: 1px solid var(--line);
}
.feature-card-primary {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 25%, rgba(132,255,0,.14), transparent 31%),
    linear-gradient(140deg, #1a211b, #0a0c0b 70%);
}
.feature-card-primary::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  top: -130px;
  right: -110px;
  border-radius: 50%;
  border: 1px solid rgba(132,255,0,.2);
  box-shadow: 0 0 0 52px rgba(132,255,0,.025), 0 0 0 104px rgba(132,255,0,.02);
}
.feature-index {
  margin-bottom: auto;
  color: var(--accent);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.feature-card h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.1rem, 6vw, 6.4rem);
}
.feature-card-primary > p {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--muted);
  font-size: 1rem;
}
.feature-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 1.8rem 0 0;
  list-style: none;
}
.feature-list li {
  border: 1px solid rgba(255,255,255,.16);
  padding: .55rem .75rem;
  color: rgba(255,255,255,.72);
  font-size: .7rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.feature-card-secondary {
  color: #111512;
  background: #dfe3dc;
}
.feature-card-secondary .eyebrow { color: #557322; }
.detail-list { margin: 1.5rem 0 0; }
.detail-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(17,21,18,.17);
}
.detail-list dt {
  color: rgba(17,21,18,.58);
  font-size: .73rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.detail-list dd {
  margin: 0;
  text-align: right;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.gallery-section { padding-bottom: clamp(100px, 15vw, 190px); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gallery-item {
  grid-column: span 6;
  margin: 0;
}
.gallery-item:nth-child(3n) { grid-column: span 12; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-item:nth-child(3n) img { aspect-ratio: 16 / 8; }
.gallery-item figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: .85rem 0;
  color: var(--muted);
  font-size: .75rem;
  border-bottom: 1px solid var(--line);
}

.cta-section {
  min-height: 78vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
  padding: clamp(90px, 12vw, 170px) clamp(22px, 7vw, 112px);
  overflow: hidden;
  background: #0d100e;
}
.cta-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 25%, rgba(132,255,0,.12), transparent 24%),
    linear-gradient(120deg, rgba(255,255,255,.04), transparent 42%),
    repeating-linear-gradient(90deg, transparent 0 8.2vw, rgba(255,255,255,.025) 8.2vw calc(8.2vw + 1px));
}
.cta-content { position: relative; z-index: 2; max-width: 780px; }
.cta-logo { width: 225px; margin-bottom: 80px; }
.cta-content h2 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 9rem);
}
.cta-content > p:not(.eyebrow) { max-width: 610px; color: var(--muted); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 2rem; }
.qr-card {
  position: relative;
  z-index: 2;
  width: min(300px, 100%);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  color: #111512;
  background: var(--paper);
}
.qr-card img { width: 96px; height: 96px; }
.qr-card strong, .qr-card span { display: block; }
.qr-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
}
.qr-card span { margin-top: .25rem; font-size: .63rem; word-break: break-word; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px clamp(22px, 6vw, 92px) 95px;
  border-top: 1px solid var(--line);
  background: #060706;
}
.site-footer img { width: 155px; }
.site-footer p { color: rgba(255,255,255,.48); font-size: .72rem; }
.footer-meta { justify-self: end; text-align: right; }
.fine-print { max-width: 620px; }
.mobile-contact { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero { padding-bottom: 180px; }
  .hero-content { padding-bottom: 80px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .hero-stats div:nth-child(n+3) { padding-top: 15px; }
  .scroll-cue { display: none; }

  .section-heading {
    grid-template-columns: 1fr;
  }
  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading > p:last-child { grid-column: 1; }

  .statement-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .statement-number { margin-bottom: 20px; }

  .feature-section { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .feature-card-primary { min-height: 680px; }
  .cta-section { grid-template-columns: 1fr; align-items: start; }
  .qr-card { margin-top: 30px; }
}

@media (max-width: 620px) {
  :root { --header-height: 70px; }
  body { padding-bottom: 58px; }
  .site-header { height: 70px; padding-inline: 17px; }
  .brand img { width: 145px; }
  .hero {
    min-height: 100svh;
    padding: 122px 20px 195px;
    align-items: center;
  }
  h1 { font-size: clamp(3.45rem, 18vw, 5.6rem); }
  .hero-copy { font-size: .94rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .button { width: 100%; }
  .hero-stats { left: 20px; right: 20px; bottom: 34px; }
  .hero-stats div { padding-right: 10px; }
  .hero-stats strong { font-size: 1.55rem; }
  .hero-stats span { font-size: .56rem; }
  .section-shell { width: min(var(--max), calc(100% - 34px)); }
  .film-section { padding-top: 92px; padding-bottom: 100px; }
  .section-heading { margin-bottom: 30px; }
  .video-frame { aspect-ratio: 9 / 12; }
  .video-placeholder::after { display: none; }
  .statement-section { padding-inline: 20px; }
  .feature-card { padding: 28px 22px; }
  .feature-card-primary { min-height: 650px; }
  .feature-list { display: grid; grid-template-columns: 1fr; width: 100%; }
  .feature-list li { text-align: center; }
  .gallery-item, .gallery-item:nth-child(3n) { grid-column: span 12; }
  .gallery-item img, .gallery-item:nth-child(3n) img { aspect-ratio: 4 / 3; }
  .cta-section { padding-inline: 20px; }
  .cta-logo { width: 175px; margin-bottom: 58px; }
  .qr-card { width: 100%; }
  .site-footer { grid-template-columns: 1fr; gap: 25px; padding-inline: 20px; }
  .footer-meta { justify-self: start; text-align: left; }
  .mobile-contact {
    position: fixed;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    inset: auto 0 0;
    height: 58px;
    color: #080a09;
    background: var(--accent);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
}

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