:root {
  --bg: #0b1520;
  --bg-alt: #0f1e2e;
  --bg-card: #111e2d;
  --fg: #f7f4ef;
  --fg-muted: rgba(247,244,239,0.55);
  --accent: #c9a452;
  --accent-dim: rgba(201,164,82,0.15);
  --border: rgba(247,244,239,0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(11,21,32,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner { max-width: 1100px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-mark { font-size: 0.5rem; color: var(--accent); }
.logo-text { font-family: var(--font-body); font-weight: 500; font-size: 0.875rem; letter-spacing: 0.04em; color: var(--fg); }

/* Sections */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(201,164,82,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(201,164,82,0.04) 0%, transparent 50%),
    linear-gradient(175deg, #0f1e2e 0%, #0b1520 50%, #0d1925 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  opacity: 0.6;
}
.hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero-eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.75rem; }
.eyebrow-line { display: block; width: 2rem; height: 1px; background: var(--accent); }
.eyebrow-text { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-services-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-service-chip {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--fg);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  font-weight: 400;
}

/* Services */
.services { background: var(--bg-alt); border-top: 1px solid var(--border); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg-card);
  padding: 2.25rem 2rem;
  transition: background 0.2s;
}
.service-card:hover { background: #132030; }
.service-icon { color: var(--accent); margin-bottom: 1.25rem; }
.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--fg);
}
.service-desc { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.65; }

/* How it works */
.how-it-works { border-top: 1px solid var(--border); }
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 2.5rem;
}
.step { flex: 1; padding: 0 1.5rem; }
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-divider { width: 1px; align-self: stretch; background: var(--border); flex-shrink: 0; margin: 0 0.5rem; }
.step-num {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--fg);
}
.step-desc { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.65; }
.how-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* Membership */
.membership { background: var(--bg-alt); border-top: 1px solid var(--border); }
.membership-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.membership-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 1rem 0 1.25rem;
  color: var(--fg);
}
.membership-body { font-size: 0.95rem; color: var(--fg-muted); margin-bottom: 2.5rem; line-height: 1.7; }
.membership-stats { display: flex; gap: 2.5rem; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.75rem; color: var(--fg-muted); letter-spacing: 0.04em; }
.membership-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-dim);
  padding: 2.5rem;
  border-radius: 2px;
}
.mem-tier-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.mem-tier-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1rem;
}
.mem-price { margin-bottom: 1.5rem; }
.mem-price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--fg);
}
.mem-price-period { font-size: 1rem; color: var(--fg-muted); }
.mem-features { list-style: none; }
.mem-features li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.mem-features li:last-child { border-bottom: none; }

/* Pricing */
.pricing { border-top: 1px solid var(--border); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.pricing-card { background: var(--bg); padding: 2.5rem 2rem; }
.pricing-card.featured { background: var(--bg-alt); }
.pricing-tier {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}
.pricing-unit { font-size: 1rem; font-weight: 400; color: var(--fg-muted); }
.pricing-desc { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.65; margin-bottom: 0.75rem; }
.pricing-note { font-size: 0.75rem; color: var(--fg-muted); opacity: 0.6; font-style: italic; }
.pricing-footer { font-size: 0.8rem; color: var(--fg-muted); opacity: 0.6; text-align: center; }

/* Closing */
.closing { border-top: 1px solid var(--border); padding: 7rem 2rem; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-deco {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 2.5rem;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.closing-body { font-size: 1.05rem; color: var(--fg-muted); line-height: 1.7; max-width: 520px; margin: 0 auto; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 2.5rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; }
.footer-tagline { font-size: 0.8rem; color: var(--fg-muted); }
.footer-copy { font-size: 0.75rem; color: var(--fg-muted); opacity: 0.5; }

/* Responsive */
@media (max-width: 768px) {
  .section-inner { padding: 3.5rem 1.25rem; }
  .hero { padding: 6rem 1.25rem 4rem; }
  .membership-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; gap: 2rem; }
  .step-divider { display: none; }
  .step { padding: 0; }
  .membership-stats { flex-direction: column; gap: 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
}
