/* ==========================================================================
   CHEFON — Commercial Kitchen Equipment
   Brand palette sampled from the logo:
     red #EB0100 · black #111111 · power-icon blue #0095F5
   ========================================================================== */

:root {
  --red: #eb0100;
  --red-dark: #c00100;
  --red-tint: #fff1f0;
  --blue: #0095f5;
  --ink: #111111;
  --ink-2: #2b2b2b;
  --grey: #6b7178;
  --grey-2: #9aa1a8;
  --line: #e4e7ea;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --wa: #25d366;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(17, 17, 17, .06);
  --shadow: 0 6px 24px rgba(17, 17, 17, .08);
  --shadow-lg: 0 24px 60px rgba(17, 17, 17, .18);
  --wrap: 1240px;
  --header-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: "Barlow Condensed", "Inter", -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.25rem; text-transform: none; letter-spacing: 0; font-family: inherit; font-weight: 700; }
p  { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .82em 1.5em;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease),
              color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
  font-family: inherit;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

.btn-red    { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(235, 1, 0, .26); }
.btn-red:hover { background: var(--red-dark); }
.btn-dark   { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-ghost  { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-wa     { background: var(--wa); color: #06301a; box-shadow: 0 6px 18px rgba(37, 211, 102, .3); }
.btn-wa:hover { background: #1fbb59; color: #032414; }
.btn-block  { width: 100%; }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- header ---------- */
.topbar {
  background: var(--ink); color: #cfd4d9;
  font-size: .82rem; letter-spacing: .01em;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.topbar a:hover { color: #fff; }
.topbar-links { display: flex; gap: 22px; align-items: center; }
.topbar strong { color: #fff; font-weight: 600; }
.topbar .tagline { color: var(--red); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .72rem; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(1.6) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 44px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  padding: .6em .9em; border-radius: 6px;
  font-weight: 600; font-size: .95rem; color: var(--ink-2);
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--red); background: var(--red-tint); }
.nav a.is-active { color: var(--red); }
.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }

.nav-toggle {
  display: none; margin-left: auto;
  background: none; border: 1px solid var(--line); border-radius: 8px;
  width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .2s var(--ease), opacity .2s;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg) translateY(-1px); }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: clamp(56px, 8vw, 104px) 0 clamp(56px, 8vw, 96px);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 88% 12%, rgba(235,1,0,.42), transparent 62%),
    radial-gradient(600px 420px at 8% 92%, rgba(0,149,245,.20), transparent 60%),
    linear-gradient(180deg, #171717, #0b0b0b);
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 40%, #000, transparent 78%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: #fff; background: rgba(235,1,0,.9);
  padding: .5em 1em; border-radius: 100px; margin-bottom: 22px;
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero-lede { font-size: 1.12rem; color: #c8ced4; max-width: 54ch; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats div span { display: block; font-family: "Barlow Condensed", sans-serif; font-size: 2.4rem; font-weight: 700; line-height: 1; color: #fff; }
.hero-stats div small { color: var(--grey-2); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }

.hero-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-collage figure {
  margin: 0; background: #fff; border-radius: var(--radius-lg); padding: 14px;
  box-shadow: var(--shadow-lg);
}
.hero-collage figure:nth-child(1) { transform: translateY(-16px); }
.hero-collage figure:nth-child(4) { transform: translateY(16px); }
.hero-collage img { aspect-ratio: 1; object-fit: contain; }
.hero-collage figcaption {
  font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--grey); text-align: center; padding-top: 6px;
}

/* ---------- trust strip ---------- */
.trust { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.trust ul {
  list-style: none; margin: 0; padding: 26px 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.trust li { display: flex; gap: 12px; align-items: flex-start; font-size: .93rem; }
.trust .ico {
  flex: none; width: 38px; height: 38px; border-radius: 9px;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--red);
}
.trust .ico svg { width: 19px; height: 19px; }
.trust strong { display: block; font-size: .95rem; }
.trust span { color: var(--grey); font-size: .85rem; }

/* ---------- sections ---------- */
.section { padding: clamp(56px, 7vw, 92px) 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 62ch; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: block; font-size: .78rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}
.section-head p { color: var(--grey); font-size: 1.04rem; margin: 0; }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; }
.head-row .section-head { margin-bottom: 0; }

/* ---------- category grid ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card {
  position: relative; display: block; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px 22px 20px; overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.cat-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.cat-card:hover::after { transform: scaleX(1); }
.cat-card .thumb {
  height: 116px; margin: -6px -6px 14px; display: grid; place-items: center;
  background: var(--bg-soft); border-radius: 10px;
}
.cat-card .thumb img { max-height: 96px; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.cat-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.cat-card p { font-size: .86rem; color: var(--grey); margin: 0 0 12px; }
.cat-card .count {
  font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--red);
}

/* ---------- product cards ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.prod-card {
  display: flex; flex-direction: column; text-align: left; width: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0; overflow: hidden; cursor: pointer; font: inherit; color: inherit;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d6dade; }
.prod-card:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.prod-card .img {
  position: relative; aspect-ratio: 1; background: #fff;
  display: grid; place-items: center; padding: 14px; border-bottom: 1px solid var(--line);
}
.prod-card .img img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .32s var(--ease);
}
.prod-card:hover .img img { transform: scale(1.06); }
.prod-card .body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.prod-card .cat {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-2);
}
.prod-card .name { font-weight: 650; font-size: .97rem; line-height: 1.35; color: var(--ink); }
.prod-card .cta {
  margin-top: auto; padding-top: 10px;
  font-size: .84rem; font-weight: 700; color: var(--red);
  display: inline-flex; align-items: center; gap: .4em;
}
.prod-card .cta svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.prod-card:hover .cta svg { transform: translateX(3px); }

/* ---------- catalogue toolbar ---------- */
.catalog-hero {
  background: var(--ink); color: #fff; padding: 54px 0 42px; position: relative; overflow: hidden;
}
.catalog-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 380px at 82% 0%, rgba(235,1,0,.4), transparent 62%);
}
.catalog-hero .wrap { position: relative; }
.catalog-hero h1 { color: #fff; margin-bottom: .3em; font-size: clamp(2rem, 4.6vw, 3.2rem); }
.catalog-hero p { color: #c1c7cd; max-width: 62ch; margin: 0; }

.toolbar {
  position: sticky; top: var(--header-h); z-index: 40;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); padding: 14px 0;
}
.toolbar .wrap { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.search {
  position: relative; flex: 1 1 300px; min-width: 220px;
}
.search svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; color: var(--grey-2); pointer-events: none;
}
.search input {
  width: 100%; padding: .78em 2.6em .78em 2.7em;
  border: 1px solid var(--line); border-radius: 8px; background: #fff;
  font: inherit; font-size: .95rem; color: var(--ink);
  transition: border-color .16s, box-shadow .16s;
}
.search input:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(235,1,0,.12);
}
.search .clear {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border: 0; border-radius: 50%; background: var(--bg-soft);
  cursor: pointer; display: none; place-items: center; color: var(--grey); font-size: 1rem; line-height: 1;
}
.search .clear.show { display: grid; }
.result-count { font-size: .88rem; color: var(--grey); margin-left: auto; white-space: nowrap; }

.chips { display: flex; gap: 8px; overflow-x: auto; padding: 14px 0 4px; scrollbar-width: thin; }
.chip {
  flex: none; padding: .5em 1em; border-radius: 100px; cursor: pointer;
  border: 1px solid var(--line); background: #fff; color: var(--ink-2);
  font: inherit; font-size: .87rem; font-weight: 600; white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--red); border-color: var(--red); color: #fff; }
.chip .n { opacity: .6; margin-left: .35em; font-weight: 500; }

.empty { text-align: center; padding: 70px 0; color: var(--grey); }
.empty strong { display: block; font-size: 1.2rem; color: var(--ink); margin-bottom: 6px; }

.cat-block { padding-top: 8px; }
.cat-block + .cat-block { margin-top: 52px; }
.cat-block > h2 {
  font-size: 1.6rem; display: flex; align-items: baseline; gap: 12px;
  padding-bottom: 12px; border-bottom: 2px solid var(--ink); margin-bottom: 22px;
}
.cat-block > h2 .n {
  font-family: "Inter", sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  color: var(--red); text-transform: uppercase; white-space: nowrap; margin-left: auto;
}

/* ---------- modal ---------- */
.modal[hidden] { display: none; }
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center; padding: 20px;
}
.modal-backdrop {
  position: absolute; inset: 0; background: rgba(10,10,10,.62);
  backdrop-filter: blur(3px); border: 0; width: 100%; cursor: pointer;
  animation: fade .2s var(--ease);
}
.modal-panel {
  position: relative; z-index: 1;
  width: min(940px, 100%); max-height: min(88vh, 780px); overflow-y: auto;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  animation: pop .26s var(--ease);
}
@keyframes fade { from { opacity: 0; } }
@keyframes pop  { from { opacity: 0; transform: translateY(16px) scale(.98); } }

.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  display: grid; place-items: center; font-size: 1.3rem; line-height: 1;
  transition: background .15s, transform .15s;
}
.modal-close:hover { background: var(--red); color: #fff; border-color: var(--red); transform: rotate(90deg); }

.modal-body { display: grid; grid-template-columns: 1fr 1fr; }
.modal-media { background: var(--bg-soft); padding: 40px; display: grid; place-items: center; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.modal-media img { width: 100%; max-height: 400px; object-fit: contain; mix-blend-mode: multiply; }
.modal-info { padding: 40px 38px 34px; }
.modal-info .cat {
  display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--red); background: var(--red-tint);
  padding: .4em .8em; border-radius: 4px; margin-bottom: 14px;
}
.modal-info h2 { font-size: 1.9rem; margin-bottom: .3em; }
.modal-info .desc { color: var(--grey); font-size: .96rem; }
.spec-list { list-style: none; margin: 20px 0 26px; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.spec-list li { display: flex; gap: 10px; font-size: .9rem; color: var(--ink-2); align-items: flex-start; }
.spec-list svg { width: 16px; height: 16px; color: var(--red); flex: none; margin-top: 3px; }
.modal-actions { display: grid; gap: 10px; }
.modal-note { font-size: .8rem; color: var(--grey-2); margin: 14px 0 0; text-align: center; }

/* ---------- forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 6px; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: .75em .9em; font: inherit; font-size: .95rem;
  border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink);
  transition: border-color .16s, box-shadow .16s;
}
.field textarea { resize: vertical; min-height: 108px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(235,1,0,.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: .82rem; color: var(--grey); margin: 4px 0 18px; }
.form-error { color: var(--red); font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--red); }
.field.invalid .form-error { display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink); color: #fff; position: relative; overflow: hidden;
  padding: clamp(48px, 6vw, 76px) 0;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(760px 400px at 15% 50%, rgba(235,1,0,.4), transparent 60%),
              radial-gradient(600px 380px at 90% 40%, rgba(0,149,245,.18), transparent 62%);
}
.cta-band .wrap {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  gap: 34px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: .25em; }
.cta-band p { color: #c1c7cd; margin: 0; max-width: 54ch; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- why / features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px;
}
.feature .ico {
  width: 46px; height: 46px; border-radius: 11px; background: var(--red-tint); color: var(--red);
  display: grid; place-items: center; margin-bottom: 16px;
}
.feature .ico svg { width: 22px; height: 22px; }
.feature h3 { margin-bottom: 6px; }
.feature p { color: var(--grey); font-size: .92rem; margin: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #a8afb6; padding: 62px 0 0; font-size: .92rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 46px;
}
.site-footer h4 {
  color: #fff; font-size: .82rem; letter-spacing: .14em; margin-bottom: 18px;
  font-family: "Inter", sans-serif; font-weight: 800;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a:hover { color: var(--red); }
.footer-logo { background: #fff; border-radius: 10px; padding: 12px 16px; display: inline-block; margin-bottom: 18px; }
.footer-logo img { height: 40px; width: auto; }
.footer-about p { max-width: 40ch; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--red); flex: none; margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem;
}

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa); color: #06301a; font-weight: 700; font-size: .93rem;
  padding: 13px 20px 13px 16px; border-radius: 100px;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(37,211,102,.5); }
.wa-float svg { width: 24px; height: 24px; }

.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 20px);
  background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 100px;
  font-size: .9rem; font-weight: 600; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s var(--ease); z-index: 120;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- page hero (about/contact) ---------- */
.page-hero { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 52px 0; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: .25em; }
.page-hero p { color: var(--grey); max-width: 64ch; margin: 0; }
.crumb { font-size: .82rem; color: var(--grey-2); margin-bottom: 14px; }
.crumb a:hover { color: var(--red); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.info-list li { display: flex; gap: 14px; }
.info-list .ico {
  flex: none; width: 42px; height: 42px; border-radius: 10px; background: var(--red-tint);
  color: var(--red); display: grid; place-items: center;
}
.info-list .ico svg { width: 19px; height: 19px; }
.info-list strong { display: block; font-size: .95rem; }
.info-list span, .info-list a { color: var(--grey); font-size: .92rem; }
.info-list a:hover { color: var(--red); }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .cat-grid, .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-collage { max-width: 460px; }
  .trust ul { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-media { border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding: 30px; }
  .modal-media img { max-height: 280px; }
  .modal-info { padding: 28px 26px 30px; }
}
@media (max-width: 820px) {
  .topbar-links .hide-sm { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 24px 18px; box-shadow: var(--shadow); display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: .8em .6em; }
  .header-cta .btn-ghost { display: none; }
}
@media (max-width: 680px) {
  .cat-grid, .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feature-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .hero-stats div span { font-size: 1.9rem; }
  .wa-float span { display: none; }
  .wa-float { padding: 15px; border-radius: 50%; }
  .form-card { padding: 24px 20px; }
  /* keep the enquiry buttons within reach instead of below a tall photo */
  .modal-media { padding: 20px; }
  .modal-media img { max-height: 210px; }
  .modal-info { padding: 24px 22px 26px; }
  .modal-info h2 { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .result-count { width: 100%; margin-left: 0; }
}
/* Two columns stay readable right down to small phones — a single full-width
   column makes each product card absurdly tall. */
@media (max-width: 340px) {
  .cat-grid, .prod-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}
