/* Elmar Spices — site styles. One file, no build step. */
:root {
  --bg: #f5f5ef;
  --bg-2: #ebece3;
  --surface: #fbfbf7;
  --ink: #171a16;
  --ink-2: #3b403a;
  --muted: #6f756c;
  --line: #dcded3;
  --green: #2f4a2a;
  --green-2: #1d2f1f;
  --dark: #151d17;
  --accent: #2f5a2d;      /* logo green */
  --accent-2: #21451f;
  --accent-soft: #e2ecda;
  --leaf: #8dc63f;        /* logo leaf, highlights on dark */
  --r: 18px;
  --r-sm: 10px;
  --shadow: 0 24px 48px -28px rgba(25, 24, 20, .45);
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.08; letter-spacing: -.02em; margin: 0 0 .5em; text-wrap: balance; font-variation-settings: "SOFT" 40, "opsz" 144; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 12px; border-radius: 6px; z-index: 100; }
.skip:focus { left: 8px; }

/* Type helpers */
.eyebrow { font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; }
.eyebrow.light { color: var(--leaf); }
.lead { font-size: 1.2rem; line-height: 1.6; color: var(--ink-2); }
.muted { color: var(--muted); }
.link { font-weight: 600; text-decoration: none; color: var(--accent-2); }
.link:hover { text-decoration: underline; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font: 600 .95rem/1 var(--body); text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); }
.hero .btn-primary, .cta .btn-primary, .dark .btn-primary { background: var(--bg); color: var(--ink); }
.hero .btn-primary:hover, .cta .btn-primary:hover, .dark .btn-primary:hover { background: #fff; }
.btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); }
.btn-outline { color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-sm { padding: 10px 18px; font-size: .88rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 245, 239, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(25, 24, 20, .08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand img { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { text-decoration: none; font-weight: 500; font-size: .95rem; color: var(--ink-2); }
.nav a:hover { color: var(--ink); }
.nav a.btn { color: #fff; }
body[data-page="products"] .nav a[data-nav="products"],
body[data-page="quality"] .nav a[data-nav="quality"],
body[data-page="about"] .nav a[data-nav="about"],
body[data-page="news"] .nav a[data-nav="news"],
body[data-page="contact"] .nav a[data-nav="contact"] { color: var(--accent-2); }
.nav-toggle { display: none; }

/* Hero */
.hero { position: relative; min-height: min(84vh, 860px); display: grid; align-content: end; color: #fff; padding-top: 140px; isolation: isolate; }
.hero-bg, .page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(21, 29, 23, .30) 0%, rgba(21, 29, 23, .45) 50%, rgba(21, 29, 23, .94) 100%); }
.hero-content { max-width: 840px; padding-bottom: 56px; }
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero .lead { color: rgba(255, 255, 255, .84); max-width: 640px; margin-bottom: 32px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; border-top: 1px solid rgba(255, 255, 255, .2); padding: 28px 0 40px; }
.hero-stats strong { display: block; font: 400 2.2rem/1 var(--display); color: #fff; margin-bottom: 6px; }
.hero-stats span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .65); }

/* Page hero (inner pages) */
.page-hero { position: relative; min-height: 440px; display: grid; align-content: end; color: #fff; padding: 120px 0 56px; isolation: isolate; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); max-width: 800px; }
.page-hero .lead { color: rgba(255, 255, 255, .84); max-width: 640px; }
.crumbs { font-size: .82rem; color: var(--muted); margin: 0 0 18px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.page-hero .crumbs { color: rgba(255, 255, 255, .7); }

/* Trust bar */
.trust { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0; flex-wrap: wrap; }
.trust p { margin: 0; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.badges li { border: 1px solid var(--ink); border-radius: 999px; padding: 7px 14px; font-size: .85rem; font-weight: 600; }

/* Sections */
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section.tight { padding-top: 40px; }
.cream-2 { background: var(--bg-2); }
.dark { background: var(--dark); color: #ece6d9; }
.dark h2, .dark h3 { color: #fff; }
.dark .eyebrow { color: var(--leaf); }
.dark .muted { color: rgba(236, 230, 217, .7); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 0; }
.section-intro { max-width: 460px; color: var(--muted); margin: 0; }
.dark .section-intro { color: rgba(236, 230, 217, .7); }
.grid { display: grid; gap: 24px; }
.products-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.news-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.three { grid-template-columns: repeat(3, 1fr); }

/* Cards */
.card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card figure { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-2); }
.card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.card:hover figure img { transform: scale(1.05); }
.card-body { padding: 20px 22px 24px; }
.card-body h3 { margin-bottom: 4px; }
.card-body p { color: var(--muted); font-size: .9rem; margin: 0; }
.pill { display: inline-block; margin-top: 14px; background: var(--accent-soft); color: var(--accent-2); border-radius: 999px; padding: 5px 11px; font-size: .74rem; font-weight: 600; letter-spacing: .02em; }
.card-more { background: var(--green-2); color: #fff; border: 0; padding: 28px; justify-content: space-between; min-height: 320px; }
.card-more span { font: 400 1.6rem/1.2 var(--display); }
.card-more strong { font-weight: 600; color: var(--leaf); }
.dark .card { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .1); }
.dark .card-body p { color: rgba(236, 230, 217, .7); }
.news-card figure { aspect-ratio: 16 / 10; }
.news-card time { display: block; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.news-card h3 { font-size: 1.2rem; line-height: 1.25; }
.news-card .cat { color: var(--accent-2); }

/* Product list card (products page) */
.product-row { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center; padding: 40px 0; border-top: 1px solid var(--line); text-decoration: none; color: inherit; }
.product-row:last-of-type { border-bottom: 1px solid var(--line); }
.product-row figure { margin: 0; aspect-ratio: 1; border-radius: var(--r); overflow: hidden; background: var(--bg-2); }
.product-row figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.product-row:hover figure img { transform: scale(1.04); }
.product-row h3 { font-size: 1.9rem; margin-bottom: 4px; }
.product-row .kind { color: var(--muted); margin-bottom: 14px; }
.spec-list { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 18px 0 22px; padding: 0; list-style: none; font-size: .9rem; }
.spec-list li { color: var(--ink-2); }
.spec-list strong { color: var(--muted); font-weight: 500; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.chips li { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-size: .92rem; }

/* Split / pillars */
.split { display: grid; grid-template-columns: 1fr 1.35fr; gap: 72px; align-items: start; }
.split-aside { position: sticky; top: 110px; }
.split-aside p { color: var(--muted); margin-bottom: 28px; }
.pillars { list-style: none; margin: 0; padding: 0; }
.pillars li { display: grid; grid-template-columns: 60px 1fr; gap: 16px; padding: 30px 0; border-top: 1px solid var(--line); }
.pillars li:last-child { border-bottom: 1px solid var(--line); }
.pillars span { font: 400 1.1rem var(--display); color: var(--accent); padding-top: 6px; }
.pillars h3 { margin-bottom: 8px; }
.pillars p { color: var(--muted); margin: 0; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li { counter-increment: step; padding-top: 26px; border-top: 2px solid var(--ink); }
.steps li::before { content: counter(step, decimal-leading-zero); display: block; font: 400 1rem var(--display); color: var(--accent); margin-bottom: 14px; }
.steps h3 { margin-bottom: 8px; }
.steps p { color: var(--muted); margin: 0; }

/* Media split */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.media-split figure { margin: 0; }
.media-split img { border-radius: var(--r); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.media-split p { color: var(--ink-2); }

/* Facilities */
.facility { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 32px; }
.facility .eyebrow { margin-bottom: 8px; }
.facility strong { display: block; font: 400 2.4rem/1 var(--display); margin: 8px 0 14px; }
.facility p { color: var(--muted); margin: 0; }
.dark .facility { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .1); }
.dark .facility strong { color: #fff; }

/* Testimonial */
.testimonial { background: var(--bg-2); text-align: center; }
.testimonial blockquote { margin: 0 auto; max-width: 900px; }
.testimonial p { font: italic 400 clamp(1.6rem, 3vw, 2.5rem)/1.3 var(--display); margin-bottom: 24px; }
.testimonial footer { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* CTA band */
.cta { background: var(--green-2); color: #fff; padding: clamp(72px, 8vw, 110px) 0; }
.cta-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, .78); max-width: 520px; margin: 0; }
.cta .actions { justify-content: flex-end; }

/* Footer */
.site-footer { background: var(--dark); color: #bdb6a8; padding: 72px 0 32px; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 56px; }
.site-footer h4 { font: 600 .74rem var(--body); letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-logo { height: 64px; width: auto; margin-bottom: 18px; }
.footer-certs { color: var(--leaf); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 24px; font-size: .84rem; flex-wrap: wrap; }
.footer-bottom p { margin: 0; }
.footer-bottom img { width: 120px; opacity: .8; }

/* Product page */
.product-layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; padding-top: 48px; }
.gallery-main { border-radius: var(--r); overflow: hidden; aspect-ratio: 1; background: var(--bg-2); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.gallery-thumbs img { aspect-ratio: 1; object-fit: cover; border-radius: var(--r-sm); width: 100%; }
.product-intro h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); margin-bottom: 8px; }
.product-intro .kind { color: var(--muted); font-size: 1.05rem; margin-bottom: 24px; }
.product-intro p { color: var(--ink-2); }
.product-intro h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.spec-table th, .spec-table td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { width: 38%; font-weight: 500; color: var(--muted); padding-right: 16px; }
.checks { list-style: none; margin: 0; padding: 0; }
.checks li { position: relative; padding-left: 26px; margin-bottom: 8px; }
.checks li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.product-cta { margin-top: 40px; padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); }
.product-cta p { margin-bottom: 16px; }

/* Certificates */
.cert-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.cert { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.cert figure { margin: 0; aspect-ratio: 3 / 4; overflow: hidden; border-radius: var(--r-sm); border: 1px solid var(--line); background: #fff; }
.cert figure img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.cert h3 { font-size: 1.2rem; margin: 0; }
.cert p { color: var(--muted); font-size: .88rem; margin: 0; flex: 1; }

/* Timeline */
.timeline { list-style: none; margin: 0; padding: 0 0 0 28px; border-left: 2px solid var(--line); }
.timeline li { position: relative; padding: 0 0 40px 0; }
.timeline li::before { content: ''; position: absolute; left: -35px; top: 8px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
.timeline time { display: block; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 6px; }
.timeline h3 { margin-bottom: 6px; }
.timeline p { color: var(--muted); margin: 0; max-width: 560px; }
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.numbers div { border-top: 2px solid var(--ink); padding-top: 18px; }
.numbers strong { display: block; font: 400 2.8rem/1 var(--display); margin-bottom: 8px; }
.numbers span { color: var(--muted); font-size: .9rem; }
.regions { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 28px; }
.regions h3 { font-size: 1.1rem; margin-bottom: 8px; }
.regions p { color: var(--muted); font-size: .92rem; margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: start; }
.office { padding: 22px 0; border-top: 1px solid var(--line); }
.office:last-child { border-bottom: 1px solid var(--line); }
.office h3 { font-size: 1.15rem; margin-bottom: 4px; }
.office p { color: var(--muted); margin: 0; font-size: .95rem; }
.contact-lines { margin: 32px 0; }
.contact-lines a { font: 400 1.5rem var(--display); text-decoration: none; display: block; margin-bottom: 6px; }
.contact-lines small { color: var(--muted); display: block; margin-bottom: 18px; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 32px; }
.form .span-2 { grid-column: 1 / -1; }
.form label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; }
.form input, .form select, .form textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; font: inherit; color: inherit; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.form textarea { min-height: 130px; resize: vertical; }
.form .actions { grid-column: 1 / -1; padding-top: 6px; }
.form .note { grid-column: 1 / -1; font-size: .82rem; color: var(--muted); margin: 0; }

/* News */
.featured-post { display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: center; margin-bottom: 64px; text-decoration: none; color: inherit; }
.featured-post figure { margin: 0; border-radius: var(--r); overflow: hidden; aspect-ratio: 16 / 10; background: var(--bg-2); }
.featured-post img { width: 100%; height: 100%; object-fit: cover; }
.featured-post h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.featured-post p { color: var(--muted); }
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 9px 15px; border-radius: 999px; border: 1px solid var(--line); text-decoration: none; font-size: .9rem; }
.pagination .current { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.pagination a:hover { border-color: var(--ink); }
.article { max-width: 780px; margin: 0 auto; padding-top: 64px; }
.article-meta { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.article-meta .cat { color: var(--accent-2); }
.article h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 28px; }
.article-hero { margin: 0 0 40px; border-radius: var(--r); overflow: hidden; aspect-ratio: 16 / 9; background: var(--bg-2); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.prose { font-size: 1.06rem; color: var(--ink-2); }
.prose p { margin-bottom: 1.4em; }
.prose h2 { font-size: 1.9rem; margin: 1.8em 0 .5em; color: var(--ink); }
.prose h3 { font-size: 1.4rem; margin: 1.6em 0 .5em; color: var(--ink); }
.prose img { border-radius: var(--r-sm); margin: 1.5em auto; }
.prose figure { margin: 1.5em 0; }
.prose figcaption { font-size: .85rem; color: var(--muted); text-align: center; }
.prose a { color: var(--accent-2); }
.prose blockquote { margin: 1.5em 0; padding-left: 20px; border-left: 3px solid var(--accent); color: var(--ink); font-family: var(--display); font-size: 1.3rem; }
.prose table { width: 100%; border-collapse: collapse; font-size: .92rem; margin: 1.5em 0; display: block; overflow-x: auto; }
.prose th, .prose td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin: .4em 0; }
.prose iframe { max-width: 100%; }


/* Responsive */
@media (max-width: 1024px) {
  .split, .media-split, .cta-inner, .product-layout, .contact-grid, .featured-post { grid-template-columns: 1fr; gap: 40px; }
  .split-aside { position: static; }
  .steps, .numbers, .three { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta .actions { justify-content: flex-start; }
  .product-row { grid-template-columns: 220px 1fr; gap: 28px; }
}
@media (max-width: 900px) {
  .nav-toggle {
    display: block; position: relative; width: 44px; height: 44px; border: 0; background: none; cursor: pointer;
  }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ''; position: absolute; left: 10px; width: 24px; height: 2px; background: var(--ink); transition: transform .25s, opacity .25s;
  }
  .nav-toggle span { top: 21px; }
  .nav-toggle span::before { left: 0; top: -7px; }
  .nav-toggle span::after { left: 0; top: 7px; }
  body.nav-open .nav-toggle span { background: transparent; }
  body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }
  .nav {
    display: none; position: fixed; inset: 76px 0 0 0; background: var(--bg);
    flex-direction: column; align-items: flex-start; gap: 6px; padding: 24px var(--gutter);
  }
  .nav a { font: 400 1.7rem var(--display); padding: 8px 0; }
  .nav a.btn { font: 600 .95rem var(--body); margin-top: 16px; }
  body.nav-open .nav { display: flex; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 640px) {
  .hero { padding-top: 110px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .steps, .numbers, .three { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form { grid-template-columns: 1fr; padding: 22px; }
  .product-row { grid-template-columns: 1fr; }
  .trust-inner { justify-content: center; text-align: center; }
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
  .card-more { min-height: 200px; }
}
