/* ==========================================================================
   MEDICENTRUM PN, VARIANT C "Klinika svetla"
   Moderný medical. Svetlý, vzdušný, štruktúrovaný. Karty, presné ikony,
   dôraz na orientáciu a dôveryhodnosť. Škáluje sa na desiatky podstránok.
   POZOR: Cormorant Garamond sa nepoužíva, má rozbité slovenské mäkčene.
   ========================================================================== */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --gold: #A57A46;
  --gold-light: #C79A5F;
  --gold-deep: #8A6437;
  --gold-wash: #F6EEE4;
  --navy: #0A2242;
  --petrol: #07263B;
  --petrol-dark: #041A2A;

  --white: #FFFFFF;
  --cream: #FDFAF7;
  --cream-2: #F7F1EA;
  --line: #EAE0D5;
  --line-soft: #F1E9E0;

  --ink: #16202C;
  --muted: #5F6A77;

  --f-display: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --gutter: clamp(1.15rem, 3.5vw, 3.5rem);
  --maxw: 1380px;
  --section-y: clamp(4rem, 8vw, 8rem);
  --r: 16px;
  --r-sm: 10px;
  --shadow: 0 24px 60px -40px rgba(10, 34, 66, .45);
  --shadow-lg: 0 34px 80px -46px rgba(10, 34, 66, .55);
  --ease: cubic-bezier(.3, .8, .35, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font-family: var(--f-body); font-size: clamp(.98rem, .35vw + .92rem, 1.06rem);
  line-height: 1.7; font-weight: 400; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { display: block; max-width: 100%; }
svg { display: block; max-width: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--gold); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--white { background: var(--white); }
.section--cream2 { background: var(--cream-2); }
.section--petrol { background: var(--petrol); color: #E6EDF3; }

/* ------------------------------------------------------------ typografia */
.tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold-wash); color: var(--gold-deep);
  border-radius: 100px; padding: .4rem .95rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.section--petrol .tag { background: rgba(199,154,95,.16); color: var(--gold-light); }
.tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.display {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(2.3rem, 5.4vw, 4.6rem); line-height: 1.06; letter-spacing: -.025em;
  color: var(--navy);
}
.display em { font-style: normal; color: var(--gold); }
.h2 {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.9rem); line-height: 1.14; letter-spacing: -.022em;
  color: var(--navy);
}
.h2 em { font-style: normal; color: var(--gold); }
.section--petrol .h2, .section--petrol .display { color: #fff; }
.h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.08rem; line-height: 1.3; letter-spacing: -.01em; color: var(--navy); }
.section--petrol .h3 { color: #fff; }
.lead { font-size: clamp(1.05rem, 1.2vw, 1.18rem); line-height: 1.65; color: var(--muted); }
.section--petrol .lead { color: #B9C6D2; }
.muted { color: var(--muted); }
.section--petrol .muted { color: #A6B5C3; }

.head { max-width: 42rem; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.head--center { margin-inline: auto; text-align: center; }
.head .h2 { margin-top: 1.1rem; }
.head p { margin-top: 1.1rem; }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem; border-radius: 100px;
  font-size: .88rem; font-weight: 600; letter-spacing: -.005em;
  transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.btn svg { width: 17px; height: 17px; }
.btn--gold { background: var(--gold); color: #fff; box-shadow: 0 14px 30px -16px rgba(165,122,70,.85); }
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 20px 36px -16px rgba(165,122,70,.9); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--petrol); transform: translateY(-2px); }
.btn--soft { background: var(--white); color: var(--navy); border: 1px solid var(--line); }
.btn--soft:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--sm { padding: .7rem 1.3rem; font-size: .82rem; }

.link-a { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .9rem; color: var(--gold-deep); transition: gap .3s var(--ease); }
.link-a svg { width: 16px; height: 16px; }
.link-a:hover { gap: .8rem; }

/* ---------------------------------------------------------------- header */
.topbar { background: var(--navy); color: #C6D2DE; font-size: .8rem; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 42px; }
.topbar__l { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.topbar a, .topbar span { display: inline-flex; align-items: center; gap: .45rem; }
.topbar a:hover { color: var(--gold-light); }
.topbar svg { width: 14px; height: 14px; }
.topbar i { font-style: normal; color: #6ECB63; }
/* štítok "Plastická chirurgia" pri čísle 0914 655 678 (požiadavka klienta 2026-09-01) */
.topbar__tag {
  font-style: normal; font-size: .62rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  background: rgba(199,154,95,.2); color: var(--gold-light);
  border-radius: 100px; padding: .14rem .5rem; white-space: nowrap;
}

.header { position: sticky; top: 0; z-index: 60; background: rgba(253,250,247,.94); backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--line-soft); }
.header .wrap { display: flex; align-items: center; gap: 1.4rem; min-height: 78px; }
.brand img { height: clamp(36px, 4.2vw, 48px); width: auto; }
.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(.4rem, 1.2vw, 1rem); }
.nav a { padding: .55rem .85rem; border-radius: 100px; font-size: .89rem; font-weight: 500; color: var(--navy); transition: background .28s var(--ease), color .28s var(--ease); }
.nav a:hover { background: var(--gold-wash); color: var(--gold-deep); }
.nav a[aria-current="page"] { background: var(--gold-wash); color: var(--gold-deep); }
.burger { display: none; width: 44px; height: 44px; margin-left: auto; align-items: center; justify-content: center; border-radius: 100px; border: 1px solid var(--line); }
.burger span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--navy); position: relative; }
.burger span::before, .burger span::after { content: ''; position: absolute; left: 0; width: 20px; height: 2px; border-radius: 2px; background: var(--navy); transition: transform .3s var(--ease); }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .burger span::after { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 90; background: var(--cream);
  display: flex; flex-direction: column; gap: .3rem; padding: 5.5rem var(--gutter) 2rem;
  transform: translateY(-100%); transition: transform .45s var(--ease); visibility: hidden;
}
body.nav-open .drawer { transform: none; visibility: visible; }
.drawer a { padding: 1rem 0; border-bottom: 1px solid var(--line-soft); font-family: var(--f-display); font-size: 1.3rem; font-weight: 500; color: var(--navy); }
.drawer .btn { margin-top: 1.6rem; border-bottom: 0; }
.drawer__close { position: absolute; top: 1.2rem; right: var(--gutter); width: 44px; height: 44px; font-size: 1.7rem; color: var(--navy); }

/* ------------------------------------------------------------ rozcestník */
.gate { min-height: 100svh; display: flex; flex-direction: column; background: var(--cream); }
.gate__scs { display: inline-flex; align-items: center; gap: .5rem; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.gate__scs b { color: var(--navy); }
.gate__scs i { font-style: normal; color: #3FA535; }
.gate__body { flex: 1 1 auto; display: flex; align-items: center; }
.gate__body .wrap { width: 100%; padding-block: clamp(1.5rem, 4vw, 3rem); }
.gate__intro { max-width: 46rem; margin-inline: auto; text-align: center; }
.gate__intro .lead { margin-top: 1.4rem; }
.gate__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.6rem); margin-top: clamp(2.2rem, 5vw, 3.6rem); }
.gate-card {
  position: relative; border-radius: var(--r); overflow: hidden; background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.gate-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.gate-card__img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; flex: none; }
.gate-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gate-card:hover .gate-card__img img { transform: scale(1.05); }
.gate-card__body { padding: clamp(1.4rem, 2.4vw, 2rem); display: flex; align-items: center; gap: 1rem; }
.gate-card__ico { width: 52px; height: 52px; border-radius: 50%; background: var(--gold-wash); color: var(--gold); display: grid; place-items: center; flex: none; }
.gate-card__ico svg { width: 26px; height: 26px; }
.gate-card__name { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.2rem, 1.8vw, 1.5rem); color: var(--navy); letter-spacing: -.015em; }
.gate-card__sub { display: block; font-size: .88rem; color: var(--muted); margin-top: .15rem; }
.gate-card__go { margin-left: auto; width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; flex: none; transition: background .35s var(--ease), transform .35s var(--ease); }
.gate-card__go svg { width: 18px; height: 18px; }
.gate-card:hover .gate-card__go { background: var(--gold); transform: translateX(3px); }
.gate-card__flag { margin-left: auto; align-self: center; flex: none; background: var(--cream-2); color: var(--muted); border-radius: 100px; padding: .4rem .85rem; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.gate-card--soon:hover { transform: none; box-shadow: var(--shadow); border-color: var(--line); }
.gate-card--soon .gate-card__img img { filter: grayscale(.5) brightness(1.03); }

/* ------------------------------------------------------------------ hero */
.hero { padding-block: clamp(2.5rem, 5vw, 4.5rem) 0; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) 22rem; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.hero h1 { margin-top: 1.3rem; max-width: 15ch; }
.hero__sub { margin-top: 1.5rem; max-width: 34rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.4rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.hero__trust div { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--muted); }
.hero__trust svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

.qcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.4rem, 2.2vw, 1.9rem); box-shadow: var(--shadow); }
.qcard h2 { font-family: var(--f-display); font-size: 1.15rem; font-weight: 500; color: var(--navy); letter-spacing: -.015em; }
.qcard__row { display: flex; gap: .8rem; align-items: flex-start; padding-block: .9rem; border-bottom: 1px solid var(--line-soft); }
.qcard__row:first-of-type { border-top: 1px solid var(--line-soft); margin-top: 1.1rem; }
.qcard__row svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: .28rem; }
.qcard__row b { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .1rem; }
.qcard__row span { font-size: .95rem; color: var(--ink); }
.qcard .btn { margin-top: 1.3rem; }

.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.8rem, 1.4vw, 1.3rem); margin-top: clamp(2.5rem, 5vw, 4rem); }
.tile { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; display: flex; align-items: flex-end; padding: 1.4rem; isolation: isolate; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1s var(--ease); }
.tile::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(10,34,66,.82) 0%, rgba(10,34,66,.1) 62%); }
.tile:hover img { transform: scale(1.06); }
.tile b { color: #fff; font-family: var(--f-display); font-size: 1.15rem; font-weight: 500; letter-spacing: -.01em; }
.tile span { display: block; color: rgba(255,255,255,.78); font-size: .86rem; margin-top: .2rem; }

/* ----------------------------------------------------------------- karty */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.9rem, 1.6vw, 1.4rem); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(1.4rem, 2.2vw, 1.9rem);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.card__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--gold-wash); color: var(--gold); display: grid; place-items: center; margin-bottom: 1.1rem; }
.card__ico svg { width: 23px; height: 23px; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .93rem; color: var(--muted); line-height: 1.6; }

/* --------------------------------------------------------------- zákroky */
.proc-rows { display: grid; gap: clamp(.9rem, 1.6vw, 1.3rem); }
.proc-row {
  display: grid; grid-template-columns: 15rem minmax(0, 1fr); gap: clamp(1.2rem, 2.4vw, 2.4rem);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.proc-row:hover { box-shadow: var(--shadow); border-color: var(--gold-light); }
.proc-row__img { position: relative; overflow: hidden; }
.proc-row__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.proc-row:hover .proc-row__img img { transform: scale(1.05); }
.proc-row__body { padding: clamp(1.3rem, 2.2vw, 1.9rem) clamp(1.3rem, 2.2vw, 1.9rem) clamp(1.3rem, 2.2vw, 1.9rem) 0; }
.proc-row__head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.proc-row__head .card__ico { margin: 0; width: 42px; height: 42px; border-radius: 10px; }
.proc-row__head h3 { font-size: 1.25rem; }
/* Zoznam zákrokov už nie je len rad pilulkiek, ku každému zákroku patrí
   jednovetový popis (feedback MUDr. Kováča z 2026-08-28). */
.proc-list { display: grid; gap: .85rem; }
.proc-list li { position: relative; padding-left: 1.1rem; }
.proc-list li::before { content: ''; position: absolute; left: 0; top: .58em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.proc-list b { font-weight: 600; font-size: .96rem; color: var(--navy); }
.proc-list span { display: block; margin-top: .1rem; font-size: .89rem; color: var(--muted); line-height: 1.55; }

/* ----------------------------------------------------------------- prečo */
.why { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 4vw, 4rem); align-items: center; }
/* fotka budovy je na výšku (1080 × 1350), aby vyplnila stĺpec vedľa textu */
.why__media { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 5; }
.why__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.why__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.2vw, 1.9rem); }
.why-item { display: flex; gap: .9rem; }
.why-item__ico { width: 40px; height: 40px; border-radius: 10px; background: var(--white); border: 1px solid var(--line); color: var(--gold); display: grid; place-items: center; flex: none; }
.why-item__ico svg { width: 20px; height: 20px; }
.why-item h3 { font-size: .98rem; margin-bottom: .3rem; }
.why-item p { font-size: .9rem; color: var(--muted); line-height: 1.55; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.9rem, 1.6vw, 1.3rem); margin-top: clamp(2.5rem, 5vw, 4rem); }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.3rem, 2.2vw, 1.8rem); }
.stat b { display: block; font-family: var(--f-display); font-weight: 600; font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1; color: var(--gold); letter-spacing: -.03em; }
.stat span { display: block; margin-top: .6rem; font-weight: 600; font-size: .92rem; color: var(--navy); }
.stat small { display: block; margin-top: .2rem; font-size: .84rem; color: var(--muted); }

/* ---------------------------------------------------------------- lekári */
.docs { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.doc { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: grid; grid-template-columns: 13rem minmax(0, 1fr); transition: box-shadow .4s var(--ease), border-color .4s var(--ease); }
.doc:hover { box-shadow: var(--shadow); border-color: var(--gold-light); }
.doc__img { position: relative; }
.doc__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
.doc__body { padding: clamp(1.3rem, 2.2vw, 1.8rem); display: flex; flex-direction: column; gap: .6rem; }
.doc__name { font-family: var(--f-display); font-weight: 500; font-size: 1.22rem; color: var(--navy); letter-spacing: -.015em; }
.doc__body p { font-size: .92rem; color: var(--muted); line-height: 1.6; }
.doc__body .link-a { margin-top: auto; align-self: flex-start; }

/* ---------------------------------------------------------------- proces */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(.9rem, 1.6vw, 1.3rem); }
.step { background: rgba(255,255,255,.06); border: 1px solid rgba(199,154,95,.24); border-radius: var(--r); padding: clamp(1.2rem, 2vw, 1.7rem); }
.step__no { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: .95rem; margin-bottom: 1rem; }
.step h3 { font-size: 1rem; margin-bottom: .45rem; }
.step p { font-size: .89rem; color: #A6B5C3; line-height: 1.55; }

/* ------------------------------------------------------------- priestory */
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.9rem, 1.6vw, 1.3rem); }
.rooms figure { margin: 0; }
.rooms .frame { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; }
.rooms img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.rooms figure:hover img { transform: scale(1.05); }
.rooms figcaption { margin-top: .8rem; font-weight: 600; font-size: .92rem; color: var(--navy); }

/* ------------------------------------------------------------ referencie */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.9rem, 1.6vw, 1.4rem); }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.4rem, 2.2vw, 2rem); display: flex; flex-direction: column; gap: 1rem; }
.quote__stars { display: flex; gap: .2rem; color: var(--gold); }
.quote__stars svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.quote p { font-size: 1rem; line-height: 1.65; color: var(--ink); }
.quote footer { margin-top: auto; display: flex; align-items: center; gap: .7rem; font-size: .88rem; color: var(--muted); }
.quote__av { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-wash); color: var(--gold-deep); display: grid; place-items: center; font-weight: 600; font-size: .82rem; }

/* --------------------------------------------------------------- CTA box */
.ctabox {
  background: var(--navy); color: #fff; border-radius: clamp(16px, 2.4vw, 28px);
  padding: clamp(2rem, 4.5vw, 3.6rem);
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1.8rem; align-items: center;
  position: relative; overflow: hidden;
}
.ctabox h2 { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.5rem, 2.8vw, 2.3rem); letter-spacing: -.02em; }
.ctabox p { margin-top: .7rem; color: #B9C6D2; max-width: 38rem; }
.ctabox > * { position: relative; z-index: 1; }
.ctabox::after { content: ''; position: absolute; right: -6%; top: -60%; width: 40%; padding-bottom: 40%; border-radius: 50%; z-index: 0; background: radial-gradient(circle, rgba(199,154,95,.28), rgba(199,154,95,0) 68%); }

/* --------------------------------------------------------------- kontakt */
.contact { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(1.5rem, 3vw, 2.6rem); align-items: start; }
.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.5rem, 2.6vw, 2.2rem); }
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .78rem; font-weight: 600; color: var(--navy); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .95rem; color: var(--ink); background: var(--cream);
  border: 1px solid var(--line); border-radius: var(--r-sm); padding: .8rem 1rem; width: 100%;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(165,122,70,.12); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__note { font-size: .82rem; color: var(--muted); }
/* hláška ukážkovej verzie, formulár zatiaľ neodosiela */
.form .btn:disabled { opacity: .65; cursor: progress; transform: none; box-shadow: none; }
.form__wait {
  margin: 0; padding: .9rem 1.1rem; border-radius: var(--r-sm);
  background: var(--cream-2); border: 1px solid var(--line);
  font-size: .9rem; color: var(--muted); line-height: 1.55;
}
.form__ok {
  margin: 0; padding: .9rem 1.1rem; border-radius: var(--r-sm);
  background: #F0F7F2; border: 1px solid #9CC5A8;
  font-size: .9rem; color: #2C5E3B; line-height: 1.55;
}
.form__demo {
  margin: 0; padding: .9rem 1.1rem; border-radius: var(--r-sm);
  background: var(--gold-wash); border: 1px solid var(--gold-light);
  font-size: .9rem; color: var(--gold-deep); line-height: 1.55;
}
.form .btn { justify-self: start; }

.info-list { display: grid; gap: .2rem; }
.info-row { display: flex; gap: .9rem; align-items: flex-start; padding-block: .9rem; border-bottom: 1px solid var(--line-soft); }
.info-row:last-child { border-bottom: 0; }
.info-row__ico { width: 38px; height: 38px; border-radius: 10px; background: var(--gold-wash); color: var(--gold); display: grid; place-items: center; flex: none; }
.info-row__ico svg { width: 19px; height: 19px; }
.info-row b { display: block; font-size: .74rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: .15rem; }
.info-row a:hover { color: var(--gold-deep); }
.hours { display: grid; gap: .3rem; font-size: .93rem; }
.hours div { display: flex; justify-content: space-between; gap: 1rem; }
.hours span:last-child { color: var(--muted); }
.map { margin-top: 1rem; border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 16 / 9; background: var(--cream-2); border: 1px solid var(--line); display: grid; place-items: center; }
.map span { font-size: .84rem; color: var(--muted); }
.map { position: relative; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* ---------------------------------------------------------------- footer */
.footer { background: var(--petrol); color: #B9C6D2; font-size: .93rem; }
.footer__top { padding-block: clamp(2.8rem, 5vw, 4.2rem); display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(1.8rem, 3.5vw, 3rem); }
.footer img { height: 54px; width: auto; }
.footer h4 { font-family: var(--f-display); font-weight: 500; font-size: .95rem; color: #fff; margin-bottom: 1.1rem; }
.footer li { margin-bottom: .55rem; }
.footer a:hover { color: var(--gold-light); }
.footer__scs { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.4rem; font-size: .78rem; }
.footer__scs b { color: #fff; }
.footer__scs i { font-style: normal; color: #6ECB63; }
.social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: background .3s var(--ease); }
.social a:hover { background: var(--gold); color: #fff; }
.social svg { width: 17px; height: 17px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.3rem; display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; justify-content: space-between; font-size: .84rem; }
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }

/* ----------------------------------------------------------- lekár: hero */
.crumbs { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .84rem; color: var(--muted); padding-top: clamp(1rem, 2vw, 1.6rem); }
.crumbs a:hover { color: var(--gold-deep); }
.crumbs em { font-style: normal; color: var(--navy); font-weight: 600; }
.dochero { background: var(--cream-2); }
.dochero__grid { display: grid; grid-template-columns: 20rem minmax(0, 1fr); gap: clamp(1.6rem, 3.5vw, 3.2rem); align-items: center; padding-block: clamp(2rem, 4vw, 3.4rem); }
.dochero__img { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.dochero__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
.dochero h1 { margin-top: 1rem; }
.dochero__role { margin-top: .8rem; font-size: 1.05rem; color: var(--gold-deep); font-weight: 600; }
.dochero__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.dochero__chips span { display: inline-flex; align-items: center; gap: .45rem; background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: .45rem 1rem; font-size: .85rem; color: var(--navy); }
.dochero__chips svg { width: 15px; height: 15px; color: var(--gold); }

.tl-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.4vw, 2rem); }
.tl li { display: grid; grid-template-columns: 6.5rem minmax(0, 1fr); gap: 1rem; padding-block: .95rem; border-bottom: 1px solid var(--line-soft); align-items: baseline; }
.tl li:last-child { border-bottom: 0; }
.tl b { font-weight: 600; font-size: .9rem; color: var(--gold-deep); }
.tl span { display: block; font-size: .95rem; line-height: 1.5; }
.tl small { display: block; margin-top: .1rem; font-size: .85rem; color: var(--muted); }
.panel__head { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.panel__head .card__ico { margin: 0; width: 40px; height: 40px; border-radius: 10px; }

.badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(.9rem, 1.6vw, 1.2rem); }
.badge { display: flex; gap: .9rem; background: rgba(255,255,255,.06); border: 1px solid rgba(199,154,95,.24); border-radius: var(--r); padding: 1.2rem 1.3rem; }
.badge__ico { width: 38px; height: 38px; border-radius: 10px; background: rgba(199,154,95,.16); color: var(--gold-light); display: grid; place-items: center; flex: none; }
.badge__ico svg { width: 19px; height: 19px; }
.badge b { display: block; color: #fff; font-weight: 600; font-size: .98rem; }
/* len popisný text, nie čip .badge__ico (ten je tiež span), viď LESSONS.md, kapitola 10 */
.badge > div > span { display: block; margin-top: .2rem; font-size: .87rem; color: #A6B5C3; line-height: 1.5; }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.chips span { border: 1px solid rgba(199,154,95,.35); border-radius: 100px; color: var(--gold-light); padding: .45rem 1rem; font-size: .85rem; }

.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.9rem, 1.6vw, 1.3rem); }

/* -------------------------------------------------------------- animácie */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-2 { transition-delay: .07s; }
.rv-3 { transition-delay: .14s; }
.rv-4 { transition-delay: .21s; }
.rv-5 { transition-delay: .28s; }

.mobar { display: none; }

/* ------------------------------------------------------------- responzív */
@media (max-width: 1180px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .nav, .header > .wrap > .btn { display: none; }
  .burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  /* na mobile ide nadpis prvý, kontaktná karta hneď za CTA */
  .why { grid-template-columns: 1fr; }
  .docs { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .dochero__grid { grid-template-columns: 1fr; }
  .dochero__img { max-width: 20rem; }
  .tl-cols { grid-template-columns: 1fr; }
  .badges { grid-template-columns: 1fr; }
  .gate__cards { grid-template-columns: 1fr; }
  .ctabox { grid-template-columns: 1fr; }
  .mobar {
    display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: rgba(253,250,247,.95); backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding: .6rem var(--gutter);
  }
  .mobar .btn { width: 100%; }
  body { padding-bottom: 68px; }
}
@media (max-width: 720px) {
  .tiles { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .why__list { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .rooms { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .proc-row { grid-template-columns: 1fr; }
  .proc-row__img { aspect-ratio: 16 / 9; }
  .proc-row__body { padding: clamp(1.2rem, 2.2vw, 1.8rem); }
  .doc { grid-template-columns: 1fr; }
  .doc__img { aspect-ratio: 4 / 3; }
  .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .tl li { grid-template-columns: 1fr; gap: .2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ==========================================================================
   HOMEPAGE (index.html)
   Rozcestník zostáva prvým, čo návštevník uvidí, pod ním pokračuje plná
   úvodná stránka s informáciami o klinike. Toto je zároveň hlavná SEO stránka.
   ========================================================================== */

/* kotvy nesmú skončiť pod stálym headerom */
html { scroll-padding-top: 96px; }

/* ------------------------------------------------------------ rozcestník
   Horná lišta aj header sú nad rozcestníkom v toku, preto sa ich výška odpočíta,
   aby celý rozcestník aj so šípkou sedel presne na jeden viewport. */
:root { --top-h: 121px; }
.gate { min-height: calc(100svh - var(--top-h)); }

/* riadky: voľná plocha, obsah, voľná plocha so šípkou v jej strede */
.gate__body {
  flex: 1 1 auto;
  display: grid;
  grid-template-rows: minmax(1.5rem, 1fr) auto minmax(4.5rem, 1fr);
  align-items: center;
}
.gate__body > .wrap { grid-row: 2; padding-block: 0; }

.gate .display { font-size: clamp(2.2rem, 4.4vw, 4rem); }
.gate__intro { max-width: 50rem; }
.gate__intro .lead { margin-top: 1.3rem; font-size: clamp(1.02rem, 1.1vw, 1.14rem); }

/* kontakty presunuté z pätičky rozcestníka pod hero text */
.gate__facts {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
  margin-top: clamp(1.6rem, 2.8vw, 2.2rem);
}
.gate__facts a, .gate__facts span {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 100px;
  padding: .6rem 1.1rem; font-size: .92rem; color: var(--ink);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.gate__facts a:hover { border-color: var(--gold); color: var(--gold-deep); }
.gate__facts svg { width: 17px; height: 17px; color: var(--gold); flex: none; }

.gate__cards { margin-top: clamp(2rem, 4vw, 3.2rem); }

/* karta je vodorovná: fotka vľavo, popis vpravo. Je nižšia než karta s fotkou
   navrchu, takže sa aj so šípkou zmestí na jeden viewport. */
.gate-card { flex-direction: row; align-items: stretch; }
.gate-card__img { width: 30%; aspect-ratio: 4 / 3; }
.gate-card__body { flex: 1; min-width: 0; padding: clamp(1.1rem, 1.9vw, 1.6rem); gap: .9rem; }

/* šípka dole, vycentrovaná v medzere pod kartami */
.gate__scroll {
  grid-row: 3; justify-self: center; align-self: center;
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  padding-block: .5rem;
}
.gate__scroll__label { font-size: .95rem; font-weight: 600; color: var(--muted); transition: color .3s var(--ease); }
.gate__scroll__btn {
  position: relative; width: 58px; height: 58px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow);
  display: grid; place-items: center; color: var(--gold);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
/* pulzujúci kruh, aby bolo jasné, že sa má scrollovať ďalej */
.gate__scroll__btn::before {
  content: ''; position: absolute; inset: -1px; border-radius: 50%;
  border: 1px solid var(--gold); animation: gateRipple 2.6s var(--ease) infinite;
}
.gate__scroll__btn svg { width: 24px; height: 24px; animation: gateNudge 2.6s var(--ease) infinite; }
.gate__scroll:hover .gate__scroll__label { color: var(--gold-deep); }
.gate__scroll:hover .gate__scroll__btn { background: var(--gold); border-color: var(--gold); color: #fff; }
@keyframes gateRipple {
  0% { transform: scale(1); opacity: .5; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}
@keyframes gateNudge {
  0%, 70%, 100% { transform: translateY(0); }
  35% { transform: translateY(5px); }
}

/* --------------------------------------------------------- odbory (vetvy)
   Dva oddelené bloky. ORL a plastika sa nikde nemiešajú: každý blok má
   vlastnú fotku, vlastný zoznam aj vlastné čísla. */
.branches { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.6rem); }
.branch {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.branch:hover { box-shadow: var(--shadow-lg); border-color: var(--gold-light); transform: translateY(-4px); }
.branch--soon:hover { transform: none; box-shadow: var(--shadow); border-color: var(--line); }
.branch__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--cream-2); }
.branch__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.branch:hover .branch__media img { transform: scale(1.05); }
.branch--soon .branch__media img { filter: grayscale(.45) brightness(1.03); }
.branch__flag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--muted); border-radius: 100px;
  padding: .35rem .8rem; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.branch__body { padding: clamp(1.4rem, 2.4vw, 2rem); display: flex; flex-direction: column; gap: 1.1rem; flex: 1; }
.branch__head { display: flex; align-items: center; gap: .9rem; }
.branch__head .card__ico { margin: 0; width: 48px; height: 48px; flex: none; }
.branch__title { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.35rem, 2.2vw, 1.8rem); color: var(--navy); letter-spacing: -.02em; }
.branch__sub { margin: .1rem 0 0; font-size: .88rem; color: var(--muted); }
.branch__list { display: grid; gap: .9rem; border-top: 1px solid var(--line-soft); padding-top: 1.1rem; }
.branch__list li { display: flex; gap: .8rem; align-items: flex-start; }
.branch__ico { width: 34px; height: 34px; border-radius: 9px; background: var(--gold-wash); color: var(--gold); display: grid; place-items: center; flex: none; }
.branch__ico svg { width: 18px; height: 18px; }
/* pozor na selektor: .branch__ico je tiež <span> vnútri .branch__list li,
   preto sa text zameriava cez vnorený div, inak by chip prišiel o display: grid
   a ikona by sa prilepila na horný okraj */
.branch__list li > div > b { display: block; font-weight: 600; font-size: .95rem; color: var(--navy); }
.branch__list li > div > span { display: block; margin-top: .1rem; font-size: .88rem; color: var(--muted); line-height: 1.5; }
.branch__chips { display: flex; flex-wrap: wrap; gap: .5rem; border-top: 1px solid var(--line-soft); padding-top: 1.1rem; }
.branch__chips li { background: var(--cream-2); border-radius: 100px; padding: .45rem 1rem; font-size: .88rem; font-weight: 500; color: var(--navy); }
.branch__nums { display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; border-top: 1px solid var(--line-soft); padding-top: 1.1rem; }
.branch__nums b { display: block; font-family: var(--f-display); font-weight: 600; font-size: 1.8rem; line-height: 1; color: var(--gold); letter-spacing: -.03em; }
.branch__nums span { display: block; margin-top: .3rem; font-size: .84rem; color: var(--muted); max-width: 12rem; }
.branch .btn { margin-top: auto; align-self: flex-start; }
.btn--dis { border-style: dashed; color: var(--muted); cursor: default; }
.btn--dis:hover { transform: none; border-color: var(--line); color: var(--muted); }

/* ------------------------------------------------- prečo Medicentrum PN */
.cards--3 { grid-template-columns: repeat(3, 1fr); }

/* ------------------------------------------------------------ tím lekárov */
.teamgroup + .teamgroup { margin-top: clamp(2rem, 4vw, 3.2rem); }
.teamgroup__label {
  display: flex; align-items: center; gap: 1rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 1.2rem;
}
.teamgroup__label::after { content: ''; flex: 1 1 auto; height: 1px; background: var(--line); }
/* ORL lekári: karty bez fotky a bez odkazu, vlastné podstránky nemajú (zámer klienta).
   Kým klinika dodá fotky, kartu vedie krúžok s iniciálami. Vygenerovaná tvár pri mene
   reálneho lekára je zakázaná, viď IMAGES.md. */
.docs--3 { grid-template-columns: repeat(3, 1fr); }
.doc--plain { display: flex; align-items: flex-start; gap: 1rem; padding: clamp(1.3rem, 2.2vw, 1.8rem); }
.doc--plain .doc__body { padding: 0; gap: .45rem; }
.doc--plain .doc__body p { font-size: .92rem; color: var(--muted); line-height: 1.55; }
.doc__avatar {
  width: 54px; height: 54px; border-radius: 50%; flex: none;
  background: var(--gold-wash); color: var(--gold-deep);
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 600; font-size: 1.02rem;
}

/* ------------------------------------------------- objednanie (3 kroky) */
.steps--3 { grid-template-columns: repeat(3, 1fr); max-width: 62rem; margin-inline: auto; }

/* ------------------------------------------------------------------ FAQ */
.faq { max-width: 52rem; margin-inline: auto; display: grid; gap: .7rem; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq details[open] { border-color: var(--gold-light); box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem clamp(1rem, 2vw, 1.5rem);
  font-family: var(--f-display); font-weight: 500; font-size: 1.02rem; color: var(--navy); letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-deep); }
.faq summary svg { width: 20px; height: 20px; margin-left: auto; flex: none; color: var(--gold); transition: transform .35s var(--ease); }
.faq details[open] summary svg { transform: rotate(180deg); }
.faq details p { margin: 0; padding: 0 clamp(1rem, 2vw, 1.5rem) 1.3rem; color: var(--muted); line-height: 1.7; }

/* mapa vedľa kontaktných údajov na plnú výšku stĺpca */
.map--big { margin-top: 0; aspect-ratio: auto; min-height: 26rem; height: 100%; }

/* sociálne ikony na svetlom podklade */
.social--light { margin-top: .5rem; }
.social--light a { background: var(--gold-wash); color: var(--gold-deep); }
.social--light a:hover { background: var(--gold); color: #fff; }

/* Na nižších obrazovkách (bežný notebook) sa mierka rozcestníka stiahne,
   aby obe karty aj šípka zostali nad ohybom. Hranica počíta aj s hornou lištou
   a hlavičkou, ktoré sú nad rozcestníkom v toku. */
@media (max-height: 930px) {
  .gate .display { font-size: clamp(1.9rem, 3.1vw, 2.7rem); }
  .gate__intro .lead { margin-top: 1rem; font-size: 1rem; line-height: 1.6; }
  .gate__facts { margin-top: .95rem; gap: .45rem; }
  .gate__facts a, .gate__facts span { padding: .48rem .9rem; font-size: .86rem; }
  .gate__cards { margin-top: 1.2rem; }
  .gate-card__img { width: 28%; }
  .gate-card__body { padding: .95rem 1.2rem; }
  .gate-card__ico { width: 46px; height: 46px; }
  .gate-card__ico svg { width: 23px; height: 23px; }
  .gate__body { grid-template-rows: minmax(.75rem, 1fr) auto minmax(3rem, 1fr); }
  .gate__scroll { gap: .55rem; padding-block: 0; }
  .gate__scroll__label { font-size: .86rem; }
  .gate__scroll__btn { width: 48px; height: 48px; }
  .gate__scroll__btn svg { width: 20px; height: 20px; }
}

/* odkazy na osobné webstránky lekára (feedback MUDr. Kováča 2026-08-28) */
.doclinks {
  display: flex; flex-wrap: wrap; align-items: center; gap: .6rem;
  margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
}
.doclinks__label { font-size: .74rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-right: .3rem; }
.doclinks a {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 100px;
  padding: .5rem 1rem; font-size: .9rem; font-weight: 500; color: var(--navy);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.doclinks a:hover { border-color: var(--gold); color: var(--gold-deep); }
.doclinks svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

/* ------------------------------------------------------ responzív homepage */
@media (max-width: 1100px) {
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .branches { grid-template-columns: 1fr; }
  .docs--3 { grid-template-columns: 1fr; }
  .steps--3 { grid-template-columns: 1fr; }
  .map--big { min-height: 18rem; }
}
@media (max-width: 640px) {
  /* Horná lišta sa na mobile zalamovala do troch riadkov. Adresa je aj v pätičke
     aj v sekcii Kde nás nájdete, tak tu ustúpi. Telefón a SCS+ zostávajú. */
  .topbar { font-size: .68rem; }
  .topbar .wrap { flex-wrap: wrap; justify-content: center; gap: .1rem .7rem; min-height: 0; padding-block: .3rem; }
  .topbar__l { gap: .6rem; justify-content: center; }
  .topbar__l a:nth-child(3) { display: none; }
  /* v tvare +421 sú čísla dlhšie, ikonky telefónu na mobile ustúpia,
     inak by sa obe čísla nezmestili do jedného riadka */
  .topbar__l svg { display: none; }
  .topbar__tag { font-size: .52rem; padding: .08rem .35rem; letter-spacing: .05em; }

  .cards--3 { grid-template-columns: 1fr; }
  .branch__head .card__ico { width: 42px; height: 42px; }

  /* Na mobile musia byť obe voľby viditeľné bez scrollovania (korektúra Obr. 3.2),
     preto sa karty rozcestníka zmenšia na kompaktné riadky bez fotky. */
  .gate .tag { font-size: .62rem; letter-spacing: .08em; }
  .gate .display { font-size: 1.62rem; }
  .gate__intro .lead { font-size: .86rem; line-height: 1.5; margin-top: .8rem; }
  .gate__facts { margin-top: .8rem; gap: .35rem; }
  .gate__facts a, .gate__facts span { padding: .34rem .7rem; font-size: .74rem; }
  .gate__facts svg { width: 14px; height: 14px; }
  .gate__cards { margin-top: 1.1rem; gap: .7rem; }
  .gate-card__img { display: none; }
  .gate-card__body { padding: .85rem 1rem; gap: .7rem; }
  .gate-card__ico { width: 40px; height: 40px; }
  .gate-card__ico svg { width: 20px; height: 20px; }
  .gate-card__name { font-size: 1.05rem; }
  .gate-card__sub { font-size: .8rem; }
  .gate-card__flag { font-size: .58rem; padding: .3rem .6rem; }
  .gate-card__go { width: 36px; height: 36px; }
  /* horná lišta má na mobile dva riadky (~59px), header ~79px, dole sticky lišta 68px */
  .gate { min-height: calc(100svh - 138px - 68px); }
  .gate__body { grid-template-rows: .5rem auto 1fr; }
  .gate__scroll { gap: .4rem; }
  .gate__scroll__label { font-size: .78rem; }
  .gate__scroll__btn { width: 40px; height: 40px; }
  .gate__scroll__btn svg { width: 18px; height: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .gate__scroll__btn svg, .gate__scroll__btn::before { animation: none; }
}
