/* ================================
   AH TV — Global Design System
   ================================ */

:root {
  --bg: #050505;
  --bg-soft: #0b0a08;
  --panel: rgba(17, 16, 13, 0.78);
  --panel-solid: #11100d;

  --gold: #c9a45c;
  --gold-soft: #e6cf91;
  --gold-muted: #8f7440;

  --ivory: #f4ecdf;
  --muted: #aaa198;
  --muted-soft: #756d65;

  --line: rgba(201, 164, 92, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);

  --shadow-gold: 0 0 70px rgba(201, 164, 92, 0.12);
  --shadow-panel: 0 24px 80px rgba(0, 0, 0, 0.55);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-page: 1120px;
  --max-copy: 680px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;

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

/* ================================
   Reset / Base
   ================================ */

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 164, 92, 0.12), transparent 34rem),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.04), transparent 24rem),
    linear-gradient(180deg, #070604 0%, #050505 45%, #030303 100%);
  color: var(--ivory);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  opacity: 0.32;
}

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(201, 164, 92, 0.35);
  color: var(--ivory);
}

/* ================================
   Layout
   ================================ */

.page {
  position: relative;
  min-height: 100vh;
  padding: 28px 22px;
  overflow: hidden;
}

.shell {
  width: min(100%, var(--max-page));
  margin: 0 auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.12em;
  box-shadow: var(--shadow-gold);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
}

.brand-sub {
  margin-top: 6px;
  color: var(--gold-muted);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.nav a {
  transition: color 220ms var(--ease);
}

.nav a:hover {
  color: var(--gold-soft);
}

.main {
  min-height: calc(100vh - 170px);
  display: grid;
  place-items: center;
  padding: 80px 0 56px;
}

.main.top {
  place-items: start center;
  padding-top: 72px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0 6px;
  color: var(--muted-soft);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--muted);
  transition: color 220ms var(--ease);
}

.footer a:hover {
  color: var(--gold-soft);
}

/* ================================
   Typography
   ================================ */

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.title {
  margin: 0;
  max-width: 760px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(58px, 12vw, 126px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.title.small {
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.96;
}

.lede {
  max-width: var(--max-copy);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.75;
}

.copy {
  max-width: var(--max-copy);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.copy p {
  margin: 0 0 22px;
}

.copy strong {
  color: var(--ivory);
  font-weight: 500;
}

.center {
  text-align: center;
}

/* ================================
   Cards / Panels
   ================================ */

.hero-card,
.content-card,
.choice-card {
  position: relative;
  width: min(100%, 850px);
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: var(--shadow-panel), var(--shadow-gold);
  backdrop-filter: blur(22px);
}

.hero-card::before,
.content-card::before,
.choice-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 164, 92, 0.18), transparent 32rem);
  opacity: 0.8;
}

.hero-card > *,
.content-card > *,
.choice-card > * {
  position: relative;
}

.content-card {
  width: min(100%, 820px);
}

/* ================================
   Buttons
   ================================ */

.actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #151009;
  box-shadow: 0 12px 34px rgba(201, 164, 92, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 18px 46px rgba(201, 164, 92, 0.26);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.025);
}

.btn-secondary:hover {
  border-color: rgba(230, 207, 145, 0.5);
  background: rgba(201, 164, 92, 0.06);
}

.btn-muted {
  border-color: var(--line-soft);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.018);
}

/* ================================
   Utility
   ================================ */

.divider {
  width: 100%;
  height: 1px;
  margin: 34px 0;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.note {
  margin-top: 22px;
  color: var(--muted-soft);
  font-size: 13px;
  line-height: 1.7;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--gold-muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fade-in {
  animation: fadeIn 900ms var(--ease) both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

/* ================================
   Guest Pass
   ================================ */

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
}

.choice-option {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.026);
  text-align: left;
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    background 220ms var(--ease);
}

.choice-option:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 207, 145, 0.48);
  background: rgba(201, 164, 92, 0.06);
}

.choice-option.primary {
  background:
    linear-gradient(135deg, rgba(201, 164, 92, 0.18), rgba(201, 164, 92, 0.035));
}

.choice-label {
  display: block;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.1;
}

.choice-desc {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ================================
   Legal Page
   ================================ */

.legal {
  width: min(100%, 780px);
}

.legal h2 {
  margin: 36px 0 12px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.legal ul {
  padding-left: 22px;
}

/* ================================
   Responsive
   ================================ */

@media (max-width: 720px) {
  .page {
    padding: 20px 16px;
  }

  .header {
    align-items: flex-start;
  }

  .nav {
    gap: 0;
    font-size: 12px;
    justify-content: flex-end;
  }

  .nav a {
    display: none;
  }

  .nav a:last-child {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    color: var(--gold-soft);
    background: rgba(255, 255, 255, 0.025);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-sub {
    display: none;
  }

  .main {
    padding: 58px 0 42px;
  }

  .hero-card,
  .content-card,
  .choice-card {
    padding: 32px 22px;
    border-radius: 24px;
  }

  .title {
    font-size: clamp(52px, 17vw, 74px);
  }

  .title.small {
    font-size: clamp(42px, 13vw, 60px);
  }

  .lede {
    font-size: 16px;
    line-height: 1.75;
  }

  .actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

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

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .header {
    gap: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo-img {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 19px;
  }

  .nav a:last-child {
    min-height: 36px;
    padding: 0 12px;
    font-size: 10px;
  }

  .choice-label {
    font-size: 27px;
  }
}

/* ================================
   Logo Image
   ================================ */

.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 18px rgba(201, 164, 92, 0.22));
}

@media (max-width: 720px) {
  .brand-logo-img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 720px) {
  .page {
    min-height: 100svh;
  }

  .main {
    min-height: auto;
  }

  .hero-card {
    margin-top: 8px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .title {
    letter-spacing: -0.045em;
  }
}