:root {
  --black: #050505;
  --ink: #0b0b0b;
  --coal: #121212;
  --graphite: #1c1c1a;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f2eee7;
  --muted: #b3ada3;
  --soft: #d8d0c2;
  --gold: #b59b63;
  --olive: #4d5645;
  --danger-space: clamp(20px, 5vw, 72px);
  --radius: 8px;
  --header-height: 76px;
  --font-display: "Archivo", "Arial Narrow", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 64px 64px,
    radial-gradient(circle at 65% 8%, rgba(181, 155, 99, 0.12), transparent 34rem),
    linear-gradient(180deg, #050505 0%, #0b0b0b 48%, #050505 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open main,
body.nav-open .site-footer {
  visibility: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 14px var(--danger-space);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 34px;
  height: 48px;
  object-fit: contain;
}

.menu-toggle {
  position: relative;
  z-index: 1002;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px 0;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  width: 100vw;
  height: 100dvh;
  padding: calc(var(--header-height) + 22px) 24px 32px;
  overflow-y: auto;
  background: #050505;
  box-shadow: inset 0 0 90px rgba(255, 255, 255, 0.035);
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, visibility 220ms ease;
}

.main-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.main-nav a {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 5.8vw, 1.85rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

body.nav-open .main-nav {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1001 !important;
  display: flex !important;
  width: 100vw !important;
  height: 100dvh !important;
  padding: calc(var(--header-height) + 22px) 24px 32px !important;
  background: #050505 !important;
}

body.nav-open .main-nav a {
  display: flex !important;
  width: 100% !important;
  min-height: 58px !important;
  align-items: center !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid var(--line) !important;
  color: var(--text) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.15rem, 5.8vw, 1.85rem) !important;
  line-height: 1 !important;
}

.section {
  position: relative;
  padding: clamp(76px, 11vw, 144px) var(--danger-space);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-stretch: 105%;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.45rem, 9.5vw, 5.7rem);
  line-height: 0.92;
}

h1 span {
  display: block;
}

h2 {
  max-width: 14ch;
  font-size: clamp(1.8rem, 7vw, 4.6rem);
  line-height: 0.94;
}

h3 {
  font-size: clamp(1.15rem, 3.6vw, 1.65rem);
  line-height: 1;
}

p {
  hyphens: auto;
  overflow-wrap: break-word;
  color: var(--muted);
  font-size: clamp(1rem, 2.8vw, 1.12rem);
}

.hero {
  display: grid;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 38px);
  align-items: end;
  overflow: hidden;
}

.hero::after,
.drop::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.7) 48%, rgba(5, 5, 5, 0.3) 100%),
    linear-gradient(0deg, #050505 0%, transparent 48%);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(0.75) contrast(1.08);
}

.hero-content,
.hero-statement {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: clamp(1.08rem, 3.6vw, 1.38rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-2px);
}

.button-primary {
  background: var(--text);
  color: var(--black);
}

.button-secondary {
  background: rgba(181, 155, 99, 0.16);
  color: var(--text);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-statement {
  display: grid;
  gap: 8px;
  max-width: 340px;
  margin-top: 60px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.hero-statement span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-statement strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-heading {
  max-width: 980px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 24px;
}

.pillar-grid {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.pillar {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02));
}

.pillar span,
.timeline span,
.impact-pillars span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 900;
}

.pillar h3 {
  margin-top: 50px;
}

.pillar p {
  margin-bottom: 0;
}

.origin,
.gabriel,
.drop,
.impact-layout,
.final-call {
  display: grid;
  gap: clamp(32px, 7vw, 84px);
}

.origin-copy p {
  max-width: 720px;
}

.timeline {
  display: grid;
  border-top: 1px solid var(--line);
}

.timeline div {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.timeline strong,
.impact-pillars strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline p {
  margin: 0;
}

.portrait-stack {
  position: relative;
  min-height: 480px;
}

.portrait-main,
.portrait-side,
.impact-image img,
.final-media img,
.product-frame img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.portrait-main {
  height: min(72svh, 680px);
  object-position: center;
}

.portrait-side {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(44vw, 210px);
  height: 260px;
  object-position: center 18%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.gabriel-copy p {
  max-width: 720px;
}

.role-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.role-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-weight: 700;
}

.drop {
  background:
    linear-gradient(135deg, rgba(77, 86, 69, 0.28), transparent 40%),
    #080808;
}

.drop-copy p {
  max-width: 640px;
}

.drop-alert {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin: 22px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(181, 155, 99, 0.55);
  border-radius: 999px;
  background: rgba(181, 155, 99, 0.12);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.drop-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.drop-features span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-frame {
  align-self: center;
}

.product-frame img {
  aspect-ratio: 1 / 0.82;
}

.impact-image img {
  aspect-ratio: 1.2 / 1;
  object-position: center;
}

.impact-content {
  display: grid;
  gap: 22px;
  align-self: start;
}

.impact-pillars {
  display: grid;
  gap: 12px;
}

.impact-pillars div {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.impact-video {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #050505;
  box-shadow:
    inset 0 0 42px rgba(0, 0, 0, 0.9),
    0 0 42px rgba(0, 0, 0, 0.65);
}

.impact-video::before,
.impact-video::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.impact-video::before {
  box-shadow: inset 0 0 54px 24px #050505;
}

.impact-video::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.8), transparent 16%, transparent 84%, rgba(5, 5, 5, 0.8)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.72), transparent 18%, transparent 82%, rgba(5, 5, 5, 0.72));
  mix-blend-mode: multiply;
}

.impact-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  width: clamp(76px, 18vw, 124px);
  height: clamp(76px, 18vw, 124px);
  place-items: center;
  padding: 0;
  border: clamp(5px, 1.1vw, 8px) solid #fff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 0.96;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.video-play:hover,
.video-play:focus-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.video-play span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 8%;
  border-top: clamp(17px, 4vw, 28px) solid transparent;
  border-bottom: clamp(17px, 4vw, 28px) solid transparent;
  border-left: clamp(26px, 6vw, 42px) solid #fff;
}

.impact-video.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.business {
  padding-top: 0;
}

.business-panel {
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid rgba(181, 155, 99, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(181, 155, 99, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.035);
}

.business-panel h2 {
  max-width: 14ch;
}

.business-panel p {
  max-width: 760px;
}

.final-call {
  align-items: center;
  background: #080808;
}

.final-media img {
  aspect-ratio: 1 / 1;
  object-position: center;
}

.final-copy p {
  max-width: 560px;
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 34px var(--danger-space);
  border-top: 1px solid var(--line);
  background: #050505;
}

.site-footer strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
}

.site-footer p {
  margin: 4px 0 0;
  font-size: 0.92rem;
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer a,
.site-footer span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    width: auto;
    height: auto;
    overflow: visible;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    transform: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    transition: none;
  }

  .main-nav a {
    display: inline-flex;
    width: auto;
    min-height: auto;
    border-bottom: 0;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    transition: color 180ms ease;
  }

  .main-nav a:hover {
    color: var(--text);
  }

  .button {
    padding-inline: 22px;
  }

  .pillar-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .origin,
  .gabriel,
  .drop,
  .impact-layout,
  .final-call {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .drop-copy {
    order: 2;
  }

  .site-footer {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 1100px) {
  .section {
    padding-inline: clamp(72px, 8vw, 128px);
  }

  .site-header,
  .site-footer {
    padding-inline: clamp(72px, 8vw, 128px);
  }

  .hero {
    grid-template-columns: 1fr auto;
  }

  .hero-statement {
    justify-self: end;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .main-nav {
    gap: 26px;
  }
}

@media (max-width: 520px) {
  h1,
  h2,
  h3,
  .timeline strong,
  .impact-pillars strong,
  .hero-statement strong {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 2.9rem);
    line-height: 0.94;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.38rem, 6.2vw, 1.68rem);
    line-height: 1.04;
  }

  h3 {
    font-size: clamp(1.02rem, 4.7vw, 1.22rem);
  }

  .timeline strong,
  .impact-pillars strong,
  .hero-statement strong {
    font-size: clamp(1.05rem, 5vw, 1.28rem);
    line-height: 1.05;
  }

  .hero-copy {
    max-width: min(30ch, calc(100vw - 48px));
    font-size: 1rem;
  }

  .hero-content,
  .hero-statement {
    width: calc(100vw - 48px);
  }

  .button-row,
  .button {
    width: 100%;
    max-width: 100%;
  }

  .hero {
    min-height: 860px;
  }

  .hero-media {
    opacity: 0.34;
  }

  .hero-media img {
    object-position: 70% center;
  }

  .portrait-side {
    width: 42vw;
    height: 210px;
  }
}
