/* ============================================================
   WILDCAT — A new species of hospitality
   Design system: warm near-black + antique gold, art-deco luxury
   Display: Bodoni Moda · UI/body: Jost
   ============================================================ */

:root {
  /* Surfaces — warm, tinted darks (never pure black) */
  --ink:        #0c0a07;
  --ink-1:      #110e0a;
  --ink-2:      #16120c;
  --ink-3:      #1d1810;

  /* Type */
  --bone:       #ece3d2;
  --bone-dim:   #a99f8b;
  --bone-faint: #6f6857;

  /* Gold — antique, desaturated */
  --gold:       #c6a15b;
  --gold-bright:#e6c884;
  --gold-deep:  #8a6c30;

  --line:       rgba(198, 161, 91, 0.20);
  --line-soft:  rgba(236, 227, 210, 0.08);

  --maxw: 1280px;
  --gut: clamp(1.25rem, 4vw, 4.5rem);

  --serif: "Bodoni Moda", "Times New Roman", serif;
  --sans:  "Jost", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, 0.55vw + 0.9rem, 1.075rem);
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- Atmosphere: grain + vignette ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 8999;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(0,0,0,0.45) 100%);
}

/* ---------- Shared type ---------- */
.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.012em;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  color: var(--bone);
}
.eyebrow,
.section__index {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.section__index {
  display: inline-block;
  margin-bottom: 1.6rem;
  color: var(--gold);
}

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.05em 1.9em;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.btn--gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--ink);
}
.btn--gold:hover { transform: translateY(-2px); background: var(--gold-bright); }
.btn--ghost {
  border-color: var(--line);
  color: var(--bone);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: gap 0.4s var(--ease), border-color 0.4s var(--ease);
}
.link-arrow span { transition: transform 0.4s var(--ease); }
.link-arrow:hover { gap: 0.9em; border-color: var(--gold); }
.link-arrow:hover span { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(12, 10, 7, 0.78);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line-soft);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.15rem var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--bone);
}
.brandmark__glyph { width: 26px; height: 26px; color: var(--gold); }
.brandmark__word {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}
.brandmark--lg .brandmark__glyph { width: 40px; height: 40px; }
.brandmark--lg .brandmark__word { font-size: 2rem; }

.nav__links {
  display: flex;
  gap: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.nav__links a { position: relative; padding: 0.3em 0; transition: color 0.3s var(--ease); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 0.7em 1.3em;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  white-space: nowrap;
}
.nav__cta:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 34px;
  padding: 6px 4px;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--bone);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-0px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 8, 5, 0.97);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  font-family: var(--serif);
  font-size: 1.9rem;
}
.mobile-menu__links a { color: var(--bone); transition: color 0.3s var(--ease); }
.mobile-menu__links a:hover { color: var(--gold); }
.mobile-menu__cta {
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: 0.85rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink) !important;
  background: var(--gold);
  padding: 0.9em 1.8em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem var(--gut) 4rem;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__img {
  position: absolute;
  inset: 0;
  background-color: #1a140c;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroDrift 24s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.08) translate3d(0,0,0); }
  to   { transform: scale(1.16) translate3d(-1.5%, -2%, 0); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,10,7,0.55) 0%, rgba(12,10,7,0.35) 35%, rgba(12,10,7,0.85) 88%, var(--ink) 100%),
    radial-gradient(80% 60% at 20% 70%, rgba(138,108,48,0.22), transparent 70%);
}
.hero__content { max-width: 760px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(4.2rem, 18vw, 13rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  margin: 1.4rem 0 1.8rem;
}
.hero__title span { display: inline-block; }
.hero__title--gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.hero__tag {
  max-width: 44ch;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: var(--bone-dim);
  font-weight: 300;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.6rem; }

.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: var(--gut);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.hero__scroll-line {
  display: block;
  width: 64px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-bright);
  transform: translateX(-100%);
  animation: scrollPulse 2.6s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { transform: translateX(-100%); }
  60%,100% { transform: translateX(100%); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  background: var(--ink-1);
  padding: 1.4rem 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  width: max-content;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  color: var(--bone-dim);
  animation: marquee 38s linear infinite;
}
.marquee__track .dot { color: var(--gold); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 11vw, 9.5rem) var(--gut);
}

/* ---------- Vision ---------- */
.vision__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}
@media (min-width: 900px) {
  .vision__grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
}
.vision__lead .display { font-size: clamp(2.6rem, 6.5vw, 5rem); }
.vision__body p { color: var(--bone-dim); margin-bottom: 1.4rem; max-width: 60ch; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.8rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 0.4rem; }
.stat__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--gold);
  line-height: 1;
}
.stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-faint);
  line-height: 1.4;
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; gap: 1.3rem; }
}

/* ---------- Feature (Dining / Cocktails / Events) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .feature { grid-template-columns: 1.05fr 1fr; }
  .feature--reverse .feature__media { order: 2; }
}
.feature__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
}
.feature__img {
  position: absolute;
  inset: 0;
  background-color: #1a140c;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s var(--ease);
  transform: scale(1.04);
}
.feature__media:hover .feature__img { transform: scale(1.1); }
.feature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,10,7,0.6) 100%);
  pointer-events: none;
}
.feature__tag {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(12,10,7,0.55);
  border: 1px solid var(--line);
  padding: 0.5em 0.9em;
  backdrop-filter: blur(6px);
}
.feature__text .display { margin: 0.4rem 0 1.6rem; }
.feature__text p { color: var(--bone-dim); max-width: 52ch; }

.spec {
  list-style: none;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}
.spec li {
  display: flex;
  gap: 1.5rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
  color: var(--bone);
}
.spec li span {
  flex: 0 0 38%;
  max-width: 38%;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.25em;
}

/* ============================================================
   ENTERTAINMENT — full-bleed stage
   ============================================================ */
.stage {
  position: relative;
  padding: clamp(6rem, 14vw, 11rem) var(--gut);
  overflow: hidden;
  isolation: isolate;
}
.stage__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: #120d07;
  background-size: cover;
  background-position: center;
}
.stage__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, var(--ink) 0%, rgba(12,10,7,0.7) 30%, rgba(12,10,7,0.78) 70%, var(--ink) 100%),
    radial-gradient(70% 80% at 80% 30%, rgba(138,108,48,0.28), transparent 65%);
}
.stage__content { max-width: var(--maxw); margin: 0 auto; }
.stage__content .display { margin: 0.3rem 0 1.6rem; }
.stage__content > p { max-width: 56ch; color: var(--bone-dim); }

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 3rem;
}
@media (min-width: 760px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(29,24,16,0.5), rgba(22,18,12,0.3));
  backdrop-filter: blur(4px);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.card__kicker {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.card__copy { font-size: 0.92rem; color: var(--bone-dim); }

/* ============================================================
   MEMBERSHIP
   ============================================================ */
.membership__head { max-width: 720px; margin-bottom: 3.5rem; }
.membership__head .display { margin-bottom: 1.2rem; }
.membership__head p { color: var(--bone-dim); }

.tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 880px) { .tiers { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.2rem 1.9rem;
  border: 1px solid var(--line);
  background: var(--ink-1);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.tier:hover { transform: translateY(-5px); border-color: var(--gold); }
.tier--featured {
  background: linear-gradient(180deg, var(--ink-3), var(--ink-1));
  border-color: var(--gold-deep);
}
.tier__flag {
  position: absolute;
  top: -1px; right: 1.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 0.4em 0.8em;
}
.tier__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.tier__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2rem;
}
.tier__price {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--gold);
  white-space: nowrap;
}
.tier__price span { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--bone-faint); text-transform: uppercase; }
.tier__note { margin: 0.6rem 0 1.6rem; font-size: 0.9rem; color: var(--bone-dim); min-height: 2.6em; }
.tier__list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-top: auto; }
.tier__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  color: var(--bone);
  line-height: 1.45;
}
.tier__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 6px; height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* ---------- Invitation form ---------- */
.invite {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(138,108,48,0.14), transparent 60%),
    var(--ink-1);
}
@media (min-width: 900px) { .invite { grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: start; } }
.invite__intro .display { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.invite__intro p { color: var(--bone-dim); font-size: 0.95rem; max-width: 34ch; }

.invite__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.invite__hp { position: absolute; left: -9999px; opacity: 0; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--bone);
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 0.85em 1em;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field textarea { resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: var(--bone-faint); }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--gold); background: var(--ink-2); }
.field select { appearance: none; cursor: pointer; }

.invite__submit { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.invite__status { font-size: 0.85rem; color: var(--bone-dim); }
.invite__status.is-ok { color: var(--gold-bright); }
.invite__status.is-err { color: #d98a6a; }

@media (max-width: 540px) { .invite__form { grid-template-columns: 1fr; } }

/* ============================================================
   FUTURE EXPANSION — timeline
   ============================================================ */
.future { background: linear-gradient(180deg, var(--ink), var(--ink-1) 60%, var(--ink)); max-width: none; }
.future > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.future__head { max-width: 760px; margin-bottom: 3.5rem; }
.future__head .display { margin-bottom: 1.2rem; }
.future__head p { color: var(--bone-dim); }

.timeline { list-style: none; counter-reset: tl; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6rem; bottom: 0.6rem;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep), transparent);
}
@media (min-width: 760px) { .timeline::before { left: 7.5rem; } }
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem 0;
  padding: 0 0 2.6rem 2rem;
}
@media (min-width: 760px) {
  .timeline__item { grid-template-columns: 7.5rem 1fr; gap: 0 3rem; padding-left: 0; }
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -4px; top: 0.55rem;
  width: 9px; height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}
@media (min-width: 760px) { .timeline__item::before { left: calc(7.5rem - 4px); } }
.timeline__year {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-style: italic;
}
.timeline__body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.timeline__body p { color: var(--bone-dim); max-width: 52ch; font-size: 0.95rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--ink-1);
  padding: clamp(3.5rem, 7vw, 6rem) var(--gut) 2.5rem;
}
.footer > * { max-width: var(--maxw); margin: 0 auto; }
.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-soft);
}
.footer__line { color: var(--bone-dim); font-size: 0.92rem; max-width: 40ch; }
.footer__cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 0;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.footer__nav a:hover { color: var(--gold); }
.footer__meta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.9rem; }
.footer__cta {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 0.7em 1.3em;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.footer__cta:hover { background: var(--gold); color: var(--ink); }
.footer__meta p { font-size: 0.85rem; color: var(--bone-faint); }
.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--bone-faint);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__img, .marquee__track, .hero__scroll-line::after { animation: none; }
}

/* ============================================================
   RESPONSIVE NAV BREAKPOINT
   ============================================================ */
@media (max-width: 940px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}
