:root {
  --color-primary: #78716C;
  --color-primary-dark: #3F3A35;
  --color-accent: #B45309;
  --color-accent-dark: #8A3F07;
  --color-accent-soft: #FDF2E4;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F4EDE6;
  --color-surface: #FFFFFF;
  --color-text: #2A2622;
  --color-muted: #6B625B;
  --color-border: #E6DCD2;
  --color-dark: #2E2A26;
  --color-warning-bg: #FBEAD2;
  --color-warning-text: #8A3F07;
  --color-error-text: #C0392B;
  --color-error-bg: #FDEDEC;
  --font-heading: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(42, 38, 34, .07);
  --shadow-md: 0 6px 20px rgba(42, 38, 34, .09);
  --shadow-lg: 0 18px 44px rgba(42, 38, 34, .14);
  --header-h: 68px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

[hidden] { display: none !important; }

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

a { color: var(--color-accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; margin: 0 0 .6em; color: var(--color-text); }

p { margin: 0 0 1em; }

ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; border-radius: 3px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

section { position: relative; padding: 60px 0; background: var(--color-bg); }
.section-alt { background: var(--color-bg-alt); }

.section-title { font-size: 1.75rem; margin-bottom: .35em; }
.section-subtitle { font-size: 1.0625rem; color: var(--color-muted); max-width: 68ch; margin: 0 0 2rem; }
.section-closer { margin-top: 2rem; font-weight: 600; color: var(--color-text); }

.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-block; font-family: var(--font-body); font-weight: 600; font-size: .9375rem;
  padding: 12px 22px; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; text-align: center; transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-primary { background: var(--color-accent); color: #FFFFFF; }
.btn-primary:hover { background: var(--color-accent-dark); color: #FFFFFF; text-decoration: none; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--color-accent-dark); border-color: var(--color-accent); }
.btn-secondary:hover { background: var(--color-accent); color: #FFFFFF; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent-dark); text-decoration: none; }
.btn-sm { padding: 8px 16px; font-size: .875rem; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }

.hero .btn-ghost, .newsletter .btn-ghost, .sticky-cta .btn-ghost, .cookie-banner .btn-ghost {
  color: #FFFFFF; border-color: rgba(255, 255, 255, .65);
}
.hero .btn-ghost:hover, .newsletter .btn-ghost:hover, .sticky-cta .btn-ghost:hover, .cookie-banner .btn-ghost:hover {
  background: rgba(255, 255, 255, .14); color: #FFFFFF; border-color: #FFFFFF;
}

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header__inner { display: flex; align-items: center; gap: 16px; min-height: var(--header-h); }
.header__logo {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
  letter-spacing: .06em; color: var(--color-text); margin-right: auto;
}
.header__logo:hover { text-decoration: none; color: var(--color-accent-dark); }
.header__nav { display: none; }
.header__nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.header__nav a { color: var(--color-text); font-size: .9375rem; font-weight: 500; }
.header__nav a:hover, .header__nav a.active { color: var(--color-accent-dark); text-decoration: none; }
.header__cta { display: none; }
.header__hamburger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; font-size: 1.35rem; line-height: 1;
  background: transparent; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); color: var(--color-text); cursor: pointer;
}
.header--scrolled { box-shadow: var(--shadow-sm); }
.no-scroll { overflow: hidden; }

.hero {
  position: relative; min-height: 50vh; display: flex; align-items: center;
  padding: calc(var(--header-h) + 26px) 0 34px;
  background-color: var(--color-primary-dark);
  background-image: linear-gradient(135deg, rgba(46, 42, 38, .93), rgba(180, 83, 9, .55));
  color: #FFFFFF;
}
.hero__inner { display: grid; gap: 28px; align-items: center; }
.hero__copy { max-width: 64ch; }
.hero__title { font-size: clamp(1.5rem, 3.4vw, 2.125rem); color: #FFFFFF; margin-bottom: .3em; }
.hero__subtitle { font-size: .9375rem; color: #F6EFE8; margin-bottom: .8em; line-height: 1.55; }
.hero__bullets { list-style: none; padding: 0; margin: 0 0 1.1em; }
.hero__bullets li { position: relative; padding-left: 24px; margin-bottom: .35em; color: #F1E8DF; font-size: .9063rem; line-height: 1.5; }
.hero__bullets li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: #F3B562; font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-height: 34vh; width: 100%; object-fit: cover; }

.wave-divider { line-height: 0; background: var(--color-bg); }
.wave-divider svg { width: 100%; height: 54px; display: block; }
.wave-divider--top { background: var(--color-bg-alt); margin-top: -1px; }
.wave-divider--top svg path { fill: var(--color-primary-dark); }
.wave-divider--bottom { background-color: var(--color-accent-dark); background-image: linear-gradient(135deg, #8A3F07, #B45309); }
.wave-divider--bottom svg path { fill: var(--color-dark); }

.products { padding-top: 44px; }
.products-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
.product-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 18px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: box-shadow .25s ease, transform .25s ease;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card__media { display: block; border-radius: var(--radius-sm); overflow: hidden; background: var(--color-bg-alt); }
.product-card__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-card__title { font-size: 1.125rem; margin: 14px 0 8px; }
.product-card__rating { font-size: .875rem; font-weight: 600; color: var(--color-text); margin-bottom: 10px; }
.product-card__stars { color: var(--color-accent); letter-spacing: 1px; }
.product-card__reviews { color: var(--color-muted); font-weight: 400; }
.product-card__rating--none { color: var(--color-muted); font-weight: 500; font-style: italic; }
.product-card__description {
  font-size: .9375rem; color: var(--color-muted); margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card__description.is-expanded { -webkit-line-clamp: unset; overflow: visible; }
.product-card__more {
  align-self: flex-start; background: none; border: 0; padding: 0 0 10px;
  font-family: var(--font-body); font-size: .875rem; font-weight: 600;
  color: var(--color-accent-dark); cursor: pointer; text-decoration: underline;
}
.product-card__highlights { list-style: none; padding: 0; margin: 0 0 16px; }
.product-card__highlights li {
  position: relative; padding-left: 20px; margin-bottom: .5em;
  font-size: .875rem; color: var(--color-text);
}
.product-card__highlights li::before { content: "\2014"; position: absolute; left: 0; color: var(--color-accent); }
.product-card__cta {
  margin-top: auto; display: block; text-align: center; font-weight: 600;
  background: var(--color-accent); color: #FFFFFF; padding: 12px 18px; border-radius: var(--radius-sm);
}
.product-card__cta:hover { background: var(--color-accent-dark); text-decoration: none; }

.product-badge {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: var(--color-warning-bg); color: var(--color-warning-text);
  font-size: .8125rem; font-weight: 600; margin-bottom: 8px;
}
.product-badge--restock { background: var(--color-warning-bg); color: var(--color-warning-text); }
.product-card--unavailable .product-card__media img { filter: grayscale(.55); }
.product-card--unavailable .product-card__title { color: var(--color-muted); }

.category-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 32px; padding: 0; }
.category-chip {
  display: inline-block; padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--color-border); background: var(--color-surface);
  color: var(--color-text); font-size: .875rem; font-weight: 500;
}
.category-chip:hover { border-color: var(--color-accent); color: var(--color-accent-dark); text-decoration: none; }
.category-chips__all { padding: 8px 18px; border-radius: 999px; font-size: .875rem; }

.benefits::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(42, 38, 34, .16) 1px, transparent 1px);
  background-size: 24px 24px; opacity: .35;
}
.benefits > .container { position: relative; }
.benefits-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.benefit-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm);
}
.benefit-card__icon { font-size: 1.75rem; display: block; margin-bottom: 10px; }
.benefit-card__title { font-size: 1.0625rem; }
.benefit-card__text { font-size: .9375rem; color: var(--color-muted); margin: 0; }

.how-it-works::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(45deg, rgba(42, 38, 34, .05) 0 1px, transparent 1px 16px);
}
.how-it-works > .container { position: relative; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 22px; grid-template-columns: 1fr; counter-reset: step; }
.step { background: var(--color-surface); border-radius: var(--radius-md); padding: 22px; border: 1px solid var(--color-border); }
.step__number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; margin-bottom: 12px;
  background: var(--color-accent); color: #FFFFFF; font-weight: 700; font-family: var(--font-heading);
}
.step__title { font-size: 1.0625rem; margin-bottom: .35em; }
.step__text { font-size: .9375rem; color: var(--color-muted); margin: 0; }

.features { padding-bottom: 40px; }
.feature { display: grid; gap: 24px; align-items: center; margin-bottom: 52px; }
.feature:last-child { margin-bottom: 0; }
.feature__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.feature__title { font-size: 1.375rem; }
.feature__text { color: var(--color-text); }
.feature__list { list-style: none; padding: 0; margin: 0 0 20px; }
.feature__list li { position: relative; padding-left: 24px; margin-bottom: .7em; font-size: .9375rem; color: var(--color-muted); }
.feature__list li::before { content: "\25B8"; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }
.feature__body { min-width: 0; }
.feature--left .feature__media { order: 1; }
.feature--left .feature__body { order: 2; }
.feature--right .feature__media { order: 1; }
.feature--right .feature__body { order: 2; }

.info-gain-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.info-gain-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent); border-radius: var(--radius-md);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.info-gain-card__number {
  display: block; font-family: var(--font-heading); font-size: 1.75rem;
  font-weight: 700; color: var(--color-accent-dark); margin-bottom: 10px; line-height: 1.1;
}
.info-gain-card__claim { font-size: .9375rem; color: var(--color-text); }
.info-gain-card__gap { font-size: .875rem; color: var(--color-muted); font-style: italic; }
.info-gain-card__proof {
  display: inline-block; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em;
  font-weight: 600; color: var(--color-warning-text); background: var(--color-warning-bg);
  padding: 4px 10px; border-radius: 999px;
}

.about__grid { display: grid; gap: 28px; align-items: start; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.about__body p { color: var(--color-text); }
.about-story { padding-top: 20px; }
.about-page .about-story { padding-top: 12px; }

.stats-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.stat { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 20px; text-align: center; }
.stat__number { display: block; font-family: var(--font-heading); font-size: 1.625rem; font-weight: 700; color: var(--color-accent-dark); }
.stat__label { display: block; font-size: .8125rem; text-transform: uppercase; letter-spacing: .05em; color: var(--color-muted); margin-top: 6px; }

.reviews::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
}
.reviews > .container { position: relative; }
.reviews-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.review-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm); }
.review-card__stars { color: var(--color-accent); letter-spacing: 2px; margin-bottom: 10px; }
.review-card__text { font-size: .9375rem; color: var(--color-text); }
.review-card__meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; border-top: 1px solid var(--color-border); padding-top: 12px; }
.review-card__badge { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: #2F6B3F; background: #E7F3EA; padding: 3px 9px; border-radius: 999px; }
.review-card__product { font-size: .8125rem; color: var(--color-muted); }

.comparison__scroll { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--color-border); }
.comparison-table { width: 100%; border-collapse: collapse; background: var(--color-surface); min-width: 640px; }
.comparison-table th, .comparison-table td { padding: 14px 16px; text-align: left; font-size: .9375rem; border-bottom: 1px solid var(--color-border); vertical-align: top; }
.comparison-table thead th { background: var(--color-primary-dark); color: #FFFFFF; font-family: var(--font-heading); }
.comparison-table tbody th { font-weight: 600; color: var(--color-text); width: 30%; }
.comparison-table tbody tr:nth-child(even) { background: #FBF7F3; }
.comparison-table .is-brand { background: var(--color-accent-soft); font-weight: 600; color: var(--color-text); }
.comparison-table thead .is-brand { background: var(--color-accent); color: #FFFFFF; }

.timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.timeline__item { position: relative; background: var(--color-surface); border: 1px solid var(--color-border); border-left: 4px solid var(--color-accent); border-radius: var(--radius-md); padding: 20px; }
.timeline__label { display: inline-block; font-family: var(--font-heading); font-weight: 700; font-size: 1.0625rem; color: var(--color-accent-dark); margin-bottom: 8px; }
.timeline__text { margin: 0; font-size: .9375rem; color: var(--color-text); }
.timeline-section .section-closer { text-align: center; }

.fears-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.fear-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 22px; }
.fear-card__title { font-size: 1.0625rem; }
.fear-card__text { font-size: .9375rem; color: var(--color-muted); }
.fear-card__stat { display: inline-block; font-size: .8125rem; font-weight: 600; color: var(--color-warning-text); background: var(--color-warning-bg); padding: 4px 10px; border-radius: 999px; }

.persona-grid { display: grid; gap: 20px; grid-template-columns: 1fr; margin-bottom: 28px; }
.persona-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 22px; }
.persona-card__icon { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.persona-card__title { font-size: 1.0625rem; }
.persona-card__text { font-size: .9375rem; color: var(--color-muted); margin: 0; }
.not-for { background: var(--color-surface); border: 1px dashed var(--color-primary); border-radius: var(--radius-md); padding: 22px; }
.not-for__title { font-size: 1.0625rem; }
.not-for__list { list-style: none; padding: 0; margin: 0; }
.not-for__list li { position: relative; padding-left: 26px; margin-bottom: .6em; font-size: .9375rem; color: var(--color-text); }
.not-for__list li::before { content: "\2715"; position: absolute; left: 0; color: #B03A2E; font-weight: 700; }

.mission .values-grid, .values-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.value-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 22px; }
.value-card__icon { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.value-card__title { font-size: 1.0625rem; }
.value-card__text { font-size: .9375rem; color: var(--color-muted); margin: 0; }

.expert__grid { display: grid; gap: 24px; align-items: start; }
.expert__media img { border-radius: 50%; width: 180px; height: 180px; object-fit: cover; box-shadow: var(--shadow-md); }
.expert__quote { margin: 0 0 14px; padding: 20px 22px; background: var(--color-surface); border-left: 4px solid var(--color-accent); border-radius: var(--radius-md); font-family: var(--font-heading); font-size: 1.0625rem; }
.expert__quote p { margin: 0; }
.expert__name { font-weight: 700; margin-bottom: 1em; }
.expert__role { font-weight: 400; color: var(--color-muted); }
.expert__tips { list-style: none; padding: 0; margin: 0 0 20px; }
.expert__tips li { position: relative; padding-left: 24px; margin-bottom: .7em; font-size: .9375rem; color: var(--color-text); }
.expert__tips li::before { content: "\2605"; position: absolute; left: 0; color: var(--color-accent); }
.expert__body { min-width: 0; }

.faq::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='60'%3E%3Cpath d='M0 30 Q60 4 120 30 T240 30' fill='none' stroke='%232A2622' stroke-opacity='0.09' stroke-width='1.5'/%3E%3C/svg%3E");
}
.faq > .container { position: relative; }
.faq-list, .faq-more { display: block; }
.faq-item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-sm); margin-bottom: 10px; }
.faq-item > summary { cursor: pointer; list-style: none; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-question {
  display: block; padding: 16px 44px 16px 18px; position: relative;
  font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 600; color: var(--color-text);
}
.faq-question::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-size: 1.35rem; color: var(--color-accent); line-height: 1;
}
.faq-item[open] .faq-question::after { content: "\2212"; }
.faq-answer { padding: 0 18px 16px; }
.faq-answer p { margin: 0; font-size: .9375rem; color: var(--color-muted); }
.faq-toggle {
  display: block; margin: 20px auto 0; padding: 12px 24px;
  font-family: var(--font-body); font-size: .9375rem; font-weight: 600;
  background: transparent; color: var(--color-accent-dark);
  border: 2px solid var(--color-accent); border-radius: var(--radius-sm); cursor: pointer;
}
.faq-toggle:hover { background: var(--color-accent); color: #FFFFFF; }
.faq-more { margin-top: 12px; }

.gallery-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.gallery-item { margin: 0; border-radius: var(--radius-md); overflow: hidden; background: var(--color-surface); box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; cursor: pointer; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__caption { padding: 10px 14px; font-size: .8125rem; color: var(--color-muted); }

.lightbox {
  position: fixed; inset: 0; z-index: 120; background: rgba(20, 18, 16, .92);
  display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px;
}
.lightbox__image { max-width: 92vw; max-height: 78vh; border-radius: var(--radius-md); }
.lightbox__caption { color: #F2E9E1; margin-top: 14px; font-size: .9375rem; }
.lightbox__close {
  position: absolute; top: 16px; right: 20px; width: 44px; height: 44px;
  font-size: 1.75rem; line-height: 1; background: transparent; color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, .5); border-radius: var(--radius-sm); cursor: pointer;
}

.newsletter {
  position: relative; overflow: hidden; padding: 60px 0;
  background-color: var(--color-accent-dark);
  background-image: linear-gradient(135deg, #8A3F07, #B45309);
  color: #FFFFFF;
}
.newsletter::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .3;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .18) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .18) 0 1px, transparent 1px 5px);
}
.newsletter__inner { position: relative; text-align: center; max-width: 720px; }
.newsletter__title { color: #FFFFFF; font-size: 1.625rem; }
.newsletter__subtitle { color: #FBEFE2; margin-bottom: 1.5em; }
.newsletter__form { display: flex; flex-direction: column; gap: 10px; }
.newsletter__input {
  flex: 1; padding: 13px 16px; font-family: var(--font-body); font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, .6); border-radius: var(--radius-sm);
  background: #FFFFFF; color: var(--color-text);
}
.newsletter__button { background: var(--color-dark); border-color: var(--color-dark); }
.newsletter__button:hover { background: #1E1B18; }
.newsletter__note { font-size: .8125rem; color: #F7E6D2; margin: 14px 0 0; }
.newsletter-message { margin-top: 14px; padding: 10px 14px; border-radius: var(--radius-sm); font-size: .875rem; text-align: left; }
.newsletter-message--error { color: var(--color-error-text); background: var(--color-error-bg); border: 1px solid var(--color-error-text); }

.footer { background: var(--color-dark); color: #E7DFD7; padding: 52px 0 26px; }
.footer__content { display: grid; gap: 30px; grid-template-columns: 1fr; }
.footer__col--brand { max-width: 34ch; }
.footer__logo { font-family: var(--font-heading); font-size: 1.375rem; font-weight: 700; letter-spacing: .06em; color: #FFFFFF; display: block; margin-bottom: 10px; }
.footer__tagline { font-size: .9375rem; color: #C9BEB4; }
.footer__address { font-style: normal; font-size: .875rem; color: #C9BEB4; margin-bottom: 10px; }
.footer__contact { margin: 0 0 6px; font-size: .875rem; }
.footer__contact a { color: #F0C58A; }
.footer__hours { font-size: .875rem; color: #C9BEB4; margin-top: 10px; }
.footer__heading { font-size: 1rem; color: #FFFFFF; margin-bottom: .8em; }
.footer__list, .footer__social { list-style: none; padding: 0; margin: 0; }
.footer__list li, .footer__social li { margin-bottom: .5em; }
.footer__list a, .footer__social a { color: #D7CCC2; font-size: .9375rem; }
.footer__list a:hover, .footer__social a:hover { color: #F0C58A; }
.footer__languages { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 18px 20px 0; }
.footer__languages:empty { display: none; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .14); margin-top: 30px; padding-top: 18px; text-align: center; }
.footer__copyright { font-size: .875rem; color: #C9BEB4; margin-bottom: .5em; }
.footer p:last-child { margin-bottom: 0; }

.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 110;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px;
  padding: 12px 18px; background: rgba(46, 42, 38, .97); color: #F1E9E2;
  backdrop-filter: blur(6px);
}
.cookie-banner__text { margin: 0; font-size: .8125rem; }
.cookie-banner__text a { color: #F0C58A; }
.cookie-banner__actions { display: flex; gap: 10px; }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px;
  padding: 12px 18px; background: rgba(46, 42, 38, .93); color: #FFFFFF; backdrop-filter: blur(8px);
}
.sticky-cta__text { margin: 0; font-size: .875rem; color: #F1E9E2; }
.sticky-cta__actions { display: flex; align-items: center; gap: 10px; }
.sticky-cta__close {
  width: 34px; height: 34px; font-size: 1.25rem; line-height: 1;
  background: transparent; color: #FFFFFF; border: 1px solid rgba(255, 255, 255, .45);
  border-radius: var(--radius-sm); cursor: pointer;
}

.page { padding-top: calc(var(--header-h) + 28px); }
.page__title { font-size: clamp(1.75rem, 5vw, 2.5rem); margin-bottom: .2em; }
.page__meta { color: var(--color-muted); font-size: .875rem; }
.back-link { display: inline-block; font-size: .875rem; font-weight: 600; margin-bottom: 14px; }

.contact-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
.contact-form { display: block; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 12px 14px; font-family: var(--font-body); font-size: 1rem;
  color: var(--color-text); background: var(--color-surface);
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
}
.form-input:focus { border-color: var(--color-accent); outline: none; box-shadow: 0 0 0 3px rgba(180, 83, 9, .18); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-message { margin-top: 14px; padding: 10px 14px; border-radius: var(--radius-sm); font-size: .875rem; }
.form-message--error { color: var(--color-error-text); background: var(--color-error-bg); border: 1px solid var(--color-error-text); }
.contact__form-wrap, .contact__details { min-width: 0; }
.contact-block { margin-bottom: 20px; }
.contact-block__title { font-size: 1rem; margin-bottom: .3em; }
.contact-block__text { font-size: .9375rem; color: var(--color-muted); font-style: normal; margin: 0; }

.legal__body { max-width: 78ch; }
.legal__block { margin-bottom: 26px; }
.legal__heading { font-size: 1.125rem; margin-bottom: .4em; }
.legal p { font-size: .9375rem; color: var(--color-muted); }

.about-page .page, .contact-page .page, .terms-page .page, .privacy-page .page { padding-bottom: 20px; }

.about, .comparison, .contact, .expert, .fears, .gallery, .info-gain, .stats, .who-its-for { position: relative; }
.about > .container, .comparison > .container, .expert > .container, .info-gain > .container, .who-its-for > .container { position: relative; }
.contact { padding-top: 20px; }
.gallery { padding-bottom: 70px; }
.footer__col { min-width: 0; }
.footer__col .footer__heading { letter-spacing: .02em; }

[data-animate] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-animate].visible { opacity: 1; transform: none; }

@media (min-width: 600px) {
  .products-grid, .benefits-grid, .fears-grid, .persona-grid, .values-grid, .reviews-grid, .info-gain-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .newsletter__form { flex-direction: row; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  section { padding: 80px 0; }
  .section-title { font-size: 2.125rem; }
  .hero { padding: calc(var(--header-h) + 26px) 0 34px; }
  .hero__inner { grid-template-columns: 1.2fr .8fr; gap: 36px; }
  .hero__copy { max-width: none; }
  .contact-grid { grid-template-columns: 1.1fr .9fr; }
  .about__grid { grid-template-columns: .9fr 1.1fr; }
  .expert__grid { grid-template-columns: 200px 1fr; }
  .footer__content { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr 1fr; gap: 36px; }
  .feature--right .feature__media { order: 2; }
  .feature--right .feature__body { order: 1; }
  .container { padding: 0 40px; }
}

@media (min-width: 1024px) {
  .header__nav { display: block; }
  .header__cta { display: block; }
  .header__hamburger { display: none; }
  .products-grid, .benefits-grid, .info-gain-grid { grid-template-columns: repeat(3, 1fr); }
  .fears-grid, .values-grid, .persona-grid, .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .footer__content { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1600px) {
  .container { max-width: 1320px; }
}

@media (max-width: 1023px) {
  .header__nav {
    display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--color-surface); border-bottom: 1px solid var(--color-border);
    padding: 14px 20px; box-shadow: var(--shadow-md);
  }
  .header__nav.is-open { display: block; }
  .header__nav ul { flex-direction: column; gap: 4px; }
  .header__nav a { display: block; padding: 10px 0; }
  .sticky-cta { flex-direction: column; gap: 8px; text-align: center; }
  .sticky-cta__actions { width: 100%; justify-content: center; }
  .sticky-cta .btn-primary { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-animate] { opacity: 1; transform: none; }
}
