/* ═══════════════════════════════════════════════
   SASA AYURVEDA — Design System
   Tone: Organic / Natural / Refined Heritage
   Palette: Terracotta Studio + Forest Greens
   Fonts: Cormorant Garamond + Bricolage Grotesque
═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --cream:       #F7F2EA;
  --cream-dark:  #EDE5D4;
  --parchment:   #F4ECD8;
  --terracotta:  #B5563E;
  --terra-light: #D4896A;
  --terra-pale:  #F2E6D9;
  --forest:      #2D5016;
  --forest-mid:  #3D6B1F;
  --forest-light:#5A8A35;
  --sage:        #8FAF6A;
  --sage-pale:   #D4E8C2;
  --brown-deep:  #3D2B1F;
  --brown-mid:   #6B4226;
  --gold:        #C9956B;
  --gold-light:  #E8C49A;
  --ink:         #1A1208;
  --ink-soft:    #3D3020;
  --muted:       #7A6A58;
  --border:      rgba(61,43,31,0.12);
  --shadow-sm:   0 2px 12px rgba(61,43,31,0.08);
  --shadow-md:   0 8px 32px rgba(61,43,31,0.12);
  --shadow-lg:   0 20px 60px rgba(61,43,31,0.16);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-xl:   48px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: var(--cream);
  color: var(--ink-soft);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 500; }
em { font-style: italic; color: var(--terracotta); }
p { color: var(--muted); font-size: 1rem; line-height: 1.75; }
strong { color: var(--ink-soft); font-weight: 600; }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.section-label {
  display: inline-block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.section-title {
  margin-bottom: 1.25rem;
}
.section-sub {
  max-width: 560px;
  font-size: 1.05rem;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header .section-sub {
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 4px 20px rgba(181,86,62,0.35);
}
.btn--primary:hover {
  background: var(--brown-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(181,86,62,0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-2px);
}
.btn--nav {
  background: var(--forest);
  color: #fff;
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}
.btn--nav:hover { background: var(--forest-mid); transform: translateY(-1px); }
.btn--white {
  background: #fff;
  color: var(--terracotta);
  font-weight: 700;
}
.btn--white:hover { background: var(--cream); transform: translateY(-2px); }
.btn--white-solid {
  background: #fff;
  color: var(--forest);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn--white-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.btn--ghost-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--ghost-white:hover { border-color: #fff; transform: translateY(-2px); }
.btn--full { width: 100%; justify-content: center; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(247,242,234,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  flex-shrink: 0;
}
.nav__logo-leaf { font-size: 1.3rem; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--terracotta);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--terracotta); }
.nav__links a:hover::after { width: 100%; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem clamp(1.25rem, 4vw, 3rem) 5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero__bg-pattern {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212,137,106,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(45,80,22,0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sage-pale);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(90,138,53,0.2);
}
.hero__title {
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}
.stat__divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__circle {
  position: absolute;
  border-radius: 50%;
}
.hero__circle--1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--terra-pale) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-slow 6s ease-in-out infinite;
}
.hero__circle--2 {
  width: 320px; height: 320px;
  border: 1.5px solid rgba(181,86,62,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-slow 30s linear infinite;
}
.hero__circle--3 {
  width: 200px; height: 200px;
  border: 1px dashed rgba(45,80,22,0.2);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-slow 20s linear infinite reverse;
}
.hero__img {
  width: 340px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) var(--radius-sm);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero__pill {
  position: absolute;
  background: #fff;
  border-radius: 100px;
  padding: 0.6rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.hero__pill--1 { bottom: 15%; left: -5%; animation-delay: 0s; }
.hero__pill--2 { top: 15%; right: -5%; animation-delay: 2s; }
.hero__scroll-hint {
  position: absolute;
  bottom: -2rem;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.hero__scroll-hint span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--terracotta), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee-strip {
  background: var(--forest);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.marquee-track .dot {
  color: var(--sage);
  font-size: 0.6rem;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about { background: var(--parchment); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about__badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.about__badge-icon { font-size: 1.8rem; }
.about__badge-float strong { display: block; font-size: 0.9rem; color: var(--ink); }
.about__badge-float small { font-size: 0.72rem; color: var(--muted); }
.about__leaf-deco {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  font-size: 3rem;
  opacity: 0.4;
  transform: rotate(-20deg);
}
.about__text p { margin-bottom: 1.25rem; }
.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.pillar:hover {
  border-color: var(--terracotta);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.pillar__icon { font-size: 1.4rem; flex-shrink: 0; }
.pillar strong { display: block; font-size: 0.95rem; color: var(--ink); margin-bottom: 0.2rem; }
.pillar span { font-size: 0.85rem; color: var(--muted); }

/* ══════════════════════════════════════
   PRODUCTS
══════════════════════════════════════ */
.products { background: var(--cream); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card--featured {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 1px var(--terracotta), var(--shadow-md);
}
.product-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  z-index: 2;
}
.product-card__badge--green { background: var(--forest); }
.product-card__badge--gold { background: var(--gold); }
.product-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card__img-wrap img {
  transform: scale(1.06);
}
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,43,31,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-card__overlay { opacity: 1; }
.product-card__body { padding: 1.5rem; }
.product-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 0.5rem;
}
.product-card__body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.product-card__body p {
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.product-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--terracotta);
}
.product-card__price span { font-size: 0.85rem; color: var(--muted); }
.product-card__badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.product-card__badges span {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  background: var(--sage-pale);
  color: var(--forest);
  border-radius: 100px;
}
.product-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
.product-card__specs div {
  font-size: 0.78rem;
  color: var(--muted);
}
.product-card__specs strong { color: var(--ink-soft); }
.products__cta {
  text-align: center;
  padding: 2.5rem;
  background: var(--parchment);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--gold);
}
.products__cta p {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
}

/* ══════════════════════════════════════
   BENEFITS
══════════════════════════════════════ */
.benefits {
  position: relative;
  background: var(--brown-deep);
  overflow: hidden;
}
.benefits__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(45,80,22,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 30%, rgba(181,86,62,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.benefits .section-label { color: var(--sage); }
.benefits .section-title { color: #fff; }
.benefits .section-title em { color: var(--terra-light); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.benefit-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(181,86,62,0.4);
  transform: translateY(-4px);
}
.benefit-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.benefit-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.benefit-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   INGREDIENTS
══════════════════════════════════════ */
.ingredients { background: var(--parchment); }
.ingredients__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.ingredients__text p { margin-bottom: 1.25rem; }
.ingredients__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.herb-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.herb-item__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  margin-top: 0.4rem;
}
.herb-item strong { display: block; font-size: 0.95rem; color: var(--ink); margin-bottom: 0.15rem; }
.herb-item span { font-size: 0.85rem; color: var(--muted); }
.ingredients__img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.ingredients__img-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease;
}
.ingredients__img-grid img:hover { transform: scale(1.03); }
.ingredients__img-grid img:nth-child(2) { margin-top: 1.5rem; }
.ingredients__img-grid img:nth-child(4) { margin-top: -1.5rem; }
.ingredients__circle-deco {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,86,62,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ingredients__visual { position: relative; }

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
.process { background: var(--cream); }
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process__step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.process__step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process__step-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.process__step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.process__step p {
  font-size: 0.88rem;
  line-height: 1.7;
}
.process__connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--terracotta), var(--gold));
  margin-top: 5rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials { background: var(--parchment); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testimonial-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--terra-pale);
  color: var(--terracotta);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card__author strong { display: block; font-size: 0.9rem; color: var(--ink); }
.testimonial-card__author span { font-size: 0.78rem; color: var(--muted); }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  position: relative;
  background: var(--forest);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
  text-align: center;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(181,86,62,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(201,149,107,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}
.cta-banner h2 em { color: var(--terra-light); }
.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
.cta-banner__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact { background: var(--cream); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact__info p { margin-bottom: 2rem; }
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--parchment);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.contact__detail-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact__detail strong { display: block; font-size: 0.85rem; color: var(--ink); margin-bottom: 0.2rem; }
.contact__detail span { font-size: 0.82rem; color: var(--muted); }
.contact__form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact__form h3 {
  font-size: 1.6rem;
  margin-bottom: 1.75rem;
  color: var(--ink);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: #fff;
}
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--sage-pale);
  color: var(--forest);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}
.form-success.show { display: block; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer__brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-2px);
}
.footer__col h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--terra-light); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulse-slow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50%       { transform: translate(-50%, -50%) scale(1.05); opacity: 0.8; }
}
@keyframes spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .products__grid { grid-template-columns: 1fr 1fr; }
  .benefits__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process__steps { flex-wrap: wrap; justify-content: center; }
  .process__connector { display: none; }
  .process__step { flex: 0 0 calc(50% - 1rem); }
}

@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; gap: 1rem; }
  .nav__links.open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    align-items: center;
    justify-content: center;
    z-index: 999;
    font-size: 1.5rem;
  }
  .nav .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 7rem;
    gap: 3rem;
  }
  .hero__sub { margin: 0 auto 2.5rem; }
  .hero__ctas { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__scroll-hint { display: none; }
  .hero__visual { order: -1; }
  .hero__img { width: 280px; height: 320px; }
  .hero__pill--1 { left: 0; }
  .hero__pill--2 { right: 0; }
  .about__grid { grid-template-columns: 1fr; }
  .about__img { height: 320px; }
  .about__badge-float { right: 0; bottom: -1rem; }
  .products__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .ingredients__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .process__step { flex: 0 0 100%; }
}

@media (max-width: 480px) {
  .hero__img { width: 240px; height: 280px; }
  .hero__circle--1 { width: 300px; height: 300px; }
  .hero__circle--2 { width: 240px; height: 240px; }
  .hero__circle--3 { width: 160px; height: 160px; }
  .contact__form-wrap { padding: 1.75rem; }
}