/* ─── RESET & BASE ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-tap-highlight-color: transparent; background: var(--cream); }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--deep);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }


/* ─── TYPOGRAPHY ───────────────────────────── */
.serif { font-family: 'Cormorant Garamond', serif; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); line-height: 1.75; }

/* ─── UTILITY ──────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }
.text-sage { color: var(--sage); }
.text-terracotta { color: var(--terracotta); }
.text-mid { color: var(--mid); }

/* ─── BUTTONS ──────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sage);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0.02em;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(131,85,146,0.35);
}
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(131,85,146,0.45); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--sage-dark);
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem; font-weight: 500;
  border: 1.5px solid var(--sage);
  transition: all 0.3s ease;
}
.btn-outline:hover { background: var(--sage); color: var(--white); }

.btn-terracotta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--terracotta);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem; font-weight: 500;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(196,122,90,0.35);
}
.btn-terracotta:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196,122,90,0.45); }

/* ─── SCROLL REVEAL ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── NOISE TEXTURE ────────────────────────── */
.noise::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1;
}

/* ───────────────────────────────────────────── */
/*  NAV                                          */
/* ───────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 102;
  padding: 18px 0;
  transition: all 0.4s ease;
}
#nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(10,22,40,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500;
  color: #2d6b4e;
  line-height: 1.1;
}
.nav-logo-img {
  width: 40px; height: 40px;
  object-fit: contain;
}
.footer-brand .nav-logo-img {
  background: var(--white);
  border-radius: 8px;
  padding: 2px;
}
.nav-logo span { display: block; font-size: 0.7rem; font-family: 'DM Sans', sans-serif; color: inherit; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--mid); transition: color 0.2s; }
.nav-links a:hover { color: var(--sage-dark); }
.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: 0.85rem; }
.cta-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
.footer-links { display: flex; gap: 20px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; position: relative; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--deep); border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--warm-white); z-index: 101;
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--deep); }

/* ───────────────────────────────────────────── */
/*  HERO                                         */
/* ───────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--warm-white);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-blob-1 {
  position: absolute; top: -10%; right: -5%;
  width: clamp(300px, 55vw, 700px);
  height: clamp(300px, 55vw, 700px);
  background: radial-gradient(circle at 40% 40%, rgba(168,120,184,0.35) 0%, rgba(168,120,184,0.08) 60%, transparent 80%);
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  animation: morphBlob1 12s ease-in-out infinite;
}
.hero-blob-2 {
  position: absolute; bottom: -15%; left: -8%;
  width: clamp(250px, 45vw, 600px);
  height: clamp(250px, 45vw, 600px);
  background: radial-gradient(circle at 60% 60%, rgba(196,122,90,0.12) 0%, transparent 70%);
  border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%;
  animation: morphBlob2 15s ease-in-out infinite;
}
@keyframes morphBlob1 {
  0%, 100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
  33% { border-radius: 50% 50% 40% 60% / 40% 50% 60% 50%; }
  66% { border-radius: 40% 60% 60% 40% / 60% 40% 50% 50%; }
}
@keyframes morphBlob2 {
  0%, 100% { border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%; }
  50% { border-radius: 60% 40% 55% 45% / 40% 60% 45% 55%; }
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(131,85,146,0.12);
  padding: 8px 18px; border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }
.hero-title { margin-bottom: 24px; color: var(--deep); }
.hero-title em { font-style: italic; color: var(--sage-dark); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--mid);
  margin-bottom: 40px; max-width: 500px;
}
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 12px;
  margin-top: 40px;
}
.hero-trust-avatars { display: flex; }
.hero-trust-avatars span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 2.5px solid var(--warm-white);
  font-size: 1rem;
  margin-left: -10px;
  background: var(--sand);
}
.hero-trust-avatars span:first-child { margin-left: 0; background: var(--avatar-1); }
.hero-trust-avatars span:nth-child(2) { background: var(--avatar-2); }
.hero-trust-avatars span:nth-child(3) { background: var(--avatar-3); }
.hero-trust-text { font-size: 0.85rem; color: var(--mid); }
.hero-trust-text strong { display: block; color: var(--deep); font-weight: 500; }
.hero-image-area { position: relative; }
.hero-circle-bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 90%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(168,120,184,0.25) 0%, rgba(168,120,184,0.05) 70%, transparent 100%);
  border-radius: 50%;
}
.hero-image-frame {
  position: relative; z-index: 2;
  border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
  overflow: hidden;
  aspect-ratio: 0.85;
  background: linear-gradient(160deg, #b898c2 0%, #a878b8 30%, #835592 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-med);
}
.hero-figure {
  width: 100%; position: relative;
  display: block; margin: 0 auto;
}
@keyframes floatFigure {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-stat-card {
  position: absolute;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-med);
  z-index: 3;
}
.hero-stat-card.card-1 { bottom: 10%; left: -8%; }
.hero-stat-card.card-2 { top: 12%; right: -5%; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 500; color: var(--sage-dark); line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--mid); margin-top: 2px; }
.star-row { display: flex; gap: 2px; margin-bottom: 4px; }
.star { color: #f0b429; font-size: 0.85rem; }

/* ───────────────────────────────────────────── */
/*  PAIN SECTION                                 */
/* ───────────────────────────────────────────── */
#pain {
  background: var(--deep);
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative; overflow: hidden;
}
#pain::before {
  content: '';
  position: absolute; top: -60px; left: 0; right: 0; height: 120px;
  background: var(--warm-white);
  border-radius: 0 0 50% 50% / 0 0 100px 100px;
}
#pain::after {
  content: '';
  position: absolute; bottom: -60px; left: 0; right: 0; height: 120px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100px 100px 0 0;
  z-index: 2;
}
.pain-inner { position: relative; z-index: 1; }
.pain-header { text-align: center; margin-bottom: 60px; }
.pain-header h2 { color: var(--warm-white); margin-bottom: 16px; }
.pain-header p { color: var(--sand); max-width: 580px; margin: 0 auto; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.pain-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all 0.3s ease;
}
.pain-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.pain-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(131,85,146,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.pain-card h3 { color: var(--warm-white); margin-bottom: 10px; font-size: 1.3rem; }
.pain-card p { color: rgba(212,196,168,0.8); font-size: 0.9rem; }

/* ───────────────────────────────────────────── */
/*  SOLUTION / BENEFITS                          */
/* ───────────────────────────────────────────── */
#benefits {
  background: var(--cream);
  padding: clamp(80px, 12vw, 160px) 0;
}
.benefits-header { text-align: center; margin-bottom: 70px; }
.benefits-eyebrow {
  display: inline-block; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 16px;
}
.benefits-header h2 { margin-bottom: 16px; }
.benefits-header p { color: var(--mid); max-width: 560px; margin: 0 auto; }
.benefits-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.benefits-visual { position: relative; }
.benefits-rings {
  width: 100%; aspect-ratio: 1; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(131,85,146,0.25);
  animation: spinRing linear infinite;
}
.ring-1 { width: 85%; height: 85%; animation-duration: 30s; }
.ring-2 { width: 65%; height: 65%; animation-duration: 20s; animation-direction: reverse; }
.ring-3 { width: 45%; height: 45%; animation-duration: 15s; }
@keyframes spinRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.ring-dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--sage); top: -5px; left: 50%; margin-left: -5px;
}
.benefits-center {
  width: 35%; aspect-ratio: 1;
  background: linear-gradient(145deg, var(--sage-light), var(--sage));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 0 60px rgba(131,85,146,0.4);
  position: relative; z-index: 2;
}
.orbit-item {
  position: absolute; background: var(--warm-white);
  border-radius: var(--radius-sm); padding: 10px 16px;
  font-size: 0.8rem; font-weight: 500; color: var(--sage-dark);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}
.orbit-item-1 { top: 5%; left: 50%; transform: translateX(-50%); }
.orbit-item-2 { right: -2%; top: 35%; }
.orbit-item-3 { bottom: 5%; left: 50%; transform: translateX(-50%); }
.orbit-item-4 { left: -2%; top: 35%; }
.benefits-list { display: flex; flex-direction: column; gap: 28px; }
.benefit-item { display: flex; gap: 20px; align-items: flex-start; }
.benefit-num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(131,85,146,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--sage-dark);
  font-weight: 500;
}
.benefit-item h3 { font-size: 1.15rem; margin-bottom: 6px; }
.benefit-item p { font-size: 0.9rem; color: var(--mid); }

/* ───────────────────────────────────────────── */
/*  PRODUCTS / VITAMINS                          */
/* ───────────────────────────────────────────── */
#products {
  background: var(--warm-white);
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative; overflow: hidden;
}
.products-header { text-align: center; margin-bottom: 60px; }
.products-header h2 { margin-bottom: 16px; }
.products-header p { color: var(--mid); max-width: 580px; margin: 0 auto; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.product-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: var(--shadow-soft);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-med); }
.product-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative; overflow: hidden;
}
.product-img::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255,255,255,0.3) 0%, transparent 70%);
}
.product-body { padding: 24px; }
.product-tag {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage-dark); background: rgba(131,85,146,0.12);
  padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 10px;
}
.product-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.product-body p { font-size: 0.85rem; color: var(--mid); }

/* ───────────────────────────────────────────── */
/*  HOW IT WORKS                                 */
/* ───────────────────────────────────────────── */
#process {
  background: var(--cream);
  padding: clamp(80px, 12vw, 160px) 0;
}
.process-header { text-align: center; margin-bottom: 70px; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute;
  top: 48px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--sage-light), var(--sage-light), transparent);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-circle {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  background: var(--warm-white);
  box-shadow: var(--shadow-soft);
  border: 3px solid var(--sand);
  position: relative;
  transition: all 0.3s ease;
}
.step-circle:hover { border-color: var(--sage-light); transform: scale(1.05); }
.step-num {
  position: absolute; top: -4px; right: -4px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--sage); color: var(--white);
  font-size: 0.7rem; font-weight: 600; font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; justify-content: center;
}
.process-step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.process-step p { font-size: 0.88rem; color: var(--mid); }

/* ───────────────────────────────────────────── */
/*  FORMS DOWNLOAD                               */
/* ───────────────────────────────────────────── */
#forms {
  background: var(--sage);
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative; overflow: hidden;
}
#forms::before {
  content: '';
  position: absolute; top: -60px; left: 0; right: 0; height: 120px;
  background: var(--cream);
  border-radius: 0 0 50% 50% / 0 0 80px 80px;
}
.forms-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.forms-text h2 { color: var(--warm-white); margin-bottom: 16px; }
.forms-text p { color: rgba(245,240,232,0.85); margin-bottom: 36px; }
.forms-cards { display: flex; flex-direction: column; gap: 16px; }
.form-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.form-card:hover { background: rgba(255,255,255,0.25); transform: translateX(6px); }
.form-icon { font-size: 1.8rem; }
.form-info { flex: 1; }
.form-info h4 { color: var(--warm-white); font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; margin-bottom: 2px; }
.form-info span { font-size: 0.8rem; color: rgba(245,240,232,0.7); }
.form-dl { color: var(--warm-white); font-size: 1.3rem; opacity: 0.7; transition: opacity 0.2s; }
.form-card:hover .form-dl { opacity: 1; }

/* ───────────────────────────────────────────── */
/*  TESTIMONIALS                                 */
/* ───────────────────────────────────────────── */
#testimonials {
  background: var(--warm-white);
  padding: clamp(80px, 12vw, 160px) 0;
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header h2 { margin-bottom: 12px; }
.testimonials-header p { color: var(--mid); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 20px; right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; color: rgba(131,85,146,0.15); line-height: 1;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars span { color: #f0b429; font-size: 0.9rem; }
.testi-text { font-style: italic; font-size: 0.95rem; color: var(--deep); margin-bottom: 24px; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  background: var(--sand);
  flex-shrink: 0;
}
.testi-name { font-weight: 500; font-size: 0.95rem; }
.testi-since { font-size: 0.8rem; color: var(--mid); }

/* ───────────────────────────────────────────── */
/*  ABOUT                                        */
/* ───────────────────────────────────────────── */
#about {
  background: var(--cream);
  padding: clamp(80px, 12vw, 160px) 0;
}
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-area { position: relative; }
.about-frame {
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  overflow: hidden; aspect-ratio: 0.9;
  background: linear-gradient(160deg, var(--sand) 0%, var(--sage-light) 50%, var(--sage) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
  box-shadow: var(--shadow-med);
  animation: morphFrame 12s ease-in-out infinite;
}
.about-frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes morphFrame {
  0%, 100% { border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%; }
  50% { border-radius: 60% 40% 45% 55% / 45% 55% 45% 55%; }
}
.about-badge {
  position: absolute; bottom: 8%; right: -5%;
  background: var(--warm-white);
  border-radius: var(--radius-md); padding: 20px 24px;
  box-shadow: var(--shadow-med);
  text-align: center;
}
.about-badge-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--sage-dark); line-height: 1; }
.about-badge-text { font-size: 0.75rem; color: var(--mid); margin-top: 4px; }
.about-content { }
.about-eyebrow { display: block; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 16px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--mid); margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.about-value {
  background: var(--warm-white);
  border-radius: var(--radius-sm); padding: 20px;
  border-left: 3px solid var(--sage-light);
}
.about-value h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; margin-bottom: 4px; }
.about-value p { font-size: 0.82rem; color: var(--mid); }

/* ───────────────────────────────────────────── */
/*  FINAL CTA                                    */
/* ───────────────────────────────────────────── */
#cta {
  background: var(--warm-white);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative; overflow: hidden;
}
.cta-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.cta-blob-1 { width: 500px; height: 500px; top: -200px; left: -150px; background: radial-gradient(circle, rgba(168,120,184,0.2) 0%, transparent 70%); }
.cta-blob-2 { width: 400px; height: 400px; bottom: -150px; right: -100px; background: radial-gradient(circle, rgba(196,122,90,0.12) 0%, transparent 70%); }
.cta-box {
  position: relative; z-index: 2;
  background: var(--deep);
  border-radius: 60px;
  padding: clamp(50px, 8vw, 90px) clamp(40px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: -50%; left: -20%; width: 140%; height: 200%;
  background: radial-gradient(ellipse at 50% 0%, rgba(131,85,146,0.15) 0%, transparent 60%);
}
.cta-box h2 { color: var(--warm-white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-box p { color: var(--sand); max-width: 560px; margin: 0 auto 40px; position: relative; z-index: 1; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-contact {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  margin-top: 48px; flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-contact-item { text-align: center; }
.cta-contact-item span { display: block; font-size: 0.75rem; color: rgba(212,196,168,0.6); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.cta-contact-item a { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--warm-white); }
.cta-location-link { font-size: 1rem; font-family: 'DM Sans', sans-serif; }

/* ───────────────────────────────────────────── */
/*  FOOTER                                       */
/* ───────────────────────────────────────────── */
footer {
  background: var(--deep);
  padding: 60px 0 32px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute; top: -50px; left: 0; right: 0; height: 100px;
  background: var(--warm-white);
  border-radius: 0 0 50% 50% / 0 0 60px 60px;
}
.footer-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px;
}
.footer-brand { }
.footer-brand .nav-logo { display: block; margin-bottom: 16px; color: #5aab7e; text-decoration: none; }
.footer-brand .nav-logo span { color: inherit; }
.footer-brand p { font-size: 0.88rem; color: rgba(212,196,168,0.7); max-width: 280px; }
.footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--warm-white); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(212,196,168,0.7); transition: color 0.2s; white-space: nowrap; }
.footer-col ul a:hover { color: var(--sage-light); }
.footer-col ul a.footer-address { white-space: normal; }
.footer-hours { }
.footer-hours h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--warm-white); margin-bottom: 16px; }
.hour-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); white-space: nowrap; gap: 16px; }
.hour-row .day { color: rgba(212,196,168,0.7); }
.hour-row .time { color: var(--sage-light); flex-shrink: 0; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(212,196,168,0.5); }
.footer-bottom a { color: rgba(212,196,168,0.5); font-size: 0.8rem; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--sage-light); }

/* ───────────────────────────────────────────── */
/*  SCROLL TO TOP                                */
/* ───────────────────────────────────────────── */
#scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(131,85,146,0.4);
  opacity: 0; transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scroll-top:hover { background: var(--sage-dark); transform: translateY(-2px); }

/* ───────────────────────────────────────────── */
/*  MOBILE                                       */
/* ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr !important; }
}
