/* ============================================================
   ZVIROPOLIS – main.css
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Root Variables ───────────────────────────────────── */
:root {

  /* ── System fonts ── */
  --font-sans:    ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-mono:    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --default-font-family:       var(--font-sans);
  --default-mono-font-family:  var(--font-mono);
  --font-heading:              var(--font-display);

  /* ── Font weights ── */
  --font-weight-normal:   400;
  --font-weight-medium:   500;
  --font-weight-semibold: 600;
  --font-weight-bold:     700;

  /* ── Type scale ── */
  --text-xs:   .75rem;    --text-xs--line-height:   calc(1 / .75);
  --text-sm:   .875rem;   --text-sm--line-height:   calc(1.25 / .875);
  --text-base: 1rem;      --text-base--line-height: 1.5;
  --text-lg:   1.125rem;  --text-lg--line-height:   calc(1.75 / 1.125);
  --text-xl:   1.25rem;   --text-xl--line-height:   calc(1.75 / 1.25);
  --text-2xl:  1.5rem;    --text-2xl--line-height:  calc(2 / 1.5);
  --text-3xl:  1.875rem;  --text-3xl--line-height:  1.2;
  --text-4xl:  2.25rem;   --text-4xl--line-height:  calc(2.5 / 2.25);
  --text-5xl:  3rem;      --text-5xl--line-height:  1;
  --text-6xl:  3.75rem;   --text-6xl--line-height:  1;
  --text-7xl:  4.5rem;    --text-7xl--line-height:  1;

  /* ── Letter spacing ── */
  --tracking-tight:   -.025em;
  --tracking-wide:     .025em;
  --tracking-widest:   .1em;

  /* ── Line height ── */
  --leading-relaxed: 1.625;

  /* ── Spacing ── */
  --spacing: .25rem;

  /* ── Containers ── */
  --container-sm:  24rem;
  --container-md:  28rem;
  --container-lg:  32rem;
  --container-xl:  36rem;
  --container-2xl: 42rem;
  --container-3xl: 48rem;
  --container-4xl: 56rem;
  --container-6xl: 72rem;
  --container-7xl: 80rem;

  /* ── Layout max-widths (projekt) ── */
  --max-w:         1280px;
  --max-w-content: 896px;
  --max-w-narrow:  768px;

  /* ── Transitions / Easing ── */
  --ease-in-out:                        cubic-bezier(.4, 0, .2, 1);
  --default-transition-duration:        .15s;
  --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  --animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;

  /* ── Misc ── */
  --blur-md:      12px;
  --aspect-video: 16 / 9;

  /* ── Brand Colors ── */
  --color-primary:       #FDE910;
  --color-primary-hover: #d4911a;
  --color-primary-fg:    #ffffff;

  --color-navy:    #404D61;
  --color-navy-50: #404D61;
  --color-navy-80: rgba(26,39,68,0.80);

  --color-black: #000;
  --color-white: #fff;

  --color-white-85: rgba(255,255,255,0.85);
  --color-white-80: rgba(255,255,255,0.80);
  --color-white-70: rgba(255,255,255,0.70);
  --color-white-40: rgba(255,255,255,0.40);
  --color-white-10: rgba(255,255,255,0.10);
  --color-white-05: rgba(255,255,255,0.05);

  /* ── Semantic / surface ── */
  --background:         #f7f8fa;
  --foreground:         #404D61;
  --border:             #e2e6ef;

  --color-background:   var(--background);
  --color-foreground:   var(--foreground);
  --color-border:       var(--border);

  --color-bg:           #f7f8fa;
  --color-secondary-bg: #eef0f5;
  --color-card:         #ffffff;

  --color-text:         #404D61;
  --color-text-muted:   rgba(45,55,72,0.80);
  --color-text-light:   rgba(45,55,72,0.75);

  /* ── Green ── */
  --color-green-600:   oklch(62.7% .194 149.214);
  --color-green-700:   oklch(52.7% .154 150.069);
  --color-green:       var(--color-green-600);
  --color-green-hover: var(--color-green-700);

  /* ── Radius ── */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --shadow-nav: 0 2px 24px rgba(26,39,68,.18);
}

/* ── Reset / Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.container--content  { max-width: var(--max-w-content); }
.container--narrow   { max-width: var(--max-w-narrow); }
.container--vets     { max-width: 1104px; }

.bg-secondary { background: var(--color-secondary-bg); }
.bg-navy      { background: var(--color-navy); }

/* ── ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
}

.site-header__inner {
  margin: 16px auto 0;
  max-width: var(--max-w);
  padding-inline: 16px;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--color-navy-50);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-white-10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-nav);
  padding: 12px 20px;
}

.site-header__logo img {
  height: 44px;
  width: auto;
}

/* Desktop Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__link {
  display: block;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white-85);
  transition: background .2s, color .2s;
}

.site-nav__link:hover { background: var(--color-white-10); color: #fff; }


/* Hamburger */
.site-header__menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--color-white-10);
  color: #fff;
}

.site-header__menu-btn svg { pointer-events: none; }

/* ── Mobile nav panel ────────────────────────────────────────
   Panel wysuwa się bezpośrednio pod .site-header__bar,
   wewnątrz .site-header__inner – z marginesami po bokach,
   bez dotykania krawędzi ekranu.
   ──────────────────────────────────────────────────────────── */
.mobile-nav__panel {
  display: none;
  background: #ffffff;
  border-radius: var(--radius-xl);
  margin-top: 8px;
  padding: 8px 16px 20px;
  box-shadow: 0 8px 32px rgba(10,16,34,.22);
}

.mobile-nav__panel.is-open {
  display: block;
  animation: mnFadeDown .2s ease-out both;
}

@keyframes mnFadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 12px;
}

.mobile-nav__link {
  display: block;
  padding: 14px 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-navy);
  border-radius: var(--radius-md);
  transition: background .15s;
}

.mobile-nav__link:hover { background: var(--color-secondary-bg); }

.mobile-nav__cta {
  width: 100%;
  max-height: 50px;
  background: var(--color-primary);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
}

.mobile-nav__cta:hover { filter: brightness(.95); }

/* Header CTA button */
.btn-header-cta {
  max-height: 50px;
  padding: 10px 20px;
  background: var(--color-primary);
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.btn-header-cta:hover { filter: brightness(.95); }

/* Hamburger icon toggle */
.site-header__menu-btn .icon-close { display: none; }
.site-header__menu-btn.is-open .icon-menu { display: none; }
.site-header__menu-btn.is-open .icon-close { display: block; }

/* ── ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 840px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 30% center;
}

@media only screen and (min-width: 768px) { .hero__bg { object-position: center; } }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
   #404D61 0%,
    rgba(30,46,80,.75)  55%,
    rgba(30,46,80,.30)  100%
  );
}

.hero__content {
  position: relative;
  width: 100%;
  padding: 140px 24px 80px;
  max-width: var(--max-w);
  margin-inline: auto;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-7xl);  /* 4.5rem = 72px */
  font-size: clamp(var(--text-5xl), 6vw, var(--text-7xl));
  font-weight: 800;
  line-height: 1.05;
  margin-top: 20px;
  max-width: 840px;
}

.hero__title span { color: var(--color-primary); }

.hero__subtitle {
  margin-top: 20px;
  font-size: var(--text-lg);
  color: var(--color-white-85);
  max-width: 520px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ── ============================================================
   BUTTONS  – wspólna baza dla wszystkich przycisków
   ============================================================ */
.btn,
.btn--primary,
.btn--primary-lg,
.btn--outline,
.btn-header-cta,
.mobile-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: filter .2s, background .2s, border-color .2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: #000;
  padding: 16px 28px;
  max-height: 50px;
  font-size: 15px;
  font-weight: 600;
}

.btn--primary:hover { filter: brightness(.95); }

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--color-white-40);
  padding: 16px 28px;
  max-height: 50px;
  font-size: 15px;
}

.btn--outline:hover { background: var(--color-white-10); }

.btn--primary-lg {
  background: var(--color-primary);
  color: #000;
  padding: 16px 32px;
  max-height: 50px;
  font-size: 16px;
  font-weight: 700;
}

.btn--primary-lg:hover { filter: brightness(.95); }

/* ── ============================================================
   SECTIONS – shared
   ============================================================ */
.section { padding: 80px 0; }
.section--lg { padding: 112px 0; }

.section__heading {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);     /* 2.25rem = 36px */
  line-height: var(--text-4xl--line-height);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
}

.section__heading--sm {
  font-size: var(--text-3xl);     /* 1.875rem = 30px */
  line-height: var(--text-3xl--line-height);
}

.section__subheading {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);     /* 1.875rem = 30px */
  line-height: var(--text-3xl--line-height);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-top: 0;
}

.prose {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.prose p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text-muted);
}

/* ── ============================================================
   CHECKLIST GRID  (conditions list)
   ============================================================ */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

@media only screen and (min-width: 540px) { .checklist-grid { grid-template-columns: 1fr 1fr; } }

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.checklist-item__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.checklist-item__label {
  font-weight: 600;
  color: var(--color-navy);
  font-size: 15px;
  line-height: 1.5;
}

/* ── ============================================================
   PROCEDURES BOX  (dark card with list)
   ============================================================ */
.procedures-box {
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius-2xl);
  padding: 40px 32px;
  margin-top: 48px;
}

@media only screen and (min-width: 768px) { .procedures-box { padding: 48px; } }

.procedures-box__title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 32px;
}

.procedures-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 32px;
}

@media only screen and (min-width: 640px) { .procedures-list { grid-template-columns: 1fr 1fr; } }

.procedures-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-white-85);
  font-size: 15px;
  line-height: 1.5;
}

.procedures-list__item::before {
  content: '✓';
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  flex-shrink: 0;
}

/* ── ============================================================
   STATS ROW
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  text-align: center;
}

.stat-card {
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 24px 16px;
}

.stat-card__value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  display: block;
}

.stat-card__label {
  font-size: 13px;
  color: var(--color-white-80);
  margin-top: 6px;
  line-height: 1.4;
}

@media only screen and (min-width: 768px) {
  .stat-card { padding: 32px 24px; }
  .stat-card__label { font-size: 15px; }
}
@media only screen and (max-width: 400px) {
   .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
/* ── ============================================================
   VETS GRID  – uniwersalny grid oparty na liczbie kart
   Użycie w PHP: <div class="vets-grid">
   Bez żadnych klas modyfikatorów – CSS liczy karty automatycznie.

   Mobile (< 640px):   zawsze 1 kolumna
   Tablet (640-1023px): max 2 kolumny
   Desktop (1024px+):
     1 karta  → 1 kolumna, karta max 480px (wyrównana do lewej)
     2 karty  → 2 kolumny równe
     3 karty  → 3 kolumny równe
     4+ kart  → 3 kolumny (nowe wiersze poniżej)
   ============================================================ */
.vets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 48px;
}

/* Tablet – max 2 kolumny */
@media only screen and (min-width: 640px) {
  .vets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop – logika oparta na :has() */
@media only screen and (min-width: 1024px) {

  /* 1 karta – 1 kolumna, nie rozciąga */
  .vets-grid:has(> .vet-card:nth-child(1):last-child) {
    grid-template-columns: minmax(0, 480px);
    justify-content: start;
  }

  /* 2 karty – 2 równe kolumny */
  .vets-grid:has(> .vet-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 3 karty – 3 równe kolumny */
  .vets-grid:has(> .vet-card:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
  }

  /* 4+ kart – 3 kolumny, nowy wiersz poniżej */
  .vets-grid:has(> .vet-card:nth-child(4)) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vet-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.vet-card__photo {
  width: 100%;
  height: 288px;
  object-fit: cover;
  object-position: top;
}

.vet-card__body { padding: 28px; }

.vet-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
}

.vet-card__specialty {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-top: 4px;
}

.vet-card__bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-top: 16px;
}

/* ── ============================================================
   FAQ  (accordion)
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  transition: background .15s;
}

.faq-item__btn:hover { background: var(--color-secondary-bg); }

.faq-item__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: transform .3s ease;
  user-select: none;
}

.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }

.faq-item__body {
  display: none;
  padding: 0 24px 24px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.faq-item.is-open .faq-item__body { display: block; }

/* ── ============================================================
   PRICE / CTA SECTION
   ============================================================ */
.price-cta { text-align: center; }
.price-cta__text {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-top: 20px;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.65;
}

/* ── ============================================================
   CONTACT / LOCATIONS  (dark section)
   ============================================================ */
.locations-section {
  background: var(--color-navy);
  color: #fff;
  padding: 80px 0 100px;
}

.locations-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
}

.locations-section__subtitle {
  font-size: 18px;
  color: var(--color-white-80);
  margin-top: 12px;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

@media only screen and (min-width: 1024px) { .locations-grid { grid-template-columns: repeat(4, 1fr); } }

.location-card {
  background: var(--color-white-05);
  border: 1px solid var(--color-white-10);
  border-radius: var(--radius-xl);
  padding: 24px;
  backdrop-filter: blur(4px);
}

.location-card__name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
}

.location-card__addr {
  font-size: 14px;
  color: var(--color-white-85);
  margin-top: 10px;
  line-height: 1.6;
}

.locations-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}

.locations-actions__note {
  font-size: 15px;
  color: var(--color-white-70);
}
@media only screen and (max-width: 768px) {
  .locations-grid {
    gap: 8px;
  }
}
/* ── ============================================================
   INFO / KNOWLEDGE SECTION
   ============================================================ */
.knowledge-section h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-top: 32px;
  margin-bottom: 0;
}

.knowledge-section p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-top: 12px;
}

/* ── ============================================================
   PHONE FLOATING BUTTON
   ============================================================ */
.phone-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-primary);
  color: #404D61;
  border-radius: var(--radius-full);
  padding: 12px;
  font-weight: 600;
  box-shadow: 0 4px 24px #404D61;
  transition: background .2s;
  text-decoration: none;
}

@media only screen and (min-width: 480px) { .phone-fab { padding: 12px 20px 12px 12px; } }

.phone-fab:hover { background: #404D61; color: white; }

.phone-fab__icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-fab__text {
  font-size: 14px;
  display: none;
}

@media only screen and (min-width: 480px) { .phone-fab__text { display: block; } }

/* ── ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-navy);
  color: var(--color-white-70);
  border-top: 1px solid var(--color-white-10);
  padding: 40px 0;
  font-size: 14px;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media only screen and (min-width: 640px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ── ============================================================
   RESPONSIVE  (hidden helpers)
   ============================================================ */
@media only screen and (max-width: 1023px) {
  .site-nav,
  .btn-header-cta { display: none; }
  .site-header__menu-btn { display: flex; }
}

@media only screen and (min-width: 1024px) {
  .site-header__menu-btn { display: none; }
}

/* ── ============================================================
   SECTION DIVIDERS
   ============================================================ */
.section + .section,
.bg-secondary + .section,
.section + .bg-secondary { /* no extra margin – sections have their own padding */ }

/* ── ============================================================
   UTILITY CLASSES  (zastępują inline styles)
   ============================================================ */

/* Hero content wrapper */
.hero__content-inner  { max-width: 840px; }

/* Vets section lead paragraph */
.vets-lead {
  margin-top: 16px;
  color: var(--color-text-light);
  max-width: 640px;
}

/* Price CTA section */
.price-cta__container { text-align: center; }
.price-cta__btn       { margin-top: 32px; }

/* Locations section header */
.locations-header     { max-width: 640px; }

/* Address – reset font-style */
address.location-card__addr { font-style: normal; }

/* Knowledge section intro wrapper */
.knowledge-intro      { margin-top: 24px; }

/* FAQ phone link */
.faq-phone-link {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

/* Header actions wrapper */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Footer link */
.footer-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}