/* ==========================================================
   La France Tartare — Landing Page
   ========================================================== */

:root {
  --bg-primary: #0C0A09;
  --bg-secondary: #1A1714;
  --bg-card: #211E19;
  --gold: #C9A84C;
  --gold-light: #E2C972;
  --gold-dark: #8B7433;
  --bordeaux: #6B1D2A;
  --bordeaux-light: #8C2737;
  --text-primary: #F5F0E8;
  --text-secondary: #A89F91;
  --text-muted: #6B6358;
  --border-subtle: rgba(201, 168, 76, 0.15);
  --shadow-gold: rgba(201, 168, 76, 0.08);

  --font-display: 'Cinzel', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --font-ui: 'Jost', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

section { width: 100%; }

/* ============= Reusable: section title ============= */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.6vw, 32px);
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--gold);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.3;
}

/* ============= Reusable: buttons ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  padding: 18px 48px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease;
  border: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 18px;
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-size: 16px;
  padding: 16px 36px;
}
.btn--outline:hover {
  background: rgba(201, 168, 76, 0.08);
}

/* ============= Section 1 — Urgency bar ============= */
.urgency {
  background: var(--gold);
  padding: 12px 20px;
  text-align: center;
}
.urgency p {
  color: var(--bg-primary);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 1px;
}

/* ============= Section 2 — Hero ============= */
.hero {
  position: relative;
  background-color: var(--bg-primary);
  background-image: url('images/generated-1776103152397.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  padding: 100px 20px 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--bg-primary);
  opacity: 0.85;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.hero__topline {
  width: 80px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.hero__label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 7vw, 60px);
  letter-spacing: 4px;
  color: var(--gold);
  line-height: 1.1;
}
.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.6vw, 26px);
  font-style: italic;
  color: var(--text-primary);
}
.hero__sep {
  width: 120px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
  border-radius: 1px;
}
.hero__book {
  width: min(830px, 100%);
  aspect-ratio: 830 / 688;
  background: url('images/A_photorealistic_mockup_202604131859.png') center/cover no-repeat;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  box-shadow:
    0 4px 20px rgba(0,0,0,0.5),
    0 20px 80px rgba(201, 168, 76, 0.1);
}
.hero__tagline {
  max-width: 600px;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.hero__cta {
  padding: 18px 48px;
}
.hero__notice {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold-dark);
}

/* ============= Section 3 — Problem ============= */
.problem {
  background: var(--bg-secondary);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.problem__rule {
  width: min(864px, 100%);
  height: 1px;
  background: var(--gold);
}
.problem__text {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.problem__text p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.8;
  color: var(--text-primary);
}
.problem__finale {
  color: var(--gold) !important;
  font-style: normal !important;
  font-weight: 700;
  font-size: 24px !important;
}

/* ============= Section 4 — Discovery ============= */
.discovery {
  background: var(--bg-primary);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.discovery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 400px));
  gap: 24px;
  max-width: 1272px;
  width: 100%;
  justify-content: center;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 16px var(--shadow-gold);
}
.card__icon {
  font-size: 36px;
  line-height: 1;
}
.card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.25;
}
.card__desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ============= Section 5 — Stats ============= */
.stats {
  background: var(--bg-secondary);
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.stats__row {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat__lbl {
  font-family: var(--font-ui);
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}
.stats__desc {
  max-width: 600px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============= Section 6 — Testimonials ============= */
.testimonials {
  background: var(--bg-primary);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.testimonials__title {
  font-family: var(--font-serif);
  color: var(--text-primary);
  letter-spacing: 0;
  max-width: 800px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1272px;
  width: 100%;
}
.testimonial {
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.testimonial__text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
}
.testimonial__name {
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============= Section 7 — Offer ============= */
.offer {
  background: var(--bg-secondary);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  scroll-margin-top: 20px;
}
.offer__topDeco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.offer__topLabel {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold-dark);
}
.offer__topLine {
  width: 60px; height: 1px;
  background: var(--gold);
}
.offer__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-align: center;
}
.offer__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
}
.offer__cards {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
}
.pricing {
  flex: 1 1 420px;
  max-width: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 48px 44px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.pricing--featured {
  border: 2px solid var(--gold);
  box-shadow: 0 0 40px var(--shadow-gold);
}
.pricing__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bordeaux);
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 8px 24px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.pricing__label {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pricing__priceRow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.pricing__discount {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 3px 12px;
  border-radius: 4px;
}
.pricing__old {
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--text-secondary);
  text-decoration: line-through;
}
.pricing__price {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.pricing__save {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 4px 14px;
  border-radius: 12px;
  margin-top: 8px;
}
.pricing__sep {
  width: 180px;
  height: 1px;
  background: var(--border-subtle);
  margin: 24px 0;
}
.pricing__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-bottom: 28px;
}
.pricing__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
}
.pricing__features--featured li {
  color: var(--text-primary);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.check--dark { color: var(--gold-dark); }
.pricing__btn { width: 100%; }
.offer__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
}

/* ============= Section 8 — FAQ ============= */
.faq {
  background: var(--bg-primary);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.faq__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  text-align: center;
}
.faq__wrap {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  font-family: var(--font-ui);
  font-size: 24px;
  color: var(--gold);
  transition: transform .2s ease;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__item p {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============= Section 9 — Final CTA ============= */
.finalCta {
  background: var(--bg-secondary);
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.finalCta__lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.finalCta__lines p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 2.2;
  color: var(--text-secondary);
}
.finalCta__phrase {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  max-width: 800px;
  line-height: 1.3;
}
.finalCta__btn {
  font-size: 20px;
  padding: 20px 48px;
  letter-spacing: 2px;
}
.finalCta__sub {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
}

/* ============= Section 10 — Footer ============= */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--gold);
}
.footer__copy {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-muted);
}

/* ============= Responsive ============= */
@media (max-width: 1024px) {
  .discovery__grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .hero { padding: 60px 16px; }
  .hero__inner { gap: 24px; }
  .problem { padding: 60px 16px; }
  .problem__text p { font-size: 18px; }
  .problem__finale { font-size: 20px !important; }
  .discovery, .testimonials, .offer, .faq, .finalCta { padding: 60px 16px; }
  .discovery__grid, .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .stats__row { gap: 40px; }
  .stat__num { font-size: 36px; }
  .pricing { padding: 32px 24px 28px; }
  .pricing__price { font-size: 48px; }
  .finalCta__lines p { font-size: 18px; }
  .finalCta__phrase { font-size: 22px; }
  .btn--gold { font-size: 16px; padding: 16px 32px; }
}
