/* sections-v4.css — Pain-treatment funnel layout
   Lighter sand/cream sections + blue (#A7C7D3) secondary accent. */

/* =====================================================================
   LIGHT SECTIONS — brighten the page (moodboard kraft/sand direction)
   ===================================================================== */
.section--sand {
  background:
    linear-gradient(180deg, rgba(245,239,223,0.0) 0%, rgba(219,199,161,0.04) 100%),
    var(--sand-200);
  color: #2A241B;
  position: relative;
}
.section--sand::before {
  /* subtle paper grain */
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='p'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 0.36  0 0 0 0 0.30  0 0 0 0 0.20  0 0 0 0.12 0'/></filter><rect width='100%' height='100%' filter='url(%23p)' opacity='0.5'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.35;
  pointer-events: none;
}
.section--sand > .container { position: relative; z-index: 1; }
.section--sand .eyebrow { color: #8A6A3C; }
.section--sand h2.h-section,
.section--sand .h-display { color: #241E16; }
.section--sand h2.h-section em { color: #9A6A2E; }
.section--sand .lede { color: #4A3F30; }
.section--sand .rule { background: rgba(42,36,27,0.14); }
.section--sand .muted { color: #6B5C45; }

.section--cream {
  background: var(--sand-50);
  color: #2A241B;
  position: relative;
}
.section--cream .eyebrow { color: #8A6A3C; }
.section--cream h2.h-section { color: #241E16; }
.section--cream h2.h-section em { color: #9A6A2E; }
.section--cream .lede { color: #4A3F30; }

/* =====================================================================
   BLUE SECONDARY ACCENT (#A7C7D3 — sky-200)
   ===================================================================== */
.eyebrow--blue { color: var(--sky-300); }
.section--sand .eyebrow--blue { color: var(--sky-400); }
.eyebrow--blue::before { background: currentColor; }

.rule-blue {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--sky-300);
  width: fit-content;
}
.rule-blue::before, .rule-blue::after {
  content: ""; height: 1px; width: 56px; background: currentColor;
}
.rule-blue .diamond {
  width: 8px; height: 8px; background: currentColor; transform: rotate(45deg);
}

.accent-blue { color: var(--sky-300); }
.section--sand .accent-blue { color: var(--sky-400); }

/* =====================================================================
   SOCIAL-PROOF BAND
   ===================================================================== */
.proof-band { padding: 56px 0; }
.proof-known {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  text-align: center; margin-bottom: 44px;
}
.proof-known__label {
  font-family: var(--font-label); font-size: 11px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: #6B5C45;
}
.proof-known__logos {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center;
}
.proof-logo {
  font-family: var(--font-heading); font-weight: 700; font-size: 26px;
  letter-spacing: 0.14em; text-transform: uppercase; color: #2A241B;
  opacity: 0.78;
  display: inline-flex; align-items: center; gap: 12px;
}
.proof-logo small {
  font-family: var(--font-label); font-size: 9px; letter-spacing: 0.28em;
  color: #8A6A3C; font-weight: 700;
}
.proof-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid rgba(42,36,27,0.16);
}
.proof-stat {
  text-align: center; padding: 36px 24px;
  border-left: 1px solid rgba(42,36,27,0.16);
}
.proof-stat:first-child { border-left: none; }
.proof-stat__num {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(40px, 5vw, 64px); line-height: 1; color: #241E16;
  letter-spacing: 0.01em;
}
.proof-stat__num em { color: #9A6A2E; font-style: normal; }
.proof-stat__label {
  font-family: var(--font-body); font-size: 14px; color: #4A3F30;
  margin-top: 12px; line-height: 1.4;
}
@media (max-width: 720px) {
  .proof-stats { grid-template-columns: 1fr; }
  .proof-stat { border-left: none; border-top: 1px solid rgba(42,36,27,0.16); padding: 28px 16px; }
  .proof-stat:first-child { border-top: none; }
}

/* =====================================================================
   PROBLEM — pain cards
   ===================================================================== */
.problem-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 1080px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .problem-grid { grid-template-columns: 1fr; } }

.pain-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 30px 26px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 230px;
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.pain-card:hover { border-color: var(--bronze-400); transform: translateY(-3px); }
.pain-card__icon {
  width: 48px; height: 48px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-bronze);
  color: var(--bronze-300);
  font-size: 22px;
}
.pain-card__title {
  font-family: var(--font-heading); font-weight: 700; font-size: 21px;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--fg-1);
}
.pain-card__body { font-size: 14.5px; line-height: 1.6; color: var(--fg-2); }

/* =====================================================================
   MYTHS — myth / truth rows
   ===================================================================== */
.myth-list { display: flex; flex-direction: column; gap: 0; }
.myth-row {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px;
  padding: 44px 0; align-items: start;
  border-top: 1px solid rgba(42,36,27,0.16);
}
.myth-row:last-child { border-bottom: 1px solid rgba(42,36,27,0.16); }
.myth-row__myth { }
.myth-row__num {
  font-family: var(--font-heading); font-weight: 700; font-size: 13px;
  letter-spacing: 0.32em; text-transform: uppercase; color: #B0492F;
  margin-bottom: 14px; display: flex; align-items: center; gap: 12px;
}
.myth-row__num::before {
  content: ""; width: 26px; height: 1px; background: currentColor;
}
.myth-row__claim {
  font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px); line-height: 1.2;
  color: #241E16; letter-spacing: 0.01em;
  text-decoration: line-through; text-decoration-color: rgba(176,73,47,0.5);
  text-decoration-thickness: 2px;
}
.myth-row__truth-label {
  font-family: var(--font-label); font-size: 10px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--sky-400);
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.myth-row__truth-label::before {
  content: ""; width: 8px; height: 8px; background: var(--sky-300); transform: rotate(45deg);
}
.myth-row__truth { font-size: 16px; line-height: 1.68; color: #3D3326; }
@media (max-width: 820px) {
  .myth-row { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
}

/* =====================================================================
   METHOD — 3 steps
   ===================================================================== */
.method-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .method-grid { grid-template-columns: 1fr; } }

.method-step {
  background: linear-gradient(180deg, var(--black-card) 0%, var(--black-soft) 100%);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.method-step:hover { border-color: var(--bronze-500); transform: translateY(-3px); }
.method-step__num {
  font-family: var(--font-display); font-size: 56px; line-height: 0.9;
  color: var(--bronze-400); letter-spacing: 0.04em;
}
.method-step__symbol {
  position: absolute; top: 34px; right: 32px;
  font-size: 26px; color: var(--sky-300); opacity: 0.6;
}
.method-step__title {
  font-family: var(--font-heading); font-weight: 700; font-size: 23px;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--fg-1);
}
.method-step__body { font-size: 15px; line-height: 1.65; color: var(--fg-2); }

.method-result {
  margin-top: 40px; padding: 36px 40px;
  border: 1px solid var(--border-bronze);
  background: rgba(166,124,82,0.06);
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.method-result__text {
  font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(20px, 2.4vw, 28px); letter-spacing: 0.01em;
  text-transform: uppercase; color: var(--fg-1);
}
.method-result__text em { color: var(--bronze-300); font-style: normal; }

/* =====================================================================
   FOR WHOM — fit / not-fit
   ===================================================================== */
.forwhom-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
@media (max-width: 820px) { .forwhom-grid { grid-template-columns: 1fr; } }
.fit-col {
  border: 1px solid var(--border);
  padding: 38px 34px;
  background: var(--bg-elevated);
}
.fit-col--yes { border-top: 3px solid var(--bronze-400); }
.fit-col--no  { border-top: 3px solid var(--sky-400); background: var(--bg-inset); }
.fit-col__head {
  font-family: var(--font-heading); font-weight: 700; font-size: 20px;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--fg-1);
  margin-bottom: 26px; display: flex; align-items: center; gap: 12px;
}
.fit-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.fit-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15.5px; line-height: 1.55; color: var(--fg-2);
}
.fit-list li .mark {
  flex: none; width: 22px; height: 22px; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.fit-list--yes .mark { color: var(--bronze-300); }
.fit-list--no .mark { color: var(--sky-300); }

/* =====================================================================
   TESTIMONIALS (re-uses .testimonial-grid)
   ===================================================================== */

/* =====================================================================
   SCREENING — pricing
   ===================================================================== */
.screening-grid {
  display: grid; grid-template-columns: 1fr 0.95fr; gap: 72px; align-items: center;
}
@media (max-width: 960px) { .screening-grid { grid-template-columns: 1fr; gap: 44px; } }

.screening-quote {
  margin: 32px 0; padding-left: 24px;
  border-left: 2px solid var(--sky-300);
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  color: var(--fg-1); font-style: italic;
}
.screening-quote cite {
  display: block; margin-top: 12px; font-style: normal;
  font-family: var(--font-label); font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--bronze-400);
}

.price-card {
  background: linear-gradient(180deg, var(--black-card) 0%, var(--black-soft) 100%);
  border: 1px solid var(--border-bronze);
  padding: 44px 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.price-card__eyebrow {
  font-family: var(--font-label); font-size: 10px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--bronze-400);
  margin-bottom: 10px;
}
.price-card__price {
  font-family: var(--font-display); font-size: clamp(56px, 7vw, 84px);
  line-height: 0.95; color: var(--fg-1); letter-spacing: 0.03em;
  display: flex; align-items: baseline; gap: 10px;
}
.price-card__price small {
  font-family: var(--font-heading); font-size: 18px; color: var(--bronze-300);
  letter-spacing: 0.02em; font-weight: 600;
}
.price-list {
  list-style: none; display: flex; flex-direction: column; gap: 14px;
  margin: 30px 0; padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.price-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; line-height: 1.5; color: var(--fg-1);
}
.price-list li svg { flex: none; margin-top: 3px; color: var(--bronze-400); }

/* =====================================================================
   SECTION HEADER (shared head block for funnel sections)
   ===================================================================== */
.sec-head {
  max-width: 760px; margin: 0 auto 64px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.sec-head.left { margin-left: 0; text-align: left; align-items: flex-start; }
.sec-head__intro { font-size: 18px; line-height: 1.65; }
@media (max-width: 600px) { .sec-head { margin-bottom: 44px; } }

/* =====================================================================
   HERO — H1 (Cinzel, legible) + scroll cue
   ===================================================================== */
.hero-h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 82px);
  line-height: 1.04;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--fg-1);
  text-wrap: balance;
}
.hero-h1 em { font-style: normal; color: var(--bronze-400); font-family: var(--font-heading); font-weight: 700; }

.hero-scrollcue {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--fg-3); text-decoration: none;
  font-family: var(--font-label); font-size: 10px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  transition: color 160ms ease;
}
.hero-scrollcue:hover { color: var(--bronze-300); }
.hero-scrollcue svg { animation: scrollcue-bob 2s ease-in-out infinite; }
@keyframes scrollcue-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@media (prefers-reduced-motion: reduce) { .hero-scrollcue svg { animation: none; } }

/* =====================================================================
   ABOUT — quote + award badge (on cream)
   ===================================================================== */
.about-quote {
  border-left: 3px solid var(--bronze-400);
  padding: 8px 0 8px 26px;
  font-family: var(--font-body); font-size: 18px; line-height: 1.6;
  color: #241E16; font-style: italic; max-width: 56ch;
}
.about-quote cite {
  display: block; margin-top: 14px; font-style: normal;
  font-family: var(--font-heading); font-weight: 700; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase; color: #9A6A2E;
}
.award-badge {
  position: absolute; right: -22px; bottom: 28px;
  background: var(--sand-50);
  border: 1px solid rgba(42,36,27,0.18);
  box-shadow: 0 18px 40px -12px rgba(42,36,27,0.4);
  padding: 14px 20px; display: flex; align-items: center; gap: 14px;
}
@media (max-width: 1080px) { .award-badge { right: 0; } }
@media (max-width: 720px) {
  .award-badge { position: static; margin-top: 16px; width: fit-content; }
}

/* =====================================================================
   TESTIMONIAL CARDS — light, on sand
   ===================================================================== */
.t-card {
  background: var(--sand-50);
  border: 1px solid rgba(42,36,27,0.14);
  padding: 34px 30px;
  display: flex; flex-direction: column; min-height: 300px;
  box-shadow: 0 18px 44px -24px rgba(42,36,27,0.35);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.t-card:hover { transform: translateY(-3px); box-shadow: 0 26px 56px -24px rgba(42,36,27,0.45); }
.t-card__mark {
  font-family: var(--font-display); font-size: 72px; line-height: 0.7;
  color: #9A6A2E; margin-bottom: 6px;
}
.t-card__quote {
  font-family: var(--font-body); font-size: 16.5px; line-height: 1.6;
  color: #2A241B; flex: 1; margin: 0;
}
.t-card__stars { display: inline-flex; gap: 2px; margin: 20px 0 16px; }
.t-card__cite {
  display: flex; flex-direction: column; gap: 5px;
  border-top: 1px solid rgba(42,36,27,0.14); padding-top: 16px;
}
.t-card__name {
  font-family: var(--font-heading); font-weight: 700; font-size: 17px;
  letter-spacing: 0.02em; text-transform: uppercase; color: #241E16;
}
.t-card__detail {
  font-family: var(--font-label); font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: #8A6A3C;
}
