/* ============================================
   Beaufela — Wellness informacijska stranica
   ============================================ */

:root {
  --green-900: #1a3a2a;
  --green-800: #234b37;
  --green-700: #2f6b4a;
  --green-600: #3d8a5f;
  --green-500: #5aa97a;
  --green-300: #a8d4b9;
  --green-100: #e6f1ea;
  --green-50:  #f3f8f4;

  --sand:      #f7f4ee;
  --cream:     #fbfaf6;
  --ink:       #1e2a23;
  --ink-soft:  #4a594f;
  --line:      #d9e3dc;
  --white:     #ffffff;
  --accent:    #c9a96a;

  --shadow-sm: 0 1px 2px rgba(26,58,42,.06), 0 1px 1px rgba(26,58,42,.04);
  --shadow-md: 0 6px 18px rgba(26,58,42,.08), 0 2px 6px rgba(26,58,42,.05);
  --shadow-lg: 0 20px 48px rgba(26,58,42,.12), 0 6px 14px rgba(26,58,42,.06);

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

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

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

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--green-900); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green-900);
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p { margin: 0 0 1em; color: var(--ink-soft); }

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

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 500;
  margin-bottom: 14px;
  padding: 6px 14px;
  background: var(--green-100);
  border-radius: 100px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .25s ease, box-shadow .2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--green-900);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  color: var(--green-900);
  border-color: var(--green-700);
}
.btn-outline:hover {
  background: var(--green-700);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--green-900);
  padding: 10px 0;
}
.btn-ghost:hover { color: var(--green-700); }

.arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, .88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(217, 227, 220, .55);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--green-900);
  letter-spacing: .01em;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--green-500), var(--green-800));
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(35deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  color: var(--green-900);
  font-size: .95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--green-700); }

.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--green-900);
  transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(800px 500px at 90% 10%, rgba(168, 212, 185, .35), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--green-50) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 { margin-bottom: 22px; }
.hero-text h1 em {
  font-style: italic;
  color: var(--green-700);
}
.hero-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.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-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,.95);
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  max-width: 240px;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-900);
  margin-bottom: 4px;
}
.hero-badge span {
  font-size: .82rem;
  color: var(--ink-soft);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat-item .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--green-800);
  display: block;
  margin-bottom: 4px;
}
.stat-item .lbl {
  font-size: .85rem;
  color: var(--ink-soft);
  letter-spacing: .04em;
}

/* ---------- Generic sections ---------- */
section { padding: 90px 0; }
section.tight { padding: 64px 0; }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* ---------- Intro / Wellness focus ---------- */
.intro {
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: rotate(-1deg);
}
.intro-image img { aspect-ratio: 4 / 5; object-fit: cover; }

.intro-body p + p { margin-top: 1.1em; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--green-500);
  font-size: .95rem;
  color: var(--ink);
}
.feature-list .ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--green-700);
  margin-top: 2px;
}

/* ---------- Product card ---------- */
.product {
  background: linear-gradient(180deg, var(--green-50) 0%, var(--white) 100%);
}
.product-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
  padding: clamp(28px, 4vw, 56px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.product-image {
  position: relative;
  background: radial-gradient(circle at 50% 60%, var(--green-100), transparent 70%);
  border-radius: var(--radius-md);
  padding: 30px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(26,58,42,.18));
}
.product-info h2 { margin-bottom: 14px; }
.product-tag {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-800);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.product-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 24px 0 28px;
  padding: 22px;
  background: var(--green-50);
  border-radius: var(--radius-md);
}
.product-meta div span {
  display: block;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 4px;
}
.product-meta div strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green-900);
  font-weight: 600;
}

/* ---------- Ingredients ---------- */
.ingredients { background: var(--sand); }
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.ingredient {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.ingredient::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--green-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.ingredient:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ingredient:hover::before { transform: scaleX(1); }
.ingredient h3 { font-size: 1.2rem; margin-bottom: 8px; }
.ingredient p { font-size: .92rem; margin: 0; }

.ingredient-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-500);
  margin-bottom: 10px;
  line-height: 1;
}

/* ---------- Lifestyle ---------- */
.lifestyle {
  background: var(--white);
  overflow: hidden;
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.lifestyle-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lifestyle-image img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.lifestyle-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.lifestyle-points li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: start;
  gap: 18px;
}
.lifestyle-points li:last-child { border-bottom: 0; }
.lifestyle-points .step-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-600);
}
.lifestyle-points h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--green-900);
}
.lifestyle-points p {
  margin: 0;
  font-size: .94rem;
}

/* ---------- FAQ ---------- */
.faq { background: var(--green-50); }
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover { border-color: var(--green-300); }
.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: var(--green-500);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 26px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--green-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  line-height: 1.45;
}
.faq-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  position: relative;
  transition: transform .3s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--green-700);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; transition: transform .3s ease; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 26px 24px;
  color: var(--ink-soft);
  font-size: .96rem;
}

/* ---------- CTA Strip ---------- */
.cta-strip {
  background: var(--green-800);
  color: var(--white);
  padding: 76px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 85% 50%, rgba(90, 169, 122, .35), transparent 60%);
  pointer-events: none;
}
.cta-strip .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,.78); margin-bottom: 0; max-width: 520px; }
.cta-strip .btn-primary {
  background: var(--white);
  color: var(--green-900);
  justify-self: end;
}
.cta-strip .btn-primary:hover {
  background: var(--green-100);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,.75);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 56px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.7); font-size: .93rem; max-width: 320px; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}
.footer-col a:hover { color: var(--white); }
.footer-contact p {
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 4px; color: var(--green-300); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background:
    radial-gradient(700px 300px at 80% 0%, rgba(168, 212, 185, .35), transparent 60%),
    linear-gradient(180deg, var(--green-50), var(--cream));
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-header h1 { margin-bottom: 14px; }
.page-header p { max-width: 600px; font-size: 1.05rem; }
.breadcrumb {
  font-size: .82rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.breadcrumb a { color: var(--green-700); }

/* ---------- About page ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.story-image img { aspect-ratio: 4 / 5; object-fit: cover; }

.values {
  background: var(--sand);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.value {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border-top: 3px solid var(--green-600);
}
.value h3 { font-size: 1.25rem; margin-bottom: 10px; }
.value p { font-size: .94rem; margin: 0; }

.sustainability {
  background: var(--green-800);
  color: var(--white);
}
.sustainability h2 { color: var(--white); }
.sustainability p { color: rgba(255,255,255,.82); }
.sustainability .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sustain-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sustain-image img { aspect-ratio: 5 / 4; object-fit: cover; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  padding: 38px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--green-900);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .2s ease, background .2s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--green-600);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-row.invalid input,
.form-row.invalid textarea { border-color: #c25a4e; }
.form-error {
  display: none;
  font-size: .82rem;
  color: #c25a4e;
  margin-top: 6px;
}
.form-row.invalid .form-error { display: block; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.form-check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--green-700); }

.contact-info {
  display: grid;
  gap: 22px;
}
.info-card {
  background: var(--white);
  padding: 26px 28px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--green-500);
  box-shadow: var(--shadow-sm);
}
.info-card h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 8px;
}
.info-card p { margin: 0; color: var(--ink); font-size: .98rem; line-height: 1.5; }
.info-card a { color: var(--green-900); font-weight: 500; }

.map-block {
  margin-top: 60px;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(90, 169, 122, .18) 0%, rgba(58, 122, 84, .12) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 22px, rgba(47, 107, 74, .07) 22px, rgba(47, 107, 74, .07) 23px),
    var(--green-50);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.map-pin {
  width: 60px;
  height: 60px;
  background: var(--green-700);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: var(--shadow-md);
  position: relative;
  margin-bottom: 16px;
}
.map-pin::after {
  content: "";
  position: absolute;
  inset: 16px;
  background: var(--white);
  border-radius: 50%;
}
.map-content {
  background: rgba(255,255,255,.92);
  padding: 20px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.map-content strong { display: block; color: var(--green-900); font-family: var(--font-display); font-size: 1.2rem; }
.map-content span { font-size: .88rem; color: var(--ink-soft); }

/* ---------- Success page ---------- */
.success-wrap {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--gutter);
}
.success-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.success-icon svg { width: 44px; height: 44px; color: var(--green-700); }
.success-wrap h1 { margin-bottom: 16px; }
.success-wrap p { font-size: 1.08rem; max-width: 520px; margin-bottom: 32px; }

/* ---------- Legal pages ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}
.legal-content h2 {
  margin-top: 2.2em;
  font-size: 1.55rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  margin-top: 1.6em;
  font-size: 1.15rem;
  color: var(--green-800);
}
.legal-content p, .legal-content li {
  font-size: .98rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.legal-content ul { padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-meta {
  font-size: .85rem;
  color: var(--ink-soft);
  padding: 14px 20px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  margin-bottom: 30px;
  border-left: 3px solid var(--green-500);
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 22px;
  left: 22px;
  right: 22px;
  max-width: 520px;
  margin-left: auto;
  background: var(--green-900);
  color: var(--white);
  padding: 22px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  pointer-events: none;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  margin: 0 0 16px;
  line-height: 1.55;
}
.cookie-banner p a { color: var(--green-300); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn {
  padding: 10px 22px;
  font-size: .88rem;
}
.cookie-banner .btn-primary {
  background: var(--green-500);
  color: var(--green-900);
}
.cookie-banner .btn-primary:hover { background: var(--green-300); }
.cookie-banner .btn-outline {
  border-color: rgba(255,255,255,.45);
  color: var(--white);
}
.cookie-banner .btn-outline:hover { background: rgba(255,255,255,.1); color: var(--white); }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid,
  .intro-grid,
  .lifestyle-grid,
  .product-card,
  .contact-grid,
  .story-grid,
  .sustainability .container,
  .cta-strip .container {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-strip .btn-primary { justify-self: start; }
  .intro-image { transform: none; }
  .hero { padding: 60px 0 70px; }
  section { padding: 64px 0; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px var(--gutter) 32px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .product-meta { grid-template-columns: 1fr; }
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; }
  .contact-form { padding: 26px 22px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
  .hero-badge { left: 14px; bottom: 14px; max-width: 200px; padding: 12px 14px; }
}
