@font-face {
  font-family: "Cormorant";
  src: url("/fonts/cormorant-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant";
  src: url("/fonts/cormorant-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dm-sans-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dm-sans-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #0b0b0c;
  --ink-soft: #111112;
  --cream: #eee8df;
  --cream-soft: #d7cfc4;
  --muted: #938b81;
  --copper: #c96b2d;
  --copper-bright: #e18743;
  --line: rgba(238, 232, 223, 0.16);
  --line-dark: rgba(11, 11, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.025;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

::selection {
  background: var(--copper);
  color: var(--ink);
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.section-pad {
  padding: 140px clamp(24px, 5.2vw, 80px);
}

.eyebrow {
  margin: 0;
  color: var(--copper-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.body-large {
  font-family: "Cormorant", Georgia, serif;
  font-size: clamp(24px, 2.35vw, 38px);
  line-height: 1.25;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border: 1px solid var(--copper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 300ms ease, background-color 300ms ease, transform 300ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--solid {
  background: var(--copper);
  color: var(--ink);
}

.button--solid:hover {
  background: var(--copper-bright);
}

.button--line {
  color: var(--cream);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 800ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 80;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 86px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 3.5vw, 56px);
  border-bottom: 1px solid var(--line);
}

.brand {
  position: relative;
  z-index: 90;
  font-family: "Cormorant", Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand span {
  color: var(--copper-bright);
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header-location {
  color: var(--cream-soft);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.launch-pill {
  padding: 10px 15px;
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 250ms ease, color 250ms ease;
}

.launch-pill:hover {
  border-color: var(--copper);
  color: var(--copper-bright);
}

.menu-button {
  position: relative;
  z-index: 90;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1px;
  background: var(--copper-bright);
  transition: transform 300ms ease, top 300ms ease;
}

.menu-button span:first-child {
  top: 17px;
}

.menu-button span:last-child {
  top: 26px;
}

.menu-button.is-active span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-button.is-active span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.site-menu {
  position: fixed;
  z-index: 70;
  inset: 0 0 0 auto;
  width: min(590px, 100%);
  background: var(--ink);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1), visibility 650ms;
}

.site-menu::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70px;
  width: 140px;
  border-radius: 50%;
  background: var(--ink);
}

.site-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.site-menu__inner {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 110px clamp(30px, 7vw, 80px) 50px;
}

.site-menu nav {
  margin-top: 50px;
  border-top: 1px solid var(--line);
}

.site-menu nav a {
  position: relative;
  display: grid;
  grid-template-columns: 0 1fr auto;
  align-items: center;
  gap: 0;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Cormorant", Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  transition: color 300ms ease, grid-template-columns 350ms ease, gap 350ms ease;
}

.site-menu nav a:hover {
  grid-template-columns: 32px 1fr auto;
  gap: 16px;
  color: var(--copper-bright);
}

.site-menu nav small {
  color: var(--muted);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 10px;
}

.menu-arrow {
  overflow: hidden;
  color: var(--copper-bright);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
}

.site-menu__footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-menu__footer p {
  margin: 0;
}

.age-gate {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity 450ms ease, visibility 450ms;
}

.age-gate.is-open {
  opacity: 1;
  visibility: visible;
}

.age-gate__grain {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background: radial-gradient(circle at 50% 45%, rgba(201, 107, 45, 0.21), transparent 45%),
    linear-gradient(135deg, transparent 49.9%, rgba(201, 107, 45, 0.18) 50%, transparent 50.1%);
  background-size: auto, 42px 42px;
}

.age-gate__panel {
  position: relative;
  width: min(600px, 100%);
  padding: 52px clamp(26px, 6vw, 66px);
  border: 1px solid var(--line);
  text-align: center;
}

.age-mark {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin: 28px auto 22px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  color: var(--copper-bright);
  font-family: "Cormorant", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
}

.age-gate h2 {
  margin: 0;
  font-family: "Cormorant", Georgia, serif;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1;
}

.age-gate__panel > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.age-gate__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 26px;
}

.age-gate small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 12, 1) 0%, rgba(11, 11, 12, 0.94) 34%, rgba(11, 11, 12, 0.15) 100%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 54%;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  filter: saturate(0.62) contrast(1.05) brightness(0.78);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-media__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(11, 11, 12, 0.3));
}

.hero-copy {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 100svh;
  width: 78%;
  flex-direction: column;
  justify-content: center;
  padding: 130px clamp(24px, 5.2vw, 80px) 100px;
}

.hero-copy__top {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: clamp(28px, 4vw, 60px);
  opacity: 0;
  animation: heroRise 900ms 200ms forwards;
}

.hero-intro {
  margin: 0;
  color: var(--cream-soft);
  font-family: "Cormorant", Georgia, serif;
  font-size: 20px;
}

.hero-title {
  position: relative;
  width: fit-content;
}

.hero-title__number {
  position: absolute;
  top: -8px;
  right: -48px;
  color: var(--copper-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: heroRise 850ms 850ms forwards;
}

.hero-title h1 {
  margin: 0 0 -0.12em;
  font-family: "Cormorant", Georgia, serif;
  font-size: clamp(104px, 17vw, 280px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.72;
  opacity: 0;
  transform: translateY(48px);
  animation: heroRise 1200ms 400ms cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.hero-copy__bottom {
  display: flex;
  align-items: flex-end;
  gap: 52px;
  margin-top: clamp(38px, 6vw, 90px);
  opacity: 0;
  animation: heroRise 900ms 900ms forwards;
}

.hero-copy__bottom > p {
  margin: 0;
  font-family: "Cormorant", Georgia, serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.95;
}

.hero-foot {
  position: absolute;
  z-index: 6;
  right: clamp(24px, 3.5vw, 56px);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream-soft);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-foot__star {
  color: var(--copper-bright);
}

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--copper-bright);
  letter-spacing: 0;
}

.section-label p {
  margin: 0;
}

.section-label--light {
  color: rgba(11, 11, 12, 0.55);
}

.section-label--inline {
  margin-bottom: 36px;
}

.intro {
  background: var(--ink);
}

.intro-copy {
  max-width: 1040px;
  margin: 96px 0 110px auto;
}

.intro-copy h2,
.legacy h2,
.moments h2,
.manifesto h2,
.launch h2 {
  margin: 18px 0 28px;
  font-family: "Cormorant", Georgia, serif;
  font-size: clamp(58px, 8vw, 126px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.84;
}

.intro-copy .body-large {
  max-width: 800px;
  margin: 0;
  color: var(--cream-soft);
}

.spirit-grid {
  display: grid;
  min-height: 760px;
  grid-template-columns: 1fr 0.82fr 1fr;
  align-items: center;
  gap: clamp(22px, 3.4vw, 58px);
}

.spirit-image {
  position: relative;
  height: 580px;
  margin: 0;
  overflow: hidden;
}

.spirit-image--glass {
  margin-top: 140px;
}

.spirit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 600ms ease;
}

.spirit-image:hover img {
  transform: scale(1.035);
  filter: saturate(0.9) contrast(1.05);
}

.spirit-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px 20px;
  background: rgba(11, 11, 12, 0.82);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.spirit-center {
  text-align: center;
}

.orbit-mark {
  position: relative;
  display: flex;
  width: 220px;
  height: 220px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 38px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  color: var(--copper-bright);
  font-family: "Cormorant", Georgia, serif;
  font-size: 48px;
}

.orbit-mark::after {
  content: "Premium · American · Cane · Maryland ·";
  position: absolute;
  inset: 13px;
  display: grid;
  place-items: start center;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding-top: 10px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 7px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.orbit-mark i {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 11px;
  font-style: normal;
}

.spirit-center > p {
  margin: 0 auto;
  color: var(--muted);
  font-family: "Cormorant", Georgia, serif;
  font-size: 24px;
  line-height: 1.25;
}

.spirit-facts {
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.spirit-facts div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.spirit-facts strong,
.spirit-facts span {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spirit-facts span {
  color: var(--muted);
}

.legacy {
  background: var(--cream);
  color: var(--ink);
}

.legacy-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) 1.22fr;
  gap: clamp(56px, 9vw, 150px);
  align-items: center;
  max-width: 1260px;
  margin: 90px auto 0;
}

.legacy-image {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line-dark);
}

.legacy-image img {
  width: 100%;
}

.image-corner {
  position: absolute;
  width: 60px;
  height: 60px;
}

.image-corner--tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--copper);
  border-left: 2px solid var(--copper);
}

.image-corner--br {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
}

.legacy-copy .body-large {
  max-width: 720px;
  margin: 0 0 32px;
}

.legacy-copy > p:not(.eyebrow):not(.body-large) {
  max-width: 600px;
  margin: 0;
  color: rgba(11, 11, 12, 0.66);
  line-height: 1.8;
}

.legacy-signature {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 62px;
  color: var(--copper);
  font-family: "Cormorant", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
}

.legacy-signature i {
  color: rgba(11, 11, 12, 0.35);
  font-size: 22px;
  font-style: normal;
}

.moments {
  overflow: hidden;
}

.moments-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.moments-head h2 {
  margin-bottom: 0;
}

.moments-controls {
  display: flex;
  margin-bottom: 8px;
}

.moments-controls button {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  transition: background 250ms ease, color 250ms ease;
}

.moments-controls button + button {
  border-left: 0;
}

.moments-controls button:hover {
  background: var(--copper);
  color: var(--ink);
}

.moment-track {
  display: flex;
  gap: 18px;
  margin-top: 72px;
  padding-bottom: 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--copper) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.moment-card {
  position: relative;
  min-width: min(390px, 78vw);
  scroll-snap-align: start;
}

.moment-card > a {
  display: block;
  height: 520px;
  overflow: hidden;
}

.moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
  transition: transform 850ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 500ms ease;
}

.moment-card:hover img {
  transform: scale(1.045);
  filter: saturate(0.94) contrast(1.02);
}

.moment-card__number {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(11, 11, 12, 0.38);
  font-size: 9px;
  backdrop-filter: blur(10px);
}

.moment-card .eyebrow {
  margin-top: 24px;
}

.moment-card h3 {
  margin: 10px 0 8px;
  font-family: "Cormorant", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
}

.moment-card > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.manifesto {
  position: relative;
  min-height: 90svh;
  overflow: hidden;
}

.manifesto > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.72) contrast(1.1);
}

.manifesto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 12, 0.92), rgba(11, 11, 12, 0.2) 72%),
    linear-gradient(0deg, rgba(11, 11, 12, 0.4), transparent 60%);
}

.manifesto-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 90svh;
  max-width: 900px;
  flex-direction: column;
  justify-content: center;
  padding: 100px clamp(24px, 6vw, 90px);
}

.manifesto h2 {
  font-size: clamp(70px, 10vw, 156px);
}

.manifesto-copy > p:last-child {
  max-width: 560px;
  margin: 8px 0 0;
  color: var(--cream-soft);
  font-family: "Cormorant", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.25;
}

.launch {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(60px, 10vw, 150px);
  background: var(--cream);
  color: var(--ink);
}

.launch-left h2 {
  margin-bottom: 0;
}

.launch-right {
  align-self: end;
  padding-bottom: 14px;
}

.launch-right .body-large {
  margin: 0;
}

.launch-form {
  margin-top: 58px;
}

.launch-form label {
  display: block;
  margin-bottom: 12px;
  color: rgba(11, 11, 12, 0.56);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.launch-form__row {
  display: flex;
  border-bottom: 1px solid var(--ink);
}

.launch-form input {
  min-width: 0;
  flex: 1;
  padding: 16px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Cormorant", Georgia, serif;
  font-size: 24px;
}

.launch-form input::placeholder {
  color: rgba(11, 11, 12, 0.38);
}

.launch-form button {
  border: 0;
  background: transparent;
  color: var(--copper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-note {
  margin: 12px 0 0;
  color: rgba(11, 11, 12, 0.46);
  font-size: 9px;
}

.footer {
  padding: 48px clamp(24px, 5.2vw, 80px) 34px;
  overflow: hidden;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-top p {
  margin: 0;
}

.footer-top a {
  color: var(--copper-bright);
}

.footer-wordmark {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(20px, 4vw, 64px);
  padding: 34px 0 24px;
  white-space: nowrap;
  font-family: "Cormorant", Georgia, serif;
  line-height: 0.8;
}

.footer-wordmark span {
  color: var(--copper-bright);
  font-size: clamp(48px, 9vw, 150px);
}

.footer-wordmark strong {
  font-size: clamp(100px, 22vw, 340px);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0 0 5px;
}

.footer-legal {
  text-align: center;
}

.footer-credit {
  text-align: right;
}

.footer-credit a {
  display: inline-block;
  margin-bottom: 5px;
}

@media (max-width: 1050px) {
  .section-pad {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .hero-copy {
    width: 88%;
  }

  .spirit-grid {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .spirit-center {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 36px;
    align-items: center;
    padding-top: 30px;
    text-align: left;
  }

  .orbit-mark {
    grid-row: 1 / 3;
    margin: 0;
  }

  .spirit-facts {
    margin-top: 14px;
  }

  .spirit-image--glass {
    margin-top: 80px;
  }

  .legacy-grid {
    gap: 60px;
  }

  .launch {
    grid-template-columns: 1fr;
  }

  .launch-right {
    max-width: 720px;
  }
}

@media (max-width: 809px) {
  .section-pad {
    padding: 88px 20px;
  }

  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .brand {
    font-size: 19px;
  }

  .header-location,
  .launch-pill {
    display: none;
  }

  .site-menu::before {
    display: none;
  }

  .site-menu__footer {
    flex-direction: column;
  }

  .age-gate__panel {
    padding: 38px 22px;
  }

  .age-gate__actions {
    flex-direction: column;
  }

  .hero {
    min-height: 800px;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(11, 11, 12, 0.98) 0%, rgba(11, 11, 12, 0.82) 52%, rgba(11, 11, 12, 0.38) 100%);
  }

  .hero-media {
    width: 100%;
  }

  .hero-media video {
    object-position: 50% 38%;
  }

  .hero-copy {
    min-height: 800px;
    width: 100%;
    justify-content: flex-end;
    padding: 112px 20px 108px;
  }

  .hero-copy__top {
    display: block;
    margin-bottom: 30px;
  }

  .hero-intro {
    margin-top: 12px;
    font-size: 18px;
  }

  .hero-title h1 {
    font-size: clamp(82px, 27vw, 130px);
  }

  .hero-title__number {
    right: -12px;
  }

  .hero-copy__bottom {
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-top: 36px;
  }

  .hero-copy__bottom > p {
    font-size: 27px;
  }

  .hero-copy__bottom .button {
    min-height: 46px;
    padding: 0 16px;
    font-size: 9px;
  }

  .hero-foot {
    right: auto;
    bottom: 24px;
    left: 20px;
  }

  .intro-copy {
    margin: 70px 0 72px;
  }

  .intro-copy h2,
  .legacy h2,
  .moments h2,
  .manifesto h2,
  .launch h2 {
    font-size: clamp(52px, 17vw, 82px);
  }

  .body-large {
    font-size: 26px;
  }

  .spirit-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .spirit-image {
    width: 100%;
    height: 500px;
  }

  .spirit-image--glass {
    margin-top: 0;
  }

  .spirit-center {
    display: block;
    order: 3;
    padding: 36px 6px 0;
    text-align: center;
  }

  .orbit-mark {
    width: 190px;
    height: 190px;
    margin: 0 auto 32px;
  }

  .legacy-grid {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .legacy-image {
    width: min(470px, 100%);
    margin: 0 auto;
  }

  .legacy-copy h2 br {
    display: none;
  }

  .moments-head {
    display: block;
  }

  .moments-controls {
    margin-top: 38px;
  }

  .moment-track {
    width: calc(100% + 20px);
    margin-top: 44px;
  }

  .moment-card > a {
    height: 440px;
  }

  .manifesto,
  .manifesto-copy {
    min-height: 760px;
  }

  .manifesto > img {
    object-position: 56% center;
  }

  .manifesto-overlay {
    background: linear-gradient(0deg, rgba(11, 11, 12, 0.94), rgba(11, 11, 12, 0.18) 75%);
  }

  .manifesto-copy {
    justify-content: flex-end;
    padding: 80px 20px;
  }

  .launch {
    gap: 54px;
  }

  .launch-form__row {
    display: block;
  }

  .launch-form input {
    width: 100%;
  }

  .launch-form button {
    width: 100%;
    padding: 18px 0;
    border-top: 1px solid rgba(11, 11, 12, 0.2);
    text-align: left;
  }

  .footer {
    padding: 38px 20px 26px;
  }

  .footer-top,
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-wordmark {
    display: block;
    padding: 48px 0 36px;
  }

  .footer-wordmark span,
  .footer-wordmark strong {
    display: block;
  }

  .footer-wordmark span {
    font-size: 48px;
  }

  .footer-wordmark strong {
    font-size: 28vw;
  }

  .footer-legal,
  .footer-credit {
    text-align: left;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
