/* ============================================================
   ECOSPHERA EUROPE — landing styles
   Brand palette: #0B4129 deep green · #4CBE4F fresh green
   #A0CC4F light green · #F1F8EF off-white · #5D3D3A brown
   ============================================================ */

:root {
  --green-900: #0b4129;
  --green-800: #0f5233;
  --green-700: #28883a;
  --green-500: #4cbe4f;
  --green-300: #a0cc4f;
  --green-100: #e1f2df;
  --bg-tint: #f1f8ef;
  --bg-white: #ffffff;
  --brown: #5d3d3a;
  --ink: #16402a;
  --ink-soft: #3a5a48;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 2px 10px rgba(11, 65, 41, .07);
  --shadow-md: 0 14px 40px rgba(11, 65, 41, .12);
  --shadow-lg: 0 30px 70px rgba(11, 65, 41, .18);
  --font-head: 'Nunito', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg-white);
  overflow-x: hidden;
}

/* subtle paper grain over the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='140' height='140' filter='url(%23n)' opacity='0.6'/></svg>");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }

/* ---------- typography ---------- */
.title {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--green-900);
}
.title--light { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  border-radius: 3px;
  background: var(--green-500);
}
.eyebrow--light { color: var(--green-300); }

.lead { font-size: 19.5px; color: var(--ink-soft); margin-top: 18px; max-width: 56ch; }
.lead--light { color: #cfe4d4; }
.lead strong { color: var(--ink); }

.text-green { color: var(--green-500); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .25s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: var(--green-500);
  color: #fff;
  box-shadow: 0 14px 32px rgba(76, 190, 79, .42);
}
.btn--primary:hover { background: #45b149; transform: translateY(-2px); box-shadow: 0 18px 38px rgba(76, 190, 79, .5); }
.btn--ghost {
  border-color: rgba(11, 65, 41, .25);
  color: var(--green-900);
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--green-500); color: var(--green-700); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--green-900); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--small { padding: 11px 20px; font-size: 14px; }
.btn--big { padding: 20px 36px; font-size: 17px; }

/* ---------- header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  height: 64px;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: inline-flex; align-items: center; }
.logo-svg { height: 40px; width: auto; display: block; }
.logo-svg text { user-select: none; }

.nav { display: flex; gap: 6px; }
.nav__sites { display: none; }
.nav__link {
  position: relative;
  padding: 10px 14px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-soft);
  border-radius: 10px;
  transition: color .2s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__link:hover { color: var(--green-900); }
.nav__link:hover::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 18px; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  border: none;
  border-radius: 12px;
  background: var(--green-900);
  cursor: pointer;
}
.burger span { display: block; height: 2.4px; border-radius: 2px; background: #fff; transition: transform .3s ease, opacity .3s ease; }
.burger.is-open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-h) + 30px);
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(160, 204, 79, .28), transparent 62%),
    radial-gradient(900px 600px at -12% 112%, rgba(76, 190, 79, .20), transparent 60%),
    linear-gradient(180deg, #f6fbf2 0%, var(--bg-tint) 100%);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.hero__blob--1 { width: 480px; height: 480px; right: -140px; top: -120px; background: #d7ecae; }
.hero__blob--2 { width: 380px; height: 380px; left: -160px; bottom: 4%; background: #cdeccf; }
.hero__leaf {
  position: absolute;
  width: 26px; height: 26px;
  background: var(--green-300);
  border-radius: 0 60% 0 60%;
  opacity: .55;
  animation: leafFloat 9s ease-in-out infinite;
}
.hero__leaf--1 { left: 6%; top: 24%; }
.hero__leaf--2 { right: 10%; bottom: 30%; width: 18px; height: 18px; animation-delay: -4s; }
@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(12deg); }
  50% { transform: translateY(-22px) rotate(28deg); }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
  padding-bottom: 90px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--green-100);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--green-800);
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px rgba(76, 190, 79, .18); }

.hero__title {
  margin-top: 22px;
  font-family: var(--font-head);
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--green-900);
}
.hero__subtitle { margin-top: 20px; font-size: 18.5px; color: var(--ink-soft); max-width: 52ch; }
.hero__subtitle strong { color: var(--ink); }

.scribble { position: relative; display: inline-block; white-space: nowrap; }
.scribble__line {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -.12em;
  width: 104%;
  height: .18em;
  color: var(--green-500);
  opacity: .85;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* hero visual */
.hero__visual { position: relative; height: 540px; }
.hero__gallery { position: absolute; inset: 0; will-change: transform; }
.hero__disc {
  position: absolute;
  inset: 4% 4% 14% 10%;
  background-color: #ffd94d;
  border-radius: 44% 56% 52% 48% / 52% 45% 55% 48%;
  box-shadow: var(--shadow-lg), inset 0 -18px 40px rgba(0, 0, 0, .12);
  transition: background-color .8s ease;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  left: 50%; top: 47%;
  max-width: 84%;
  max-height: 76%;
  object-fit: contain;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.92) translateY(14px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22, .8, .3, 1);
  filter: drop-shadow(0 26px 30px rgba(93, 61, 12, .28));
}
.hero__slide.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) translateY(0);
}
.hero__caption {
  position: absolute;
  left: 0; right: 0; bottom: 2%;
  text-align: center;
  transition: opacity .3s ease, transform .3s ease;
}
.hero__caption.is-fading { opacity: 0; transform: translateY(6px); }
.hero__caption-title {
  display: block;
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 800;
  color: var(--green-900);
}
.hero__caption-sub {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero__dots {
  position: absolute;
  left: 0; right: 0; bottom: -34px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero__dot {
  width: 9px; height: 9px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(11, 65, 41, .22);
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
}
.hero__dot.is-active { width: 26px; background: var(--green-500); }

/* tilted sticker badges — signature of the Ecosphere design language */
.sticker {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  box-shadow: 0 10px 24px rgba(11, 65, 41, .25);
  white-space: nowrap;
}
.sticker--teal { background: #17a29a; }
.sticker--pink { background: #e5497e; }
.sticker--orange { background: #f5852f; }
.sticker--green { background: var(--green-500); }
.hero__sticker--1 { left: -4%; top: 12%; transform: rotate(-6deg); }
.hero__sticker--2 { right: -2%; bottom: 16%; transform: rotate(5deg); }

/* marquee */
.marquee {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--green-900);
  padding: 15px 0;
  overflow: hidden;
  transform: rotate(-.4deg) scale(1.01);
}
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee__track span {
  margin-right: 34px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #d9ecd9;
  white-space: nowrap;
}
.marquee__track i {
  width: 7px; height: 7px;
  flex: none;
  margin-right: 34px;
  border-radius: 50%;
  background: var(--green-500);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: 104px 0; }
.section--tint { background: var(--bg-tint); }
.section--dark { background: var(--green-900); }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  position: relative;
}
.section__head--center { flex-direction: column; align-items: center; text-align: center; }
.section__note { max-width: 38ch; color: var(--ink-soft); font-size: 16.5px; padding-bottom: 4px; }
.section__note--center { max-width: 60ch; }

/* ---------- about ---------- */
.about__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}
.about__media { position: relative; }
.about__img {
  width: 100%;
  aspect-ratio: .94;
  object-fit: cover;
  border-radius: 14px;
  border: 10px solid #fff;
  transform: rotate(-1.6deg);
  box-shadow: var(--shadow-md), 0 2px 0 rgba(11, 65, 41, .05);
}
.about__media::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  width: 130px; height: 130px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 30%, var(--green-300) 0 6px, transparent 7px) 0 0/26px 26px,
    var(--green-100);
  z-index: -1;
}
.about__badge {
  position: absolute;
  right: -18px; bottom: 30px;
  width: 150px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transform: rotate(3deg);
  text-align: center;
}
.about__badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: var(--green-700);
}
.about__badge span {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink-soft);
}

.mission {
  position: relative;
  margin-top: 26px;
  padding: 24px 28px 24px 32px;
  background: var(--bg-tint);
  border-left: 4px solid var(--green-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--green-900);
}
.mission__label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-500);
}

.about__points { display: grid; gap: 13px; margin-top: 28px; }
.point { display: flex; align-items: center; gap: 13px; font-weight: 700; color: var(--ink); }
.point svg {
  width: 26px; height: 26px;
  flex: none;
  padding: 4px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
}

/* ---------- products ---------- */
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.product-card {
  display: flex;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card__media { flex: 0 0 42%; overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__body { padding: 26px 26px 26px 28px; }
.product-card__body h3 {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 800;
  color: var(--green-900);
  margin-bottom: 9px;
}
.product-card__body p { font-size: 15px; color: var(--ink-soft); }
.product-card__brands { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.product-card__brands img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: var(--bg-tint);
  border-radius: 50%;
  padding: 5px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease;
}
.product-card__brands img:hover { transform: translateY(-3px); }
.product-card__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip--iso {
  background: var(--green-900);
  border-color: var(--green-900);
  color: #d9ecd9;
}

/* ---------- brands ---------- */
.brands__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.brand-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 28px 28px;
  background: var(--bg-tint);
  border: 1.5px solid transparent;
  border-radius: var(--radius-lg);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
.brand-card:hover {
  transform: translateY(-8px);
  background: #fff;
  border-color: var(--green-100);
  box-shadow: var(--shadow-md);
}
.brand-card__logo { height: 76px; width: auto; object-fit: contain; margin-bottom: 22px; }
.brand-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--green-900);
  margin-bottom: 8px;
}
.brand-card p { font-size: 15px; color: var(--ink-soft); flex: 1; }
.brand-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-700);
}
.brand-card__link svg { width: 16px; height: 16px; transition: transform .25s ease; }
.brand-card:hover .brand-card__link svg { transform: translate(3px, -3px); }

/* ---------- production ---------- */
.production { position: relative; overflow: hidden; }
.production::before {
  content: "";
  position: absolute;
  right: -180px; top: -180px;
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 90px solid rgba(160, 204, 79, .10);
  pointer-events: none;
}
.production__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.advantages { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 30px; margin-top: 40px; }
.advantage { display: flex; gap: 16px; align-items: flex-start; }
.advantage__icon { width: 46px; height: 46px; flex: none; object-fit: contain; }
.advantage h3 { font-family: var(--font-head); font-size: 15.5px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.advantage p { font-size: 14px; color: #a9c9b1; }

.production__media { position: relative; }
.production__media > img:first-child {
  width: 100%;
  aspect-ratio: .98;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.production__media-small {
  position: absolute;
  left: -34px; bottom: -30px;
  width: 46%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border: 6px solid var(--green-900);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.production__sticker { right: -14px; bottom: 26px; transform: rotate(-5deg); }

/* ---------- company ---------- */
.company__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.company__card {
  padding: 34px 32px;
  background: #fff;
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.company__card--accent {
  background: linear-gradient(160deg, var(--green-800), var(--green-900) 70%);
  border: none;
  color: #dcebde;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.company__card--accent p { font-size: 15.5px; }
.company__card--accent .btn { margin-top: auto; align-self: flex-start; }
.company__card-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 20px;
}
.company__card--accent .company__card-title { color: var(--green-300); }

.facts { list-style: none; display: grid; gap: 14px; }
.facts li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 13px;
  border-bottom: 1.5px dashed rgba(11, 65, 41, .14);
  font-size: 14.5px;
}
.facts li:last-child { border-bottom: none; padding-bottom: 0; }
.facts span { color: var(--ink-soft); flex: none; }
.facts strong { font-weight: 800; color: var(--green-900); text-align: right; }
.facts a { color: var(--green-700); text-decoration: underline; text-underline-offset: 3px; }
.facts a:hover { color: var(--green-500); }

.company__codes { margin-top: 26px; }
.company__codes h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  padding: 7px 14px;
  background: var(--bg-tint);
  border: 1.5px solid var(--green-100);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green-800);
}

/* ---------- websites ---------- */
.site-card {
  position: relative;
  display: block;
  padding: 40px 38px 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.site-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.site-card--official {
  background: linear-gradient(150deg, var(--green-800), var(--green-900) 75%);
  color: #fff;
}
.site-card--official::after {
  content: "";
  position: absolute;
  right: -70px; top: -70px;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 46px solid rgba(160, 204, 79, .16);
  pointer-events: none;
}
.site-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.site-card__lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .14);
  color: var(--green-300);
}
.site-card__lang svg { width: 26px; height: 26px; }
.site-card__arrow { width: 26px; height: 26px; transition: transform .3s ease; }
.site-card:hover .site-card__arrow { transform: translate(5px, -5px); }
.site-card h3 { font-family: var(--font-head); font-size: 26px; font-weight: 800; margin-bottom: 10px; }
.site-card p { font-size: 15.5px; opacity: .88; max-width: 46ch; }
.site-card__url {
  display: inline-block;
  margin-top: 26px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .04em;
}

/* ---------- footer ---------- */
.footer {
  background: var(--green-900);
  color: #cfe4d4;
  padding: 90px 0 0;
}
.footer__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  padding-bottom: 60px;
  border-bottom: 1.5px solid rgba(255, 255, 255, .14);
}
.footer__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
}
.footer__subtitle { margin-top: 12px; font-size: 16.5px; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding: 58px 0;
}
.footer__col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 16px;
}
.footer__col a, .footer__col p { display: block; font-size: 15px; color: #b8d6bf; margin-bottom: 10px; transition: color .2s ease; }
.footer__col a:hover { color: #fff; }
.footer__about { margin-top: 16px; font-size: 14.5px; max-width: 34ch; }
.footer__col a.logo--footer { display: inline-flex; }

.footer__legal {
  padding: 22px 0;
  border-top: 1.5px solid rgba(255, 255, 255, .14);
  font-size: 13.5px;
  color: #8fb59a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__credit {
  font-size: 12.5px;
  color: #6f977d;
  transition: color .2s ease;
}
.footer__credit:hover { color: #cfe4d4; }
@media (max-width: 620px) {
  .footer__legal { justify-content: center; text-align: center; }
}

/* ---------- reveal animations ---------- */
/* elements are hidden only when JS is available to reveal them again */
html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22, .8, .3, 1);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 30px; padding-bottom: 70px; }
  .hero__visual { height: 460px; max-width: 560px; width: 100%; margin-inline: auto; order: -1; }
  .products__grid, .brands__grid { grid-template-columns: repeat(2, 1fr); }
  .products__grid { grid-template-columns: 1fr; }
  .about__grid, .production__grid { grid-template-columns: 1fr; gap: 60px; }
  .about__media { max-width: 560px; margin-inline: auto; }
  .production__media { max-width: 620px; margin-inline: auto; }
  .company__grid { grid-template-columns: 1fr 1fr; }
  .company__card--accent { grid-column: 1 / -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .section__head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 44px; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(11, 65, 41, .97);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .nav.is-open { opacity: 1; pointer-events: auto; }
  .nav__link { font-size: 22px; color: #dcebde; padding: 12px 20px; }
  .nav__link:hover { color: #fff; }
  .nav__sites {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1.5px solid rgba(255, 255, 255, .18);
  }
  .nav__sites a {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--green-300);
  }
  .nav__sites a:hover { color: #fff; }
  .burger { display: flex; }
  .header.is-menu-open .logo-svg .wm-brown { fill: #FFFFFF; }
  .header.is-menu-open .logo-svg .wm-sub { fill: #9ECA50; }
  .header.is-menu-open .burger { background: rgba(255, 255, 255, .16); }
  .header__cta { display: none; }
  .header__actions { margin-left: auto; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 74px 0; }
  .hero { min-height: auto; }
  .hero__visual { height: 380px; }
  .products__grid, .brands__grid, .company__grid { grid-template-columns: 1fr; }
  .product-card { flex-direction: column; }
  .product-card__media { flex: none; aspect-ratio: 1.7; }
  .advantages { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .production__media-small { left: -10px; bottom: -22px; }
  .about__badge { right: -8px; width: 120px; }
  .btn { padding: 14px 22px; font-size: 14px; }
  .btn--big { padding: 16px 26px; font-size: 15px; }
  .marquee__track span { font-size: 13px; }
}

@media (max-width: 480px) {
  .header__inner { gap: 12px; }
  .logo-svg { height: 34px; }
  .burger { width: 40px; height: 40px; }
}
