/* ==========================================================================
   Niketrans Targonca Kft. — main stylesheet
   Plain CSS, no build step. Sections: tokens, base, layout, header, footer,
   components, page modules, catalogue, forms, utilities, responsive.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --c-yellow: #f7b500;
  --c-yellow-dark: #d99c00;
  --c-yellow-soft: #fff3cc;
  --c-ink: #121314;
  --c-steel: #24262b;
  --c-steel-2: #33363d;
  --c-text: #1e2024;
  --c-muted: #5c6068;
  --c-line: #d8d9d4;
  --c-line-strong: #b9bab4;
  --c-bg: #ffffff;
  --c-bg-2: #f3f3ef;
  --c-bg-3: #e9e9e3;
  --c-ok: #2e7d32;

  --font-head: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Barlow", Arial, Helvetica, sans-serif;

  --container: 1240px;
  --gutter: 20px;
  --section: clamp(56px, 8vw, 104px);
  --gap: 24px;
  --header-h: 72px;
  --topbar-h: 38px;
  --shadow: 0 10px 30px rgba(18, 19, 20, 0.12);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
strong { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--c-line); margin: 2rem 0; }
table { border-collapse: collapse; width: 100%; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--c-yellow); outline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0 0 0.5em;
  color: var(--c-ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 5.2vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.35rem, 1.8vw, 1.6rem); }
h4 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.04em; }

.lede { font-size: 1.2rem; color: var(--c-muted); max-width: 62ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-muted);
  margin-bottom: 0.9rem;
}
.eyebrow::before { content: ""; width: 28px; height: 4px; background: var(--c-yellow); }
.bg-ink .eyebrow, .hero .eyebrow { color: #cfd1d6; }

.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 1000;
  background: var(--c-yellow); color: var(--c-ink); padding: 10px 14px; font-weight: 600;
}
.skip-link:focus { top: 8px; }

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 880px; }
.section { padding: var(--section) 0; }
.section-tight { padding: calc(var(--section) * 0.6) 0; }
.section-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head .lede { margin-bottom: 0; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--gap); flex-wrap: wrap; }
.section-head-row .section-head { margin-bottom: 0; }

.grid { display: grid; gap: var(--gap); }
.grid > *, .split > *, .catalog > *, .pd > * { min-width: 0; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.split-wide { grid-template-columns: 7fr 5fr; }
.split.split-narrow { grid-template-columns: 5fr 7fr; }

.bg-2 { background: var(--c-bg-2); }
.bg-3 { background: var(--c-bg-3); }
.bg-ink { background: var(--c-ink); color: #e7e8ea; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }
.bg-ink .lede { color: #b7bac1; }
.bg-yellow { background: var(--c-yellow); color: var(--c-ink); }
.bg-yellow .eyebrow { color: var(--c-ink); }
.bg-yellow .eyebrow::before { background: var(--c-ink); }

/* --------------------------------------------------------------------------
   4. Header
   -------------------------------------------------------------------------- */
/* Header = one sticky block: dark info bar + white nav bar, with a yellow
   logo panel on the left spanning both rows. Its right edge is slanted at the
   top of the page; once the info bar has scrolled away (.is-stuck, set in
   main.js) the edge straightens and the logo shrinks to fit the nav bar. */
.site-header {
  --slant: 56px;
  --logo-h: 58px;
  --logo-ratio: 4.62;
  --edge: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  --edge-r: clamp(20px, 3vw, 48px);
  --brand-w: calc(var(--edge) + var(--logo-h) * var(--logo-ratio) + 36px + var(--slant));
  position: sticky; top: calc(var(--topbar-h) * -1); z-index: 100;
}
.brand-panel { position: absolute; top: 0; left: 0; bottom: 0; width: var(--brand-w); z-index: 2; pointer-events: none; }
.brand-fill, .brand-stripe { position: absolute; top: 0; bottom: 0; left: 0; transition: clip-path 0.35s var(--ease), opacity 0.25s var(--ease); }
.brand-fill {
  width: 100%;
  background:
    repeating-linear-gradient(-62deg, rgba(18,19,20,0.045) 0 2px, transparent 2px 14px),
    var(--c-yellow);
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--slant)) 100%, 0 100%);
}
.brand-stripe {
  width: calc(100% + 16px);
  background: var(--c-yellow);
  clip-path: polygon(calc(100% - 7px) 0, 100% 0, calc(100% - var(--slant)) 100%, calc(100% - var(--slant) - 7px) 100%);
}
.brand { position: absolute; top: 0; bottom: 0; left: var(--edge); display: flex; align-items: center; pointer-events: auto; transition: top 0.35s var(--ease); }
.brand img { height: var(--logo-h); width: auto; transition: height 0.35s var(--ease); }

.topbar { height: var(--topbar-h); background: var(--c-ink); color: #d7d9dd; font-size: 0.875rem; }
.topbar-inner, .navbar-inner {
  height: 100%; display: flex; align-items: center; gap: 16px;
  padding: 0 var(--edge-r) 0 calc(var(--brand-w) + 20px);
}
.topbar-inner { justify-content: flex-end; gap: 0; }
.topbar .topbar-right { padding-left: 22px; margin-left: 22px; border-left: 1px solid rgba(255,255,255,0.2); }
.navbar-inner { justify-content: flex-end; gap: 20px; }
.topbar ul { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.topbar li { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar svg { width: 14px; height: 14px; fill: var(--c-yellow); flex: none; }
.topbar a:hover { color: #fff; }
.topbar .tb-phone a { display: flex; align-items: center; gap: 7px; }
.topbar .topbar-right { display: flex; gap: 22px; white-space: nowrap; }
.topbar .topbar-right a { font-weight: 600; color: #fff; }
.navbar { height: var(--header-h); background: #fff; border-bottom: 1px solid var(--c-line); }

.site-header.is-stuck .brand-fill { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
.site-header.is-stuck .brand-stripe { clip-path: polygon(100% 0, calc(100% + 0px) 0, calc(100% + 0px) 100%, 100% 100%); opacity: 0; }
.site-header.is-stuck .brand { top: var(--topbar-h); }
.site-header.is-stuck .brand img { height: calc(var(--logo-h) * 0.76); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: stretch; }
.nav > ul > li { position: relative; }
.nav > ul > li > a, .nav > ul > li > button {
  display: flex; align-items: center; gap: 6px; height: var(--header-h); padding: 0 14px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--c-ink); background: none; border: 0; border-bottom: 3px solid transparent;
}
.nav > ul > li > a:hover, .nav > ul > li > button:hover,
.nav > ul > li.is-active > a { border-bottom-color: var(--c-yellow); }
.nav .caret { width: 12px; height: 12px; fill: currentColor; transition: transform 0.2s var(--ease); }
.nav .menu {
  position: absolute; top: 100%; left: 0; min-width: 300px; background: #fff; border: 1px solid var(--c-line);
  border-top: 3px solid var(--c-yellow); box-shadow: var(--shadow); padding: 10px 0; list-style: none; margin: 0; z-index: 5;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all 0.18s var(--ease);
}
.nav .menu.menu-wide { min-width: 560px; columns: 2; column-gap: 0; padding: 12px 0; }
.nav .menu.menu-wide li { break-inside: avoid; }
.nav .menu a { display: block; padding: 9px 20px; font-size: 1rem; font-weight: 500; color: var(--c-text); }
.nav .menu a:hover { background: var(--c-bg-2); color: var(--c-ink); }
.nav .menu a small { display: block; color: var(--c-muted); font-size: 0.82rem; }
.nav .menu .menu-all { border-top: 1px solid var(--c-line); margin-top: 6px; padding-top: 6px; }
.nav .menu .menu-all a { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.nav > ul > li:hover > .menu, .nav > ul > li:focus-within > .menu, .nav > ul > li.is-open > .menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav > ul > li.is-open > button .caret { transform: rotate(180deg); }
.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }
/* ---- Mega menu (desktop & tablet without burger) ------------------------ */
.mega, .mega-backdrop { display: none; }
@media (min-width: 1101px) {
  .nav > ul > li[data-mega] { position: static; }
  .nav > ul > li[data-mega] > .menu { display: none !important; }
  .nav > ul > li.is-open > button { border-bottom-color: var(--c-yellow); }
  .nav > ul > li.is-open > button .caret { transform: rotate(180deg); }

  .mega-backdrop {
    display: block; position: absolute; left: 0; right: 0; top: 100%; height: 100vh; z-index: 1;
    background: rgba(18, 19, 20, 0.5); opacity: 0; visibility: hidden; transition: opacity 0.25s var(--ease), visibility 0.25s;
  }
  .site-header.mega-open .mega-backdrop { opacity: 1; visibility: visible; }
  .szechenyi-badge { transition: transform 0.15s var(--ease), opacity 0.2s var(--ease); }
  html.mega-is-open .szechenyi-badge { opacity: 0; pointer-events: none; }

  .mega {
    display: block; position: absolute; left: 0; right: 0; top: 100%; z-index: 3;
    background: #fff; border-top: 3px solid var(--c-yellow); box-shadow: 0 24px 48px rgba(18, 19, 20, 0.18);
    max-height: calc(100vh - var(--topbar-h) - var(--header-h)); overflow-y: auto; overscroll-behavior: contain;
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity 0.22s var(--ease), transform 0.28s var(--ease), visibility 0.22s;
  }
  .site-header.is-stuck .mega { max-height: calc(100vh - var(--header-h)); }
  .nav > ul > li.is-open > .mega { opacity: 1; visibility: visible; transform: none; }
  .mega-inner { padding: 30px var(--edge-r) 34px var(--edge); }
  .mega-label { font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-muted); margin: 0 0 10px; }
  .mega h3 { font-size: 1.7rem; margin: 0; }
  .mega a { color: var(--c-ink); }
  .mega-more { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.95rem; white-space: nowrap; }
  .mega-more svg, .mega-all svg { width: 15px; height: 15px; fill: currentColor; transition: transform 0.15s var(--ease); }
  .mega-more:hover svg, .mega-all:hover svg { transform: translateX(4px); }

  /* staggered entrance */
  .mega .mega-cats li, .mega .mega-product, .mega .mega-service, .mega .mega-promo, .mega .mega-links li, .mega .mega-feature, .mega .mega-proof {
    opacity: 0; transform: translateY(8px); transition: opacity 0.3s var(--ease), transform 0.35s var(--ease);
  }
  .nav > ul > li.is-open .mega-cats li, .nav > ul > li.is-open .mega-product, .nav > ul > li.is-open .mega-service,
  .nav > ul > li.is-open .mega-promo, .nav > ul > li.is-open .mega-links li, .nav > ul > li.is-open .mega-feature, .nav > ul > li.is-open .mega-proof { opacity: 1; transform: none; }
  .mega-cats li:nth-child(2), .mega-product:nth-child(2), .mega-service:nth-child(2), .mega-links li:nth-child(2) { transition-delay: 0.03s; }
  .mega-cats li:nth-child(3), .mega-product:nth-child(3), .mega-service:nth-child(3), .mega-links li:nth-child(3) { transition-delay: 0.06s; }
  .mega-cats li:nth-child(4), .mega-product:nth-child(4), .mega-service:nth-child(4), .mega-links li:nth-child(4) { transition-delay: 0.09s; }
  .mega-cats li:nth-child(5), .mega-product:nth-child(5), .mega-service:nth-child(5), .mega-links li:nth-child(5) { transition-delay: 0.12s; }
  .mega-cats li:nth-child(n+6), .mega-product:nth-child(6), .mega-links li:nth-child(n+6) { transition-delay: 0.15s; }
  .mega-promo, .mega-feature { transition-delay: 0.1s; } .mega-proof { transition-delay: 0.16s; }

  /* Targoncák: categories | product previews | promos */
  .mega-grid-trucks { display: grid; grid-template-columns: 300px minmax(0, 1fr) 290px; gap: 36px; align-items: start; }
  .mega-cats ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--c-line); }
  .mega-cats li { border-bottom: 1px solid var(--c-line); }
  .mega-cats li a { display: flex; align-items: center; gap: 12px; padding: 6px 10px 6px 0; position: relative; }
  .mega-cats li a::before { content: ""; position: absolute; left: -12px; top: 0; bottom: 0; width: 4px; background: var(--c-yellow); transform: scaleY(0); transition: transform 0.18s var(--ease); }
  .mega-cat-img { position: relative; flex: none; width: 54px; height: 44px; background: #fff; border: 1px solid var(--c-line); overflow: hidden; }
  .mega-cat-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; }
  .mega-cat-text { flex: 1; font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; line-height: 1.15; }
  .mega-cat-text small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.8rem; color: var(--c-muted); }
  .mega-cats li a > svg { width: 14px; height: 14px; fill: var(--c-ink); opacity: 0; transform: translateX(-6px); transition: all 0.18s var(--ease); }
  .mega-cats li a:hover, .mega-cats li a.is-current { background: var(--c-bg-2); padding-left: 10px; }
  .mega-cats li a.is-current::before { transform: scaleY(1); }
  .mega-cats li a.is-current > svg, .mega-cats li a:hover > svg { opacity: 1; transform: none; }
  .mega-all { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.06em; }
  .mega-preview { display: none; }
  .mega-preview.is-current { display: block; animation: megaFade 0.25s var(--ease); }
  @keyframes megaFade { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }
  .mega-preview-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; padding-bottom: 14px; margin-bottom: 18px; border-bottom: 1px solid var(--c-line); }
  .mega-products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .mega-product { display: flex; flex-direction: column; gap: 3px; }
  .mega-product-img { display: block; aspect-ratio: 4 / 3; background: #fff; border: 1px solid var(--c-line); overflow: hidden; margin-bottom: 8px; transition: border-color 0.15s var(--ease); }
  .mega-product-img img { width: 100%; height: 100%; object-fit: contain; padding: 6%; transition: transform 0.35s var(--ease); }
  .mega-product:hover .mega-product-img { border-color: var(--c-ink); }
  .mega-product:hover .mega-product-img img { transform: scale(1.06); }
  .mega-product strong { font-family: var(--font-head); font-size: 1.05rem; line-height: 1.15; }
  .mega-product small { color: var(--c-muted); font-size: 0.82rem; }
  .mega-promos { display: grid; gap: 12px; }
  .mega-promo { display: block; position: relative; border: 1px solid var(--c-line); background: #fff; }
  .mega-promo-img { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
  .mega-promo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
  .mega-promo:hover .mega-promo-img img { transform: scale(1.05); }
  .mega-promo-text { display: block; padding: 12px 14px 14px; }
  .mega-promo-text em { display: block; font-style: normal; font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-yellow-dark); }
  .mega-promo-text strong { display: block; font-family: var(--font-head); font-size: 1.3rem; line-height: 1.1; }
  .mega-promo-text small { display: block; color: var(--c-muted); font-size: 0.85rem; margin-top: 2px; }
  .mega-promo-dark { background: var(--c-ink); border-color: var(--c-ink); }
  .mega-promo-dark .mega-promo-text strong { color: #fff; }
  .mega-promo-dark .mega-promo-text em { color: var(--c-yellow); }
  .mega-promo-dark .mega-promo-text small { color: #b7bac1; }
  .mega-promo-dark > svg { position: absolute; right: 14px; top: 14px; width: 16px; height: 16px; fill: var(--c-yellow); }
  .mega-call { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--c-yellow); }
  .mega-call svg { width: 20px; height: 20px; fill: var(--c-ink); flex: none; }
  .mega-call span { font-size: 0.85rem; line-height: 1.2; }
  .mega-call b { display: block; font-family: var(--font-head); font-size: 1.3rem; }

  /* Szolgáltatások */
  .mega-row-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; padding-bottom: 14px; margin-bottom: 20px; border-bottom: 1px solid var(--c-line); }
  .mega-services { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
  .mega-service { display: flex; flex-direction: column; gap: 4px; }
  .mega-service-img { display: block; aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 10px; background: var(--c-bg-3); border-bottom: 4px solid var(--c-yellow); }
  .mega-service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
  .mega-service:hover .mega-service-img img { transform: scale(1.06); }
  .mega-service strong { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-family: var(--font-head); font-size: 1.25rem; line-height: 1.1; }
  .mega-service strong svg { width: 15px; height: 15px; fill: var(--c-ink); flex: none; transition: transform 0.15s var(--ease); }
  .mega-service:hover strong svg { transform: translateX(4px); }
  .mega-service small { color: var(--c-muted); font-size: 0.88rem; line-height: 1.4; }
  .mega-strip { display: flex; flex-wrap: wrap; align-items: stretch; margin-top: 24px; border: 1px solid var(--c-line); }
  .mega-strip a { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-right: 1px solid var(--c-line); font-size: 0.9rem; }
  .mega-strip a svg { width: 16px; height: 16px; fill: var(--c-yellow-dark); flex: none; }
  .mega-strip a b { font-family: var(--font-head); font-size: 1.1rem; margin-left: 4px; }
  .mega-strip a:hover { background: var(--c-bg-2); }
  .mega-strip .mega-strip-cta { margin-left: auto; border-right: 0; background: var(--c-yellow); font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 1rem; }
  .mega-strip .mega-strip-cta svg { fill: var(--c-ink); }
  .mega-strip .mega-strip-cta:hover { background: var(--c-yellow-dark); }

  /* Cégünkről */
  .mega-grid-about { display: grid; grid-template-columns: 280px minmax(0, 1.25fr) minmax(0, 1fr); gap: 36px; align-items: start; }
  .mega-links ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--c-line); }
  .mega-links li { border-bottom: 1px solid var(--c-line); }
  .mega-links a { display: block; padding: 9px 0; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; transition: padding 0.15s var(--ease); }
  .mega-links a small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.82rem; color: var(--c-muted); }
  .mega-links a:hover { padding-left: 8px; box-shadow: inset 4px 0 0 var(--c-yellow); }
  .mega-feature { display: grid; grid-template-columns: 1fr; background: var(--c-ink); }
  .mega-feature-img { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
  .mega-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
  .mega-feature:hover .mega-feature-img img { transform: scale(1.04); }
  .mega-feature-text { display: block; padding: 16px 18px 18px; }
  .mega-feature-text em { display: block; font-style: normal; font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-yellow); }
  .mega-feature-text strong { display: block; color: #fff; font-family: var(--font-head); font-size: 1.45rem; line-height: 1.1; margin: 2px 0 4px; }
  .mega-feature-text small { color: #b7bac1; font-size: 0.88rem; }
  .mega-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 12px; align-items: center; justify-items: start; margin-bottom: 16px; }
  .mega-badges img { height: 60px; width: auto; max-width: 100%; object-fit: contain; }
}
@media (min-width: 1321px) and (max-width: 1600px) {
  .mega-grid-trucks { grid-template-columns: 270px minmax(0, 1fr) 250px; gap: 28px; }
  .mega-promo-text strong { font-size: 1.15rem; }
  .mega-grid-about { grid-template-columns: 250px minmax(0, 1.2fr) minmax(0, 1fr); gap: 28px; }
}
@media (min-width: 1101px) and (max-width: 1320px) {
  .mega-grid-trucks { grid-template-columns: 260px minmax(0, 1fr); gap: 28px; }
  .mega-promos { display: none; }
  .mega-services { gap: 12px; }
  .mega-service strong { font-size: 1.1rem; }
  .mega-service small { font-size: 0.82rem; }
  .mega-grid-about { grid-template-columns: 240px minmax(0, 1fr) minmax(0, 0.9fr); gap: 24px; }
  .mega-strip a { padding: 10px 12px; }
}
@media (min-width: 1101px) and (max-height: 820px) {
  .mega-inner { padding-top: 20px; padding-bottom: 22px; }
  .mega-cats li a { padding-top: 3px; padding-bottom: 3px; }
  .mega-cat-img { width: 40px; height: 40px; }
  .mega-products { gap: 12px; }
  .mega-product-img { aspect-ratio: 16 / 10; }
}

.nav-toggle {
  display: none; width: 48px; height: 48px; border: 1px solid var(--c-line); background: #fff; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--c-ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--c-ink); }
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
/* open state: the three bars fold into an X */
.nav-toggle span { transition: background-color 0.12s var(--ease) 0.06s; }
.nav-toggle span::before, .nav-toggle span::after { transition: transform 0.26s var(--ease); }
body.nav-open .nav-toggle { border-color: var(--c-ink); }
body.nav-open .nav-toggle span { background-color: transparent; transition-delay: 0s; }
body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   5. Buttons & small components
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 24px; border: 2px solid transparent;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.06em;
  line-height: 1; white-space: nowrap; transition: background 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.btn svg { width: 16px; height: 16px; fill: currentColor; }
.btn-primary { background: var(--c-yellow); color: var(--c-ink); border-color: var(--c-yellow); }
.btn-primary:hover { background: var(--c-yellow-dark); border-color: var(--c-yellow-dark); }
.btn-dark { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.btn-dark:hover { background: var(--c-steel-2); border-color: var(--c-steel-2); }
.btn-outline { background: transparent; color: var(--c-ink); border-color: var(--c-ink); }
.btn-outline:hover { background: var(--c-ink); color: #fff; }
.btn-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-light:hover { background: #fff; color: var(--c-ink); border-color: #fff; }
.btn-sm { min-height: 42px; padding: 0 16px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-ink); }
.link-arrow svg { width: 16px; height: 16px; fill: currentColor; transition: transform 0.15s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.bg-ink .link-arrow { color: var(--c-yellow); }

.tag {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 5px 10px; background: var(--c-ink); color: #fff;
}
.tag-yellow { background: var(--c-yellow); color: var(--c-ink); }
.tag-outline { background: transparent; border: 1px solid var(--c-line-strong); color: var(--c-muted); }

.icon-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.icon-list li { position: relative; padding-left: 30px; margin-bottom: 10px; }
.icon-list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; background: var(--c-yellow);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.bg-ink .icon-list li::before { background: var(--c-yellow); }

.breadcrumb { font-size: 0.9rem; color: var(--c-muted); padding: 14px 0; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: var(--c-line-strong); }
.breadcrumb a:hover { color: var(--c-ink); text-decoration: underline; }

/* --------------------------------------------------------------------------
   6. Hero & page header
   -------------------------------------------------------------------------- */
.hero { position: relative; min-height: min(78vh, 760px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; background: var(--c-ink); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 55%; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18,19,20,0.72) 0%, rgba(18,19,20,0.35) 55%, rgba(18,19,20,0.1) 100%),
    linear-gradient(180deg, rgba(18,19,20,0.2) 0%, rgba(18,19,20,0.45) 55%, rgba(18,19,20,0.85) 100%);
}
.hero-video-toggle {
  position: absolute; right: var(--gutter); top: 20px; z-index: 2; width: 44px; height: 44px;
  display: grid; place-items: center; background: rgba(18,19,20,0.55); border: 1px solid rgba(255,255,255,0.45); color: #fff;
}
.hero-video-toggle:hover { background: var(--c-ink); border-color: #fff; }
.hero-video-toggle .i-pause { width: 12px; height: 14px; border-left: 4px solid #fff; border-right: 4px solid #fff; }
.hero-video-toggle .i-play { display: none; width: 0; height: 0; border-style: solid; border-width: 7px 0 7px 12px; border-color: transparent transparent transparent #fff; margin-left: 3px; }
.hero-video-toggle[aria-pressed="true"] .i-pause { display: none; }
.hero-video-toggle[aria-pressed="true"] .i-play { display: block; }
.hero .container { position: relative; z-index: 1; padding-top: 120px; padding-bottom: clamp(48px, 6vw, 80px); }
.hero h1 { color: #fff; max-width: 14ch; margin-bottom: 0.4em; }
/* Home hero title: always exactly three lines. The longest line
   ("Targonca értékesítés,") is ~8.02em wide in Barlow Condensed 800,
   so the size is derived from the available width (divisor 8.3 = margin). */
.hero h1.hero-title {
  max-width: none;
  font-size: min(4.8rem, calc((min(100vw, var(--container)) - 2 * var(--gutter)) / 8.3));
}
.hero h1.hero-title span, .hero h1.hero-title em { display: block; white-space: nowrap; }
.hero h1 em { font-style: normal; color: var(--c-yellow); }
.hero p { font-size: clamp(1.1rem, 1.6vw, 1.3rem); max-width: 56ch; color: #dfe1e5; margin-bottom: 1.6em; }
/* Hero label: always one line. Text is ~25.3em wide at 0.12em tracking,
   plus the 28px bar and 10px gap; on phones tracking/bar tighten (~22.4em). */
.hero .eyebrow {
  max-width: none; white-space: nowrap; margin-bottom: 1rem; color: #cfd1d6;
  font-size: min(1rem, calc((min(100vw, var(--container)) - 2 * var(--gutter) - 38px) / 25.8));
}
.hero-note { font-size: 0.9rem; color: #b7bac1; margin-top: 2rem; }

.trust-strip { background: #fff; border-bottom: 1px solid var(--c-line); }
.trust-strip .container { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-item { display: flex; align-items: center; gap: 16px; padding: 22px 20px 22px 0; border-right: 1px solid var(--c-line); min-height: 96px; }
.trust-item + .trust-item { padding-left: 20px; }
.trust-item:last-child { border-right: 0; }
.trust-badge { flex: none; width: 104px; height: 72px; display: flex; align-items: center; justify-content: center; }
.trust-badge img { width: auto; height: auto; max-width: 104px; max-height: 72px; object-fit: contain; }
@media (min-width: 1101px) {
  .trust-item { flex-direction: column; justify-content: flex-start; text-align: center; gap: 14px; padding: 28px 18px 26px; }
  .trust-item + .trust-item { padding-left: 18px; }
  .trust-badge { width: 160px; height: 88px; }
  .trust-badge img { max-width: 160px; max-height: 88px; }
  .trust-item strong { font-size: 1.15rem; margin-bottom: 4px; }
}
a.trust-item:hover .trust-badge img { transform: translateY(-2px); }
.trust-badge img { transition: transform 0.15s var(--ease); }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 1.1rem; line-height: 1.1; text-transform: uppercase; letter-spacing: 0.03em; }
.trust-item small { color: var(--c-muted); font-size: 0.85rem; line-height: 1.3; display: block; }

.page-header { background: var(--c-ink); color: #fff; padding: clamp(40px, 6vw, 72px) 0; position: relative; overflow: hidden; }
.page-header h1 { color: #fff; margin-bottom: 0.3em; }
.page-header .lede { color: #b7bac1; margin-bottom: 0; }
.page-header .breadcrumb { color: #9a9ea6; padding-top: 0; }
.page-header .breadcrumb a:hover { color: #fff; }
.page-header-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.page-header .container { position: relative; }
.page-header.has-img { min-height: 360px; display: flex; align-items: flex-end; }

/* --------------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------------- */
.card { background: #fff; border: 1px solid var(--c-line); display: flex; flex-direction: column; position: relative; transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease); }
.card:hover { border-color: var(--c-ink); box-shadow: var(--shadow); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--c-bg-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.card:hover .card-media img { transform: scale(1.03); }
.card-media.contain img { object-fit: contain; padding: 12%; }
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 0.4em; }
.card-body p { color: var(--c-muted); margin-bottom: 1rem; font-size: 1rem; }
.card-body .link-arrow { margin-top: auto; }
.card-body .meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 0.9rem; color: var(--c-muted); margin-bottom: 0.9rem; }
.card-body .meta b { color: var(--c-ink); font-weight: 600; }
.card > a.card-link::after { content: ""; position: absolute; inset: 0; }
.card .tag { position: absolute; top: 12px; left: 12px; z-index: 1; }

.service-card { border-top: 4px solid var(--c-yellow); }
.service-card .card-body { padding-top: 26px; }
.service-card .num { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--c-line-strong); line-height: 1; margin-bottom: 8px; }

.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon { flex: none; width: 52px; height: 52px; background: var(--c-yellow); display: grid; place-items: center; }
.feature-icon svg { width: 26px; height: 26px; fill: var(--c-ink); }
.feature h3 { font-size: 1.3rem; margin-bottom: 0.3em; }
.feature p { color: var(--c-muted); margin: 0; font-size: 1rem; }
.bg-ink .feature p { color: #b7bac1; }

/* --------------------------------------------------------------------------
   8. Page modules
   -------------------------------------------------------------------------- */
/* numbers band */
.stats-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: stretch; }
.stats-split > * { min-width: 0; }
.stats-photo { margin: 0; position: relative; min-height: 380px; background: var(--c-steel); }
.stats-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 55% 60%; }
.stats-photo figcaption {
  position: absolute; left: 0; bottom: 0; background: var(--c-yellow); color: var(--c-ink); padding: 10px 16px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.stats.stats-2col { grid-template-columns: 1fr 1fr; }
.stats.stats-2col .stat { border-right: 0; border-bottom: 1px solid var(--c-steel-2); }
.stats.stats-2col .stat:nth-child(odd) { border-right: 1px solid var(--c-steel-2); }
.stats.stats-2col .stat:last-child { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
.stats { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--c-steel-2); }
.stat { padding: 28px 24px; border-right: 1px solid var(--c-steel-2); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: var(--c-yellow); }
.stat span { display: block; margin-top: 8px; color: #c9ccd2; font-size: 0.95rem; }

/* media (video) */
.video-facade { position: relative; aspect-ratio: 16 / 9; background: var(--c-ink); overflow: hidden; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-play {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 18px; color: #fff;
  display: flex; align-items: flex-end; justify-content: flex-start;
  background: linear-gradient(180deg, rgba(18,19,20,0) 60%, rgba(18,19,20,0.45) 100%);
}
.play-badge { display: inline-flex; align-items: stretch; box-shadow: var(--shadow); transition: transform 0.15s var(--ease); }
.play-icon { width: 52px; height: 52px; background: var(--c-yellow); display: grid; place-items: center; }
.play-icon svg { width: 22px; height: 22px; fill: var(--c-ink); margin-left: 3px; }
.play-label {
  display: flex; align-items: center; padding: 0 16px; background: var(--c-ink); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap;
}
.video-play:hover .play-badge { transform: translateY(-2px); }
.video-play:hover .play-icon { background: var(--c-yellow-dark); }
.video-facade img { transition: opacity 0.2s var(--ease); }
.video-facade:hover img { opacity: 1; }
.video-caption { display: flex; gap: 14px; align-items: center; padding: 14px 0 0; font-size: 0.95rem; color: var(--c-muted); }
.bg-ink .video-caption { color: #b7bac1; }

/* timeline */
.timeline { list-style: none; margin: 0; padding: 0; border-left: 3px solid var(--c-yellow); }
.timeline li { position: relative; padding: 0 0 28px 32px; }
.timeline li::before { content: ""; position: absolute; left: -10px; top: 6px; width: 17px; height: 17px; background: var(--c-ink); border: 3px solid var(--c-yellow); }
.timeline b { display: block; font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.timeline p { margin: 0; color: var(--c-muted); }

/* credential / proof blocks */
.proof { background: #fff; border: 1px solid var(--c-line); padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.proof img { height: 72px; width: auto; max-width: 100%; object-fit: contain; align-self: flex-start; }
.proof-grid { grid-template-columns: repeat(3, 1fr); }
.badge-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin: 4px 0 24px; }
.badge-row img { height: 64px; width: auto; max-width: 140px; object-fit: contain; }
.badge-row a img { transition: transform 0.15s var(--ease); }
.badge-row a:hover img { transform: translateY(-2px); }
.brand-box .brand-badge { display: block; height: 88px; width: auto; margin-bottom: 18px; }
.proof h3 { margin: 0; font-size: 1.35rem; }
.proof p { margin: 0; color: var(--c-muted); font-size: 0.98rem; }
.proof .link-arrow { font-size: 0.95rem; margin-top: auto; }
.partner-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; min-height: 64px; padding-bottom: 14px; border-bottom: 1px solid var(--c-line); }
.proof .partner-logos img { height: 30px; width: auto; max-width: 128px; object-fit: contain; align-self: center; }
.proof .partner-logos img:only-child { height: 44px; max-width: 170px; }
.proof .partner-badge img, .proof .partner-badge img:only-child { height: 56px; max-width: 150px; }

/* team table */
.team-table th, .team-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--c-line); vertical-align: top; }
.team-table th { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.95rem; color: var(--c-muted); }
.team-table td a { color: var(--c-ink); text-decoration: underline; text-decoration-color: var(--c-line-strong); }

/* team directory */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); align-items: start; }
.team-grid > * { min-width: 0; }
.team-group { background: #fff; border: 1px solid var(--c-line); border-top: 4px solid var(--c-yellow); }
.team-vezetoseg { grid-column: 1 / -1; border-top-color: var(--c-ink); }
.team-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px 24px; flex-wrap: wrap; padding: 22px 24px 18px; border-bottom: 1px solid var(--c-line); }
.team-head h3 { margin: 0 0 4px; font-size: 1.5rem; }
.team-head p { margin: 0; color: var(--c-muted); font-size: 0.95rem; }
.team-contact { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.team-contact a, .person-links a { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.95rem; color: var(--c-ink); white-space: nowrap; }
.team-contact a svg, .person-links a svg { width: 15px; height: 15px; fill: var(--c-yellow-dark); flex: none; }
.team-contact a:hover span, .person-links a:hover span { text-decoration: underline; text-underline-offset: 3px; }
.team-contact a:first-child { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; letter-spacing: 0.02em; }
.team-list { list-style: none; margin: 0; padding: 0 24px; }
.person { display: flex; justify-content: space-between; align-items: center; gap: 8px 20px; flex-wrap: wrap; padding: 14px 0; border-bottom: 1px solid var(--c-line); }
.person:last-child { border-bottom: 0; }
.person-id strong { display: block; font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; line-height: 1.15; color: var(--c-ink); }
.person-id span { display: block; color: var(--c-muted); font-size: 0.92rem; }
.person-links { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.person-links a { font-weight: 500; font-size: 0.92rem; }
.team-vezetoseg .team-list { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; }
.team-vezetoseg .person { flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 18px 24px; border-bottom: 0; border-right: 1px solid var(--c-line); }
.team-vezetoseg .person:last-child { border-right: 0; }
.team-vezetoseg .person-links { align-items: flex-start; }
.team-ertekesites .team-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; }
.team-ertekesites .person { align-items: flex-start; align-self: stretch; }
#csapat .section-head-row { margin-bottom: clamp(28px, 4vw, 44px); }
.team-ertekesites .person:nth-last-child(2) { border-bottom: 0; }
@media (max-width: 1100px) {
  .team-vezetoseg .team-list { grid-template-columns: 1fr 1fr; }
  .team-vezetoseg .person:nth-child(2) { border-right: 0; }
  .team-vezetoseg .person:nth-child(-n+2) { border-bottom: 1px solid var(--c-line); }
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .team-head { padding: 18px 16px 14px; }
  .team-contact { align-items: flex-start; }
  .team-list { padding: 0 16px; }
  .team-vezetoseg .team-list, .team-ertekesites .team-list { grid-template-columns: 1fr; padding: 0 16px; }
  .team-vezetoseg .person { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--c-line); }
  .team-vezetoseg .person:last-child, .team-ertekesites .person:last-child { border-bottom: 0; }
  .team-ertekesites .person:nth-last-child(2) { border-bottom: 1px solid var(--c-line); }
  .person { flex-direction: column; align-items: flex-start; }
  .person-links { align-items: flex-start; }
}

/* dept contact cards */
.dept { border: 1px solid var(--c-line); background: #fff; padding: 24px; }
.dept h3 { font-size: 1.35rem; margin-bottom: 8px; }
.dept a { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-weight: 500; }
.dept a svg { width: 16px; height: 16px; fill: var(--c-yellow); flex: none; }
.dept a:hover { color: var(--c-yellow-dark); }
.dept .dept-names { color: var(--c-muted); font-size: 0.95rem; margin-top: 10px; }

/* brand band */
.brand-band { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.brand-box { border: 1px solid var(--c-line); padding: 32px; background: #fff; }
.brand-box .brand-name { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; line-height: 1; margin-bottom: 4px; }
.brand-box .since { color: var(--c-muted); font-size: 0.95rem; margin-bottom: 14px; display: block; }

/* offer cards */
.offer { border: 1px solid var(--c-line); background: #fff; padding: 26px; display: flex; flex-direction: column; gap: 10px; }
.offer .price { font-family: var(--font-head); font-weight: 800; font-size: 2rem; line-height: 1; }
.offer .price small { font-size: 1rem; font-weight: 600; color: var(--c-muted); }
.offer ul { margin: 0; padding-left: 1.1em; color: var(--c-muted); font-size: 0.95rem; }
.offer .btn { margin-top: auto; align-self: flex-start; }

/* location (sitewide, above the footer) */
.location { background: #fff; border-top: 1px solid var(--c-line); padding: var(--section) 0; }
.location-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 5vw, 64px); align-items: stretch; }
.location-grid > * { min-width: 0; }
.location-info h2 { margin-bottom: 0.35em; }
.location-lede { color: var(--c-muted); font-size: 1.1rem; max-width: 46ch; margin-bottom: 1.6rem; }
.location-details { margin: 0 0 1.8rem; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--c-line); }
.location-details > div { padding: 16px 16px 16px 0; border-bottom: 1px solid var(--c-line); }
.location-details > div:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--c-line); }
.location-details dt { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-muted); margin-bottom: 6px; }
.location-details dt svg { width: 15px; height: 15px; fill: var(--c-yellow-dark); flex: none; }
.location-details dd { margin: 0; font-weight: 500; line-height: 1.45; }
.location-details dd a { text-decoration: underline; text-decoration-color: var(--c-line-strong); text-underline-offset: 3px; }
.location-details dd a:hover { text-decoration-color: var(--c-ink); }
.location-bases { margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--c-line); }
.location-bases strong { display: block; font-family: var(--font-head); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-muted); margin-bottom: 10px; }
.location-bases ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.location-bases li { padding: 6px 12px; border: 1px solid var(--c-line-strong); font-weight: 500; font-size: 0.95rem; }
.location-map { position: relative; min-height: 460px; background: var(--c-bg-3); border: 1px solid var(--c-line); }
.location-map::before { content: ""; position: absolute; left: -10px; bottom: -10px; width: 34%; height: 34%; background: var(--c-yellow); z-index: 0; }
.location-map iframe { position: relative; z-index: 1; display: block; width: 100%; height: 100%; min-height: 460px; border: 0; }
.location-legend {
  position: absolute; top: 12px; left: 12px; z-index: 2; margin: 0; max-width: calc(100% - 24px);
  display: flex; align-items: center; gap: 10px; padding: 9px 14px; background: var(--c-ink); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.2;
  pointer-events: none; box-shadow: var(--shadow);
}
.location-legend em { font-style: normal; }
.location-legend span { width: 12px; height: 12px; flex: none; background: #ea4335; border: 2px solid #fff; border-radius: 50%; }

/* Széchenyi 2020 infoblokk: fixed bottom-right on every page */
.szechenyi-badge { position: fixed; right: 0; bottom: 0; z-index: 90; display: block; width: 230px; line-height: 0; filter: drop-shadow(-2px -2px 10px rgba(18,19,20,0.18)); transform-origin: 100% 100%; transition: transform 0.2s var(--ease); }
.szechenyi-badge img { width: 100%; height: auto; }
.szechenyi-badge:hover { transform: scale(1.07); }   /* grows in place, stays anchored in the corner */
.site-footer { padding-bottom: 140px; }
.project-table th { width: 38%; font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 0.95rem; color: var(--c-muted); font-weight: 500; }
.project-table td { font-size: 1rem; }

/* CTA band */
.cta-band { background: var(--c-yellow); color: var(--c-ink); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: var(--gap); flex-wrap: wrap; padding-top: 44px; padding-bottom: 44px; }
.cta-band h2 { margin: 0 0 6px; }
.cta-band p { margin: 0; font-size: 1.1rem; }

/* prose */
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul li { margin-bottom: 0.35em; }
.prose table td, .prose table th { padding: 10px 12px; border-bottom: 1px solid var(--c-line); text-align: left; vertical-align: top; }
.prose table th { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.9rem; color: var(--c-muted); }

/* photo strip */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.photo-strip figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--c-bg-3); }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; }

/* image block with caption */
.figure { margin: 0; }
.figure img { width: 100%; height: auto; }
.figure figcaption { font-size: 0.9rem; color: var(--c-muted); padding-top: 10px; }
.img-frame { position: relative; display: block; line-height: 0; }
.img-frame::after { content: ""; position: absolute; left: -12px; bottom: -12px; width: 40%; height: 40%; background: var(--c-yellow); z-index: -1; }

/* --------------------------------------------------------------------------
   9. Catalogue
   -------------------------------------------------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cat-card { border: 1px solid var(--c-line); background: #fff; position: relative; transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease); }
.cat-card:hover { border-color: var(--c-ink); box-shadow: var(--shadow); }
.cat-card .cat-media { position: relative; aspect-ratio: 1; background: #fff; overflow: hidden; }
.cat-card .cat-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 14%; }
.cat-card .cat-body { padding: 16px 18px 18px; }
.cat-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.cat-card small { color: var(--c-muted); display: block; font-size: 0.9rem; }
.cat-card a::after { content: ""; position: absolute; inset: 0; }

.catalog { display: grid; grid-template-columns: 280px 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.catalog-side { position: sticky; top: calc(var(--header-h) + 20px); }
.side-block { border: 1px solid var(--c-line); background: #fff; margin-bottom: 20px; }
.side-block h4 { margin: 0; padding: 14px 18px; border-bottom: 1px solid var(--c-line); font-size: 0.95rem; }
.side-nav { list-style: none; margin: 0; padding: 8px 0; }
.side-nav a { display: flex; justify-content: space-between; align-items: center; padding: 9px 18px; font-weight: 500; font-size: 0.98rem; }
.side-nav a:hover { background: var(--c-bg-2); }
.side-nav li.is-active a { background: var(--c-yellow-soft); border-left: 4px solid var(--c-yellow); padding-left: 14px; font-weight: 600; }
.side-nav a small { color: var(--c-muted); font-size: 0.85rem; }
.filters { padding: 14px 18px; display: flex; flex-direction: column; gap: 10px; }
.filters label { display: flex; align-items: center; gap: 10px; font-size: 0.98rem; cursor: pointer; }
.filters input { width: 18px; height: 18px; accent-color: var(--c-ink); }
.filters .reset { font-size: 0.9rem; color: var(--c-muted); text-decoration: underline; background: none; border: 0; padding: 0; align-self: flex-start; margin-top: 4px; }

.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-bottom: 18px; border-bottom: 1px solid var(--c-line); margin-bottom: 22px; color: var(--c-muted); font-size: 0.95rem; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.product-grid > * { min-width: 0; }
.product-card { border: 1px solid var(--c-line); background: #fff; position: relative; display: flex; flex-direction: column; transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease); }
.product-card:hover { border-color: var(--c-ink); box-shadow: var(--shadow); }
.product-card .pc-media { position: relative; aspect-ratio: 4 / 3; background: #fff; overflow: hidden; }
.product-card .pc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 8%; }
.product-card .pc-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.product-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.product-card .specs { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 6px 10px; font-size: 0.88rem; color: var(--c-muted); margin-bottom: 14px; }
.product-card .specs > * { min-width: 0; }
.product-card .specs b { hyphens: auto; overflow-wrap: break-word; }
.product-card .specs b { display: block; color: var(--c-ink); font-weight: 600; font-size: 0.95rem; line-height: 1.25; }
@media (min-width: 1101px) and (max-width: 1340px) {
  /* narrow 3-up cards: stack the spec pairs so the values keep one line */
  .product-card .specs { grid-template-columns: minmax(0, 1fr); gap: 4px; }
}
.product-card .pc-actions { margin-top: auto; display: flex; gap: 10px; align-items: center; justify-content: space-between; }
.product-card .pc-actions .btn { position: relative; z-index: 1; }
.product-card > a.stretch::after { content: ""; position: absolute; inset: 0; }
.product-card.is-hidden { display: none; }
.empty-note { padding: 40px; border: 1px dashed var(--c-line-strong); text-align: center; color: var(--c-muted); display: none; }

/* product detail */
.pd { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.pd-gallery { min-width: 0; max-width: 100%; }
.pd-gallery .pd-main { position: relative; aspect-ratio: 4 / 3; background: #fff; border: 1px solid var(--c-line); overflow: hidden; }
.pd-gallery .pd-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 3%; }
.pd-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; display: grid; place-items: center;
  background: rgba(255,255,255,0.92); border: 1px solid var(--c-line); color: var(--c-ink); z-index: 1;
}
.pd-nav svg { width: 18px; height: 18px; fill: currentColor; }
.pd-nav:hover { background: var(--c-yellow); border-color: var(--c-yellow); }
.pd-prev { left: 10px; } .pd-prev svg { transform: rotate(180deg); }
.pd-next { right: 10px; }
.pd-count { position: absolute; right: 10px; bottom: 10px; background: var(--c-ink); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; padding: 4px 9px; }
/* thumbnail strip: fixed-size tiles in one scrollable row, never wider than the gallery */
.pd-thumbs {
  display: flex; gap: 8px; margin-top: 8px; overflow-x: auto; overflow-y: hidden; overscroll-behavior-x: contain;
  scroll-snap-type: x proximity; scrollbar-width: thin; padding-bottom: 6px; max-width: 100%;
}
.pd-thumbs button { flex: 0 0 108px; width: 108px; aspect-ratio: 4 / 3; border: 1px solid var(--c-line); background: #fff; padding: 5px; scroll-snap-align: start; }
.pd-thumbs button { position: relative; }
.pd-thumbs button img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.pd-thumbs button.is-active { border-color: var(--c-ink); box-shadow: inset 0 0 0 1px var(--c-ink); }
.pd-thumbs button:hover { border-color: var(--c-ink); }
.pd-thumbs::-webkit-scrollbar { height: 6px; }
.pd-thumbs::-webkit-scrollbar-thumb { background: var(--c-line-strong); }
.pd-aside { min-width: 0; }
.pd-video + .pd-video { margin-top: 24px; }
.spec-wrap { border: 1px solid var(--c-line); }
.spec-table { min-width: 100%; width: max-content; }
.spec-table th, .spec-table td { padding: 10px 14px; border-bottom: 1px solid var(--c-line); text-align: left; white-space: nowrap; font-size: 0.95rem; }
.spec-table thead th { background: var(--c-ink); color: #fff; font-family: var(--font-head); font-weight: 700; letter-spacing: 0.04em; font-size: 1rem; }
.spec-table tbody th { font-weight: 500; color: var(--c-text); background: #fff; }
.spec-table tbody th small { color: var(--c-muted); font-size: 0.82rem; }
.spec-table tbody tr:nth-child(even) td, .spec-table tbody tr:nth-child(even) th { background: var(--c-bg-2); }
.spec-table th:first-child { position: sticky; left: 0; z-index: 1; min-width: 220px; white-space: normal; box-shadow: 1px 0 0 var(--c-line); }
.spec-table thead th:first-child { background: var(--c-ink); }
.scroll-hint { display: none; font-size: 0.85rem; color: var(--c-muted); margin: 0 0 8px; }
@media (max-width: 900px) { .scroll-hint { display: block; } }
.pd-info h1 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.pd-info .pd-brand { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-muted); font-weight: 700; margin-bottom: 6px; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--c-line); margin: 20px 0; }
.spec-grid div { padding: 14px 16px; border-bottom: 1px solid var(--c-line); }
.spec-grid div:nth-child(odd) { border-right: 1px solid var(--c-line); }
.spec-grid div:nth-last-child(-n+2) { border-bottom: 0; }
.spec-grid small { display: block; color: var(--c-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-head); font-weight: 700; }
.spec-grid b { font-size: 1.15rem; font-weight: 600; }
.pd-cta { background: var(--c-bg-2); border: 1px solid var(--c-line); padding: 22px; margin-top: 8px; }
.pd-cta p { margin: 0 0 14px; color: var(--c-muted); font-size: 0.98rem; }
.pd-cta .btn-group { margin-bottom: 14px; }
.pd-cta .pd-contact { font-size: 0.95rem; }
.pd-cta .pd-contact a { font-weight: 600; }
.pd-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--c-line); margin: clamp(32px, 5vw, 56px) 0 28px; overflow-x: auto; }
.pd-tabs a { padding: 12px 18px; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 1.05rem; color: var(--c-muted); border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap; }
.pd-tabs a:hover { color: var(--c-ink); border-bottom-color: var(--c-yellow); }
.pd-section { scroll-margin-top: calc(var(--header-h) + 24px); margin-bottom: clamp(32px, 5vw, 56px); }
.model-table th, .model-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--c-line); }
.model-table th { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.9rem; color: var(--c-muted); background: var(--c-bg-2); }
.model-table tr:hover td { background: var(--c-yellow-soft); }

/* product detail: lower two-column area */
.pd-lower { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.pd-lower > * { min-width: 0; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-wrap table { min-width: 520px; }

/* used trucks */
.used-card .tag { position: absolute; top: 12px; left: 12px; }
.used-card .price { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; line-height: 1; }
.used-card .price small { font-size: 0.85rem; color: var(--c-muted); font-weight: 600; font-family: var(--font-body); }

/* --------------------------------------------------------------------------
   10. Forms
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form > *, .form-row > * { min-width: 0; }
.field input, .field select, .field textarea { min-width: 0; }
.field label { display: block; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.9rem; margin-bottom: 6px; }
.field label .req { color: #c62828; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--c-line-strong); background: #fff; font: inherit; color: var(--c-text);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--c-yellow); outline-offset: 0; border-color: var(--c-ink); }
.field .hint { font-size: 0.85rem; color: var(--c-muted); margin-top: 4px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; color: var(--c-muted); }
.check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--c-ink); flex: none; }
.form-note { font-size: 0.9rem; color: var(--c-muted); }
.form-status { display: none; padding: 14px 16px; border: 1px solid var(--c-ok); color: var(--c-ok); background: #eef7ee; }
.form-status.is-visible { display: block; }
.form-panel { background: #fff; border: 1px solid var(--c-line); padding: clamp(24px, 3vw, 40px); }

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--c-ink); color: #c9ccd2; font-size: 0.95rem; }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 0 48px; border-bottom: 1px solid var(--c-steel-2); }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a:hover { color: var(--c-yellow); }
.footer-brand img { height: 40px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: #a8acb4; max-width: 38ch; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 15px; height: 15px; fill: var(--c-yellow); flex: none; margin-top: 4px; }
.footer-badges { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; padding: 28px 0; border-bottom: 1px solid var(--c-steel-2); }
.footer-badges img { height: 60px; width: auto; max-width: 140px; object-fit: contain; }
.footer-badges a:first-child img { max-width: none; }
.footer-badges a img { transition: transform 0.15s var(--ease); }
.footer-badges a:hover img { transform: translateY(-2px); }
.footer-badges .badge-note { font-size: 0.85rem; color: #a8acb4; max-width: 46ch; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 22px 0; font-size: 0.85rem; color: #8d919a; }
.footer-bottom ul { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom li { margin: 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border: 1px solid var(--c-steel-2); display: grid; place-items: center; }
.footer-social a:hover { border-color: var(--c-yellow); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }

/* --------------------------------------------------------------------------
   12. Utilities
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; } .mb-2 { margin-bottom: 2rem; }
.mt-3 { margin-top: 3rem; }
.muted { color: var(--c-muted); }
.small { font-size: 0.9rem; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.note { border-left: 4px solid var(--c-yellow); background: var(--c-yellow-soft); padding: 14px 18px; font-size: 0.95rem; }
.placeholder-note { border: 1px dashed var(--c-line-strong); background: repeating-linear-gradient(-45deg, transparent 0 10px, rgba(0,0,0,0.025) 10px 20px); padding: 14px 18px; font-size: 0.9rem; color: var(--c-muted); }

/* --------------------------------------------------------------------------
   13. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3) { border-right: 0; }
  .stat:nth-child(-n+3) { border-bottom: 1px solid var(--c-steel-2); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid var(--c-line); }
  .trust-item:nth-child(even) { border-right: 0; }
  .trust-item:nth-child(odd) { padding-left: 0; }
  .trust-item:last-child { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav .menu.menu-wide { min-width: 480px; }
}

@media (max-width: 1599px) {
  .site-header { --logo-h: 52px; }
  .topbar .tb-address { display: none; }
}
@media (max-width: 1360px) {
  .site-header { --logo-h: 46px; --slant: 48px; }
  .nav > ul > li > a, .nav > ul > li > button { padding: 0 10px; font-size: 1rem; }
  .header-cta .btn { padding: 0 14px; }
  .topbar .tb-hours { display: none; }
}

@media (max-width: 1100px) {
  :root { --header-h: 64px; }
  .site-header { --logo-h: 40px; --slant: 40px; }
  .nav-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .topbar .tb-mail { display: none; }
  .nav {
    position: fixed; top: calc(var(--topbar-h) + var(--header-h)); left: 0; right: 0; bottom: 0; background: #fff; overflow-y: auto;
    display: none; padding: 8px 0 40px; border-top: 1px solid var(--c-line);
  }
  .site-header.is-stuck .nav { top: var(--header-h); }
  body.nav-open .nav { display: block; }
  body.nav-open { overflow: hidden; }
  .nav > ul { flex-direction: column; align-items: stretch; }
  .nav > ul > li > a, .nav > ul > li > button { height: auto; padding: 14px var(--gutter); width: 100%; justify-content: space-between; border-bottom: 1px solid var(--c-line); font-size: 1.25rem; }
  .nav .menu, .nav .menu.menu-wide { position: static; min-width: 0; columns: 1; box-shadow: none; border: 0; border-bottom: 1px solid var(--c-line); background: var(--c-bg-2); padding: 6px 0; display: none; opacity: 1; visibility: visible; transform: none; }
  .nav > ul > li.is-open > .menu { display: block; }
  .nav > ul > li.is-open > .menu { display: block; }
  .nav .menu a { padding: 10px calc(var(--gutter) + 12px); }
  .nav .mobile-cta { padding: 20px var(--gutter); display: grid; gap: 10px; }
  .split, .split.split-wide, .split.split-narrow { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .catalog { grid-template-columns: 1fr; }
  .catalog-side { position: static; }
  .pd, .pd-lower { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-split { grid-template-columns: 1fr; }
  .stats-photo { min-height: 0; aspect-ratio: 4 / 3; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map, .location-map iframe { min-height: 380px; }
  .brand-band { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 70vh; }
  .hero .container { padding-top: 80px; }
}
@media (min-width: 1101px) { .nav .mobile-cta { display: none; } }

@media (max-width: 600px) {
  :root { --gutter: 16px; }
  body { font-size: 1rem; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-card .cat-body { padding: 12px 12px 14px; }
  .cat-card h3 { font-size: 1.05rem; }
  .product-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--c-steel-2); }
  .stat:nth-child(odd) { border-right: 1px solid var(--c-steel-2); }
  .trust-strip .container { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--c-line); padding-left: 0; min-height: 0; }
  .trust-item + .trust-item { padding-left: 0; }
  .trust-item:last-child { border-bottom: 0; grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 44px 0 32px; }
  .btn { width: 100%; }
  .btn-group .btn { width: auto; flex: 1; }
  .site-header { --logo-h: 34px; --slant: 32px; }
  .topbar .topbar-right { display: none; }
  .topbar-inner, .navbar-inner { padding-left: calc(var(--brand-w) + 12px); }
  .cta-band .container { padding-top: 32px; padding-bottom: 32px; }
  .spec-grid { grid-template-columns: 1fr; }
  .play-icon { width: 44px; height: 44px; }
  .play-label { font-size: 0.9rem; padding: 0 12px; }
  .video-play { padding: 12px; }
  .hero-video-toggle { top: 14px; width: 40px; height: 40px; }
  .szechenyi-badge { width: 150px; }
  .site-footer { padding-bottom: 96px; }
  .location-details { grid-template-columns: 1fr; }
  .location-details > div:nth-child(even) { padding-left: 0; border-left: 0; }
  .location-map, .location-map iframe { min-height: 320px; }
  .location-map::before { display: none; }
  .location-legend { font-size: 0.85rem; padding: 7px 10px; }
  .location-legend .legend-extra { display: none; }
  .spec-grid div:nth-child(odd) { border-right: 0; }
  .spec-grid div:nth-last-child(-n+2) { border-bottom: 1px solid var(--c-line); }
  .spec-grid div:last-child { border-bottom: 0; }
  .pd-thumbs button { flex-basis: 84px; width: 84px; }
  .pd-nav { width: 38px; height: 38px; }
  .spec-table th:first-child { min-width: 132px; max-width: 44vw; }
  .spec-table th, .spec-table td { padding: 9px 10px; font-size: 0.9rem; }
  .hero h1 { max-width: none; }
}

@media (max-width: 400px) {
  .stat { padding: 20px 14px; }
  .stat b { font-size: 2.1rem; }
  .stat span { font-size: 0.88rem; }
}

@media (max-width: 600px) {
  .prose table th, .prose table td { display: block; overflow-wrap: anywhere; }
  .prose table th { padding-bottom: 2px; border-bottom: 0; }
  .prose table td { padding-top: 0; }
}

@media (max-width: 380px) {
  .site-header { --logo-h: 30px; --slant: 28px; --edge-r: var(--gutter); }
  .topbar { font-size: 0.8rem; }
}
@media (max-width: 340px) {
  .topbar .tb-phone span { display: none; }
  .topbar .tb-phone a { padding: 8px; }
  .topbar .tb-phone svg { width: 18px; height: 18px; }
}

@media (max-width: 600px) {
  .hero .eyebrow { letter-spacing: 0.06em; gap: 8px; font-size: min(1rem, calc((100vw - 2 * var(--gutter) - 24px) / 22.9)); }
  .hero .eyebrow::before { width: 16px; }
}

@media (max-width: 600px) {
  .proof-grid { grid-template-columns: 1fr; }
  .footer-badges { gap: 16px 20px; padding: 24px 0; }
  .footer-badges img { height: 48px; max-width: 120px; }
  .footer-badges a:first-child img { height: 52px; max-width: none; }
}
