/* ============================================
   Ocularix — wellness theme stylesheet
   ============================================ */

:root {
  --color-bg: #f6f9f4;
  --color-surface: #ffffff;
  --color-cream: #eef3e8;
  --color-leaf: #4a7c3c;
  --color-leaf-dark: #2f5a26;
  --color-moss: #1f3d18;
  --color-accent: #7bb04a;
  --color-accent-soft: #c4dba4;
  --color-text: #243321;
  --color-text-muted: #5a6b56;
  --color-border: #d9e2d0;
  --color-warm: #f4ead8;

  --shadow-sm: 0 2px 6px rgba(31, 61, 24, 0.06);
  --shadow-md: 0 12px 28px rgba(31, 61, 24, 0.08);
  --shadow-lg: 0 28px 60px rgba(31, 61, 24, 0.12);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --container-w: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { 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;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-leaf-dark);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--color-moss); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-moss);
  line-height: 1.2;
  margin: 0 0 .55em;
  letter-spacing: -.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 400; line-height: 1.12; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.2rem; line-height: 1.3; }

p { text-wrap: pretty; }

p { margin: 0 0 1.1em; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 249, 244, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--color-moss);
  font-weight: 500;
  letter-spacing: -.01em;
}

.brand-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--color-accent) 0%, var(--color-leaf-dark) 80%);
  position: relative;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.35);
}
.brand-mark::after{
  content:"";
  position:absolute; inset: 9px;
  background: var(--color-moss);
  border-radius:50%;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 6px 2px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-leaf);
  transition: width .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  width: 42px; height: 42px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--color-moss);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--color-moss);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary {
  background: var(--color-leaf-dark);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-moss);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--color-moss);
  border: 1px solid var(--color-border);
}
.btn-ghost:hover {
  border-color: var(--color-leaf);
  background: var(--color-cream);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--color-accent-soft), transparent 70%);
  opacity: .55;
  filter: blur(10px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-leaf);
  background: var(--color-cream);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-lede {
  font-size: 1.12rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-visual::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(31,61,24,.25));
}

.hero-tag {
  position: absolute;
  left: 20px; bottom: 20px;
  background: var(--color-surface);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-moss);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}
.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: clamp(56px, 8vw, 110px) 0;
}
.section-tight { padding: clamp(40px, 5vw, 70px) 0; }

.section-head {
  max-width: 680px;
  margin-bottom: 50px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-leaf);
  margin-bottom: 14px;
  display: inline-block;
}

.lede {
  font-size: 1.08rem;
  color: var(--color-text-muted);
}

/* Intro / split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}
.split.reverse { grid-template-columns: 1.1fr 1fr; }
.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 5/4;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }

.feature-list {
  list-style: none;
  padding: 0; margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  padding-left: 0;
  align-items: flex-start;
}
.feature-list li::before {
  content: "";
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-cream);
  border: 2px solid var(--color-leaf);
  position: relative;
  margin-top: 3px;
  background-image: linear-gradient(45deg, transparent 47%, var(--color-leaf-dark) 48%, var(--color-leaf-dark) 52%, transparent 53%),
                    linear-gradient(-45deg, transparent 47%, var(--color-leaf-dark) 48%, var(--color-leaf-dark) 52%, transparent 53%);
  background-size: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Ingredients section */
.ingredients {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 70px);
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}
.ingredient {
  background: var(--color-surface);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.ingredient:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-soft);
}

.ingredient-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-accent-soft), var(--color-cream));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-leaf-dark);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 20px;
  line-height: 1;
}
.ingredient h3 {
  font-size: 1.15rem;
  margin-bottom: .5em;
}
.ingredient p {
  font-size: .95rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Product showcase */
.product-showcase {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.product-visual {
  position: relative;
  padding: clamp(40px, 5vw, 70px) 30px;
  background:
    radial-gradient(ellipse at 50% 75%, rgba(31,61,24,.18), transparent 60%),
    linear-gradient(160deg, var(--color-cream) 0%, var(--color-accent-soft) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}
.product-visual::before {
  content: "";
  position: absolute;
  top: -120px; left: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.45), transparent 70%);
  pointer-events: none;
}
.product-visual::after {
  content: "";
  position: absolute;
  bottom: -160px; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-leaf) 0%, transparent 65%);
  opacity: .25;
  pointer-events: none;
}
.product-visual img {
  position: relative;
  z-index: 1;
  max-width: 78%;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(31,61,24,.25));
  transition: transform .5s ease;
}
.product-visual:hover img { transform: translateY(-8px) rotate(-1.5deg); }

.product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.product-meta-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.product-meta-item .k {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-leaf);
  display: block;
  margin-bottom: 4px;
}
.product-meta-item .v {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-moss);
}

/* Lifestyle stripe */
.lifestyle {
  position: relative;
  overflow: hidden;
}
.lifestyle-card {
  background: var(--color-moss);
  color: #f1f6ec;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.lifestyle-card h2 { color: #f1f6ec; }
.lifestyle-text {
  padding: clamp(36px, 5vw, 64px);
}
.lifestyle-text p { color: #c8d6c0; }
.lifestyle-image {
  position: relative;
  min-height: 360px;
}
.lifestyle-image img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item.open { border-color: var(--color-leaf); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 22px 26px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-moss);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-q .icon {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq-q .icon::before,
.faq-q .icon::after {
  content: "";
  position: absolute;
  background: var(--color-leaf);
  transition: transform .25s ease;
}
.faq-q .icon::before {
  top: 10px; left: 0;
  width: 22px; height: 2px;
}
.faq-q .icon::after {
  top: 0; left: 10px;
  width: 2px; height: 22px;
}
.faq-item.open .icon::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  color: var(--color-text-muted);
}
.faq-a-inner { padding: 0 26px 22px; }

/* CTA / contact strip */
.cta-strip {
  background: linear-gradient(135deg, var(--color-leaf-dark), var(--color-moss));
  color: #f1f6ec;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: center;
}
.cta-strip h2 { color: #f5fbef; margin-bottom: .3em; }
.cta-strip p { color: #cfdcc6; margin: 0; }
.cta-strip .actions { display: flex; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }
.cta-strip .btn-primary {
  background: #fff; color: var(--color-moss);
}
.cta-strip .btn-primary:hover { background: var(--color-cream); }
.cta-strip .btn-ghost {
  border-color: rgba(255,255,255,.35);
  color: #f1f6ec;
}
.cta-strip .btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: #fff;
}

/* ============================================
   About page specifics
   ============================================ */
.page-hero {
  padding: clamp(60px, 8vw, 110px) 0 clamp(30px, 4vw, 50px);
  text-align: left;
  max-width: 760px;
}
.page-hero .eyebrow { margin-bottom: 18px; }

.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
  align-items: stretch;
}
.value {
  padding: 28px 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.value h3 { font-size: 1.1rem; margin-bottom: .55em; }
.value p { margin: 0; color: var(--color-text-muted); font-size: .96rem; line-height: 1.6; }

.standards {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 70px);
  margin-top: 30px;
}
.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 30px;
  align-items: stretch;
}
.standard {
  text-align: left;
  display: flex;
  flex-direction: column;
}
.standard .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--color-leaf);
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: -.02em;
}
.standard h3 { font-size: 1rem; margin-bottom: .5em; }
.standard p { font-size: .92rem; color: var(--color-text-muted); margin: 0; line-height: 1.55; }

/* ============================================
   Contact page
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-moss);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-leaf);
  background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.field .error-msg {
  color: #a83232;
  font-size: .82rem;
  margin-top: 6px;
  display: none;
}
.field.error input,
.field.error textarea { border-color: #a83232; }
.field.error .error-msg { display: block; }
.field-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--color-text-muted);
}
.field-check input { width: auto; margin-top: 4px; }

.info-block {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
}
.info-row { display: flex; gap: 14px; margin-bottom: 18px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-leaf);
  width: 100px; flex-shrink: 0;
}
.info-row .val { color: var(--color-text); }

.map-block {
  margin-top: 28px;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  height: 260px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.map-block .map-grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(var(--color-border) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(135deg, var(--color-cream), var(--color-accent-soft));
  opacity: .9;
}
.map-block .pin {
  position: absolute;
  top: 50%; left: 50%;
  width: 32px; height: 32px;
  background: var(--color-leaf-dark);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 10px 20px rgba(31,61,24,.25);
}
.map-block .pin::after {
  content: "";
  position: absolute;
  top: 8px; left: 8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-cream);
}
.map-block .label-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, 20px);
  background: var(--color-surface);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-moss);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   Success page
   ============================================ */
.success-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}
.success-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.success-check {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--color-cream);
  display: grid; place-items: center;
  position: relative;
}
.success-check::after {
  content: "";
  width: 26px; height: 14px;
  border-left: 3px solid var(--color-leaf-dark);
  border-bottom: 3px solid var(--color-leaf-dark);
  transform: rotate(-45deg) translate(2px, -2px);
}

/* ============================================
   Legal pages
   ============================================ */
.legal {
  padding: 60px 0 80px;
}
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.legal h2 {
  margin-top: 40px;
  font-size: 1.4rem;
}
.legal h3 {
  margin-top: 26px;
  font-size: 1.08rem;
}
.legal p, .legal li { color: var(--color-text); font-size: .98rem; }
.legal ul { padding-left: 22px; }
.legal ul li { margin-bottom: 6px; }
.legal .updated {
  font-size: .85rem;
  color: var(--color-text-muted);
  border-left: 3px solid var(--color-leaf);
  padding-left: 14px;
  margin-bottom: 30px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--color-moss);
  color: #c8d6c0;
  padding: 64px 0 28px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand { color: #f1f6ec; }
.footer-brand .brand { color: #f1f6ec; }
.footer-brand p { font-size: .92rem; color: #a8baa0; max-width: 320px; margin-top: 14px; }

.footer-col h4 {
  color: #f1f6ec;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #c8d6c0; font-size: .94rem; }
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: .92rem; color: #a8baa0; margin: 0 0 8px; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: #8ea088;
}

/* ============================================
   Cookie banner
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 100;
  animation: cookieIn .35s ease;
}
.cookie-banner.show { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.cookie-banner p { margin: 0; font-size: .9rem; color: var(--color-text-muted); flex: 1 1 280px; }
.cookie-banner .cookie-actions { display: flex; gap: 10px; }
.cookie-banner .btn { padding: 10px 18px; font-size: .85rem; }

@keyframes cookieIn {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ============================================
   Reveal animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .hero-grid,
  .split, .split.reverse,
  .lifestyle-card,
  .contact-grid,
  .cta-strip,
  .product-showcase {
    grid-template-columns: 1fr;
  }
  .cta-strip .actions { justify-content: flex-start; }
  .ingredients-grid { grid-template-columns: 1fr 1fr; }
  .standards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lifestyle-image { min-height: 280px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--color-surface);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform .3s ease;
    align-items: stretch;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li {
    border-bottom: 1px solid var(--color-border);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 14px var(--gutter);
  }
  .nav-links a::after { display: none; }

  .ingredients-grid { grid-template-columns: 1fr; }
  .standards-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .values { grid-template-columns: 1fr; }
  .hero-tag { left: 16px; bottom: 16px; }
}
