/* ============================================
   The Great Secret of Life — landing page
   Palette: cream + deep navy + warm gold
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; padding: 0; }

:root {
  --bg: #f9f6ef;
  --bg-alt: #fdfaf3;
  --bg-soft: #f0eadd;
  --text: #0f1e3a;
  --text-soft: #4a5366;
  --text-mute: #8a8f9e;
  --accent: #b88a3f;
  --accent-dark: #8d6929;
  --border: #e8e2d3;
  --serif: 'EB Garamond', 'Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

body {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--accent); }

/* ---------- Layout ---------- */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow { max-width: 720px; }

.section {
  padding: 110px 0;
  border-bottom: 1px solid var(--border);
}
.section:last-of-type { border-bottom: none; }

/* ---------- Kicker (small label above headings) ---------- */

.kicker {
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-dark);
  font-weight: 500;
  margin: 0 0 16px;
}

/* ---------- Hero ---------- */

.hero {
  padding: 130px 0 110px;
  text-align: center;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.hero .subtitle {
  font-size: clamp(20px, 2.4vw, 24px);
  font-style: italic;
  color: var(--text-soft);
  margin: 0 auto 36px;
  line-height: 1.5;
  max-width: 600px;
}
.hero-meta {
  font-family: var(--sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  margin: 0 0 40px;
}

/* ---------- Buttons ---------- */

.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--text);
  color: var(--bg);
  padding: 19px 42px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s ease;
  border: 1.5px solid var(--text);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--bg);
}
.btn-large {
  font-size: 16px;
  padding: 24px 56px;
  letter-spacing: 0.08em;
}

/* ---------- Section headings ---------- */

.section h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 36px;
  letter-spacing: -0.005em;
}
.section h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.3;
}
.section p {
  margin: 0 0 22px;
}

/* ---------- Hook section ---------- */

.section-hook h2 {
  text-align: left;
}
.section-hook p {
  font-size: 19px;
  line-height: 1.7;
}

/* ---------- Masters section ---------- */

.section-masters {
  background: var(--bg-alt);
}
.masters-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.masters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 56px 48px;
  margin-top: 72px;
}
.master {
  padding: 0;
}
.master h3 {
  margin: 0 0 4px;
  font-size: 24px;
}
.master .dates {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.18em;
  margin: 0 0 16px;
  text-transform: uppercase;
  font-weight: 500;
}
.master p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  color: var(--text-soft);
}

/* ---------- Thirty-day path ---------- */

.section-thirty-days .lede {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-soft);
}
.weeks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px 32px;
  margin: 56px 0 40px;
}
.week .week-label {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-dark);
  font-weight: 600;
  margin: 0 0 10px;
}
.week h3 {
  font-size: 24px;
  margin: 0 0 10px;
}
.week p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
}
.aside {
  font-style: italic;
  color: var(--text-soft);
  font-size: 18px;
  text-align: center;
  margin-top: 32px;
  line-height: 1.55;
}

/* ---------- What you get ---------- */

.what-list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
}
.what-list li {
  font-size: 19px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.what-list li:last-child { border-bottom: none; }
.what-list strong {
  font-weight: 600;
  color: var(--text);
}

/* ---------- Buy ---------- */

.section-buy {
  text-align: center;
  background: var(--text);
  color: var(--bg);
  border-bottom: none;
}
.section-buy .kicker {
  color: var(--accent);
}
.section-buy .price {
  font-family: var(--serif);
  font-size: clamp(64px, 9vw, 88px);
  font-weight: 500;
  margin: 0 0 40px;
  color: var(--bg);
  line-height: 1;
  letter-spacing: -0.02em;
}
.section-buy .btn-primary {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}
.section-buy .btn-primary:hover {
  background: var(--bg);
  color: var(--text);
  border-color: var(--bg);
}
.section-buy .aside {
  color: rgba(249,246,239,0.65);
  font-size: 15px;
  margin: 40px auto 0;
  max-width: 500px;
  font-style: normal;
  line-height: 1.6;
}
.section-buy .aside a {
  color: rgba(249,246,239,0.9);
}
.section-buy .aside a:hover {
  color: var(--accent);
}

/* ---------- FAQ ---------- */

.faq h3 {
  font-size: 21px;
  margin: 36px 0 10px;
  font-weight: 600;
  color: var(--text);
}
.faq h3:first-of-type {
  margin-top: 24px;
}
.faq p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--bg-soft);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer p {
  margin: 0;
  font-size: 14px;
  color: var(--text-mute);
  font-family: var(--sans);
}
.footer a {
  color: var(--text-soft);
  text-decoration: none;
}
.footer a:hover { color: var(--accent-dark); }

/* ---------- Mobile ---------- */

@media (max-width: 720px) {
  .hero { padding: 80px 0 60px; }
  .section { padding: 70px 0; }
  .container { padding: 0 24px; }
  .masters-grid { gap: 44px 32px; margin-top: 48px; }
  .weeks { gap: 32px; margin: 40px 0; }
  .section-buy .price { font-size: 60px; }
  .what-list li { font-size: 18px; padding: 18px 0; }
  .btn-large { padding: 20px 40px; font-size: 15px; }
}
