/* ============================================================
   EKO-VRAK.CZ — Varianta 2 "BENTO"
   Světlý editorial layout, měkké dlaždice, oranžová jako akcent.
   ============================================================ */

:root {
  --orange: #ffa633;
  --orange-deep: #e8871a;
  --orange-ink: #7a4408;
  --orange-wash: #fff4e3;

  --paper: #f6f6f6;
  --card: #ffffff;
  --ink: #17181a;
  --ink-soft: #43454a;
  --muted: #6a6a6a;
  --line: #e4e4e6;

  --font-display: 'Alata', system-ui, sans-serif;
  --font-body: 'Noto Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1280px;
  --gut: clamp(1.15rem, 4vw, 3rem);
  --r: 26px;
  --r-sm: 16px;

  --shadow-1: 0 1px 2px rgba(20, 20, 25, .04), 0 8px 24px -12px rgba(20, 20, 25, .12);
  --shadow-2: 0 2px 4px rgba(20, 20, 25, .05), 0 24px 56px -22px rgba(20, 20, 25, .22);

  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display); font-weight: 400;
  line-height: 1.02; letter-spacing: -.02em; margin: 0; text-wrap: balance;
}

.wrap { width: min(100% - var(--gut) * 2, var(--wrap)); margin-inline: auto; }

.skip { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--ink); color: #fff; padding: .75rem 1.25rem; }
.skip:focus { left: 0; }
:where(a, button, summary, input, textarea):focus-visible { outline: 2px solid var(--orange-deep); outline-offset: 3px; border-radius: 6px; }

/* ---------- Navigace ---------- */
.nav { position: sticky; top: 0; z-index: 100; padding-top: .75rem; transition: padding .35s var(--ease); }
.nav.is-stuck { padding-top: 0; }
.nav__in {
  width: min(100% - var(--gut) * 2, var(--wrap)); margin-inline: auto;
  display: flex; align-items: center; gap: 1.5rem;
  height: 66px; padding-inline: 1rem 1rem;
  background: color-mix(in srgb, var(--card) 78%, transparent);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--line); border-radius: 100px;
  box-shadow: var(--shadow-1);
  transition: border-radius .35s var(--ease), box-shadow .35s var(--ease), width .35s var(--ease);
}
.nav.is-stuck .nav__in { border-radius: 0 0 20px 20px; width: 100%; border-top: 0; box-shadow: var(--shadow-2); background: color-mix(in srgb, var(--card) 94%, transparent); }

.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; white-space: nowrap; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--ink), #303338);
}
.brand__txt { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: .04em; }
.brand__txt em { font-style: normal; color: var(--orange-deep); }

.nav__links { display: flex; gap: 1.5rem; margin-inline: auto; }
.nav__links a { text-decoration: none; font-size: .9rem; font-weight: 500; color: var(--ink-soft); transition: color .25s; }
.nav__links a:hover { color: var(--orange-deep); }

.nav__side { display: flex; align-items: center; gap: .85rem; }
.nav__tel { font-family: var(--font-display); font-size: 1rem; text-decoration: none; }
.nav__tel:hover { color: var(--orange-deep); }

.burger { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .35s var(--ease); }
.burger span + span { margin-top: 6px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobmenu[hidden] { display: none; }
.mobmenu {
  position: fixed; inset: 78px var(--gut) auto; z-index: 99;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-2); padding: 1rem 1.5rem 1.5rem; display: grid;
  animation: pop .3s var(--ease);
}
@keyframes pop { from { opacity: 0; transform: translateY(-10px) scale(.98); } }
.mobmenu a { text-decoration: none; font-family: var(--font-display); font-size: 1.35rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.mobmenu__tel { color: var(--orange-deep) !important; border-bottom: 0 !important; }

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.5rem; border-radius: 100px; border: 1px solid transparent;
  font-family: var(--font-display); font-size: 1rem; text-decoration: none; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn svg { width: 19px; height: 19px; fill: currentColor; }
.btn--primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-1); }
.btn--primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn--soft { background: var(--orange-wash); color: var(--orange-ink); }
.btn--soft:hover { background: color-mix(in srgb, var(--orange) 45%, #fff); transform: translateY(-2px); }
.btn--line { border-color: var(--line); background: var(--card); padding: .7rem 1.3rem; font-size: .9rem; }
.btn--line:hover { border-color: var(--ink); }
.btn--sm { padding: .6rem 1.15rem; font-size: .9rem; background: var(--orange); color: var(--ink); }
.btn--sm:hover { background: var(--orange-deep); color: #fff; }
.btn--full { width: 100%; }

/* ---------- Bento hero ---------- */
.hero { padding: clamp(1.5rem, 4vh, 3rem) 0 clamp(3rem, 8vh, 6rem); }
.bento { display: grid; gap: clamp(.75rem, 1.2vw, 1.15rem); grid-template-columns: 1fr; }
@media (min-width: 780px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas:
      "head head head price"
      "head head head photo"
      "hours free map  photo";
  }
  .tile--head  { grid-area: head; }
  .tile--price { grid-area: price; }
  .tile--photo { grid-area: photo; }
  .tile--hours { grid-area: hours; }
  .tile--free  { grid-area: free; }
  .tile--map   { grid-area: map; }
}

.tile {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(1.5rem, 2.6vw, 2.5rem);
  box-shadow: var(--shadow-1);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .tile { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); }
  .tile:hover { box-shadow: var(--shadow-2); }
}

.tile--head { display: grid; align-content: center; gap: 1.25rem; padding-block: clamp(2.25rem, 5vw, 3.75rem); }
.tile--head h1 { font-size: clamp(2.5rem, 6.4vw, 5.25rem); }
.tile--head h1 em { font-style: normal; color: var(--orange-deep); }
.tile--head__sub { max-width: 48ch; color: var(--muted); font-size: clamp(1.05rem, 1.4vw, 1.2rem); margin: 0; }
.tile--head__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .5rem; }

.chip {
  justify-self: start; display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem .95rem; border-radius: 100px; background: var(--orange-wash); color: var(--orange-ink);
  font-size: .8125rem; font-weight: 600; letter-spacing: .02em; margin: 0;
}
.chip__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange-deep); animation: blink 2.2s ease-in-out infinite; }
@keyframes blink { 50% { opacity: .3; } }

.tile--price {
  background: linear-gradient(155deg, var(--orange) 0%, var(--orange-deep) 100%);
  border-color: transparent; color: #1c1204;
  display: grid; align-content: center; gap: .2rem;
}
.tile--price__label { font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase; opacity: .72; }
.tile--price__num { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.5rem, 4.5vw, 3.5rem); line-height: 1; font-variant-numeric: tabular-nums; }
.tile--price__note { font-size: .9rem; opacity: .8; }

.tile--photo { padding: 0; overflow: hidden; min-height: 220px; }
.tile--photo picture { display: block; height: 100%; }
.tile--photo img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; transition: scale .8s var(--ease); }
.tile--photo:hover img { scale: 1.04; }

.tile--hours, .tile--map { display: grid; align-content: start; gap: .45rem; }
.tile__ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--orange-wash); margin-bottom: .5rem; }
.tile__ico svg { width: 21px; height: 21px; fill: none; stroke: var(--orange-deep); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.tile--hours strong, .tile--map strong { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; }
.tile--hours span:last-child, .tile--map p { color: var(--muted); font-size: .9rem; margin: 0; }

.tile--free { background: var(--ink); color: #fff; border-color: transparent; display: grid; align-content: center; gap: .15rem; }
.tile--free__num { font-family: var(--font-display); font-size: clamp(2.25rem, 4vw, 3rem); line-height: 1; color: var(--orange); }
.tile--free span:last-child { color: #a9abaf; font-size: .9rem; }

/* ---------- Sekce ---------- */
section { padding-block: clamp(3.5rem, 9vh, 7rem); }
.kicker { font-size: .8125rem; letter-spacing: .16em; text-transform: uppercase; color: var(--orange-deep); margin: 0 0 .9rem; font-weight: 600; }
.kicker--light { color: var(--orange); }
.sechead { margin-bottom: clamp(2rem, 5vh, 3.5rem); max-width: 62ch; }
.sechead h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); }
.sechead h2 em { font-style: normal; color: var(--orange-deep); }
.lead { color: var(--muted); max-width: 46ch; margin: 1rem 0 0; }
.sechead--split { max-width: none; display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; align-items: end; justify-content: space-between; }
.sechead--split .lead { margin: 0; }

/* ---------- Proces ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(.9rem, 1.5vw, 1.25rem); position: relative; }
@media (min-width: 880px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(1.75rem, 3vw, 2.5rem); position: relative;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); border-color: transparent; }
.step__n {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px;
  background: var(--orange); color: var(--ink);
  font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 1.4rem;
}
.step h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.step p { color: var(--muted); margin: 0; }
.step__tel { display: inline-block; margin-top: 1rem; font-family: var(--font-display); font-size: 1.35rem; color: var(--orange-deep); text-decoration: none; }
.step__tel:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Výhody ---------- */
.grid6 { display: grid; gap: clamp(.9rem, 1.5vw, 1.25rem); grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.mini {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: clamp(1.4rem, 2.2vw, 1.85rem);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  container-type: inline-size;
}
.mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); }
.mini__ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--orange-wash); margin-bottom: 1.1rem; }
.mini__ico svg { width: 22px; height: 22px; fill: none; stroke: var(--orange-deep); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.mini h3 { font-size: 1.25rem; margin-bottom: .45rem; }
.mini p { color: var(--muted); font-size: .95rem; margin: 0; }
@container (min-width: 340px) { .mini h3 { font-size: 1.4rem; } }

/* ---------- Galerie s taby ---------- */
.tabs { display: flex; gap: .4rem; padding: .35rem; background: var(--card); border: 1px solid var(--line); border-radius: 100px; }
.tabs button {
  border: 0; background: none; cursor: pointer; font: inherit; font-size: .9rem; font-weight: 500;
  padding: .55rem 1.1rem; border-radius: 100px; color: var(--muted);
  transition: background .3s, color .3s;
}
.tabs button[aria-selected="true"] { background: var(--ink); color: #fff; }
.tabs button:hover:not([aria-selected="true"]) { color: var(--ink); }

.panels { position: relative; }
.panel[hidden] { display: none; }
.panel {
  display: grid; gap: clamp(1.25rem, 3vw, 2.5rem); align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(1rem, 1.6vw, 1.25rem);
  animation: panelIn .45s var(--ease);
}
@media (min-width: 820px) { .panel { grid-template-columns: 1.15fr .85fr; } }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } }
.panel img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: calc(var(--r) - 12px); }
.panel__txt { padding: clamp(.5rem, 2vw, 1.75rem) clamp(.75rem, 2vw, 1.5rem); }
.panel__txt h3 { font-size: clamp(1.5rem, 2.5vw, 2.15rem); margin-bottom: .75rem; }
.panel__txt p { color: var(--muted); margin: 0; }

/* ---------- CTA ---------- */
.call__box {
  background: var(--ink); color: #fff; border-radius: clamp(var(--r), 3vw, 40px);
  display: grid; gap: 0; overflow: hidden;
}
@media (min-width: 880px) { .call__box { grid-template-columns: 1.25fr .75fr; } }
.call__text { padding: clamp(2rem, 4.5vw, 4rem); display: grid; align-content: center; }
.call__text h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.call__text h2 em { font-style: normal; color: var(--orange); }
.tel-xl {
  display: inline-block; justify-self: start; margin-top: 1.75rem;
  font-family: var(--font-display); font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  color: var(--orange); text-decoration: none;
  background-image: linear-gradient(var(--orange), var(--orange));
  background-size: 0% 2px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .5s var(--ease);
}
.tel-xl:hover { background-size: 100% 2px; }
.call__hours { color: #a9abaf; font-size: .95rem; margin: 1rem 0 0; max-width: 42ch; }
.call__photo img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }

/* ---------- FAQ ---------- */
.acc { display: grid; gap: .75rem; }
.acc__item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-sm);
  transition: box-shadow .35s var(--ease), border-color .35s;
}
.acc__item[open] { box-shadow: var(--shadow-1); border-color: color-mix(in srgb, var(--orange) 55%, var(--line)); }
.acc__item summary {
  list-style: none; cursor: pointer; padding: 1.35rem 3.5rem 1.35rem 1.5rem; position: relative;
  font-family: var(--font-display); font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}
.acc__item summary::-webkit-details-marker { display: none; }
.acc__item summary::after {
  content: ''; position: absolute; right: 1.35rem; top: 50%; translate: 0 -50%;
  width: 26px; height: 26px; border-radius: 50%; background: var(--orange-wash);
  background-image:
    linear-gradient(var(--orange-deep), var(--orange-deep)),
    linear-gradient(var(--orange-deep), var(--orange-deep));
  background-size: 11px 2px, 2px 11px; background-position: center, center; background-repeat: no-repeat;
  transition: rotate .4s var(--ease), background-size .4s var(--ease);
}
.acc__item[open] summary::after { rotate: 180deg; background-size: 11px 2px, 0 0; }
.acc__body { padding: 0 1.75rem 1.5rem 1.5rem; color: var(--muted); }
.acc__body p { margin: 0 0 .75rem; }
.acc__body p:last-child { margin-bottom: 0; }
.acc__body ul { margin: 0; padding-left: 1.15rem; }
.acc__body li { margin-bottom: .5rem; }
.acc__body li::marker { color: var(--orange-deep); }

/* ---------- Aktuality ---------- */
.posts { display: grid; gap: clamp(.9rem, 1.5vw, 1.25rem); grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.post {
  display: grid; align-content: start; gap: .6rem; text-decoration: none;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 1rem 1rem 1.6rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.post__img { border-radius: 12px; overflow: hidden; margin-bottom: .5rem; }
.post__img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: scale .6s var(--ease); }
.post:hover .post__img img { scale: 1.05; }
.post__date { padding-inline: .5rem; font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.post h3 { padding-inline: .5rem; font-size: 1.25rem; line-height: 1.18; }
.post p { padding-inline: .5rem; color: var(--muted); font-size: .93rem; margin: 0; }
.post__more { padding-inline: .5rem; color: var(--orange-deep); font-family: var(--font-display); font-size: .95rem; margin-top: .3rem; }
.post__more::after { content: ' →'; display: inline-block; transition: translate .35s var(--ease); }
.post:hover .post__more::after { translate: 5px 0; }

/* ---------- Poptávka ---------- */
.poptavka__in { display: grid; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
@media (min-width: 900px) { .poptavka__in { grid-template-columns: 1fr 1fr; } }
.poptavka__text h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
.poptavka__text h2 em { font-style: normal; color: var(--orange-deep); }
.ticks { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; gap: .75rem; }
.ticks li { position: relative; padding-left: 1.9rem; color: var(--muted); }
.ticks li::before { content: ''; position: absolute; left: 0; top: .45em; width: 12px; height: 7px; border-left: 2px solid var(--orange-deep); border-bottom: 2px solid var(--orange-deep); rotate: -45deg; }

.form { display: grid; gap: .9rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow-1); }
.field { position: relative; }
.field input, .field textarea {
  width: 100%; padding: 1.55rem 1rem .6rem; border-radius: 14px;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink); font: inherit; resize: vertical;
  transition: border-color .3s, background .3s;
}
.field label { position: absolute; left: 1rem; top: 1.05rem; color: var(--muted); font-size: .95rem; pointer-events: none; transition: translate .25s var(--ease), font-size .25s var(--ease), color .25s; }
.field input:focus, .field textarea:focus { border-color: var(--orange-deep); background: #fff; }
.field :is(input, textarea):focus + label,
.field :is(input, textarea):not(:placeholder-shown) + label { translate: 0 -.72rem; font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; color: var(--orange-deep); }
.field:has(input:user-invalid, textarea:user-invalid) :is(input, textarea) { border-color: #d93a3f; }
.form__note { margin: 0; font-size: .9rem; color: var(--orange-deep); min-height: 1.3em; }

/* ---------- Patička ---------- */
.foot { background: var(--ink); color: #d6d7d9; padding-block: clamp(3rem, 7vh, 5rem) 0; }
.foot__top { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: start; padding-bottom: 2.5rem; border-bottom: 1px solid #2b2d31; }
.brand--foot .brand__mark { background: #26282c; }
.brand--foot .brand__txt { color: #fff; }
.foot__claim { color: #8f9195; font-size: .9rem; margin: 1rem 0 0; }
.foot__cta { display: grid; gap: .2rem; }
.tel-md { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.25rem); color: var(--orange); text-decoration: none; }
.mail { color: #d6d7d9; text-decoration: none; }
.mail:hover { color: var(--orange); }
.foot__cta p { color: #8f9195; font-size: .875rem; margin: .25rem 0 0; }

.foot__cols { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); padding-block: 2.5rem; }
.foot__cols h4 { font-family: var(--font-body); font-weight: 600; font-size: .8125rem; letter-spacing: .16em; text-transform: uppercase; color: #8f9195; margin-bottom: .9rem; }
.foot__cols p { margin: 0; font-size: .9rem; line-height: 1.9; }
.foot__cols a { display: block; text-decoration: none; padding: .2rem 0; font-size: .93rem; transition: color .25s; }
.foot__cols a:hover { color: var(--orange); }
.foot__legal { border-top: 1px solid #2b2d31; padding-block: 1.5rem 6rem; display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between; font-size: .8125rem; color: #8f9195; }
.foot__legal p { margin: 0; }

/* ---------- Mobilní call bar ---------- */
.callbar {
  position: fixed; inset: auto 0 0 0; z-index: 90; display: none; gap: .5rem;
  padding: .6rem var(--gut) calc(.6rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(16px); border-top: 1px solid var(--line);
}
.callbar a { flex: 1; text-align: center; padding: .95rem; border-radius: 100px; font-family: var(--font-display); text-decoration: none; background: var(--ink); color: #fff; }
.callbar__alt { flex: 0 0 34% !important; background: var(--orange-wash) !important; color: var(--orange-ink) !important; }

/* ---------- Reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .tile, .step, .mini, .post, .call__box, .acc__item, .panels, .form, .poptavka__text, .sechead {
    animation: revealUp .9s var(--ease) both;
    animation-timeline: view();
    animation-range: entry 0% cover 22%;
  }
}
@keyframes revealUp { from { opacity: 0; transform: translateY(30px); } }

/* ---------- Responzivita ---------- */
@media (max-width: 900px) {
  .nav__links, .nav__tel, .nav__side .btn { display: none; }
  .burger { display: block; }
  .nav__side { margin-inline-start: auto; }
  .callbar { display: flex; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
