/* =====================================================
   YELOKA · css/style.css
   Dark-forest palette · Cormorant Garamond + Nunito
   Section-scoped semantic architecture
   ===================================================== */

/* ── DESIGN TOKENS ───────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-root:      #070f0a;
  --bg-depth:     #0b1812;
  --bg-surface:   #0f1e15;
  --bg-elevated:  #152a1e;
  --bg-card:      #111e17;
  --bg-card-alt:  #0e1a13;

  /* Green scale */
  --tone-deep:    #1a3d2b;
  --tone-rich:    #2d6a4f;
  --tone-mid:     #3d8b68;
  --tone-main:    #52b788;
  --tone-support: #74c69d;
  --tone-light:   #95d5b2;
  --tone-pastel:  #b7e4c7;
  --tone-pale:    #d8f3dc;

  /* CTA */
  --tone-cta:       #52b788;
  --tone-cta-hover: #40916c;
  --tone-cta-text:  #070f0a;

  /* Text */
  --text-h:       #eef6f1;
  --text-body:    #c0d9c9;
  --text-muted:   #7a9e87;
  --text-dim:     #4d7360;

  /* Borders */
  --border-faint: rgba(82, 183, 136, 0.10);
  --border-soft:  rgba(82, 183, 136, 0.20);
  --border-mid:   rgba(82, 183, 136, 0.35);

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(0,0,0,.35);
  --shadow-md:  0 6px 30px rgba(0,0,0,.45);
  --shadow-lg:  0 16px 60px rgba(0,0,0,.55);
  --glow-cta:   0 0 30px rgba(82,183,136,.18);

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-pill: 100px;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur:  .22s;
}

/* ── RESET + BASE ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  background-color: var(--bg-root);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--tone-support);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
a:hover { color: var(--tone-light); }
a:focus-visible {
  outline: 2px solid var(--tone-main);
  outline-offset: 3px;
  border-radius: 2px;
}

ul, ol { list-style: none; }

abbr[title] {
  text-decoration: none;
  color: var(--tone-support);
}

/* ── SHARED UTILITIES ────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tone-main);
  margin-bottom: 1rem;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: .75rem 1.8rem;
  border: none;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}

.btn--solid {
  background: var(--tone-cta);
  color: var(--tone-cta-text);
  box-shadow: var(--glow-cta);
}
.btn--solid:hover {
  background: var(--tone-cta-hover);
  color: var(--tone-cta-text);
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(82,183,136,.28);
}

.btn--ghost {
  background: transparent;
  color: var(--tone-support);
  border: 1.5px solid var(--border-mid);
}
.btn--ghost:hover {
  background: var(--bg-elevated);
  color: var(--tone-light);
  border-color: var(--tone-support);
}

.btn--lg { padding: .9rem 2.2rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--submit { padding: 1rem; font-size: 1rem; letter-spacing: .02em; }

/* ── COOKIE BANNER ───────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-soft);
  padding: 1.1rem 1.5rem;
  box-shadow: 0 -4px 30px rgba(0,0,0,.5);
  transform: translateY(0);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.cookie-bar.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-bar__text {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  flex: 1;
  min-width: 260px;
  font-size: .86rem;
  color: var(--text-body);
}
.cookie-bar__text svg { flex-shrink: 0; margin-top: .1rem; color: var(--tone-main); }
.cookie-bar__text p { line-height: 1.5; }
.cookie-bar__text a { color: var(--tone-main); }
.cookie-bar__actions {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-body);
  font-size: .83rem;
  font-weight: 600;
  padding: .55rem 1.2rem;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: none;
  transition: all var(--dur) var(--ease);
}
.cookie-btn--outline {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border-soft);
}
.cookie-btn--outline:hover { border-color: var(--tone-support); color: var(--text-body); }
.cookie-btn--accept {
  background: var(--tone-cta);
  color: var(--tone-cta-text);
}
.cookie-btn--accept:hover { background: var(--tone-cta-hover); }

/* ── HEADER ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(7, 15, 10, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-faint);
  padding: 0 2rem;
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark__wordmark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-h);
  letter-spacing: .02em;
}
.logo-mark:hover .logo-mark__wordmark { color: var(--tone-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  border-radius: var(--r-sm);
}
.nav-toggle__bar {
  width: 24px;
  height: 2px;
  background: var(--text-h);
  border-radius: 2px;
  display: block;
  transition: all .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-wrap: wrap;
}
.main-nav__link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: .5rem .9rem;
  border-radius: var(--r-pill);
  transition: all var(--dur) var(--ease);
}
.main-nav__link:hover { color: var(--text-h); background: var(--bg-elevated); }
.main-nav__cta-link {
  background: var(--tone-cta) !important;
  color: var(--tone-cta-text) !important;
  font-weight: 700;
  padding: .5rem 1.2rem;
}
.main-nav__cta-link:hover { background: var(--tone-cta-hover) !important; }

/* ── HERO ZONE ───────────────────────────────────── */
.hero-zone {
  background: var(--bg-root);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-zone::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42, 106, 79, .22) 0%, transparent 70%);
  pointer-events: none;
}
.hero-zone__layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-zone__pill {
  display: inline-block;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  color: var(--tone-support);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
}
.hero-zone__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-h);
  margin-bottom: 1.4rem;
}
.hero-zone__heading em {
  font-style: italic;
  color: var(--tone-support);
}
.hero-zone__intro {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.2rem;
}
.hero-zone__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero-zone__legal-note {
  font-size: .78rem;
  color: var(--text-dim);
  border-left: 2px solid var(--border-soft);
  padding-left: .8rem;
}
.hero-zone__visual { position: relative; }
.hero-zone__frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-zone__img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(7, 15, 10, .85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-pill);
  padding: .55rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--tone-main);
}

/* ── TRUST RIBBON ────────────────────────────────── */
.trust-ribbon {
  background: var(--bg-depth);
  border-top: 1px solid var(--border-faint);
  border-bottom: 1px solid var(--border-faint);
  padding: 1.2rem 2rem;
}
.trust-ribbon__wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.trust-ribbon__item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-ribbon__item svg { color: var(--tone-mid); flex-shrink: 0; }
.trust-ribbon__dot {
  color: var(--border-mid);
  font-size: 1.2rem;
  line-height: 1;
}

/* ── AWARENESS BLOCK ─────────────────────────────── */
.awareness-block {
  padding: 6rem 2rem;
  background: var(--bg-surface);
  position: relative;
}
.awareness-block__wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.awareness-block__preamble {
  margin-bottom: 3.5rem;
  max-width: 640px;
}
.awareness-block__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text-h);
  line-height: 1.2;
}
.awareness-block__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.awareness-block__lead {
  font-size: 1.08rem;
  color: var(--text-h);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.awareness-block__prose p {
  font-size: .96rem;
  color: var(--text-body);
  margin-bottom: 1.1rem;
  line-height: 1.75;
}
.awareness-note {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--tone-main);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  margin-top: 1.6rem;
}
.awareness-note svg { flex-shrink: 0; margin-top: .15rem; color: var(--tone-main); }
.awareness-note p { font-size: .86rem; color: var(--text-muted); line-height: 1.6; }
.awareness-block__media { position: relative; }
.awareness-img-cluster { position: relative; }
.awareness-img {
  border-radius: var(--r-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.awareness-img--main {
  width: 100%;
  height: 280px;
  margin-bottom: 1.2rem;
}
.awareness-img--accent {
  width: 75%;
  height: 200px;
  margin-left: auto;
}

/* ── CARE GRID ───────────────────────────────────── */
.care-grid-section {
  padding: 6rem 2rem;
  background: var(--bg-root);
}
.care-grid-section__wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.care-grid-section__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.care-grid-section__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--text-h);
  margin-bottom: .9rem;
  line-height: 1.25;
}
.care-grid-section__sub {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.care-card {
  background: var(--bg-card);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.care-card:hover {
  border-color: var(--border-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.care-card__thumb {
  position: relative;
  overflow: hidden;
}
.care-card__thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.care-card:hover .care-card__thumb img { transform: scale(1.04); }
.care-card__num {
  position: absolute;
  top: .9rem;
  right: .9rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tone-pastel);
  background: rgba(7,15,10,.7);
  backdrop-filter: blur(6px);
  padding: .2rem .6rem;
  border-radius: var(--r-sm);
  line-height: 1.4;
}
.care-card__body {
  padding: 1.4rem 1.3rem 1.5rem;
}
.care-card__icon {
  color: var(--tone-main);
  margin-bottom: .75rem;
}
.care-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-h);
  margin-bottom: .6rem;
  line-height: 1.3;
}
.care-card__text {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PRODUCT SHOWCASE ────────────────────────────── */
.product-showcase {
  padding: 6rem 2rem;
  background: var(--bg-depth);
  position: relative;
  overflow: hidden;
}
.product-showcase::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(42,106,79,.15) 0%, transparent 70%);
  pointer-events: none;
}
.product-showcase__wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.product-showcase__visual { display: flex; justify-content: center; }
.product-showcase__frame {
  position: relative;
  display: inline-block;
}
.product-showcase__img {
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(82,183,136,.08);
  max-height: 520px;
  width: auto;
  object-fit: contain;
  background: var(--bg-surface);
}
.product-price-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  background: var(--tone-cta);
  color: var(--tone-cta-text);
  border-radius: var(--r-lg);
  padding: .8rem 1.4rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.product-price-badge__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.1;
}
.product-price-badge__value sup { font-size: .9rem; vertical-align: super; }
.product-price-badge__label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  opacity: .8;
  letter-spacing: .06em;
}
.product-showcase__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 400;
  color: var(--text-h);
  margin-bottom: 1.1rem;
  line-height: 1.22;
}
.product-showcase__lead {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.product-spec-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.8rem;
}
.product-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.product-spec-item__dot {
  width: 8px;
  height: 8px;
  background: var(--tone-main);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .55rem;
}
.product-spec-item strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .2rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.product-spec-item p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.product-info-note {
  background: var(--bg-elevated);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-md);
  padding: .9rem 1.1rem;
  margin-bottom: 1.8rem;
}
.product-info-note p { font-size: .8rem; color: var(--text-dim); line-height: 1.6; }

/* ── VOICES SECTION ──────────────────────────────── */
.voices-section {
  padding: 6rem 2rem;
  background: var(--bg-surface);
}
.voices-section__wrap { max-width: 1200px; margin: 0 auto; }
.voices-section__intro {
  text-align: center;
  margin-bottom: 3rem;
}
.voices-section__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text-h);
  margin-bottom: 0;
}
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.voice-card {
  background: var(--bg-card);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--dur) var(--ease);
}
.voice-card:hover { border-color: var(--border-soft); }
.voice-card--featured {
  border-color: var(--border-soft);
  background: var(--bg-elevated);
  position: relative;
}
.voice-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--tone-rich), transparent, var(--tone-rich));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.voice-card__rating { color: var(--tone-main); font-size: 1.05rem; }
.voice-card__quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-h);
  line-height: 1.65;
  flex: 1;
}
.voice-card__footer {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border-faint);
}
.voice-card__name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-h);
}
.voice-card__meta { font-size: .8rem; color: var(--text-dim); }
.voices-disclaimer {
  font-size: .78rem;
  color: var(--text-dim);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── ORDER STATION ───────────────────────────────── */
.order-station {
  padding: 6rem 2rem;
  background: var(--bg-root);
  position: relative;
}
.order-station::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tone-rich), transparent);
}
.order-station__wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.order-station__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 400;
  color: var(--text-h);
  margin-bottom: .9rem;
}
.order-station__body {
  font-size: .96rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}
.order-product-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 1.2rem;
  margin-bottom: 1.8rem;
}
.order-product-card img {
  height: 120px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--bg-surface);
}
.order-product-card__info {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.order-product-card__info strong { color: var(--text-h); font-size: 1rem; }
.order-product-card__info span { font-size: .84rem; color: var(--text-muted); }
.order-product-card__price {
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--tone-main) !important;
  margin-top: .3rem;
}
.order-reassurance {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.order-reassurance__item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .87rem;
  color: var(--text-muted);
}
.order-reassurance__item svg { color: var(--tone-mid); flex-shrink: 0; }

/* ── ORDER FORM ──────────────────────────────────── */
.order-station__form-zone {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow-md);
}
.order-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field__label {
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.form-field__input {
  background: var(--bg-elevated);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-h);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  width: 100%;
  outline: none;
}
.form-field__input::placeholder { color: var(--text-dim); }
.form-field__input:focus {
  border-color: var(--tone-main);
  box-shadow: 0 0 0 3px rgba(82,183,136,.12);
}
.form-field__input.is-invalid { border-color: #e76f6f; }
.form-field__input option { background: var(--bg-card); color: var(--text-h); }
.form-field__select { cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2374c69d' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-field__error { font-size: .78rem; color: #e76f6f; min-height: 1rem; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-consent-row {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .8rem 0 .3rem;
}
.form-consent-row__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: .1rem;
  accent-color: var(--tone-main);
  cursor: pointer;
}
.form-consent-row__text {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.55;
  cursor: pointer;
}
.form-consent-row__text a { color: var(--tone-main); text-decoration: underline; }
.form-gdpr-note {
  font-size: .76rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
  padding-top: .4rem;
}

/* ── FAQ / QUESTIONS BLOCK ───────────────────────── */
.questions-block {
  padding: 6rem 2rem;
  background: var(--bg-depth);
}
.questions-block__wrap { max-width: 780px; margin: 0 auto; }
.questions-block__intro {
  text-align: center;
  margin-bottom: 3rem;
}
.questions-block__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text-h);
}
.faq-accordion { display: flex; flex-direction: column; gap: .6rem; }
.faq-entry {
  background: var(--bg-card);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.faq-entry:has(.faq-trigger[aria-expanded="true"]) { border-color: var(--border-soft); }
.faq-entry__q {}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: .97rem;
  font-weight: 600;
  color: var(--text-h);
  transition: background var(--dur) var(--ease);
}
.faq-trigger:hover { background: var(--bg-elevated); }
.faq-arrow {
  flex-shrink: 0;
  color: var(--tone-main);
  transition: transform var(--dur) var(--ease);
}
.faq-trigger[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-entry__a {
  border-top: 1px solid var(--border-faint);
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s var(--ease);
}
.faq-entry__a:not([hidden]) { max-height: 300px; }
.faq-entry__a[hidden] { display: none; }
.faq-entry__a-inner {
  padding: 1.1rem 1.4rem 1.3rem;
}
.faq-entry__a-inner p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CONTACT ANCHOR ──────────────────────────────── */
.contact-anchor {
  padding: 6rem 2rem;
  background: var(--bg-surface);
}
.contact-anchor__wrap { max-width: 1100px; margin: 0 auto; }
.contact-anchor__intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}
.contact-anchor__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text-h);
  margin-bottom: .8rem;
}
.contact-anchor__intro p { font-size: .97rem; color: var(--text-muted); }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
  text-align: center;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.contact-card:hover { border-color: var(--border-soft); transform: translateY(-3px); }
.contact-card__ico {
  width: 52px;
  height: 52px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--tone-main);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-h);
  margin-bottom: .5rem;
}
.contact-card__value {
  font-size: .92rem;
  color: var(--tone-support);
  font-weight: 600;
  margin-bottom: .4rem;
  line-height: 1.55;
}
.contact-card__hours { font-size: .8rem; color: var(--text-dim); }

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--bg-root);
  border-top: 1px solid var(--border-faint);
}
.site-footer__main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.site-footer__brand .logo-mark {
  margin-bottom: 1rem;
  font-size: .9rem;
}
.site-footer__tagline {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.site-footer__small-print {
  font-size: .77rem;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 480px;
}
.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-nav-col__title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav-col li { font-size: .85rem; color: var(--text-dim); }
.footer-nav-col a { color: var(--text-dim); transition: color var(--dur) var(--ease); }
.footer-nav-col a:hover { color: var(--tone-support); }
.site-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  border-top: 1px solid var(--border-faint);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.site-footer__bottom p { font-size: .78rem; color: var(--text-dim); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .care-grid { grid-template-columns: repeat(2, 1fr); }
  .voices-grid { grid-template-columns: repeat(2, 1fr); }
  .voices-grid .voice-card:last-child { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; }
  .awareness-block__body { grid-template-columns: 1fr; gap: 2.5rem; }
  .awareness-img--main { height: 240px; }
  .awareness-img--accent { width: 60%; height: 180px; }
}

@media (max-width: 900px) {
  .hero-zone__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-zone__visual { order: -1; }
  .hero-zone__img { height: 380px; }
  .product-showcase__wrap { grid-template-columns: 1fr; gap: 3rem; }
  .product-showcase__visual { order: -1; }
  .order-station__wrap { grid-template-columns: 1fr; gap: 3rem; }
  .contact-cards { grid-template-columns: 1fr; }
  .site-footer__main { grid-template-columns: 1fr; gap: 2.5rem; }
  .site-footer__links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--bg-depth);
    border-bottom: 1px solid var(--border-soft);
    padding: 1rem;
    z-index: 800;
  }
  .main-nav.is-open { display: block; }
  .main-nav__list { flex-direction: column; gap: .3rem; }
  .main-nav__link { display: block; text-align: center; padding: .75rem; }
  .main-nav__cta-link { display: block; text-align: center; margin-top: .5rem; }
  .trust-ribbon__dot { display: none; }
  .trust-ribbon__wrap { gap: .8rem 1.5rem; justify-content: flex-start; }
  .care-grid { grid-template-columns: repeat(2, 1fr); }
  .voices-grid { grid-template-columns: 1fr; }
  .voices-grid .voice-card:last-child { grid-column: auto; max-width: none; margin: 0; }
  .site-footer__links { grid-template-columns: repeat(2, 1fr); }
  .awareness-block__body { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .hero-zone { padding: 3rem 1.2rem 2.5rem; }
  .hero-zone__btns { flex-direction: column; }
  .care-grid { grid-template-columns: 1fr; }
  .awareness-block,
  .care-grid-section,
  .product-showcase,
  .voices-section,
  .order-station,
  .questions-block,
  .contact-anchor { padding: 4rem 1.2rem; }
  .order-station__form-zone { padding: 1.6rem 1.2rem; }
  .product-price-badge { right: .5rem; bottom: .5rem; }
  .form-row-split { grid-template-columns: 1fr; }
  .site-footer__main { padding: 3rem 1.2rem 2rem; }
  .site-footer__links { grid-template-columns: 1fr 1fr; }
  .site-footer__bottom { padding: 1.2rem; flex-direction: column; gap: .5rem; }
  .trust-ribbon { padding: 1rem 1.2rem; }
  .trust-ribbon__wrap { flex-direction: column; align-items: flex-start; gap: .7rem; }
  .cookie-bar__inner { flex-direction: column; }
}
