/* =========================================================
   Second Spring — shared stylesheet
   Warm, calm, grown-up. Cream / plum / terracotta.
   Built for women 40–55: large readable type, high contrast,
   generous whitespace, soft cards, gentle dividers.
   ========================================================= */

/* ---- Brand tokens ---- */
:root {
  --cream: #FBF6EE;       /* page background */
  --charcoal: #3A332E;    /* body text */
  --plum: #6E3F57;        /* primary: headings, primary buttons */
  --plum-dark: #532E41;   /* darker plum for hover / contrast */
  --terracotta: #C97B5E;  /* accent / CTAs */
  --terracotta-dark: #B05F42;
  --sage: #8E9C82;        /* secondary accents, tags */
  --sage-dark: #6E7C63;
  --gold: #C9A24B;        /* fine details, dividers */
  --soft-white: #FFFDF9;  /* cards / surfaces */

  --maxw: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 30px rgba(58, 51, 46, 0.08);
  --shadow-card: 0 4px 18px rgba(58, 51, 46, 0.06);

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---- Reset-ish ---- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 19px;            /* base ≥ 18px per a11y rule */
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--plum); }

/* ---- Headings ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--plum);
  line-height: 1.18;
  font-weight: 600;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.3rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
p { margin: 0 0 1em; }

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.4rem;
}
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--tight { padding: clamp(2.2rem, 5vw, 3.5rem) 0; }
.center { text-align: center; }
.narrow { max-width: 720px; margin-inline: auto; }
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--terracotta-dark);
  margin: 0 0 0.8rem;
}
.lead { font-size: 1.18rem; color: #54493f; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--plum); color: var(--soft-white); }
.btn--primary:hover { background: var(--plum-dark); }
.btn--accent { background: var(--terracotta); color: #fff; }
.btn--accent:hover { background: var(--terracotta-dark); }
.btn--ghost {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}
.btn--ghost:hover { background: rgba(110, 63, 87, 0.07); }
.btn--lg { font-size: 1.15rem; padding: 1.05rem 2rem; }
.btn--block { display: block; width: 100%; text-align: center; }

/* ---- Focus states (critical a11y) ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--plum);
  color: #fff;
  padding: 0.75rem 1.2rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* =========================================================
   Header / nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid rgba(201, 162, 75, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}
.wordmark {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--plum);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
}
.wordmark .leaf {
  width: 22px; height: 22px;
  flex: none;
}
.wordmark .logo-full {
  height: 42px;
  width: auto;
  display: block;
  flex: none;
}
.site-footer .wordmark .logo-full { height: 48px; }
@media (max-width: 480px) {
  .wordmark .logo-full { height: 34px; }
}
.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav a.navlink {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}
.main-nav a.navlink:hover { color: var(--plum); text-decoration: underline; text-underline-offset: 4px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--plum);
  color: var(--plum);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(201,162,75,0.35);
    padding: 0.5rem 1.4rem 1.2rem;
  }
  .main-nav.open { display: flex; }
  .main-nav a.navlink { padding: 0.7rem 0; border-bottom: 1px solid rgba(201,162,75,0.2); }
  .main-nav .btn { margin-top: 0.8rem; text-align: center; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(201,123,94,0.10), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(142,156,130,0.12), transparent 40%),
    linear-gradient(180deg, #FBF6EE 0%, #F6EFE3 100%);
  overflow: hidden;
}
.hero .container { padding-block: clamp(3.2rem, 8vw, 6rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { color: var(--plum); margin-bottom: 0.35em; }
.hero .lead { font-size: 1.28rem; max-width: 36ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.hero-reassure {
  margin-top: 1.5rem;
  font-size: 0.98rem;
  color: var(--sage-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
}
.hero-reassure span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-art {
  background: var(--soft-white);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  border: 1px solid rgba(201,162,75,0.25);
}
.hero-art .quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--plum);
  line-height: 1.3;
  margin: 0 0 1rem;
}
.hero-art .quote-by { font-size: 0.95rem; color: var(--sage-dark); margin: 0; }

/* Fanned stack of real product pages */
.page-fan {
  position: relative;
  aspect-ratio: 4 / 3.2;
  margin-bottom: 1.1rem;
}
.page-fan img {
  position: absolute;
  top: 0;
  width: 58%;
  aspect-ratio: 8.5 / 11;
  object-fit: cover;
  object-position: top;
  background: #fff;
  border: 1px solid rgba(201, 162, 75, 0.45);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(58, 51, 46, 0.16);
}
.page-fan img:nth-child(1) { left: 0; top: 4%; transform: rotate(-5deg); }
.page-fan img:nth-child(2) { left: 21%; top: 0; transform: rotate(1deg); }
.page-fan img:nth-child(3) { left: 42%; top: 3%; transform: rotate(5deg); }
.fan-caption {
  font-size: 0.95rem;
  color: var(--sage-dark);
  margin: 0;
  text-align: center;
}
.hero-art hr { border: none; border-top: 1px solid rgba(201,162,75,0.4); margin: 1.4rem 0; }
.hero-art ul { margin: 0; padding-left: 1.2rem; }
.hero-art li { margin-bottom: 0.5rem; }

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: 2; }
}

/* =========================================================
   "Does this sound like you?" empathy
   ========================================================= */
.empathy { background: var(--cream); }
.empathy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.empathy-card {
  background: var(--soft-white);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--sage);
}
.empathy-card h3 { font-size: 1.2rem; color: var(--plum); margin-bottom: 0.3em; }
.empathy-card p { margin: 0; color: #51473d; }
.empathy-note {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--terracotta-dark);
}
.empathy-cta { margin-top: 1.6rem; }
.empathy-cta .empathy-cta-sub {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: var(--sage-dark);
}

/* =========================================================
   Doctor advocacy wedge
   ========================================================= */
.wedge {
  background: linear-gradient(180deg, #6E3F57 0%, #5b3348 100%);
  color: #F7EFE8;
}
.wedge h2, .wedge h3 { color: #FCEFD9; }
.wedge .eyebrow { color: var(--gold); }
.wedge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.wedge p { color: #EBDDD3; }
.wedge-list { list-style: none; margin: 1.6rem 0 0; padding: 0; }
.wedge-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(201,162,75,0.3);
}
.wedge-list li:last-child { border-bottom: none; }
.wedge-list .tick {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1rem;
  margin-top: 2px;
}
.wedge-list strong { color: #FFF; display: block; }
.wedge-card {
  background: var(--soft-white);
  color: var(--charcoal);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
}
.wedge-card h3 { color: var(--plum); margin-top: 0; }
.wedge-card .doc-line {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  padding: 0.7rem 0.9rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  margin-bottom: 0.7rem;
  border-left: 3px solid var(--terracotta);
}
.wedge-card .doc-line span { color: var(--sage-dark); font-weight: 600; display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }
.wedge .btn--accent { margin-top: 1.6rem; }

@media (max-width: 820px) {
  .wedge-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   What's inside — cards
   ========================================================= */
.inside-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.feature-card {
  background: var(--soft-white);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201,162,75,0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.feature-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: var(--sage);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.feature-card.star .feature-num { background: var(--terracotta); }
.feature-card h3 { margin-bottom: 0.35em; }
.feature-card p { margin: 0; color: #51473d; font-size: 1.02rem; }

/* =========================================================
   Pricing
   ========================================================= */
.pricing { background: #F6EFE3; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 2.6rem;
  align-items: stretch;
}
.price-card {
  background: var(--soft-white);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201,162,75,0.2);
  display: flex;
  flex-direction: column;
}
.price-card .tier {
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--sage-dark);
}
.price-card h3 { margin: 0.5rem 0 0.2rem; font-size: 1.4rem; }
.price-card .price {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--plum);
  font-weight: 600;
  line-height: 1;
  margin: 0.4rem 0 0.2rem;
}
.price-card .price small { font-size: 1rem; color: var(--sage-dark); font-family: var(--font-sans); }
.price-card .price-desc { color: #51473d; font-size: 1rem; flex-grow: 0; }
.price-card ul {
  list-style: none;
  margin: 1rem 0 1.6rem;
  padding: 0;
  flex-grow: 1;
}
.price-card li {
  padding: 0.4rem 0 0.4rem 1.7rem;
  position: relative;
  font-size: 1rem;
  color: #4b4239;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage-dark);
  font-weight: 700;
}
.price-card .btn { margin-top: auto; }

/* Featured "best value" toolkit */
.price-card.featured {
  background: var(--soft-white);
  border: 2px solid var(--terracotta);
  box-shadow: 0 18px 45px rgba(110, 63, 87, 0.18);
  position: relative;
  transform: translateY(-6px);
}
.price-card.featured .price { color: var(--terracotta-dark); }
.price-card.featured li::before { color: var(--terracotta); }
.best-badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-upsell {
  margin-top: 1.8rem;
  text-align: center;
  font-size: 1rem;
  color: var(--sage-dark);
}

/* =========================================================
   Testimonials / social proof
   ========================================================= */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}
.proof-card {
  background: var(--soft-white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--gold);
}
.proof-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--plum);
  line-height: 1.4;
}
.proof-card .by { font-size: 0.95rem; color: var(--charcoal); font-weight: 600; margin: 0; }
.proof-card .sample-tag {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(142,156,130,0.16);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
}
.proof-disclaimer {
  text-align: center;
  margin-top: 1.8rem;
  font-size: 0.95rem;
  color: var(--sage-dark);
}

/* =========================================================
   Founder note
   ========================================================= */
.founder-card {
  max-width: 760px;
  margin-inline: auto;
  background: var(--soft-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 162, 75, 0.25);
  border-top: 4px solid var(--gold);
  padding: clamp(1.8rem, 4vw, 3rem);
}
.founder-card p { color: #4b4239; font-size: 1.08rem; }
.founder-card em { color: var(--plum); }
.founder-sign {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--plum);
  margin-top: 1.4rem;
}
.founder-card .founder-honesty {
  margin: 1.4rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(201, 162, 75, 0.35);
  font-size: 0.95rem;
  color: var(--sage-dark);
}

/* Guarantee line under buy buttons */
.guarantee {
  margin: 0.9rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--sage-dark);
}

/* =========================================================
   Lead capture
   ========================================================= */
.capture { background: linear-gradient(180deg, #8E9C82 0%, #7c8a70 100%); color: #fff; }
.capture h2 { color: #FCEFD9; }
.capture p { color: #F3EEE4; }
.capture .narrow { text-align: center; }
.capture-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.8rem;
}
.capture-form input[type="email"] {
  flex: 1 1 320px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--soft-white);
  color: var(--charcoal);
}
.capture-form input::placeholder { color: #8a8076; }
.capture .fineprint { margin-top: 1.1rem; font-size: 0.9rem; color: #F0EBE0; }

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq-list { margin-top: 2.2rem; max-width: 820px; margin-inline: auto; }
.faq-item {
  background: var(--soft-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  margin-bottom: 1rem;
  border: 1px solid rgba(201,162,75,0.18);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--plum);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--terracotta);
  font-family: var(--font-sans);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 1.5rem 1.4rem; }
.faq-item .faq-body p { margin: 0; color: #4b4239; }

/* =========================================================
   Disclaimer + footer
   ========================================================= */
.disclaimer {
  background: rgba(201,162,75,0.12);
  border-top: 1px solid rgba(201,162,75,0.4);
  border-bottom: 1px solid rgba(201,162,75,0.4);
}
.disclaimer .container { padding-block: 1.6rem; }
.disclaimer p {
  margin: 0;
  font-size: 0.98rem;
  color: #5a5046;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}
.disclaimer strong { color: var(--plum); }

.site-footer {
  background: #3A332E;
  color: #E8E1D7;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.site-footer .wordmark { color: #FCEFD9; }
.site-footer h4 {
  color: #FCEFD9;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  margin: 0 0 1rem;
}
.site-footer a { color: #E8E1D7; text-decoration: none; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.6rem; }
.footer-disclaimer {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(232,225,215,0.2);
  font-size: 0.92rem;
  color: #C9BFB2;
  line-height: 1.6;
}
.footer-disclaimer strong { color: #FCEFD9; }
.footer-legal-links {
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: #B0a698;
}
.footer-bottom {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: #B0a698;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}

/* =========================================================
   Product detail pages
   ========================================================= */
.product-hero { background: linear-gradient(180deg, #FBF6EE 0%, #F4ECDF 100%); }
.product-hero .container { padding-block: clamp(2.6rem, 6vw, 4.5rem); }
.breadcrumb { font-size: 0.95rem; margin-bottom: 1.2rem; color: var(--sage-dark); }
.breadcrumb a { color: var(--sage-dark); }
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.product-price-tag {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--terracotta-dark);
  font-weight: 600;
  line-height: 1;
  margin: 0.6rem 0;
}
.product-price-tag small { font-size: 1rem; color: var(--sage-dark); font-family: var(--font-sans); }
.format-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(142,156,130,0.16);
  color: var(--sage-dark);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 1rem;
}
.product-visual {
  background: var(--soft-white);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201,162,75,0.25);
  padding: 2.2rem;
}
.product-visual .mock-page {
  background: var(--cream);
  border-radius: 10px;
  border: 1px solid rgba(201,162,75,0.3);
  padding: 1.4rem;
  margin-bottom: 1rem;
}
.product-visual .mock-page:last-child { margin-bottom: 0; }
.product-visual .mock-bar {
  height: 12px;
  background: rgba(110,63,87,0.16);
  border-radius: 6px;
  margin-bottom: 0.7rem;
}
.product-visual .mock-bar.short { width: 55%; }
.product-visual .mock-bar.accent { background: rgba(201,123,94,0.4); }
.product-visual .mock-title {
  font-family: var(--font-serif);
  color: var(--plum);
  font-size: 1.15rem;
  margin: 0 0 0.8rem;
}

.checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.checklist li {
  position: relative;
  padding-left: 2.2rem;
  font-size: 1.05rem;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 26px; height: 26px;
  background: var(--sage);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
}
.checklist li strong { display: block; color: var(--plum); }

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.who-card {
  background: var(--soft-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--terracotta);
}
.who-card p { margin: 0; }

.buy-band {
  background: linear-gradient(180deg, #6E3F57 0%, #5b3348 100%);
  color: #fff;
  text-align: center;
}
.buy-band h2 { color: #FCEFD9; }
.buy-band p { color: #EBDDD3; }

@media (max-width: 820px) {
  .product-hero-grid { grid-template-columns: 1fr; }
  .product-visual { order: 2; }
}

/* ---- Generic alternating section bg ---- */
.bg-soft { background: #F6EFE3; }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* ---- Page gallery (real PDF previews) ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.gallery-grid a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E7DECF;
  box-shadow: 0 6px 18px rgba(60, 45, 35, 0.08);
  background: #fff;
  transition: transform 0.15s ease;
}
.gallery-grid a:hover,
.gallery-grid a:focus-visible { transform: translateY(-4px); }
.gallery-grid img { width: 100%; display: block; }
.gallery-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #8a8076;
  text-align: center;
}
.buy-guarantee {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: #6f6558;
}
.buy-guarantee .tick { color: #8E9C82; font-weight: 700; margin-right: 0.35rem; }
