:root {
  --forest: #1a3a2a;
  --forest-deep: #0f2218;
  --forest-light: #2d5a3f;
  --sage: #8faa8b;
  --sage-light: #b5ccb1;
  --sage-muted: #a3b89f;
  --ivory: #f5f1eb;
  --ivory-warm: #ebe5db;
  --cream: #faf8f5;
  --black: #1a1a1a;
  --black-matte: #2a2a2a;
  --gold: #b8965a;
  --gold-muted: #c4a46e;
  --gold-light: #d4be8e;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-light: #7a7a7a;
  --text-on-dark: #f5f1eb;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  background: var(--cream);
  font-weight: 400;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--forest);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 58, 42, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-leaf {
  font-size: 22px;
  color: var(--forest);
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.5px;
}

.nav-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sage-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-brand {
  text-decoration: none;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.25s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-muted);
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--forest);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--gold);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-muted);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(184, 150, 90, 0.4);
}

/* Sales/funnel nav hamburger — dark bars on light bg */
.nav .hamburger {
  border-color: rgba(26, 58, 42, 0.2);
}

.nav .hamburger span {
  background: var(--forest);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(170deg, var(--forest-deep) 0%, var(--forest) 40%, var(--forest-light) 100%);
  padding: 120px 24px 80px;
  overflow: hidden;
  text-align: center;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184, 150, 90, 0.12);
}

.hero-circle-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  border-color: rgba(184, 150, 90, 0.08);
}

.hero-circle-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(143, 170, 139, 0.08) 0%, transparent 70%);
}

.hero-circle-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  left: 10%;
  border-color: rgba(255, 255, 255, 0.04);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--ivory);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-accent {
  color: var(--sage-light);
  font-style: italic;
}

.hero-lede {
  font-size: 1.1rem;
  color: rgba(245, 241, 235, 0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.9;
}

.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 20px;
  border: 1px solid rgba(184, 150, 90, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-botanical {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 1;
  opacity: 0.15;
}

.botanical-ring {
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 30s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.ring-text {
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--gold-muted);
  text-transform: uppercase;
}

/* ===== SYMPTOMS ===== */
.symptoms {
  padding: 120px 0;
  background: var(--cream);
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.symptom-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(26, 58, 42, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.symptom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold-muted));
  opacity: 0;
  transition: var(--transition);
}

.symptom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26, 58, 42, 0.08);
}

.symptom-card:hover::before {
  opacity: 1;
}

.symptom-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--forest);
  margin-bottom: 20px;
}

.symptom-card h3 {
  font-size: 1.35rem;
  color: var(--forest);
  margin-bottom: 10px;
}

.symptom-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== PROCESS ===== */
.process {
  padding: 120px 0;
  background: var(--forest-deep);
  color: var(--text-on-dark);
}

.process .section-title {
  color: var(--ivory);
}

.process .section-subtitle {
  color: rgba(245, 241, 235, 0.6);
}

.process-steps {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 2px 1fr;
  gap: 40px;
  align-items: start;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-muted);
  line-height: 1;
  text-align: right;
}

.step-line {
  width: 2px;
  height: 100%;
  min-height: 80px;
  background: linear-gradient(180deg, var(--gold-muted), transparent);
}

.step-content h3 {
  font-size: 1.8rem;
  color: var(--ivory);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 1rem;
  color: rgba(245, 241, 235, 0.65);
  line-height: 1.8;
  max-width: 500px;
}

.step-herbs {
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-muted);
}

/* ===== INCLUDED ===== */
.included {
  padding: 120px 0;
  background: var(--ivory);
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}

.included-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(26, 58, 42, 0.06);
  transition: var(--transition);
}

.included-card:hover {
  box-shadow: 0 12px 40px rgba(26, 58, 42, 0.06);
}

.included-featured {
  grid-column: 1 / -1;
  background: var(--forest);
  color: var(--ivory);
  padding: 48px;
  border: none;
  position: relative;
  overflow: hidden;
}

.included-featured::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 150, 90, 0.1), transparent);
}

.included-featured h3 {
  color: var(--ivory);
  font-size: 1.6rem;
}

.included-featured p {
  color: rgba(245, 241, 235, 0.7);
}

.included-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184, 150, 90, 0.3);
  margin-bottom: 16px;
}

.included-icon {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.included-card h3 {
  font-size: 1.35rem;
  color: var(--forest);
  margin-bottom: 8px;
}

.included-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 120px 0;
  background: var(--cream);
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.philosophy-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.philosophy-values {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--forest);
}

.value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.philosophy-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.visual-card {
  background: var(--forest);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
}

.visual-card:first-child {
  grid-column: 1 / -1;
}

.visual-stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.visual-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.5);
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 0 80px;
  background: linear-gradient(170deg, var(--ivory) 0%, var(--ivory-warm) 100%);
  text-align: center;
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
}

.closing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--forest);
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.closing-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 48px;
}

.closing-disclaimer {
  padding-top: 40px;
  border-top: 1px solid rgba(26, 58, 42, 0.1);
}

.closing-disclaimer p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  background: var(--forest-deep);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ivory);
}

.footer-text p {
  font-size: 0.85rem;
  color: rgba(245, 241, 235, 0.5);
}

.footer-fine {
  font-size: 0.7rem !important;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(245, 241, 235, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 50px 2px 1fr;
    gap: 20px;
  }

  .step-number {
    font-size: 2rem;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .philosophy-visual {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: 90vh;
  }

  .nav-tagline {
    display: none;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hero-botanical {
    display: none;
  }

  .included-featured {
    padding: 32px;
  }

  .visual-stat {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .badge {
    width: 100%;
    text-align: center;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-number {
    text-align: left;
  }

  .step-line {
    display: none;
  }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 18px 44px;
  background: var(--gold);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 100px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-muted);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184, 150, 90, 0.35);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--forest);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 100px;
  border: 2px solid var(--forest);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--forest);
  color: var(--ivory);
  transform: translateY(-2px);
}

/* ===== HERO CTA ===== */
.hero-cta-block {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  justify-content: center;
}

.hero-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.hero-price-note {
  font-size: 0.8rem;
  color: rgba(245, 241, 235, 0.55);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.hero-btn {
  font-size: 1rem;
  padding: 20px 52px;
}

.hero-guarantee {
  font-size: 0.75rem;
  color: rgba(245, 241, 235, 0.45);
  letter-spacing: 0.5px;
}

/* ===== PRICING BLOCK (inside included) ===== */
.pricing-block {
  margin-top: 72px;
  padding: 56px;
  background: var(--forest);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-block::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 150, 90, 0.08), transparent);
}

.pricing-value-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.pricing-was {
  font-size: 0.9rem;
  color: rgba(245, 241, 235, 0.45);
  text-decoration: line-through;
}

.pricing-arrow {
  font-size: 1.2rem;
  color: var(--gold-muted);
}

.pricing-now {
  font-size: 1.1rem;
  color: var(--ivory);
  font-weight: 500;
}

.pricing-now strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
}

.pricing-btn {
  font-size: 1rem;
  padding: 20px 52px;
  margin-bottom: 16px;
}

.pricing-fine {
  font-size: 0.75rem;
  color: rgba(245, 241, 235, 0.35);
  letter-spacing: 0.5px;
}

/* ===== ORDER BUMP ===== */
.order-bump-section {
  padding: 0 0 80px;
  background: var(--ivory);
}

.order-bump-box {
  border: 2px dashed var(--gold-muted);
  border-radius: var(--radius-lg);
  padding: 48px;
  background: var(--cream);
  position: relative;
}

.order-bump-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.order-bump-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.order-bump-left {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.order-bump-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}

.order-bump-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.2;
}

.order-bump-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.order-bump-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-bump-list li {
  font-size: 0.85rem;
  color: var(--forest);
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.order-bump-right {
  flex-shrink: 0;
}

.order-bump-price-box {
  background: white;
  border: 1px solid rgba(26, 58, 42, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  min-width: 220px;
}

.order-bump-strikethrough {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 6px;
}

.order-bump-price {
  font-size: 1rem;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 20px;
}

.order-bump-price span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1.1;
  margin-top: 4px;
}

.order-bump-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.order-bump-fine {
  font-size: 0.7rem;
  color: var(--text-light);
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 120px 0;
  background: var(--cream);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid rgba(26, 58, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  font-style: normal;
  flex: 1;
}

.testimonial-card blockquote em {
  color: var(--forest);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--forest-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest);
}

.author-detail {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ===== FAQ ===== */
.faq {
  padding: 120px 0;
  background: var(--forest-deep);
}

.faq .section-label {
  color: var(--gold-muted);
}

.faq .section-title {
  color: var(--ivory);
}

.faq-grid {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid rgba(245, 241, 235, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.5;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--gold-muted);
  flex-shrink: 0;
  font-weight: 300;
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.faq-open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: rgba(245, 241, 235, 0.65);
  line-height: 1.85;
  padding-bottom: 24px;
}

/* ===== CLOSING CTA ===== */
.closing-cta-block {
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.closing-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  justify-content: center;
}

.closing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}

.closing-price-note {
  font-size: 0.8rem;
  color: var(--text-light);
}

.closing-btn {
  font-size: 1rem;
  padding: 20px 52px;
}

.closing-trust {
  display: flex;
  gap: 24px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(170deg, var(--forest-deep) 0%, var(--forest) 60%, var(--forest-light) 100%);
}

.thankyou-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.thankyou-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.thankyou-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--ivory);
  margin-bottom: 20px;
}

.thankyou-text {
  font-size: 1.05rem;
  color: rgba(245, 241, 235, 0.7);
  line-height: 1.9;
  margin-bottom: 48px;
}

.thankyou-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;
  text-align: left;
}

.thankyou-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(245, 241, 235, 0.06);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.95rem;
  color: rgba(245, 241, 235, 0.8);
  line-height: 1.6;
}

.thankyou-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.thankyou-bump {
  background: rgba(245, 241, 235, 0.06);
  border: 1px solid rgba(184, 150, 90, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 40px;
}

.thankyou-bump-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 8px;
}

.thankyou-bump-sub {
  font-size: 0.9rem;
  color: rgba(245, 241, 235, 0.55);
  margin-bottom: 20px;
}

.thankyou-bump .btn-secondary {
  color: var(--gold-light);
  border-color: var(--gold-muted);
}

.thankyou-bump .btn-secondary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.thankyou-back {
  font-size: 0.85rem;
  color: rgba(245, 241, 235, 0.4);
  text-decoration: none;
  transition: var(--transition);
}

.thankyou-back:hover {
  color: rgba(245, 241, 235, 0.7);
}

/* ===== THANK YOU — UPSELL BLOCK ===== */
.thankyou-upsell {
  background: linear-gradient(135deg, rgba(184, 150, 90, 0.12), rgba(184, 150, 90, 0.06));
  border: 1px solid rgba(184, 150, 90, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-bottom: 20px;
  position: relative;
}

.thankyou-upsell-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.thankyou-upsell-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--ivory);
  margin-bottom: 10px;
  font-weight: 600;
}

.thankyou-upsell-sub {
  font-size: 0.9rem;
  color: rgba(245, 241, 235, 0.65);
  line-height: 1.8;
  margin-bottom: 20px;
}

.thankyou-upsell-sub strong {
  color: rgba(245, 241, 235, 0.85);
}

.thankyou-upsell-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.thankyou-upsell-was {
  font-size: 0.85rem;
  color: rgba(245, 241, 235, 0.4);
  text-decoration: line-through;
}

.thankyou-upsell-now {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.thankyou-upsell-note {
  font-size: 0.8rem;
  color: rgba(245, 241, 235, 0.45);
}

.thankyou-upsell-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 18px 32px;
}

/* ===== UPSELL PAGE ===== */
.upsell-body {
  background: var(--cream);
}

.upsell-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 58, 42, 0.08);
}

.upsell-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.upsell-nav-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184, 150, 90, 0.35);
  padding: 5px 14px;
  border-radius: 100px;
}

/* Upsell hero */
.upsell-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest) 50%, var(--forest-light) 100%);
  padding: 120px 24px 80px;
  overflow: hidden;
}

.upsell-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.upsell-hero-circle {
  position: absolute;
  border-radius: 50%;
}

.upsell-circle-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
  border: 1px solid rgba(184, 150, 90, 0.07);
  background: radial-gradient(circle, rgba(184, 150, 90, 0.04), transparent 60%);
}

.upsell-circle-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(143, 170, 139, 0.07), transparent 60%);
}

.upsell-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.upsell-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 28px;
  display: block;
}

.upsell-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--ivory);
  margin-bottom: 28px;
  font-weight: 500;
  line-height: 1.18;
}

.upsell-hero-accent {
  color: var(--sage-light);
  font-style: italic;
}

.upsell-hero-lede {
  font-size: 1.1rem;
  color: rgba(245, 241, 235, 0.72);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.9;
}

.upsell-hero-lede strong {
  color: rgba(245, 241, 235, 0.9);
  font-weight: 600;
}

.upsell-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.upsell-price-was {
  display: flex;
  align-items: center;
  gap: 10px;
}

.upsell-strikethrough {
  font-size: 0.9rem;
  color: rgba(245, 241, 235, 0.35);
  text-decoration: line-through;
}

.upsell-arrow {
  font-size: 1.1rem;
  color: var(--gold-muted);
}

.upsell-price-now {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.upsell-price-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.6rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.upsell-price-note {
  font-size: 0.8rem;
  color: rgba(245, 241, 235, 0.45);
  font-weight: 400;
}

.upsell-hero-btn {
  font-size: 1.05rem;
  padding: 20px 56px;
  display: inline-block;
  margin-bottom: 20px;
}

.upsell-skip {
  margin-top: 4px;
}

.upsell-skip-link {
  font-size: 0.8rem;
  color: rgba(245, 241, 235, 0.3);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid rgba(245, 241, 235, 0.12);
  padding-bottom: 2px;
}

.upsell-skip-link:hover {
  color: rgba(245, 241, 235, 0.55);
}

/* Includes section */
.upsell-includes {
  padding: 120px 0;
  background: var(--ivory);
}

.upsell-includes-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.upsell-includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.upsell-include-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(26, 58, 42, 0.06);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.upsell-include-card:hover {
  box-shadow: 0 12px 40px rgba(26, 58, 42, 0.07);
  transform: translateY(-2px);
}

.upsell-include-featured {
  grid-column: 1 / -1;
  background: var(--forest);
  border: none;
  padding: 40px;
}

.upsell-include-featured .upsell-include-label {
  color: var(--gold-muted);
  border-color: rgba(184, 150, 90, 0.25);
}

.upsell-include-featured .upsell-include-title {
  color: var(--ivory);
}

.upsell-include-featured .upsell-include-desc {
  color: rgba(245, 241, 235, 0.65);
}

.upsell-include-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.upsell-include-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184, 150, 90, 0.25);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.upsell-include-title {
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 8px;
}

.upsell-include-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Compare section */
.upsell-compare {
  padding: 120px 0;
  background: var(--forest-deep);
}

.upsell-compare .section-label {
  color: var(--gold-muted);
}

.upsell-compare-title {
  color: var(--ivory);
  margin-bottom: 60px;
}

.upsell-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
}

.upsell-compare-col {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
}

.upsell-compare-basic {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 241, 235, 0.08);
}

.upsell-compare-pro {
  background: var(--forest-light);
  border: 2px solid var(--gold-muted);
}

.upsell-compare-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.upsell-compare-header {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 28px;
  line-height: 1.3;
}

.upsell-compare-price-small {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(245, 241, 235, 0.45);
  letter-spacing: 0.5px;
}

.upsell-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.upsell-compare-list li {
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.upsell-compare-list li::before {
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 2px;
}

.upsell-compare-list li.check {
  color: rgba(245, 241, 235, 0.6);
}

.upsell-compare-list li.check::before {
  content: '✓';
  color: var(--sage);
}

.upsell-compare-list li.check-pro {
  color: var(--ivory);
  font-weight: 500;
}

.upsell-compare-list li.check-pro::before {
  content: '✓';
  color: var(--gold-light);
}

.upsell-compare-list li.missing {
  color: rgba(245, 241, 235, 0.25);
  text-decoration: line-through;
}

.upsell-compare-list li.missing::before {
  content: '–';
  color: rgba(245, 241, 235, 0.2);
}

.upsell-compare-btn {
  width: 100%;
  text-align: center;
  display: block;
  font-size: 0.95rem;
  padding: 16px 24px;
}

/* Testimonials */
.upsell-testimonials {
  padding: 100px 0;
  background: var(--cream);
}

.upsell-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.upsell-testimonial {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(26, 58, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.upsell-testimonial blockquote {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.85;
  font-style: italic;
  flex: 1;
}

/* Final CTA */
.upsell-final-cta {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest) 100%);
  text-align: center;
}

.upsell-final-content {
  max-width: 640px;
  margin: 0 auto;
}

.upsell-final-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 24px;
  display: block;
}

.upsell-final-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--ivory);
  margin-bottom: 16px;
  font-weight: 500;
}

.upsell-final-sub {
  font-size: 1rem;
  color: rgba(245, 241, 235, 0.6);
  line-height: 1.85;
  margin-bottom: 48px;
}

.upsell-final-price-block {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.upsell-final-was {
  font-size: 0.9rem;
  color: rgba(245, 241, 235, 0.35);
  text-decoration: line-through;
}

.upsell-final-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.upsell-final-note {
  font-size: 0.8rem;
  color: rgba(245, 241, 235, 0.4);
}

.upsell-final-btn {
  font-size: 1.05rem;
  padding: 20px 56px;
  display: inline-block;
  margin-bottom: 16px;
}

.upsell-final-trust {
  font-size: 0.75rem;
  color: rgba(245, 241, 235, 0.35);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.upsell-final-skip {
  display: block;
  font-size: 0.8rem;
  color: rgba(245, 241, 235, 0.3);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid rgba(245, 241, 235, 0.1);
  display: inline-block;
  padding-bottom: 2px;
}

.upsell-final-skip:hover {
  color: rgba(245, 241, 235, 0.5);
}

/* ===== RESPONSIVE (additions) ===== */
@media (max-width: 960px) {
  .order-bump-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .order-bump-price-box {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .upsell-includes-grid {
    grid-template-columns: 1fr;
  }

  .upsell-compare-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .upsell-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .upsell-include-card {
    flex-direction: column;
    gap: 12px;
  }

  .upsell-include-featured {
    flex-direction: row;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .pricing-block {
    padding: 36px 24px;
  }

  .order-bump-box {
    padding: 40px 24px;
  }

  .order-bump-left {
    flex-direction: column;
    gap: 12px;
  }

  .closing-trust {
    gap: 12px;
  }

  .hero-price {
    font-size: 2.2rem;
  }
}

/* ================================================================
   HOMEPAGE — All home-specific styles below
   ================================================================ */

/* ===== HOME NAV ===== */
.home-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 26, 17, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(184, 150, 90, 0.12);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.home-nav.scrolled {
  background: rgba(10, 26, 17, 0.94);
  box-shadow: 0 4px 40px rgba(0,0,0,0.28);
}

.home-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.home-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.home-nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.home-nav-leaf {
  font-size: 20px;
  color: var(--sage-light);
}

.home-nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.4px;
  line-height: 1;
}

.home-nav-tagline {
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(184, 150, 90, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.home-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.home-nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(245, 241, 235, 0.65);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.25s ease;
  position: relative;
}

.home-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-muted);
  transition: width 0.25s ease;
}

.home-nav-link:hover,
.home-nav-link.active {
  color: var(--ivory);
}

.home-nav-link:hover::after,
.home-nav-link.active::after {
  width: 100%;
}

.home-nav-cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--gold);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.home-nav-cta:hover {
  background: var(--gold-muted);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(184, 150, 90, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: 1px solid rgba(184, 150, 90, 0.25);
  border-radius: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ivory);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 26, 17, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--forest-deep);
  border-left: 1px solid rgba(184, 150, 90, 0.15);
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(184, 150, 90, 0.1);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: rgba(245, 241, 235, 0.5);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

.mobile-menu-close:hover {
  color: var(--ivory);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}

.mobile-nav-link {
  display: block;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(245, 241, 235, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 150, 90, 0.06);
  transition: color 0.2s, background 0.2s;
}

.mobile-nav-link:hover {
  color: var(--ivory);
  background: rgba(184, 150, 90, 0.05);
}

.mobile-menu-cta {
  padding: 24px;
  border-top: 1px solid rgba(184, 150, 90, 0.1);
}

.mobile-cta-btn {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}

.mobile-cta-note {
  font-size: 0.72rem;
  color: rgba(245, 241, 235, 0.35);
  text-align: center;
  letter-spacing: 0.3px;
}

/* ===== FADE ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0ms);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay {
  --delay: 160ms;
}

/* ===== HOME HERO ===== */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(158deg, #050e09 0%, var(--forest-deep) 35%, #162b1e 70%, #1f3828 100%);
  overflow: hidden;
  padding-top: 68px;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(143,170,139,0.09) 0%, transparent 70%);
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(184,150,90,0.07) 0%, transparent 70%);
}

.hero-botanical-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.botanical-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(143,170,139,0.12), transparent);
  height: 1px;
  width: 100%;
}

.bl-1 { top: 20%; }
.bl-2 { top: 50%; }
.bl-3 { top: 80%; }

.hero-ring-motif {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  opacity: 0.6;
  animation: slowSpin 60s linear infinite;
}

.hero-ring-svg {
  width: 100%;
  height: 100%;
}

@keyframes slowSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

.home-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
  width: 100%;
}

.home-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 28px;
}

.eyebrow-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-muted);
}

.home-hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 28px;
  font-weight: 500;
}

.home-hero-accent {
  color: var(--sage-light);
  font-style: italic;
  display: block;
}

.home-hero-sub {
  font-size: 1.05rem;
  color: rgba(245, 241, 235, 0.65);
  line-height: 1.9;
  max-width: 500px;
  margin-bottom: 44px;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.home-hero-btn-primary {
  font-size: 1rem;
  padding: 18px 44px;
}

.home-hero-btn-ghost {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(245, 241, 235, 0.65);
  text-decoration: none;
  transition: color 0.25s ease;
}

.home-hero-btn-ghost:hover {
  color: var(--ivory);
}

.ghost-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(245, 241, 235, 0.2);
  border-radius: 50%;
  font-size: 0.75rem;
  transition: border-color 0.25s, transform 0.25s;
}

.home-hero-btn-ghost:hover .ghost-icon {
  border-color: rgba(245, 241, 235, 0.5);
  transform: translateY(2px);
}

.home-hero-trust {
  display: flex;
  gap: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(245, 241, 235, 0.38);
  letter-spacing: 0.3px;
  flex-wrap: wrap;
}

/* Hero visual / card stack */
.home-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 440px;
}

.hero-card-stack {
  position: relative;
  width: 280px;
  height: 380px;
}

.hero-product-card {
  position: absolute;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(45,90,63,0.9), rgba(26,58,42,0.95));
  border: 1px solid rgba(184,150,90,0.2);
  transition: transform 0.4s ease;
}

.hero-card-back {
  width: 240px;
  height: 320px;
  top: 40px;
  left: -20px;
  transform: rotate(-6deg);
  opacity: 0.5;
  z-index: 1;
}

.hero-card-mid {
  width: 240px;
  height: 320px;
  top: 20px;
  right: -20px;
  transform: rotate(4deg);
  opacity: 0.65;
  z-index: 2;
}

.hero-card-front {
  width: 260px;
  height: 340px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: linear-gradient(145deg, rgba(45,90,63,1), rgba(15,34,24,1));
  border: 1px solid rgba(184,150,90,0.35);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(184,150,90,0.1);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.hero-card-stack:hover .hero-card-back {
  transform: rotate(-9deg) translateX(-8px);
}

.hero-card-stack:hover .hero-card-mid {
  transform: rotate(6deg) translateX(8px);
}

.product-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
}

.product-card-icon {
  font-size: 2rem;
}

.product-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(245,241,235,0.5);
  letter-spacing: 1px;
  text-align: center;
}

.product-card-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gold);
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 8px;
  align-self: flex-start;
}

.product-card-inner-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-main-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.product-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 6px;
}

.product-main-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-muted);
  margin-bottom: 20px;
}

.product-main-divider {
  height: 1px;
  background: rgba(184,150,90,0.2);
  margin-bottom: 20px;
}

.product-main-stats {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.pstat {
  text-align: center;
}

.pstat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.pstat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,241,235,0.35);
  margin-top: 4px;
}

/* Floating badges */
.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 34, 24, 0.9);
  border: 1px solid rgba(184,150,90,0.25);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}

.badge-a {
  top: 20px;
  left: -40px;
  animation: floatA 4s ease-in-out infinite;
}

.badge-b {
  bottom: 40px;
  right: -30px;
  animation: floatB 4.5s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.fbadge-icon {
  font-size: 1.4rem;
}

.fbadge-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1;
}

.fbadge-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(245,241,235,0.45);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,241,235,0.3);
  font-weight: 600;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(184,150,90,0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===== HOME SYMPTOMS ===== */
.home-symptoms {
  padding: 130px 0;
  background: var(--cream);
}

.home-symptoms-header {
  max-width: 620px;
  margin-bottom: 72px;
}

.home-symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-symptom-card {
  position: relative;
  background: var(--ivory);
  border-radius: 18px;
  padding: 36px 28px;
  border: 1px solid rgba(26, 58, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  transition-delay: var(--delay, 0ms);
}

.hsc-glow {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(143,170,139,0.12), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-symptom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(26, 58, 42, 0.1);
}

.home-symptom-card:hover .hsc-glow {
  opacity: 1;
}

.hsc-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.hsc-emoji {
  filter: saturate(0.9);
}

.hsc-title {
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 10px;
}

.hsc-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.hsc-tag {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(26,58,42,0.07);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--forest-light);
}

.home-symptoms-bridge {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid rgba(26,58,42,0.08);
}

.home-symptoms-bridge p {
  font-size: 1rem;
  color: var(--text-secondary);
  flex: 1;
  line-height: 1.7;
}

/* ===== HOME PROCESS ===== */
.home-process {
  padding: 130px 0;
  background: var(--forest-deep);
  position: relative;
  overflow: hidden;
}

.home-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,90,0.3), transparent);
}

.home-process-header {
  max-width: 600px;
  margin-bottom: 80px;
}

.home-process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hp-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,150,90,0.12);
  border-radius: 20px;
  padding: 40px 32px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  transition-delay: var(--delay, 0ms);
}

.hp-card:hover {
  border-color: rgba(184,150,90,0.28);
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
}

.hp-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(184,150,90,0.15);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 28px;
}

.hp-card-phase {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 16px;
}

.hp-card-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.hp-card-title {
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 14px;
  line-height: 1.3;
}

.hp-card-desc {
  font-size: 0.88rem;
  color: rgba(245,241,235,0.58);
  line-height: 1.8;
  margin-bottom: 24px;
}

.hp-card-herbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.herb-chip {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(143,170,139,0.25);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--sage-light);
  letter-spacing: 0.5px;
}

/* ===== HOME INCLUDED ===== */
.home-included {
  padding: 130px 0;
  background: var(--ivory);
}

.home-included-header {
  max-width: 600px;
  margin-bottom: 72px;
}

.hi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.hi-card {
  background: white;
  border-radius: 18px;
  padding: 36px 28px;
  border: 1px solid rgba(26,58,42,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  transition-delay: var(--delay, 0ms);
}

.hi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,58,42,0.08);
}

.hi-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  border: none;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
  color: var(--ivory);
}

.hi-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(26,58,42,0.2);
}

.hi-featured-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,90,0.1), transparent);
  pointer-events: none;
}

.hi-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.hi-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-muted);
  letter-spacing: 1px;
}

.hi-featured .hi-num {
  color: rgba(184,150,90,0.7);
}

.hi-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold);
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
}

.hi-emoji {
  font-size: 2rem;
  margin-bottom: 16px;
}

.hi-title {
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 10px;
}

.hi-featured .hi-title {
  color: var(--ivory);
  font-size: 1.6rem;
}

.hi-desc {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.hi-featured .hi-desc {
  color: rgba(245,241,235,0.65);
}

.hi-value {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-muted);
}

/* Value bar */
.hi-value-bar {
  margin-top: 48px;
  background: var(--forest);
  border-radius: 18px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hi-value-total-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,241,235,0.4);
  margin-bottom: 4px;
}

.hi-value-was {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(245,241,235,0.35);
  text-decoration: line-through;
}

.hi-value-arrow {
  font-size: 1.5rem;
  color: var(--gold-muted);
}

.hi-value-now-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,241,235,0.4);
  margin-bottom: 4px;
}

.hi-value-now {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
}

.hi-cta-btn {
  margin-left: auto;
  white-space: nowrap;
}

/* ===== HOME TESTIMONIALS ===== */
.home-testimonials {
  padding: 130px 0;
  background: var(--cream);
}

.home-test-header {
  max-width: 600px;
  margin-bottom: 72px;
}

.ht-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ht-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(26,58,42,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition-delay: var(--delay, 0ms);
}

.ht-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26,58,42,0.09);
}

.ht-card-featured {
  border-color: rgba(184,150,90,0.2);
  background: linear-gradient(145deg, #fffdf9, white);
}

.ht-featured-label {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,150,90,0.3);
  padding: 3px 10px;
  border-radius: 100px;
}

.ht-featured-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,90,0.07), transparent);
  pointer-events: none;
}

.ht-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.ht-quote {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.85;
  font-style: normal;
  flex: 1;
}

.ht-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ht-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--avatar-hue, 140), 35%, 35%), hsl(var(--avatar-hue, 140), 25%, 25%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  flex-shrink: 0;
  position: relative;
}

.ht-avatar::after {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
}

.ht-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest);
}

.ht-detail {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* Social proof bar */
.ht-bar {
  margin-top: 60px;
  background: var(--forest);
  border-radius: 18px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.ht-stat {
  text-align: center;
  flex: 1;
}

.ht-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.ht-stat-stars {
  color: var(--gold-muted);
  font-size: 0.75rem;
  margin: 4px 0;
}

.ht-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,241,235,0.38);
}

.ht-bar-divider {
  width: 1px;
  height: 56px;
  background: rgba(184,150,90,0.15);
  flex-shrink: 0;
  margin: 0 24px;
}

/* ===== HOME CTA ===== */
.home-cta {
  padding: 140px 0;
  background: linear-gradient(158deg, var(--forest-deep) 0%, #162b1e 50%, #0f2218 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.home-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-orb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(143,170,139,0.08), transparent);
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -50px;
  background: radial-gradient(circle, rgba(184,150,90,0.07), transparent);
}

.home-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 28px;
}

.home-cta-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--ivory);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 24px;
}

.home-cta-sub {
  font-size: 1.05rem;
  color: rgba(245,241,235,0.6);
  line-height: 1.85;
  margin-bottom: 40px;
}

.home-cta-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.cta-was {
  color: rgba(245,241,235,0.3);
  text-decoration: line-through;
}

.cta-arrow {
  color: var(--gold-muted);
}

.cta-now {
  color: var(--ivory);
  font-weight: 500;
}

.cta-now strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold-light);
}

.home-cta-btn {
  font-size: 1.05rem;
  padding: 20px 56px;
  margin-bottom: 40px;
}

.home-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(245,241,235,0.5);
}

.cta-trust-icon {
  font-size: 1rem;
}

.home-cta-disclaimer {
  font-size: 0.72rem;
  color: rgba(245,241,235,0.28);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}

/* ===== HOMEPAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .home-hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .home-hero-eyebrow,
  .home-hero-actions,
  .home-hero-trust {
    justify-content: center;
  }

  .home-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero-visual {
    height: 360px;
  }

  .hero-ring-motif {
    display: none;
  }

  .badge-a {
    left: 0;
  }

  .badge-b {
    right: 0;
  }
}

@media (max-width: 860px) {
  .home-symptom-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-process-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .hi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hi-featured {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ht-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

  .hi-value-bar {
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
  }

  .hi-cta-btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .ht-bar {
    padding: 28px 24px;
  }
}

@media (max-width: 768px) {
  .home-nav-links,
  .home-nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .home-nav-tagline {
    display: none;
  }

  .home-hero {
    padding-top: 68px;
  }

  .home-hero-visual {
    display: none;
  }

  .home-hero-content {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .home-symptom-grid {
    grid-template-columns: 1fr;
  }

  .hi-grid {
    grid-template-columns: 1fr;
  }

  .home-symptoms-bridge {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .ht-bar {
    flex-direction: column;
    gap: 28px;
  }

  .ht-bar-divider {
    width: 60px;
    height: 1px;
    margin: 0;
  }
}

/* ===== BLOG SYSTEM ===== */

/* -- Blog Nav -- */
.blog-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 34, 24, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 150, 90, 0.15);
}

.blog-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.blog-nav-home {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.blog-nav-leaf {
  font-size: 20px;
  color: var(--gold);
}

.blog-nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.5px;
  display: block;
  line-height: 1.2;
}

.blog-nav-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--sage-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

.blog-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.blog-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sage-light);
  text-decoration: none;
  transition: color var(--transition);
}

.blog-nav-link:hover,
.blog-nav-active {
  color: var(--ivory) !important;
}

.blog-nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest-deep);
  background: var(--gold);
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: background var(--transition);
  white-space: nowrap;
}

.blog-nav-cta:hover {
  background: var(--gold-light);
}

/* -- Blog Hero -- */
.blog-hero {
  background: var(--forest-deep);
  padding: 80px 24px 72px;
  text-align: center;
}

.blog-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.blog-hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.blog-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 20px;
  line-height: 1.1;
}

.blog-hero-sub {
  font-size: 1rem;
  color: var(--sage-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.blog-hero-rss {
  display: flex;
  justify-content: center;
}

.blog-rss-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(184, 150, 90, 0.4);
  padding: 8px 18px;
  border-radius: 100px;
  transition: background var(--transition);
}

.blog-rss-link:hover {
  background: rgba(184, 150, 90, 0.1);
}

/* -- Category Filter Bar -- */
.blog-filter-bar {
  background: var(--ivory-warm);
  border-bottom: 1px solid rgba(26, 58, 42, 0.1);
  position: sticky;
  top: 57px;
  z-index: 90;
}

.blog-filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.blog-filter-inner::-webkit-scrollbar { display: none; }

.blog-filter-link {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 16px 18px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  text-transform: capitalize;
}

.blog-filter-link:hover {
  color: var(--forest);
}

.blog-filter-active {
  color: var(--forest) !important;
  border-bottom-color: var(--gold);
}

/* -- Blog Main / Grid -- */
.blog-main {
  background: var(--cream);
  padding: 64px 24px 80px;
}

.blog-main-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-search-results,
.blog-category-header {
  margin-bottom: 40px;
}

.blog-search-results p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.blog-clear-search {
  font-size: 0.85rem;
  color: var(--forest);
  text-decoration: none;
  margin-left: 12px;
}

.blog-clear-search:hover { text-decoration: underline; }

.blog-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}

.blog-category-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.blog-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-light);
}

.blog-empty a {
  color: var(--forest);
  font-weight: 600;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Featured card spans full row */
.blog-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 58, 42, 0.08);
}

.blog-card-featured .blog-card-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  height: 100%;
}

.blog-card-featured .blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-featured .blog-card-body {
  padding: 0;
}

.blog-card-featured .blog-card-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.blog-card-featured .blog-card-excerpt {
  -webkit-line-clamp: 4;
}

/* -- Article Card -- */
.blog-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26, 58, 42, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 34, 24, 0.1);
}

.blog-card-image-wrap {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--forest-light);
  flex-shrink: 0;
}

.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.03);
}

.blog-card-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--forest-light), var(--forest));
}

.blog-card-placeholder-icon {
  font-size: 2.5rem;
  color: rgba(184, 150, 90, 0.3);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.blog-card-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(143, 170, 139, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
}

.blog-card-sep {
  color: var(--text-light);
  font-size: 0.75rem;
}

.blog-card-read-time {
  font-size: 0.75rem;
  color: var(--text-light);
}

.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.blog-card-title a:hover { color: var(--forest-light); }

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 58, 42, 0.08);
}

.blog-card-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.blog-card-read-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  transition: color var(--transition);
}

.blog-card-read-link:hover { color: var(--gold); }

/* -- CTA Banner -- */
.blog-cta-banner {
  background: var(--forest-deep);
  padding: 72px 24px;
  text-align: center;
}

.blog-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.blog-cta-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.blog-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 16px;
}

.blog-cta-body {
  font-size: 1rem;
  color: var(--sage-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.blog-cta-btn {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-deep);
  background: var(--gold);
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.blog-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* -- Blog Footer -- */
.blog-footer {
  background: var(--forest);
  padding: 48px 24px;
}

.blog-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.blog-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.blog-footer-leaf {
  font-size: 1.4rem;
  color: var(--gold);
}

.blog-footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ivory);
}

.blog-footer-disclaimer {
  font-size: 0.78rem;
  color: var(--sage-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 24px;
}

.blog-footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.blog-footer-links a {
  font-size: 0.8rem;
  color: var(--sage-light);
  text-decoration: none;
  transition: color var(--transition);
}

.blog-footer-links a:hover { color: var(--ivory); }

/* -- 404 -- */
.blog-404 {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  background: var(--cream);
}

.blog-404-code {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.15;
}

.blog-404-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}

.blog-404-body {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.blog-404-btn {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ivory);
  background: var(--forest);
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background var(--transition);
}

.blog-404-btn:hover { background: var(--forest-light); }

/* ===== ARTICLE PAGE ===== */

/* -- Article Header -- */
.article-header {
  background: var(--forest-deep);
  padding: 80px 24px 56px;
}

.article-header-inner {
  max-width: 760px;
  margin: 0 auto;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.8rem;
}

.article-breadcrumb a {
  color: var(--sage-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.article-breadcrumb a:hover { color: var(--sage-light); }

.article-breadcrumb span { color: var(--sage-muted); }

.article-meta-top {
  margin-bottom: 16px;
}

.article-category-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--forest-deep);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 100px;
}

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 20px;
  line-height: 1.15;
}

.article-excerpt {
  font-size: 1.1rem;
  color: var(--sage-light);
  line-height: 1.8;
  margin-bottom: 32px;
  font-style: italic;
}

.article-meta-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 150, 90, 0.2);
  flex-wrap: wrap;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-author-avatar,
.article-bio-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest-light);
  border: 1px solid rgba(184, 150, 90, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.article-author-info {
  display: flex;
  flex-direction: column;
}

.article-author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ivory);
}

.article-author-title {
  font-size: 0.75rem;
  color: var(--sage-muted);
}

.article-meta-details {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-date,
.article-read-time {
  font-size: 0.8rem;
  color: var(--sage-muted);
}

.article-meta-sep {
  color: var(--sage-muted);
  font-size: 0.75rem;
}

/* -- Share Buttons -- */
.article-share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.article-share-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.article-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(184, 150, 90, 0.25);
  color: var(--sage-light);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  font-size: 0.8rem;
}

.article-share-btn:hover {
  background: rgba(184, 150, 90, 0.15);
  color: var(--gold);
  border-color: rgba(184, 150, 90, 0.5);
}

/* -- Article Image -- */
.article-image-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-featured-image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-top: -32px;
  margin-bottom: 0;
  display: block;
  object-fit: cover;
  max-height: 480px;
}

/* -- Article Body -- */
.article-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-primary);
}

/* Article typography */
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--forest);
  margin: 2.5em 0 0.8em;
  line-height: 1.25;
}

.article-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
  margin: 2em 0 0.6em;
}

.article-body p {
  margin-bottom: 1.4em;
  color: var(--text-primary);
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.4em 1.4em;
}

.article-body li {
  margin-bottom: 0.5em;
  color: var(--text-primary);
}

.article-body strong {
  font-weight: 600;
  color: var(--forest);
}

.article-body a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: rgba(184, 150, 90, 0.4);
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: var(--forest-light);
}

/* Pull quote */
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 2em 0;
  background: var(--ivory-warm);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-body blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--forest);
  margin-bottom: 0;
}

/* Author bio */
.article-author-bio {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  background: var(--ivory-warm);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 58, 42, 0.08);
  margin-top: 48px;
}

.article-bio-avatar {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.article-bio-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-bio-text strong {
  font-size: 0.95rem;
  color: var(--forest);
}

.article-bio-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* -- Related Articles -- */
.related-articles {
  background: var(--ivory-warm);
  padding: 64px 24px;
  border-top: 1px solid rgba(26, 58, 42, 0.08);
}

.related-articles-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.related-articles-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--forest);
  text-align: center;
  margin-bottom: 40px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  background: var(--ivory);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(26, 58, 42, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15, 34, 24, 0.08);
}

.related-card-img-wrap {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--forest-light);
}

.related-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-card:hover .related-card-img { transform: scale(1.04); }

.related-card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: rgba(184, 150, 90, 0.3);
}

.related-card-body {
  padding: 20px;
}

.related-card-category {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(143, 170, 139, 0.2);
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.related-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.3;
}

.related-card-title a {
  color: inherit;
  text-decoration: none;
}

.related-card-title a:hover { color: var(--forest-light); }

.related-card-meta {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */

/* -- About Nav -- */
.about-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 34, 24, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 150, 90, 0.15);
}

.about-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.about-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.about-nav-leaf {
  font-size: 20px;
  color: var(--gold);
}

.about-nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.5px;
  display: block;
  line-height: 1.2;
}

.about-nav-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--sage-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

.about-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.about-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sage-light);
  text-decoration: none;
  transition: color var(--transition);
}

.about-nav-link:hover,
.about-nav-active {
  color: var(--ivory) !important;
}

.about-nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest-deep);
  background: var(--gold);
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: background var(--transition);
  white-space: nowrap;
}

.about-nav-cta:hover {
  background: var(--gold-light);
}

/* -- About Hero -- */
.about-hero {
  background: linear-gradient(160deg, var(--forest-deep) 0%, #162b1e 100%);
  padding: 96px 24px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(184, 150, 90, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.about-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 24px;
  line-height: 1.1;
}

.about-hero-sub {
  font-size: 1.05rem;
  color: rgba(245, 241, 235, 0.72);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* -- About Mission -- */
.about-mission {
  background: var(--forest);
  padding: 72px 24px;
  text-align: center;
}

.about-mission-inner {
  max-width: 700px;
  margin: 0 auto;
}

.about-mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 150, 90, 0.12);
  border: 1px solid rgba(184, 150, 90, 0.25);
  border-radius: 100px;
  padding: 6px 16px 6px 12px;
  margin-bottom: 24px;
}

.about-mission-leaf {
  font-size: 14px;
  color: var(--gold);
}

.about-mission-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.about-mission-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 20px;
  line-height: 1.1;
}

.about-mission-body {
  font-size: 1rem;
  color: rgba(245, 241, 235, 0.7);
  line-height: 1.8;
}

/* -- About Section Labels & Titles -- */
.about-section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.about-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 20px;
  line-height: 1.15;
}

.about-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* -- About Brand Story -- */
.about-brand-story {
  padding: 80px 24px;
  background: var(--cream);
}

.about-brand-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.about-brand-story-text .about-body:last-child {
  margin-bottom: 0;
}

.about-brand-story-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-aside-card {
  background: var(--ivory);
  border: 1px solid rgba(26, 58, 42, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-aside-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(15, 34, 24, 0.06);
}

.about-aside-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 12px;
  color: var(--forest);
}

.about-aside-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}

.about-aside-body {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* -- About Who It's For -- */
.about-who {
  padding: 80px 24px;
  background: var(--ivory-warm);
}

.about-who-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-who-inner > .about-section-label,
.about-who-inner > .about-section-title {
  text-align: center;
}

.about-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.about-who-card {
  background: var(--ivory);
  border: 1px solid rgba(26, 58, 42, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(15, 34, 24, 0.08);
}

.about-who-icon {
  color: var(--forest);
  margin-bottom: 16px;
  display: block;
}

.about-who-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
}

.about-who-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* -- About Protocol -- */
.about-protocol {
  padding: 80px 24px;
  background: var(--cream);
}

.about-protocol-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-protocol-inner > .about-section-label,
.about-protocol-inner > .about-section-title {
  text-align: center;
}

.about-protocol-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.about-phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-phase-card {
  background: var(--ivory);
  border: 1px solid rgba(26, 58, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.about-phase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15, 34, 24, 0.07);
}

.about-phase-card-active {
  background: var(--forest);
  border-color: rgba(184, 150, 90, 0.3);
  box-shadow: 0 4px 24px rgba(15, 34, 24, 0.15);
}

.about-phase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--forest);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}

.about-phase-card-active .about-phase-number {
  background: rgba(184, 150, 90, 0.15);
}

.about-phase-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}

.about-phase-card-active .about-phase-name {
  color: var(--ivory);
}

.about-phase-days {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-phase-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-phase-card-active .about-phase-desc {
  color: rgba(245, 241, 235, 0.7);
}

.about-phase-includes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-phase-includes li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid rgba(26, 58, 42, 0.06);
}

.about-phase-includes li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.about-phase-includes li:last-child {
  border-bottom: none;
}

.about-phase-card-active .about-phase-includes li {
  color: rgba(245, 241, 235, 0.65);
  border-color: rgba(245, 241, 235, 0.08);
}

/* -- About Trust -- */
.about-trust {
  padding: 72px 24px;
  background: var(--forest);
}

.about-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.about-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-trust-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-trust-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 6px;
}

.about-trust-item p {
  font-size: 0.82rem;
  color: rgba(245, 241, 235, 0.6);
  line-height: 1.65;
}

/* -- About FAQ -- */
.about-faq {
  padding: 80px 24px;
  background: var(--ivory-warm);
}

.about-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-faq-item {
  background: var(--ivory);
  border: 1px solid rgba(26, 58, 42, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.about-faq-item[open] {
  border-color: rgba(143, 170, 139, 0.4);
}

.about-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  gap: 16px;
  list-style: none;
}

.about-faq-question::-webkit-details-marker { display: none; }

.about-faq-toggle {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--sage);
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1;
}

.about-faq-item[open] .about-faq-toggle {
  transform: rotate(45deg);
  color: var(--forest);
}

.about-faq-answer {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid rgba(26, 58, 42, 0.06);
  padding-top: 16px;
}

/* -- About CTA Banner -- */
.about-cta-banner {
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest) 100%);
  padding: 80px 24px;
  text-align: center;
}

.about-cta-inner {
  max-width: 660px;
  margin: 0 auto;
}

.about-cta-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 16px;
  line-height: 1.15;
}

.about-cta-body {
  font-size: 1rem;
  color: rgba(245, 241, 235, 0.7);
  margin-bottom: 32px;
}

.about-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-cta-btn {
  font-size: 1rem;
  padding: 16px 40px;
  display: inline-block;
  text-decoration: none;
}

.about-cta-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-cta-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(245, 241, 235, 0.45);
}

/* -- About Footer -- */
.about-footer {
  background: var(--forest-deep);
  padding: 48px 24px;
}

.about-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.about-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.about-footer-leaf {
  font-size: 18px;
  color: var(--gold);
}

.about-footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ivory);
}

.about-footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(245, 241, 235, 0.35);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 24px;
}

.about-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.about-footer-links a {
  font-size: 0.8rem;
  color: rgba(245, 241, 235, 0.45);
  text-decoration: none;
  transition: color 0.25s ease;
}

.about-footer-links a:hover {
  color: var(--ivory);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card-featured {
    grid-template-columns: 1fr;
  }
  .blog-nav-links,
  .blog-nav-cta { display: none; }
  .about-nav-links,
  .about-nav-cta { display: none; }
  .blog-hamburger,
  .about-hamburger { display: flex; }
  .about-brand-story-inner { grid-template-columns: 1fr; }
  .about-who-grid { grid-template-columns: repeat(2, 1fr); }
  .about-phase-grid { grid-template-columns: 1fr; }
  .about-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 60px 20px 56px; }
  .article-meta-bottom { flex-direction: column; align-items: flex-start; }
  .blog-cta-banner { padding: 56px 20px; }
  .about-hero { padding: 72px 20px 64px; }
  .about-mission { padding: 56px 20px; }
  .about-brand-story { padding: 56px 20px; }
  .about-who { padding: 56px 20px; }
  .about-who-grid { grid-template-columns: 1fr; }
  .about-protocol { padding: 56px 20px; }
  .about-trust { padding: 56px 20px; }
  .about-trust-grid { grid-template-columns: 1fr; }
  .about-faq { padding: 56px 20px; }
  .about-cta-banner { padding: 56px 20px; }
}

/* ===== LEGAL PAGES (Privacy, Terms) ===== */
.legal-page {
  padding: 120px 24px 80px;
  background: var(--cream);
  min-height: 80vh;
}
.legal-content {
  max-width: 740px;
  margin: 0 auto;
}
.legal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 40px;
}
.legal-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.legal-content strong {
  color: var(--text-primary);
}
@media (max-width: 600px) {
  .legal-page { padding: 100px 20px 60px; }
}

/* ===== THANK-YOU DOWNLOAD CARDS ===== */
.thankyou-downloads {
  margin: 32px 0 28px;
  padding: 28px;
  background: rgba(45, 90, 63, 0.06);
  border: 1px solid rgba(45, 90, 63, 0.12);
  border-radius: 16px;
}
.thankyou-downloads-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 16px;
}
.thankyou-download-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.thankyou-download-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: white;
  border: 1px solid rgba(45, 90, 63, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.thankyou-download-card:hover {
  border-color: var(--forest-light);
  box-shadow: 0 2px 8px rgba(45, 90, 63, 0.1);
}
.thankyou-download-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.thankyou-download-card div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.thankyou-download-card strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--forest);
}
.thankyou-download-card span:last-of-type {
  font-size: 0.78rem;
  color: var(--text-light);
}
.thankyou-download-arrow {
  font-size: 1.2rem;
  color: var(--forest-light);
  font-weight: 700;
  flex-shrink: 0;
}
