    /* ─── Fonts ─────────────────────────────────────────────────────────────── */
    @font-face {
      font-family: 'Outfit';
      font-style: normal;
      font-weight: 300 800;
      font-display: swap;
      src: url('../fonts/outfit-variable.woff2') format('woff2-variations'),
           url('../fonts/outfit-variable.woff2') format('woff2');
    }

    /* ─── Reset & Base ──────────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Outfit', system-ui, sans-serif;
      background: #ffffff;
      color: #18181b;
      -webkit-font-smoothing: antialiased;
    }

    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; font-family: inherit; border: none; background: none; }

    /* Utilities */
    .is-hidden { display: none !important; }
    .contact__item-sub--spaced { margin-top: 0.5rem; }

    /* Disable text selection on every interactive control — buttons and the
       anchors that visually act as buttons or nav items. Body copy stays
       selectable; this only covers things you click, not things you read. */
    button,
    .btn-primary,
    .btn-ghost,
    .nav__logo,
    .nav__links a,
    .nav__mobile a,
    .nav__cta,
    .services__link,
    .contact__map-link,
    .contact__phone-link,
    .hero__ctas a,
    .hero__scroll,
    .list__toggle,
    .hours__toggle {
      user-select: none;
      -webkit-user-select: none;
    }

    /* FAQ question is a <button> for keyboard/a11y, but the text inside is
       useful to copy — explicitly opt back in. */
    .faq__question {
      user-select: text;
      -webkit-user-select: text;
    }

    /* ─── Tokens ────────────────────────────────────────────────────────────── */
    :root {
      --sky-50:  #f0f9ff;
      --sky-100: #e0f2fe;
      --sky-200: #bae6fd;
      --sky-400: #38bdf8;
      --sky-500: #0ea5e9;
      --sky-600: #0284c7;
      --sky-700: #0369a1;
      --zinc-50:  #fafafa;
      --zinc-100: #f4f4f5;
      --zinc-200: #e4e4e7;
      --zinc-300: #d4d4d8;
      --zinc-400: #a1a1aa;
      --zinc-500: #71717a;
      --zinc-600: #52525b;
      --zinc-700: #3f3f46;
      --zinc-800: #27272a;
      --zinc-900: #18181b;
      --zinc-950: #09090b;

      --radius-full: 9999px;
      --radius-xl: 1rem;
      --radius-2xl: 1.25rem;

      --max-width: 1400px;
      --page-padding: clamp(1.5rem, 4vw, 2.5rem);
    }

    /* ─── Animations ────────────────────────────────────────────────────────── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .anim-up      { animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
    .anim-up-d1   { animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 150ms both; }
    .anim-up-d2   { animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 300ms both; }
    .anim-up-d3   { animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 450ms both; }
    .anim-up-d4   { animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 600ms both; }
    .anim-fade-d5 { animation: fadeIn    0.6s ease             900ms both; }

    .highlighted {
      color: var(--sky-600);
    }

    /* ─── Layout helpers ────────────────────────────────────────────────────── */
    .container {
      max-width: var(--max-width);
      margin-inline: auto;
      padding-inline: var(--page-padding);
    }

    section {
      scroll-margin-top: 5rem;
    }

    .section-label {
      display: inline-block;
      font-size: 0.625rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sky-600);
      margin-bottom: 1.25rem;
    }

    .section-heading {
      font-size: clamp(2rem, 4vw, 3.25rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.05;
      color: var(--zinc-900);
      margin-bottom: 1.25rem;
    }

    .section-body {
      font-size: 1rem;
      color: var(--zinc-500);
      line-height: 1.7;
      max-width: 36ch;
    }

    .two-col {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    @media (min-width: 1024px) {
      .two-col { grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }
    }

    /* ─── Buttons ───────────────────────────────────────────────────────────── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 1.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: #fff;
      background: var(--sky-600);
      border-radius: var(--radius-full);
      transition: background 0.2s ease, transform 0.1s ease;
    }
    .btn-primary:hover  { background: var(--sky-700); }
    .btn-primary:active { transform: scale(0.98); }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 1.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--zinc-700);
      border: 1px solid var(--zinc-200);
      border-radius: var(--radius-full);
      transition: border-color 0.2s, background 0.2s, transform 0.1s;
    }
    .btn-ghost:hover  { border-color: var(--zinc-300); background: var(--zinc-50); }
    .btn-ghost:active { transform: scale(0.98); }

    /* ─── Nav ───────────────────────────────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    }

    .nav.scrolled,
    .nav:has(.nav__mobile.open) {
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(8px);
      box-shadow: 0 1px 12px rgba(0,0,0,0.13);
    }

    .nav__inner {
      max-width: var(--max-width);
      margin-inline: auto;
      padding-inline: var(--page-padding);
      height: 4.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .nav__logo {
      display: flex;
      align-items: center;
    }

    .nav__logo-badge {
      width: 1.75rem;
      height: 1.75rem;
      border-radius: 50%;
      background: var(--sky-600);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.6rem;
      font-weight: 700;
      color: white;
      flex-shrink: 0;
    }

    .nav__logo-text {
      font-size: 1.17rem;
      letter-spacing: -0.04em;
      font-weight: 600;
      color: var(--zinc-900);
    }

    .nav__links {
      display: none;
      list-style: none;
      gap: 1.75rem;
    }

    .nav__links a {
      font-size: 0.875rem;
      color: var(--zinc-500);
      transition: color 0.2s;
    }
    .nav__links a:hover { color: var(--zinc-900); }

    .nav__updates-link.has-updates {
      color: #c4470c;
      font-weight: 700;
    }

    .nav__cta { display: none; }

    .nav__hamburger {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      color: var(--zinc-600);
    }

    .nav__mobile {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding-inline: var(--page-padding);
      padding-block: 0;
      border-top: 1px solid transparent;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
    }
    .nav__mobile.open {
      max-height: 24rem;
      padding-block: 1.25rem;
      border-top-color: var(--zinc-100);
    }
    .nav__mobile a {
      font-size: 0.875rem;
      color: var(--zinc-600);
      transition: color 0.2s;
    }
    .nav__mobile a:hover { color: var(--zinc-900); }

    .nav__mobile .nav__updates-link.has-updates {
      color: #c4470c;
    }
    .nav__mobile .nav__mobile-phone {
      font-weight: 600;
      color: var(--sky-600);
      padding-top: 0.5rem;
      border-top: 1px solid var(--zinc-100);
    }

    .nav__mobile .nav__mobile-phone {
      padding-top: 1.2rem;
      margin-top: .45rem;
    }

    @media (min-width: 768px) {
      .nav__inner { height: 5rem; }
      .nav__links  { display: flex; }
      .nav__cta    { display: inline-flex; }
      .nav__hamburger { display: none; }
    }

    /* ─── Hero ──────────────────────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      background: white;
      overflow: hidden;
    }

    .hero__image-wrap {
      display: none;
      position: absolute;
      top: 0; right: 0;
      width: 54%;
      height: 100%;
    }

    .hero__image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hero__image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .4) 15%, transparent 25%);
      pointer-events: none;
    }

    .hero__shade {
      position: absolute;
      inset: 0;
      background: var(--sky-700);
      opacity: 0;
      pointer-events: none;
      z-index: 1;
      transition: opacity 0.12s linear;
    }

    .hero__content {
      position: relative;
      z-index: 2;
      max-width: var(--max-width);
      margin-inline: auto;
      padding-inline: var(--page-padding);
      padding-block: 7rem 4rem;
      width: 100%;
    }

    .hero__inner { max-width: 38rem; }

    .hero__name {
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.0;
      color: var(--zinc-900);
      margin-bottom: 1.25rem;
    }

    .hero__name span { color: var(--sky-600); }

    .hero__tagline {
      font-size: 1.125rem;
      color: var(--zinc-500);
      line-height: 1.65;
      max-width: 38ch;
      margin-bottom: 2.5rem;
    }

    .hero__ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 3.5rem;
    }

    .hero__credentials {
      padding-top: 1.75rem;
      border-top: 1px solid var(--zinc-100);
    }

    .hero__cred-label {
      font-size: 0.6875rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--sky-600);
      font-weight: 600;
      margin-bottom: 0.625rem;
    }

    .hero__cred-item {
      font-size: 0.875rem;
      color: var(--zinc-500);
      line-height: 1.9;
    }

    .hero__scroll {
      display: none;
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      flex-direction: column;
      align-items: center;
      gap: 0.45rem;
    }

    .hero__scroll-text {
      font-size: 0.5625rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--zinc-700);
      font-weight: 700;
      text-shadow: 0 1px 10px rgba(255,255,255,0.95);
    }

    .hero__scroll-note {
      display: none;
      font-size: 0.5625rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #c4470c;
      text-shadow: 0 1px 10px rgba(255,255,255,0.95);
    }

    .hero__scroll-line {
      width: 2px;
      height: 2rem;
      border-radius: var(--radius-full);
      background: linear-gradient(to bottom, rgba(63, 63, 70, 0.95), transparent);
      box-shadow: 0 1px 10px rgba(255,255,255,0.85);
    }

    .hero__scroll.has-updates .hero__scroll-note {
      display: inline-block;
    }

    .hero__scroll.has-updates .hero__scroll-line {
      background: linear-gradient(to bottom, #d75e10, rgba(247, 175, 100, 0.08));
    }

    .hero__scroll.has-updates::before {
      content: "";
      width: 0.45rem;
      height: 0.45rem;
      border-radius: 50%;
      background: #d75e10;
      box-shadow: 0 0 0 4px rgba(255, 237, 213, 0.82);
    }

    /* Mobile hero image strip */
    .hero__mobile-image {
      width: 100%;
      aspect-ratio: 16 / 6;
      overflow: hidden;
      display: block;
    }
    .hero__mobile-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    @media (min-width: 1024px) {
      .hero__content { padding-block: 0; }
      .hero__scroll { display: flex; }
      .hero__mobile-image { display: none; }
    }

    /* Desktop split layout (text left, photo right 54%) only on wide screens. */
    @media (min-width: 1200px) {
      .hero__image-wrap { display: block; }
      .hero__inner { max-width: 44%; }
    }

    /* Below 1200px the hero shows the cover photo full-bleed with a translucent
       white veil, and all content is centered. */
    @media (max-width: 1199px) {
      .hero__image-wrap {
        display: block;
        width: 100%;
        height: 100%;
      }
      .hero__image-overlay {
        background: rgba(255, 255, 255, 0.92);
      }
      .hero__mobile-image { display: none; }

      .hero__inner {
        margin-inline: auto;
        text-align: center;
      }
      .hero__tagline { margin-inline: auto; }
      .hero__ctas { justify-content: center; }
      .hero__credentials {
        text-align: center;
        border-top: 0;
        padding-top: 1.25rem;
      }

      /* Ghost button: solid white fill with a visible border at rest so it
         reads as a deliberate outlined chip on the photo. Hover fills the
         background with the same tone as the border for a quiet press affordance. */
      .hero__ctas .btn-ghost {
        background: #ffffff;
        border-color: var(--zinc-300);
      }
      .hero__ctas .btn-ghost:hover {
        background: var(--zinc-300);
        border-color: var(--zinc-300);
      }
    }

    .updates {
      padding-block: 4rem 4.35rem;
      background: #fff7ed;
      border-top: 1px solid #fed7aa;
      border-bottom: 1px solid #fed7aa;
      display: flex;
      justify-content: center;
    }

    .updates__inner {
      display: flex;
      flex-direction: column;
      gap: 0;
      width: 100%;
    }

    .updates__label {
      color: #c4470c;
    }

    .updates__list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      margin-top: 0;
    }

    .updates__item {
      padding: 1.45rem 1.6rem;
      border-radius: 1.5rem;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(247, 175, 100, 0.18);
      box-shadow: 0 12px 30px rgba(160, 55, 13, 0.08);
      border: 1px solid #fed7aa;
    }

    .updates__item:only-child {
      width: 100%;
    }

    .updates__meta {
      font-size: 0.72rem;
      letter-spacing: 0.02em;
      color: rgba(160, 55, 13, 0.58);
      margin-top: 1.05rem;
      text-align: right;
    }

    .updates__title {
      font-size: 1.125rem;
      font-weight: 700;
      line-height: 1.35;
      color: #7a2c12;
      margin-bottom: 0.55rem;
    }

    .updates__validity {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      line-height: 1.45;
      color: #c4470c;
      margin-bottom: 0.65rem;
    }

    .updates__validity::before {
      content: "";
      width: 0.95rem;
      height: 0.95rem;
      flex-shrink: 0;
      background-color: #c4470c;
      opacity: 0.95;
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") center / contain no-repeat;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") center / contain no-repeat;
    }

    .updates__text {
      font-size: 0.9375rem;
      line-height: 1.65;
      color: rgba(124, 44, 18, 0.88);
    }

    @media (max-width: 767px) {
      .updates__item {
        max-width: 100%;
      }
    }

    @media (min-width: 768px) {
      .updates__inner.is-single {
        width: min(100%, 40rem);
        margin-inline: auto;
      }

      .updates__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .updates__list.is-single {
        display: block;
      }

      .updates__list.is-single .updates__item {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-inline: 0;
      }
    }

    @media (min-width: 1024px) {
      .updates__list {
        gap: 1.25rem;
      }
    }

    /* ─── Services ──────────────────────────────────────────────────────────── */
    .services {
      padding-block: 6rem 7rem;
      background: white;
    }

    .services__link {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--sky-600);
      transition: color 0.2s, gap 0.2s;
      margin-top: 1.3rem;
    }

    .services__link:hover { color: var(--sky-700); gap: 0.5rem; }

    .services__list { display: flex; flex-direction: column; }

    .services__item {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      padding-block: 1.5rem;
      border-top: 1px solid var(--zinc-100);
      transition: background 0.2s;
      margin-inline: -0.75rem;
      padding-inline: 0.75rem;
    }

    .services__item:first-child { border-top: none; padding-top: 0; }
    .services__item:last-child { padding-bottom: 0; }

    .services__bullet {
      margin-top: 0.375rem;
      width: 1.25rem;
      height: 1.25rem;
      border-radius: 50%;
      background: var(--sky-100);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s;
    }
    .services__item:hover .services__bullet { background: var(--sky-200); }

    .services__bullet-dot {
      width: 0.375rem;
      height: 0.375rem;
      border-radius: 50%;
      background: var(--sky-500);
    }

    .services__name {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--zinc-900);
      margin-bottom: 0.375rem;
    }

    .services__desc {
      font-size: 0.875rem;
      color: var(--zinc-500);
      line-height: 1.65;
    }

    /* ─── Hours ─────────────────────────────────────────────────────────────── */
    .hours { padding-block: 6rem 7rem; background: var(--sky-50); }

    .hours__cta-phone {
      margin-top: 2rem;
      margin-bottom: 2rem;
    }

    .hours__address {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-top: 0.5rem;
    }

    .hours__address-icon {
      width: 2rem;
      height: 2rem;
      border-radius: 0.5rem;
      background: white;
      box-shadow: 0 1px 4px rgba(0,0,0,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--zinc-600);
    }

    .hours__address-text { font-size: 0.875rem; }
    .hours__address-line1 { font-weight: 600; color: var(--zinc-800); }
    .hours__address-line2 { color: var(--zinc-400); margin-top: 0.125rem; }

    .hours__table {
      background: white;
      border-radius: var(--radius-2xl);
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
      border: 1px solid var(--sky-200);
    }
    /* When today falls inside a closure, switch the whole box border to the
       same warm tone as the "Zobrazit celou dovolenou" toggle. */
    .hours__table:has(.hours__row.is-today.has-closure) {
      border-color: #fed7aa;
    }

    .hours__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.5rem;
      min-height: 4.25rem;
      border-top: 1px solid var(--zinc-100);
      transition: background 0.2s;
    }
    .hours__row:first-child { border-top: none; }
    .hours__row.is-today { background: var(--sky-50); }
    .hours__row.has-closure { background: white; }
    /* Today during a closure keeps the orange highlight as the only "today" cue. */
    .hours__row.has-closure.is-today { background: #fff7ed; }

    .hours__row-left { display: flex; align-items: center; gap: 0.75rem; }
    @media (max-width: 1023px) {
      .hours__row-left { flex-direction: column-reverse; align-items: flex-start; gap: 0.4rem; }
      .hours__badge { margin-left: -0.5rem; }
    }

    .hours__disclaimer {
      text-align: left;
      margin-top: .35rem;
      padding: 1rem 1.5rem;
      color: var(--zinc-400);
      font-size: 0.875rem;
    }

    .hours__day {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--zinc-700);
    }
    .hours__row.is-today .hours__day { color: var(--sky-600); }
    .hours__row.has-closure .hours__day { color: #c4470c; }

    .hours__day-date {
      font-weight: 400;
      opacity: 0.7;
    }

    .hours__row--weekend {
      background: var(--zinc-50);
    }
    .hours__row--weekend .hours__day {
      color: var(--zinc-400);
      font-weight: 500;
    }

    .hours__badge {
      display: none;
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--sky-600);
      background: var(--sky-100);
      padding: 0.2rem 0.5rem;
      border-radius: var(--radius-full);
    }
    .hours__badge--today {
      display: inline-block;
      background: none;
      border: 1px solid var(--sky-500);
    }
    .hours__badge--closure {
      display: inline-block;
      color: #c4470c;
      background: #ffedd5;
    }
    /* Closure pill only gets a border when its row is today, mirroring the
       "Dnes" pill — past/future closure days stay flat. */
    .hours__row.is-today .hours__badge--closure {
      border: 1px solid #c4470c;
    }
    .hours__row.has-closure.is-today .hours__badge--today { display: none; }

    .hours__slots { text-align: right; }

    .hours__slot-group {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0.5rem;
      padding-block: 0.18rem;
      margin-top: -1px;
    }

    .hours__slot-time {
      font-size: 0.875rem;
      font-variant-numeric: tabular-nums;
    }
    .hours__slot-time--primary { color: var(--zinc-700); font-weight: 600; }
    .hours__slot-time--secondary { color: var(--zinc-400); font-size: 0.8125rem; }
    .hours__row.is-today .hours__slot-time--primary { color: var(--sky-600); }
    .hours__row.is-today .hours__slot-time--secondary { color: var(--sky-600); }
    .hours__row.is-today .hours__slot-label--by-appointment { color: var(--sky-600); }
    /* Closure rows: the right side is "informationally inactive" — render all
       slot text in the muted secondary tone so nothing on the right competes
       with the orange day label/badge on the left. */
    .hours__row.has-closure .hours__slot-time--primary { color: var(--zinc-400); }
    .hours__row.has-closure .hours__slot-time--secondary { color: var(--zinc-400); }

    .hours__slot-label {
      font-size: 0.5625rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 0.175rem 0.45rem;
      border-radius: var(--radius-full);
    }
    .hours__slot-label--ordinace {
      background: var(--sky-100);
      color: var(--sky-600);
    }
    .hours__row.is-today .hours__slot-label--ordinace {
      background: var(--sky-200);
      color: var(--sky-700);
    }
    /* "objednaní pacienti:" sits inline with the secondary time as plain text,
       not a chip. Reset the .hours__slot-label decorations. */
    .hours__slot-label--by-appointment {
      background: none;
      padding: 0;
      border-radius: 0;
      text-transform: none;
      letter-spacing: 0;
      font-size: 0.8125rem;
      font-weight: 400;
      color: var(--zinc-400);
    }
    /* On today rows we deliberately keep the label in the muted secondary
       tone — only the time after it picks up the sky highlight. */
    .hours__row.has-closure .hours__slot-label--by-appointment {
      color: var(--zinc-400);
    }

    .hours__note {
      font-size: 0.75rem;
      color: var(--zinc-400);
      line-height: 1.6;
      margin-top: 1rem;
      max-width: 48ch;
    }

    /* ─── Insurance ─────────────────────────────────────────────────────────── */
    .insurance {
      padding-block: 4.65rem 6rem;
      background: white;
      border-top: 1px solid var(--zinc-100);
      display: flex;
      justify-content: center;
    }

    .insurance__inner {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .insurance__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .insurance__chip {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.875rem 1.25rem;
      border: 1px solid var(--zinc-100);
      background: var(--zinc-50);
      border-radius: var(--radius-xl);
      transition: border-color 0.2s, background 0.2s;
      cursor: default;
      border-color: var(--sky-200);
      background: var(--sky-50);
    }


    .insurance__code {
      font-size: 0.75rem;
      font-family: ui-monospace, monospace;
      color: var(--zinc-400);
      transition: color 0.2s;
      color: var(--sky-400);
    }


    .insurance__name {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--zinc-800);
    }

    .insurance__full-names {
      font-size: 0.75rem;
      color: var(--zinc-400);
      line-height: 1.8;
      margin-top: 1.5rem;
    }

    @media (min-width: 1024px) {
      .insurance__inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 5rem;
      }
      .insurance__left { flex-shrink: 0; }
    }

    /* ─── List ────────────────────────────────────────────────────────── */
    .list {
      padding-block: 6rem 7rem;
      background: var(--sky-50);
      border-top: 1px solid var(--zinc-100);
    }

    .list__meta {
      margin-top: 2rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(161,161,170,0.22);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      max-width: 28rem;
    }

    .list__meta-item {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.4rem;
      padding: 0.95rem 1rem 1rem 1.1rem;
    }

    .list__meta-item:last-child { margin-bottom: -0.95rem; }

    .list__meta-item::before {
      content: "";
      position: absolute;
      top: 0.8rem;
      bottom: 0.8rem;
      left: 0;
      width: 3px;
      border-radius: 999px;
      background: linear-gradient(to bottom, var(--sky-500), var(--sky-600));
      opacity: 0.9;
    }

    .list__meta-item.important::before {
      background: linear-gradient(to bottom, #f77015, #e9570c);
    }

    .list__meta-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--zinc-500);
    }

    .list__cash-icon {
      width: 1.9rem;
      height: 1.9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 9999px;
      background: #ffedd5;
      color: #c4470c;
      flex-shrink: 0;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      box-sizing: border-box;
      padding-bottom: 1.25px;
    }

    .list__meta-text {
      font-size: 0.875rem;
      color: var(--zinc-700);
      line-height: 1.5;
    }

    .list__table {
      background: white;
      border-radius: var(--radius-2xl);
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
      border: 1px solid var(--sky-200);
    }

    .list__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 1.5rem;
      border-top: 1px solid var(--zinc-100);
      transition: background 0.2s;
    }

    .list__row:first-child { border-top: none; }
    .list__row:hover { background: var(--zinc-50); }

    .list__service {
      font-size: 0.9375rem;
      color: var(--zinc-700);
      line-height: 1.45;
    }

    .list__extra {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
    }

    .list__extra[aria-hidden="false"] {
      opacity: 1;
    }

    .list__toggle[aria-expanded="true"] .list__toggle-icon {
      transform: rotate(180deg);
    }

    .list__amount {
      font-size: 0.9375rem;
      color: var(--zinc-900);
      white-space: nowrap;
      font-variant-numeric: tabular-nums;
    }

    .list__actions {
      padding: 1rem 1.5rem 1.25rem;
      border-top: 1px solid var(--zinc-100);
      background: linear-gradient(to bottom, rgba(255,255,255,0.92), white);
    }

    .list__toggle {
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      padding: 0.9rem 1.2rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--sky-700);
      background: var(--sky-50);
      border: 1px solid var(--sky-100);
      border-radius: var(--radius-full);
      transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.1s;
    }

    .list__toggle:hover {
      background: white;
      border-color: var(--sky-200);
      color: var(--sky-800, #075985);
    }

    .list__toggle:active { transform: scale(0.98); }

    .list__toggle-icon {
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    /* ─── Hours – extended view (vacation overflow) ──────────────────────── */
    .hours__extra {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
    }
    .hours__extra[aria-hidden="false"] { opacity: 1; }

    .hours__actions {
      padding: 1rem 1.5rem 1.25rem;
      border-top: 1px solid var(--zinc-100);
      background: white;
    }

    .hours__toggle {
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      padding: 0.9rem 1.2rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: #c4470c;
      background: white;
      border: 1px solid #fed7aa;
      border-radius: var(--radius-full);
      transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.1s;
    }
    .hours__toggle:hover {
      background: #fff7ed;
      border-color: #ffedd5;
      color: #9b3309;
    }
    .hours__toggle:active { transform: scale(0.98); }

    .hours__toggle-icon {
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }
    .hours__toggle[aria-expanded="true"] .hours__toggle-icon {
      transform: rotate(180deg);
    }

    @media (max-width: 640px) {
      .list__row {
        align-items: flex-start;
        flex-direction: column;
      }
      .list__amount { font-weight: 600; }
    }

    /* ─── Contact ───────────────────────────────────────────────────────────── */
    .contact {
      position: relative;
      overflow: hidden;
      background: var(--zinc-900);
    }

    /* Background map – decorative, non-interactive */
    .contact__bg-map {
      position: absolute;
      inset: 0;
      pointer-events: none;
      user-select: none;
      z-index: -2;
    }

    .contact__bg-map iframe {
      width: 100%;
      height: 100%;
      display: block;
      border: 0;
      pointer-events: none;
      /* Invert OSM light tiles → dark map that blends with zinc-900 */
      /* filter: invert(1) grayscale(72%) brightness(0.28) contrast(1.3); */
    }

    /* Vignette: strong dark edges fade to transparent center */
    .contact__bg-vignette {
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(90deg, #18181b 11%, rgba(24,24,27,0.94) 16%, rgba(24,24,27,0.35) 42%, rgba(24,24,27,0) 50%),
        linear-gradient(270deg, #18181b 0%, rgba(24,24,27,0.94) 10%, rgba(24,24,27,0.35) 30%, rgba(24,24,27,0) 48%),
        linear-gradient(0deg, #18181b 0%, rgba(24,24,27,0.82) 7%,  rgba(24,24,27,0) 20%);
      pointer-events: none;
    }

    /* Content sits above the map */
    .contact__content {
      position: relative;
      z-index: 1;
    }

    .contact .section-label { color: var(--sky-400); }
    .contact .section-heading { color: white; }

    .contact__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3.5rem;
      padding-block: 9rem 7rem;
    }

    @media (min-width: 1024px) {
      .contact__grid {
        grid-template-columns: 3fr 2fr;
        gap: 6rem;
        align-items: start;
      }
    }

    .contact__info {
      display: flex;
      flex-direction: column;
      gap: 2.25rem;
      margin-top: 3rem;
    }

    .contact__item { display: flex; align-items: flex-start; gap: 1.25rem; }

    .contact__icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.75rem;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--sky-400);
    }

    .contact__item-label {
      font-size: 0.625rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--zinc-600);
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .contact__item-value {
      font-weight: 600;
      color: white;
      line-height: 1.4;
    }

    .contact__item-sub { color: var(--zinc-400); margin-top: 0.25rem; font-size: 0.875rem; }

    .contact__phone-link {
      font-size: 1.5rem;
      font-weight: 800;
      color: white;
      letter-spacing: -0.02em;
      transition: color 0.18s ease;
    }
    .contact__phone-link:hover { color: var(--sky-400); }

    /* "Přejít na mapu" – ghost pill button */
    .contact__map-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      font-weight: 600;
      color: white;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.16);
      padding: 0.5rem 1rem 0.6rem 1rem;
      border-radius: var(--radius-full);
      margin-top: 1rem;
      transition: background 0.18s ease, border-color 0.18s ease, transform 0.1s ease;
    }
    @media (hover: hover) and (pointer: fine) {
      .contact__map-link:hover {
        background: rgba(255,255,255,0.14);
        border-color: rgba(255,255,255,0.28);
      }
    }
    .contact__map-link:active { transform: scale(0.97); }

    .contact__card {
      background: rgba(0,0,0,0.69);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-2xl);
      padding: 1.5rem;
      backdrop-filter: blur(12px);
      align-self: start;
    }

    .contact__card-label {
      font-size: 0.625rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--zinc-500);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-bottom: 1.5rem;
    }

    .contact__route-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding-block: 0.5rem 1rem;
    }

    .contact__route-item + .contact__route-item {
      margin-top: 0.5rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .contact__route-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.875rem;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--sky-400);
      flex-shrink: 0;
    }

    /* Inline SVG defaults to baseline alignment, which adds a tiny descender
       gap that pushes the glyph visually down-left in a flex-centered box. */
    .contact__route-icon svg {
      display: block;
      transform: translateX(0.25px);
    }

    /* Building glyph sits a hair low because its mass concentrates in the
       walls; lift by 1px to optically center. */
    .contact__route-icon--building svg {
      transform: translate(0px, -0.5px);
    }

    /* IČ document icon — slight up-right nudge for optical balance. */
    .contact__icon--id svg {
      transform: translate(0.5px, -0.25px);
    }

    .contact__route-title {
      font-size: 0.875rem;
      font-weight: 700;
      color: white;
      margin-bottom: 0.45rem;
    }

    .contact__route-text {
      font-size: 0.875rem;
      color: var(--zinc-400);
      line-height: 1.7;
    }

    .contact__route-text strong {
      color: white;
      font-weight: 600;
    }

    .contact__card-footer {
      margin-top: 1.5rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      font-size: 0.75rem;
      color: var(--zinc-500);
      line-height: 1.65;
    }

    .contact__osm-credit {
      padding-bottom: 1.5rem;
      font-size: 0.6rem;
      color: var(--zinc-700);
      text-align: center;
    }
    .contact__osm-credit a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

    /* ─── FAQ ───────────────────────────────────────────────────────────────── */
    .faq {
      padding-block: 6rem 10.5rem;
      background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
      border-top: 1px solid rgba(186, 230, 253, 0.65);
    }

    .faq__layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: start;
    }

    .faq__intro {
      position: relative;
    }

    .faq__note {
      margin-top: 2rem;
      padding: 1.4rem 1.45rem;
      border-radius: 1.35rem;
      background: rgba(255, 255, 255, 0.84);
      border: 1px solid rgba(125, 211, 252, 0.5);
      box-shadow: 0 18px 40px rgba(14, 165, 233, 0.08);
      backdrop-filter: blur(10px);
      max-width: 28rem;
    }

    .faq__note-label {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--sky-600);
      margin-bottom: 0.7rem;
    }

    .faq__note-phone {
      display: inline-block;
      font-size: clamp(1.25rem, 2.5vw, 1.7rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--zinc-900);
      margin-bottom: 0.7rem;
    }

    .faq__note-text {
      font-size: 0.9375rem;
      line-height: 1.7;
      color: var(--zinc-500);
    }

    .faq__accordion {
      position: relative;
      isolation: isolate;
      display: flex;
      flex-direction: column;
      gap: 0.95rem;
      width: 100%;
    }

    @media (min-width: 1024px) {
      .faq__accordion {
        max-width: 48rem;
      }
    }

    .faq__item {
      position: relative;
      border-radius: 1.6rem;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(186, 230, 253, 0.88);
      box-shadow: 0 16px 40px rgba(2, 132, 199, 0.08);
      overflow: hidden;
      z-index: 0;
      transition: transform 0.18s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .faq__item:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 48px rgba(2, 132, 199, 0.11);
      border-color: rgba(125, 211, 252, 1);
    }

    .faq__item:hover ~ .faq__item {
      z-index: 1;
    }

    .faq__item.is-open {
      border-color: rgba(14, 165, 233, 0.75);
      box-shadow: 0 24px 50px rgba(2, 132, 199, 0.12);
    }

    .faq__item.is-open:hover {
      transform: none;
      border-color: rgba(14, 165, 233, 0.75);
      box-shadow: 0 24px 50px rgba(2, 132, 199, 0.12);
    }

    .faq__question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.35rem 1.5rem;
      text-align: left;
      color: var(--zinc-900);
    }

    .faq__question span:first-child {
      font-size: 1rem;
      line-height: 1.5;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .faq__question:focus-visible {
      outline: 3px solid rgba(14, 165, 233, 0.22);
      outline-offset: -3px;
    }

    .faq__icon {
      position: relative;
      width: 2.25rem;
      height: 2.25rem;
      flex-shrink: 0;
      border-radius: 999px;
      background: linear-gradient(180deg, var(--sky-100), #ffffff);
      border: 1px solid rgba(125, 211, 252, 0.9);
      transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
    }

    .faq__icon::before,
    .faq__icon::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0.8rem;
      height: 2px;
      border-radius: 999px;
      background: var(--sky-700);
      transform: translate(-50%, -50%);
      transition: transform 0.22s ease, opacity 0.22s ease;
    }

    .faq__icon::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }

    .faq__item.is-open .faq__icon {
      background: linear-gradient(180deg, var(--sky-500), var(--sky-600));
      border-color: transparent;
      transform: rotate(180deg);
    }

    .faq__item.is-open .faq__icon::before,
    .faq__item.is-open .faq__icon::after {
      background: white;
    }

    .faq__item.is-open .faq__icon::after {
      opacity: 0;
      transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
    }

    .faq__answer {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.24s ease;
    }

    .faq__answer[aria-hidden="false"] {
      opacity: 1;
    }

    .faq__answer-inner {
      padding: 0 1.5rem 1.8rem;
    }

    .faq__answer-inner p {
      font-size: 0.9375rem;
      line-height: 1.75;
      color: var(--zinc-600);
      max-width: 64ch;
    }

    .faq__answer-inner a {
      color: var(--sky-700);
      font-weight: 700;
      transition: color 0.18s ease, text-decoration-color 0.18s ease;
    }

    .faq__answer-inner a:hover {
      color: var(--sky-500);
      text-decoration-color: var(--sky-500);
    }

    .faq__answer-inner a:focus-visible {
      outline: 2px solid rgba(14, 165, 233, 0.28);
      outline-offset: 3px;
      border-radius: 0.35rem;
    }

    @media (min-width: 1024px) {
      .faq__layout {
        grid-template-columns: 5fr 7fr;
        gap: 5rem;
      }

      .faq__intro {
        position: sticky;
        top: 7rem;
      }
    }

    @media (max-width: 1023px) and (min-width: 641px) {
      .faq {
        padding-block: 6rem 7rem;
      }
    }

    @media (max-width: 640px) {
      .faq {
        padding-block: 5rem 5.5rem;
      }

      .faq__question {
        padding: 1.15rem 1.1rem;
      }

      .faq__answer-inner {
        padding: 0 1.1rem 1.2rem;
      }
    }

    /* ─── Footer ────────────────────────────────────────────────────────────── */
    .footer {
      background: var(--sky-600);
      padding-block: 1.25rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }

    .footer__inner {
      max-width: var(--max-width);
      margin-inline: auto;
      padding-inline: var(--page-padding);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      text-align: center;
    }

    @media (max-width: 768px) {
      .contact__bg-vignette {
        background: rgba(0, 0, 0, .88);
      }
    }

    @media (max-width: 640px) {
      .contact__grid {
        padding-block: 6rem 5rem;
      }
    }

    @media (min-width: 640px) {
      .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
    }

    .footer__logo { display: flex; align-items: center; gap: 0.625rem; }

    .footer__badge {
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 50%;
      background: var(--sky-600);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.5rem;
      font-weight: 700;
      color: white;
    }

    .footer__name { font-size: 0.8125rem; color: #ffffff; letter-spacing: 0.01em; }
    .footer__copy { font-size: 0.8125rem; color: #ffffff; }

    /* ─── Mobile tuning ─────────────────────────────────────────────────────── */
    @media (max-width: 767px) {
      /* Nav is 4.5rem tall below 768px (5rem above) — align anchor scroll
         so the section starts flush against the bottom of the fixed header. */
      section { scroll-margin-top: 4.5rem; }

      /* Hero full-bleed treatment is defined in the (max-width: 1399px) block
         further up — applies here as well. */

      /* Center section headings + intro copy on mobile.
         Meta items with the left border (Platnost ceníku, Upozornění…) are
         intentionally left-aligned. */
      .services .section-label,
      .services .section-heading,
      .services .section-body,
      .hours .section-label,
      .hours .section-heading,
      .hours .section-body,
      .list .section-label,
      .list .section-heading,
      .contact .section-label,
      .contact .section-heading,
      .faq .section-label,
      .faq .section-heading,
      .faq .section-body {
        text-align: center;
      }

      /* .section-label is inline-block by default — text-align centers its
         inner text but not the element itself. Switch to block on mobile so
         it spans the row and the centered text reads as a centered label. */
      .services .section-label,
      .hours .section-label,
      .list .section-label,
      .contact .section-label,
      .faq .section-label,
      .insurance .section-label,
      .updates .section-label {
        display: block;
      }

      /* section-body has max-width: 36ch — re-center it horizontally. */
      .services .section-body,
      .hours .section-body,
      .faq .section-body {
        margin-inline: auto;
      }

      /* Center the phone CTA button under the hours intro. */
      .hours__cta-phone { text-align: center; }

      /* Insurance: chips on the center axis. */
      .insurance__inner { align-items: center; }
      .insurance__left  { width: 100%; text-align: center; }
      .insurance__chips { justify-content: center; }

      /* Tighter vertical rhythm on small screens. */
      .services      { padding-block: 3.5rem 3.5rem; }
      .hours         { padding-block: 3.5rem 3.5rem; }
      .insurance     { padding-block: 2.75rem 2.75rem; }
      .list          { padding-block: 3.5rem 3.5rem; }
      .contact__grid { padding-block: 4.5rem 3.5rem; }
      .faq           { padding-block: 3.5rem 3.5rem; }
    }
