/* ============================================================
   DESIGN SYSTEM — Elizabeth Marcelena × EllieMD
   Warm, feminine, premium. For women 25–60 doing the work.
   ============================================================ */

:root {
  /* ===== Brand palette =====
     Blush · Champagne · Cognac · Amber · Emerald · Espresso */
  --color-blush:           #F9EDF0;  /* page background */
  --color-champagne:       #E6C8B7;  /* deeper soft surface */
  --color-champagne-soft:  #F2DCC8;  /* alt section background */
  --color-cognac:          #C3955B;  /* warm gold accent */
  --color-amber:           #BA6A36;  /* primary CTA, primary accent */
  --color-amber-deep:      #993F1F;  /* CTA hover */
  --color-emerald:         #1C3934;  /* dark surfaces, secondary accent */
  --color-emerald-deep:    #122724;
  --color-espresso:        #261311;  /* primary text, deepest dark surface */
  --color-espresso-deep:   #1A0B09;
  --color-paper:           #FFFFFF;  /* card surfaces */

  /* Text + borders — derived warm tones for legibility on light surfaces */
  --color-text-soft:       #6E4E44;  /* secondary text */
  --color-text-mute:       #A89189;  /* tertiary text */
  --color-border:          #D9C4B5;
  --color-border-soft:     #ECDDD0;

  /* ===== Compatibility aliases — keep existing variable names working ===== */
  --color-cream:           var(--color-blush);
  --color-blush-soft:      var(--color-champagne-soft);
  --color-charcoal:        var(--color-espresso);
  --color-warm-gray:       var(--color-text-soft);
  --color-warm-gray-light: var(--color-text-mute);
  --color-terracotta:      var(--color-amber);
  --color-terracotta-deep: var(--color-amber-deep);
  --color-sage:            var(--color-emerald);
  --color-sage-deep:       var(--color-emerald-deep);

  /* Typography */
  --font-serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Layout */
  --container-max: 1200px;
  --content-max: 65ch;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Shadows — soft, never harsh */
  --shadow-sm: 0 1px 2px rgba(38, 19, 17, 0.04), 0 2px 6px rgba(38, 19, 17, 0.04);
  --shadow-md: 0 4px 12px rgba(38, 19, 17, 0.06), 0 12px 32px rgba(38, 19, 17, 0.05);
  --shadow-lg: 0 12px 40px rgba(38, 19, 17, 0.10);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--color-cream);
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
em { font-style: italic; }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
@media (min-width: 768px) {
  .container { padding-inline: var(--space-7); }
}

.section {
  padding-block: var(--space-9);
}
.section--alt {
  background: var(--color-blush-soft);
}
.section--final-cta {
  background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-blush-soft) 100%);
  text-align: center;
}
@media (max-width: 767px) {
  .section { padding-block: var(--space-8); }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-terracotta);
  margin-bottom: var(--space-4);
}

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }

.hero__headline {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}
.hero__headline em {
  font-style: italic;
  color: var(--color-terracotta);
  font-weight: 400;
}

.section__headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: var(--space-4);
  max-width: 24ch;
}
.section--final-cta .section__headline { margin-inline: auto; }
.section__headline em { color: var(--color-terracotta); font-style: italic; font-weight: 400; }

.section__lead {
  color: var(--color-warm-gray);
  font-size: 1.1rem;
  max-width: var(--content-max);
}

.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--color-warm-gray);
  margin-bottom: var(--space-6);
  max-width: 52ch;
  line-height: 1.55;
}
.hero__sub em { font-style: italic; color: var(--color-charcoal); font-weight: 500; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
}
.btn--sm { padding: 10px 18px; font-size: 14px; }

.btn--primary {
  background: var(--color-terracotta);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--color-terracotta-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--color-charcoal);
  border: 1.5px solid var(--color-charcoal);
}
.btn--secondary:hover {
  background: var(--color-charcoal);
  color: var(--color-cream);
  transform: translateY(-1px);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.cta-group--center { justify-content: center; margin-inline: auto; }

.cta-helper {
  margin-top: var(--space-3);
  font-size: 13px;
  color: var(--color-warm-gray-light);
  letter-spacing: 0.02em;
}

@media (max-width: 540px) {
  .btn { width: 100%; }
  .cta-group { flex-direction: column; }
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 237, 240, 0.85);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--color-border-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding-block: var(--space-3);
}
.site-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.1;
}
.site-logo__name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--color-charcoal);
}
.site-logo__tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta);
}

.site-nav {
  display: flex;
  gap: var(--space-6);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-warm-gray);
}
.site-nav a { transition: color 0.15s var(--ease); }
.site-nav a:hover { color: var(--color-charcoal); }

.site-header__cta { display: flex; gap: var(--space-2); }

.nav-toggle { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; height: 2px; background: var(--color-charcoal); border-radius: 2px; transition: transform 0.2s var(--ease); }

@media (max-width: 960px) {
  .site-nav { display: none; }
}
@media (max-width: 640px) {
  .site-header__cta .btn:first-child { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(186, 106, 54, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(195, 149, 91, 0.07) 0%, transparent 50%),
    var(--color-cream);
  padding-block: var(--space-9) 0;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-9);
  align-items: center;
  padding-bottom: var(--space-9);
}
.hero__copy { max-width: 620px; }

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
}
.hero__photo {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-blush-soft) 100%);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(38, 19, 17, 0.45);
  font-size: 1.1rem;
  background:
    repeating-linear-gradient(45deg, transparent 0 24px, rgba(38, 19, 17, 0.025) 24px 25px),
    linear-gradient(135deg, var(--color-blush) 0%, var(--color-blush-soft) 100%);
}

.hero__stat-card {
  position: absolute;
  background: var(--color-paper);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border-soft);
}
.hero__stat-card--1 {
  top: -3%;
  left: -12%;
  transform: rotate(-3deg);
}
.hero__stat-card--2 {
  bottom: -3%;
  right: -10%;
  transform: rotate(2deg);
}
.hero__stat-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-terracotta);
  line-height: 1.1;
}
.hero__stat-label {
  font-size: 12px;
  color: var(--color-warm-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding-bottom: var(--space-8);
  }
  .hero__visual {
    max-width: 360px;           /* slightly narrower since 9:16 is tall */
    margin-inline: auto;
    aspect-ratio: 9 / 16;        /* MATCH the actual video ratio so top/bottom don't crop */
  }
  .hero__stat-card--1 { left: -4%; }
  .hero__stat-card--2 { right: -2%; }
}
@media (max-width: 540px) {
  .hero__stat-card { padding: var(--space-3) var(--space-4); }
  .hero__stat-card--1 { top: -2%; left: -2%; }
  .hero__stat-card--2 { bottom: -2%; right: -2%; }
  .hero__stat-number { font-size: 1.2rem; }
  .hero__stat-label { font-size: 11px; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--color-charcoal);
  color: var(--color-cream);
  padding-block: var(--space-4);
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-6);
  text-align: center;
}
.trust-strip__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 237, 240, 0.5);
  width: 100%;
  margin-bottom: -4px;
}
@media (min-width: 768px) {
  .trust-strip__label {
    width: auto;
    margin-bottom: 0;
    margin-right: var(--space-3);
    padding-right: var(--space-5);
    border-right: 1px solid rgba(249, 237, 240, 0.15);
  }
}
.trust-item {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(249, 237, 240, 0.75);
}
.trust-item strong {
  color: var(--color-cream);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(249, 237, 240, 0.3);
}
@media (max-width: 540px) {
  .trust-divider { display: none; }
  .trust-strip__inner { gap: var(--space-2) var(--space-5); }
}

/* ============================================================
   HERO VIDEO
   ============================================================ */
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: contain;          /* show full video — no cropping */
  background: var(--color-espresso);
  display: block;
}
.hero__video-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(38, 19, 17, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-cream);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  pointer-events: none;
  z-index: 1;
}
.hero__video-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(186, 106, 54, 0.3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero__photo { position: relative; }

/* ============================================================
   STORY SECTION
   ============================================================ */
.section--story { background: var(--color-paper); }

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: var(--space-8);
  align-items: start;
}

.story__text { max-width: 64ch; }
.story__body {
  margin-block: var(--space-5) var(--space-6);
  color: var(--color-charcoal);
  font-size: 1.08rem;
  line-height: 1.7;
}
.story__body p + p { margin-top: var(--space-4); }
.story__body strong {
  color: var(--color-charcoal);
  font-weight: 600;
  background: linear-gradient(180deg, transparent 60%, rgba(186, 106, 54, 0.18) 60%);
}

.story__pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.3;
  color: var(--color-terracotta);
  border-left: 3px solid var(--color-terracotta);
  padding: var(--space-3) var(--space-5);
  margin-block: var(--space-6);
  background: var(--color-blush-soft);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.story__sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: sticky;
  top: 96px;
}

.eyebrow--sm { font-size: 11px; margin-bottom: var(--space-3); }

.stat-pull {
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-deep) 100%);
  color: var(--color-cream);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.stat-pull__number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1;
  color: var(--color-terracotta);
  letter-spacing: -0.02em;
}
.stat-pull__label {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: var(--space-2);
  letter-spacing: 0.01em;
}
.stat-pull__sub {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(249, 237, 240, 0.6);
  margin-top: var(--space-3);
}

.story__list-card {
  background: var(--color-blush-soft);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
}

.check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-charcoal);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-terracotta);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8.5L6.5 11L12 5.5' stroke='%23F9EDF0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.protocol-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.protocol-list li {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}
.protocol-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.protocol-list strong {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-charcoal);
}
.protocol-list span {
  font-size: 12px;
  color: var(--color-warm-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

@media (max-width: 960px) {
  .story__grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .story__sidebar { position: static; }
}

/* ============================================================
   TESTIMONIALS GRID
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-5);
  margin-block: var(--space-7);
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-6);
  }
}

.testimonial {
  background: var(--color-paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial__media {
  width: 100%;
  background: var(--color-blush-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.testimonial__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 540px;
}

.testimonial__caption {
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--color-border-soft);
  background: var(--color-paper);
}
.testimonial__stat {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-terracotta);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.testimonial__meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-warm-gray);
  font-weight: 500;
}

/* Expanding flex cards — accordion-style horizontal expand on hover/click
   Inspired by Zed Dash's "Expanding flex cards" CodePen pattern */
.expanding-hint {
  font-size: 12px;
  color: var(--color-text-mute);
  text-align: center;
  margin-block: var(--space-5) var(--space-4);
  letter-spacing: 0.04em;
  font-style: italic;
}
.expanding-cards {
  display: flex;
  gap: 12px;
  height: clamp(440px, 64vh, 640px);
  width: 100%;
  margin-block: 0 var(--space-7);
}
.expanding-card {
  position: relative;
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: var(--color-champagne-soft);
  box-shadow: var(--shadow-sm);
  transition: flex-grow 0.65s cubic-bezier(0.32, 0.72, 0.21, 1), box-shadow 0.4s var(--ease);
  font: inherit;
  outline: none;
}
.expanding-card:focus-visible { box-shadow: 0 0 0 3px var(--color-amber); }
.expanding-card.is-active {
  flex: 5;
  box-shadow: var(--shadow-md);
}
.expanding-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.5s var(--ease), filter 0.5s var(--ease);
  background: var(--color-champagne-soft);
}
/* Active card: show the FULL branded testimonial without cropping */
.expanding-card.is-active img {
  object-fit: contain;
}
.expanding-card:not(.is-active) img {
  opacity: 0.78;
  filter: saturate(0.85) brightness(0.94);
}

/* Bottom strip overlay shown when collapsed */
.expanding-card__strip {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-3) 6px;
  background: linear-gradient(180deg, transparent 0%, rgba(38, 19, 17, 0.85) 100%);
  color: var(--color-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  text-align: center;
}
.expanding-card__strip-stat {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: var(--color-cream);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.expanding-card__strip-name {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(249, 237, 240, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.expanding-card.is-active .expanding-card__strip { opacity: 0; }

/* Mobile: convert the expanding-cards into a horizontal scroll-snap
   carousel. Full-size testimonial cards, native swipe gesture, peek of
   next card visible so users know there's more. */
@media (max-width: 768px) {
  /* Replace desktop "Hover or tap" hint with mobile swipe instruction */
  .expanding-hint {
    margin-block: var(--space-4) var(--space-3);
    font-size: 0;          /* hide the desktop text */
    letter-spacing: 0;
    text-align: center;
  }
  .expanding-hint::before {
    content: '← swipe through testimonials →';
    font-size: 11px;
    color: var(--color-amber);
    font-weight: 600;
    letter-spacing: 0.08em;
    font-style: normal;
  }

  .expanding-cards {
    display: flex;
    flex-direction: row;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--space-3);
    padding: 0 var(--space-5) var(--space-3);
    margin-inline: calc(var(--space-5) * -1);
    scrollbar-width: none;
  }
  .expanding-cards::-webkit-scrollbar { display: none; }

  .expanding-card {
    flex: 0 0 auto;
    width: 85%;
    max-width: 380px;
    aspect-ratio: 2 / 3;
    scroll-snap-align: center;
    cursor: default;
    transition: none;
  }
  .expanding-card.is-active {
    flex: 0 0 auto;
    width: 85%;
  }
  .expanding-card__strip { display: none; }
  .expanding-card img,
  .expanding-card.is-active img {
    object-fit: cover;
    object-position: center top;
    opacity: 1;
    filter: none;
    transform: none;
  }

  /* First and last card need a touch of breathing room on edges */
  .expanding-card:first-child { margin-left: 0; }
  .expanding-card:last-child { margin-right: 0; }
}

/* Very narrow phones — slightly larger card */
@media (max-width: 420px) {
  .expanding-card {
    width: 90%;
  }
}

.testimonials__disclaimer {
  font-size: 12px;
  color: var(--color-warm-gray-light);
  line-height: 1.6;
  max-width: 70ch;
  margin: var(--space-6) auto var(--space-7);
  text-align: center;
  padding: var(--space-4);
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}

/* ============================================================
   NOTE FROM ME — disclaimer band (medical-advice)
   ============================================================ */
.note-band {
  background: var(--color-blush-soft);
  border-block: 1px solid var(--color-border);
  padding-block: var(--space-6);
}
.note-band__inner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  max-width: 920px;
  margin-inline: auto;
}
.note-band__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-paper);
  color: var(--color-terracotta);
  display: grid;
  place-items: center;
  border: 1.5px solid var(--color-border);
}
.note-band__icon svg { width: 22px; height: 22px; }
.note-band__copy p:not(.eyebrow) {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-charcoal);
}
.note-band__copy strong { color: var(--color-charcoal); font-weight: 700; }
.note-band__copy em {
  font-style: italic;
  color: var(--color-terracotta);
  font-weight: 500;
}
@media (max-width: 540px) {
  .note-band__inner { flex-direction: column; gap: var(--space-3); }
}

/* ============================================================
   YOUTUBE VIDEO EMBED — lazy-load facade
   ============================================================ */
.video-embed {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto var(--space-7);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-charcoal);
  box-shadow: var(--shadow-md);
}
.video-embed__btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  transition: transform 0.4s var(--ease);
}
.video-embed__thumb,
.video-embed__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}
.video-embed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 19, 17, 0) 50%, rgba(38, 19, 17, 0.85) 100%);
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.video-embed:hover .video-embed__thumb img { transform: scale(1.04); filter: brightness(0.9); }
.video-embed:hover .video-embed__play {
  background: var(--color-terracotta);
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 8px 32px rgba(186, 106, 54, 0.55);
}

.video-embed__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(64px, 8vw, 88px);
  height: clamp(64px, 8vw, 88px);
  border-radius: 50%;
  background: rgba(186, 106, 54, 0.95);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 24px rgba(38, 19, 17, 0.45), 0 0 0 8px rgba(249, 237, 240, 0.18);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  z-index: 2;
}
.video-embed__play svg {
  width: 38%;
  height: 38%;
  transform: translateX(2px);
}

.video-embed__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--color-cream);
  text-align: left;
  z-index: 2;
}
.video-embed__caption-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  font-weight: 600;
}
.video-embed__caption-title {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  font-weight: 500;
  line-height: 1.3;
  max-width: 60ch;
}

.video-embed--active::after,
.video-embed--active .video-embed__caption,
.video-embed--active .video-embed__play { display: none; }
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 540px) {
  .video-embed__caption { padding: var(--space-4); }
}

/* ============================================================
   PEPTIDES 101 — info grid (3 cards)
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-7);
}
.info-card {
  background: var(--color-paper);
  padding: var(--space-6);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-sm);
}
.info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-blush-soft);
  color: var(--color-terracotta);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
}
.info-card__icon svg { width: 26px; height: 26px; }
.info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: var(--space-3);
  color: var(--color-charcoal);
}
.info-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-warm-gray);
}

/* ============================================================
   BEYOND THE SCALE — six unexpected benefits grid
   ============================================================ */
.section--beyond {
  background:
    radial-gradient(circle at 100% 0%, rgba(195, 149, 91, 0.10) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(28, 57, 52, 0.06) 0%, transparent 40%),
    var(--color-blush);
}
.section--beyond .section__lead { max-width: 64ch; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
  margin-block: var(--space-7) var(--space-5);
}
.benefit {
  background: var(--color-paper);
  padding: var(--space-6);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.benefit__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-cognac) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(186, 106, 54, 0.3);
}
.benefit__icon svg { width: 26px; height: 26px; }

/* Stagger icon gradients for visual rhythm across the 6 cards */
.benefit:nth-child(2) .benefit__icon {
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-deep) 100%);
  box-shadow: 0 4px 16px rgba(28, 57, 52, 0.3);
}
.benefit:nth-child(3) .benefit__icon {
  background: linear-gradient(135deg, var(--color-cognac) 0%, var(--color-amber) 100%);
}
.benefit:nth-child(4) .benefit__icon {
  background: linear-gradient(135deg, var(--color-amber-deep) 0%, var(--color-amber) 100%);
}
.benefit:nth-child(5) .benefit__icon {
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-deep) 100%);
  box-shadow: 0 4px 16px rgba(28, 57, 52, 0.3);
}
.benefit:nth-child(6) .benefit__icon {
  background: linear-gradient(135deg, var(--color-cognac) 0%, var(--color-amber-deep) 100%);
}

.benefit h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.005em;
  color: var(--color-charcoal);
  margin-bottom: var(--space-3);
  line-height: 1.25;
}
.benefit p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--color-warm-gray);
}
.benefit em {
  color: var(--color-amber-deep);
  font-style: italic;
  font-weight: 600;
}

.benefits-grid__footnote {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-mute);
  font-style: italic;
  max-width: 56ch;
  margin: var(--space-6) auto 0;
  line-height: 1.6;
}

/* ============================================================
   PRICING CALLOUT INSIDE PRODUCT-CTA-CARD
   ============================================================ */
.product-cta-card__price {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(249, 237, 240, 0.18);
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: rgba(249, 237, 240, 0.85) !important;
  letter-spacing: 0.005em;
}
.product-cta-card__price strong {
  color: var(--color-cognac);
  font-weight: 700;
  font-family: var(--font-serif);
  font-size: 14px;
}

/* ============================================================
   STEP NOTE — eligibility callout inside How It Works step
   ============================================================ */
.step__note {
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-paper);
  border-left: 3px solid var(--color-amber);
  border-radius: var(--radius-sm);
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: var(--color-warm-gray);
}
.step__note strong {
  color: var(--color-amber-deep);
  font-weight: 700;
}

/* ============================================================
   PRODUCT SECTIONS — shared structures
   ============================================================ */
.section--product .product-header { max-width: 64ch; margin-bottom: var(--space-7); }
.product__pillars-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 500;
  margin-block: var(--space-7) var(--space-5);
  letter-spacing: -0.01em;
}

/* KLOW ingredient row */
.ingredient-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-blush-soft);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
}
.ingredient {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.ingredient__letter {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-charcoal);
  color: var(--color-cream);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
}
.ingredient strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-charcoal);
  line-height: 1.1;
}
.ingredient span {
  display: block;
  font-size: 12px;
  color: var(--color-warm-gray);
  margin-top: 3px;
  letter-spacing: 0.02em;
}

/* KLOW pillar grid (4 cards) */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}
.pillar {
  background: var(--color-paper);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
}
.pillar__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-deep) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
}
.pillar__icon svg { width: 22px; height: 22px; }
.pillar h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: var(--space-2);
  color: var(--color-charcoal);
}
.pillar p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-warm-gray);
}

/* Timeline (KLOW journey) */
.timeline {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
  position: relative;
}
.timeline__step {
  background: var(--color-blush-soft);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  position: relative;
  border-top: 4px solid var(--color-terracotta);
}
.timeline__step:nth-child(2) { border-top-color: var(--color-sage); }
.timeline__step:nth-child(3) { border-top-color: var(--color-charcoal); }
.timeline__when {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--space-3);
}
.timeline__step:nth-child(2) .timeline__when { color: var(--color-sage-deep); }
.timeline__step:nth-child(3) .timeline__when { color: var(--color-charcoal); }
.timeline__step h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: var(--space-3);
  color: var(--color-charcoal);
}
.timeline__step p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-warm-gray);
}

/* Product CTA card (shared between KLOW + GLP-1) */
.product-cta-card {
  margin-top: var(--space-7);
  padding: var(--space-7);
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-deep) 100%);
  color: var(--color-cream);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.product-cta-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.2;
  color: var(--color-cream);
  margin-bottom: var(--space-3);
}
.product-cta-card p {
  color: rgba(249, 237, 240, 0.7);
  font-size: 0.95rem;
  line-height: 1.55;
}
.product-cta-card .eyebrow { color: var(--color-terracotta); }
.product-cta-card .btn--secondary {
  color: var(--color-cream);
  border-color: rgba(249, 237, 240, 0.4);
}
.product-cta-card .btn--secondary:hover {
  background: var(--color-cream);
  color: var(--color-charcoal);
}
@media (max-width: 768px) {
  .product-cta-card { grid-template-columns: 1fr; padding: var(--space-6); }
}

/* GLP-1 mechanism grid */
.mech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.mech-card {
  background: var(--color-paper);
  padding: var(--space-6);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
}
.mech-card--accent {
  background: var(--color-charcoal);
  color: var(--color-cream);
  border: 0;
}
.mech-card--accent .eyebrow { color: var(--color-terracotta); }
.mech-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: var(--space-3);
}
.mech-card--accent h3 { color: var(--color-cream); }
.mech-card p { font-size: 0.98rem; line-height: 1.6; color: var(--color-warm-gray); }
.mech-card--accent p { color: rgba(249, 237, 240, 0.75); }
.mech-card--accent strong { color: var(--color-cream); }
@media (max-width: 768px) {
  .mech-grid { grid-template-columns: 1fr; }
}

/* GLP-1 why-b12 + microdose */
.why-b12 {
  background: var(--color-blush-soft);
  padding: var(--space-6);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-6);
  border-left: 4px solid var(--color-terracotta);
}
.why-b12 h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: var(--space-3);
  color: var(--color-charcoal);
}
.why-b12 h3 em {
  color: var(--color-amber);
  font-style: italic;
  font-weight: 600;
}
.why-b12 p { font-size: 0.98rem; line-height: 1.6; color: var(--color-warm-gray); }
.why-b12 p strong { color: var(--color-charcoal); font-weight: 600; }

.additive-list {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.additive-list li {
  background: var(--color-paper);
  border-left: 3px solid var(--color-amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-3) var(--space-4);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-warm-gray);
}
.additive-list li strong {
  font-family: var(--font-serif);
  color: var(--color-charcoal);
  font-weight: 600;
  font-size: 1.05em;
}
.additive-list li:first-child {
  border-left-color: var(--color-amber-deep);
  background: linear-gradient(90deg, rgba(186, 106, 54, 0.06) 0%, var(--color-paper) 30%);
}

.microdose {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-6);
  align-items: center;
  background: var(--color-paper);
  padding: var(--space-7);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
}
.microdose__copy h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: var(--space-3);
  color: var(--color-charcoal);
}
.microdose__copy p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-warm-gray);
}
.microdose__copy p + p { margin-top: var(--space-3); }
.microdose__visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.dose-pill {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1.5px solid var(--color-border);
}
.dose-pill--full {
  background: var(--color-terracotta);
  color: var(--color-cream);
  border-color: var(--color-terracotta);
}
.dose-pill--micro {
  background: var(--color-paper);
  color: var(--color-charcoal);
  border-color: var(--color-terracotta);
}
.dose-pill span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}
.dose-pill small {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}
.dose-pill em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.04em;
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px solid currentColor;
  border-color: rgba(255,255,255,0.25);
  display: block;
  opacity: 0.95;
}
.dose-pill--micro em {
  border-color: rgba(38, 19, 17, 0.18);
}
.dose-pill em strong {
  font-weight: 700;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .microdose { grid-template-columns: 1fr; padding: var(--space-5); }
}

/* ============================================================
   WALKTHROUGH — "Create free profile → All peptides under Products tab"
   ============================================================ */
.walkthrough {
  background: var(--color-paper);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  margin-block: var(--space-7) var(--space-6);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.walkthrough::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(186, 106, 54, 0.06) 0%, transparent 35%),
    radial-gradient(circle at 100% 100%, rgba(28, 57, 52, 0.06) 0%, transparent 35%);
  pointer-events: none;
}
.walkthrough__eyebrow {
  text-align: center;
  margin-bottom: var(--space-5);
  position: relative;
}

.walkthrough__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-5);
  align-items: stretch;
  position: relative;
}

.walkthrough__step {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-blush);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  align-items: flex-start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.walkthrough__step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.walkthrough__step--accent {
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-deep) 100%);
  border-color: var(--color-emerald-deep);
  color: var(--color-cream);
}

.walkthrough__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-amber-deep) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 16px rgba(186, 106, 54, 0.35);
}
.walkthrough__step--accent .walkthrough__num {
  background: linear-gradient(135deg, var(--color-cognac) 0%, var(--color-amber) 100%);
}

.walkthrough__copy { flex: 1; }
.walkthrough__copy h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.3;
  margin-bottom: var(--space-2);
  color: var(--color-charcoal);
}
.walkthrough__copy h3 em {
  color: var(--color-amber);
  font-style: italic;
  font-weight: 600;
}
.walkthrough__step--accent .walkthrough__copy h3 { color: var(--color-cream); }
.walkthrough__step--accent .walkthrough__copy h3 em { color: var(--color-cognac); }
.walkthrough__copy p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-warm-gray);
  margin-bottom: var(--space-3);
}
.walkthrough__step--accent .walkthrough__copy p { color: rgba(249, 237, 240, 0.78); }

.walkthrough__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-amber);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.walkthrough__cta:hover {
  background: var(--color-amber-deep);
  transform: translateX(2px);
}

.walkthrough__hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249, 237, 240, 0.12);
  color: var(--color-cream);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid rgba(249, 237, 240, 0.2);
}
.walkthrough__hint svg { width: 14px; height: 14px; color: var(--color-cognac); }

.walkthrough__arrow {
  display: grid;
  place-items: center;
  color: var(--color-amber);
  position: relative;
}
.walkthrough__arrow svg {
  width: 56px;
  height: auto;
}

.walkthrough__footnote {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-mute);
  margin-top: var(--space-5);
  font-style: italic;
  position: relative;
}

@media (max-width: 768px) {
  .walkthrough { padding: var(--space-5); }
  .walkthrough__steps {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .walkthrough__arrow { transform: rotate(90deg); padding-block: var(--space-2); }
  .walkthrough__arrow svg { width: 40px; }
}

/* ============================================================
   PEPTIDE MENU GRID
   ============================================================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-4);
  margin-block: var(--space-7) var(--space-5);
}
.menu-card {
  background: var(--color-paper);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  text-decoration: none;
  color: var(--color-charcoal);
  overflow: hidden;
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-amber);
}

/* Product vial thumbnail at the top of each card */
.menu-card__thumb {
  width: 100%;
  height: 160px;
  margin: calc(var(--space-5) * -1) calc(var(--space-5) * -1) 0;
  width: calc(100% + var(--space-5) * 2);
  background: linear-gradient(180deg, var(--color-blush) 0%, var(--color-champagne-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.menu-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px 16px;
  transition: transform 0.4s var(--ease);
}
.menu-card:hover .menu-card__thumb img { transform: scale(1.04); }

/* Placeholder thumbnail for cards without a confirmed product image */
.menu-card__thumb--placeholder {
  background: linear-gradient(135deg, var(--color-champagne) 0%, var(--color-blush) 100%);
  position: relative;
}
.menu-card__thumb--placeholder::before,
.menu-card__thumb--placeholder::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(186, 106, 54, 0.12);
}
.menu-card__thumb--placeholder::before {
  width: 80px; height: 80px;
  top: -20px; right: -20px;
}
.menu-card__thumb--placeholder::after {
  width: 60px; height: 60px;
  bottom: -15px; left: -15px;
  background: rgba(28, 57, 52, 0.08);
}
.menu-card__thumb--placeholder span {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--color-amber);
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.menu-card__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--color-blush-soft);
  color: var(--color-terracotta);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}
.menu-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.menu-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-warm-gray);
  flex: 1;
}
/* Default: hide the badge. */
.menu-card__notice { display: none; }

/* Show badge on firewalled cards — those routing to the homepage affiliate URL
   (no /product/ deep-link). Stays correct even if a vial image is added later. */
.menu-card:not([href*="/product/"]) .menu-card__notice {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 5px 10px;
  background: rgba(186, 106, 54, 0.1);
  border: 1px solid rgba(186, 106, 54, 0.28);
  border-radius: var(--radius-sm);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--color-amber-deep);
  margin-top: auto;
  line-height: 1.3;
}

/* When an image successfully loads into a placeholder thumb, hide the placeholder span */
.menu-card__thumb:not(.menu-card__thumb--placeholder) > span { display: none; }
.menu-card__notice svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--color-amber);
}
.menu-card__notice strong {
  font-weight: 700;
  color: var(--color-amber-deep);
}

.menu-card__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-terracotta);
  letter-spacing: 0.01em;
  margin-top: var(--space-2);
  transition: transform 0.2s var(--ease);
}
.menu-card:hover .menu-card__cta { transform: translateX(3px); }

.menu-footnote {
  text-align: center;
  font-size: 14px;
  color: var(--color-warm-gray);
  margin-top: var(--space-5);
}
.menu-footnote a {
  color: var(--color-terracotta);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

/* ============================================================
   HOW IT WORKS — 3 step
   ============================================================ */
.steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
  margin-block: var(--space-7) var(--space-6);
}
.step {
  background: var(--color-blush-soft);
  padding: var(--space-6);
  border-radius: var(--radius-md);
  position: relative;
}
.step__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-terracotta);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}
.step h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: var(--space-3);
  color: var(--color-charcoal);
}
.step p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-warm-gray);
}

/* ============================================================
   CANISTER SHOWCASE — "How It Works" unboxing visual
   ============================================================ */
.canister-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: var(--space-7);
  align-items: center;
  margin: var(--space-8) auto var(--space-7);
  max-width: 980px;
  background: var(--color-paper);
  padding: var(--space-7);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-sm);
}
.canister-showcase__img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-champagne) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.canister-showcase__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.canister-showcase__placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-amber);
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
}
.canister-showcase__placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.6;
}
/* Show placeholder when the image fails to load (file missing) */
.canister-showcase__img--missing .canister-showcase__placeholder { display: flex; }
.canister-showcase__img--missing {
  border: 2px dashed rgba(186, 106, 54, 0.35);
}

.canister-showcase__caption h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  color: var(--color-charcoal);
  margin-block: var(--space-2) var(--space-4);
}
.canister-showcase__caption p:not(.eyebrow) {
  color: var(--color-warm-gray);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .canister-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-5);
    padding: var(--space-5);
  }
  .canister-showcase__img { max-width: 360px; margin-inline: auto; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  margin-top: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 820px;
  margin-inline: auto;
}
.faq-item {
  background: var(--color-paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
  overflow: hidden;
  transition: box-shadow 0.2s var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--color-border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  position: relative;
  transition: color 0.15s var(--ease);
}
.faq-item summary:hover { color: var(--color-terracotta); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-terracotta);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 var(--space-6) var(--space-5);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-warm-gray);
}
.faq-item__body a {
  color: var(--color-terracotta);
  border-bottom: 1px solid currentColor;
  font-weight: 500;
}

/* ============================================================
   PENCEK INSTAGRAM FAQ SECTION
   ============================================================ */
.section--pencek {
  background: var(--color-blush);
  border-top: 1px solid var(--color-border-soft);
}
.section--pencek .section__lead { max-width: 60ch; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-block: var(--space-7);
}

.ig-embed {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--color-paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.ig-embed:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.ig-embed__btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: linear-gradient(160deg, var(--color-champagne-soft) 0%, var(--color-champagne) 100%);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  text-align: center;
  font-family: var(--font-sans);
  color: var(--color-espresso);
  transition: filter 0.2s var(--ease);
}
.ig-embed__btn:hover { filter: brightness(0.97); }
.ig-embed__btn:disabled { cursor: not-allowed; opacity: 0.6; }

.ig-embed__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-amber-deep) 100%);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ig-embed__topic {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-espresso);
  padding-inline: var(--space-4);
  line-height: 1.25;
  max-width: 90%;
}
.ig-embed__placeholder {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-amber);
  font-weight: 600;
  margin-top: var(--space-3);
}
.ig-embed--placeholder .ig-embed__placeholder {
  color: var(--color-text-mute);
}
.ig-embed--placeholder .ig-embed__placeholder::before {
  content: 'Reel ID needed · ';
}

.ig-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.ig-embed--active .ig-embed__btn { display: none; }

.ig-grid__credit {
  font-size: 12px;
  color: var(--color-text-mute);
  text-align: center;
  max-width: 70ch;
  margin: var(--space-5) auto 0;
  line-height: 1.6;
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--color-border-soft);
}
.ig-grid__credit a {
  color: var(--color-amber);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

/* ============================================================
   BRAND PARTNER SECTION — finance-your-peptides
   ============================================================ */
.section--partner {
  background:
    radial-gradient(circle at 20% 0%, rgba(186, 106, 54, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 100%, rgba(195, 149, 91, 0.15) 0%, transparent 45%),
    var(--color-charcoal);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}
.partner-header { max-width: 60ch; margin-inline: auto; text-align: center; margin-bottom: var(--space-8); }
.partner-header .section__headline { color: var(--color-cream); margin-inline: auto; }
.partner-header .section__headline em { color: var(--color-terracotta); }
.eyebrow--light { color: var(--color-terracotta); }
.section__lead--light { color: rgba(249, 237, 240, 0.75); margin-inline: auto; }

/* On-brand graphic — built in HTML/CSS so it's responsive + editable */
.partner-graphic {
  background: var(--color-cream);
  color: var(--color-charcoal);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-lg);
  max-width: 920px;
  margin: 0 auto var(--space-8);
  position: relative;
}
.partner-graphic::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(45deg, transparent 0 30px, rgba(186, 106, 54, 0.04) 30px 31px);
  pointer-events: none;
}
.partner-graphic__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  position: relative;
}
.partner-graphic__cell {
  background: var(--color-paper);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  min-width: 160px;
  transition: transform 0.3s var(--ease);
}
.partner-graphic__cell--accent {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-deep) 100%);
  color: var(--color-cream);
  border-color: var(--color-terracotta-deep);
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}
.partner-graphic__num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-terracotta);
}
.partner-graphic__cell--accent .partner-graphic__num { color: var(--color-cream); }
.partner-graphic__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--color-warm-gray);
  line-height: 1.3;
}
.partner-graphic__cell--accent .partner-graphic__label { color: rgba(249, 237, 240, 0.9); }
.partner-graphic__op {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-warm-gray-light);
  line-height: 1;
}
.partner-graphic__caption {
  text-align: center;
  font-size: 14px;
  color: var(--color-warm-gray);
  margin-top: var(--space-6);
  font-style: italic;
  position: relative;
  max-width: 50ch;
  margin-inline: auto;
}
@media (max-width: 720px) {
  .partner-graphic { padding: var(--space-6) var(--space-4); }
  .partner-graphic__row { gap: var(--space-3); }
  .partner-graphic__cell { min-width: 130px; padding: var(--space-4); }
  .partner-graphic__cell--accent { transform: none; }
}

/* Perks: 1 feature card + 3 supporting */
.partner-perks {
  max-width: 1040px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.perk--feature {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-deep) 100%);
  color: var(--color-cream);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.perk__badge {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  background: rgba(249, 237, 240, 0.18);
  color: var(--color-cream);
  width: clamp(96px, 12vw, 130px);
  height: clamp(96px, 12vw, 130px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(249, 237, 240, 0.3);
}
.perk--feature h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--color-cream);
  margin-bottom: var(--space-2);
}
.perk--feature p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(249, 237, 240, 0.85);
}
.perk--feature strong { color: var(--color-cream); font-weight: 700; }

@media (max-width: 720px) {
  .perk--feature { flex-direction: column; text-align: center; padding: var(--space-5); gap: var(--space-4); }
}

.perk-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}
.perk {
  background: rgba(249, 237, 240, 0.06);
  border: 1px solid rgba(249, 237, 240, 0.1);
  padding: var(--space-5);
  border-radius: var(--radius-md);
}
.perk__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(249, 237, 240, 0.1);
  color: var(--color-terracotta);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-3);
}
.perk__icon svg { width: 22px; height: 22px; }
.perk h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--color-cream);
  margin-bottom: var(--space-2);
}
.perk p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(249, 237, 240, 0.7);
}

/* By-the-numbers stats panel inside the partner section */
.partner-stats__eyebrow {
  text-align: center;
  margin-bottom: var(--space-4);
  margin-top: var(--space-2);
}
.partner-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
  background: rgba(249, 237, 240, 0.04);
  border: 1px solid rgba(249, 237, 240, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-4);
  margin-bottom: var(--space-6);
}
.partner-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-3) var(--space-2);
  border-right: 1px solid rgba(249, 237, 240, 0.08);
  gap: var(--space-2);
}
.partner-stat:last-child { border-right: 0; }
.partner-stat__value {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-cream);
  line-height: 1;
}
.partner-stat__value small {
  font-size: 0.55em;
  font-weight: 500;
  opacity: 0.75;
  letter-spacing: 0;
}
.partner-stat--accent .partner-stat__value {
  color: var(--color-cognac);
}
.partner-stat__label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(249, 237, 240, 0.65);
  font-weight: 500;
  line-height: 1.35;
}
@media (max-width: 768px) {
  .partner-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
    padding: var(--space-4) var(--space-3);
  }
  .partner-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(249, 237, 240, 0.08);
    padding: var(--space-3) var(--space-2);
  }
  .partner-stat:nth-last-child(-n+2) { border-bottom: 0; }
  /* center the 5th stat across both columns when grid wraps */
  .partner-stat:nth-child(5) {
    grid-column: span 2;
  }
}

/* Bullet list inside the mentorship perk card */
.perk__list {
  list-style: none;
  padding: 0;
  margin: var(--space-3) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.perk__list li {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(249, 237, 240, 0.75);
  padding-left: 18px;
  position: relative;
}
.perk__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-cognac);
  font-size: 12px;
  line-height: 1.5;
}
.perk__list strong {
  color: var(--color-cream);
  font-weight: 600;
}

.partner-cta {
  text-align: center;
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.partner-cta__helper {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(249, 237, 240, 0.5);
  max-width: 56ch;
  line-height: 1.5;
}

/* ============================================================
   FINAL CTA — dual card
   ============================================================ */
.final-cta__lead {
  max-width: 56ch;
  margin: 0 auto var(--space-7);
  text-align: center;
}
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  max-width: 880px;
  margin-inline: auto;
}
.final-cta-card {
  background: var(--color-paper);
  padding: var(--space-7);
  border-radius: var(--radius-lg);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-soft);
}
.final-cta-card--alt {
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-deep) 100%);
  color: var(--color-cream);
  border-color: var(--color-emerald-deep);
}
.final-cta-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-charcoal);
}
.final-cta-card--alt h3 { color: var(--color-cream); }
.final-cta-card p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-warm-gray);
  flex: 1;
}
.final-cta-card--alt p { color: rgba(249, 237, 240, 0.7); }
.final-cta-card .btn { align-self: flex-start; }
.final-cta-card--alt .btn--secondary {
  color: var(--color-cream);
  border-color: rgba(249, 237, 240, 0.4);
}
.final-cta-card--alt .btn--secondary:hover {
  background: var(--color-cream);
  color: var(--color-charcoal);
}
@media (max-width: 720px) {
  .final-cta-grid { grid-template-columns: 1fr; }
  .final-cta-card { padding: var(--space-6); }
  .final-cta-card .btn { align-self: stretch; width: 100%; text-align: center; }
}

/* ============================================================
   INLINE OPT-IN SECTION — recipes lead magnet (in-page)
   ============================================================ */
.section--inline-optin {
  background:
    radial-gradient(circle at 0% 100%, rgba(28, 57, 52, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 100% 0%, rgba(195, 149, 91, 0.10) 0%, transparent 45%),
    var(--color-blush);
}
.optin-inline {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: var(--space-8);
  align-items: center;
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-soft);
  max-width: 1080px;
  margin-inline: auto;
}
.optin-inline__visual {
  background:
    linear-gradient(160deg, rgba(28, 57, 52, 0.78) 0%, rgba(18, 39, 36, 0.94) 100%),
    url("../images/optin/steak.jpg") center/cover no-repeat;
  padding: var(--space-8) var(--space-7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  min-height: 320px;
}
.optin-inline__visual::before,
.optin-inline__visual::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.optin-inline__visual::before {
  width: 240px; height: 240px;
  top: -60px; right: -60px;
  background: radial-gradient(circle, rgba(195, 149, 91, 0.25) 0%, transparent 70%);
}
.optin-inline__visual::after {
  width: 200px; height: 200px;
  bottom: -50px; left: -50px;
  background: radial-gradient(circle, rgba(186, 106, 54, 0.22) 0%, transparent 70%);
}
.optin-inline__card {
  position: relative;
  background: var(--color-paper);
  padding: var(--space-6) var(--space-5);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-align: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  transform: rotate(-2.5deg);
  width: 100%;
  max-width: 280px;
}
.optin-inline__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-amber);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-2);
}
.optin-inline__card strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--color-charcoal);
}
.optin-inline__sub {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
  margin-bottom: var(--space-3);
}
.optin-inline__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-self: stretch;
  border-top: 1px dashed var(--color-border);
  padding-top: var(--space-3);
}
.optin-inline__list li {
  font-size: 12px;
  color: var(--color-charcoal);
  font-weight: 500;
  position: relative;
  padding-left: 16px;
  text-align: left;
}
.optin-inline__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-amber);
  font-weight: 700;
}
.optin-inline__content {
  padding: var(--space-7);
}
.optin-inline__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--color-charcoal);
  margin-block: var(--space-3) var(--space-4);
}
.optin-inline__headline em {
  color: var(--color-amber);
  font-style: italic;
  font-weight: 600;
}
.optin-inline__lead {
  color: var(--color-warm-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--space-5);
  max-width: 56ch;
}
.optin-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: var(--space-3);
  align-items: stretch;
}
.optin-form__row .optin-form__submit { white-space: nowrap; }
@media (max-width: 720px) {
  .optin-inline { grid-template-columns: 1fr; }
  .optin-inline__visual { min-height: 220px; }
  .optin-inline__card { transform: none; max-width: none; }
  .optin-inline__content { padding: var(--space-5); }
  .optin-form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   OPT-IN POPUP — recipes lead magnet
   ============================================================ */
.optin-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: var(--space-4);
  animation: optinFadeIn 0.35s var(--ease);
}
.optin-popup[hidden] { display: none; }
.optin-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(38, 19, 17, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.optin-popup__panel {
  position: relative;
  z-index: 1;
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  max-width: 880px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(38, 19, 17, 0.4);
  animation: optinPanelIn 0.4s var(--ease);
  max-height: 92vh;
  overflow-y: auto;
}
@keyframes optinFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes optinPanelIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.optin-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-charcoal);
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 1px solid var(--color-border-soft);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.optin-popup__close:hover {
  background: var(--color-amber);
  color: #fff;
  border-color: var(--color-amber);
}
.optin-popup__close svg { width: 18px; height: 18px; }

/* Left visual side — recipe-card mockup */
.optin-popup__visual {
  background:
    linear-gradient(160deg, rgba(28, 57, 52, 0.78) 0%, rgba(18, 39, 36, 0.94) 100%),
    url("../images/optin/steak.jpg") center/cover no-repeat;
  padding: var(--space-7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.optin-popup__visual::before,
.optin-popup__visual::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.optin-popup__visual::before {
  width: 200px; height: 200px;
  top: -60px; right: -60px;
  background: radial-gradient(circle, rgba(195, 149, 91, 0.25) 0%, transparent 70%);
}
.optin-popup__visual::after {
  width: 160px; height: 160px;
  bottom: -40px; left: -40px;
  background: radial-gradient(circle, rgba(186, 106, 54, 0.22) 0%, transparent 70%);
}
.optin-popup__visual-card {
  position: relative;
  background: var(--color-paper);
  padding: var(--space-6) var(--space-5);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transform: rotate(-2deg);
  width: 100%;
  max-width: 280px;
}
.optin-popup__visual-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-amber);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-2);
}
.optin-popup__visual-card strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--color-charcoal);
}
.optin-popup__visual-sub {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
  margin-bottom: var(--space-3);
}
.optin-popup__visual-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-self: stretch;
  border-top: 1px dashed var(--color-border);
  padding-top: var(--space-3);
}
.optin-popup__visual-list li {
  font-size: 12px;
  color: var(--color-charcoal);
  font-weight: 500;
  position: relative;
  padding-left: 16px;
}
.optin-popup__visual-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-amber);
  font-weight: 700;
}

/* Right content side — form */
.optin-popup__content {
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.optin-popup__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-charcoal);
  margin-bottom: var(--space-2);
}
.optin-popup__headline em {
  color: var(--color-amber);
  font-style: italic;
  font-weight: 600;
}
.optin-popup__lead {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-warm-gray);
  margin-bottom: var(--space-4);
}

.optin-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.optin-steps__item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: var(--space-3);
  align-items: start;
  padding: var(--space-3);
  background: var(--color-blush);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}
.optin-steps__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-amber);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  line-height: 1;
}
.optin-steps__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.optin-steps__body strong {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.35;
}
.optin-steps__body span {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-warm-gray);
}
.optin-steps__cta {
  align-self: flex-start;
  margin-top: 6px;
  width: auto;
}
.optin-steps__cta.is-pulsing {
  animation: step1Pulse 1.2s var(--ease) 0s 3;
  box-shadow: 0 0 0 0 rgba(212, 138, 64, 0.55);
}
@keyframes step1Pulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 138, 64, 0.55); transform: scale(1); }
  50%  { box-shadow: 0 0 0 12px rgba(212, 138, 64, 0); transform: scale(1.03); }
  100% { box-shadow: 0 0 0 0 rgba(212, 138, 64, 0); transform: scale(1); }
}

.optin-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.optin-form__field input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-charcoal);
  background: var(--color-blush);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.optin-form__field input:focus {
  outline: none;
  border-color: var(--color-amber);
  background: var(--color-paper);
}
.optin-form__field input::placeholder { color: var(--color-text-mute); }
.optin-form__submit {
  margin-top: var(--space-2);
  width: 100%;
}
.optin-form__submit[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
.optin-vip-cta.is-locked {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(0.4);
  position: relative;
}
.optin-vip-cta.is-locked::after {
  content: "🔒  Complete step 1 first";
  display: block;
  font-size: 11px;
  font-weight: 500;
  margin-top: 6px;
  color: var(--color-text-mute);
  letter-spacing: 0.02em;
}
.optin-form__finish {
  font-size: 11px;
  line-height: 1.55;
  color: var(--color-text-mute);
  margin-top: var(--space-2);
}

.optin-popup__nothanks {
  margin-top: var(--space-3);
  background: transparent;
  border: 0;
  color: var(--color-text-mute);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  align-self: center;
  padding: 8px;
  font-family: var(--font-sans);
}
.optin-popup__nothanks:hover { color: var(--color-charcoal); }

.optin-success,
.optin-error {
  text-align: center;
  padding-block: var(--space-4);
}
.optin-success__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-emerald);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto var(--space-4);
}
.optin-success__icon svg { width: 32px; height: 32px; }
.optin-success h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: var(--space-3);
  color: var(--color-charcoal);
}
.optin-success p {
  color: var(--color-warm-gray);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: var(--space-4);
}
.optin-success .btn { width: auto; }

.optin-error {
  background: rgba(186, 106, 54, 0.08);
  border: 1px solid rgba(186, 106, 54, 0.25);
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  margin-block: var(--space-3);
}
.optin-error__msg {
  color: var(--color-amber-deep);
  font-size: 14px;
  margin-bottom: var(--space-3);
  font-weight: 500;
}

@media (max-width: 720px) {
  .optin-popup__panel { grid-template-columns: 1fr; }
  .optin-popup__visual { padding: var(--space-5); }
  .optin-popup__visual-card { max-width: none; transform: none; }
  .optin-popup__content { padding: var(--space-5); }
}

/* ---- Success state: hide everything except the "You're in!" block ---- */
.optin-popup__panel.is-success {
  grid-template-columns: 1fr;
  max-width: 560px;
}
.optin-popup__panel.is-success .optin-popup__visual,
.optin-popup__panel.is-success .optin-popup__content > .eyebrow,
.optin-popup__panel.is-success .optin-popup__headline,
.optin-popup__panel.is-success .optin-popup__lead,
.optin-popup__panel.is-success .optin-steps,
.optin-popup__panel.is-success .optin-popup__content > .optin-popup__nothanks {
  display: none;
}
.optin-popup__panel.is-success .optin-popup__content {
  padding: var(--space-7);
  text-align: center;
}

.optin-inline.is-success { grid-template-columns: 1fr; }
.optin-inline.is-success .optin-inline__visual,
.optin-inline.is-success .optin-inline__content > .eyebrow,
.optin-inline.is-success .optin-inline__headline,
.optin-inline.is-success .optin-inline__lead,
.optin-inline.is-success .optin-steps {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-charcoal);
  color: rgba(249, 237, 240, 0.75);
  padding-block: var(--space-7);
}
.site-footer__brand {
  font-family: var(--font-serif);
  color: var(--color-cream);
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.site-footer__tagline {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--space-5);
}
.disclaimer-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5);
  background: rgba(249, 237, 240, 0.04);
  border: 1px solid rgba(249, 237, 240, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
}
.disclaimer {
  font-size: 12px;
  line-height: 1.65;
  max-width: 75ch;
  color: rgba(249, 237, 240, 0.65);
  margin: 0;
}
.disclaimer strong { color: var(--color-cream); font-weight: 700; }
.disclaimer--strong {
  color: rgba(249, 237, 240, 0.85);
  font-size: 13px;
  border-left: 3px solid var(--color-terracotta);
  padding-left: var(--space-4);
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 14px;
  margin-bottom: var(--space-4);
}
.site-footer__links a { color: var(--color-cream); }
.site-footer__links a:hover { color: var(--color-terracotta); }
.site-footer__copy { font-size: 12px; color: rgba(249, 237, 240, 0.4); }

/* ============================================================
   THINGS I LOVE — non-toxic carousel
   ============================================================ */
.section--loves {
  background:
    radial-gradient(circle at 18% 20%, rgba(186, 106, 54, 0.05), transparent 55%),
    radial-gradient(circle at 82% 80%, rgba(28, 57, 52, 0.04), transparent 60%),
    var(--color-blush);
}

.loves-carousel {
  position: relative;
  margin-block: var(--space-7) var(--space-5);
}

.loves-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 320px);
  gap: var(--space-4);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--space-5);
  padding-block: var(--space-4);
  padding-inline: var(--space-1);
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.loves-carousel__track::-webkit-scrollbar { display: none; }
.loves-carousel__track:focus-visible {
  outline: 2px solid var(--color-amber);
  outline-offset: 4px;
  border-radius: var(--radius-md);
}

/* Edge fades so cards "appear" from off-canvas */
.loves-carousel::before,
.loves-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  pointer-events: none;
  z-index: 2;
}
.loves-carousel::before {
  left: -8px;
  background: linear-gradient(90deg, var(--color-blush) 30%, rgba(249, 237, 240, 0));
}
.loves-carousel::after {
  right: -8px;
  background: linear-gradient(270deg, var(--color-blush) 30%, rgba(249, 237, 240, 0));
}

/* Card */
.loves-card {
  scroll-snap-align: start;
  background: var(--color-paper);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-charcoal);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  position: relative;
  overflow: hidden;
}
.loves-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-amber);
}
.loves-card:focus-visible {
  outline: 2px solid var(--color-amber);
  outline-offset: 3px;
}

/* Image thumb — real product/hero photo from each site */
.loves-card__thumb {
  width: calc(100% + var(--space-5) * 2);
  height: 180px;
  margin: calc(var(--space-5) * -1) calc(var(--space-5) * -1) 0;
  background: linear-gradient(180deg, var(--color-blush) 0%, var(--color-champagne-soft) 100%);
  overflow: hidden;
  position: relative;
}
.loves-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
}
.loves-card:hover .loves-card__thumb img { transform: scale(1.05); }

/* Some images (clean product cutouts) look better contained on the cream backdrop */
.loves-card__thumb--contain img {
  object-fit: contain;
  padding: var(--space-3);
}

/* Patch Method shot is on a near-white background — give it a softer warm wash */
.loves-card__thumb--patch {
  background: linear-gradient(180deg, var(--color-champagne-soft) 0%, var(--color-blush) 100%);
}

.loves-card__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--color-blush-soft);
  color: var(--color-terracotta);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}
.loves-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.loves-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-warm-gray);
  flex: 1;
}
.loves-card__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-terracotta);
  letter-spacing: 0.01em;
  margin-top: var(--space-2);
  transition: transform 0.2s var(--ease);
}
.loves-card:hover .loves-card__cta { transform: translateX(3px); }

/* Nav buttons */
.loves-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  color: var(--color-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.loves-carousel__nav:hover {
  background: var(--color-amber);
  border-color: var(--color-amber);
  color: var(--color-paper);
}
.loves-carousel__nav:focus-visible {
  outline: 2px solid var(--color-amber);
  outline-offset: 3px;
}
.loves-carousel__nav svg { width: 20px; height: 20px; }
.loves-carousel__nav--prev { left: -8px; }
.loves-carousel__nav--next { right: -8px; }
.loves-carousel__nav[aria-disabled="true"] {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.85);
}

@media (min-width: 900px) {
  .loves-carousel__nav--prev { left: -22px; }
  .loves-carousel__nav--next { right: -22px; }
}

@media (max-width: 600px) {
  .loves-carousel__track { grid-auto-columns: minmax(260px, 78vw); }
  .loves-carousel__nav { display: none; }
  .loves-carousel::before,
  .loves-carousel::after { width: 24px; }
}

.loves-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--color-warm-gray);
  max-width: 56ch;
  margin-inline: auto;
  margin-top: var(--space-5);
  line-height: 1.5;
}
