/* Hop & Glow Wellness — styles.css */
/* Built by Scion Media Digital — restraint over clutter */

:root {
  /* palette */
  --cream-bg:     #F5F0E8;
  --cream-light:  #FBF8F2;
  --surface:      #FFFFFF;
  --surface-soft: rgba(255,255,255,0.7);
  --gold:         #B8975A;
  --gold-light:   #C9A86A;
  --gold-dark:    #9A7C45;
  --sage:         #8A9A7E;
  --sage-dark:    #6E7D63;
  --sage-soft:    rgba(138,154,126,0.18);
  --body:         #3A3A36;
  --heading:      #2C2C28;
  --muted:        #6B6B65;
  --line:         rgba(184,151,90,0.22);

  /* typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-caps:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* sizing */
  --radius:     14px;
  --radius-sm:  10px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(58,58,54,0.06);
  --shadow:     0 8px 24px rgba(58,58,54,0.09);
  --shadow-lg:  0 20px 48px rgba(58,58,54,0.12);

  /* layout */
  --container:  1180px;
  --gutter:     clamp(20px, 4vw, 40px);

  /* motion */
  --ease:       cubic-bezier(.22,.61,.36,1);
  --ease-out:   cubic-bezier(.16,1,.3,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--cream-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--gold-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }

/* ---------- typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--heading);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-caps);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin: 0 0 1rem;
  display: inline-block;
}

.lead {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--body);
  max-width: 60ch;
}

/* ---------- layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
section { padding: clamp(60px, 9vw, 120px) 0; position: relative; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }
.surface-cream { background: var(--cream-light); }
.surface-sage  { background: linear-gradient(180deg, var(--cream-light) 0%, #ECEDE4 100%); }
.surface-soft  { background: var(--cream-bg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-caps);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(184,151,90,0.32);
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(184,151,90,0.55);
  pointer-events: none;
  animation: gold-breathe 3.4s ease-in-out infinite;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(184,151,90,0.45);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-sage {
  background: var(--sage-dark);
  color: #fff;
}
.btn-sage:hover { background: var(--sage); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: .82rem; }

@keyframes gold-breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,151,90,0.45); }
  50%      { box-shadow: 0 0 0 14px rgba(184,151,90,0.0); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-gold::after { animation: none; }
}

/* ---------- announcement bar ---------- */
.announce {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #fff;
  text-align: center;
  font-family: var(--font-caps);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 16px;
  position: relative;
  z-index: 60;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.announce a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.announce a:hover { color: var(--cream-light); }
.announce-short { display: none; }
@media (max-width: 640px) {
  .announce { font-size: .7rem; letter-spacing: .08em; padding: 8px 14px; }
  .announce-full { display: none; }
  .announce-short { display: inline; }
}

/* ---------- navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,240,232,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 2px 14px rgba(58,58,54,0.06);
  border-color: var(--line);
  background: rgba(251,248,242,0.96);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  min-height: 96px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-brand img {
  height: 96px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(58,58,54,0.06));
  transition: transform .3s var(--ease);
}
.nav-brand:hover img { transform: scale(1.03); }
.nav.scrolled .nav-brand img { height: 78px; transition: height .3s var(--ease); }
@media (max-width: 768px) {
  .nav-inner { min-height: 76px; padding: 12px 0; }
  .nav-brand img { height: 68px; }
  .nav.scrolled .nav-brand img { height: 60px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  color: var(--body);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 8px; }

/* drip-drop dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px) scale(.96);
  transform-origin: top center;
  min-width: 220px;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin-top: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .35s var(--ease-out);
}
.has-drop:hover > .drop,
.has-drop:focus-within > .drop {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.drop a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s var(--ease);
}
.has-drop:hover > .drop a,
.has-drop:focus-within > .drop a { opacity: 1; transform: none; }
.has-drop:hover > .drop a:nth-child(1) { transition-delay: .04s; }
.has-drop:hover > .drop a:nth-child(2) { transition-delay: .08s; }
.has-drop:hover > .drop a:nth-child(3) { transition-delay: .12s; }
.has-drop:hover > .drop a:nth-child(4) { transition-delay: .16s; }
.drop a:hover { background: rgba(184,151,90,0.10); color: var(--gold-dark); }

/* mobile nav */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: 9px 16px 9px 14px;
  cursor: pointer;
  color: var(--gold-dark);
  font-family: var(--font-caps);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .25s var(--ease), color .25s var(--ease);
  flex-shrink: 0;
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  background: var(--gold);
  color: #fff;
  outline: none;
}
.nav-toggle svg { width: 18px; height: 18px; stroke: currentColor; flex-shrink: 0; }
.nav-toggle .menu-label { line-height: 1; }
.nav-toggle[aria-expanded="true"] { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }

@media (max-width: 980px) {
  .nav-inner { justify-content: space-between; padding: 10px 0; min-height: 70px; gap: 12px; }
  .nav-brand img { height: 64px; }
  .nav.scrolled .nav-brand img { height: 56px; }
  /* collapse <nav> so the empty wrapper stops claiming flex space */
  .nav-inner > nav { display: contents; }

  .nav-links {
    position: fixed;
    inset: 0 0 0 28%;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream-light);
    padding: 86px 22px 40px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .35s var(--ease-out);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 14px 8px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .drop { position: static; transform: none; opacity: 1; pointer-events: auto; box-shadow: none; border: none; padding: 0 0 0 14px; background: transparent; }
  .drop a { opacity: 1; transform: none; padding: 10px 0; }
}
@media (max-width: 640px) {
  .nav-brand img { height: 58px; }
  .nav-toggle { padding: 9px 14px 9px 12px; font-size: .68rem; }
  .nav-toggle .menu-label { display: none; }
  .nav-toggle svg { width: 22px; height: 22px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 56px) 0 clamp(36px, 5vw, 64px);
  min-height: calc(100vh - 150px); /* announce(40) + nav(96) + a bit */
  display: flex;
  align-items: center;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(138,154,126,0.18) 0%, transparent 60%),
    radial-gradient(900px 500px at -10% 60%, rgba(184,151,90,0.14) 0%, transparent 65%),
    linear-gradient(180deg, var(--cream-light) 0%, var(--cream-bg) 100%);
}
.hero .container { width: 100%; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy { text-align: left; }
.hero-copy .eyebrow { margin-bottom: 14px; }
.hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 16px;
}
.hero .subhead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 52ch;
  margin-bottom: 24px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-meta {
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .04em;
  margin-top: 0;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.hero-meta svg { width: 16px; height: 16px; stroke: var(--gold); }

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art img.hero-logo {
  width: min(560px, 100%);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 44px rgba(58,58,54,0.10));
  animation: float-soft 7s ease-in-out infinite;
}

/* tablet */
@media (max-width: 980px) {
  .hero { min-height: auto; padding: 32px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .hero-copy { text-align: center; order: 2; }
  .hero-art   { order: 1; }
  .hero-art img.hero-logo { width: min(420px, 78%); }
  .hero .subhead { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-meta { justify-content: center; }
}

/* phone */
@media (max-width: 640px) {
  .hero { padding: 20px 0 36px; }
  .hero-inner { gap: 18px; }
  .hero-copy h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hero .subhead { font-size: .98rem; margin-bottom: 18px; }
  .hero-art img.hero-logo { width: 70%; max-width: 320px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { width: 100%; }
  .hero-meta { font-size: .78rem; gap: 14px; justify-content: center; }
  .iv-line { display: none; }
  .leaf-tl, .leaf-br { display: none; }
}
.hero-curtain {
  position: absolute;
  inset: 0;
  background: var(--cream-light);
  z-index: 5;
  pointer-events: none;
  animation: curtain-rise 1.3s var(--ease-out) forwards;
}
@keyframes curtain-rise {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-100%); opacity: 0; }
}
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-art img.hero-logo,
  .hero-curtain { animation: none; }
}
.hero h1 { margin-bottom: 1rem; }
.hero .subhead { color: var(--muted); font-size: 1.12rem; max-width: 50ch; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 2.5rem;
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta svg { width: 16px; height: 16px; stroke: var(--gold); }

/* hero side IV line */
.iv-line {
  position: absolute;
  top: 0; right: clamp(20px, 5vw, 60px);
  width: 2px;
  height: 0%;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 40%, var(--gold-light) 100%);
  z-index: 1;
  animation: iv-draw 1.6s .8s var(--ease-out) forwards;
}
@keyframes iv-draw { to { height: 60%; } }
@media (prefers-reduced-motion: reduce) { .iv-line { animation: none; height: 60%; } }

/* botanical leaves */
.leaf {
  position: absolute;
  opacity: .35;
  pointer-events: none;
  user-select: none;
}
.leaf-tl { top: 30px; left: 20px; width: 120px; transform: rotate(-20deg); }
.leaf-br { bottom: 30px; right: 30px; width: 140px; transform: rotate(135deg); }

/* ---------- trust strip / marquee ---------- */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
}
.marquee {
  display: flex;
  gap: 60px;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee span {
  font-family: var(--font-caps);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.marquee span::after {
  content: "✿";
  color: var(--gold);
  font-size: .9rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } }

/* ---------- how it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
}
.step {
  text-align: center;
  padding: 8px;
}
.step-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--cream-light);
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line);
  position: relative;
}
.step-icon svg { width: 32px; height: 32px; stroke: var(--gold-dark); stroke-width: 1.5; fill: none; }
.step-num {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--gold);
  color: #fff;
  width: 26px; height: 26px;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 1.4rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .98rem; }

/* ---------- cards ---------- */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.card h3 { margin-top: 0; }
.card-eyebrow {
  font-family: var(--font-caps);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 36px); }

/* service card (home) */
.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184,151,90,0.10) 0%, rgba(138,154,126,0.12) 100%);
  display: flex; align-items: center; justify-content: center;
}
.service-card-icon svg { width: 30px; height: 30px; stroke: var(--gold-dark); fill: none; stroke-width: 1.4; }
.service-card p { color: var(--muted); margin-bottom: 1.4em; }

/* nutrient cards (IV / NAD / injections pages) */
.nutrient-card {
  background: var(--surface);
  border-left: 3px solid var(--gold);
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.nutrient-card:hover { transform: translateX(2px); box-shadow: var(--shadow); }
.nutrient-card h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 6px;
  color: var(--heading);
}
.nutrient-card .nut-tag {
  display: inline-block;
  font-family: var(--font-caps);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(184,151,90,0.10);
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 8px;
}
.nutrient-card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- symptom strip ---------- */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.symptom-cell {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  text-align: center;
  font-family: var(--font-caps);
  font-size: .85rem;
  letter-spacing: .04em;
  color: var(--body);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.symptom-cell:hover { background: var(--surface); transform: translateY(-2px); }
.symptom-cell svg { width: 32px; height: 32px; margin: 0 auto 10px; stroke: var(--sage-dark); fill: none; stroke-width: 1.4; }

/* ---------- reviews ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review {
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
}
.review-stars { color: var(--gold); letter-spacing: .12em; margin-bottom: 14px; font-size: 1.1rem; }
.review blockquote {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--heading);
  margin: 0 0 16px;
  font-style: italic;
}
.review cite {
  font-family: var(--font-caps);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-style: normal;
}

/* ---------- meet bunny teaser ---------- */
.bunny-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bunny-teaser .img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sage-soft);
  box-shadow: var(--shadow);
  position: relative;
}
.bunny-teaser .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: left top;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 70% 30%, rgba(184,151,90,0.22) 0%, transparent 60%),
    linear-gradient(135deg, #2C2C28 0%, #3A3A36 100%);
  color: var(--cream-light);
  padding: clamp(60px, 9vw, 110px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--cream-light); margin-bottom: 14px; }
.cta-band p { color: rgba(245,240,232,0.78); max-width: 50ch; margin: 0 auto 28px; font-size: 1.08rem; }
.cta-band .btn-gold { box-shadow: 0 8px 24px rgba(184,151,90,0.45); }

/* ---------- footer ---------- */
footer.site-footer {
  background: var(--cream-light);
  border-top: 1px solid var(--line);
  padding: 70px 0 30px;
  color: var(--body);
  font-size: .94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-grid h4 {
  font-family: var(--font-caps);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-grid img.foot-logo { width: 200px; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--body); }
.footer-grid a:hover { color: var(--gold-dark); }

.disclaimer {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
}
.attribution {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--muted);
}
.attribution a { color: var(--gold-dark); }
.attribution-mark { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- sticky mobile bar ---------- */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, var(--cream-light) 0%, rgba(251,248,242,0.98) 100%);
  border-top: 1px solid var(--line);
  padding: 10px 14px;
  z-index: 70;
  display: none;
  gap: 10px;
  box-shadow: 0 -4px 18px rgba(58,58,54,0.08);
}
.mobile-bar .btn-gold { flex: 1; padding: 14px; font-size: .85rem; }
.mobile-bar .call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--sage-dark);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.mobile-bar .call svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.8; }
.mobile-bar .call::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(110,125,99,0.6);
  animation: pulse-call 2.6s ease-out infinite;
}
@keyframes pulse-call {
  0%, 100% { box-shadow: 0 0 0 0 rgba(110,125,99,0.55); }
  50%      { box-shadow: 0 0 0 12px rgba(110,125,99,0); }
}
@media (max-width: 768px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 80px; }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-bar .call::before { animation: none; }
}

/* ---------- popup ---------- */
.popup-mask {
  position: fixed;
  inset: 0;
  background: rgba(44,44,40,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.popup-mask.show { display: flex; opacity: 1; }
.popup {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 44px 36px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(40px) scale(.92);
  opacity: 0;
  transition: transform .55s var(--ease-out), opacity .35s var(--ease);
}
.popup-mask.show .popup { transform: translateY(0) scale(1); opacity: 1; }
.popup::before {
  content: "";
  position: absolute;
  top: -8px; left: 50%;
  width: 60px; height: 60px;
  transform: translate(-50%, 0);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(184,151,90,0.32) 0%, transparent 70%);
  animation: ripple 1.8s var(--ease-out) .6s 2;
  pointer-events: none;
}
@keyframes ripple {
  0%   { transform: translate(-50%, 0) scale(.5); opacity: .8; }
  100% { transform: translate(-50%, 0) scale(2.6); opacity: 0; }
}
.popup img.pop-logo { width: 64px; margin: 0 auto 16px; }
.popup h3 { margin-bottom: 6px; font-size: 1.6rem; }
.popup p { color: var(--muted); margin-bottom: 22px; }
.popup form { display: grid; gap: 10px; }
.popup .close {
  position: absolute; top: 12px; right: 12px;
  background: transparent; border: none; cursor: pointer;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
}
.popup .close:hover { color: var(--heading); }
@media (prefers-reduced-motion: reduce) {
  .popup::before { animation: none; display: none; }
  .popup { transform: none; }
}

/* ---------- forms ---------- */
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], select, textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .98rem;
  color: var(--body);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,151,90,0.15);
}
label {
  display: block;
  font-family: var(--font-caps);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
  font-weight: 600;
}
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.error-msg { color: #B6443A; font-size: .82rem; margin-top: 6px; display: none; }
.field.error input,
.field.error select { border-color: #C9685E; }
.field.error .error-msg { display: block; }

/* ---------- IV-fill scroll progress ---------- */
.iv-progress {
  position: fixed;
  top: 0; right: 6px;
  width: 3px;
  height: 100vh;
  background: rgba(184,151,90,0.10);
  z-index: 80;
  border-radius: 2px;
  pointer-events: none;
}
.iv-progress::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: var(--iv-progress, 0%);
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 2px;
  transition: height .12s linear;
}
@media (max-width: 768px) { .iv-progress { display: none; } }
@media (prefers-reduced-motion: reduce) { .iv-progress::after { transition: none; } }

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out), filter .85s var(--ease-out);
  will-change: opacity, transform, filter;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ---------- section divider leaf ---------- */
.divider-leaves {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  color: var(--gold);
  margin: 0 auto 28px;
  opacity: .8;
}
.divider-leaves::before, .divider-leaves::after {
  content: "";
  height: 1px; width: 60px;
  background: var(--line);
}

/* ---------- build your drip ---------- */
.drip-builder {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
  position: relative;
}
.drip-builder .locked-tag {
  display: inline-block;
  background: rgba(184,151,90,0.12);
  color: var(--gold-dark);
  font-family: var(--font-caps);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.goal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.goal-btn {
  background: var(--cream-light);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  cursor: pointer;
  text-align: center;
  font-family: var(--font-caps);
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--body);
  transition: all .25s var(--ease);
}
.goal-btn:hover { border-color: var(--gold); background: var(--surface); transform: translateY(-2px); }
.goal-btn.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  border-color: var(--gold);
}
.goal-btn .goal-icon { display: block; margin: 0 auto 8px; font-size: 1.4rem; }
.drip-result {
  margin-top: 24px;
  padding: 24px;
  background: var(--cream-light);
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  display: none;
}
.drip-result.show { display: block; animation: fade-in .4s var(--ease-out); }
.drip-result h4 { font-size: 1.4rem; margin-bottom: 6px; }
.drip-result .recom-tag { font-family: var(--font-caps); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-dark); }
.drip-result ul { padding-left: 20px; margin: 14px 0; }
.drip-result li { color: var(--body); margin-bottom: 4px; }
.drip-result .nurse-note { font-size: .82rem; color: var(--muted); margin-top: 14px; font-style: italic; }
@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- payment methods card ---------- */
.pay-card {
  background: var(--cream-light);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  box-shadow: var(--shadow);
}
.pay-card::before, .pay-card::after {
  content: "";
  position: absolute;
  width: 28px; height: 28px;
  border: 2px solid var(--gold);
}
.pay-card::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.pay-card::after  { bottom: 10px; right: 10px; border-left: none; border-top: none; }
.pay-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 6px;
}
.pay-card .pay-sub {
  text-align: center;
  font-family: var(--font-caps);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 28px;
}
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.pay-method {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
}
.pay-method .pay-icon {
  width: 40px; height: 40px;
  margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(184,151,90,0.10);
  color: var(--gold-dark);
}
.pay-method .pay-icon svg { width: 22px; height: 22px; }
.pay-method strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--heading);
}
.pay-method .handle {
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: .82rem;
  color: var(--muted);
  word-break: break-all;
}
.pay-note {
  text-align: center;
  font-size: .92rem;
  color: var(--body);
  margin: 0 0 4px;
}
.pay-note small { color: var(--muted); display: block; margin-top: 6px; font-size: .8rem; }

/* ---------- FAQ accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--heading);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  transition: color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform .35s var(--ease-out);
  width: 22px; text-align: center;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq-item summary:hover { color: var(--gold-dark); }
.faq-item .answer {
  padding: 0 0 22px;
  color: var(--body);
  line-height: 1.7;
  max-width: 75ch;
}

/* ---------- pricing table ---------- */
.price-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th, .price-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.price-table thead th {
  background: var(--cream-light);
  font-family: var(--font-caps);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table .price { font-family: var(--font-serif); font-size: 1.15rem; color: var(--heading); white-space: nowrap; }

/* ---------- intake banner ---------- */
.intake-banner {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  color: #fff;
  padding: 28px 32px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.intake-banner h3 { color: #fff; margin: 0 0 4px; }
.intake-banner p { margin: 0; opacity: .92; font-size: .95rem; }
.intake-banner .btn { background: #fff; color: var(--sage-dark); }
.intake-banner .btn:hover { background: var(--cream-light); color: var(--sage-dark); }

/* ---------- thank-you state ---------- */
.thanks {
  text-align: center;
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: 48px 32px;
  display: none;
}
.thanks.show { display: block; }
.thanks h2 { margin-bottom: 12px; }
.thanks p { color: var(--muted); max-width: 40ch; margin: 0 auto 20px; }

/* ---------- utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-inner,
  .bunny-teaser { grid-template-columns: 1fr; gap: 40px; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 640px) {
  .card-grid-3, .card-grid-2, .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-meta { gap: 12px; flex-direction: column; }
}
