/* ============ New Hope Vitality — warm premium med-spa ============ */

/* Scheme A — light sage-olive motif + antique-gold flourish.
   Olive (--olive / --olive-deep) is the calm, structural brand color;
   gold (--gold / --gold-soft) is reserved for the flourish: logo, CTAs, ornaments. */
:root,
html[data-theme="light"] {
  --bg: #f4f3ea;
  --bg-raise: #dde1c4;   /* deeper sage-olive so raised sections clearly READ green, not just cream */
  --bg-card: #fbfaf2;
  --text: #2f301c;
  --text-dim: #55573d;   /* darkened for AA-legible body text on cream AND sage */
  --olive: #7f8052;
  --olive-deep: #5f6037;
  --gold: #c6a24c;
  --gold-soft: #d2b266;
  --line: rgba(138, 139, 92, 0.28);
  --shadow: 0 12px 40px rgba(60, 63, 40, 0.1);
}

/* Softened dark — deep green-olive (not near-black, not brown) */
html[data-theme="dark"] {
  --bg: #1c241a;
  --bg-raise: #232d20;
  --bg-card: #2a3427;
  --text: #ecebd9;
  --text-dim: #b3b89b;
  --olive: #aebd76;
  --olive-deep: #c3ce8c;
  --gold: #cba85c;
  --gold-soft: #dcc188;
  --line: rgba(174, 189, 118, 0.22);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

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

html { scroll-behavior: smooth; }

body {
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
  transition: background 0.35s ease, color 0.35s ease;
}

h1, h2, h3, .brand-text, .footer-brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
}

em { font-style: italic; color: var(--olive-deep); }

a { color: var(--olive-deep); text-decoration: none; }

section { padding: 5.5rem clamp(1.25rem, 6vw, 6rem); }

.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
/* olive→gold flourish under each heading — makes the sage motif visible everywhere */
.section-head h2::after {
  content: ""; display: block; width: 52px; height: 3px; border-radius: 2px;
  margin: 0.85rem auto 0;
  background: linear-gradient(90deg, var(--olive), var(--gold-soft));
}
.section-head p { color: var(--text-dim); margin-top: 0.9rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1c1610;
  box-shadow: 0 6px 24px rgba(198, 161, 91, 0.35);
}
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--olive); color: var(--olive-deep); }
.btn-lg { padding: 0.95rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.8rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 0.9rem clamp(1.25rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 0.55rem; color: var(--text); }
.brand-lotus { width: 58px; height: 34px; object-fit: contain; }
.brand-text { font-size: 1.25rem; }
.site-nav { display: flex; gap: 1.6rem; }
.site-nav a {
  color: var(--text); font-size: 0.92rem; letter-spacing: 0.05em;
  text-transform: uppercase; font-weight: 400;
}
.site-nav a:hover { color: var(--olive-deep); }
.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.theme-toggle {
  background: none; border: 1px solid var(--line); color: var(--text-dim);
  width: 2.3rem; height: 2.3rem; border-radius: 50%; font-size: 1.05rem; cursor: pointer;
}
.theme-toggle:hover { color: var(--gold-soft); border-color: var(--gold); }

@media (max-width: 860px) {
  .site-nav { display: none; }
}
@media (max-width: 560px) {
  .site-header { padding: 0.6rem 0.9rem; gap: 0.6rem; }
  .header-actions { gap: 0.5rem; }
  .site-header .btn-gold { padding: 0.5rem 1rem; font-size: 0.78rem; letter-spacing: 0.04em; }
  .brand-lotus { width: 46px; height: 27px; }
  .brand-text { font-size: 1rem; }
  .theme-toggle { width: 2rem; height: 2rem; font-size: 0.95rem; }
  .hero-eyebrow { letter-spacing: 0.18em; font-size: 0.72rem; }
}

/* ---------- hero ---------- */
.hero {
  min-height: 60vh;
  display: grid; place-items: center; text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(198, 161, 91, 0.14), transparent 70%),
    var(--bg);
}
.hero-eyebrow {
  color: var(--olive); letter-spacing: 0.35em; text-transform: uppercase;
  font-size: 0.8rem; margin-bottom: 1.4rem;
}
.hero h1 { font-size: clamp(2.6rem, 7vw, 4.8rem); }
.hero-sub { color: var(--text-dim); font-size: clamp(1.05rem, 2vw, 1.35rem); margin-top: 1.1rem; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }
.trust-row {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
  list-style: none; margin-top: 3rem; color: var(--text-dim);
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.trust-row li::before { content: "✦ "; color: var(--gold); }

/* two-column hero (homepage) */
.hero-split {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  text-align: left;
  padding-inline: clamp(1.25rem, 6vw, 6rem);
}
.hero-split .hero-inner { text-align: left; max-width: 34rem; }
.hero-split .hero-ctas { justify-content: flex-start; }
.hero-split .trust-row { justify-content: flex-start; }
.hero-media { justify-self: center; }
.hero-media img {
  width: 100%; max-width: 560px; height: auto;
  border-radius: 20px; border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-split .hero-inner { text-align: center; margin-inline: auto; }
  .hero-split .hero-ctas, .hero-split .trust-row { justify-content: center; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto; }
}

/* ---------- drip finder ---------- */
.drip-finder { background: var(--bg-raise); }
.goal-chips { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.6rem; }
.chip {
  padding: 0.6rem 1.35rem; border-radius: 999px;
  background: transparent; border: 1px solid var(--line);
  color: var(--text); font-family: "Jost", sans-serif; font-size: 0.95rem;
  cursor: pointer; transition: all 0.18s ease;
}
.chip:hover { border-color: var(--olive); }
.chip.active {
  background: linear-gradient(135deg, var(--olive-deep), var(--olive));
  color: #fbfaf2; border-color: transparent; font-weight: 500;
}
.drip-grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  max-width: 1200px; margin: 0 auto;
}
.drip-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 16px;
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.drip-card:hover { transform: translateY(-3px); border-color: var(--olive); }
.drip-card.hidden { display: none; }
.drip-card p { color: var(--text-dim); font-size: 0.95rem; flex: 1; }
.drip-card-top { display: flex; justify-content: space-between; align-items: start; gap: 0.6rem; }
.drip-card h3 { font-size: 1.15rem; }
.drip-card h3 a { color: var(--text); }
.drip-card h3 a:hover { color: var(--olive-deep); }
.drip-type {
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 999px; border: 1px solid var(--line);
  color: var(--text-dim); white-space: nowrap;
}
.drip-empty { text-align: center; color: var(--text-dim); margin-top: 2rem; }
.drip-price { color: var(--olive-deep); font-weight: 500; letter-spacing: 0.04em; }
.drip-price-lg { font-size: 1.5rem; margin-top: 0.8rem; }
.drip-price-note { color: var(--text-dim); font-size: 0.9rem; margin-top: 0.3rem; }

/* ---------- signature hydration feature band (soft sage-olive + antique gold) ---------- */
.feature-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse 95% 135% at 22% 0%, rgba(206, 170, 92, 0.24), transparent 60%),
    linear-gradient(150deg, #6d6f48, #52532e);
  color: #f4f3ea;
}
.feature-media { justify-self: center; }
.feature-media img {
  display: block; width: 100%; max-width: 320px; height: auto;
  border-radius: 18px;
  border: 1px solid rgba(210, 178, 102, 0.55);
  box-shadow: 0 22px 55px rgba(40, 44, 24, 0.45);
}
.feature-eyebrow {
  color: var(--gold-soft); letter-spacing: 0.26em; text-transform: uppercase;
  font-size: 0.78rem; margin-bottom: 1rem;
}
.feature-band h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); color: #fbf9ef; }
.feature-band p { color: #ecedd9; margin: 1.1rem 0 1.9rem; max-width: 44ch; }
.feature-band .hero-ctas { margin-top: 0; justify-content: flex-start; }
@media (max-width: 760px) {
  .feature-band { grid-template-columns: 1fr; text-align: center; }
  .feature-band p { margin-inline: auto; }
  .feature-band .hero-ctas { justify-content: center; }
  .feature-media { order: -1; }
}

/* ---------- interior pages ---------- */
.page-hero {
  text-align: center; padding-top: 4.5rem; padding-bottom: 3rem;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(198, 161, 91, 0.12), transparent 70%),
    var(--bg);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero > p { color: var(--text-dim); margin-top: 0.8rem; max-width: 640px; margin-inline: auto; }
.page-hero .hero-ctas { margin-top: 1.8rem; }

.drip-detail .prose { max-width: 760px; margin: 0 auto; }
.prose h1, .prose h2, .prose h3 { margin: 1.8rem 0 0.7rem; }
.prose p, .prose li { color: var(--text-dim); }
.prose p + p { margin-top: 1.1rem; }
.prose strong { color: var(--text); font-weight: 600; }
.prose ul, .prose ol { padding-left: 1.4rem; margin: 0.8rem 0; }
.prose a { text-decoration: underline; }
.disclaimer { color: var(--text-dim); font-size: 0.82rem; margin-top: 2rem; }

/* ---------- membership page ---------- */
.plan-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 420px));
  justify-content: center; max-width: 1000px; margin: 0 auto;
}
.plan-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 20px;
  padding: 2.2rem; display: flex; flex-direction: column;
}
.plan-card.featured { border-color: var(--gold); box-shadow: var(--shadow); }
.plan-name { font-size: 1.35rem; }
.plan-price { font-family: "Fraunces", serif; font-size: 2.6rem; color: var(--olive-deep); margin: 0.6rem 0 1.2rem; }
.plan-price span { font-size: 1rem; color: var(--text-dim); font-family: "Jost", sans-serif; }
.plan-card ul { list-style: none; flex: 1; margin-bottom: 1.8rem; }
.plan-card li { padding: 0.55rem 0; color: var(--text-dim); font-size: 0.95rem; border-bottom: 1px solid var(--line); }
.plan-card li::before { content: "✦ "; color: var(--gold); }
.plan-note { text-align: center; color: var(--text-dim); font-size: 0.9rem; margin-top: 2rem; }

/* ---------- therapies ---------- */
.therapy-grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  max-width: 1200px; margin: 0 auto;
}
.therapy-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 16px;
  padding: 1.8rem 1.5rem; color: var(--text);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.therapy-card:hover { transform: translateY(-3px); border-color: var(--olive); box-shadow: var(--shadow); }
.therapy-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.therapy-card p { color: var(--text-dim); font-size: 0.9rem; }

/* ---------- peptide callout (solid olive band — signals the sage motif) ---------- */
.peptide-callout {
  background:
    radial-gradient(ellipse 70% 120% at 50% 0%, rgba(198, 161, 91, 0.18), transparent 70%),
    linear-gradient(160deg, var(--olive-deep), #5a5b33);
  color: #f4f3ea; text-align: center;
}
.peptide-callout .feature-eyebrow { color: var(--gold-soft); }
.peptide-callout h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: #f9f8ee; }
.peptide-callout h2::after { display: none; }
.peptide-callout > .peptide-inner { max-width: 720px; margin: 0 auto; }
.peptide-callout p { color: #e4e6cf; margin: 1rem auto 1.6rem; max-width: 56ch; }
.peptide-chips { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.8rem; }
.peptide-chips .chip {
  color: #f4f3ea; border-color: rgba(244, 243, 234, 0.4);
}
.peptide-chips .chip:hover { border-color: var(--gold-soft); color: #fff; }

/* two-bucket peptide bullet list */
.peptide-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  text-align: left; margin: 1.8rem auto 1.4rem; max-width: 680px;
}
.peptide-col h3 {
  font-family: "Jost", sans-serif; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.82rem; color: var(--gold-soft);
  margin-bottom: 0.9rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(244, 243, 234, 0.22);
}
.peptide-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.peptide-list li { font-size: 0.9rem; line-height: 1.4; color: #eef0dd; }
.peptide-list li strong { color: #fff; }
.peptide-list li span { color: #d5d8c0; }
.peptide-disclaimer {
  font-size: 0.72rem !important; line-height: 1.5; color: #c3c6ac !important;
  max-width: 640px; margin: 0 auto 1.6rem !important;
}
@media (max-width: 620px) { .peptide-cols { grid-template-columns: 1fr; gap: 1.4rem; } }

/* peptide bullet list on a LIGHT (sage) section — dark, readable text (fixes wash-out) */
.exo-menu .peptide-col h3 { color: var(--olive-deep); border-bottom-color: var(--line); }
.exo-menu .peptide-list li { color: var(--text); }
.exo-menu .peptide-list li strong { color: var(--text); font-weight: 600; }
.exo-menu .peptide-list li span { color: var(--text-dim); }

/* ---------- EXO matrix menu ---------- */
.exo-menu { background: var(--bg-raise); }
.exo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem;
  max-width: 1000px; margin: 0 auto;
}
.exo-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 16px; padding: 1.6rem 1.5rem; box-shadow: var(--shadow);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.exo-card:hover { transform: translateY(-3px); border-color: var(--olive); }
.exo-tag {
  display: inline-block; margin-bottom: 0.7rem; padding: 0.22rem 0.75rem;
  border-radius: 999px; background: var(--olive-deep); color: #f4f3ea;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
}
.exo-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.exo-card p { color: var(--text-dim); font-size: 0.92rem; }
.exo-note { text-align: center; color: var(--text-dim); font-size: 0.9rem; margin-top: 2rem; font-style: italic; }
@media (max-width: 860px) { .exo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .exo-grid { grid-template-columns: 1fr; } }

/* ---------- cookie / advertising consent banner (CPRA) ---------- */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90;
  max-width: 760px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow); padding: 1rem 1.2rem;
}
.cookie-banner[hidden] { display: none; }
.cookie-text { flex: 1; min-width: 220px; margin: 0; font-size: 0.8rem; line-height: 1.5; color: var(--text-dim); }
.cookie-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
@media (max-width: 520px) { .cookie-actions { width: 100%; } .cookie-actions .btn { flex: 1; } }

/* ---------- intake QR block (booking page) ---------- */
.intake-qr-block {
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
  max-width: 680px; margin: 0 auto; padding: 1.6rem 1.8rem;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow);
}
.intake-qr {
  width: 150px; height: 150px; flex-shrink: 0;
  background: #fff; padding: 8px; border-radius: 10px; border: 1px solid var(--line);
}
@media (max-width: 520px) { .intake-qr-block { flex-direction: column; text-align: center; } }

/* ---------- footer financing link (Cherry) + build credit ---------- */
.finance-link {
  text-decoration: underline; text-underline-offset: 2px;
  color: inherit; display: inline-block; transition: color 0.18s ease;
}
.finance-link:hover { color: var(--gold); animation: finance-jiggle 0.45s ease; }
@keyframes finance-jiggle {
  0%, 100% { transform: rotate(0) scale(1); }
  25% { transform: rotate(-5deg) scale(1.06); }
  60% { transform: rotate(4deg) scale(1.06); }
}
.footer-credit { margin-top: 0.9rem; font-size: 0.78rem; color: var(--text-dim); }
.footer-credit a { color: inherit; text-underline-offset: 2px; }
.footer-credit a:hover { color: var(--olive-deep); }

/* ---------- membership band ---------- */
.membership-band {
  text-align: center;
  background:
    radial-gradient(ellipse 60% 100% at 50% 100%, rgba(198, 161, 91, 0.16), transparent 70%),
    var(--bg-raise);
  border-block: 1px solid var(--line);
}
.membership-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.membership-line { color: var(--olive-deep); margin: 1rem 0 2rem; font-size: 1.1rem; letter-spacing: 0.04em; }

/* ---------- benefits ---------- */
.benefit-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  max-width: 1100px; margin: 0 auto;
}
.benefit h3 { color: var(--olive-deep); font-size: 1.15rem; margin-bottom: 0.5rem; }
.benefit p { color: var(--text-dim); font-size: 0.95rem; }

/* ---------- faq ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.faq summary {
  cursor: pointer; font-family: "Fraunces", serif; font-size: 1.1rem;
  list-style: none; position: relative; padding-right: 2rem;
}
.faq summary::after { content: "+"; position: absolute; right: 0; color: var(--gold); font-size: 1.3rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--text-dim); padding-top: 0.7rem; }

/* ---------- final cta ---------- */
.final-cta { text-align: center; }
.final-cta h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 0.6rem; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 3.5rem clamp(1.25rem, 6vw, 6rem) 2rem; background: var(--bg-raise); }
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 1200px; margin: 0 auto 2.5rem;
}
.footer-brand { font-size: 1.4rem; margin-bottom: 0.2rem; }
.footer-logo { width: 190px; height: auto; display: block; }
.footer-logo-dark { display: none; }
html[data-theme="dark"] .footer-logo-light { display: none; }
html[data-theme="dark"] .footer-logo-dark { display: block; }
.footer-tag { color: var(--olive-deep); font-size: 0.85rem; letter-spacing: 0.1em; margin-top: 0.4rem; }
.site-footer h4 {
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.7rem; font-weight: 500;
}
.site-footer p { color: var(--text-dim); font-size: 0.92rem; }
.footer-legal { text-align: center; color: var(--text-dim); font-size: 0.85rem; border-top: 1px solid var(--line); padding-top: 1.6rem; }
.footer-financing { margin-bottom: 0.9rem; color: var(--olive-deep); }
.footer-legal p { margin-top: 0.5rem; }

/* ---------- opt-in form ---------- */
.optin-form { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.1rem; }
.optin-form label { display: flex; flex-direction: column; gap: 0.35rem; color: var(--text-dim); font-size: 0.9rem; letter-spacing: 0.04em; }
.optin-form input[type="text"], .optin-form input[type="tel"], .optin-form input[type="email"], .optin-form textarea {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.75rem 1rem; color: var(--text); font-family: "Jost", sans-serif; font-size: 1rem;
}
.optin-form input:focus, .optin-form textarea:focus { outline: none; border-color: var(--olive); }
.optin-form .form-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .optin-form .form-row { grid-template-columns: 1fr; } }
.consent-row { flex-direction: row !important; align-items: flex-start; gap: 0.7rem !important; }
.consent-row input[type="checkbox"] { margin-top: 0.25rem; width: 1.1rem; height: 1.1rem; accent-color: var(--gold); flex-shrink: 0; }
.consent-text { font-size: 0.8rem; line-height: 1.55; }
.optin-form .btn { align-self: center; }
.hidden-field { position: absolute; left: -9999px; }

/* ============ ADDED (site rebuild, contact page): map embed ============ */
.map-frame {
  display: block;
  width: 100%;
  max-width: 1100px;
  height: 400px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}

/* ============ ADDED (site rebuild, imagery): wp-image embeds ============ */
/* Drip Finder card image — full-bleed top of the card (card pads 1.5rem, radius 16px) */
.drip-card-media {
  display: block;
  width: calc(100% + 3rem);
  margin: -1.5rem -1.5rem 0;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  background: #fff;
}
.drip-card-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 10;
  max-height: 400px; /* keeps single-column (mobile) cards from towering */
  object-fit: cover;
  object-position: center 30%; /* bag label sits in the upper third */
  transition: transform 0.25s ease;
}
.drip-card:hover .drip-card-img { transform: scale(1.03); }

/* Drip detail page — framed bag image centered in the page hero */
.drip-hero-img {
  display: block;
  width: min(280px, 62vw);
  height: auto;
  aspect-ratio: 7 / 10;
  object-fit: cover;
  margin: 1.6rem auto 1.8rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

/* Therapy pages — single editorial image at the top of the prose */
.page-img {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  margin: 0 auto 2.4rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* Blog posts — full-width newsletter graphics in the post body */
.post-img {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  margin: 0 auto 1.8rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

/* Subtle divider between a newsletter graphic and its text transcription */
.transcript-divider {
  border: none;
  border-top: 1px solid var(--line);
  max-width: 760px;
  margin: 2.4rem auto;
}

/* Blog index — square card thumbnail */
.card-thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.1rem;
  background: #fff;
}

/* ================= PAID LANDING PAGES (/go/, /m/) ================= */
.lp-body { padding-bottom: 0; }

/* minimal, distraction-free header — logo + phone only, no nav */
.lp-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.7rem clamp(1.1rem, 5vw, 3rem);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.lp-header .brand { display: flex; align-items: center; gap: 0.55rem; }
.lp-header .brand-text { font-size: 1.15rem; color: var(--text); }
.lp-phone {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 500; letter-spacing: 0.03em; color: var(--olive-deep);
  white-space: nowrap;
}
.lp-phone-ic { color: var(--gold); }

/* hero offer badge */
.lp-offer-badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1c1610;
  font-weight: 500; font-size: 0.9rem; letter-spacing: 0.03em;
  box-shadow: 0 6px 20px rgba(198, 161, 91, 0.3);
}
.lp-hero .lp-offer-badge { align-self: flex-start; }

/* popular drips grid */
.lp-popular { background: var(--bg-raise); }
.lp-popular-grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px; margin: 0 auto;
}
.lp-popular-grid .drip-card { cursor: default; }

/* how it works — numbered steps */
.lp-steps {
  display: grid; gap: 1.6rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px; margin: 0 auto;
}
.lp-step {
  text-align: center; padding: 2rem 1.4rem;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow);
}
.lp-step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.6rem; height: 2.6rem; margin-bottom: 0.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1c1610; font-family: "Fraunces", serif; font-size: 1.3rem;
}
.lp-step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.lp-step p { color: var(--text-dim); font-size: 0.95rem; }

/* trust strip */
.lp-trust-strip { text-align: center; background: var(--bg-raise); }
.lp-trust-strip h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 1.6rem; }
.lp-trust-strip .trust-row { justify-content: center; flex-wrap: wrap; gap: 1.4rem; }

/* form card */
.lp-form-section { background: var(--olive-deep); }
.lp-form-card {
  max-width: 720px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 20px; box-shadow: var(--shadow);
  padding: clamp(1.6rem, 5vw, 3rem);
}
.lp-form-card .section-head { margin-bottom: 2rem; }
.optin-form select {
  padding: 0.7rem 0.8rem; border-radius: 10px;
  border: 1px solid var(--line); background: var(--bg); color: var(--text);
  font-family: "Jost", sans-serif; font-size: 1rem;
}
.optin-form select:focus { outline: none; border-color: var(--olive); }

/* minimal LP footer */
.lp-footer {
  text-align: center; padding: 2.4rem 1.5rem 3rem;
  border-top: 1px solid var(--line); background: var(--bg-raise);
}
.lp-footer-financing { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 0.6rem; }
.lp-footer-legal { color: var(--text-dim); font-size: 0.85rem; }

/* sticky mobile CTA */
.lp-sticky-cta {
  display: none;
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 60;
  text-align: center; padding: 0.95rem 1rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1c1610; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

@media (max-width: 900px) {
  .lp-popular-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-steps { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 640px) {
  .lp-header .brand-text { display: none; }
  .lp-sticky-cta { display: block; }
  .lp-popular-grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
}
