/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #e8e4de;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; }
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
p { color: #a8a29e; font-size: 1.05rem; }

/* ── Utilities ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.gold { color: #c9a96e; }
.text-center { text-align: center; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; letter-spacing: 0.02em;
}
.logo span { color: #c9a96e; }
nav a.nav-cta {
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: #c9a96e; border: 1px solid #c9a96e; padding: 0.55rem 1.4rem; border-radius: 4px;
  transition: all 0.3s;
}
nav a.nav-cta:hover { background: #c9a96e; color: #0a0a0a; }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 8rem 1.5rem 6rem; text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.08) 0%, transparent 60%);
  position: relative;
}
.hero-inner { max-width: 720px; }
.hero .eyebrow {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: #c9a96e; margin-bottom: 1.5rem; font-weight: 600;
}
.hero h1 { margin-bottom: 1.5rem; color: #f5f0e8; }
.hero p.subhead { font-size: 1.2rem; color: #a8a29e; max-width: 540px; margin: 0 auto 2.5rem; }
.hero-form { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.hero-form input[type="email"] {
  padding: 0.9rem 1.25rem; border-radius: 4px; border: 1px solid rgba(201,169,110,0.3);
  background: rgba(255,255,255,0.05); color: #f5f0e8; font-size: 1rem;
  min-width: 280px; outline: none; transition: border 0.3s;
  font-family: 'Inter', sans-serif;
}
.hero-form input[type="email"]:focus { border-color: #c9a96e; }
.hero-form input[type="email"]::placeholder { color: #6b6560; }
.btn-primary {
  padding: 0.9rem 2rem; border-radius: 4px; border: none; cursor: pointer;
  background: #c9a96e; color: #0a0a0a; font-size: 0.9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: all 0.3s; font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: #ddb978; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,169,110,0.3); }
.hero .micro { font-size: 0.8rem; color: #5c5650; margin-top: 1rem; }

/* ── Valentine Banner ── */
.valentine-bar {
  background: linear-gradient(90deg, #1a0a0a, #2a0f0f, #1a0a0a);
  border-top: 1px solid rgba(220,60,60,0.2);
  border-bottom: 1px solid rgba(220,60,60,0.2);
  padding: 1.25rem 1.5rem; text-align: center;
}
.valentine-bar p { color: #e8e4de; font-size: 1rem; font-weight: 500; }
.valentine-bar .urgent { color: #dc3c3c; font-weight: 700; }
.countdown { display: inline-flex; gap: 1.5rem; margin-top: 0.5rem; }
.countdown-unit { display: inline-flex; flex-direction: column; align-items: center; }
.countdown-unit .num {
  font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: #dc3c3c;
}
.countdown-unit .lbl { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: #6b6560; }

/* ── How It Works ── */
.how-it-works { padding: 7rem 1.5rem; }
.how-it-works .section-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: #c9a96e; text-align: center; margin-bottom: 0.75rem; font-weight: 600;
}
.how-it-works h2 { text-align: center; color: #f5f0e8; margin-bottom: 4rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.step { text-align: center; padding: 2rem 1.5rem; }
.step-num {
  font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700;
  color: rgba(201,169,110,0.15); margin-bottom: 1rem; line-height: 1;
}
.step h3 { color: #f5f0e8; }
.step p { font-size: 0.95rem; }
.divider { width: 60px; height: 1px; background: rgba(201,169,110,0.3); margin: 0 auto; }

/* ── Pricing ── */
.pricing {
  padding: 7rem 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(201,169,110,0.03) 50%, transparent 100%);
}
.pricing .section-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: #c9a96e; text-align: center; margin-bottom: 0.75rem; font-weight: 600;
}
.pricing h2 { text-align: center; color: #f5f0e8; margin-bottom: 1rem; }
.pricing .pricing-sub { text-align: center; margin-bottom: 4rem; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.tier {
  border: 1px solid rgba(201,169,110,0.15); border-radius: 8px; padding: 2.5rem 2rem;
  text-align: center; transition: all 0.4s; position: relative; background: rgba(255,255,255,0.01);
}
.tier:hover { border-color: rgba(201,169,110,0.4); transform: translateY(-4px); }
.tier.featured { border-color: #c9a96e; background: rgba(201,169,110,0.04); }
.tier.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #c9a96e; color: #0a0a0a; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 0.3rem 1rem; border-radius: 3px;
}
.tier-name {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: #c9a96e; margin-bottom: 1rem; font-weight: 600;
}
.tier-price {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: #f5f0e8;
}
.tier-price span { font-size: 1rem; color: #6b6560; font-family: 'Inter', sans-serif; font-weight: 400; }
.tier-desc { margin: 1rem 0 1.5rem; font-size: 0.9rem; }
.tier ul { list-style: none; text-align: left; margin-bottom: 2rem; }
.tier ul li {
  padding: 0.45rem 0; font-size: 0.9rem; color: #a8a29e;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tier ul li::before { content: '✦ '; color: #c9a96e; font-size: 0.7rem; }
.btn-outline {
  display: inline-block; padding: 0.75rem 2rem; border-radius: 4px;
  border: 1px solid #c9a96e; color: #c9a96e; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer;
  background: transparent; transition: all 0.3s; font-family: 'Inter', sans-serif;
}
.btn-outline:hover { background: #c9a96e; color: #0a0a0a; }

/* ── Social Proof ── */
.social-proof { padding: 5rem 1.5rem; text-align: center; }
.social-proof .big-number {
  font-family: 'Playfair Display', serif; font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700; color: #c9a96e;
}
.social-proof p { font-size: 1.15rem; color: #a8a29e; margin-top: 0.5rem; }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.testimonial {
  border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 2rem;
  text-align: left; background: rgba(255,255,255,0.02);
}
.testimonial .stars { color: #c9a96e; font-size: 0.85rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial blockquote { font-size: 0.95rem; color: #c8c2b8; font-style: italic; margin-bottom: 1rem; line-height: 1.6; }
.testimonial .author { font-size: 0.8rem; color: #6b6560; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── CTA Section ── */
.final-cta {
  padding: 7rem 1.5rem; text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,169,110,0.06) 0%, transparent 60%);
}
.final-cta h2 { color: #f5f0e8; margin-bottom: 1rem; }
.final-cta p { max-width: 480px; margin: 0 auto 2.5rem; }
.final-cta .hero-form { justify-content: center; }

/* ── Footer ── */
footer {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 2.5rem 1.5rem;
  text-align: center;
}
footer p { font-size: 0.8rem; color: #4a4540; }
footer a { color: #6b6560; transition: color 0.3s; }
footer a:hover { color: #c9a96e; }

/* ── Animations ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .steps, .tiers, .testimonials { grid-template-columns: 1fr; }
  .hero-form { flex-direction: column; align-items: center; }
  .hero-form input[type="email"] { min-width: 100%; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .countdown { gap: 1rem; }
  nav { padding: 1rem 1.25rem; }
  .logo { font-size: 1.05rem; }
}
