/* ============================================================
   JACKULÍK — Nákladná doprava & autožeriavy
   Minimalistický industriálny dizajn
   ============================================================ */

:root {
  --ink: #17191c;
  --ink-soft: #2a2d33;
  --gray: #5c6270;
  --paper: #fbfbf9;
  --white: #ffffff;
  --yellow: #ffcc00;
  --yellow-dark: #e0b400;
  --line: #e6e6e1;

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

  --container: 1160px;
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Hazard stripe (podpisový prvok) ---------- */
.stripe {
  height: 6px;
  width: 72px;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow) 0 8px,
    var(--ink) 8px 16px
  );
  border-radius: 2px;
  margin-bottom: 18px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--yellow);
  color: var(--ink);
  font-size: 13.5px;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.topbar .container {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding-top: 7px;
  padding-bottom: 7px;
  flex-wrap: wrap;
}
.topbar a { color: var(--ink); text-decoration: none; font-weight: 700; }
.topbar a:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 251, 249, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 62px;
  width: auto;
  display: block;
}

.nav { display: flex; gap: 6px; align-items: center; }
.nav a {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav a:hover { background: #f0f0ec; }
.nav a.active {
  color: var(--ink);
  box-shadow: inset 0 -3px 0 var(--yellow);
  border-radius: 0;
}
.nav a.nav-cta {
  background: var(--ink);
  color: var(--white);
  margin-left: 10px;
}
.nav a.nav-cta:hover { background: var(--ink-soft); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 11px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
}
.hero .eyebrow { color: var(--yellow); }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(46px, 6.4vw, 84px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero p.lead {
  margin-top: 22px;
  font-size: 19px;
  color: #b9bdc6;
  max-width: 46ch;
}
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero s fotografiou v pozadí (jemne rozmazanou) */
.hero.has-bg { position: relative; }
.hero.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  filter: blur(5px) brightness(0.42) saturate(0.85);
  transform: scale(1.07); /* skryje rozmazané okraje */
}
.hero.has-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(23, 25, 28, 0.78) 20%, rgba(23, 25, 28, 0.38) 75%, rgba(23, 25, 28, 0.55));
}
.hero.has-bg .container {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  padding-top: 116px;
  padding-bottom: 116px;
}
.hero.has-bg .lead { color: #d4d7dd; }
.hero-quick {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-quick a {
  text-decoration: none;
  color: var(--white);
}
.hero-quick .q-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9aa0ab;
}
.hero-quick .q-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.04em;
}
.hero-quick a:hover .q-num { color: var(--yellow); }

.hero-media {
  position: relative;
}
.hero-media img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 56%;
  height: 10px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 8px, transparent 8px 16px);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { background: var(--yellow-dark); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px #454a53;
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--yellow); color: var(--yellow); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-soft); }

/* ---------- Sekcie ---------- */
.section { padding: 84px 0; }
.section.alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}
h2.title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-intro { max-width: 62ch; color: var(--gray); }

/* ---------- Karty služieb ---------- */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 44px;
}
.services.three { grid-template-columns: repeat(3, 1fr); }
.services.three .service-body h3 { font-size: 26px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover {
  box-shadow: 0 14px 34px rgba(23, 25, 28, 0.1);
  transform: translateY(-3px);
}
.service-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.service-body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1;
}
.service-body p { color: var(--gray); }
.service-phone {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.service-phone:hover { color: var(--yellow-dark); }
.service-body .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Štatistiky ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 6vw, 76px);
  line-height: 1;
  color: var(--ink);
}
.stat .num small {
  font-size: 0.55em;
  color: var(--yellow-dark);
  vertical-align: 0.32em;
}
.stat .label {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ---------- Stroje (technika) ---------- */
.machine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.machine:last-of-type { border-bottom: none; }
.machine img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  border: 1px solid var(--line);
}
.machine .machine-media { position: relative; }
.machine .machine-media::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: -10px;
  width: 46%;
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 8px, var(--ink) 8px 16px);
  border-radius: 2px;
}
.machine.flip .machine-media::after { left: auto; right: -10px; }

/* Čipy s parametrami vozidla */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 5px 14px;
  background: var(--white);
  white-space: nowrap;
}
.chip::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  margin-right: 8px;
  vertical-align: 1px;
}

/* Rozbaľovacia tabuľka paliet */
.expand-table {
  margin-top: 36px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.expand-table summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.expand-table summary::-webkit-details-marker { display: none; }
.expand-table summary::after {
  content: "+";
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}
.expand-table[open] summary::after { transform: rotate(45deg); }
.expand-table summary:hover::after { background: var(--yellow-dark); }
.expand-body { padding: 8px 24px 22px; }
.table-scroll { overflow-x: auto; }
.pallet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  min-width: 620px;
}
.pallet-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  padding: 14px 12px;
  border-bottom: 3px solid var(--yellow);
}
.pallet-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
}
.pallet-table tbody tr:nth-child(even) { background: var(--paper); }
.pallet-table td:nth-child(3),
.pallet-table td:nth-child(4) {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17.5px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.table-note {
  margin-top: 16px;
  font-size: 14.5px;
  color: var(--gray);
}
.table-note a { font-weight: 600; }
.machine h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 42px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 14px;
}
.machine p.desc { color: var(--gray); margin-bottom: 22px; }
.machine.flip .machine-media { order: 2; }
.machine.align-top { align-items: start; }

/* Špecifikačná tabuľka — štítok stroja */
.spec {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 16px;
  background: var(--white);
}
.spec caption {
  caption-side: top;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--yellow);
  padding: 8px 14px;
  border: 2px solid var(--ink);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
}
.spec th, .spec td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.spec tr:last-child th, .spec tr:last-child td { border-bottom: none; }
.spec th { font-weight: 600; width: 55%; }
.spec td { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.03em; }

/* ---------- Galéria ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.gallery a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  transition: transform 0.25s ease;
}
.gallery a:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 13, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 32px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1000px, 100%);
  max-height: 86vh;
  border-radius: var(--radius);
}
.lightbox button {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Výhody spolupráce ---------- */
.perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.perk {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.perk .perk-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-block;
  border-bottom: 3px solid var(--yellow);
  margin-bottom: 10px;
}
.perk p { font-size: 15.5px; color: var(--gray); }

/* ---------- Formulár ---------- */
.quote {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  margin-top: 20px;
}
.quote h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 8px;
}
.quote p.note { color: #b9bdc6; margin-bottom: 28px; max-width: 60ch; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
.quote label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b9bdc6;
  margin-bottom: 6px;
}
.quote input,
.quote select,
.quote textarea {
  width: 100%;
  background: #22252b;
  border: 1px solid #3a3e46;
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
}
.quote textarea { min-height: 120px; resize: vertical; }
.quote input:focus,
.quote select:focus,
.quote textarea:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 1px;
  border-color: var(--yellow);
}
.quote .btn { margin-top: 8px; }

/* ---------- Kontakt ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--yellow);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4px;
}
.contact-card .firm { color: var(--gray); margin-bottom: 18px; }
.contact-card ul { list-style: none; }
.contact-card li { padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 16px; }
.contact-card li:last-child { border-bottom: none; }
.contact-card li strong { display: inline-block; min-width: 88px; font-weight: 600; color: var(--gray); font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-card a { text-decoration: none; font-weight: 600; }
.contact-card a:hover { color: var(--yellow-dark); }
.contact-card .btn { margin-top: 20px; }

.map-wrap {
  margin-top: 44px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- Partneri (logá) ---------- */
.partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.partner-card:hover {
  box-shadow: 0 12px 28px rgba(23, 25, 28, 0.1);
  transform: translateY(-3px);
}
.partner-card img { max-height: 72px; width: auto; max-width: 82%; object-fit: contain; }

/* ---------- FAQ ---------- */
.faq { margin-top: 36px; max-width: 780px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 0 20px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 24px;
  color: var(--yellow-dark);
  flex: none;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--gray); padding-bottom: 18px; }

/* ---------- Partner banner ---------- */
.partner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--yellow);
  border-radius: var(--radius);
  padding: 30px 34px;
}
.partner h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 6px;
}
.partner p { color: var(--gray); }

/* ---------- CTA pás ---------- */
.cta-band { background: var(--yellow); }
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  text-transform: uppercase;
  line-height: 1;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #b9bdc6;
  padding: 64px 0 0;
  font-size: 15.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer .f-logo-img {
  display: inline-block;
}
.footer .f-logo-img img {
  height: 74px;
  width: auto;
  display: block;
}
.footer ul { list-style: none; }
.footer li { padding: 4px 0; }
.footer a { color: #b9bdc6; text-decoration: none; }
.footer a:hover { color: var(--yellow); }
.footer .foot-note {
  border-top: 1px solid #2c2f35;
  margin-top: 48px;
  padding: 20px 0;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Reveal animácie ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .service-card, .gallery img { transition: none; }
}

/* ---------- Responzivita ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 64px; padding-bottom: 64px; }
  .machine { grid-template-columns: 1fr; gap: 26px; }
  .machine.flip .machine-media { order: 0; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .perks { grid-template-columns: repeat(2, 1fr); }
  .partners { grid-template-columns: repeat(2, 1fr); }
  .services.three { grid-template-columns: 1fr; }
  .hero.has-bg .container { padding-top: 80px; padding-bottom: 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 20px;
    gap: 4px;
  }
  .nav.open { display: flex; }
  .nav a.nav-cta { margin-left: 0; margin-top: 8px; }
  .nav-toggle { display: block; }
  .services, .contact-cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 36px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .quote { padding: 30px 22px; }
  .partner { grid-template-columns: 1fr; }
  .perks { grid-template-columns: 1fr; }
  .partners { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar .container { justify-content: flex-start; gap: 12px; }
}

/* ---------- Formulár: anti-spam pasca a stavová hláška ---------- */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin-top: 12px;
  font-weight: 600;
  color: #b9bdc6;
}
.form-status.ok { color: var(--yellow); }
.form-status.err { color: #ff8a80; }
