/* ============================================
  Vita Herbs — Heritage Apothecary Theme
   Burgundy + Sage + Cream + Brass Gold
============================================ */

:root {
  /* Palette */
  --burgundy-950: #2a0d18;
  --burgundy-900: #4a1828;
  --burgundy-800: #5e2034;
  --burgundy-700: #762a42;
  --burgundy-600: #8c2f4f;
  --burgundy-500: #a8385f;
  --burgundy-100: #f5dbe5;

  --sage-700: #4a5a45;
  --sage-500: #7a8b73;
  --sage-400: #94a48c;
  --sage-300: #b6c0ad;
  --sage-200: #d1d8c8;
  --sage-100: #e8ede2;

  --brass-700: #6f5827;
  --brass-500: #b08c45;
  --brass-400: #c19e5c;
  --brass-300: #d0b378;
  --brass-200: #e1cb9d;
  --brass-100: #f1e4c5;

  --cream-50:  #fbf6ee;
  --cream-100: #f5ebd9;
  --cream-200: #ebdfc4;
  --cream-300: #ddccaa;

  --white: #ffffff;
  --ink-900: #1f1418;
  --ink-700: #3f3034;
  --ink-500: #645257;
  --ink-400: #8b7a7e;
  --ink-300: #b0a2a6;
  --line:    #e6d8c1;
  --line-soft:#f0e4cf;

  --success: #2d8a55;
  --danger:  #a8385f;

  /* Type */
  --font-display: 'Newsreader', 'Times New Roman', Georgia, serif;
  --font-body: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(74, 24, 40, 0.06);
  --shadow-md: 0 6px 24px rgba(74, 24, 40, 0.10);
  --shadow-lg: 0 20px 60px rgba(74, 24, 40, 0.15);
  --shadow-xl: 0 30px 90px rgba(74, 24, 40, 0.2);

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-full: 999px;

  --container: 1180px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ====== TYPOGRAPHY ====== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--burgundy-900);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.text-accent { color: var(--burgundy-700); font-weight: 600; }
.accent { color: var(--burgundy-600); font-weight: 700; }
.accent-strong { color: var(--burgundy-700); font-weight: 700; }
.underline { border-bottom: 3px solid var(--burgundy-600); padding-bottom: 2px; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 0.78rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--burgundy-800) 0%, var(--burgundy-700) 100%);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(74, 24, 40, 0.25);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brass-500) 0%, var(--brass-400) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.btn-primary > svg, .btn-primary > span { position: relative; z-index: 2; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(176, 140, 69, 0.35);
  color: var(--burgundy-950);
}
.btn-primary:hover::before { opacity: 1; }

.btn-outline {
  background: var(--white);
  color: var(--burgundy-800);
  border: 1.5px solid var(--burgundy-800);
}
.btn-outline:hover {
  background: var(--burgundy-800);
  color: var(--white);
}

.btn-add {
  background: linear-gradient(135deg, var(--brass-400) 0%, var(--brass-300) 100%);
  color: var(--ink-900);
  border-radius: 8px;
  padding: 14px 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 20px rgba(176, 140, 69, 0.35);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.btn-add:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--brass-500) 0%, var(--brass-400) 100%);
  box-shadow: 0 10px 28px rgba(176, 140, 69, 0.5);
}

/* ====== COOKIE BAR ====== */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--burgundy-950);
  color: var(--cream-100);
  padding: 18px 0;
  border-top: 2px solid var(--brass-500);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9000;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-text { flex: 1; min-width: 260px; font-size: 0.9rem; line-height: 1.55; }
.cookie-text strong { color: var(--brass-300); margin-right: 8px; font-weight: 600; }
.cookie-text span { color: var(--cream-200); }
.cookie-text a { color: var(--brass-400); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn-outline {
  background: transparent;
  color: var(--cream-100);
  border-color: rgba(225, 203, 157, 0.3);
  text-transform: none;
}
.cookie-actions .btn-outline:hover { color: var(--burgundy-950); background: var(--cream-100); border-color: var(--cream-100); }
@media (max-width: 600px) {
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

/* ====== UTILITY BAR ====== */
.utility-bar, .announce {
  background: var(--burgundy-950);
  color: var(--brass-300);
  font-size: 0.83rem;
  letter-spacing: 0.05em;
  padding: 10px 0;
}
.utility-inner, .announce-inner { display: flex; align-items: center; justify-content: center; gap: 10px; }
.utility-dot, .announce .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brass-500);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(176, 140, 69, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(176, 140, 69, 0); }
}

/* ====== NAV ====== */
.nav {
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(230, 216, 193, 0.6);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--burgundy-900);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--burgundy-800), var(--burgundy-700));
  color: var(--brass-300);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
  position: relative;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(208, 179, 120, 0.3);
  border-radius: 5px;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.nav-links { display: none; gap: 32px; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink-500);
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--burgundy-900); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--brass-500);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
@media (min-width: 900px) { .nav-links { display: inline-flex; } }

/* ====== FULL-BLEED BANDS ====== */
.hero-band {
  background: linear-gradient(135deg, var(--burgundy-900), var(--burgundy-800));
  color: var(--white);
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-band::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(ellipse, rgba(208, 179, 120, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-band-headline {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.hero-band-headline .accent { color: var(--brass-300); font-weight: 700; }

.band-heading {
  background: linear-gradient(135deg, var(--burgundy-900), var(--burgundy-800));
  color: var(--white);
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.band-heading::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(208, 179, 120, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(176, 140, 69, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.band-heading-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.band-heading-text .accent { color: var(--brass-300); font-weight: 700; }

.band-callout {
  background: linear-gradient(135deg, var(--sage-700), var(--sage-500));
  color: var(--white);
  padding: 36px 0;
  text-align: center;
}
.band-callout .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.band-callout-icon {
  width: 50px; height: 50px;
  color: var(--cream-100);
  flex-shrink: 0;
}
.band-callout p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 500;
  line-height: 1.3;
}
.band-callout .band-accent {
  color: var(--brass-200);
  font-weight: 700;
}

/* ====== HERO INTRO ====== */
.hero-intro {
  background: var(--cream-50);
  padding: 80px 0;
}
.hero-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-intro-grid { grid-template-columns: 1fr 1.1fr; gap: 70px; }
}
.hero-intro-image {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-intro-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(74, 24, 40, 0.15));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-intro-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-intro-lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink-900);
}
.hero-intro-body {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-700);
}
.hero-intro-copy .btn { align-self: flex-start; margin-top: 8px; }

/* ====== TRUST BAND ====== */
.trust-band {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-band-img {
  max-width: 900px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ====== ABOUT SECTION ====== */
.about {
  padding: 80px 0;
  background: var(--cream-50);
}
.about-content {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}
.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-700);
  margin-bottom: 20px;
}
.about-content p:last-child { margin-bottom: 0; }
.about-content strong { color: var(--burgundy-900); font-weight: 700; }

/* ====== 15 INGREDIENTS GRID ====== */
.ing-row-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 600px) { .ing-row-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .ing-row-grid { grid-template-columns: repeat(4, 1fr); } }
.ing-row-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ing-row-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brass-300);
}
.ing-row-image {
  height: 120px;
  overflow: hidden;
  position: relative;
}
.ing-row-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ing-row-card:hover .ing-row-image img { transform: scale(1.08); }
.ing-row-card h4 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--burgundy-900);
  padding: 14px 12px;
  line-height: 1.3;
}

/* ====== REVIEWS ====== */
.reviews {
  padding: 80px 0;
  background: var(--cream-50);
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}
.review-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  align-items: flex-start;
  background: var(--white);
  padding: 32px 30px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 600px) {
  .review-row { grid-template-columns: 130px 1fr; gap: 32px; }
}
.review-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-row-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--brass-200);
  box-shadow: 0 6px 18px rgba(74, 24, 40, 0.15);
}
.review-row-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.review-row-body { display: flex; flex-direction: column; gap: 12px; }
.review-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.stars-row { display: flex; gap: 2px; color: var(--brass-500); }
.stars-row svg { width: 18px; height: 18px; }
.verified {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--burgundy-700);
}
.review-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-700);
  font-style: italic;
}
.review-author {
  font-size: 0.95rem;
  color: var(--ink-500);
}
.review-author strong { color: var(--burgundy-900); font-weight: 700; }

/* ====== BONUSES ====== */
.bonuses {
  padding: 80px 0;
  background: var(--cream-50);
}
.bonus-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  background: var(--white);
  padding: 40px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  margin-bottom: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bonus-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.bonus-row:last-child { margin-bottom: 0; }
@media (min-width: 800px) {
  .bonus-row { grid-template-columns: 320px 1fr; gap: 50px; padding: 50px 56px; }
  .bonus-row-reversed { grid-template-columns: 1fr 320px; }
  .bonus-row-reversed .bonus-row-image { order: 2; }
  .bonus-row-reversed .bonus-row-copy { order: 1; }
}
.bonus-row-image {
  display: flex;
  justify-content: center;
  padding: 16px;
}
.bonus-row-image img {
  max-width: 100%;
  max-height: 320px;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(74, 24, 40, 0.2));
  transform: rotate(-2deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bonus-row:hover .bonus-row-image img { transform: rotate(0deg) scale(1.04); }
.bonus-row-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bonus-row-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 600;
  color: var(--burgundy-900);
  line-height: 1.25;
  margin-bottom: 6px;
}
.bonus-row-copy h3 .accent { color: var(--burgundy-600); }
.bonus-row-copy p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-700);
}
.bonus-row-copy p strong { color: var(--burgundy-900); font-weight: 700; }

/* ====== ING DETAIL ====== */
.ing-detail {
  padding: 80px 0;
  background: var(--cream-50);
}
.ing-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 700px) { .ing-detail-grid { grid-template-columns: repeat(2, 1fr); } }
.ing-detail-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  align-items: center;
  background: var(--white);
  padding: 18px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ing-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--brass-300);
}
.ing-detail-image {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--brass-200);
}
.ing-detail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ing-detail-body { min-width: 0; }
.ing-detail-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--burgundy-900);
  margin-bottom: 4px;
}
.ing-detail-body p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-500);
}

/* ====== PRICING ====== */
.pricing {
  padding: 80px 0;
  background: var(--cream-50);
}
.pricing-subline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 500;
  text-align: center;
  color: var(--burgundy-900);
  margin-bottom: 50px;
  line-height: 1.35;
}
.pricing-subline strong { color: var(--burgundy-600); font-weight: 700; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
@media (min-width: 800px) {
  .pricing-grid { grid-template-columns: 1fr 1.15fr 1fr; align-items: center; }
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card-featured {
  background: linear-gradient(170deg, var(--burgundy-100) 0%, var(--cream-100) 100%);
  border: 2px solid var(--burgundy-600);
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
}
@media (min-width: 800px) {
  .price-card-featured { transform: scale(1.06); }
  .price-card-featured:hover { transform: scale(1.06) translateY(-3px); }
}
.price-card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.price-label {
  display: inline-block;
  padding: 5px 14px;
  background: var(--cream-100);
  color: var(--burgundy-700);
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-label-feat {
  background: linear-gradient(135deg, var(--burgundy-700), var(--burgundy-600));
  color: var(--brass-200);
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--burgundy-900);
  letter-spacing: -0.01em;
  margin-top: 6px;
}
.price-discount {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--burgundy-700);
  letter-spacing: 0.02em;
}
.price-discount.accent-strong { color: var(--burgundy-600); font-size: 1.05rem; }
.price-card-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 180px;
}
.price-card-image img {
  max-height: 180px;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(74, 24, 40, 0.18));
  transition: transform 0.3s ease;
}
.price-card:hover .price-card-image img { transform: scale(1.04); }
.price-card-cost {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 6px 0;
}
.price-card-cost .dollar {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--burgundy-800);
  font-weight: 500;
}
.price-card-cost .num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--burgundy-800);
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-card-cost .each {
  font-size: 1rem;
  color: var(--ink-500);
  margin-left: 4px;
}
.price-card-featured .price-card-cost .dollar,
.price-card-featured .price-card-cost .num { color: var(--burgundy-900); }

.price-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0;
}
.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--burgundy-800), var(--burgundy-700));
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  justify-content: center;
}
.perk svg { width: 16px; height: 16px; color: var(--brass-300); flex-shrink: 0; }

.price-cards-row {
  display: flex;
  justify-content: center;
  margin: 4px 0;
}
.payment-img { max-width: 200px; height: 30px; }
.price-total {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--burgundy-900);
  font-weight: 500;
}
.price-total strong { font-weight: 700; }
.price-meta { font-size: 0.85rem; color: var(--ink-500); margin-top: -8px; }
.price-guarantee {
  font-size: 0.92rem;
  color: var(--burgundy-700);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.customer-rating {
  text-align: center;
  margin-top: 50px;
  font-size: 1rem;
  color: var(--ink-500);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.customer-rating strong { color: var(--burgundy-900); font-weight: 700; }
.rating-stars { display: inline-flex; gap: 2px; color: var(--brass-500); }
.rating-stars svg { width: 18px; height: 18px; }

/* ====== GUARANTEE ====== */
.guarantee {
  padding: 80px 0;
  background: var(--cream-50);
}
.guarantee-card {
  background: linear-gradient(160deg, var(--cream-100), var(--white));
  border: 2px solid var(--brass-400);
  border-radius: var(--r-xl);
  padding: 60px 50px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(74, 24, 40, 0.12);
}
.guarantee-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--brass-300);
  border-radius: calc(var(--r-xl) - 8px);
  pointer-events: none;
}
.guarantee-seal {
  width: 160px;
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 14px 30px rgba(74, 24, 40, 0.25));
  animation: float 6s ease-in-out infinite;
}
.guarantee-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
  color: var(--burgundy-900);
  line-height: 1.25;
  margin-bottom: 22px;
  position: relative;
}
.guarantee-title .accent { color: var(--burgundy-600); font-weight: 700; }
.guarantee-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-700);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.guarantee-body strong { color: var(--burgundy-900); font-weight: 700; }

/* ====== REFERENCES ====== */
.references {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.references .section-title { margin-bottom: 50px; }
.refs-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 40px;
  background: var(--cream-50);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
@media (min-width: 720px) { .refs-logos { grid-template-columns: repeat(4, 1fr); } }
.ref-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.ref-logo strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--burgundy-900);
  line-height: 1.1;
}
.ref-logo strong em { color: var(--brass-500); font-style: italic; }
.ref-logo span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
}
.refs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) { .refs-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.refs-list { padding-left: 24px; }
.refs-list li {
  font-size: 0.85rem;
  color: var(--ink-500);
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 4px;
}
.refs-list li::marker { color: var(--brass-500); font-weight: 700; }
.refs-list a {
  color: var(--ink-500);
  word-break: break-word;
  border-bottom: 1px dotted var(--brass-300);
  transition: color 0.2s ease;
}
.refs-list a:hover { color: var(--burgundy-900); }

/* ====== FOOTER ====== */
.footer {
  background: var(--burgundy-950);
  color: var(--cream-200);
  padding: 60px 0 30px;
}
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(225, 203, 157, 0.1);
  margin-bottom: 0;
}
@media (min-width: 768px) { .footer-top { grid-template-columns: 1.4fr 2fr; gap: 50px; } }
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--cream-200);
  margin-top: 16px;
  max-width: 320px;
}
.brand-light { color: var(--white); }
.brand-light .brand-mark {
  background: var(--brass-500);
  color: var(--burgundy-950);
}
.brand-light .brand-mark::after { border-color: rgba(74, 24, 40, 0.3); }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (min-width: 720px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-400);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--cream-200);
  padding: 5px 0;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--brass-300); }
.footer-disclaimer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(225, 203, 157, 0.1);
  max-width: 1100px;
  margin: 0 auto;
}
.footer-disclaimer p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--cream-200);
  text-align: center;
}
.footer-disclaimer a {
  color: var(--brass-400);
  text-decoration: underline;
}
.footer-disclaimer a:hover { color: var(--brass-300); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 6px;
  padding: 30px 0 18px;
  font-size: 0.88rem;
}
.footer-links a {
  color: var(--brass-300);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--white); }
.footer-links span { color: var(--ink-400); opacity: 0.6; }
.footer-bottom {
  text-align: center;
  padding-top: 18px;
  font-size: 0.82rem;
  color: var(--ink-400);
}

/* ====== REVEAL ====== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ====== SUBPAGES ====== */
.subpage-hero {
  padding: 80px 0 60px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(176, 140, 69, 0.08) 0%, transparent 50%),
    var(--cream-50);
  border-bottom: 1px solid var(--line);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--ink-500);
  margin-bottom: 24px;
  transition: color 0.2s ease, gap 0.2s ease;
}
.back-link:hover { color: var(--brass-500); gap: 10px; }
.subpage-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--burgundy-900);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 14px 0 18px;
}
.subpage-hero h1 em { color: var(--brass-500); font-style: italic; }
.subpage-hero .lead {
  font-size: 1.1rem;
  color: var(--ink-500);
  max-width: 60ch;
  line-height: 1.55;
}
.subpage-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-500);
}
.subpage-hero .eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brass-500);
  box-shadow: 0 0 0 4px rgba(176, 140, 69, 0.15);
}

.subpage-content { padding: 80px 0 110px; background: var(--white); }
.subpage-prose { max-width: 760px; margin: 0 auto; }
.subpage-prose h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--burgundy-900);
  margin: 40px 0 14px;
  font-weight: 600;
}
.subpage-prose h2:first-child { margin-top: 0; }
.subpage-prose h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--burgundy-900);
  margin: 28px 0 10px;
  font-weight: 600;
}
.subpage-prose p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-700);
  margin-bottom: 14px;
}
.subpage-prose strong { color: var(--burgundy-900); font-weight: 600; }
.subpage-prose a {
  color: var(--brass-500);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.subpage-prose a:hover { color: var(--burgundy-900); }
.subpage-prose ul { margin: 0 0 18px 22px; }
.subpage-prose ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-700);
  margin-bottom: 8px;
  padding-left: 6px;
}
.subpage-prose ul li::marker { color: var(--brass-500); }
.callout-box {
  background: linear-gradient(135deg, var(--brass-100), var(--cream-100));
  border-left: 4px solid var(--brass-500);
  padding: 20px 24px;
  border-radius: var(--r-md);
  font-size: 0.97rem;
  color: var(--ink-700);
  line-height: 1.6;
  margin-bottom: 36px;
}
.callout-box strong { color: var(--burgundy-900); }
.subpage-cta {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(160deg, var(--cream-50), var(--cream-100));
  border-radius: var(--r-xl);
  text-align: center;
  border: 1px solid var(--brass-200);
}
.subpage-cta h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--burgundy-900);
  margin-bottom: 20px;
  font-weight: 600;
}

.policy-quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0 0 48px;
  padding: 28px 24px;
  background: linear-gradient(160deg, var(--cream-50), var(--cream-100));
  border-radius: var(--r-lg);
  border: 1px solid var(--brass-200);
}
@media (min-width: 720px) {
  .policy-quick-stats { grid-template-columns: repeat(4, 1fr); padding: 32px 28px; }
}
.policy-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  padding: 0 8px;
}
.policy-stat strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--brass-500);
  line-height: 1;
}
.policy-stat span { font-size: 0.82rem; color: var(--ink-500); line-height: 1.35; }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 60px; } }
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) { .contact-info { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--cream-50);
  padding: 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--brass-300);
  box-shadow: var(--shadow-md);
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--burgundy-900), var(--burgundy-700));
  color: var(--brass-300);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--burgundy-900);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-card p { font-size: 0.88rem; color: var(--ink-500); line-height: 1.55; margin-bottom: 10px; }
.contact-card a { font-size: 0.92rem; color: var(--brass-500); font-weight: 600; word-break: break-word; }
.contact-card a:hover { color: var(--burgundy-900); }
.contact-form {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.contact-form h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--burgundy-900);
  margin-bottom: 24px;
  font-weight: 600;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-900);
  padding: 12px 14px;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--brass-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(176, 140, 69, 0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-fine { text-align: center; font-size: 0.82rem; color: var(--ink-500); margin-top: 12px; }

/* MOBILE */
@media (max-width: 600px) {
  .nav-cta { display: none; }
  .hero-band { padding: 36px 0; }
  .band-heading { padding: 36px 0; }
  .band-callout { padding: 28px 0; }
  .hero-intro, .about, .reviews, .bonuses, .ing-detail, .pricing, .guarantee, .references { padding: 60px 0; }
  .bonus-row { padding: 28px 24px; gap: 24px; }
  .review-row { padding: 24px 22px; gap: 18px; }
  .review-row-photo { width: 80px; }
  .ing-detail-card { padding: 14px 16px; gap: 14px; }
  .ing-detail-image { width: 70px; height: 70px; }
  .price-card { padding: 24px 22px; }
  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-3px); }
  .guarantee-card { padding: 40px 28px; }
}
