/* =========================================================
   Catherine P. Whitaker — functional root-cause care
   Editorial CONCEPT (Myhra/Randi layout), LIGHT & AIRY in CPW brand.
   Canvas: ivory + oat. Accent scheme is switchable via --accent /
   --accent-deep / --feature-bg near the top of :root. Currently TERRACOTTA
   earthy clay palette: clay #B46D55 leads, with rose + ochre accent moments.
   Serif: EB Garamond. Body: Helvetica.
   ========================================================= */

@font-face {
  font-family: "Moontime";
  src: url("fonts/Moontime.woff2") format("woff2"), url("fonts/Moontime.woff") format("woff");
  font-display: swap;
}

:root {
  --ivory: #FAF7F0;
  --oat: #EFE7D8;
  --mushroom: #C4BAA7;
  --dark-mushroom: #A59782;
  --amber: #C69C63;         /* muted gold accent */
  --amber-deep: #A67C3C;    /* darker gold for text/hover on light */
  --cocoa: #4C4038;         /* text + footer */
  --cocoa-soft: #6B5F55;    /* muted text */
  --cream: #F3EEE4;
  --lavender: #A3A7C7;
  --lavender-deep: #6C6F9C;
  /* --- earthy clay palette --- */
  --terracotta: #B46D55;    /* lead clay */
  --terracotta-deep: #9A5446;
  --rose: #C0705E;          /* rose accent moment */
  --rose-alt: #B4756E;      /* softer rose variation */
  --ochre: #CF9A5A;         /* warm highlight */
  --greige: #C7BAA6;        /* grounding neutral */
  --taupe: #A99781;         /* grounding neutral */
  --sage: #A4AC95;
  --dusty-rose: #C89A92;
  /* --- active accent scheme: clay-forward terracotta --- */
  --accent: var(--terracotta);
  --accent-deep: var(--terracotta-deep);
  --feature-bg: var(--rose);

  --line-light: #DCD3C3;                    /* hairlines on ivory/oat */
  --line-onwarm: rgba(74,64,57,0.24);       /* hairlines on mushroom */
  --line-oncocoa: rgba(243,238,228,0.22);   /* hairlines on cocoa */

  --display: "EB Garamond", Georgia, "Times New Roman", serif;
  --script: "Moontime", "EB Garamond", cursive;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --label: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1240px;
  --measure: 660px;
  --header-h: 74px;
  --shadow: 0 28px 64px rgba(74,64,57,0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], div[id].anchor { scroll-margin-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--cocoa);
  background: var(--ivory);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; margin: 0 0 0.45em; line-height: 1.08; color: var(--cocoa); }
h1 { font-size: clamp(2.9rem, 6.2vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p { margin: 0 0 1.2rem; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 40px; }
.measure { max-width: var(--measure); }
.measure-c { max-width: var(--measure); margin-left: auto; margin-right: auto; }
.center { text-align: center; }

.kicker { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.32em; font-size: 0.7rem; font-weight: 700; color: var(--accent-deep); margin: 0 0 1.4rem; display: inline-block; }
.rule { width: 44px; height: 2px; background: var(--accent); border: 0; margin: 0 0 26px; }
.center .rule { margin-left: auto; margin-right: auto; }
.lead { font-size: 1.18rem; line-height: 1.75; color: var(--cocoa-soft); }
.subtitle { font-family: var(--display); font-style: italic; font-size: clamp(1.3rem, 2.3vw, 1.9rem); color: var(--cocoa-soft); line-height: 1.35; }

/* ---------- buttons (sharp) ---------- */
.btn { display: inline-block; font-family: var(--sans); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.68rem; padding: 17px 32px; border: 1px solid transparent; border-radius: 0; cursor: pointer; transition: background .25s ease, color .25s ease, border-color .25s ease; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: var(--ivory); border-color: var(--accent); }
.btn-primary:hover { background: var(--cocoa); border-color: var(--cocoa); color: var(--ivory); }
.btn-outline { background: transparent; color: var(--cocoa); border-color: var(--cocoa); }
.btn-outline:hover { background: var(--cocoa); color: var(--ivory); }
.btn-cream { background: var(--ivory); color: var(--cocoa); border-color: var(--ivory); }
.btn-cream:hover { background: var(--accent); color: var(--ivory); border-color: var(--accent); }
.btn-line-cream { background: transparent; color: var(--ivory); border-color: rgba(243,238,228,0.7); }
.btn-line-cream:hover { background: var(--accent); color: var(--ivory); border-color: var(--accent); }

.tlink { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem; font-weight: 600; color: inherit; border-bottom: 1px solid currentColor; padding-bottom: 4px; transition: color .2s ease, border-color .2s ease; }
.tlink:hover { color: var(--accent-deep); border-color: var(--accent-deep); text-decoration: none; }

/* ---------- header (fixed, transparent over hero, solid on scroll) ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 60; transition: background .3s ease, border-color .3s ease; border-bottom: 1px solid transparent; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 40px; max-width: var(--wrap); margin: 0 auto; }
.brand { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.22em; font-size: 1.2rem; color: var(--ivory); line-height: 1; transition: color .3s ease; }
.brand span { display: block; font-family: var(--sans); font-size: 0.52rem; letter-spacing: 0.3em; margin-top: 6px; font-weight: 600; opacity: 0.85; }
.brand:hover { text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { color: var(--ivory); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; opacity: 0.92; transition: color .3s ease; }
.nav-links a:hover { opacity: 1; color: var(--accent); text-decoration: none; }
.nav-links a.btn { opacity: 1; color: var(--ivory); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--ivory); cursor: pointer; }

.site-header.solid { background: var(--ivory); border-bottom-color: var(--line-light); }
.site-header.solid .brand { color: var(--cocoa); }
.site-header.solid .nav-links a { color: var(--cocoa-soft); }
.site-header.solid .nav-links a:hover { color: var(--accent-deep); }
.site-header.solid .nav-links a.btn { color: var(--ivory); }
.site-header.solid .nav-toggle { color: var(--cocoa); }

@media (max-width: 920px) {
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 0; background: var(--ivory); border-bottom: 1px solid var(--line-light); padding: 6px 40px 22px; display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--cocoa-soft); padding: 15px 0; width: 100%; border-bottom: 1px solid var(--oat); }
  .nav-links a.btn { margin-top: 14px; width: 100%; text-align: center; }
  .nav-toggle { display: block; }
}

/* ---------- sections ---------- */
section { padding: 122px 0; }
.section-oat { background: var(--oat); }
.section-warm { background: var(--feature-bg); color: var(--cocoa); }
.section-warm h1, .section-warm h2, .section-warm h3 { color: var(--cocoa); }
.section-warm .lead { color: var(--cocoa); }
.section-warm .kicker { color: var(--cocoa); }
.section-warm .rule { background: var(--cocoa); }
.section-head { max-width: 820px; }
.section-head.center { margin: 0 auto; }

/* ---------- hero (single motion video behind the words) ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 150px 0 120px; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-fallback { position: absolute; inset: 0; background: linear-gradient(135deg, var(--mushroom) 0%, var(--oat) 40%, var(--dark-mushroom) 72%, var(--mushroom) 100%); background-size: 300% 300%; animation: heroDrift 16s ease-in-out infinite; display: flex; align-items: center; justify-content: center; }
@keyframes heroDrift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.hero-ph-label { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.28em; font-size: 0.72rem; font-weight: 700; color: var(--cocoa); border: 1px solid rgba(74,64,57,0.4); padding: 12px 22px; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(74,64,57,0.38) 0%, rgba(74,64,57,0.26) 40%, rgba(58,50,44,0.58) 100%); }
@media (prefers-reduced-motion: reduce) { .hero-fallback { animation: none; } }
.hero-content { position: relative; z-index: 2; color: var(--ivory); max-width: 960px; margin: 0 auto; text-align: center; }
.hero .kicker { color: var(--ivory); opacity: 0.94; }
.hero h1 { color: var(--ivory); font-size: clamp(3rem, 7.4vw, 5.6rem); text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.04; margin-bottom: 0.32em; text-shadow: 0 2px 24px rgba(46,40,34,0.35); }
.hero-tagline { font-family: var(--display); font-style: italic; font-size: clamp(1.35rem, 2.5vw, 2rem); color: var(--ivory); max-width: 720px; margin: 0 auto; line-height: 1.42; text-shadow: 0 2px 20px rgba(46,40,34,0.35); }
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin-top: 40px; }

/* ---------- full-bleed band ---------- */
.band { position: relative; min-height: 58vh; background: var(--dark-mushroom); background-size: cover; background-position: center; display: flex; align-items: center; }
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(74,64,57,0.62), rgba(74,64,57,0.22)); }
.band .wrap { position: relative; z-index: 2; }
.band .display-quote { font-family: var(--display); font-style: italic; font-size: clamp(1.7rem, 3.4vw, 2.8rem); line-height: 1.28; color: var(--ivory); }

/* ---------- story beats ---------- */
.beats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 62px; }
.beat { padding: 38px 34px 0; border-top: 2px solid var(--accent); }
.beat:not(:last-child) { border-right: 1px solid var(--line-light); }
.beat .bnum { font-family: var(--display); font-style: italic; font-size: 1.5rem; color: var(--accent-deep); line-height: 1; margin-bottom: 14px; }
.beat h3 { text-transform: uppercase; letter-spacing: 0.05em; font-size: 1.2rem; margin-bottom: 0.5em; }
.beat p { color: var(--cocoa-soft); font-size: 0.98rem; margin: 0; }
@media (max-width: 820px) { .beats { grid-template-columns: 1fr; } .beat { border-right: none !important; } }

/* ---------- story prose (narrative) ---------- */
.story-prose { max-width: var(--measure); margin: 50px auto 0; }
.story-prose p { font-size: 1.16rem; line-height: 1.9; color: var(--cocoa-soft); margin: 0 0 1.35rem; }
.story-prose p:first-child { color: var(--cocoa); }
.pull { font-family: var(--display); font-style: italic; font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.32; color: var(--cocoa); margin: 1.5em 0; }
.story-stats { max-width: var(--measure); margin: 44px auto 0; text-align: center; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; font-weight: 700; color: var(--accent-deep); border-top: 1px solid var(--line-light); padding-top: 26px; }
.fullscript-banner { margin-top: 28px; text-align: center; }
.fullscript-banner img { max-width: 100%; height: auto; }
.story-creds { max-width: none; margin: 18px 0 0; }
.story-creds .creds-lead { margin: 0; font-family: var(--sans); font-size: 0.92rem; line-height: 1.55; color: var(--cocoa); font-weight: 500; }
.story-creds .creds-more { margin: 8px 0 0; font-family: var(--label); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.7rem; font-weight: 700; }
.story-creds a { color: var(--accent-deep); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.story-creds a:hover { color: var(--cocoa); }

/* ---------- approach columns ---------- */
.cols3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 62px; }
.col-item { padding: 42px 36px 0; border-top: 1px solid var(--line-light); }
.col-item:not(:last-child) { border-right: 1px solid var(--line-light); }
.col-item h3 { text-transform: uppercase; letter-spacing: 0.05em; color: var(--cocoa); font-size: 1.25rem; margin-bottom: 0.5em; }
.col-item p { color: var(--cocoa-soft); font-size: 0.98rem; margin: 0; }
@media (max-width: 820px) { .cols3 { grid-template-columns: 1fr; } .col-item { border-right: none !important; } }

/* ---------- testimonials (on mushroom) ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 62px; }
.quote { padding: 0 36px; border-left: 1px solid var(--line-onwarm); }
.quote:first-child { border-left: none; padding-left: 0; }
.quote:last-child { padding-right: 0; }
.quote .stars { color: var(--cocoa); letter-spacing: 4px; font-size: 0.8rem; margin-bottom: 20px; }
.quote p { font-family: var(--display); font-style: italic; font-size: 1.35rem; line-height: 1.4; color: var(--cocoa); margin-bottom: 22px; }
.quote .who { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.68rem; font-weight: 700; color: var(--cocoa); }
@media (max-width: 820px) { .quotes { grid-template-columns: 1fr; gap: 44px; } .quote { border-left: none; padding: 0; } }

/* ---------- referral ---------- */
.referral { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: center; }
.referral-photo { aspect-ratio: 4/5; background: var(--oat); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.referral-photo img { width: 100%; height: 100%; object-fit: cover; }
.referral .r-name { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.03em; font-size: 1.9rem; margin-bottom: 0.15em; color: var(--cocoa); }
.referral .r-role { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.7rem; font-weight: 700; color: var(--accent-deep); margin-bottom: 22px; }
.referral-cta { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; margin-top: 10px; }
.referral-cta .note { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.66rem; color: var(--dark-mushroom); }
@media (max-width: 800px) { .referral { grid-template-columns: 1fr; gap: 34px; } .referral-photo { max-width: 300px; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 900px; margin: 58px auto 0; }
.faq { border-top: 1px solid var(--line-light); }
.faq:last-child { border-bottom: 1px solid var(--line-light); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: var(--sans); font-weight: 600; font-size: 0.92rem; color: var(--cocoa); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { font-family: var(--display); font-size: 1.6rem; color: var(--accent-deep); transition: transform .25s ease; }
.faq[open] summary .plus { transform: rotate(45deg); }
.faq .faq-body { padding: 0 0 26px; color: var(--cocoa-soft); max-width: 720px; font-size: 0.9rem; line-height: 1.6; }
.faq .faq-body p { margin: 0; }

/* ---------- dispensary callout ---------- */
.callout { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); padding: 56px 0; }
.callout h2 { margin-bottom: 0.2em; }
.callout p { margin: 0; color: var(--cocoa-soft); max-width: 620px; }
@media (max-width: 800px) { .callout { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- contact + follow (on mushroom) ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.contact-block .lead { margin-bottom: 28px; }
.link-row { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; margin-top: 6px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 44px; } }

/* ---------- prose (legal/store) ---------- */
.page-hero { background: var(--cocoa); color: var(--cream); padding: calc(var(--header-h) + 60px) 0 64px; }
.page-hero .kicker { color: var(--accent); }
.page-hero h1 { color: var(--ivory); text-transform: uppercase; letter-spacing: 0.03em; }
.page-hero .subtitle { color: rgba(243,238,228,0.8); }
.prose { max-width: var(--measure); }
.prose p, .prose li { font-size: 1.02rem; color: var(--cocoa-soft); }
.prose h2 { margin-top: 1.6em; font-size: 1.6rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--cocoa); }
.prose h3 { margin-top: 1.3em; font-size: 1.2rem; color: var(--cocoa); }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 0.5em; }
.note-box { background: var(--oat); border-left: 2px solid var(--accent); padding: 18px 22px; }

/* store scaffold */
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 48px; }
.store-card { border: 1px solid var(--line-light); padding: 26px; background: var(--ivory); }
.store-card .ph { aspect-ratio: 1/1; background: var(--oat); margin-bottom: 18px; }
.store-card h3 { text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.05rem; margin-bottom: 0.3em; color: var(--cocoa); }
.store-card p { font-size: 0.9rem; color: var(--cocoa-soft); margin: 0; }
@media (max-width: 800px) { .store-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- footer ---------- */
.site-footer { background: var(--cocoa); color: var(--cream); padding: 82px 0 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.footer-signup { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 44px; margin-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.16); }
.footer-signup .fs-sub { font-family: var(--display); font-style: italic; font-size: 1.05rem; opacity: 0.85; margin: 4px 0 0; }
.footer-signup .footer-h { margin-bottom: 0; }
.fs-form { display: flex; flex-wrap: wrap; gap: 10px; flex: 1 1 420px; max-width: 520px; }
.fs-form input { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.28); color: var(--cream); padding: 13px 16px; font-family: var(--sans); font-size: 0.95rem; }
.fs-form #fs-first, .fs-form #fs-last { flex: 1 1 calc(50% - 5px); min-width: 120px; }
.fs-form #fs-email { flex: 1 1 100%; }
.fs-form input::placeholder { color: rgba(255,255,255,0.5); }
.fs-form input:focus { outline: none; border-color: var(--accent); }
.fs-form .btn { white-space: nowrap; flex: 1 1 100%; }
@media (min-width: 720px) { .fs-form #fs-email { flex: 1 1 auto; } .fs-form .btn { flex: 0 0 auto; } }
@media (max-width: 600px) { .fs-form { flex-basis: 100%; } }
.fs-status { display: none; flex: 1 1 420px; max-width: 520px; margin: 0; font-family: var(--display); font-style: italic; font-size: 1.1rem; color: var(--cream); opacity: 0.92; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; }
.footer-brand { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.16em; font-size: 1.9rem; color: var(--ivory); margin-bottom: 12px; }
.footer-tag { color: rgba(243,238,228,0.72); font-size: 0.95rem; max-width: 320px; }
.site-footer a { color: var(--cream); opacity: 0.84; font-size: 0.9rem; display: block; padding: 6px 0; }
.site-footer a:hover { opacity: 1; color: var(--accent); }
.footer-h { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.64rem; opacity: 0.6; margin-bottom: 14px; font-weight: 700; }
.footer-legal { border-top: 1px solid var(--line-oncocoa); margin-top: 48px; padding-top: 22px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 6px 16px; text-align: center; }
.footer-legal .links a { display: inline; opacity: 0.7; margin: 0 10px; font-size: 0.68rem; padding: 0; }
.footer-legal .copy { font-size: 0.68rem; opacity: 0.6; }
/* footer fine print: links once, disclaimer, then copyright last */
.footer-fine { border-top: 1px solid var(--line-oncocoa); margin-top: 48px; padding-top: 22px; text-align: center; }
.footer-fine .links { display: block; }
.footer-fine .links a { display: inline; opacity: 0.72; margin: 0 12px; font-size: 0.7rem; padding: 0; font-family: var(--label); }
.footer-copy { margin: 16px 0 0; font-family: var(--label); font-size: 0.68rem; opacity: 0.55; }
.disclaimer { font-size: 0.66rem; line-height: 1.55; opacity: 0.45; max-width: 720px; margin: 12px auto 0; text-align: center; }
.disclaimer a { opacity: 1; display: inline; padding: 0; text-decoration: underline; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 30px; } }

.mt-0 { margin-top: 0; }

/* small labels use Montserrat (Canva-native) */
.kicker, .brand span, .nav-links a, .btn, .tlink, .quote .who, .referral .r-role, .footer-h, .story-stats, .hero-ph-label, .referral-cta .note, .footer-legal .copy, .footer-legal .links a { font-family: var(--label); }

/* ---------- hero two-line subtitle ---------- */
.hero-tagline .sub2 { display: block; font-size: 0.8em; opacity: 0.9; margin-top: 8px; }

/* ---------- problem hook ---------- */
.problem .wrap { text-align: center; }
.problem h2 { max-width: 900px; margin: 0 auto 0.5em; }
.problem p { max-width: 620px; margin: 0 auto; color: var(--cocoa-soft); font-size: 1.12rem; }

/* ---------- offers ---------- */
.offers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin: 60px auto 0; max-width: 1120px; align-items: start; }
.offer-card { border: 1px solid var(--line-light); background: var(--ivory); padding: 38px 32px; display: flex; flex-direction: column; }
.offer-card.feature { border: 2px solid var(--terracotta); }
.offer-tag { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.62rem; font-weight: 700; color: var(--terracotta-deep); margin-bottom: 14px; }
.offer-card h3 { font-size: 1.5rem; margin-bottom: 0.3em; }
.offer-card .desc { color: var(--cocoa-soft); font-size: 0.98rem; margin-bottom: 22px; }
.offer-card .price { font-family: var(--display); font-size: 1.6rem; color: var(--cocoa); margin: 0 0 22px; line-height: 1.2; }
.offer-card .price small { font-family: var(--label); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cocoa-soft); display: block; margin-top: 5px; }
.offer-card .btn { margin-top: auto; text-align: center; }
@media (max-width: 980px) { .offers { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

/* offer detail dropdown + visual pathway */
.offer-details { margin-top: 16px; border-top: 1px solid var(--line-light); }
.offer-details summary { list-style: none; cursor: pointer; padding: 16px 0 4px; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-family: var(--label); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.68rem; font-weight: 700; color: var(--terracotta-deep); }
.offer-details summary::-webkit-details-marker { display: none; }
.offer-details summary .plus { font-family: var(--display); font-size: 1.3rem; color: var(--terracotta-deep); transition: transform .25s ease; }
.offer-details[open] summary .plus { transform: rotate(45deg); }
.pathway { list-style: none; margin: 14px 0 4px; padding: 0; }
.pathway li { position: relative; display: flex; gap: 16px; padding-bottom: 22px; }
.pathway li:last-child { padding-bottom: 0; }
.pathway li::before { content: ""; position: absolute; left: 13px; top: 30px; bottom: 0; width: 1px; background: var(--line-light); }
.pathway li:last-child::before { display: none; }
.pathway .p-num { flex: none; width: 27px; height: 27px; border-radius: 50%; background: var(--terracotta); color: var(--ivory); font-family: var(--label); font-size: 0.78rem; font-weight: 700; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.pathway .p-body h4 { font-family: var(--sans); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.01em; margin: 3px 0 3px; color: var(--cocoa); }
.pathway .p-body p { margin: 0; font-size: 0.88rem; line-height: 1.5; color: var(--cocoa-soft); }

/* two-step "start now" block with inline CTAs */
.start-steps { list-style: none; margin: 22px 0 0; padding: 0; }
.start-steps > li { position: relative; display: flex; gap: 16px; padding-bottom: 26px; }
.start-steps > li:last-child { padding-bottom: 0; }
.start-steps > li::before { content: ""; position: absolute; left: 13px; top: 30px; bottom: 0; width: 1px; background: var(--line-light); }
.start-steps > li:last-child::before { display: none; }
.start-steps .p-num { flex: none; width: 27px; height: 27px; border-radius: 50%; background: var(--terracotta); color: var(--ivory); font-family: var(--label); font-size: 0.78rem; font-weight: 700; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.start-steps .p-body { flex: 1; }
.start-steps .p-body h4 { font-family: var(--sans); font-size: 0.95rem; font-weight: 700; margin: 3px 0 4px; color: var(--cocoa); }
.start-steps .p-body p { margin: 0 0 12px; font-size: 0.9rem; line-height: 1.5; color: var(--cocoa-soft); }
.start-steps .p-body .btn { width: 100%; text-align: center; }
.start-note { margin: 18px 0 0; font-size: 0.82rem; line-height: 1.5; color: var(--cocoa-soft); font-style: italic; }
.start-steps .p-body .step-note { font-size: 0.8rem; line-height: 1.45; color: var(--terracotta-deep); font-style: italic; margin: 0 0 12px; }

/* ---------- sticky CTA ---------- */
.sticky-cta { position: fixed; right: 24px; bottom: 24px; z-index: 55; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .3s ease, transform .3s ease; box-shadow: 0 12px 32px rgba(74,64,57,0.28); }
.sticky-cta.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
@media (max-width: 600px) { .sticky-cta { right: 14px; bottom: 14px; padding: 14px 20px; } }

/* ---------- story two-column (portrait + narrative) ---------- */
.story-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 68px; align-items: center; }
.story-photo { overflow: hidden; aspect-ratio: 4/5; background: var(--oat); display: flex; align-items: center; justify-content: center; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.story-copy .kicker { margin-bottom: 1.1rem; }
.story-grid .story-prose { max-width: none; margin: 24px 0 0; }
.story-grid .story-stats { max-width: none; margin: 32px 0 0; text-align: left; }
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; gap: 36px; } .story-photo { max-width: 380px; aspect-ratio: 4/5; } }

/* social glyphs in link rows */
.soc { width: 16px; height: 16px; display: inline-block; vertical-align: -3px; margin-right: 9px; }

/* ---------- testimonials carousel ---------- */
.testi { max-width: 860px; margin: 40px auto 0; text-align: center; position: relative; min-height: 180px; }
.testi-item { display: none; }
.testi-item.active { display: block; animation: testiFade .5s ease; }
@keyframes testiFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.testi .stars { color: var(--accent); letter-spacing: 4px; font-size: 0.85rem; margin-bottom: 22px; }
.testi .q { font-family: var(--display); font-style: italic; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.38; color: var(--cocoa); margin: 0; }
.testi .who { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem; font-weight: 700; color: var(--accent-deep); margin-top: 18px; }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 26px; }
.testi-arrow { background: none; border: 1px solid var(--line-light); width: 42px; height: 42px; cursor: pointer; color: var(--cocoa); font-family: var(--display); font-size: 1.4rem; line-height: 1; transition: background .2s, color .2s, border-color .2s; }
.testi-arrow:hover { background: var(--cocoa); color: var(--ivory); border-color: var(--cocoa); }
.testi-dots { display: flex; gap: 9px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-light); border: none; padding: 0; cursor: pointer; transition: background .2s; }
.testi-dot.active { background: var(--accent); }

/* ---------- approach flip cards ---------- */
.flip-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.flip-card { perspective: 1200px; height: 350px; cursor: pointer; outline: none; }
.flip-inner { position: relative; width: 100%; height: 100%; transition: transform .6s cubic-bezier(.4,.2,.2,1); transform-style: preserve-3d; }
.flip-card:hover .flip-inner, .flip-card:focus-visible .flip-inner, .flip-card.flipped .flip-inner { transform: rotateY(180deg); }
.flip-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.flip-front, .flip-back { position: absolute; inset: 0; -webkit-backface-visibility: hidden; backface-visibility: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 34px; }
.flip-front { background: var(--ivory); border: 1px solid var(--line-light); }
.flip-num { font-family: var(--label); letter-spacing: 0.2em; font-size: 0.72rem; font-weight: 700; color: var(--accent-deep); margin-bottom: 16px; }
.flip-front h3 { text-transform: uppercase; letter-spacing: 0.05em; color: var(--cocoa); font-size: 1.35rem; margin: 0 0 18px; line-height: 1.15; }
.flip-hint { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.58rem; color: var(--dark-mushroom); }
.flip-back { background: var(--accent); color: var(--ivory); transform: rotateY(180deg); }
.flip-back p { margin: 0; font-size: 0.98rem; line-height: 1.55; color: var(--ivory); }
@media (max-width: 820px) { .flip-cards { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } .flip-card { height: 320px; } .flip-hint::after { content: " / tap"; } }
@media (prefers-reduced-motion: reduce) { .flip-inner { transition: none; } }

#results { padding-top: 92px; padding-bottom: 92px; }
