/* style.css — Successful Men Dating theme (light, Apple-inspired minimal) */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F5F5F7;
  --ink: #1D1D1F;
  --text: #3A3A3C;
  --text-muted: #6E6E73;
  --gold: #8A6511;
  --gold-fill: #C9A24B;
  --gold-light: #E1C577;
  --border: rgba(0, 0, 0, 0.08);
  --border-soft: rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 14px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.10);
  --success: #1E8E5A;
  --max-w: 1120px;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
}

.serif { font-family: var(--font-sans); font-weight: 600; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── NAV ─────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-logo {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 13.5px; color: var(--text); letter-spacing: 0.01em; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  padding: 9px 20px;
  border-radius: 980px;
  background: var(--ink);
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  font-size: 13px;
}
.nav-cta:hover { background: #000; }

/* ── HERO ────────────────────────────────────── */
.hero {
  padding: 88px 24px 64px;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 820px;
  margin: 0 auto 20px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p.lead {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero-stat strong { display: block; font-family: var(--font-sans); font-weight: 700; font-size: 28px; color: var(--ink); }
.hero-stat span { font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; }

.hero-media {
  max-width: 1120px;
  margin: 56px auto 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ── BUTTONS ─────────────────────────────────── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 980px;
  background: linear-gradient(135deg, var(--gold-fill), var(--gold-light));
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 8px 20px rgba(201, 162, 75, 0.30);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201, 162, 75, 0.40); }
.cta-sub { display: block; margin-top: 12px; font-size: 12px; color: var(--text-muted); }

/* ── SECTIONS ────────────────────────────────── */
section { padding: 96px 24px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-head h2 { font-family: var(--font-sans); font-weight: 700; letter-spacing: -0.01em; font-size: clamp(26px, 3.5vw, 38px); color: var(--ink); }
.section-head p { margin-top: 14px; color: var(--text-muted); font-size: 16px; line-height: 1.6; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--max-w); margin: 0 auto; }
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.card-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.card-body { padding: 26px 26px 30px; }
.card .icon { font-size: 22px; margin-bottom: 12px; }
.card h3 { font-size: 17px; color: var(--ink); margin-bottom: 8px; font-weight: 700; }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.alt-bg { background: var(--bg-alt); }

.steps { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(138, 101, 17, 0.10);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  border: 1px solid rgba(138, 101, 17, 0.22);
}
.step h4 { font-size: 15.5px; color: var(--ink); margin-bottom: 4px; font-weight: 700; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── FULL-BLEED EDITORIAL BAND ──────────────── */
.band-section { padding: 96px 0; background: var(--bg); }
.band-head { text-align: center; max-width: 620px; margin: 0 auto 48px; padding: 0 24px; }
.band-image {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

/* ── FAQ ─────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; color: var(--gold); font-size: 18px; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin-top: 12px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── DISCLOSURE STRIP ────────────────────────── */
.disclosure-strip {
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
  padding: 16px 24px;
  border-top: 1px solid var(--border-soft);
}

/* ── LEGAL CONTENT (disclosure / privacy) ───────── */
.legal-content { max-width: 760px; margin: 0 auto; padding: 0 24px 96px; color: var(--text-muted); line-height: 1.8; }
.legal-content h1 { font-family: var(--font-sans); font-weight: 700; letter-spacing: -0.01em; font-size: clamp(28px, 4vw, 40px); color: var(--ink); margin-bottom: 8px; }
.legal-content > p:first-of-type { font-size: 13px; color: var(--text-muted); opacity: 0.8; margin-bottom: 40px; }
.legal-content h2 { font-family: var(--font-sans); font-weight: 700; font-size: 20px; color: var(--ink); margin: 36px 0 12px; }
.legal-content p { margin-bottom: 16px; font-size: 14.5px; }
.legal-content a { color: var(--gold); text-decoration: underline; }

/* ── FOOTER ──────────────────────────────────── */
footer { padding: 48px 24px 32px; text-align: center; border-top: 1px solid var(--border-soft); }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text-muted); }
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: 12px; color: var(--text-muted); opacity: 0.8; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .hero-media { border-radius: 16px; margin-top: 40px; }
  section { padding: 64px 24px; }
  .band-section { padding: 64px 0; }
}
