/* ============================================================
   Armature Solutions Inc — Wholesale Kitchen Equipment
   Design: Industrial split-screen + banded sections
   Type:   Oswald (condensed display) + Inter (sans)
   Color:  Steel charcoal + warm amber accent
   ============================================================ */

:root {
  --charcoal: #14171c;
  --steel-900: #1b1f26;
  --steel-800: #232832;
  --steel-700: #2e343f;
  --steel-500: #4a5262;
  --steel-300: #9aa4b4;
  --steel-100: #d7dce3;
  --paper:     #f4f5f7;
  --white:     #ffffff;
  --amber:     #f0a52a;
  --amber-dark:#c9821a;
  --ember:     #e8622a;
  --ok:        #3ec98a;

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --wrap: 1200px;
  --gap: clamp(1rem, 3vw, 2.25rem);
  --radius: 4px;
  --shadow: 0 18px 40px -18px rgba(0,0,0,.55);
  --line: 1px solid rgba(255,255,255,.08);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--steel-100);
  background: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 32px; height: 2px;
  background: var(--amber);
  display: inline-block;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.02; letter-spacing: .01em; }
.h-xl { font-size: clamp(2.6rem, 7vw, 5.2rem); text-transform: uppercase; }
.h-lg { font-size: clamp(2rem, 4.5vw, 3.3rem); text-transform: uppercase; color: var(--white); }
.lead { color: var(--steel-300); font-size: clamp(1.02rem, 1.5vw, 1.18rem); max-width: 56ch; }
.muted { color: var(--steel-300); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--amber);
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .9rem;
  padding: .95rem 1.9rem;
  background: var(--bg);
  color: var(--charcoal);
  border: 2px solid var(--bg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-3px); background: var(--white); border-color: var(--white); }
.btn--ghost {
  background: transparent; color: var(--white); border-color: var(--steel-500);
}
.btn--ghost:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(20,23,28,.82);
  backdrop-filter: blur(10px);
  border-bottom: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 74px; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand__mark {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  background: var(--amber);
  border-radius: var(--radius);
  color: var(--charcoal);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__name { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--white); line-height: 1; font-size: 1.15rem; }
.brand__sub { font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: var(--steel-300); }

.nav__links { display: flex; align-items: center; gap: .3rem; }
.nav__links a {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .92rem;
  color: var(--steel-100);
  padding: .55rem .9rem;
  border-radius: var(--radius);
  transition: color .15s ease, background .15s ease;
}
.nav__links a:hover { color: var(--amber); }
.nav__links a.active { color: var(--charcoal); background: var(--amber); }
.nav__cta { margin-left: .4rem; }

.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; flex-direction: column; gap: 5px; justify-content: center; align-items: center;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--white); transition: transform .25s ease, opacity .2s ease; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--steel-900);
  border-bottom: var(--line);
  font-size: .8rem;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; height: 40px; flex-wrap: wrap; overflow: hidden; }
.topbar a { color: var(--steel-300); }
.topbar a:hover { color: var(--amber); }
.topbar__set { display: flex; gap: 1.4rem; align-items: center; }
.topbar__set span { display: inline-flex; align-items: center; gap: .45rem; }
.topbar svg { width: 15px; height: 15px; color: var(--amber); }

/* ---------- Hero (split-screen asymmetric) ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 82vh;
  border-bottom: 4px solid var(--amber);
}
.hero__content {
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4.5rem);
  display: flex; flex-direction: column; justify-content: center;
  background:
    radial-gradient(900px 500px at -10% -10%, rgba(240,165,42,.10), transparent 60%),
    var(--charcoal);
}
.hero__title { color: var(--white); margin: 1.3rem 0 1.3rem; }
.hero__title span { color: var(--amber); display: block; }
.hero__actions { display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero__meta { margin-top: 2.6rem; display: flex; gap: 2.2rem; flex-wrap: wrap; }
.hero__meta div strong { font-family: var(--font-display); font-size: 2rem; color: var(--amber); display: block; line-height: 1; }
.hero__meta div span { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--steel-300); }

/* visual panel — hero photograph, with the equipment motif over it */
.hero__visual {
  position: relative;
  background:
    linear-gradient(135deg, var(--steel-800), var(--steel-900));
  overflow: hidden;
  display: grid; place-items: center;
}
.hero__visual img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* grid motif */
.hero__visual::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 60% 40%, #000, transparent 78%);
}
/* scrim so the badge stays readable on top of the photo */
.hero__visual::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 50% 45%, rgba(20,23,28,.42), rgba(20,23,28,.12) 70%),
    linear-gradient(180deg, rgba(20,23,28,.2), rgba(20,23,28,.34));
}
.hero__badge {
  position: relative; z-index: 2;
  text-align: center;
  padding: 2rem;
}
.hero__badge .ring {
  width: clamp(180px, 26vw, 300px); aspect-ratio: 1; border-radius: 50%;
  border: 2px dashed rgba(240,165,42,.5);
  display: grid; place-items: center; margin: 0 auto 1.4rem;
  position: relative;
  animation: spin 26s linear infinite;
}
.hero__badge .ring::after {
  content: ""; position: absolute; inset: 18px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}
.hero__badge .ring svg { width: 46%; height: 46%; color: var(--amber); animation: spin 26s linear infinite reverse; }
.hero__badge p { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .22em; color: var(--steel-100); font-size: .82rem; }
.hero__badge p b { color: var(--amber); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--amber);
  color: var(--charcoal);
  overflow: hidden;
  border-bottom: 4px solid var(--charcoal);
}
.strip__track {
  display: flex; gap: 3rem; padding: .8rem 0; white-space: nowrap;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .16em; font-weight: 500;
  animation: slide 32s linear infinite;
}
.strip__track span { display: inline-flex; align-items: center; gap: 3rem; }
.strip__track span::after { content: "◆"; font-size: .7rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Feature / value cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

.card {
  background: var(--steel-800);
  border: var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(240,165,42,.55); }
.card__ico {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: rgba(240,165,42,.12); color: var(--amber);
  display: grid; place-items: center; margin-bottom: 1.2rem;
}
.card__ico svg { width: 26px; height: 26px; }
.card h3 { color: var(--white); font-size: 1.4rem; text-transform: uppercase; margin-bottom: .5rem; }
.card p { color: var(--steel-300); font-size: .96rem; }

/* ---------- Section headings ---------- */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.8rem; flex-wrap: wrap; }
.sec-head .lead { margin-top: .8rem; }

/* ---------- Split feature block ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.split--band { background: var(--steel-900); }
.panel {
  background: linear-gradient(160deg, var(--steel-800), var(--steel-900));
  border: var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem);
  min-height: 340px;
  position: relative;
  overflow: hidden;
}
.panel::after {
  content: ""; position: absolute; right: -60px; bottom: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,42,.16), transparent 70%);
}
.spec-list { display: grid; gap: .2rem; position: relative; }
.spec-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .85rem 0; border-bottom: var(--line);
  font-size: .95rem;
}
.spec-list li span:first-child { color: var(--steel-300); }
.spec-list li span:last-child { font-family: var(--font-display); color: var(--white); letter-spacing: .05em; }
.check { display: flex; gap: .8rem; padding: .55rem 0; align-items: flex-start; color: var(--steel-100); }
.check svg { width: 22px; height: 22px; color: var(--ok); flex: none; margin-top: .1rem; }

/* ---------- Stats band ---------- */
.stats { background: var(--amber); color: var(--charcoal); border-block: 4px solid var(--charcoal); }
.stats .grid-4 { gap: 1rem; }
.stat { text-align: center; padding: 1rem; }
.stat strong { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4rem); line-height: 1; display: block; }
.stat span { text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; font-weight: 600; }

/* ---------- Product / category catalog ---------- */
.cat {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--steel-800); border: var(--line);
  min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.6rem; transition: transform .2s ease, border-color .2s ease;
}
.cat:hover { transform: translateY(-6px); border-color: rgba(240,165,42,.55); }
.cat__bg { position: absolute; inset: 0; opacity: .9; overflow: hidden; }
.cat__bg svg { width: 100%; height: 100%; }
.cat__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
/* keeps the card copy legible over a photograph */
.cat__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,23,28,.12) 0%, rgba(20,23,28,.66) 52%, rgba(20,23,28,.95) 100%);
}
.cat:hover .cat__bg img { transform: scale(1.06); }
.cat__body { position: relative; }
.cat__tag { font-family: var(--font-display); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); }
.cat h3 { color: var(--white); font-size: 1.5rem; text-transform: uppercase; margin: .35rem 0 .4rem; }
.cat p { color: var(--steel-300); font-size: .9rem; }
.cat__link { margin-top: .9rem; display: inline-flex; gap: .5rem; align-items: center; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; color: var(--amber); }

/* full product rows */
.prod-row {
  display: grid; grid-template-columns: 90px 1fr auto; gap: 1.4rem; align-items: center;
  background: var(--steel-800); border: var(--line); border-radius: var(--radius);
  padding: 1.2rem 1.4rem; transition: border-color .2s ease;
}
.prod-row:hover { border-color: rgba(240,165,42,.5); }
.prod-row__ico { width: 64px; height: 64px; border-radius: var(--radius); background: rgba(240,165,42,.1); color: var(--amber); display: grid; place-items: center; }
.prod-row__ico svg { width: 34px; height: 34px; }
.prod-row h3 { color: var(--white); font-size: 1.25rem; text-transform: uppercase; }
.prod-row p { color: var(--steel-300); font-size: .9rem; }
.prod-row__meta { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; color: var(--amber); font-size: .85rem; text-align: right; white-space: nowrap; }

/* ---------- Steps / process ---------- */
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 1.4rem; align-items: start; }
.step__no {
  counter-increment: step;
  width: 64px; height: 64px; border-radius: var(--radius);
  background: var(--steel-800); border: 2px solid var(--amber); color: var(--amber);
  font-family: var(--font-display); font-size: 1.6rem; display: grid; place-items: center;
}
.step__no::before { content: counter(step, decimal-leading-zero); }
.step h3 { color: var(--white); text-transform: uppercase; font-size: 1.3rem; margin-bottom: .3rem; }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--steel-800); border: var(--line); border-radius: var(--radius);
  padding: 2rem; position: relative;
}
.quote::before { content: "“"; font-family: var(--font-display); position: absolute; top: .2rem; right: 1.2rem; font-size: 5rem; color: rgba(240,165,42,.25); line-height: 1; }
.quote p { color: var(--steel-100); font-style: italic; }
.quote footer { margin-top: 1.2rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; color: var(--white); }
.quote footer span { display: block; color: var(--amber); font-size: .78rem; letter-spacing: .16em; }

/* ---------- CTA band ---------- */
.cta {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(240,165,42,.14), transparent 60%),
    var(--steel-900);
  border-top: 4px solid var(--amber);
  text-align: center;
}
/* photo-backed variant of the CTA band */
.cta--photo {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(240,165,42,.16), transparent 60%),
    linear-gradient(rgba(20,23,28,.8), rgba(27,31,38,.9)),
    url("images/texture.jpg") center / cover no-repeat;
}
.cta h2 { color: var(--white); }
.cta .lead { margin: 1rem auto 2rem; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 3.5rem); align-items: start; }
.info-card { display: flex; gap: 1rem; padding: 1.3rem 0; border-bottom: var(--line); }
.info-card__ico { width: 48px; height: 48px; flex: none; border-radius: var(--radius); background: rgba(240,165,42,.12); color: var(--amber); display: grid; place-items: center; }
.info-card__ico svg { width: 24px; height: 24px; }
.info-card h3 { color: var(--white); text-transform: uppercase; font-size: 1.05rem; letter-spacing: .05em; margin-bottom: .2rem; }
.info-card a, .info-card p { color: var(--steel-300); }
.info-card a:hover { color: var(--amber); }

.form { background: var(--steel-800); border: var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.6rem); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; color: var(--steel-100); margin-bottom: .5rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; background: var(--steel-900);
  border: 1px solid var(--steel-700); border-radius: var(--radius);
  color: var(--white); font-family: var(--font-body); font-size: 1rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(240,165,42,.2);
}
.field textarea { min-height: 140px; resize: vertical; }
.form__note { font-size: .82rem; color: var(--steel-500); margin-top: .8rem; }
.form-success {
  display: none; margin-top: 1.2rem; padding: 1rem 1.2rem;
  background: rgba(62,201,138,.12); border: 1px solid var(--ok); border-radius: var(--radius);
  color: var(--white);
}
.form-success.show { display: block; }
.form-success strong { color: var(--ok); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; }

.map-embed {
  margin-top: 2.4rem; border: var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--steel-800); min-height: 260px;
  display: grid; place-items: center; text-align: center; padding: 2rem;
}
.map-embed svg { width: 46px; height: 46px; color: var(--amber); margin-bottom: .8rem; }
.map-embed p { color: var(--steel-300); font-size: .9rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(700px 380px at 90% -20%, rgba(240,165,42,.12), transparent 60%),
    var(--steel-900);
  border-bottom: 4px solid var(--amber);
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem);
}
.page-hero h1 { color: var(--white); margin: 1rem 0 .8rem; }
.crumbs { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; color: var(--steel-300); }
.crumbs a:hover { color: var(--amber); }
.crumbs span { color: var(--amber); }

/* ---------- Values / about ---------- */
.about-img {
  border-radius: var(--radius); overflow: hidden; border: var(--line);
  background: linear-gradient(160deg, var(--steel-800), var(--steel-900));
  min-height: 420px; position: relative; display: grid; place-items: center;
}
.about-img::before {
  content:""; position:absolute; inset:0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 80%);
}
.about-img svg { width: 40%; color: var(--amber); position: relative; opacity: .85; }
.about-img img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* amber rule along the bottom edge, ties the photo to the section */
.about-img::after {
  content: ""; position: absolute; z-index: 2;
  left: 0; right: 0; bottom: 0; height: 4px;
  background: var(--amber);
}

.tag-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.tag-list span { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; padding: .45rem .9rem; border: 1px solid var(--steel-700); border-radius: 100px; color: var(--steel-100); }

/* ---------- Footer ---------- */
.site-footer { background: var(--steel-900); border-top: var(--line); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 3rem; }
.footer-grid h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em; color: var(--white); font-size: 1rem; margin-bottom: 1.1rem; }
.footer-grid a, .footer-grid p { color: var(--steel-300); font-size: .93rem; }
.footer-grid a { display: block; padding: .28rem 0; }
.footer-grid a:hover { color: var(--amber); }
.footer-about p { margin-top: 1rem; max-width: 34ch; }
.socials { display: flex; gap: .7rem; margin-top: 1.2rem; }
.socials a { width: 40px; height: 40px; border-radius: var(--radius); border: 1px solid var(--steel-700); display: grid; place-items: center; color: var(--steel-100); padding: 0; }
.socials a:hover { background: var(--amber); color: var(--charcoal); border-color: var(--amber); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: var(--line); padding: 1.5rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .84rem; color: var(--steel-500); }
.footer-bottom a { color: var(--steel-300); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero__visual { min-height: 320px; order: -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .topbar { display: none; }
  .nav__links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch;
    background: var(--steel-900); border-bottom: var(--line);
    padding: 1rem 1.25rem 1.6rem; gap: .2rem;
    transform: translateY(-140%); transition: transform .3s ease; z-index: 55;
  }
  .nav__links.open { transform: none; }
  .nav__links a { padding: .9rem 1rem; }
  .nav__cta { margin: .6rem 0 0; }
  .nav__toggle { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .prod-row { grid-template-columns: 56px 1fr; }
  .prod-row__meta { grid-column: 1 / -1; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
