/* Situation landers — same tokens as the homepage, more air. */

:root {
  --gold: #C9A962;
  --gold-light: #E5D4A1;
  --gold-muted: #A69060;
  --gold-glow: rgba(201, 169, 98, 0.14);
  --bg-void: #050608;
  --bg: #08090C;
  --surface: #0D0F14;
  --card: #111419;
  --cream: #FAF7F0;
  --muted: #A8A5A0;
  --dim: #6B6862;
  --teal: #5EEAD4;
  --border: rgba(201, 169, 98, 0.12);
  --border-gold: rgba(201, 169, 98, 0.4);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { -webkit-font-smoothing: antialiased; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--cream);
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% -10%, var(--gold-glow), transparent 55%),
    radial-gradient(ellipse 40% 30% at 0% 100%, rgba(94, 234, 212, 0.04), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; }
img { display: block; }

h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.nav {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 6vw;
}

.logo {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  text-decoration: none;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
}
.logo b {
  color: var(--gold);
  font-size: 1.65rem;
  font-weight: 600;
}

.nav-cta {
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 0.55rem 1rem;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 2px;
}
.nav-cta:hover { background: rgba(201, 169, 98, 0.08); }
.nav-cta:focus-visible,
.btn:focus-visible,
.ghost:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.desk {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 4.5rem;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
  padding: 3.5rem 6vw 5rem;
}

.kicker {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.4rem;
}

h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.15rem);
  margin-bottom: 1.4rem;
  max-width: 16ch;
}
h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.sub {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 42ch;
  margin-bottom: 2.1rem;
}

.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.1rem 1.7rem;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(201, 169, 98, 0.22);
}

.ghost {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(168, 165, 160, 0.35);
  padding-bottom: 0.1rem;
}
.ghost:hover { color: var(--cream); }

.teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  margin-top: 1.15rem;
  color: var(--dim);
  font-size: 0.88rem;
}
.afterpay-mark {
  display: inline-block;
  height: 14px;
  width: auto;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}
.trust span { display: block; }
.trust b {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.trust small {
  color: var(--dim);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Site-ready ticket — the buy panel */
.ticket {
  background: linear-gradient(180deg, #14110c 0%, var(--card) 28%);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  padding: 1.85rem 1.7rem 1.7rem;
  position: relative;
}
.ticket::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.4rem;
  right: 1.4rem;
  height: 2px;
  background: var(--gold);
}
.ticket-ref {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1.15rem;
}
.ticket h2 {
  font-size: 1.85rem;
  margin-bottom: 0.25rem;
}
.ticket .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin: 0.55rem 0 1.15rem;
}
.ticket .price span {
  font-size: 1rem;
  color: var(--dim);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-left: 0.25rem;
}
.ticket ul {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  border-top: 1px solid var(--border);
}
.ticket li {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--border);
}
.ticket .btn { width: 100%; }
.ticket .teaser {
  justify-content: center;
  margin-top: 0.9rem;
  text-align: center;
}

.changes {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 6vw 4.5rem;
}
.changes h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.6rem;
}
.change-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.4rem;
}
.change {
  padding: 1.25rem 1.3rem;
  background: var(--card);
  border: 1px solid var(--border);
}
.change strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.change p { color: var(--muted); font-size: 0.9rem; }

.quote {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto 4.5rem;
  padding: 0 6vw;
}
.quote blockquote {
  max-width: 46rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream);
}
.quote cite {
  display: block;
  margin-top: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--dim);
  letter-spacing: 0.04em;
}

.kathryn-band {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto 5.5rem;
  padding: 0 6vw;
}
.kathryn {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.4rem 1.5rem;
  background: #14110c;
  border: 1px solid var(--border-gold);
}
.av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  flex-shrink: 0;
}
.kathryn strong { display: block; margin-bottom: 0.3rem; }
.kathryn p { color: var(--muted); font-size: 0.92rem; max-width: 62ch; }

.foot {
  position: relative;
  z-index: 1;
  padding: 0 6vw 3.5rem;
  max-width: 1140px;
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--dim);
}
.foot a { color: var(--dim); text-underline-offset: 2px; }
.foot a:hover { color: var(--gold); }

.sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(8, 9, 12, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
}
.sticky .btn { width: 100%; }
.sticky small {
  display: block;
  text-align: center;
  color: var(--dim);
  font-size: 0.72rem;
  margin-top: 0.4rem;
}

.clients {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: -1.5rem auto 3.5rem;
  padding: 0 6vw;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}
.clients b {
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.18em;
}

@media (max-width: 860px) {
  .desk {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding: 2rem 1.4rem 3rem;
  }
  h1 { max-width: none; font-size: clamp(2.15rem, 9vw, 3rem); }
  .change-grid { grid-template-columns: 1fr; }
  .nav { padding: 1.1rem 1.4rem; }
  .sticky { display: block; }
  body { padding-bottom: 5.5rem; }
  .trust { gap: 1.2rem 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .btn:hover { transform: none; }
}
