@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,700;0,6..96,900;1,6..96,400;1,6..96,700&family=Karla:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
  --color-cream: #f9f7f4;
  --color-cream-deep: #f0ebe4;
  --color-cream-mid: #e8e0d6;
  --color-sand: #c8bfb0;
  --color-warm-brown: #8b7355;
  --color-forest: #4a6741;
  --color-forest-deep: #3a5432;
  --color-dark: #1a1a18;
  --color-dark-soft: #2c2c28;
  --color-text: #2c2c28;
  --color-text-muted: #6b6560;
  --color-border: #ddd6cc;
  --color-white: #fefefe;
  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-body: 'Karla', system-ui, sans-serif;
  --radius-card: 2px;
  --radius-btn: 0;
  --transition-base: 0.35s ease;
  --shadow-card: 0 2px 24px rgba(26,26,24,0.07);
  --shadow-hover: 0 8px 40px rgba(26,26,24,0.13);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-text);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.container--narrow {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.on-dark {
  color: rgba(255,255,255,0.85);
}

.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark h4 {
  color: #fff;
}

.on-dark p {
  color: rgba(255,255,255,0.72);
}

.on-dark a:not(.btn) {
  color: inherit;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--color-dark);
}

p {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  line-height: 1.7;
}

section {
  position: relative;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-warm-brown);
  margin-bottom: 14px;
  display: block;
}

.eyebrow--light {
  color: rgba(255,255,255,0.55);
}

/* === BUTTONS (B5 — Split: text | price/arrow) === */

.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-btn);
  overflow: hidden;
  transition: var(--transition-base);
  text-decoration: none;
  position: relative;
}

.btn--primary {
  background: var(--color-dark);
  color: #fff;
}

.btn--primary .btn__label {
  padding: 15px 22px;
  background: var(--color-dark);
  transition: background var(--transition-base);
}

.btn--primary .btn__suffix {
  padding: 15px 18px;
  background: var(--color-forest);
  border-left: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  transition: background var(--transition-base);
}

.btn--primary:hover .btn__label {
  background: var(--color-dark-soft);
}

.btn--primary:hover .btn__suffix {
  background: var(--color-forest-deep);
}

.btn--outline {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}

.btn--outline .btn__label {
  padding: 13px 20px;
}

.btn--outline .btn__suffix {
  padding: 13px 16px;
  border-left: 2px solid var(--color-dark);
}

.btn--outline:hover {
  background: var(--color-dark);
  color: #fff;
}

.btn--outline:hover .btn__suffix {
  border-left-color: rgba(255,255,255,0.2);
}

.btn--forest {
  background: var(--color-forest);
  color: #fff;
}

.btn--forest .btn__label {
  padding: 15px 22px;
  background: var(--color-forest);
  transition: background var(--transition-base);
}

.btn--forest .btn__suffix {
  padding: 15px 18px;
  background: var(--color-forest-deep);
  border-left: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}

.btn--forest:hover .btn__label {
  background: var(--color-forest-deep);
}

.btn--lg .btn__label {
  padding: 18px 28px;
  font-size: 14px;
}

.btn--lg .btn__suffix {
  padding: 18px 22px;
  font-size: 14px;
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.8;
}

/* === SPINNER === */

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

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

/* === NAV (V4 — Minimal, logo + one CTA) === */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
  background: transparent;
}

.nav:not(.nav--scrolled) {
  background: linear-gradient(to bottom, rgba(26, 26, 24, 0.72) 0%, rgba(26, 26, 24, 0.28) 70%, transparent 100%);
}

.nav:not(.nav--scrolled) .nav__logo {
  color: var(--color-white);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.nav:not(.nav--scrolled) .nav__link {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.nav:not(.nav--scrolled) .nav__link:hover {
  color: var(--color-white);
}

.nav:not(.nav--scrolled) .nav__mobile-toggle span {
  background: var(--color-white);
}

.nav--scrolled {
  background: rgba(249,247,244,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 48px);
  gap: 20px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 900;
  color: var(--color-dark);
  letter-spacing: 0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--transition-base), text-shadow var(--transition-base);
}

.nav__logo-dot {
  width: 10px;
  height: 10px;
  background: var(--color-forest);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

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

.nav__link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-base), text-shadow var(--transition-base);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-forest);
  transition: width var(--transition-base);
}

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

.nav__link:hover::after {
  width: 100%;
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: var(--transition-base);
}

/* === HERO (Variant I — Full-bleed media opener) === */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--color-dark);
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,24,0.38);
}

.hero__scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fade-up 1s ease 1.2s both;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: grow-line 1.5s ease 1.6s infinite;
}

@keyframes grow-line {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* === WAVE DIVIDERS (S3) === */

.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* === MARQUEE STRIP === */

.marquee-strip {
  background: var(--color-dark);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee-strip__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

.marquee-strip__dot {
  width: 4px;
  height: 4px;
  background: var(--color-forest);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === PROBLEM SECTION === */

.problem {
  background: var(--color-dark);
  padding: 100px 0 0;
  position: relative;
}

.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem__headline {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.problem__headline em {
  font-style: italic;
  color: var(--color-sand);
}

.problem__body {
  padding-top: 8px;
}

.problem__lead {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  line-height: 1.75;
}

.problem__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.problem__item:last-child {
  border-bottom: none;
}

.problem__icon {
  width: 36px;
  height: 36px;
  border: 2px solid var(--color-forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-forest);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.problem__item-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.problem__item-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* === STATS STRIP (N4 — horizontal dark) === */

.stats-strip {
  background: var(--color-forest);
  padding: 36px 0;
}

.stats-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.stats-strip__item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 160px;
  justify-content: center;
}

.stats-strip__item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stats-strip__number {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stats-strip__label {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
  max-width: 100px;
}

/* === PRODUCTS FEATURED SECTION === */

.products-featured {
  background: var(--color-cream);
  padding: 100px 0 60px;
}

.section-header {
  margin-bottom: 60px;
}

.section-header--center {
  text-align: center;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1.12;
}

.section-title strong {
  font-weight: 300;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 560px;
  margin-top: 14px;
  line-height: 1.7;
}

.section-header--center .section-subtitle {
  margin-inline: auto;
}

/* === PRODUCT CARDS (C7 — thick border accent) === */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-grid--featured {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--color-forest);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--color-cream-deep);
  overflow: hidden;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
}

.product-card__btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-forest);
  border: 2px solid var(--color-forest);
  padding: 9px 16px;
  background: transparent;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
  display: inline-block;
}

.product-card__btn:hover {
  background: var(--color-forest);
  color: #fff;
}

.catalog-cta {
  text-align: center;
  margin-top: 56px;
}

/* === BENEFITS SECTION === */

.benefits {
  background: var(--color-cream-deep);
  padding: 100px 0;
  position: relative;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}

.benefits__visual {
  position: relative;
}

.benefits__img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
}

.benefits__blob {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: var(--color-forest);
  opacity: 0.12;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob-morph 8s ease infinite;
  z-index: 0;
}

@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}

.benefit-item__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-forest);
  padding-top: 3px;
  letter-spacing: 0.04em;
}

.benefit-item__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.benefit-item__text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* === FAQ SECTION === */

.faq {
  background: var(--color-cream);
  padding: 100px 0;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 120px;
}

.faq__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.faq__subtitle {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-top: 1px solid var(--color-border);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  transition: color var(--transition-base);
}

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

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  stroke: var(--color-warm-brown);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.faq__item.faq--open .faq__chevron {
  transform: rotate(180deg);
}

.faq__item.faq--open .faq__question {
  color: var(--color-forest);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.faq--open .faq__answer {
  max-height: 300px;
}

.faq__answer-inner {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* === UNIQUE BLOCK — Health Article Teaser === */

.health-block {
  background: var(--color-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.health-block__blob1 {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: var(--color-forest);
  opacity: 0.08;
  border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  animation: blob-morph 10s ease infinite;
  pointer-events: none;
}

.health-block__blob2 {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: var(--color-sand);
  opacity: 0.06;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob-morph 12s ease 3s infinite reverse;
  pointer-events: none;
}

.health-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.health-block__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-forest);
  margin-bottom: 18px;
  display: block;
}

.health-block__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.12;
}

.health-block__title em {
  font-style: italic;
  color: var(--color-sand);
}

.health-block__text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 16px;
}

.health-block__article-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  padding: 36px;
  position: relative;
}

.health-block__article-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.health-block__article-excerpt {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.health-block__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.health-block__tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-forest);
  border: 1px solid rgba(74,103,65,0.5);
  padding: 5px 10px;
}

/* === EMAIL SUBSCRIPTION === */

.email-sub {
  background: var(--color-cream-deep);
  padding: 100px 0;
  text-align: center;
}

.email-sub__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: 14px;
}

.email-sub__title strong {
  font-weight: 300;
}

.email-sub__subtitle {
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.email-sub__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border: 2px solid var(--color-border);
  background: var(--color-white);
}

.email-sub__input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-dark);
  outline: none;
}

.email-sub__input::placeholder {
  color: var(--color-sand);
}

.email-sub__btn {
  flex-shrink: 0;
  padding: 16px 24px;
  background: var(--color-dark);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-base);
}

.email-sub__btn:hover {
  background: var(--color-forest);
}

.email-sub__note {
  font-size: 12px;
  color: var(--color-sand);
  margin-top: 14px;
}

.email-sub__success {
  display: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-forest);
  font-weight: 600;
  padding: 16px;
}

/* === ORDER FORM (inline, on product pages) === */

.order-section {
  background: var(--color-cream-deep);
  padding: 80px 0;
}

.order-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.order-form {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  padding: 40px;
}

.order-form__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--color-border);
  background: var(--color-cream);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-dark);
  outline: none;
  transition: border-color var(--transition-base);
  border-radius: 0;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--color-forest);
}

.form-input.is-error {
  border-color: #c0392b;
}

.form-error {
  display: none;
  font-size: 12px;
  color: #c0392b;
  margin-top: 5px;
  font-weight: 600;
}

.form-error.visible {
  display: block;
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  overflow: hidden;
  background: transparent;
}

.form-submit .btn__label {
  flex: 1;
  padding: 17px 20px;
  background: var(--color-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  transition: background var(--transition-base);
}

.form-submit .btn__suffix {
  padding: 17px 20px;
  background: var(--color-forest);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-left: 1px solid rgba(255,255,255,0.2);
  transition: background var(--transition-base);
}

.form-submit:hover .btn__label {
  background: var(--color-dark-soft);
}

.form-submit:hover .btn__suffix {
  background: var(--color-forest-deep);
}

.form-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

/* === THANK YOU MODAL === */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,24,0.6);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-icon {
  width: 56px;
  height: 56px;
  background: var(--color-forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.modal-text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.modal-close {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  background: var(--color-dark);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background var(--transition-base);
}

.modal-close:hover {
  background: var(--color-forest);
}

/* === ADVERTORIAL DISCLAIMER === */

.advertorial-bar {
  background: var(--color-cream-mid);
  padding: 10px 0;
  text-align: center;
}

.advertorial-bar p {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* === FOOTER === */

.footer {
  background: var(--color-dark);
  padding: 72px 0 0;
}

body:has(.product-order) .footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__contact-line {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer__contact-line a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-base);
}

.footer__contact-line a:hover {
  color: var(--color-forest);
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-base);
  text-decoration: none;
}

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

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer__legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal-link {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-base);
  text-decoration: none;
}

.footer__legal-link:hover {
  color: rgba(255,255,255,0.65);
}

/* === COOKIE BANNER === */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  background: var(--color-dark);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px 28px;
  z-index: 9500;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  border-radius: 2px;
  display: none;
}

.cookie-banner.visible {
  display: block;
  animation: fade-up 0.4s ease both;
}

.cookie-banner__text {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 18px;
}

.cookie-banner__text a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.cookie-btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  border-radius: 0;
}

.cookie-btn--accept {
  background: var(--color-forest);
  color: #fff;
}

.cookie-btn--accept:hover {
  background: var(--color-forest-deep);
}

.cookie-btn--reject {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}

.cookie-btn--reject:hover {
  background: rgba(255,255,255,0.15);
}

.cookie-btn--configure {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}

.cookie-btn--configure:hover {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.75);
}

.cookie-banner__panel {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-banner__panel.open {
  display: block;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
}

.cookie-toggle-label {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}

.cookie-toggle-label span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
}

.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 11px;
  cursor: pointer;
  transition: var(--transition-base);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: var(--transition-base);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--color-forest);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(18px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

/* === CATALOG PAGE === */

.catalog-hero {
  background: var(--color-cream-deep);
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--color-border);
}

.catalog-hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.catalog-hero__title strong {
  font-weight: 300;
}

.catalog-hero__sub {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 520px;
  line-height: 1.7;
}

.catalog-main {
  padding: 80px 0;
}

.catalog-main .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* === LEGAL PAGES === */

.legal-hero {
  background: var(--color-cream-deep);
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--color-border);
}

.legal-hero__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-dark);
}

.legal-content {
  padding: 60px 0 100px;
}

.legal-content h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.legal-content h3 {
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.legal-content p {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.legal-content ul {
  margin: 12px 0 16px 20px;
  list-style: disc;
}

.legal-content ul li {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--color-forest);
  text-decoration: underline;
}

/* === SCROLL ANIMATIONS === */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* === HERO ANIMATIONS === */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* === CONTACT PAGE === */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0;
}

.contact-info__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.contact-info__text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.contact-detail__icon {
  width: 36px;
  height: 36px;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-forest);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.contact-detail__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-warm-brown);
  margin-bottom: 3px;
}

.contact-detail__value {
  font-size: 14px;
  color: var(--color-text);
}

.contact-detail__value a {
  color: var(--color-forest);
}

/* === PHOTO PLACEHOLDER === */

.photo-placeholder {
  background: linear-gradient(135deg, #ff6eb4, #ff3d9a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border-radius: inherit;
}

.photo-placeholder__icon {
  font-size: 32px;
}

.photo-placeholder__label {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: sans-serif;
  text-align: center;
  padding: 0 16px;
}

/* === RESPONSIVE === */

@media (max-width: 1024px) {
  .product-grid--featured {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .problem__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .benefits__img-main {
    aspect-ratio: 16/9;
  }

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

  .faq__intro {
    position: static;
  }

  .health-block__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .order-form-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 800;
  }

  .nav__links--open {
    display: flex;
  }

  .nav__mobile-toggle {
    display: flex;
    z-index: 850;
  }

  .product-grid--featured {
    grid-template-columns: 1fr;
  }

  .stats-strip__inner {
    gap: 28px;
  }

  .stats-strip__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 20px;
    flex-basis: 100%;
  }

  .stats-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 clamp(20px, 5vw, 48px);
  }

  .stats-strip__item {
    flex-basis: auto;
    justify-content: flex-start;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .catalog-main .product-grid {
    grid-template-columns: 1fr;
  }

  .email-sub__form {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .order-form {
    padding: 28px 20px;
  }

  .modal-box {
    padding: 36px 24px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px;
  }
}

/* Progressive-enhancement safety (injected by builder): scroll-reveal blocks stay VISIBLE
   unless JS confirms it can animate them by adding .js-anim to <html>. Guarantees a
   truncated page or a failed script can never leave content permanently hidden. */
html:not(.js-anim) .reveal,
html:not(.js-anim) .reveal-left,
html:not(.js-anim) .reveal-right,
html:not(.js-anim) .reveal-scale,
html:not(.js-anim) .stagger-child {
  opacity: 1 !important;
  transform: none !important;
}
