/* ============================================================
   A-marketing d.o.o. — svetla premium tema
   Pešeno/svetlo ozadje, temna tipografija, rdeč poudarek (logo),
   mehke sence, velikodušen prostor, moderne smernice
   ============================================================ */

:root {
  --bg: #f7f5f1;          /* topla papirnata podlaga */
  --bg-1: #ffffff;        /* kartice / dvignjene ploskve */
  --bg-2: #efece5;        /* subtilno dvignjeno */
  --surface: #ffffff;
  --surface-2: #faf8f4;
  --ink: #1b1813;         /* skoraj črna, topla */
  --ink-dim: #5d574c;
  --ink-faint: #8d877a;
  --line: rgba(27, 24, 19, 0.13);
  --line-soft: rgba(27, 24, 19, 0.07);
  --accent: #a32420;      /* rdeča iz logotipa */
  --accent-2: #c8503a;    /* topla terakota */
  --accent-ink: #7d1a17;  /* temnejša rdeča za besedilo na svetlem */
  --grad: linear-gradient(102deg, #a32420 0%, #c0452e 100%);
  --grad-soft: linear-gradient(135deg, rgba(163,36,32,.10), rgba(200,80,58,.06));
  --max: 1280px;
  --pad: clamp(20px, 4vw, 60px);
  --radius: 18px;
  --shadow: 0 1px 2px rgba(27,24,19,.05), 0 14px 34px -20px rgba(27,24,19,.20);
  --shadow-lg: 0 36px 80px -40px rgba(27,24,19,.40);
  --font: "Inter", "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-snap-type: y proximity; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

/* Subtilni topli sij v ozadju */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(55% 45% at 88% -8%, rgba(163,36,32,.06), transparent 60%),
    radial-gradient(40% 38% at 2% 4%, rgba(200,80,58,.05), transparent 58%);
  pointer-events: none;
}

/* Tehnična mreža pik okoli kurzorja (ozadje) */
#bg-grid {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Glava ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand { display: inline-flex; align-items: center; }
.brand-logo {
  display: block;
  height: clamp(30px, 3.6vw, 40px);
  width: auto;
}

.nav ul {
  display: flex;
  gap: clamp(14px, 3vw, 40px);
  list-style: none;
  align-items: center;
}

.nav ul a {
  font-size: 15.5px;
  color: var(--ink-dim);
  font-weight: 500;
  transition: color .2s var(--ease);
  position: relative;
}
.nav ul a:hover { color: var(--ink); }
.nav ul a[aria-current="page"] { color: var(--ink); }
.nav ul a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

/* ---------- Junak (hero) ---------- */
.hero {
  padding-top: clamp(48px, 9vh, 124px);
  padding-bottom: clamp(40px, 7vh, 88px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
  padding: 8px 16px 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(46px, 8vw, 100px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero h1.hero-title { font-size: inherit; }
.hero h1 .t-sub {
  display: block;
  font-size: clamp(24px, 3.8vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink-dim);
}
.hero h1 .t-main {
  display: block;
  margin-top: 6px;
  font-size: clamp(44px, 8vw, 104px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--ink);
}

.hero .sub-lead {
  margin-top: 26px;
  max-width: 46ch;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-dim);
}

.hero-cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-stats {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 4vw, 52px);
  padding-top: 30px;
  border-top: 1px solid var(--line-soft);
}
.hero-stats .stat .num {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-stats .stat .lbl {
  font-size: 13.5px;
  color: var(--ink-faint);
  margin-top: 3px;
}

/* Junak — vizual desno (product spotlight) */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3.4;
  width: 100%;
  max-width: 540px;
  margin-top: 8px;
  border-radius: var(--radius);
  background: #fffefc;
  border: 1px solid var(--line-soft);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 42% at 50% 0%, rgba(163,36,32,.07), transparent 62%);
  pointer-events: none;
  z-index: 1;
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(18px, 5%, 44px);
  background: transparent;
}
.hero-visual .vtag {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  color: var(--ink);
  box-shadow: var(--shadow);
}

/* ---------- Gumbi ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(163,36,32,.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -12px rgba(163,36,32,.62); }
.btn-ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.btn-ghost:hover { background: var(--surface-2); transform: translateY(-2px); }

a.btn:not(.btn-primary):not(.btn-ghost) {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  margin-top: 30px;
  box-shadow: var(--shadow);
}
a.btn:not(.btn-primary):not(.btn-ghost):hover { background: var(--surface-2); transform: translateY(-2px); }

/* ---------- Sekcije ---------- */
section.block { padding: clamp(56px, 9vh, 112px) 0; border-top: 1px solid var(--line-soft); }

.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
}

h2.big {
  font-size: clamp(30px, 4.4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
  max-width: 20ch;
  color: var(--ink);
}

.block p.lead {
  margin-top: 22px;
  max-width: 64ch;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--ink-dim);
}

.cols {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.cols > div {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-1);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.cols > div:hover { border-color: var(--line); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cols h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 9px;
  display: flex; align-items: center; gap: 10px; color: var(--ink);
}
.cols h3::before {
  content: "";
  width: 9px; height: 9px; border-radius: 3px;
  background: var(--grad);
}
.cols p { font-size: 15px; color: var(--ink-dim); }

/* ---------- Showcase kategorij (bento) ---------- */
.showcase {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}
.show-card {
  position: relative;
  grid-column: span 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--bg-1);
  min-height: 230px;
  display: flex;
  isolation: isolate;
  box-shadow: var(--shadow);
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.show-card.wide { grid-column: span 8; }
.show-card.tall { grid-row: span 2; }
.show-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  background: #fff;
  filter: grayscale(1);
  transition: transform .5s var(--ease), filter .45s var(--ease);
}
.show-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0) 38%, rgba(20,16,12,.42) 72%, rgba(20,16,12,.86) 100%);
  z-index: 1;
}
.show-card .label {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 20px;
  width: 100%;
}
.show-card .label .name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.show-card .label .desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.78);
  margin-top: 3px;
}
.show-card .label .go {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  font-size: 13px; font-weight: 600;
  color: #fff;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.show-card:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.show-card:hover img { transform: scale(1.06); filter: grayscale(0); }
@media (hover: none) { .show-card img { filter: none; } }
.show-card:hover .label .go { opacity: 1; transform: translateY(0); }

/* ---------- Program: enotne slikovne kartice (duoton rdeče-grafit) ---------- */
.prog-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
  gap: 16px;
}
.prog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-1);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.prog-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: var(--shadow-lg);
}
.pc-thumb {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #fff;
}
.pc-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--px, 50%) var(--py, 56%);
  transform: scale(var(--z, 1.5));
  transition: transform .5s var(--ease);
}
.prog-card:hover .pc-thumb img { transform: scale(calc(var(--z, 1.5) + .06)); }
.pc-meta { padding: 15px 17px 17px; display: flex; flex-direction: column; gap: 3px; }
.pc-name { font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.pc-desc { font-size: 13.5px; color: var(--ink-dim); line-height: 1.4; }

/* ---------- Certifikati ---------- */
.certs {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.cert-pill .tick {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad);
}

/* ---------- CTA panel (kontrastni temni blok) ---------- */
.cta-panel {
  position: relative;
  margin: clamp(56px, 9vh, 112px) auto 0;
  padding: clamp(40px, 6vw, 76px);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(70% 130% at 100% 0%, rgba(163,36,32,.42), transparent 58%),
    radial-gradient(60% 120% at 0% 100%, rgba(200,80,58,.22), transparent 60%),
    #17140f;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-panel h2 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 18ch;
  color: #fff;
}
.cta-panel p { margin-top: 16px; color: rgba(255,255,255,.72); max-width: 52ch; font-size: 17px; }
.cta-panel .hero-cta { margin-top: 30px; }
.cta-panel .btn-ghost {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.26);
  color: #fff;
  box-shadow: none;
}
.cta-panel .btn-ghost:hover { background: rgba(255,255,255,.16); }

/* ---------- Katalogi ---------- */
.cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 34px 0 10px;
}
.cat-nav a {
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 15px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--ink-dim);
  background: var(--bg-1);
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s;
}
.cat-nav a:hover { border-color: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow); }

/* ---------- Kazalo (lepljivo, desno) ---------- */
.toc {
  position: fixed;
  top: 50%;
  right: clamp(10px, 1.6vw, 26px);
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 1px;
  max-height: 82vh;
  overflow-y: auto;
  padding: 6px 2px;
  scrollbar-width: none;
}
.toc::-webkit-scrollbar { display: none; }
.toc a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  padding: 4px 2px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-faint);
  text-align: right;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.toc a .tline {
  width: 16px; height: 1.5px; border-radius: 2px;
  background: currentColor; opacity: .45; flex: none;
  transition: width .25s var(--ease), opacity .2s, background .2s;
}
.toc a:hover { color: var(--ink); }
.toc a:hover .tline { width: 26px; opacity: 1; }
.toc a.active { color: var(--accent); font-weight: 700; }
.toc a.active .tline { width: 34px; opacity: 1; background: var(--accent); }
@media (max-width: 1200px) { .toc { display: none; } }

section[id] { scroll-margin-top: 96px; }

/* Scroll-snap — smiselna ustavitev po vsebini */
.hero, section.block, #kontakt, .cat-section {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.cat-section { padding: 46px 0 10px; scroll-margin-top: 96px; }
.cat-section h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
  scroll-margin-top: 110px;
  color: var(--ink);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.card {
  background: var(--bg-1);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card .thumb { display: block; aspect-ratio: 3/4; overflow: hidden; background: #fff; cursor: pointer; position: relative; }
.card .thumb.imgfail { background: var(--bg-2); }
.card .thumb.imgfail::after {
  content: "Odpri katalog \2197";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-ink); font-size: 14px; font-weight: 600; text-align: center; padding: 12px;
}
.card .thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .45s var(--ease); }
.card:hover .thumb img { transform: scale(1.05); }
.card .meta { padding: 13px 15px 15px; display: flex; flex-direction: column; gap: 9px; }
.card .meta strong { font-size: 14.5px; font-weight: 600; line-height: 1.3; color: var(--ink); }
.card .meta a.dl { font-size: 13px; color: var(--accent-ink); font-weight: 600; }
.card .meta a.dl:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Lightbox (neuporabljen, ostane skrit) ---------- */
.lb {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20,16,12,.86);
  backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 4vmin; cursor: zoom-out;
}
.lb.open { display: flex; }
.lb img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 80px rgba(0,0,0,.5); }
.lb .x {
  position: absolute; top: 18px; right: 26px;
  font-size: 34px; color: #fff; background: none; border: 0; cursor: pointer;
}

/* ---------- Kontakt ---------- */
.contact-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.contact-grid > div {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-1);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
  transition: border-color .25s, transform .25s var(--ease), box-shadow .25s var(--ease);
}
.contact-grid > div:hover { border-color: var(--line); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-grid h3 { font-size: 12.5px; text-transform: uppercase; letter-spacing: .14em; color: var(--accent); margin-bottom: 12px; font-weight: 600; }
.contact-grid p, .contact-grid a { font-size: clamp(16px, 1.7vw, 20px); font-weight: 600; line-height: 1.4; color: var(--ink); }
.contact-grid a[href^="mailto"] { white-space: nowrap; font-size: clamp(14px, 1.7vw, 17px); }
.contact-grid a:hover { text-decoration: underline; text-underline-offset: 5px; }

/* ---------- Zemljevid ---------- */
.map-wrap {
  margin-top: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: clamp(320px, 52vh, 470px);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.map-wrap iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: grayscale(0.18) contrast(1.02) brightness(1.02);
}

/* ---------- Noga ---------- */
footer.site {
  border-top: 1px solid var(--line);
  margin-top: 70px;
  padding: 40px 0 48px;
  font-size: 14px;
  color: var(--ink-faint);
}
footer.site .frow {
  display: flex; flex-wrap: wrap; gap: 16px 40px;
  justify-content: space-between; align-items: baseline;
}
footer.site a:hover { color: var(--ink); }

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; scroll-snap-type: none; }
}

/* ---------- Odzivnost ---------- */
@media (max-width: 920px) {
  .show-card, .show-card.wide { grid-column: span 6; }
  .show-card.tall { grid-row: span 1; }
  section.block { padding: clamp(44px, 7vh, 82px) 0; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .wrap { --pad: 18px; }
  .hero { padding-top: 32px; padding-bottom: 28px; }
  .hero-visual { max-width: 100%; }
  .show-card, .show-card.wide { grid-column: span 12; }
  .show-card { min-height: 190px; }
  .nav { padding-top: 13px; padding-bottom: 13px; }
  .nav ul { gap: 15px; }
  .nav ul a { font-size: 14.5px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .cols { gap: 12px; }
  .cols > div { padding: 22px; }
  .contact-grid { gap: 12px; }
  .contact-grid > div { padding: 22px; }
  .cta-panel { padding: 32px 22px; border-radius: 20px; }
  h2.big { font-size: clamp(26px, 8.5vw, 36px); }
  .hero-stats { gap: 16px 26px; margin-top: 36px; padding-top: 24px; }
  footer.site .frow { gap: 12px 28px; }
}
@media (max-width: 380px) {
  .grid { grid-template-columns: 1fr; }
}
