@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CLUB THEME ── */
:root {
  --accent:       #a05a20;
  --accent-lt:    #c8782a;
  --accent-dim:   rgba(160, 90, 32, 0.12);
  --dark-1:       #0e0a08;
  --dark-2:       #140e0a;
  --dark-3:       #1c1208;
  --light-bg:     #f5f0eb;
  --text-primary: #f0e4d0;
  --text-muted:   rgba(240, 228, 208, 0.6);
  --text-dim:     rgba(240, 228, 208, 0.35);
  --border:       rgba(160, 90, 32, 0.1);
  --border-light: rgba(160, 90, 32, 0.08);
  --radius-sm:    3px;
  --radius:       10px;
  --radius-lg:    12px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--dark-1);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.01em;
  line-height: 1.05;
}
em { font-style: italic; color: var(--accent); }
p { line-height: 1.8; font-weight: 300; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 66px;
  background: rgba(14, 10, 8, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo .dot { color: var(--accent); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 12px;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.04em;
  opacity: 0.38;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.9; }
.nav-cta {
  padding: 8px 22px;
  border: 0.5px solid rgba(160, 90, 32, 0.5);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.08em;
  background: transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent); color: var(--dark-1); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text-primary); transition: 0.3s; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 30%;
  transform: scale(1.3) translate(-123px, 21px);
  transform-origin: center center;
}
.hero-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(0,0,0,0.97) 0%,
    rgba(0,0,0,0.90) 26%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.12) 48%,
    rgba(0,0,0,0.04) 62%,
    transparent 100%
  );
}
.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,10,8,0.9) 0%, transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 150px 52px 100px;
  max-width: 620px;
}

/* ── EYEBROW ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  opacity: 0.75;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 0.5px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-h1 {
  font-size: clamp(40px, 10vw, 84px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 22px;
  white-space: nowrap;
}
.hero-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-primary);
  opacity: 0.65;
  line-height: 1.85;
  max-width: 380px;
  margin-bottom: 34px;
}

/* ── BUTTONS ── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 0.5px solid rgba(160, 90, 32, 0.55);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.08em;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--accent); color: var(--dark-1); border-color: var(--accent); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.hero-price {
  font-size: 12px;
  color: var(--text-primary);
  opacity: 0.38;
  letter-spacing: 0.04em;
}

/* ── STATS ── */
.stats {
  display: flex;
  gap: 36px;
  padding-top: 26px;
  border-top: 0.5px solid var(--border-light);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}
.stat-num .accent { color: var(--accent); }
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.38;
  margin-top: 3px;
}

/* ── PILLARS STRIP ── */
.pillars-strip {
  margin: 0 52px;
  height: 1px;
  background: var(--border-light);
}

/* ── SECTIONS ── */
.section { padding: 88px 52px; }
.section-dark { background: var(--dark-1); }
.section-dark2 { background: var(--dark-2); }
.section-light { background: var(--light-bg); }

.section-header { max-width: 560px; margin-bottom: 52px; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 18px;
  height: 0.5px;
  background: var(--accent);
  display: block;
  flex-shrink: 0;
}
.section-eyebrow.dark-text { color: #7a4a20; opacity: 1; }
.section-eyebrow.dark-text::before { background: #7a4a20; }

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.section-light .section-title { color: #1a0e06; }

.section-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-primary);
  opacity: 0.65;
}
.section-light .section-sub { color: #5a3820; opacity: 1; }

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card {
  background: var(--dark-2);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.card:hover { background: var(--dark-3); }
.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.06;
  position: absolute;
  top: 10px;
  right: 18px;
  line-height: 1;
  pointer-events: none;
}
.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 16px;
}
.card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-primary);
  opacity: 0.62;
}
.card-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--accent);
  line-height: 1.3;
  margin-top: 8px;
}
.card-quote-sub {
  font-size: 11px;
  color: var(--text-primary);
  opacity: 0.28;
  margin-top: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── WHY GRID (light section) ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(160, 90, 32, 0.1);
  transition: transform 0.2s;
}
.why-item:hover { transform: translateY(-2px); }
.why-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}
.why-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a0e06;
}
.why-item p { font-size: 13px; color: #5a3820; line-height: 1.65; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 0;
}
.pricing-card {
  background: var(--dark-2);
  padding: 36px 32px;
  position: relative;
  transition: background 0.2s;
}
.pricing-card:hover { background: var(--dark-3); }
.pricing-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 18px;
}
.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price span {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.5;
}
.pricing-period {
  font-size: 12px;
  color: var(--text-primary);
  opacity: 0.35;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  font-size: 13px;
  color: var(--text-primary);
  opacity: 0.62;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}
.pricing-features li::before { content: '·'; color: var(--accent); opacity: 1; flex-shrink: 0; }
.pricing-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 10px;
  border: 0.5px solid rgba(160, 90, 32, 0.25);
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--accent);
  opacity: 0.65;
}

/* ── FOUNDERS ── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.founder-card {
  background: var(--dark-2);
  padding: 44px 40px;
  transition: background 0.2s;
}
.founder-card:hover { background: var(--dark-3); }
.founder-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.65;
  margin-bottom: 16px;
}
.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.founder-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.8;
}
.founder-desc {
  font-size: 14px;
  color: var(--text-primary);
  opacity: 0.55;
  line-height: 1.8;
}

/* ── FINAL CTA STRIP ── */
.cta-strip {
  padding: 80px 52px;
  text-align: center;
  background: var(--dark-2);
  border-top: 1px solid var(--border-light);
}
.cta-strip h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.cta-strip p {
  font-size: 14px;
  color: var(--text-primary);
  opacity: 0.42;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.cta-price-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-primary);
  opacity: 0.28;
  letter-spacing: 0.04em;
}

/* ── FOOTER ── */
footer {
  background: var(--dark-2);
  padding: 52px 52px 32px;
  border-top: 1px solid var(--border-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.footer-brand .dot { color: var(--accent); }
.footer-desc {
  font-size: 13px;
  color: var(--text-primary);
  opacity: 0.38;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-cvr { font-size: 11px; color: var(--text-primary); opacity: 0.22; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.4;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 13px;
  color: var(--text-primary);
  opacity: 0.38;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-col ul a:hover { opacity: 0.8; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-primary);
  opacity: 0.24;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: var(--dark-1);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border-light);
    z-index: 99;
  }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  /* Hero — reset desktop pixel-transform, reposition image for portrait */
  .hero { min-height: 78vh; }
  .hero-img {
    transform: none;
    object-position: 72% 18%;
  }
  .hero-overlay-left {
    background: linear-gradient(to right,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.80) 35%,
      rgba(0,0,0,0.40) 60%,
      transparent 100%
    );
  }
  .hero-content { padding: 80px 24px 52px; }
  .hero-h1 {
    font-size: clamp(34px, 9vw, 60px);
    white-space: normal;
  }
  .hero-sub { max-width: 100%; }
  .stats { gap: 20px; }

  .section { padding: 64px 24px; }
  .section-header { margin-bottom: 36px; }

  /* Pillars / honeycomb */
  .pillars-strip { margin: 0 24px; }

  .card-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cta-strip { padding: 60px 24px; }
}
