/* ==========================================================================
   Taxi LuKa — taxi-luka.cz
   Jeden stylesheet pro celý web. Mobile-first, breakpointy ~720px / ~1000px.
   ========================================================================== */

:root {
  --yellow: #FFC400;
  --yellow-soft: #FFD54D;
  --ink: #0F1216;
  --ink-2: #1A1F26;
  --paper: #FFFFFF;
  --paper-2: #F6F7F9;
  --muted: #5B6470;
  --line: #E4E7EB;
  --radius: 16px;
  --container: 1120px;
  --shadow: 0 10px 30px rgba(15, 18, 22, .08);
}

/* ---------- Reset & základ ---------- */

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

html { scroll-behavior: smooth; }

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

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

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(1.9rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

ul, ol { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--yellow);
  color: var(--ink);
  padding: .7rem 1.2rem;
  border-radius: 0 0 12px 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.container--narrow { max-width: 800px; }

.section { padding: 64px 0; }
.section--paper { background: var(--paper); }
.section--paper2 { background: var(--paper-2); }

.section-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.kicker {
  display: inline-block;
  color: #A87F00;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 .5rem;
}

.section--band .kicker,
.hero .kicker { color: var(--yellow); }

/* ---------- Tlačítka ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: 999px;
  padding: .8rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--yellow);
  color: var(--ink);
}
.btn--primary:hover { background: var(--yellow-soft); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost-dark:hover { background: var(--ink); color: #fff; }

.btn--sm { padding: .5rem 1.05rem; font-size: .92rem; }

.btn--store {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
  font-size: .95rem;
}
.btn--store:hover { border-color: var(--yellow); color: var(--yellow); }

.btn--store-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--store-dark:hover { background: var(--ink-2); color: var(--yellow); }

/* ---------- Karty ---------- */

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 18, 22, .92);
  backdrop-filter: blur(8px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
}
.logo-mark { border-radius: 8px; flex: none; }
.logo-text--accent { color: var(--yellow); }

.site-nav { margin-left: auto; }

.site-nav__list {
  display: flex;
  gap: .2rem;
  list-style: none;
}
.site-nav__list a {
  display: block;
  padding: .5rem .75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  color: rgba(255, 255, 255, .85);
  border-radius: 999px;
}
.site-nav__list a:hover { color: var(--yellow); }

.header-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-left: auto;
}
.site-nav + .header-actions { margin-left: 0; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.burger__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-open .burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .burger__bar:nth-child(2) { opacity: 0; }
.nav-open .burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 999px) {
  .burger { display: flex; }
  .header-order { display: none; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    display: none;
    margin-left: 0;
  }
  .nav-open .site-nav { display: block; }
  .site-nav__list {
    flex-direction: column;
    padding: .8rem 20px 1.2rem;
    gap: 0;
  }
  .site-nav__list a { padding: .7rem .5rem; font-size: 1.05rem; }
}

@media (max-width: 719px) {
  .header-tel span { display: none; }
  .header-tel { padding: .6rem; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 18, 22, .55) 0%, rgba(15, 18, 22, .85) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .85);
  max-width: 520px;
  margin-bottom: 1.6rem;
}

.hero__tel {
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 800;
  padding: 1rem 2.2rem;
  box-shadow: 0 12px 34px rgba(255, 196, 0, .35);
}

.hero__stores {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.3rem;
}

.hero__web-order { margin-top: 1rem; }
.hero__web-order a {
  color: var(--yellow);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hero akce: telefon, pod ním řádek tří variant objednání */
.hero__stores-label {
  margin-top: 1.5rem;
  margin-bottom: .55rem;
  font-size: .95rem;
  color: rgba(255, 255, 255, .65);
}
.hero__stores-label + .hero__stores { margin-top: 0; }

.hero__trust {
  margin-top: 1.4rem;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .75);
  text-transform: uppercase;
}

/* ---------- Telefon / slideshow ---------- */

.hero__phone {
  display: flex;
  justify-content: center;
}

.phone { width: min(300px, 80vw); }

.phone__frame {
  position: relative;
  border-radius: 42px;
  background: #05070A;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5), 0 0 0 2px rgba(255, 255, 255, .08);
}

.phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 22px;
  background: #05070A;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone__screen {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 390 / 760;
  background: #F3F5F7;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(14px);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
}
.slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.slide svg { width: 100%; height: 100%; display: block; }

.slide-caption {
  margin: 1rem 0 .5rem;
  text-align: center;
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  min-height: 2.6em;
}

.slide-dots {
  display: flex;
  justify-content: center;
  gap: .55rem;
}
.slide-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.slide-dots button.is-active {
  background: var(--yellow);
  transform: scale(1.25);
}

/* ---------- Aplikace / benefity ---------- */

.benefits-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.benefit { padding: 1.5rem; }
.benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--ink);
  margin-bottom: 1rem;
}
.benefit p { margin: 0; color: var(--muted); font-size: .95rem; }

.app-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 2rem;
}

.app-note {
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--muted);
}

/* ---------- Kroky ---------- */

.steps-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  list-style: none;
  counter-reset: kroky;
}

.step { padding: 1.5rem; position: relative; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.step p { margin: 0; color: var(--muted); font-size: .95rem; }
.step a { color: var(--ink); font-weight: 600; }

/* ---------- Služby ---------- */

.services-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}

.service { overflow: hidden; }
.service img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service__body { padding: 1.3rem 1.5rem 1.5rem; }
.service__body p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- Ceník ---------- */

.cenik-wrap {
  max-width: none;
}

.cenik-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  font-size: .97rem;
}
/* border-radius na table: obal + overflow */
.cenik-table { display: table; }

.cenik-table thead th {
  background: var(--ink);
  color: #fff;
  text-align: left;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .85rem 1rem;
}
.cenik-table thead th:first-child { border-top-left-radius: var(--radius); }
.cenik-table thead th:last-child { border-top-right-radius: var(--radius); }

.cenik-table tbody th,
.cenik-table tbody td {
  padding: .95rem 1rem;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.cenik-table tbody td { font-weight: 700; white-space: nowrap; }
.cenik-table tbody th { font-weight: 800; }
.cenik-table tbody th span {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: .85rem;
  margin-top: .15rem;
}

.cenik-extra {
  list-style: none;
  margin-top: 1.2rem;
  display: grid;
  gap: .6rem;
}
.cenik-extra li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .75rem 1rem;
}
.cenik-extra li span { color: var(--muted); font-weight: 600; text-align: right; }

.cenik-note {
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--muted);
}

@media (max-width: 719px) {
  .cenik-table { font-size: .88rem; }
  .cenik-table thead th,
  .cenik-table tbody th,
  .cenik-table tbody td { padding: .7rem .55rem; }
  .cenik-table thead th { font-size: .68rem; letter-spacing: .04em; }
  .cenik-table tbody td { white-space: normal; }
}

/* ---------- Kam jezdíme ---------- */

.mista-intro { color: var(--muted); max-width: 640px; }

.mista-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.2rem 0;
}
.mista-chips li {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem 1rem;
  font-weight: 600;
  font-size: .92rem;
}
.section--paper2 .mista-chips li { background: var(--paper); }
.mista-chips li:first-child {
  background: var(--yellow);
  border-color: var(--yellow);
}

.mista-note { color: var(--muted); font-size: .95rem; }

/* ---------- FAQ ---------- */

.faq-list { display: grid; gap: .8rem; }

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0 1.3rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1.1rem 0;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: .2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--yellow);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--muted); padding-bottom: 1.1rem; margin: 0; }
.faq-item a { color: var(--ink); font-weight: 600; }

/* ---------- Kariéra (pás) ---------- */

.section--band {
  background: var(--ink);
  color: #fff;
  padding: 48px 0;
}
.section--band p { color: rgba(255, 255, 255, .8); margin: 0; max-width: 480px; }
.section--band h2 { margin-bottom: .4em; }

.band-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.band-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-items: center;
}

/* ---------- Partneři ---------- */

.partneri-grid {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.partneri-grid a {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: .9rem 1.4rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform .15s ease, border-color .15s ease;
}
.partneri-grid a:hover { transform: translateY(-2px); border-color: var(--yellow); }

.partner-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  flex: none;
}

.partner-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}

/* Partner s obrázkem (letáček/logo) = karta s velkým vizuálem */
.partneri-grid li.partner-card a,
.partneri-grid li.partner-card .partner-static {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  max-width: 460px;
}
.partner-card .partner-logo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}
.partner-card .partner-nazev { padding: .85rem 1.2rem; }

.partneri-vyzva {
  margin-top: 1.3rem;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- O nás ---------- */

.onas-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.onas-text p { color: var(--muted); }
.onas-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

/* ---------- Kontakt ---------- */

.kontakt-card--single { max-width: 560px; }

.kontakt-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}

.kontakt-card { padding: 1.5rem; }

.kontakt-list {
  list-style: none;
  display: grid;
  gap: .9rem;
}
.kontakt-list li { display: flex; flex-direction: column; }
.kontakt-list a {
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.kontakt-list a:hover { color: #A87F00; text-decoration: underline; }
.kontakt-list span { color: var(--muted); font-size: .85rem; }

.kontakt-tel { font-size: 1.15rem; }
.kontakt-tel--main { font-size: 1.5rem; color: #A87F00; }

.kontakt-adresa { color: var(--muted); }
.kontakt-pozn { font-size: .85rem; }
.kontakt-card .btn { margin-top: .5rem; }

/* ---------- Patička ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .8);
  padding: 56px 0 28px;
  font-size: .95rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: .2rem;
}
.footer-logo span { color: var(--yellow); }
.footer-tagline { font-size: .85rem; color: rgba(255, 255, 255, .55); }

.footer-heading {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--yellow);
  margin-bottom: .9rem;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: .45rem;
}
.footer-list a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
}
.footer-list a:hover { color: var(--yellow); }

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.footer-link-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: rgba(255, 255, 255, .8);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-link-btn:hover { color: var(--yellow); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.footer-bottom p { margin: 0; }
.footer-credit { font-size: .8rem; color: rgba(255, 255, 255, .5); }
.footer-credit a { color: rgba(255, 255, 255, .7); }
.footer-credit a:hover { color: var(--yellow); }

/* ---------- Cookie lišta ---------- */

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 150;
  max-width: 560px;
  margin-inline: auto;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(15, 18, 22, .25);
  padding: 1.2rem 1.4rem;
}
.cookie-bar[hidden] { display: none; }
.cookie-bar h2 { font-size: 1.05rem; margin-bottom: .3rem; }
.cookie-bar p { font-size: .9rem; color: var(--muted); margin-bottom: .9rem; }
.cookie-bar a { color: var(--ink); font-weight: 600; }

.cookie-bar__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.cookie-bar__buttons .btn { padding: .55rem 1.1rem; font-size: .9rem; }

.cookie-bar__settings {
  margin-top: .9rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
}
.cookie-bar__settings[hidden] { display: none; }
.cookie-bar__settings label {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: .35rem;
}
.cookie-bar__settings input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--yellow);
}
.cookie-bar__settings .cookie-bar__hint {
  font-size: .82rem;
  color: var(--muted);
  margin: 0 0 .8rem;
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Breakpoint ~720px ---------- */

@media (min-width: 720px) {
  .section { padding: 88px 0; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .kontakt-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }
}

/* ---------- Breakpoint ~1000px ---------- */

@media (min-width: 1000px) {
  .hero__inner {
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .phone { width: 320px; }

  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .kontakt-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }

  .onas-inner { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}

/* ---------- Pravni / obsahove podstranky (.legal) ---------- */

.legal h2 {
  font-size: 1.3rem;
  margin: 2.4rem 0 .7rem;
}

.legal h3 { margin-top: 1.6rem; }

.legal ul,
.legal ol {
  padding-left: 1.4rem;
  margin: 0 0 1em;
}

.legal li { margin-bottom: .45rem; }

.legal li::marker {
  color: #A87F00;
  font-weight: 700;
}

.legal a {
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
}

.legal a:hover { color: #A87F00; }

.legal-meta {
  color: var(--muted);
  margin: -0.2rem 0 2.2rem;
}
