/* Situation landers — same chrome as the rest of the shop. */

:root {
  --gold: #C9A962;
  --gold-muted: #A69060;
  --bg-void: #050608;
  --bg: #08090C;
  --ink: #08090C;
  --surface: #0D0F14;
  --card: #111419;
  --cream: #FAF7F0;
  --muted: #A8A5A0;
  --dim: #6B6862;
  --soft: #8A8780;
  --border: rgba(201, 169, 98, 0.12);
  --border-gold: rgba(201, 169, 98, 0.4);
}

*, *::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;
}

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;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid var(--border);
  background: var(--ink, #08090C);
}

.logo {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  text-decoration: none;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  white-space: nowrap;
}
.logo b,
.logo .logo-mark,
.logo-mark {
  color: var(--gold);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
}
.logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
}

.nav-end { text-align: right; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a[aria-current="page"] { color: var(--gold); }

.nav-cta,
.nav-wa {
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 0.45rem 0.85rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 2px;
}
.nav-cta:hover,
.nav-wa:hover { background: rgba(201, 169, 98, 0.08); }
.nav-cta:focus-visible,
.nav-wa:focus-visible,
.nav-links a:focus-visible,
.logo: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;
}
h1.promise {
  max-width: none;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
}
h1.promise em {
  white-space: nowrap;
}

.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.05rem 1.45rem;
  background: var(--gold);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.25;
  border: 0;
  border-radius: 2px;
}
.btn:hover {
  background: var(--gold);
  color: var(--bg);
}

.ghost {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(201, 169, 98, 0.45);
  padding-bottom: 0.08rem;
}
.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: var(--card);
  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 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.15;
  padding-top: 0.08rem;
  letter-spacing: -0.02em;
}
.kathryn strong { display: block; margin-bottom: 0.3rem; }
.kathryn p { color: var(--muted); font-size: 0.92rem; max-width: 62ch; }
.kathryn .kathryn-meta {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-muted);
  margin-top: 0.45rem;
}
.kathryn .kathryn-meta a { color: inherit; }

.nav-hours,
.wa-hours {
  display: block;
  text-align: right;
  font-size: 0.68rem;
  color: var(--soft, #8A8780);
  margin-top: 0.28rem;
}
.nav .wa-hours { text-align: right; }

.faqs {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto 4.5rem;
  padding: 0 6vw;
}
.faqs h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.4rem;
}
.faq {
  border-top: 1px solid var(--border);
  padding: 1.1rem 0;
}
.faq:last-child { border-bottom: 1px solid var(--border); }
.faq strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.faq p { color: var(--muted); font-size: 0.9rem; }

.also {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto 3.5rem;
  padding: 0 6vw;
}
.also h2 {
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}
.also-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  font-size: 0.88rem;
}
.also-links a {
  color: var(--muted);
  text-underline-offset: 2px;
}
.also-links a:hover { color: var(--gold); }

.foot {
  position: relative;
  z-index: 1;
  margin-top: 3.5rem;
  padding: 1.6rem 6vw 2.2rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--dim);
}
.foot-inner { max-width: 720px; }
.foot a { color: var(--dim); text-underline-offset: 2px; }
.foot a:hover { color: var(--gold); }
.foot-links { margin-bottom: 0.45rem; }
.foot-links a + a::before {
  content: "·";
  margin: 0 0.55rem;
  color: var(--dim);
  text-decoration: none;
}
.foot-meta { margin-top: 0.45rem; }

.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;
}

.cost-table-wrap { overflow-x: auto; margin: 0 1.25rem 2.5rem; }
.cost-table { width: 100%; max-width: 920px; margin: 0 auto; border-collapse: collapse; font-size: 0.92rem; }
.cost-table th, .cost-table td { text-align: left; padding: 0.85rem 0.9rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.cost-table th { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.cost-table td { color: var(--muted); }
.cost-table .us { color: var(--cream); font-weight: 600; }
.cost-note { max-width: 920px; margin: 0 auto 2.5rem; padding: 0 1.25rem; color: var(--dim); font-size: 0.82rem; }

@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); }
  h1.promise { font-size: clamp(1.75rem, 7.4vw, 2.45rem); }
  .change-grid { grid-template-columns: 1fr; }
  .nav { padding: 1.1rem 1.4rem; flex-wrap: wrap; }
  .nav-links { width: 100%; justify-content: flex-start; gap: 0.85rem; }
  .nav-end { width: 100%; text-align: left; }
  .nav-hours,
  .wa-hours { text-align: left; }
  .sticky { display: block; }
  body { padding-bottom: 5.5rem; }
  .trust { gap: 1.2rem 1.6rem; }
}

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