/* ==========================================================================
   Native Batch — Design System
   Heritage / artisanal look drawn from the logo:
   terracotta + green on cream. Serif headings, clean sans body.
   ========================================================================== */

:root {
  /* Brand palette (sampled from logo) */
  --cream:        #F7F2E1;
  --cream-deep:   #EFE7CE;
  --terracotta:   #D24E2A;
  --terracotta-d: #B23E1E;
  --green:        #3F7A32;
  --green-d:      #2F5E25;
  --ink:          #2E2A22;   /* warm near-black */
  --ink-soft:     #5C554739; /* borders / hairlines */
  --muted:        #7A7263;

  --white:        #FFFDF7;

  --radius:       14px;
  --radius-lg:    22px;
  --shadow:       0 8px 30px rgba(46, 42, 34, 0.08);
  --shadow-lg:    0 18px 50px rgba(46, 42, 34, 0.14);

  --maxw:         1180px;
  --font-serif:   "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:    "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.3rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 74px 0; }
.section--tight { padding: 48px 0; }
.center { text-align: center; }
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.lead { color: var(--muted); font-size: 1.08rem; max-width: 620px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px; font-weight: 800; font-size: .95rem;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--terracotta); color: var(--white); }
.btn--primary:hover { background: var(--terracotta-d); box-shadow: var(--shadow); }
.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-d); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--block { width: 100%; }
.btn--sm { padding: 9px 18px; font-size: .85rem; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--green); color: var(--cream);
  text-align: center; font-size: .85rem; font-weight: 700;
  letter-spacing: .03em; padding: 8px 16px;
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247, 242, 225, 0.9);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--ink-soft);
}
.header__row { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 46px; width: auto; }
.nav { display: flex; gap: 30px; }
.nav a { font-weight: 700; font-size: .95rem; position: relative; padding: 4px 0; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--terracotta); transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 14px; }
.cart-btn { position: relative; display: flex; align-items: center; gap: 7px; font-weight: 800; }
.cart-btn svg { width: 24px; height: 24px; }
.cart-count {
  position: absolute; top: -8px; right: -10px; min-width: 20px; height: 20px;
  background: var(--terracotta); color: #fff; border-radius: 100px;
  font-size: .72rem; font-weight: 800; display: grid; place-items: center; padding: 0 5px;
}
.hamburger { display: none; font-size: 1.6rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(210,78,42,.10), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(63,122,50,.12), transparent 55%),
    var(--cream);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 70px 0 84px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--white);
  border: 1px solid var(--ink-soft); border-radius: 100px; padding: 6px 14px;
  font-size: .8rem; font-weight: 800; color: var(--green-d); margin-bottom: 22px;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 em { color: var(--terracotta); font-style: italic; }
.hero p { font-size: 1.15rem; color: var(--muted); max-width: 480px; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__art {
  aspect-ratio: 1/1; border-radius: var(--radius-lg); background: var(--cream-deep);
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-soft); overflow: hidden;
}
.hero__art img { width: 62%; opacity: .96; }
.hero__art--photo img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.hero__stats { display: flex; gap: 34px; margin-top: 34px; }
.hero__stat b { font-family: var(--font-serif); font-size: 1.8rem; color: var(--terracotta); display: block; }
.hero__stat span { font-size: .82rem; color: var(--muted); font-weight: 700; }

/* ---------- Trust strip ---------- */
.trust { background: var(--white); border-top: 1px solid var(--ink-soft); border-bottom: 1px solid var(--ink-soft); }
.trust__row { display: flex; justify-content: space-around; gap: 20px; flex-wrap: wrap; padding: 26px 0; }
.trust__item { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: .95rem; }
.trust__item .ic { width: 40px; height: 40px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; font-size: 1.2rem; }

/* ---------- Products ---------- */
.products__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; margin-top: 40px; }
.pcard {
  background: var(--white); border: 1px solid var(--ink-soft); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pcard__media { aspect-ratio: 4/3; background: var(--cream-deep); position: relative; display: grid; place-items: center; overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.pcard:hover .pcard__media img { transform: scale(1.04); }
.pcard__diet {
  position: absolute; top: 12px; left: 12px; width: 22px; height: 22px; border-radius: 4px;
  border: 2px solid; display: grid; place-items: center; background: #fff;
}
.pcard__diet::after { content: ""; width: 9px; height: 9px; border-radius: 50%; }
.pcard__diet--veg { border-color: var(--green); }
.pcard__diet--veg::after { background: var(--green); }
.pcard__diet--nonveg { border-color: #9a2b1e; }
.pcard__diet--nonveg::after { background: #9a2b1e; }
.pcard__tag {
  position: absolute; top: 12px; right: 12px; background: var(--terracotta); color: #fff;
  font-size: .72rem; font-weight: 800; padding: 4px 10px; border-radius: 100px;
}
.pcard__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pcard__body h3 { font-size: 1.35rem; }
.pcard__tagline { color: var(--muted); font-size: .95rem; }
.pcard__meta { font-size: .8rem; color: var(--muted); font-weight: 700; letter-spacing: .02em; }
.pcard__price { display: flex; align-items: baseline; gap: 10px; margin-top: auto; padding-top: 8px; }
.pcard__price .now { font-family: var(--font-serif); font-size: 1.5rem; color: var(--ink); font-weight: 600; }
.pcard__price .was { color: var(--muted); text-decoration: line-through; font-size: 1rem; }
.pcard__actions { display: flex; gap: 10px; padding: 0 20px 20px; }
.pcard__actions .btn { flex: 1; }

/* ---------- Bundle ---------- */
.bundle {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-d) 100%);
  color: var(--cream); border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
}
.bundle__text { padding: 46px; }
.bundle__text .eyebrow { color: #ffd9a0; }
.bundle__text h2 { color: var(--cream); margin-bottom: 14px; }
.bundle__text p { color: rgba(247,242,225,.82); margin-bottom: 24px; }
.bundle__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.bundle__price .now { font-family: var(--font-serif); font-size: 2.4rem; }
.bundle__price .was { text-decoration: line-through; opacity: .7; }
.bundle__price .save { background: var(--terracotta); padding: 4px 12px; border-radius: 100px; font-size: .8rem; font-weight: 800; }
.bundle__art { align-self: stretch; background: rgba(0,0,0,.12); display: grid; place-items: center; padding: 30px; min-height: 260px; }
.bundle__art img { width: 55%; }

/* ---------- Values ---------- */
.values__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 42px; }
.value { background: var(--white); border: 1px solid var(--ink-soft); border-radius: var(--radius); padding: 30px 26px; text-align: center; }
.value .ic { font-size: 2rem; margin-bottom: 14px; }
.value h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: .95rem; }

/* ---------- How to use ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; margin-top: 42px; counter-reset: step; }
.step { text-align: center; padding: 10px; }
.step__num {
  counter-increment: step; width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--cream-deep); border: 2px solid var(--terracotta); color: var(--terracotta);
  display: grid; place-items: center; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .92rem; }

/* ---------- Testimonials ---------- */
.testi__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 42px; }
.testi {
  background: var(--white); border: 1px solid var(--ink-soft); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
}
.testi__stars { color: var(--terracotta); letter-spacing: 2px; }
.testi__text { font-family: var(--font-serif); font-size: 1.12rem; line-height: 1.5; }
.testi__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--cream-deep); display: grid; place-items: center; font-weight: 800; color: var(--green-d); }
.testi__who b { display: block; font-size: .92rem; }
.testi__who span { font-size: .8rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 42px auto 0; }
.faq__item { border-bottom: 1px solid var(--ink-soft); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 4px; text-align: left; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; }
.faq__q .plus { font-size: 1.6rem; color: var(--terracotta); transition: transform .2s ease; line-height: 1; }
.faq__item.open .plus { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; color: var(--muted); }
.faq__a p { padding: 0 4px 22px; }

/* ---------- Newsletter ---------- */
.news { background: var(--white); border: 1px solid var(--ink-soft); border-radius: var(--radius-lg); padding: 50px; text-align: center; }
.news form { display: flex; gap: 10px; max-width: 460px; margin: 24px auto 0; }
.news input { flex: 1; padding: 13px 18px; border-radius: 100px; border: 1.5px solid var(--ink-soft); font-family: inherit; font-size: .95rem; background: var(--cream); }
.news input:focus { outline: none; border-color: var(--terracotta); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #d9d2c4; padding: 60px 0 26px; margin-top: 10px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.footer__brand img { height: 52px; margin-bottom: 16px; filter: none; background: var(--cream); padding: 8px; border-radius: 10px; }
.footer__brand p { font-size: .92rem; opacity: .8; max-width: 260px; }
.footer h4 { color: var(--cream); font-family: var(--font-sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.footer li { margin-bottom: 10px; }
.footer li a { font-size: .93rem; opacity: .82; }
.footer li a:hover { opacity: 1; color: #fff; }
.footer__fssai {
  display: flex; align-items: center; gap: 12px; margin-top: 18px;
  background: rgba(255,255,255,.06); padding: 12px 14px; border-radius: 10px; max-width: 280px;
}
.footer__fssai .mark { width: 40px; height: 40px; border-radius: 50%; background: var(--cream); color: var(--green-d); display: grid; place-items: center; font-weight: 900; font-size: .62rem; text-align: center; line-height: 1; }
.footer__fssai span { font-size: .78rem; opacity: .85; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; opacity: .7; }

/* ---------- Cart drawer ---------- */
.overlay { position: fixed; inset: 0; background: rgba(46,42,34,.5); opacity: 0; visibility: hidden; transition: .25s; z-index: 90; }
.overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw;
  background: var(--cream); z-index: 100; transform: translateX(100%); transition: transform .28s ease;
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 22px; border-bottom: 1px solid var(--ink-soft); }
.drawer__head h3 { font-size: 1.4rem; }
.drawer__close { font-size: 1.6rem; line-height: 1; color: var(--muted); }
.drawer__items { flex: 1; overflow-y: auto; padding: 12px 22px; }
.drawer__empty { text-align: center; color: var(--muted); padding: 60px 20px; }
.citem { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--ink-soft); }
.citem__img { width: 68px; height: 68px; border-radius: 10px; background: var(--cream-deep); display: grid; place-items: center; flex-shrink: 0; overflow: hidden; }
.citem__img img { width: 100%; height: 100%; object-fit: cover; }
.citem__info { flex: 1; }
.citem__info h4 { font-family: var(--font-sans); font-size: .98rem; font-weight: 800; }
.citem__info .price { color: var(--muted); font-size: .88rem; }
.citem__qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qtybtn { width: 26px; height: 26px; border: 1.5px solid var(--ink-soft); border-radius: 7px; font-weight: 800; display: grid; place-items: center; background: var(--white); }
.citem__remove { color: var(--muted); font-size: .8rem; text-decoration: underline; margin-left: auto; align-self: flex-start; }
.drawer__foot { padding: 22px; border-top: 1px solid var(--ink-soft); background: var(--white); }
.drawer__total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.15rem; margin-bottom: 6px; }
.drawer__note { font-size: .8rem; color: var(--muted); margin-bottom: 16px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(120px);
  background: var(--ink); color: var(--cream); padding: 14px 22px; border-radius: 100px;
  font-weight: 700; font-size: .92rem; z-index: 120; transition: transform .3s ease; box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- Inner page hero ---------- */
.page-hero { background: var(--cream-deep); border-bottom: 1px solid var(--ink-soft); padding: 54px 0; }
.page-hero .eyebrow { margin-bottom: 8px; }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 10px; }
.breadcrumb a:hover { color: var(--terracotta); }

/* ---------- Product detail ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.pdp__gallery { position: sticky; top: 100px; }
.pdp__main { aspect-ratio: 1/1; background: var(--cream-deep); border-radius: var(--radius-lg); display: grid; place-items: center; border: 1px solid var(--ink-soft); overflow: hidden; }
.pdp__main img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pdp__thumb { width: 84px; height: 84px; border-radius: 12px; overflow: hidden; border: 2px solid var(--ink-soft); background: var(--cream-deep); padding: 0; transition: border-color .15s ease; }
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumb.active { border-color: var(--terracotta); }
.pdp h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 6px 0 10px; }
.pdp__tagline { color: var(--muted); font-size: 1.1rem; margin-bottom: 20px; }
.pdp__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.pdp__price .now { font-family: var(--font-serif); font-size: 2rem; }
.pdp__price .was { text-decoration: line-through; color: var(--muted); }
.pdp__price .save { background: var(--green); color: #fff; padding: 3px 12px; border-radius: 100px; font-size: .78rem; font-weight: 800; }
.pdp__desc { color: var(--ink); margin-bottom: 22px; }
.pdp__buy { display: flex; gap: 12px; align-items: center; margin-bottom: 28px; }
.qtybox { display: flex; align-items: center; gap: 14px; border: 1.5px solid var(--ink-soft); border-radius: 100px; padding: 6px 14px; }
.qtybox button { font-size: 1.2rem; font-weight: 800; color: var(--terracotta); }
.pdp__diet { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: .9rem; margin-bottom: 20px; }

/* FSSAI info block */
.fssai-block { background: var(--white); border: 1px solid var(--ink-soft); border-radius: var(--radius); padding: 26px; margin-top: 30px; }
.fssai-block h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 1.25rem; }
.info-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.info-table th, .info-table td { text-align: left; padding: 10px 4px; border-bottom: 1px solid var(--ink-soft); vertical-align: top; }
.info-table th { color: var(--muted); font-weight: 700; width: 42%; }
.nutri-table { width: 100%; border-collapse: collapse; font-size: .92rem; margin-top: 8px; }
.nutri-table th, .nutri-table td { padding: 9px 6px; border-bottom: 1px solid var(--ink-soft); text-align: left; }
.nutri-table thead th { background: var(--cream); font-weight: 800; }
.nutri-table td:last-child, .nutri-table th:last-child { text-align: right; }
.allergen { background: #fbeee6; border: 1px solid #eccbb9; color: #8a3b1e; border-radius: 10px; padding: 12px 16px; margin-top: 16px; font-size: .9rem; font-weight: 700; }

/* ---------- Checkout ---------- */
.checkout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 46px; align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.field input, .field select, .field textarea {
  padding: 12px 15px; border: 1.5px solid var(--ink-soft); border-radius: 10px; font-family: inherit;
  font-size: .96rem; background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--terracotta); }
.summary { background: var(--white); border: 1px solid var(--ink-soft); border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 100px; }
.summary h3 { margin-bottom: 18px; }
.summary__line { display: flex; justify-content: space-between; padding: 8px 0; font-size: .95rem; }
.summary__line.total { border-top: 1px solid var(--ink-soft); margin-top: 8px; padding-top: 16px; font-weight: 800; font-size: 1.2rem; }
.summary__item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--ink-soft); }
.summary__item .th { width: 52px; height: 52px; border-radius: 8px; background: var(--cream-deep); display: grid; place-items: center; overflow: hidden; }
.summary__item .th img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Legal / policy pages ---------- */
.legal { max-width: 800px; margin: 0 auto; }
.legal h2 { font-size: 1.5rem; margin: 34px 0 12px; }
.legal p, .legal li { color: var(--ink); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal .updated { color: var(--muted); font-size: .9rem; }
.placeholder-note {
  background: #fff7e6; border: 1px dashed #d9b24e; color: #7a5a12; border-radius: 10px;
  padding: 12px 16px; font-size: .88rem; margin: 18px 0; font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 420px; }
  .bundle { grid-template-columns: 1fr; }
  .bundle__art { min-height: 200px; }
  .pdp { grid-template-columns: 1fr; }
  .pdp__gallery { position: static; }
  .checkout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav { display: none; }
  .hamburger { display: block; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0;
    background: var(--cream); padding: 20px 22px; gap: 16px; border-bottom: 1px solid var(--ink-soft);
  }
  .section { padding: 52px 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .news { padding: 32px 22px; }
  .news form { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
}
