/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-bg: #faf8f5;
  --clr-surface: #ffffff;
  --clr-border: #e8e2da;
  --clr-border-accent: #c9bfb2;
  --clr-text: #3a3632;
  --clr-text-muted: #6b6560;
  --clr-heading: #2c2825;
  --clr-accent: #5b7f6e;
  --clr-accent-light: #e9f1ec;
  --clr-accent-dark: #3d5f4e;
  --clr-warm: #d4a574;
  --clr-warm-light: #faf0e6;
  --clr-highlight: #f5ebe0;
  --clr-cta: #4a7c5f;
  --clr-cta-hover: #3d6a50;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.1);
  --radius: 10px;
  --max-w: 820px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--clr-accent-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--clr-cta-hover); }

/* === LAYOUT === */
.container { width: 92%; max-width: var(--max-w); margin: 0 auto; }
.section { padding: 3rem 0; }
.section + .section { border-top: 1px solid var(--clr-border); }

/* === HEADER === */
.site-header {
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.site-logo { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--clr-heading); text-decoration: none; letter-spacing: -.02em; }
.site-logo span { color: var(--clr-accent); }
.header-nav { display: flex; gap: 1.25rem; font-size: .88rem; }
.header-nav a { text-decoration: none; color: var(--clr-text-muted); }
.header-nav a:hover { color: var(--clr-accent-dark); }

/* === DISCLAIMER === */
.disclaimer {
  background: var(--clr-warm-light);
  border: 1px solid var(--clr-warm);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.disclaimer strong { color: var(--clr-text); }

/* === HERO === */
.hero {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  line-height: 1.3;
  color: var(--clr-heading);
  max-width: 700px;
  margin: 0 auto 1rem;
  letter-spacing: -.02em;
}
.hero .subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* === STORY CARDS === */
.stories-grid { display: flex; flex-direction: column; gap: 2rem; }

.story-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease;
}
.story-card:hover { box-shadow: var(--shadow-md); }

.story-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.story-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-accent-light);
  color: var(--clr-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.story-meta-text h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--clr-heading);
  line-height: 1.3;
}
.story-meta-text .story-tagline {
  font-size: .82rem;
  color: var(--clr-text-muted);
}

.story-body p { margin-bottom: .85rem; }
.story-body p:last-child { margin-bottom: 0; }

.story-quote {
  border-left: 3px solid var(--clr-warm);
  background: var(--clr-highlight);
  padding: .9rem 1.15rem;
  margin: 1rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--clr-text);
  font-size: .97rem;
}

.story-outcome {
  display: inline-block;
  margin-top: .75rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--clr-accent-dark);
  background: var(--clr-accent-light);
  padding: .3rem .75rem;
  border-radius: 20px;
}

/* === THEMES SECTION === */
.themes-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.25rem; }
.themes-list li {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.themes-list li strong { color: var(--clr-heading); }

/* === PROVIDER OVERVIEW === */
.provider-grid { display: grid; gap: 1.25rem; margin-top: 1.25rem; }

.provider-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.provider-card.featured {
  border-color: var(--clr-accent);
  border-width: 2px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.provider-card.featured::before {
  content: "Most Mentioned";
  position: absolute;
  top: -10px;
  left: 1.25rem;
  background: var(--clr-cta);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .15rem .6rem;
  border-radius: 20px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.provider-card h4 { font-size: 1.05rem; color: var(--clr-heading); margin-bottom: .35rem; }
.provider-card .provider-price { font-weight: 700; color: var(--clr-accent-dark); margin-bottom: .35rem; }
.provider-card p { font-size: .9rem; color: var(--clr-text-muted); margin-bottom: .5rem; }

.cta-btn {
  display: inline-block;
  background: var(--clr-cta);
  color: #fff;
  text-decoration: none;
  padding: .6rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s;
}
.cta-btn:hover { background: var(--clr-cta-hover); color: #fff; }

/* === FAQ === */
.faq-list { margin-top: 1.25rem; }
.faq-item {
  border-bottom: 1px solid var(--clr-border);
  padding: 1.25rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h4 {
  font-size: 1rem;
  color: var(--clr-heading);
  margin-bottom: .5rem;
  cursor: default;
}
.faq-item p { font-size: .93rem; color: var(--clr-text-muted); }

/* === SECTION HEADINGS === */
.section h2 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--clr-heading);
  letter-spacing: -.01em;
  margin-bottom: .5rem;
}
.section .section-intro {
  color: var(--clr-text-muted);
  font-size: .95rem;
  margin-bottom: 1.5rem;
}

/* === AFFILIATE DISCLOSURE === */
.affiliate-disclosure {
  background: var(--clr-highlight);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .82rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-top: 2rem;
}

/* === FOOTER === */
.site-footer {
  background: var(--clr-heading);
  color: rgba(255,255,255,.65);
  padding: 2.5rem 0 1.5rem;
  margin-top: 3rem;
  font-size: .85rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; margin-bottom: 1.25rem; }
.footer-links a { color: rgba(255,255,255,.8); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-copy { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1rem; font-size: .78rem; }

/* === RESPONSIVE === */
@media (min-width: 640px) {
  .hero h1 { font-size: 2.3rem; }
  .story-card { padding: 2.25rem 2rem; }
  .provider-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .hero h1 { font-size: 2.6rem; }
  .section { padding: 4rem 0; }
  .hero { padding: 5rem 0 3rem; }
}
