/* ===========================================================
   Foodprov — fresh food provisions
   Design system / global styles (BEM)
   =========================================================== */

:root {
  --color-green: #3fa34d;
  --color-green-dark: #2d7a37;
  --color-green-light: #eaf6ec;
  --color-leaf: #6cc070;
  --color-cream: #faf9f4;
  --color-white: #ffffff;
  --color-ink: #1f2a23;
  --color-text: #41514a;
  --color-muted: #7c8a82;
  --color-border: #e2e8e3;
  --color-accent: #f4a52d;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(31, 42, 35, 0.06);
  --shadow-md: 0 10px 30px rgba(31, 42, 35, 0.10);
  --shadow-lg: 0 20px 50px rgba(31, 42, 35, 0.14);

  --font-head: "Georgia", "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1180px;
  --header-h: 78px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  font-size: 17px;
}

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

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

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

p { margin: 0 0 1em; }

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

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: 76px 0; }
.section--tint { background: var(--color-cream); }
.section--green { background: var(--color-green-light); }

.section__head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-green-dark);
  font-family: var(--font-body);
  margin-bottom: 10px;
}
.section__title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.section__text { color: var(--color-muted); font-size: 1.05rem; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-green-dark);
  color: #fff;
  padding: 12px 18px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary {
  background: var(--color-green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(63, 163, 77, .35);
}
.btn--primary:hover { background: var(--color-green-dark); box-shadow: 0 12px 26px rgba(63, 163, 77, .45); }
.btn--ghost {
  background: transparent;
  color: var(--color-green-dark);
  border-color: var(--color-green);
}
.btn--ghost:hover { background: var(--color-green); color: #fff; }
.btn--white {
  background: #fff;
  color: var(--color-green-dark);
}
.btn--white:hover { background: var(--color-cream); }

/* ===========================================================
   Header
   =========================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-ink);
}
.header__brand:hover { text-decoration: none; }
.header__logo {
  width: 38px;
  height: 38px;
  background: var(--color-green);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.header__brand-accent { color: var(--color-green); }

.nav__list {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav__link {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--color-text);
  font-weight: 600;
  font-size: .98rem;
  transition: background .2s ease, color .2s ease;
}
.nav__link:hover { background: var(--color-green-light); color: var(--color-green-dark); text-decoration: none; }
.nav__link--active { color: var(--color-green-dark); background: var(--color-green-light); }
.nav__link--cta {
  background: var(--color-green);
  color: #fff;
  margin-left: 8px;
}
.nav__link--cta:hover { background: var(--color-green-dark); color: #fff; }

.header__burger {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}
.burger__box { display: block; position: relative; width: 26px; height: 18px; margin: 0 auto; }
.burger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.6px;
  background: var(--color-ink);
  border-radius: 3px;
  transition: transform .3s ease, opacity .25s ease, top .3s ease;
}
.burger__line:nth-child(1) { top: 0; }
.burger__line:nth-child(2) { top: 8px; }
.burger__line:nth-child(3) { top: 16px; }
.header__burger.is-active .burger__line:nth-child(1) { top: 8px; transform: rotate(45deg); }
.header__burger.is-active .burger__line:nth-child(2) { opacity: 0; }
.header__burger.is-active .burger__line:nth-child(3) { top: 8px; transform: rotate(-45deg); }

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--color-green-light) 0%, var(--color-cream) 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 84px 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--color-green-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  margin-bottom: 18px;
}
.hero__title em { color: var(--color-green); font-style: normal; }
.hero__text {
  font-size: 1.15rem;
  color: var(--color-text);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero__stat-num { font-family: var(--font-head); font-size: 1.7rem; color: var(--color-green-dark); font-weight: 700; }
.hero__stat-label { font-size: .85rem; color: var(--color-muted); }

.hero__media { position: relative; }
.hero__img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__chip {
  position: absolute;
  bottom: 24px;
  left: -22px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}
.hero__chip-icon {
  width: 40px; height: 40px;
  background: var(--color-green-light);
  color: var(--color-green-dark);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.hero__chip-title { font-weight: 700; color: var(--color-ink); font-size: .95rem; }
.hero__chip-sub { font-size: .8rem; color: var(--color-muted); }

/* ===========================================================
   Categories grid
   =========================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.category {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  background: #fff;
}
.category:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); text-decoration: none; }
.category__img { width: 100%; height: 210px; object-fit: cover; transition: transform .5s ease; }
.category:hover .category__img { transform: scale(1.06); }
.category__body { padding: 18px 20px 22px; }
.category__name { font-size: 1.25rem; margin-bottom: 4px; }
.category__desc { color: var(--color-muted); font-size: .92rem; margin: 0; }
.category__link { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--color-green-dark); }

/* ===========================================================
   How it works
   =========================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  text-align: center;
  position: relative;
}
.step__num {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  background: var(--color-green);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(63,163,77,.35);
}
.step__title { font-size: 1.2rem; }
.step__text { color: var(--color-muted); font-size: .95rem; margin: 0; }

/* ===========================================================
   Quality / features
   =========================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.split__img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: 440px; object-fit: cover; }
.feature-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 18px; }
.feature-list__item { display: flex; gap: 14px; align-items: flex-start; }
.feature-list__icon {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  background: var(--color-green-light);
  color: var(--color-green-dark);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.15rem;
}
.feature-list__title { font-weight: 700; color: var(--color-ink); margin: 0 0 2px; font-family: var(--font-head); }
.feature-list__text { margin: 0; color: var(--color-muted); font-size: .95rem; }

/* ===========================================================
   Reviews
   =========================================================== */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.review {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.review__stars { color: var(--color-accent); letter-spacing: 2px; margin-bottom: 10px; }
.review__text { font-style: italic; color: var(--color-text); }
.review__author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.review__name { font-weight: 700; color: var(--color-ink); font-size: .95rem; }
.review__role { font-size: .82rem; color: var(--color-muted); }

/* ===========================================================
   Products
   =========================================================== */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.toolbar__btn {
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  transition: all .2s ease;
}
.toolbar__btn:hover { border-color: var(--color-green); color: var(--color-green-dark); }
.toolbar__btn.is-active { background: var(--color-green); color: #fff; border-color: var(--color-green); }

.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 26px; }
.product {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product__media { position: relative; }
.product__img { width: 100%; height: 200px; object-fit: cover; }
.product__tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--color-green); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .05em;
}
.product__body { padding: 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product__name { font-size: 1.15rem; margin-bottom: 4px; }
.product__desc { color: var(--color-muted); font-size: .88rem; margin: 0 0 14px; flex: 1; }
.product__foot { display: flex; align-items: center; justify-content: space-between; }
.product__price { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--color-green-dark); }
.product__unit { font-size: .78rem; color: var(--color-muted); font-weight: 400; }
.product__add {
  border: none;
  background: var(--color-green-light);
  color: var(--color-green-dark);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.product__add:hover { background: var(--color-green); color: #fff; }

/* ===========================================================
   About / story
   =========================================================== */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.value {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  text-align: center;
}
.value__icon { font-size: 2rem; margin-bottom: 10px; }
.value__title { font-size: 1.15rem; }
.value__text { color: var(--color-muted); font-size: .92rem; margin: 0; }

.page-hero {
  background: linear-gradient(120deg, var(--color-green-light) 0%, var(--color-cream) 100%);
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero__title { font-size: clamp(2rem, 4.4vw, 3rem); }
.page-hero__text { max-width: 640px; margin: 0 auto; color: var(--color-text); font-size: 1.1rem; }
.breadcrumb { font-size: .85rem; color: var(--color-muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--color-green-dark); }

/* ===========================================================
   Contact
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 22px; }
.info-list__item { display: flex; gap: 16px; align-items: flex-start; }
.info-list__icon {
  width: 46px; height: 46px;
  background: var(--color-green-light);
  color: var(--color-green-dark);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.2rem; flex: 0 0 auto;
}
.info-list__label { font-weight: 700; color: var(--color-ink); font-family: var(--font-head); margin: 0; }
.info-list__value { margin: 0; color: var(--color-muted); font-size: .95rem; }

.form { display: grid; gap: 18px; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 30px; box-shadow: var(--shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-weight: 600; font-size: .9rem; color: var(--color-ink); }
.form__input, .form__textarea, .form__select {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: inherit;
  font-size: .95rem;
  background: var(--color-cream);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(63,163,77,.18);
  outline: none;
  background: #fff;
}
.form__textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: .82rem; color: var(--color-muted); margin: 0; }
.form__success {
  display: none;
  background: var(--color-green-light);
  border: 1px solid var(--color-leaf);
  color: var(--color-green-dark);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.form__success.is-visible { display: block; }

.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--radius-md); margin-top: 40px; }

/* ===========================================================
   Legal / prose
   =========================================================== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 2em; font-size: 1.5rem; }
.prose h3 { margin-top: 1.4em; font-size: 1.18rem; }
.prose p, .prose li { color: var(--color-text); }
.prose__updated { color: var(--color-muted); font-size: .9rem; margin-bottom: 2em; }

/* ===========================================================
   CTA band
   =========================================================== */
.cta {
  background: linear-gradient(120deg, var(--color-green) 0%, var(--color-green-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta__title { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.cta__text { color: rgba(255,255,255,.9); max-width: 540px; margin: 0 auto 26px; }

/* ===========================================================
   Footer
   =========================================================== */
.footer {
  background: var(--color-ink);
  color: #c7d3cb;
  padding: 64px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 1.3rem; color: #fff; font-weight: 700;
  margin-bottom: 14px;
}
.footer__brand:hover { text-decoration: none; }
.footer__about { font-size: .92rem; color: #9fb0a5; max-width: 300px; }
.footer__title { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-body); margin-bottom: 16px; }
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__list a { color: #c7d3cb; font-size: .92rem; }
.footer__list a:hover { color: #fff; }
.footer__contact { font-size: .92rem; color: #9fb0a5; }
.footer__contact a { color: #c7d3cb; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: #9fb0a5;
}
.footer__bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__bottom-links a { color: #9fb0a5; }
.footer__bottom-links a:hover { color: #fff; }

/* ===========================================================
   Cookie banner
   =========================================================== */
.cookie {
  position: fixed;
  left: 18px; right: 18px; bottom: 18px;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 22px 26px;
  z-index: 500;
  display: none;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.cookie.is-visible { display: block; }
.cookie.is-shown { transform: translateY(0); opacity: 1; }
.cookie__inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.cookie__title { font-size: 1.1rem; margin-bottom: 4px; }
.cookie__text { margin: 0; font-size: .92rem; color: var(--color-muted); max-width: 640px; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__btn { padding: 11px 20px; font-size: .92rem; border-radius: 999px; cursor: pointer; font-weight: 700; border: 2px solid transparent; transition: all .2s ease; }
.cookie__btn--accept { background: var(--color-green); color: #fff; }
.cookie__btn--accept:hover { background: var(--color-green-dark); }
.cookie__btn--decline { background: #fff; color: var(--color-text); border-color: var(--color-border); }
.cookie__btn--decline:hover { border-color: var(--color-muted); }
.cookie__btn--settings { background: var(--color-green-light); color: var(--color-green-dark); }
.cookie__btn--settings:hover { background: #d8eedb; }

.cookie__settings { display: none; margin-top: 18px; border-top: 1px solid var(--color-border); padding-top: 18px; }
.cookie__settings.is-open { display: block; }
.cookie__option { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.cookie__option-label { font-weight: 700; color: var(--color-ink); font-size: .92rem; }
.cookie__option-text { font-size: .85rem; color: var(--color-muted); margin: 0; }

/* ===========================================================
   Scroll reveal
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }

/* Hero entrance */
.hero__anim { opacity: 0; transform: translateY(24px); }
.hero.is-loaded .hero__anim { opacity: 1; transform: translateY(0); transition: opacity .8s ease, transform .8s ease; }
.hero.is-loaded .hero__anim--1 { transition-delay: .05s; }
.hero.is-loaded .hero__anim--2 { transition-delay: .18s; }
.hero.is-loaded .hero__anim--3 { transition-delay: .31s; }
.hero.is-loaded .hero__anim--4 { transition-delay: .44s; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 940px) {
  .hero__inner, .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { order: -1; }
  .hero__img { height: 340px; }
  .split__img { height: 320px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .header__burger { display: block; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: #fff;
    transform: translateX(100%);
    transition: transform .35s ease;
    padding: 24px;
    overflow-y: auto;
    z-index: 190;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 6px; }
  .nav__link { padding: 14px 16px; font-size: 1.05rem; border-radius: var(--radius-sm); }
  .nav__link--cta { margin-left: 0; margin-top: 8px; text-align: center; }
  .section { padding: 56px 0; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cookie__inner { flex-direction: column; align-items: flex-start; }
  .cta { padding: 40px 24px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__chip { left: 0; }
  .footer__bottom { flex-direction: column; }
}
