:root {
  --brand-burgundy: #690F0D;
  --brand-burgundy-deep: #4E0B0A;
  --brand-burgundy-soft: #8B2E2A;
  --brand-gold: #BFA55A;
  --brand-gold-muted: #7A7050;
  --brand-gold-accent: #D4C9A0;
  --bg: #FFFFFF;
  --surface: #FAFAF8;
  --surface-elevated: #FFFFFF;
  --mist: #F2F2F4;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --border: #E8E4DF;
  --radius: 10px;
  --font-sans: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --max: 1080px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brand-burgundy);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* Nav — overlays burgundy hero; solid light bar when scrolled */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.site-nav .brand {
  color: #FFFFFF;
  gap: 14px;
}
.site-nav .brand-name {
  color: #FFFFFF;
  letter-spacing: 0.06em;
}
.site-nav .nav-links > li > a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
}
.site-nav .nav-links > li > a:not(.nav-cta):hover {
  color: var(--brand-gold-accent);
}

.site-nav .nav-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #FFFFFF;
}
.site-nav .nav-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--brand-gold-accent);
}

/* Hero / top: gold-outline members-club CTA */
.site-nav .nav-cta {
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  background: transparent;
  color: #FFFFFF;
  border: 1px solid var(--brand-gold);
  text-decoration: none;
}
.site-nav .nav-cta:hover {
  background: rgba(191, 165, 90, 0.16);
  color: var(--brand-gold-accent);
  border-color: var(--brand-gold-accent);
  text-decoration: none;
}

/* Scrolled over white: solid bar, burgundy contrast */
.site-nav.scrolled {
  background: #FFFFFF;
  border-bottom-color: #D9D2C8;
  box-shadow: 0 1px 0 rgba(105, 15, 13, 0.06), 0 10px 28px rgba(26, 26, 26, 0.06);
}
.site-nav.scrolled .brand,
.site-nav.scrolled .brand-name {
  color: var(--brand-burgundy);
}
.site-nav.scrolled .nav-links > li > a:not(.nav-cta) {
  color: var(--brand-burgundy);
}
.site-nav.scrolled .nav-links > li > a:not(.nav-cta):hover {
  color: var(--brand-burgundy-deep);
  opacity: 0.85;
}
.site-nav.scrolled .nav-toggle {
  background: #FFFFFF;
  border-color: #D9D2C8;
  color: var(--brand-burgundy);
}
.site-nav.scrolled .nav-toggle:hover {
  border-color: var(--brand-burgundy);
  background: var(--mist);
}
.site-nav.scrolled .nav-cta {
  background: var(--brand-burgundy);
  color: #FFFFFF;
  border-color: var(--brand-burgundy);
}
.site-nav.scrolled .nav-cta:hover {
  background: var(--brand-burgundy-deep);
  border-color: var(--brand-burgundy-deep);
  color: #FFFFFF;
}

/* Menu open on hero: keep toggle readable */
.site-nav.menu-open:not(.scrolled) {
  background: rgba(78, 11, 10, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.site-nav.scrolled .brand-mark {
  box-shadow: 0 0 0 1px rgba(105, 15, 13, 0.12);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover { text-decoration: none; }

.nav-toggle {
  display: none;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--brand-burgundy);
  color: #FFFFFF;
}
.btn-primary:hover {
  background: var(--brand-burgundy-deep);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--brand-burgundy-soft);
  color: var(--brand-burgundy);
  transform: translateY(-1px);
}

/* App Store badge (black, official-looking) */
.btn-app-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px 10px 16px;
  border-radius: 10px;
  background: #000000;
  color: #FFFFFF;
  text-decoration: none;
  border: 1px solid #000000;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  min-height: 52px;
}
.btn-app-store:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #FFFFFF;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-app-store-icon {
  flex-shrink: 0;
}
.btn-app-store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}
.btn-app-store-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.9;
}
.btn-app-store-name {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-family: var(--font-sans);
}

.store-actions {
  align-items: center;
}

/* Hero — one full-bleed composition; pulls under sticky nav */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--nav-h));
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #FFFFFF;
  background:
    radial-gradient(ellipse 70% 55% at 70% 35%, rgba(191, 165, 90, 0.16), transparent 55%),
    linear-gradient(165deg, var(--brand-burgundy-deep) 0%, var(--brand-burgundy) 48%, #5a100e 100%);
}

.hero-plane {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 55%, rgba(212, 201, 160, 0.12), transparent 42%),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-ring {
  position: absolute;
  right: max(-4%, calc(48% - 480px));
  top: 50%;
  width: min(58vw, 480px);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.55;
  transform: translateY(-50%);
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 48px) 0 88px;
  max-width: 36rem;
  margin-left: max(20px, calc((100% - var(--max)) / 2));
  margin-right: auto;
  width: min(100% - 40px, 36rem);
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 0.9s ease forwards;
}

.hero-brand {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(2.85rem, 8vw, 4.6rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.08em;
  color: #FFFFFF;
}

.hero-headline {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--brand-gold-accent);
}

.hero-support {
  margin: 0 0 32px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .btn-primary {
  background: #FFFFFF;
  color: var(--brand-burgundy);
  border-color: #FFFFFF;
}
.hero .btn-primary:hover {
  background: var(--mist);
  color: var(--brand-burgundy-deep);
  border-color: var(--mist);
}

.hero .btn-secondary {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.35);
}
.hero .btn-secondary:hover {
  border-color: var(--brand-gold-accent);
  color: var(--brand-gold-accent);
  background: transparent;
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Atmosphere band */
.atmosphere {
  padding: 0;
  height: 48px;
  background: linear-gradient(180deg, var(--brand-burgundy) 0%, var(--bg) 100%);
  border: none;
}

.atmosphere-line {
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(191, 165, 90, 0.25), transparent);
  opacity: 0.6;
}

/* Sections */
section {
  padding: 88px 0;
}

.band {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section-head {
  max-width: 560px;
  margin-bottom: 48px;
}

.section-label {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-burgundy-soft);
}

.section-head h2 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.4vw, 2.45rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* How it works — not heavy cards */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
  counter-reset: none;
}

.step {
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.step-num {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--brand-gold);
}

.step h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Pillars ≤3 — flat, not SaaS cards */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 36px;
}

.pillar {
  padding: 0;
  background: none;
  border: none;
  border-top: 2px solid var(--brand-burgundy);
  padding-top: 22px;
}

.pillar h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.pillar p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Trust */
.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 640px;
  border-top: 1px solid var(--border);
}

.trust-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
}

.trust-list strong {
  color: var(--text);
  font-weight: 600;
}

/* Cities */
.cities-line {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.5;
}

/* CTA band */
.cta-band {
  text-align: left;
  background:
    linear-gradient(135deg, rgba(105, 15, 13, 0.04), transparent 50%),
    var(--bg);
}

.cta-band .section-label { color: var(--brand-burgundy-soft); }

.cta-band h2 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
}

.cta-band > .container > p:not(.section-label) {
  margin: 0 0 28px;
  max-width: 420px;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: var(--brand-burgundy);
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item a { font-weight: 500; }

/* Contact — flat, not cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-item {
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.contact-item h3 {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-item p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-item a {
  font-size: 0.95rem;
  font-weight: 600;
  word-break: break-all;
}

/* Footer */
.site-footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--text);
  font-size: 0.9rem;
  text-decoration: none;
}
.footer-col a:hover { color: var(--brand-burgundy); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-content {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-app-store:hover {
    transform: none;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-ring {
    right: -18%;
    opacity: 0.28;
    width: min(78vw, 420px);
  }
}

@media (max-width: 720px) {
  .nav-toggle { display: grid; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #FFFFFF;
    border-bottom: 1px solid #D9D2C8;
    box-shadow: 0 16px 32px rgba(26, 26, 26, 0.1);
    padding: 8px 20px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }

  /* Mobile drawer always high-contrast on white */
  .site-nav .nav-links > li > a:not(.nav-cta),
  .site-nav.scrolled .nav-links > li > a:not(.nav-cta) {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--brand-burgundy) !important;
  }
  .site-nav .nav-links > li > a:not(.nav-cta):hover,
  .site-nav.scrolled .nav-links > li > a:not(.nav-cta):hover {
    color: var(--brand-burgundy-deep) !important;
  }

  .site-nav .nav-cta,
  .site-nav.scrolled .nav-cta {
    display: flex;
    width: 100%;
    margin-top: 12px;
    text-align: center;
    justify-content: center;
    background: var(--brand-burgundy) !important;
    color: #FFFFFF !important;
    border-color: var(--brand-burgundy) !important;
  }
  .site-nav .nav-cta:hover,
  .site-nav.scrolled .nav-cta:hover {
    background: var(--brand-burgundy-deep) !important;
    border-color: var(--brand-burgundy-deep) !important;
    color: #FFFFFF !important;
  }

  .hero {
    min-height: auto;
    align-items: flex-end;
  }
  .hero-content {
    padding: calc(var(--nav-h) + 40px) 0 72px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ring {
    top: 14%;
    right: 50%;
    transform: translate(50%, 0);
    width: min(72vw, 300px);
    opacity: 0.35;
  }

  .steps,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  section { padding: 64px 0; }
  .cities-line { font-size: 1.2rem; }
}
