/* ============================================================
   DAILY DOSE WITH SHANA — Global Design System
   Clean & Luxe Aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --gold: #C9A870;
  --gold-dark: #9E7A3F;
  --gold-light: #EDD9A8;
  --sage: #6B8F6B;
  --sage-light: #C5D3BE;
  --charcoal: #1A1A1A;
  --warm-gray: #706A63;
  --light-gray: #E8E2DA;
  --border: #E0DBD3;
  --section-alt: #F2EDE6;
  --section-warm: #EDE5D8;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --max-width: 1200px;
  --nav-height: 80px;

  --shadow-xs: 0 1px 4px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; border: none; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(224, 219, 211, 0.7);
  z-index: 1000;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-logo span { color: var(--gold-dark); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--warm-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a.active { color: var(--charcoal); font-weight: 600; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--gold-dark) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 100px;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--charcoal) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px 32px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-menu ul li:last-child a { border-bottom: none; color: var(--gold-dark); font-weight: 600; }
.mobile-menu ul li a:hover { color: var(--gold-dark); padding-left: 8px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.18;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.lead {
  font-size: 1.12rem;
  color: var(--warm-gray);
  line-height: 1.85;
}
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold-dark); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary { background: var(--gold-dark); color: var(--white); }
.btn-primary:hover { background: var(--charcoal); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-sage { background: var(--sage); color: var(--white); }
.btn-sage:hover { background: #4E6E4E; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 10px 22px; font-size: 0.75rem; }
.btn-lg { padding: 17px 40px; font-size: 0.88rem; }

/* ===== LAYOUT ===== */
.section { padding: 100px 40px; }
.section-sm { padding: 70px 40px; }
.section-alt { background: var(--section-alt); }
.section-warm { background: var(--section-warm); }
.section-dark { background: var(--charcoal); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-dark .eyebrow { color: var(--gold-light); }

.container { max-width: var(--max-width); margin: 0 auto; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.section-header p { margin-top: 18px; font-size: 1.05rem; color: var(--warm-gray); }
.section-header.white p { color: rgba(255,255,255,0.7); }

/* ===== DIVIDER ===== */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px auto;
  max-width: 200px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-icon { color: var(--gold-dark); font-size: 1rem; }

/* ===== HERO (home) ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, #FAF8F5 0%, #F0E8DC 45%, #E8D8BC 100%);
  z-index: -1;
}
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}
.hero-bg-circle-1 {
  width: 700px; height: 700px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(201,168,112,0.14) 0%, transparent 70%);
}
.hero-bg-circle-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: 20%;
  background: radial-gradient(circle, rgba(107,143,107,0.08) 0%, transparent 70%);
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-content .eyebrow { margin-bottom: 20px; }
.hero-content h1 { margin-bottom: 24px; }
.hero-content h1 em { font-style: italic; color: var(--gold-dark); }
.hero-content .hero-desc {
  font-size: 1.1rem;
  color: var(--warm-gray);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.85;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  font-size: 0.85rem;
  color: var(--warm-gray);
}
.hero-trust-dots { display: flex; gap: -6px; }
.hero-trust-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  overflow: hidden;
  background: var(--gold-light);
  margin-left: -6px;
}
.hero-trust-dot:first-child { margin-left: 0; }
.hero-trust-dot img { width: 100%; height: 100%; object-fit: cover; }

.hero-image-wrap { position: relative; }
.hero-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #E8D5B0 0%, #C9A870 50%, #9E7A3F 100%);
  position: relative;
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute;
  bottom: -16px; left: -24px;
  background: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
}
.hero-badge-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}
.hero-badge-text { font-size: 0.78rem; color: var(--warm-gray); margin-top: 4px; letter-spacing: 0.04em; }

.hero-badge-2 {
  position: absolute;
  top: 30px; right: -20px;
  background: var(--charcoal);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge-2-icon { font-size: 1.5rem; }
.hero-badge-2-text { font-size: 0.8rem; font-weight: 600; }
.hero-badge-2-sub { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ===== PILLARS / ICON CARDS ===== */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.pillar-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}
.pillar-card h4 { margin-bottom: 10px; font-size: 1.05rem; }
.pillar-card p { font-size: 0.88rem; color: var(--warm-gray); line-height: 1.65; }

/* ===== FEATURE SPLIT ===== */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5/6;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--sage-light) 100%);
  position: relative;
}
.feature-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.feature-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15) 0%, transparent 50%);
}
.feature-content h2 { margin-bottom: 20px; }
.feature-content .lead { margin-bottom: 16px; }
.feature-content p { color: var(--warm-gray); margin-bottom: 14px; font-size: 0.97rem; }

.check-list { list-style: none; margin: 24px 0 34px; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--warm-gray);
}
.check-list li .check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--charcoal);
  padding: 56px 40px;
}
.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.stat-item { text-align: center; padding: 0 60px; }
.stat-divider { width: 1px; height: 64px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); letter-spacing: 0.12em; text-transform: uppercase; }

/* ===== PRODUCT CARDS ===== */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.product-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gold-light), var(--section-warm));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
  position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img .product-emoji { font-size: 3rem; }
.product-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.product-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.product-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.product-body p { font-size: 0.9rem; color: var(--warm-gray); flex: 1; margin-bottom: 22px; line-height: 1.65; }
.product-body .btn { margin-top: auto; }

/* ===== QUOTE BLOCK ===== */
.quote-section { padding: 90px 40px; text-align: center; }
.quote-mark { font-family: var(--font-heading); font-size: 7rem; line-height: 0.4; color: var(--gold-light); }
.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-style: italic;
  max-width: 820px;
  margin: 28px auto 36px;
  line-height: 1.55;
  color: var(--charcoal);
}
.quote-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gold-light);
  flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 600; font-size: 0.95rem; }
.author-role { font-size: 0.82rem; color: var(--warm-gray); margin-top: 2px; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #FAF8F5 0%, #EDE5D8 60%, #E5D4BC 100%);
  z-index: -1;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(201,168,112,0.10) 0%, transparent 65%);
}
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { margin-bottom: 22px; }
.page-hero p { font-size: 1.12rem; color: var(--warm-gray); max-width: 580px; margin: 0 auto; }

/* ===== TIMELINE ===== */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 90px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-light) 0%, var(--sage-light) 100%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year { text-align: right; }
.timeline-dot {
  position: absolute;
  left: 84px;
  top: 50px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold-dark);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold-dark);
}
.year-label {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}
.year-sub { font-size: 0.72rem; color: var(--warm-gray); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
.timeline-content h3 { font-size: 1.25rem; margin-bottom: 12px; }
.timeline-content p { color: var(--warm-gray); font-size: 0.96rem; }

/* ===== BENEFIT BLOCKS ===== */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.benefit-card {
  padding: 36px 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.benefit-icon { font-size: 2.2rem; margin-bottom: 18px; }
.benefit-card h4 { margin-bottom: 10px; font-size: 1.1rem; }
.benefit-card p { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.65; }

/* ===== HOW IT WORKS (steps) ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--gold-light), var(--sage-light));
}
.step { text-align: center; position: relative; }
.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-dark);
  position: relative;
  z-index: 1;
}
.step h4 { margin-bottom: 8px; font-size: 1rem; }
.step p { font-size: 0.85rem; color: var(--warm-gray); line-height: 1.6; }

/* ===== WELLNESS CARDS ===== */
.wellness-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.wellness-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.wellness-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.wellness-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sage-light), var(--gold-light));
  position: relative;
}
.wellness-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.wellness-card:hover .wellness-img img { transform: scale(1.06); }
.wellness-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  color: var(--sage);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.wellness-body { padding: 28px; }
.wellness-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.wellness-body p { font-size: 0.9rem; color: var(--warm-gray); margin-bottom: 18px; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
}
.faq-question h4 { font-size: 1.02rem; font-weight: 600; }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--section-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: var(--transition);
  font-weight: 300;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--gold-dark); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 22px; font-size: 0.94rem; color: var(--warm-gray); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ===== NEWSLETTER BAND ===== */
.newsletter-band {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2A2318 100%);
  padding: 80px 40px;
  text-align: center;
}
.newsletter-band h2 { color: var(--white); margin-bottom: 14px; }
.newsletter-band p { color: rgba(255,255,255,0.65); max-width: 460px; margin: 0 auto 40px; }
.newsletter-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 14px 22px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.11); }

/* ===== FOOTER ===== */
.footer { background: #111111; padding: 64px 40px 28px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 240px; margin-bottom: 24px; }
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold-dark); color: var(--white); }
.footer-col h5 {
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
  background: var(--section-alt);
  border-top: 1px solid var(--border);
  padding: 16px 40px;
  text-align: center;
}
.disclaimer-bar p { font-size: 0.75rem; color: var(--warm-gray); max-width: 900px; margin: 0 auto; line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .section { padding: 64px 24px; }
  .section-sm { padding: 48px 24px; }
  .stats-bar, .newsletter-band, .footer { padding-left: 24px; padding-right: 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
  .hero-image-wrap { order: -1; }
  .hero-image-frame { aspect-ratio: 3/2; border-radius: var(--radius-lg); }
  .hero-badge { bottom: -10px; left: 0; }
  .hero-badge-2 { top: 14px; right: 0; }
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.rev .feature-image-wrap { order: 0; }
  .product-grid, .benefit-grid, .wellness-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats-inner { flex-wrap: wrap; justify-content: center; gap: 0; }
  .stat-item { padding: 24px 30px; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .page-hero { padding: calc(var(--nav-height) + 48px) 24px 56px; }
  .timeline::before { left: 60px; }
  .timeline-item { grid-template-columns: 90px 1fr; gap: 20px; }
  .timeline-dot { left: 54px; }
  .quote-text { font-size: 1.3rem; }
  .nav-inner { padding: 0 24px; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .disclaimer-bar { padding: 14px 24px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .pillars { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== UTILITIES ===== */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.italic { font-style: italic; }
.gold-line {
  display: inline-block;
  width: 48px; height: 3px;
  background: var(--gold-dark);
  border-radius: 2px;
  margin: 20px auto;
}
.tag-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.tag-gold { background: var(--gold-light); color: var(--gold-dark); }
.tag-sage { background: var(--sage-light); color: var(--sage); }
.tag-dark { background: rgba(26,26,26,0.08); color: var(--charcoal); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
