/* ── Design tokens ─────────────────────────────────────────────────────── */
:root {
  --green-50:  #f0f7ee;
  --green-100: #dcefd8;
  --green-200: #b8dab1;
  --green-400: #6fb868;
  --green-600: #4a8a3f;
  --green-800: #2d5a2d;
  --green-900: #1a3519;

  --blue-50:  #eaf2fb;
  --blue-100: #cfe0f5;
  --blue-400: #5b93d5;
  --blue-600: #2b6cb5;
  --blue-800: #1a4a80;

  --warm-50:  #faf9f5;
  --warm-100: #f2ead8;
  --warm-200: #e6d6b4;
  --warm-400: #c9a96e;

  --bg:        #faf9f5;
  --bg-card:   rgba(255,255,255,0.78);
  --text:      #1a2818;
  --text-soft: #4e5f4c;
  --text-muted:#7a8c78;
  --border:    rgba(26,40,24,0.08);
  --border-md: rgba(26,40,24,0.13);

  --shadow-xs: 0 1px 4px rgba(26,40,24,0.06);
  --shadow-sm: 0 4px 16px rgba(26,40,24,0.08);
  --shadow-md: 0 12px 40px rgba(26,40,24,0.11);
  --shadow-lg: 0 28px 72px rgba(26,40,24,0.14);

  --r-sm: 0.875rem;
  --r-md: 1.5rem;
  --r-lg: 2.25rem;
  --r-xl: 3rem;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 4.5rem;
  --container: min(1140px, calc(100% - 3rem));
}

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

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

body {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 100% 0%,   rgba(110,184,104,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 0%   100%,  rgba(43,108,181,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 100% 70% at 50%  50%,  rgba(247,223,160,0.12) 0%, transparent 70%);
  overflow-x: hidden;
}

/* grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Utility ───────────────────────────────────────────────────────────── */
.container { width: var(--container); margin-inline: auto; position: relative; z-index: 1; }

.kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 1rem;
}

.kicker--blue { color: var(--blue-600); }

/* ── Scroll reveal ─────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="fade"] {
  transform: none;
  transition: opacity 0.7s var(--ease-out);
}
[data-reveal="left"] {
  transform: translateX(-24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal="left"].revealed { transform: translateX(0); }
[data-reveal="right"] {
  transform: translateX(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal="right"].revealed { transform: translateX(0); }

/* ── Header / Nav ──────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  backdrop-filter: blur(18px) saturate(1.4);
  background: rgba(250,249,245,0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.scrolled {
  background: rgba(250,249,245,0.96);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Brand mark */
.brand {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  width: 2.4rem; height: 2.4rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(74,138,63,0.2);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease);
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand:hover .brand-logo {
  transform: scale(1.06) rotate(2deg);
  box-shadow: 0 8px 20px rgba(74,138,63,0.3);
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: -0.01em;
}
.brand-name span { color: var(--blue-600); }

/* Nav links */
.nav-menu {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-menu a {
  display: block;
  padding: 0.4rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  border-radius: var(--r-sm);
  position: relative;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-menu a:hover {
  color: var(--text);
  background: rgba(74,138,63,0.07);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0.1rem; left: 0.75rem; right: 0.75rem;
  height: 1.5px;
  background: linear-gradient(90deg, var(--green-600), var(--blue-600));
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
  transform-origin: left;
  border-radius: 1px;
}
.nav-menu a:hover::after { transform: scaleX(1); }

/* Language switcher */
.lang-switcher {
  display: flex; align-items: center; gap: 0.25rem;
  background: var(--green-50);
  border: 1px solid var(--border);
  border-radius: 100vw;
  padding: 0.2rem;
}
.lang-btn {
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  border-radius: 100vw;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.lang-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  box-shadow: 0 2px 8px rgba(74,138,63,0.3);
}
.lang-btn:not(.active):hover {
  color: var(--text);
  background: rgba(74,138,63,0.1);
}

/* Lang item inside nav */
.nav-lang {
  list-style: none;
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 2.4rem; height: 2.4rem;
  gap: 5px;
  margin-left: auto;
  border-radius: var(--r-sm);
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--green-50); }
.nav-toggle span {
  display: block;
  width: 1.3rem; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero-section {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.hero-section .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-text { position: relative; z-index: 1; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--green-600) 0%, var(--blue-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--text-soft);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: rgba(255,255,255,0.9);
  border: 1.5px solid var(--border-md);
  border-radius: 100vw;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease);
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  flex-shrink: 0;
}
.hero-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* Hero visual box */
.hero-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse 70% 60% at 65% 20%, rgba(255,255,255,0.95), transparent 55%),
    linear-gradient(150deg, var(--green-100) 0%, rgba(203,228,255,0.6) 55%, var(--warm-100) 100%);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-lg);
  will-change: transform;
  transition: transform 0.08s linear;
}

/* Leaves */
.leaf-wrap {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.leaf {
  position: absolute;
  top: -80px;
  border-radius: 50% 4% 50% 4%;
  filter: drop-shadow(0 6px 12px rgba(26,40,24,0.18));
  animation: leafFall linear infinite;
  opacity: 0;
}
.leaf::before {
  content: '';
  position: absolute;
  width: 1.5px;
  height: 55%;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
.leaf:nth-child(1){
  left: 18%; width: 54px; height: 66px;
  background: linear-gradient(140deg, #6fb868, #2d5a2d);
  animation-duration: 9s; animation-delay: 0s;
}
.leaf:nth-child(2){
  left: 52%; width: 38px; height: 48px;
  background: linear-gradient(140deg, #9fd09a, #4a8a3f);
  animation-duration: 11s; animation-delay: 2.5s;
}
.leaf:nth-child(3){
  left: 72%; width: 46px; height: 58px;
  background: linear-gradient(140deg, #5b93d5, #2b6cb5);
  border-radius: 50% 4% 50% 4%;
  animation-duration: 8.5s; animation-delay: 5s;
}
.leaf:nth-child(4){
  left: 35%; width: 30px; height: 38px;
  background: linear-gradient(140deg, #b8dab1, #6fb868);
  animation-duration: 10s; animation-delay: 7.5s;
}
.leaf:nth-child(5){
  left: 62%; width: 42px; height: 54px;
  background: linear-gradient(140deg, #4a8a3f, #1a3519);
  animation-duration: 12s; animation-delay: 1.5s;
}

@keyframes leafFall {
  0%   { opacity: 0; transform: translateY(0)   translateX(0)   rotate(0deg); }
  5%   { opacity: 0.9; }
  30%  { transform: translateY(160px) translateX(28px)  rotate(42deg); }
  55%  { transform: translateY(310px) translateX(-20px) rotate(-25deg); }
  80%  { transform: translateY(430px) translateX(35px)  rotate(65deg); }
  95%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(560px) translateX(5px)  rotate(90deg); }
}

/* Floating caption inside hero visual */
.hero-visual-caption {
  position: absolute;
  bottom: 1.4rem; left: 1.4rem; right: 1.4rem;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  box-shadow: var(--shadow-md);
}
.hero-visual-caption::before {
  content: '';
  display: block;
  width: 2rem; height: 2px;
  background: linear-gradient(90deg, var(--green-600), var(--blue-600));
  border-radius: 1px;
  margin-bottom: 0.5rem;
}

/* Centre botanical mark in visual */
.botanical-mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 140px; height: 140px;
  opacity: 0.12;
}

/* ── Section wrapper ───────────────────────────────────────────────────── */
.section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}
.section--alt {
  background:
    radial-gradient(ellipse 80% 60% at 0% 50%, rgba(110,184,104,0.07), transparent 55%),
    rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.section--blue-tint {
  background: radial-gradient(ellipse 70% 60% at 100% 50%, rgba(43,108,181,0.06), transparent 55%);
}

.section-header {
  text-align: center;
  max-width: 58ch;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--text-soft);
  line-height: 1.7;
}

/* ── Brand / intro ─────────────────────────────────────────────────────── */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.brand-prose p {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
}
.brand-prose p + p { margin-top: 1.1rem; }

.brand-aside {
  position: relative;
  padding: 2rem 2rem 2rem 2.5rem;
  border-left: 3px solid;
  border-image: linear-gradient(to bottom, var(--green-600), var(--blue-600)) 1;
  background: var(--bg-card);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  box-shadow: var(--shadow-sm);
}
.brand-aside-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.brand-aside p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.brand-aside p + p { margin-top: 0.75rem; }

/* Target audience block */
.target-block {
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1.8rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
.target-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 0.9rem;
}
.target-body {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.75;
}
.target-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 0.75rem;
}
.target-disclaimer {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-muted);
}
.target-disclaimer::before {
  content: '*';
  font-size: 1rem;
  color: var(--green-600);
  font-style: normal;
}
.target-badge {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.25rem;
  width: 6rem; height: 6rem;
  border-radius: var(--r-md);
  background: linear-gradient(145deg, var(--green-100), var(--green-200));
  border: 1px solid var(--green-200);
  box-shadow: var(--shadow-sm);
}
.target-badge svg { width: 2rem; height: 2rem; }
.target-badge-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-800);
  text-align: center;
  line-height: 1.2;
}

/* ── Core values ───────────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.value-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
  transform-style: preserve-3d;
  cursor: default;
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-md);
}
.value-icon {
  width: 3rem; height: 3rem;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  background: linear-gradient(145deg, var(--green-50), var(--green-100));
  border: 1px solid var(--green-200);
}
.value-icon svg { width: 1.5rem; height: 1.5rem; }
.value-card:nth-child(even) .value-icon {
  background: linear-gradient(145deg, var(--blue-50), var(--blue-100));
  border-color: var(--blue-100);
}
.value-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.value-card-body {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ── Products ──────────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.product-card {
  position: relative;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-md);
}
.product-card--launch {
  border-color: rgba(74,138,63,0.25);
  background: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(220,239,216,0.45) 100%);
}
.product-card--launch::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(74,138,63,0.3), rgba(43,108,181,0.15));
  z-index: -1;
}
.product-card--dev {
  border-style: dashed;
  border-color: rgba(26,40,24,0.15);
  background: rgba(255,255,255,0.55);
  opacity: 0.85;
}

.product-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.28rem 0.75rem;
  border-radius: 100vw;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  align-self: flex-start;
}
.product-badge--launch {
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: #fff;
  box-shadow: 0 2px 10px rgba(74,138,63,0.35);
}
.product-badge--dev {
  background: var(--warm-100);
  color: var(--text-muted);
  border: 1px solid var(--warm-200);
}

.product-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--green-50), var(--green-100));
  border: 1px solid var(--green-200);
  flex-shrink: 0;
}
.product-icon svg { width: 1.75rem; height: 1.75rem; }
.product-card--dev .product-icon {
  background: linear-gradient(145deg, var(--warm-50), var(--warm-100));
  border-color: var(--warm-200);
  opacity: 0.7;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
.product-card--dev .product-name { color: var(--text-soft); }

.product-pharmacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: auto;
  display: flex; align-items: center; gap: 0.35rem;
}
.product-pharmacy::before {
  content: '';
  display: block;
  width: 0.9rem; height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  flex-shrink: 0;
}

/* ── About ─────────────────────────────────────────────────────────────── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-text .section-title { text-align: left; }
.about-body {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.about-pharmacist {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.65;
  padding-left: 1rem;
  border-left: 2px solid var(--green-400);
}

.about-visual {
  display: flex; flex-direction: column; gap: 1rem;
}
.about-stat {
  padding: 1.4rem 1.75rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease);
}
.about-stat:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.about-stat-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.about-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.about-stat:nth-child(2) { border-color: rgba(74,138,63,0.2); }
.about-stat:nth-child(3) { border-color: rgba(43,108,181,0.2); }

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: rgba(250,249,245,0.95);
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .brand-name {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 28ch;
}
.footer-links {
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem;
}
.footer-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green-600); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 60ch;
}
.footer-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 60ch;
  margin-top: 0.4rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-shrink: 0;
  align-self: flex-end;
}

/* Footer lang switcher */
.footer-lang {
  margin-top: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-lang .lang-btn.active {
  background: var(--green-800);
}

/* ── Privacy page ──────────────────────────────────────────────────────── */
.privacy-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.privacy-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s, gap 0.2s;
}
.privacy-back:hover { color: var(--green-600); gap: 0.6rem; }
.privacy-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.privacy-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.privacy-content {
  max-width: 72ch;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.privacy-intro {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--green-50);
  border-left: 3px solid var(--green-600);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.privacy-section { margin-bottom: 2.25rem; }
.privacy-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.privacy-section p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-section .container {
    grid-template-columns: 1fr;
  }
  .hero-visual { aspect-ratio: 16 / 9; max-height: 340px; }
  .brand-grid  { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .target-block { grid-template-columns: 1fr; }
  .target-badge { display: none; }
}

@media (max-width: 680px) {
  :root { --nav-h: 3.75rem; }

  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(250,249,245,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.3s var(--ease);
    pointer-events: none;
    opacity: 0;
  }
  .nav-menu.open {
    max-height: 28rem;
    pointer-events: auto;
    opacity: 1;
  }
  .nav-menu a { padding: 0.75rem 1rem; border-radius: var(--r-sm); }
  .nav-menu a::after { display: none; }
  .nav-lang {
    margin-left: 0;
    padding: 0.5rem 0.25rem 0.25rem;
    border-top: 1px solid var(--border);
    margin-top: 0.25rem;
  }

  .values-grid   { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }

  .footer-main   { grid-template-columns: 1fr; }
  .footer-links  { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 440px) {
  .hero-title { font-size: 1.85rem; }
  .section-title { font-size: 1.5rem; }
}
