/* ===================================================================
   Alora — shared design system
   Aesthetic: editorial feminine. Fraunces (display, high-contrast serif)
   + Jost (body), warm ivory paper, rose with a deep wine + champagne accent,
   fine grain. Powers landing, guides, trust pages.
   =================================================================== */

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

:root {
  /* type */
  --display: 'Lora', Georgia, serif;
  --body:    'Jost', system-ui, sans-serif;
  /* color */
  --paper:     #FBF4EC;
  --cream:     #FBF4EC;
  --blush:     #F3DED8;
  --petal:     #EBC9C4;
  --rose:      #C47B82;
  --rose-dark: #A05A61;
  --wine:      #7C3B45;
  --gold:      #B8945F;
  --bronze:    #785A2C;
  --ink:       #211318;
  --warm-dark: #2C1A1D;
  --warm-mid:  #6B4047;
  --text:      #3D2326;
  --line:      rgba(124, 59, 69, 0.16);
  --maxw:      1140px;
  --prose:     700px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* fine paper grain over the whole page */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: var(--rose-dark); }
img { max-width: 100%; height: auto; display: block; }

.serif { font-family: var(--display); font-optical-sizing: auto; }
em { font-style: italic; }

/* eyebrow with a leading champagne rule (editorial signature) */
.section-label, .article-eyebrow, .hero-eyebrow {
  font-family: var(--body);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bronze);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.05rem 6vw;
  backdrop-filter: blur(16px);
  background: rgba(251, 244, 236, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: var(--display); font-optical-sizing: auto;
  font-size: 1.65rem; font-weight: 400; letter-spacing: 0.14em;
  color: var(--wine); text-decoration: none;
}
.nav-logo span { font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a.nav-link {
  font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warm-mid);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a.nav-link:hover { color: var(--wine); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--wine); color: #fff;
  padding: 0.6rem 1.5rem; border-radius: 100px;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.nav-cta:hover { background: var(--rose-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(124,59,69,0.22); }
@media (max-width: 780px) { .nav-links a.nav-link { display: none; } }

/* ── BUTTONS ── */
.btn-store {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--ink); color: var(--paper);
  padding: 0.9rem 1.8rem; border-radius: 14px;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.25s;
}
.btn-store:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(33,19,24,0.28); }
.btn-store svg { flex-shrink: 0; }
.btn-store-text { display: flex; flex-direction: column; text-align: left; }
.btn-store-text small { font-size: 0.75rem; font-weight: 400; letter-spacing: 0.04em; opacity: 0.85; }
.btn-store-text strong { font-size: 1rem; font-weight: 500; letter-spacing: 0.02em; }
.btn-store.on-dark { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.24); }
.store-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

/* platform-aware store badge: GP hidden unless ratings.js tags <html> as android */
.btn-store.store-gp { display: none; }
html.android .btn-store.store-ios { display: none; }
html.android .btn-store.store-gp { display: flex; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--rose); color: #fff;
  padding: 0.95rem 2.1rem; border-radius: 100px;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 10px 26px rgba(196,123,130,0.32);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-primary:hover { background: var(--wine); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(124,59,69,0.32); }

/* stacked two-line primary button */
.btn-primary.btn-stacked { flex-direction: column; gap: 0.2rem; padding: 0.85rem 2.6rem; line-height: 1.2; }
.btn-primary.btn-stacked small { font-size: 0.75rem; font-weight: 400; letter-spacing: 0.06em; text-transform: none; opacity: 0.9; }

/* ── SECTION SHARED ── */
section { padding: 7rem 6vw; }
.section-label { display: inline-block; margin-bottom: 1.1rem; }
.section-title {
  font-family: var(--display); font-optical-sizing: auto;
  font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 500; line-height: 1.18; letter-spacing: -0.008em;
  color: var(--warm-dark);
}
.section-title em { font-style: italic; font-weight: 500; color: var(--wine); }

/* ===================================================================
   LANDING PAGE
   =================================================================== */
.hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 10rem 6vw 0;
}
/* single soft light source, not the twin-blob default */
.hero::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  width: 90vw; max-width: 900px; aspect-ratio: 1;
  top: -30%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(235,201,196,0.5) 0%, rgba(235,201,196,0.14) 38%, transparent 66%);
  filter: blur(30px);
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-bottom: 1.6rem;
  color: var(--bronze);
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 26px; height: 1px; background: var(--gold); opacity: 0.6; }
.hero-title {
  font-family: var(--display); font-optical-sizing: auto;
  font-size: clamp(2.7rem, 6vw, 4.4rem);
  font-weight: 500; line-height: 1.08; letter-spacing: -0.012em;
  color: var(--warm-dark);
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero-title em { font-style: italic; font-weight: 500; color: var(--wine); }
.hero-sub {
  margin: 1.7rem auto 2.4rem; max-width: 540px;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem); font-weight: 400; line-height: 1.7; color: var(--warm-mid);
  animation: fadeUp 1s 0.2s ease both;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; animation: fadeUp 1s 0.35s ease both; }
.hero-note { margin-top: 1.6rem; font-size: 0.95rem; text-wrap: balance; letter-spacing: 0.04em; color: var(--warm-mid); opacity: 0.9; animation: fadeUp 1s 0.5s ease both; }
.hero-stats {
  display: flex; justify-content: center; align-items: stretch; margin-top: 1.8rem;
  animation: fadeUp 1s 0.45s ease both;
}
.hero-stats .stat {
  padding: 0 clamp(1.4rem, 4vw, 2.2rem); text-align: center;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-stats .stat + .stat { border-left: 1px solid var(--line); }
.hero-stats strong {
  display: flex; align-items: baseline; justify-content: center; gap: 0.5rem;
  font-family: var(--display); font-size: 1.6rem; font-weight: 500;
  color: var(--warm-dark); line-height: 1.1;
}
.hero-stats .stat-stars { color: var(--gold); font-size: 0.92rem; letter-spacing: 0.1em; font-family: var(--body); }
.hero-stats small {
  display: block; margin-top: 0.35rem;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--warm-mid);
}

/* hero product shot */
.hero-media {
  position: relative; z-index: 1; margin: 3.8rem auto 0; width: fit-content;
  animation: fadeUp 1.1s 0.55s ease both;
}
.hero-media::before {
  content: ''; position: absolute; inset: -14% -22%;
  background: radial-gradient(ellipse at center, rgba(196,123,130,0.28) 0%, transparent 68%);
  filter: blur(20px); z-index: -1;
}
.hero-media img {
  width: clamp(250px, 30vw, 330px);
  border-radius: 44px 44px 0 0; margin: 0 auto;
  box-shadow: 0 -18px 70px rgba(124,59,69,0.22);
  display: block;
}

/* real review pull-quotes flanking the hero phone */
.hero-quote {
  position: absolute; z-index: 2; max-width: 200px; margin: 0;
  text-align: left;
  animation: fadeUp 0.9s 1.1s ease both;
}
.hero-quote .stars { display: block; color: var(--bronze); font-size: 0.8rem; letter-spacing: 0.14em; margin-bottom: 0.5rem; }
.hero-quote blockquote {
  font-family: var(--display); font-style: italic;
  font-size: 1.1rem; font-weight: 400; line-height: 1.45; color: var(--warm-mid);
  margin: 0; border: 0; padding: 0;
}
.hero-quote.left { left: -78%; top: 16%; }
.hero-quote.right { right: -78%; top: 44%; text-align: right; animation-delay: 1.4s; }
@media (max-width: 980px) { .hero-quote { display: none; } }

/* ── ENTRY BAND: three-step process strip ── */
.quiet-band { background: var(--blush); }
.steps-row {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 4vw, 3.5rem);
  max-width: var(--maxw); margin: 3.4rem auto 0;
}
.steps-row li { border-top: 1px solid rgba(124,59,69,0.28); padding-top: 1.5rem; }
.steps-row .step-n {
  display: block;
  font-family: var(--display); font-size: 2.3rem; font-weight: 400; font-style: italic;
  color: var(--bronze); line-height: 1; margin-bottom: 0.8rem;
}
.steps-row h3 { font-family: var(--display); font-optical-sizing: auto; font-size: 1.45rem; font-weight: 400; color: var(--warm-dark); margin-bottom: 0.45rem; }
.steps-row p { font-size: 0.98rem; font-weight: 400; color: var(--warm-mid); line-height: 1.7; }
.quiet-cta { margin-top: 2.8rem; }
@media (max-width: 760px) {
  .steps-row { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* Audience strip */
.audiences { background: var(--paper); }
.audiences-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem; max-width: var(--maxw); margin: 2.8rem auto 0;
}
.audience-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px; padding: 1.9rem 1.7rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.audience-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(124,59,69,0.1); border-color: rgba(196,123,130,0.4); }
.audience-card h3 { font-family: var(--display); font-optical-sizing: auto; font-size: 1.4rem; font-weight: 400; color: var(--warm-dark); margin-bottom: 0.55rem; line-height: 1.2; }
.audience-card p { font-size: 0.98rem; font-weight: 400; color: var(--warm-mid); line-height: 1.65; }
.audience-card a { color: var(--wine); font-size: 0.85rem; text-decoration: none; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; display: inline-block; margin-top: 0.9rem; }
.audience-card a:hover { color: var(--rose-dark); }

/* Feature showcase w/ screenshots */
.showcase { background: var(--blush); }
.showcase-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center;
  max-width: var(--maxw); margin: 0 auto 5.5rem;
}
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row.reverse .showcase-text { order: 2; }
.showcase-shot {
  position: relative; border-radius: 32px; overflow: hidden;
  background: linear-gradient(165deg, #FAEDE7 0%, #F0D5CE 100%);
  padding: clamp(2rem, 4vw, 3.2rem) clamp(2rem, 4vw, 3.2rem) 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
}
.showcase-shot::before {
  content: ''; position: absolute; inset: 20% -10% -20%;
  background: radial-gradient(ellipse at 50% 100%, rgba(196,123,130,0.3) 0%, transparent 65%);
  filter: blur(18px);
}
.showcase-shot img { position: relative; border-radius: 38px 38px 0 0; margin: 0 auto; max-width: 270px; box-shadow: 0 24px 60px rgba(124,59,69,0.28); }
.showcase-text .section-label { margin-bottom: 0.9rem; }
.showcase-text h3 { font-family: var(--display); font-optical-sizing: auto; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 400; color: var(--warm-dark); margin-bottom: 0.8rem; line-height: 1.18; letter-spacing: -0.01em; }
.showcase-text h3 em { font-style: italic; color: var(--wine); }
.showcase-text p { font-size: 1.05rem; font-weight: 400; color: var(--warm-mid); line-height: 1.8; }
@media (max-width: 760px) {
  .showcase-row, .showcase-row.reverse { grid-template-columns: 1fr; gap: 2.4rem; text-align: center; }
  .showcase-row.reverse .showcase-text { order: 0; }
}

.features { background: var(--paper); }
.features-header { text-align: center; margin-bottom: 4rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; max-width: 980px; margin: 0 auto; }
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px; padding: 2.1rem 1.9rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(124,59,69,0.12); border-color: rgba(196,123,130,0.4); }
.feature-icon {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(196,123,130,0.45);
  display: grid; place-items: center; margin-bottom: 1.3rem;
  color: var(--wine);
}
.feature-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-family: var(--display); font-optical-sizing: auto; font-size: 1.35rem; font-weight: 400; margin-bottom: 0.55rem; color: var(--warm-dark); }
.feature-card p { font-size: 0.98rem; font-weight: 400; line-height: 1.7; color: var(--warm-mid); }

/* legacy testimonial (kept for safety) */
.testimonials { background: var(--blush); }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.testimonial-card { border: 1px solid var(--line); background: #fff; border-radius: 20px; padding: 2.5rem 2rem 2rem; position: relative; }
.testimonial-card p { font-size: 0.9rem; line-height: 1.75; font-weight: 300; color: var(--warm-mid); margin-bottom: 1.2rem; }
.stars { color: var(--rose); font-size: 0.75rem; margin-bottom: 0.3rem; }

/* App Store style review cards */
.app-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.1rem; max-width: 1000px; margin: 0 auto; }
.app-review { background: #fff; border-radius: 18px; padding: 1.4rem 1.5rem 1.5rem; box-shadow: 0 2px 14px rgba(44,26,29,0.07); text-align: left; display: flex; flex-direction: column; }
.app-review-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.app-review-title { font-family: var(--body); font-size: 1.05rem; font-weight: 600; color: #1c1c1e; line-height: 1.3; margin: 0; }
.app-review-date { font-size: 0.85rem; color: #6e6e73; font-weight: 400; white-space: nowrap; flex-shrink: 0; }
.app-review-meta { display: flex; align-items: center; gap: 0.55rem; margin: 0.45rem 0 0.75rem; }
.app-review-stars { color: #1c1c1e; font-size: 0.85rem; letter-spacing: 0.04em; }
.app-review-author { font-size: 0.88rem; color: #6e6e73; font-weight: 400; }
.app-review-body { font-size: 0.98rem; line-height: 1.65; font-weight: 400; color: #3a3a3c; margin: 0; }

.cta-bottom { background: linear-gradient(155deg, var(--ink) 0%, #4A2830 60%, var(--wine) 130%); color: var(--paper); text-align: center; padding: 7rem 6vw; position: relative; overflow: hidden; }
.cta-bottom::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% -10%, rgba(196,123,130,0.35) 0%, transparent 60%); pointer-events: none; }
.cta-bottom > * { position: relative; z-index: 1; }
.cta-bottom .section-label { color: var(--petal); }
.cta-bottom .section-title { color: var(--paper); margin-bottom: 1rem; }
.cta-bottom .section-title em { color: var(--petal); }
.cta-bottom p { font-size: 1.05rem; font-weight: 400; opacity: 0.92; margin-bottom: 2.5rem; max-width: 460px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ===================================================================
   ARTICLE / GUIDE PAGES
   =================================================================== */
.article-wrap { max-width: var(--prose); margin: 0 auto; padding: 8rem 6vw 4rem; }
.breadcrumbs { font-size: 0.85rem; color: var(--warm-mid); margin-bottom: 1.5rem; letter-spacing: 0.02em; }
.breadcrumbs a { color: var(--wine); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { opacity: 0.5; margin: 0 0.4rem; }

.article-eyebrow { display: block; margin-bottom: 1rem; }
.article-title {
  font-family: var(--display); font-optical-sizing: auto;
  font-size: clamp(2rem, 4.6vw, 2.9rem); font-weight: 500; line-height: 1.15; color: var(--warm-dark);
  margin-bottom: 1.4rem; letter-spacing: -0.008em;
}
.article-title em { font-style: italic; color: var(--wine); }

.byline { display: flex; align-items: center; gap: 0.9rem; padding: 1.2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 2.4rem; }
.byline img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.byline .byline-photo-fallback { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--petal), var(--rose)); display: grid; place-items: center; color: #fff; font-weight: 500; flex-shrink: 0; font-family: var(--display); }
.byline-info { font-size: 0.9rem; color: var(--warm-mid); line-height: 1.4; }
.byline-info strong { color: var(--warm-dark); font-weight: 500; display: block; }
.byline-info a { color: var(--wine); text-decoration: none; }
.byline-info .byline-meta { opacity: 0.8; }

/* Front-loaded answer box (GEO-critical) */
.answer-box {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--rose);
  border-radius: 14px; padding: 1.5rem 1.7rem; margin: 0 0 2.4rem;
  box-shadow: 0 8px 30px rgba(124,59,69,0.06);
}
.answer-box .answer-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze); margin-bottom: 0.6rem; }
.answer-box p { font-size: 1.05rem; line-height: 1.7; color: var(--text); font-weight: 400; }
.answer-box p + p { margin-top: 0.8rem; }

/* Prose */
.prose { font-size: 1.06rem; line-height: 1.85; color: var(--text); }
.prose > * + * { margin-top: 1.3rem; }
.prose h2 {
  font-family: var(--display); font-optical-sizing: auto; font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  font-weight: 400; line-height: 1.22; color: var(--warm-dark); margin-top: 3rem; scroll-margin-top: 6rem; letter-spacing: -0.01em;
}
.prose h3 { font-family: var(--display); font-optical-sizing: auto; font-size: 1.45rem; font-weight: 500; color: var(--warm-dark); margin-top: 2rem; }
.prose p { color: var(--text); }
.prose strong { font-weight: 600; color: var(--warm-dark); }
.prose em { font-style: italic; }
.prose a { color: var(--wine); text-decoration: underline; text-underline-offset: 2px; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li { margin-top: 0.6rem; }
.prose blockquote {
  border-left: 2px solid var(--gold); padding: 0.5rem 0 0.5rem 1.6rem; margin-left: 0.2rem;
  font-family: var(--display); font-size: 1.4rem; font-weight: 400; font-style: italic; color: var(--wine); line-height: 1.4;
}

/* Key takeaway / checklist callout */
.callout { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.7rem 1.9rem; margin: 2rem 0; box-shadow: 0 8px 30px rgba(124,59,69,0.05); }
.callout .callout-title { font-family: var(--display); font-optical-sizing: auto; font-size: 1.3rem; font-weight: 500; color: var(--wine); margin-bottom: 0.8rem; }
.callout ul { list-style: none; padding-left: 0; }
.callout li { position: relative; padding-left: 1.8rem; margin-top: 0.7rem; font-size: 1rem; color: var(--text); }
.callout li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: var(--rose); font-weight: 700; }

/* Safety callout */
.safety-note { border-top: 1px solid var(--line); padding: 1.2rem 0 0; margin: 2.6rem 0; font-size: 0.95rem; color: var(--warm-mid); line-height: 1.7; }
.safety-note strong { color: var(--wine); font-weight: 500; }

/* Inline app CTA */
.inline-cta {
  background: linear-gradient(150deg, var(--ink) 0%, #4A2830 100%); color: var(--paper);
  border-radius: 22px; padding: 2.4rem 2rem; margin: 3rem 0; text-align: center; position: relative; overflow: hidden;
}
.inline-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% -20%, rgba(196,123,130,0.32) 0%, transparent 62%); pointer-events: none; }
.inline-cta > * { position: relative; z-index: 1; }
.inline-cta h3 { font-family: var(--display); font-optical-sizing: auto; font-size: 1.7rem; font-weight: 400; color: var(--paper); margin-bottom: 0.6rem; }
.inline-cta p { font-size: 1rem; font-weight: 400; opacity: 0.92; margin-bottom: 1.5rem; max-width: 420px; margin-left: auto; margin-right: auto; }
.inline-cta .btn-primary { background: var(--rose); }
.inline-cta .btn-primary:hover { background: var(--petal); color: var(--warm-dark); }

/* FAQ */
.faq-section { margin-top: 3rem; }
.faq-section > h2 { font-family: var(--display); font-optical-sizing: auto; font-size: clamp(1.7rem, 3.4vw, 2.2rem); font-weight: 400; color: var(--warm-dark); margin-bottom: 1.4rem; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.3rem 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--display); font-optical-sizing: auto;
  font-size: 1.7rem; font-weight: 300; line-height: 1; color: var(--bronze);
  flex-shrink: 0; transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover h3 { color: var(--wine); }
.faq-item summary:focus-visible { outline: 2px solid var(--rose); outline-offset: 4px; border-radius: 6px; }
.faq-item h3 { font-size: 1.08rem; font-weight: 500; color: var(--warm-dark); margin: 0; transition: color 0.2s; }
.faq-item p { font-size: 0.98rem; color: var(--text); line-height: 1.75; padding: 0 2.6rem 1.3rem 0; }

/* Related links */
.related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.related h2 { font-family: var(--display); font-optical-sizing: auto; font-size: 1.6rem; font-weight: 400; color: var(--warm-dark); margin-bottom: 1rem; }
.related-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0.8rem; }
.related-list a { display: block; padding: 1rem 1.2rem; border: 1px solid var(--line); border-radius: 12px; text-decoration: none; color: var(--warm-dark); font-size: 0.95rem; transition: background 0.2s, transform 0.2s, border-color 0.2s; }
.related-list a:hover { background: #fff; transform: translateY(-2px); border-color: rgba(196,123,130,0.4); }

/* Comparison table */
.table-scroll { overflow-x: auto; margin: 2rem 0; -webkit-overflow-scrolling: touch; }
table.compare { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 0.96rem; }
table.compare th, table.compare td { text-align: left; padding: 0.9rem 1rem; border-bottom: 1px solid var(--line); }
table.compare thead th { font-family: var(--display); font-optical-sizing: auto; font-size: 1.1rem; font-weight: 500; color: var(--wine); background: rgba(243,222,216,0.5); }
table.compare tbody th { font-weight: 500; color: var(--warm-dark); }
table.compare tr:first-child td { color: var(--text); }

/* ===================================================================
   GENERIC CONTENT (about, methodology, experts, faq)
   =================================================================== */
.page-hero { max-width: var(--prose); margin: 0 auto; padding: 9rem 6vw 1rem; text-align: center; }
.page-hero h1 { font-family: var(--display); font-optical-sizing: auto; font-size: clamp(2.3rem, 5vw, 3.3rem); font-weight: 400; color: var(--warm-dark); line-height: 1.12; letter-spacing: -0.015em; }
.page-hero h1 em { font-style: italic; color: var(--wine); }
.page-hero p.lede { font-size: 1.15rem; font-weight: 400; color: var(--warm-mid); margin-top: 1.2rem; line-height: 1.7; }

.expert-card { display: grid; grid-template-columns: 220px 1fr; gap: 2.5rem; align-items: start; max-width: var(--maxw); margin: 3rem auto; padding: 0 6vw; }
.expert-card img { border-radius: 22px; box-shadow: 0 22px 50px rgba(124,59,69,0.2); }
.expert-card .expert-bio h2 { font-family: var(--display); font-optical-sizing: auto; font-size: 2rem; font-weight: 500; color: var(--warm-dark); margin-bottom: 0.3rem; }
.expert-card .expert-role { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.03em; margin-bottom: 1rem; }
.expert-social { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.2rem; }
.expert-social a { font-size: 0.88rem; color: var(--wine); text-decoration: none; border: 1px solid rgba(196,123,130,0.35); border-radius: 100px; padding: 0.4rem 1rem; transition: background 0.2s, border-color 0.2s; }
.expert-social a:hover { background: #fff; border-color: var(--rose); }
@media (max-width: 640px) { .expert-card { grid-template-columns: 1fr; text-align: center; } .expert-card img { max-width: 200px; margin: 0 auto; } .expert-social { justify-content: center; } }

.placeholder-note { background: #FFF8E1; border: 1px dashed #C9A227; color: #7A5C00; border-radius: 8px; padding: 0.5rem 0.8rem; font-size: 0.8rem; display: inline-block; }

/* ── FOOTER ── */
footer {
  background: var(--ink); color: rgba(251,244,236,0.8);
  padding: 4rem 6vw 2.5rem; font-size: 0.95rem; font-weight: 400;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .nav-logo { color: var(--petal); font-size: 1.55rem; }
.footer-brand p { margin-top: 0.8rem; max-width: 280px; line-height: 1.6; color: rgba(251,244,236,0.72); }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: #CBA76D; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(251,244,236,0.85); text-decoration: none; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--petal); }
.footer-bottom { max-width: var(--maxw); margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(251,244,236,0.14); font-size: 0.88rem; color: rgba(251,244,236,0.65); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; }
.footer-bottom a { color: rgba(251,244,236,0.8); text-decoration: none; }
.footer-bottom a:hover { color: var(--petal); }
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ── ANIMATIONS / REVEAL ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 600px) {
  section { padding: 4.5rem 6vw; }
  .hero { padding: 8rem 6vw 4rem; }
  .btn-store { padding: 0.8rem 1.4rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
  [class*="hero-"] { animation: none !important; }
  html { scroll-behavior: auto; }
}
