/* ============================================================
   GLOBAL.CSS — Dom Opieki Jantar
   ------------------------------------------------------------
   Style wspólne dla WSZYSTKICH stron serwisu:
   • Reset, typografia, kolory (CSS variables)
   • Container, buttony, eyebrow, link-arrow
   • Navigation (topbar, nav, logo, hamburger)
   • Footer, back-to-top
   • Reveal animations, helper classes
   • Keyframes
   ------------------------------------------------------------
   ARCHITEKTURA MEDIA QUERIES — MOBILE-FIRST (Bootstrap 5)
   ------------------------------------------------------------
   • Bazowe style: extra small (xs) — telefon w pionie  <576px
   • @media (min-width: 576px)  — sm  (telefon w poziomie)
   • @media (min-width: 768px)  — md  (tablet)
   • @media (min-width: 992px)  — lg  (laptop)
   • @media (min-width: 1200px) — xl  (duży ekran)
   • @media (min-width: 1400px) — xxl (bardzo duży)
   ------------------------------------------------------------
   PALETA — patrz :root { ... }
============================================================ */

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

:root {
    /* Baza: biel + chłodne szarości (subtelny mineralny ton) */
    --white: #FFFFFF;
    --off-white: #F8FAF9;
    --cream: #F4F5F4;
    --cream-deep: #E8EBE9;
    --gray-bg: #F0F2F1;
    --gray-line: #DCE0DE;
    --gray-mid: #B0B5B2;
    --gray-stone: #6F7672;       /* nowy: ciemniejszy ton dla detali */

    /* Akcent: eukaliptusowa zieleń — chłodna, subtelna, świeża */
    --sage: #93B273;             /* główny akcent — eukaliptus mineralny */
    --sage-dark: #6E8E50;        /* hover, podkreślenia */
    --sage-deep: #506930;        /* ciemne tła, kontakt */
    --sage-light: #CFDDB1;       /* delikatny akcent, kursywne em */
    --sage-bg: #EEF1DF;          /* bardzo jasne tło */

    /* Mocny akcent CTA: deep teal — głęboka zieleń z niebieskim podtonem */
    --teal: #6E8E50;             /* mocny CTA — oliwkowo-zielony, „Umów wizytę" */
    --teal-dark: #506930;        /* hover */
    --teal-light: #93B273;

    /* Trzeci akcent: bursztyn (jantar) — ciepły kontrapunkt, używany rzadko */
    --amber: #C9933D;            /* drobne akcenty, plakietki, hover detale */
    --amber-dark: #A87A2D;       /* hover */
    --amber-light: #E8C98F;      /* delikatne tła plakietek */

    /* Ciemna sekcja kontaktowa */
    --charcoal: #2A2D2B;

    /* Tekst */
    --text-dark: #1F211E;
    --text-mid: #5C5F5C;         /* też lekko chłodniejszy */
    --text-light: #8E908D;

    --shadow-soft: 0 1px 3px rgba(40,40,38,0.04), 0 8px 30px rgba(40,40,38,0.05);
    --shadow-card: 0 24px 60px rgba(40,40,38,0.08), 0 2px 8px rgba(40,40,38,0.04);
  }

html { scroll-behavior: smooth; }

body {
    font-family: 'Manrope', system-ui, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }

h1, h2, h3, h4, .serif {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text-dark);
  }

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

input, textarea { font-family: inherit; font-size: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Eyebrow / podnagłówek z numerem */
  .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 28px;
    display: inline-block;
  }

.eyebrow-line::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--sage);
    margin-right: 16px;
    vertical-align: middle;
  }

/* Section header centered */
  .section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
  }

.section-head h2 {
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 24px;
  }

.section-head h2 em { font-style: italic; color: var(--sage-dark); font-weight: 400; }

.section-head p {
    font-size: 17px;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
  }

/* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1;
  }

.btn-primary { background: var(--sage); color: var(--white); border: 1px solid var(--sage); }

.btn-primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(110,142,80,0.25); }

.btn-teal { background: var(--teal); color: var(--white); border: 1px solid var(--teal); }

.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(110,142,80,0.32); }

.btn-ghost { background: transparent; color: var(--text-dark); border: 1px solid var(--gray-line); }

.btn-ghost:hover { background: var(--text-dark); color: var(--white); border-color: var(--text-dark); }

.btn-light { background: var(--white); color: var(--sage-dark); border: 1px solid var(--white); }

.btn-light:hover { background: transparent; color: var(--white); border-color: var(--white); }

.btn-light-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }

.btn-light-outline:hover { background: var(--white); color: var(--sage-dark); border-color: var(--white); }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--sage-dark);
    text-transform: uppercase;
    transition: gap 0.3s ease, color 0.3s ease;
  }

.link-arrow:hover { gap: 14px; color: var(--amber-dark); }

/* ============ TOP BAR ============ */
  .topbar {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-line);
  font-size: 12px;
  color: var(--text-mid);
}

.topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-left {
  display: none;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-item { display: flex; align-items: center; gap: 8px; }

.topbar a:hover { color: var(--sage-dark); }

/* ============ NAVIGATION ============ */
  .nav {
    border-bottom: 1px solid var(--gray-line);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
  }

.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; gap: 32px; }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
  }

.logo img {
    height: 56px;
    width: auto;
    display: block;
  }

.nav-menu {
  display: none;
  gap: 16px;
  list-style: none;
  align-items: center;
  font-size: 13px;
}

.nav-menu a { font-size: 14px; font-weight: 500; color: var(--text-dark); position: relative; padding: 8px 0; }

.nav-menu a:hover { color: var(--sage-dark); }

.nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--sage); transition: width 0.3s ease; }

.nav-menu a:hover::after { width: 100%; }

.nav-cta {
    background: var(--teal);
    color: var(--white) !important;
    padding: 13px 22px !important;
    border-radius: 2px;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 12px rgba(46, 92, 92, 0.22), 0 0 0 0 rgba(46, 92, 92, 0.45);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
  }

.nav-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 92, 92, 0.32), 0 0 0 4px rgba(46, 92, 92, 0.12);
  }

.nav-cta:hover::before { left: 100%; }

.nav-cta svg {
    width: 14px; height: 14px;
    stroke-width: 2;
  }

.nav-cta::after { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}

.stars { color: var(--sage); letter-spacing: 2px; font-size: 14px; }

.carousel-controls {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: flex-end;
  }

.carousel-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gray-line);
    background: var(--white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

.carousel-btn:hover { background: var(--sage); color: var(--white); border-color: var(--sage); }

.carousel-btn svg { width: 16px; height: 16px; }

.form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 24px;
  }

.form-checkbox input { margin-top: 3px; flex-shrink: 0; }

.form-checkbox a { color: var(--sage-dark); text-decoration: underline; }

.form-submit { width: 100%; justify-content: center; }

.form-success {
    display: none;
    padding: 16px;
    background: var(--sage-bg);
    border: 1px solid var(--sage-light);
    color: var(--sage-deep);
    font-size: 14px;
    margin-top: 16px;
  }

/* ============ FOOTER ============ */
  footer {
    background: var(--off-white);
    padding: 80px 0 0;
    color: var(--text-mid);
  }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 64px;
}

.footer-col h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-line);
  }

.footer-col p, .footer-col li, .footer-col a {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
  }

.footer-col a:hover { color: var(--sage-dark); }

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 8px; }

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 500;
  }

.footer-logo img {
    max-height: 80px;
    width: auto;
    display: block;
    /* delikatne rozjaśnienie - logo jest na ciemnym tle stopki */
    filter: brightness(1.05);
  }

.footer-mission {
    font-style: italic;
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 24px;
  }

.footer-krdo {
    display: inline-block;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--amber-light);
    border-left: 3px solid var(--amber);
    font-size: 12px;
    color: var(--amber-dark);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
  }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
    width: 36px; height: 36px;
    border: 1px solid var(--gray-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    transition: all 0.3s ease;
  }

.footer-social a:hover { background: var(--sage); color: var(--white); border-color: var(--sage); }

.nav-list-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
  }

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--sage);
    margin-top: 3px;
  }

.footer-contact-item strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
  }

.footer-mini-map {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--gray-line);
  }

.footer-mini-map iframe { width: 100%; height: 100%; border: none; filter: saturate(0.85); }

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--gray-line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--text-light);
  }

.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }

.footer-bottom-links a:hover { color: var(--sage-dark); }

/* ============ BACK TO TOP ============ */
  .back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.2,0.8,0.2,1);
  z-index: 99;
  box-shadow: 0 8px 28px rgba(46,92,92,0.4), 0 0 0 0 rgba(46,92,92,0.45);
  cursor: pointer;
  animation: btnPulse 2.6s ease-in-out infinite;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

.back-to-top:hover { background: var(--teal-dark); transform: translateY(-3px) scale(1.05); }

.back-to-top svg { width: 20px; height: 20px; stroke-width: 2; }

/* Reveal on scroll */
  .reveal { opacity: 1; transform: translateY(0); transition: opacity 0.9s ease, transform 0.9s ease; }

.reveal.visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   SM BREAKPOINT — @media (min-width: 576px)
============================================================ */
@media (min-width: 576px) {
  .container {
    padding: 0 32px;
  }

  .topbar {
    font-size: 13px;
  }

  .topbar-inner {
    justify-content: flex-start;
  }

  .topbar-left {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .back-to-top {
    width: 56px;
    bottom: 32px;
    height: 56px;
    right: 32px;
  }
}


/* ============================================================
   LG BREAKPOINT — @media (min-width: 992px)
============================================================ */
@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 60px;
  }
}


/* ============================================================
   XL BREAKPOINT — @media (min-width: 1200px)
============================================================ */
@media (min-width: 1200px) {
  .nav-menu {
    gap: 26px;
  }
}

/* ============================================================
   KEYFRAMES — animacje
============================================================ */

@keyframes heroZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
  }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

@keyframes drawUnderline {
    to { transform: scaleX(1); }
  }

@keyframes scrollHint {
    0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50%     { transform: translateX(-50%) translateY(6px); opacity: 1; }
  }

@keyframes btnPulse {
    0%,100% { box-shadow: 0 8px 28px rgba(46,92,92,0.4), 0 0 0 0 rgba(46,92,92,0.45); }
    50%     { box-shadow: 0 8px 28px rgba(46,92,92,0.4), 0 0 0 12px rgba(46,92,92,0); }
  }

/* ============================================================
   HELPER CLASSES (zamiana inline styles)
============================================================ */

.phone-bold {
  color: var(--text-dark);
  margin-left: 4px;
}


/* Dodatkowe klasy helper */
.text-light { color: var(--text-light); }
.small-light-mt4 {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}
.small-mt8 {
  font-size: 12px;
  margin-top: 8px;
}
.mt-16 { margin-top: 16px; }

/* ============================================================
   BEM-OWE STYLE Z global.css.bem (dla podstron)
============================================================ */

/* ============================================================
   KLASY BEM (dla podstron: o-nas, opieka, pokoje, udogodnienia, wydarzenia, kontakt)
============================================================ */
/* ============================================================
   GLOBAL.CSS — Dom Opieki Jantar
   ------------------------------------------------------------
   Style wspólne dla WSZYSTKICH stron serwisu:
   • Reset, typografia, kolory (CSS variables)
   • Container, buttony, eyebrow, link-arrow
   • Navigation (topbar, nav, logo, hamburger)
   • Footer, back-to-top
   • Reveal animations, helper classes
   • Keyframes
   ------------------------------------------------------------
   ARCHITEKTURA MEDIA QUERIES — MOBILE-FIRST (Bootstrap 5)
   ------------------------------------------------------------
   • Bazowe style: extra small (xs) — telefon w pionie  <576px
   • @media (min-width: 576px)  — sm  (telefon w poziomie)
   • @media (min-width: 768px)  — md  (tablet)
   • @media (min-width: 992px)  — lg  (laptop)
   • @media (min-width: 1200px) — xl  (duży ekran)
   • @media (min-width: 1400px) — xxl (bardzo duży)
   ------------------------------------------------------------
   PALETA — patrz :root { ... }
============================================================ */

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

:root {
    /* Baza: biel + chłodne szarości (subtelny mineralny ton) */
    --white: #FFFFFF;
    --off-white: #F8FAF9;
    --cream: #F4F5F4;
    --cream-deep: #E8EBE9;
    --gray-bg: #F0F2F1;
    --gray-line: #DCE0DE;
    --gray-mid: #B0B5B2;
    --gray-stone: #6F7672;       /* nowy: ciemniejszy ton dla detali */

    /* Akcent: eukaliptusowa zieleń — chłodna, subtelna, świeża */
    --sage: #93B273;             /* główny akcent — eukaliptus mineralny */
    --sage-dark: #6E8E50;        /* hover, podkreślenia */
    --sage-deep: #506930;        /* ciemne tła, kontakt */
    --sage-light: #CFDDB1;       /* delikatny akcent, kursywne em */
    --sage-bg: #EEF1DF;          /* bardzo jasne tło */

    /* Mocny akcent CTA: deep teal — głęboka zieleń z niebieskim podtonem */
    --teal: #6E8E50;             /* mocny CTA — oliwkowo-zielony, „Umów wizytę" */
    --teal-dark: #506930;        /* hover */
    --teal-light: #93B273;

    /* Trzeci akcent: bursztyn (jantar) — ciepły kontrapunkt, używany rzadko */
    --amber: #C9933D;            /* drobne akcenty, plakietki, hover detale */
    --amber-dark: #A87A2D;       /* hover */
    --amber-light: #E8C98F;      /* delikatne tła plakietek */

    /* Ciemna sekcja kontaktowa */
    --charcoal: #2A2D2B;

    /* Tekst */
    --text-dark: #1F211E;
    --text-mid: #5C5F5C;         /* też lekko chłodniejszy */
    --text-light: #8E908D;

    --shadow-soft: 0 1px 3px rgba(40,40,38,0.04), 0 8px 30px rgba(40,40,38,0.05);
    --shadow-card: 0 24px 60px rgba(40,40,38,0.08), 0 2px 8px rgba(40,40,38,0.04);
  }

html { scroll-behavior: smooth; }

body {
    font-family: 'Manrope', system-ui, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }

h1, h2, h3, h4, .serif {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text-dark);
  }

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

input, textarea { font-family: inherit; font-size: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Eyebrow / podnagłówek z numerem */
  .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 28px;
    display: inline-block;
  }

.eyebrow-line::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--sage);
    margin-right: 16px;
    vertical-align: middle;
  }

/* Section header centered */
  .section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
  }

.section-head h2 {
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 24px;
  }

.section-head h2 em { font-style: italic; color: var(--sage-dark); font-weight: 400; }

.section-head p {
    font-size: 17px;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
  }

/* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1;
  }

.btn-primary { background: var(--sage); color: var(--white); border: 1px solid var(--sage); }

.btn-primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(110,142,80,0.25); }

.btn-teal { background: var(--teal); color: var(--white); border: 1px solid var(--teal); }

.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(110,142,80,0.32); }

.btn-ghost { background: transparent; color: var(--text-dark); border: 1px solid var(--gray-line); }

.btn-ghost:hover { background: var(--text-dark); color: var(--white); border-color: var(--text-dark); }

.btn-light { background: var(--white); color: var(--sage-dark); border: 1px solid var(--white); }

.btn-light:hover { background: transparent; color: var(--white); border-color: var(--white); }

.btn-light-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }

.btn-light-outline:hover { background: var(--white); color: var(--sage-dark); border-color: var(--white); }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--sage-dark);
    text-transform: uppercase;
    transition: gap 0.3s ease, color 0.3s ease;
  }

.link-arrow:hover { gap: 14px; color: var(--amber-dark); }

/* ============ TOP BAR ============ */
  .topbar {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-line);
  font-size: 12px;
  color: var(--text-mid);
}

.topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-left {
  display: none;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-item { display: flex; align-items: center; gap: 8px; }

.topbar a:hover { color: var(--sage-dark); }

/* ============ NAVIGATION ============ */
  .nav {
    border-bottom: 1px solid var(--gray-line);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
  }

.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; gap: 32px; }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
  }

.logo img {
    height: 56px;
    width: auto;
    display: block;
  }

.nav-menu {
  display: none;
  gap: 16px;
  list-style: none;
  align-items: center;
  font-size: 13px;
}

.nav-menu a { font-size: 14px; font-weight: 500; color: var(--text-dark); position: relative; padding: 8px 0; }

.nav-menu a:hover { color: var(--sage-dark); }

.nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--sage); transition: width 0.3s ease; }

.nav-menu a:hover::after { width: 100%; }

.nav-cta {
    background: var(--teal);
    color: var(--white) !important;
    padding: 13px 22px !important;
    border-radius: 2px;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 12px rgba(46, 92, 92, 0.22), 0 0 0 0 rgba(46, 92, 92, 0.45);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
  }

.nav-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 92, 92, 0.32), 0 0 0 4px rgba(46, 92, 92, 0.12);
  }

.nav-cta:hover::before { left: 100%; }

.nav-cta svg {
    width: 14px; height: 14px;
    stroke-width: 2;
  }

.nav-cta::after { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}

.stars { color: var(--sage); letter-spacing: 2px; font-size: 14px; }

.carousel-controls {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: flex-end;
  }

.carousel-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gray-line);
    background: var(--white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

.carousel-btn:hover { background: var(--sage); color: var(--white); border-color: var(--sage); }

.carousel-btn svg { width: 16px; height: 16px; }

.form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 24px;
  }

.form-checkbox input { margin-top: 3px; flex-shrink: 0; }

.form-checkbox a { color: var(--sage-dark); text-decoration: underline; }

.form-submit { width: 100%; justify-content: center; }

.form-success {
    display: none;
    padding: 16px;
    background: var(--sage-bg);
    border: 1px solid var(--sage-light);
    color: var(--sage-deep);
    font-size: 14px;
    margin-top: 16px;
  }

/* ============ FOOTER ============ */
  footer {
    background: var(--off-white);
    padding: 80px 0 0;
    color: var(--text-mid);
  }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 64px;
}

.footer-col h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-line);
  }

.footer-col p, .footer-col li, .footer-col a {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
  }

.footer-col a:hover { color: var(--sage-dark); }

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 8px; }

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 500;
  }

.footer-logo img {
    max-height: 80px;
    width: auto;
    display: block;
    /* delikatne rozjaśnienie - logo jest na ciemnym tle stopki */
    filter: brightness(1.05);
  }

.footer-mission {
    font-style: italic;
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 24px;
  }

.footer-krdo {
    display: inline-block;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--amber-light);
    border-left: 3px solid var(--amber);
    font-size: 12px;
    color: var(--amber-dark);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
  }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
    width: 36px; height: 36px;
    border: 1px solid var(--gray-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    transition: all 0.3s ease;
  }

.footer-social a:hover { background: var(--sage); color: var(--white); border-color: var(--sage); }

.nav-list-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
  }

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--sage);
    margin-top: 3px;
  }

.footer-contact-item strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
  }

.footer-mini-map {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--gray-line);
  }

.footer-mini-map iframe { width: 100%; height: 100%; border: none; filter: saturate(0.85); }

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--gray-line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--text-light);
  }

.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }

.footer-bottom-links a:hover { color: var(--sage-dark); }

/* ============ BACK TO TOP ============ */
  .back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.2,0.8,0.2,1);
  z-index: 99;
  box-shadow: 0 8px 28px rgba(46,92,92,0.4), 0 0 0 0 rgba(46,92,92,0.45);
  cursor: pointer;
  animation: btnPulse 2.6s ease-in-out infinite;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

.back-to-top:hover { background: var(--teal-dark); transform: translateY(-3px) scale(1.05); }

.back-to-top svg { width: 20px; height: 20px; stroke-width: 2; }

/* Reveal on scroll */
  .reveal { opacity: 1; transform: translateY(0); transition: opacity 0.9s ease, transform 0.9s ease; }

.reveal.visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   SM BREAKPOINT — @media (min-width: 576px)
============================================================ */
@media (min-width: 576px) {
  .container {
    padding: 0 32px;
  }

  .topbar {
    font-size: 13px;
  }

  .topbar-inner {
    justify-content: flex-start;
  }

  .topbar-left {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .back-to-top {
    width: 56px;
    bottom: 32px;
    height: 56px;
    right: 32px;
  }
}


/* ============================================================
   LG BREAKPOINT — @media (min-width: 992px)
============================================================ */
@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 60px;
  }
}


/* ============================================================
   XL BREAKPOINT — @media (min-width: 1200px)
============================================================ */
@media (min-width: 1200px) {
  .nav-menu {
    gap: 26px;
  }
}

/* ============================================================
   KEYFRAMES — animacje
============================================================ */

@keyframes heroZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
  }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

@keyframes drawUnderline {
    to { transform: scaleX(1); }
  }

@keyframes scrollHint {
    0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50%     { transform: translateX(-50%) translateY(6px); opacity: 1; }
  }

@keyframes btnPulse {
    0%,100% { box-shadow: 0 8px 28px rgba(46,92,92,0.4), 0 0 0 0 rgba(46,92,92,0.45); }
    50%     { box-shadow: 0 8px 28px rgba(46,92,92,0.4), 0 0 0 12px rgba(46,92,92,0); }
  }

/* ============================================================
   HELPER CLASSES (zamiana inline styles)
============================================================ */

.phone-bold {
  color: var(--text-dark);
  margin-left: 4px;
}


/* Dodatkowe klasy helper */
.text-light { color: var(--text-light); }
.small-light-mt4 {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}
.small-mt8 {
  font-size: 12px;
  margin-top: 8px;
}
.mt-16 { margin-top: 16px; }

/* ============================================================
   BEM-OWE STYLE Z global.css.bem (dla podstron)
============================================================ */

/* ============================================================
   KLASY BEM (dla podstron: o-nas, opieka, pokoje, udogodnienia, wydarzenia, kontakt)

/* ============================================================
   KLASY BEM dla podstron (.topbar__, .nav__, .footer__, .btn--)
============================================================ */
/* ============================================================
   8. LINK ARROW (link z strzałką, „Zobacz więcej →")
============================================================ */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--sage-dark);
  text-transform: uppercase;
  transition: gap 0.3s ease, color 0.3s ease;
}

.link-arrow:hover {
  gap: 14px;
  color: var(--amber-dark);
}


/* ============================================================
   9. TOPBAR
============================================================ */
.topbar {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-block: 10px;
}

.topbar__group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-mid);
}

.topbar__icon {
  font-size: 13px;
}

.topbar__phone {
  font-weight: 700;
  color: var(--text-dark);
}

.topbar__phone:hover,
.topbar__link:hover {
  color: var(--sage-dark);
}

.topbar__link {
  color: var(--text-mid);
}

.topbar__badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--sage-deep);
  padding: 4px 12px;
  background: var(--sage-bg);
  border: 1px solid var(--sage-light);
  border-radius: 2px;
}

/* Schowaj badge na xs, pokaż od md */
.topbar__group--right {
  display: none;
}

@media (min-width: 768px) {
  .topbar__group--right {
    display: flex;
  }
}


/* ============================================================
   10. NAVIGATION
============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-line);
  transition: box-shadow var(--transition-base);
}

.nav--scrolled {
  box-shadow: 0 2px 12px rgba(40, 40, 38, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}

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

.nav__logo-img {
  height: 48px;
  width: auto;
}

/* Menu — mobile */
.nav__menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
  padding: 20px 24px;
  gap: 4px;
  z-index: 200;
  box-shadow: var(--shadow-soft);
  list-style: none;
  margin: 0;
}

.nav__menu li,
.nav__item {
  list-style: none;
}

.nav__menu li::marker,
.nav__item::marker {
  content: '';
}

.nav__menu.nav__menu--open {
  display: flex;
}

.nav__item {
  width: 100%;
}

.nav__link {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--gray-line);
  transition: color var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--sage-dark);
}

/* CTA w menu */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 12px 20px;
  background: var(--teal);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background var(--transition-base), transform var(--transition-base);
}

.nav__cta:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.nav__cta-icon {
  width: 14px;
  height: 14px;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav__toggle--open .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle--open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle--open .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* lg ≥992px: menu poziome */
@media (min-width: 992px) {
  .nav__logo-img { height: 52px; }

  .nav__menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    gap: 4px;
    box-shadow: none;
    align-items: center;
  }

  .nav__item {
    width: auto;
  }

  .nav__link {
    position: relative;
    padding: 8px 6px;
    font-size: 13px;
    border-bottom: none;
  }

  .nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sage);
    transition: width var(--transition-base);
  }

  .nav__link:hover::after,
  .nav__link--active::after {
    width: 100%;
  }

  .nav__cta {
    margin-top: 0;
    padding: 11px 18px;
  }

  .nav__toggle {
    display: none;
  }
}

@media (min-width: 1200px) {
  .nav__link { padding: 8px 10px; }
  .nav__cta  { padding: 13px 22px; }
}


/* ============================================================
   11. FOOTER
============================================================ */
.footer {
  background: var(--off-white);
  border-top: 1px solid var(--gray-line);
  padding-top: 60px;
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo-link {
  display: inline-flex;
}

.footer__logo-img {
  height: 60px;
  width: auto;
}

.footer__mission {
  font-size: 14px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 340px;
}

.footer__krdo {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--amber-light);
  border-left: 3px solid var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--amber-dark);
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-line);
  border-radius: 50%;
  color: var(--text-mid);
  transition: background var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base);
}

.footer__social-link:hover {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.footer__social-icon {
  width: 15px;
  height: 15px;
}

.footer__col-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-line);
}

.footer__nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
}

.footer__nav-link {
  font-size: 14px;
  color: var(--text-mid);
  transition: color var(--transition-base);
}

.footer__nav-link:hover {
  color: var(--sage-dark);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-block: 12px;
  border-bottom: 1px solid var(--gray-line);
}

.footer__contact-item:last-child {
  border-bottom: none;
}

.footer__contact-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--sage);
  stroke-width: 2;
  margin-top: 2px;
}

.footer__contact-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
}

.footer__contact-link {
  color: var(--text-mid);
}

.footer__contact-link:hover {
  color: var(--sage-dark);
}

.footer__mini-map {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--gray-line);
}

.footer__mini-map-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.8);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-block: 20px;
  border-top: 1px solid var(--gray-line);
}

.footer__copyright {
  font-size: 12px;
  color: var(--text-light);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer__legal-link {
  font-size: 12px;
  color: var(--text-light);
  transition: color var(--transition-base);
}

.footer__legal-link:hover {
  color: var(--sage-dark);
}

.footer__legal-info {
  font-size: 12px;
  color: var(--text-light);
}

@media (min-width: 768px) {
  .footer__grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px 48px;
  }

  .footer__col--brand   { flex: 1 1 280px; }
  .footer__col--nav     { flex: 0 0 200px; }
  .footer__col--contact { flex: 1 1 240px; }

  .footer__nav-grid {
    flex-direction: column;
    gap: 6px;
  }

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

@media (min-width: 992px) {
  .footer { padding-top: 80px; }

  .footer__grid {
    flex-wrap: nowrap;
    gap: 60px;
    padding-bottom: 64px;
  }

  .footer__col--brand   { flex: 1.4 1 0; }
  .footer__col--nav     { flex: 0.8 1 0; }
  .footer__col--contact { flex: 1.4 1 0; }
}


/* ============================================================
   12. BACK TO TOP
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.4s ease,
              transform 0.4s ease,
              background var(--transition-base);
  z-index: 99;
  box-shadow: 0 8px 28px rgba(80, 105, 48, 0.4), 0 0 0 0 rgba(80, 105, 48, 0.45);
  animation: btnPulse 2.6s ease-in-out infinite;
}

.back-to-top.back-to-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--teal-dark);
  transform: translateY(-3px) scale(1.05);
}

.back-to-top__icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 992px) {
  .back-to-top {
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
  }
}


/* ============================================================
   13. SECTION HEADER (reużywalny blok tytułowy)
============================================================ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.section-header .eyebrow {
  display: inline-flex;
}

.section-header__heading {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-header__heading-em {
  font-style: italic;
  color: var(--sage-dark);
  font-weight: 400;
}

.section-header__lead {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
}


/* ============================================================
   14. BREADCRUMB (ścieżka nawigacji w hero podstron)
============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.breadcrumb__link {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-base);
}

.breadcrumb__link:hover {
  color: var(--sage-light);
}

.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb__current {
  color: var(--white);
  font-weight: 600;
}

/* Wariant na jasnym tle */
.breadcrumb--light {
  color: var(--text-mid);
}

.breadcrumb--light .breadcrumb__link {
  color: var(--text-mid);
}

.breadcrumb--light .breadcrumb__link:hover {
  color: var(--sage-dark);
}

.breadcrumb--light .breadcrumb__sep {
  color: var(--gray-mid);
}

.breadcrumb--light .breadcrumb__current {
  color: var(--text-dark);
}


/* ============================================================
   15. KEYFRAMES
============================================================ */
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes btnPulse {
  0%,100% { box-shadow: 0 8px 28px rgba(80, 105, 48, 0.4), 0 0 0 0 rgba(80, 105, 48, 0.45); }
  50%     { box-shadow: 0 8px 28px rgba(80, 105, 48, 0.4), 0 0 0 12px rgba(80, 105, 48, 0); }
}

@keyframes scrollHint {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50%     { transform: translateX(-50%) translateY(6px); opacity: 1; }
}


/* ============================================================
   16. BEM-OWE WARIANTY GUZIKÓW I EYEBROW (dla podstron)
   Aliasy do klasycznych klas .btn-* / .eyebrow-* z podwójnym
   myślnikiem (BEM modyfikator), z jakich korzystają podstrony.
============================================================ */

/* Buttons — BEM modifiers */
.btn--primary { background: var(--sage); color: var(--white); border: 1px solid var(--sage); }
.btn--primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(110,142,80,0.25); }

.btn--teal { background: var(--teal); color: var(--white); border: 1px solid var(--teal); }
.btn--teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(110,142,80,0.32); }

.btn--ghost { background: transparent; color: var(--text-dark); border: 1px solid var(--gray-line); }
.btn--ghost:hover { background: var(--text-dark); color: var(--white); border-color: var(--text-dark); }

.btn--light { background: var(--white); color: var(--sage-dark); border: 1px solid var(--white); }
.btn--light:hover { background: transparent; color: var(--white); border-color: var(--white); }

.btn--light-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn--light-outline:hover { background: var(--white); color: var(--sage-dark); border-color: var(--white); }

.btn--full { width: 100%; justify-content: center; }
.btn--icon { gap: 10px; }

.btn__icon,
.btn > svg,
button.btn svg,
a.btn svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0 !important;
  display: inline-block;
  vertical-align: middle;
}

/* Eyebrow — BEM modifiers */
.eyebrow--line::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--sage);
  margin-right: 16px;
  vertical-align: middle;
}

.eyebrow--light {
  color: var(--sage-light);
}

.eyebrow--light.eyebrow--line::before {
  background: var(--sage-light);
}

/* sr-only — schowane wizualnie, dostępne dla czytników ekranowych */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reveal — sekcje z animacją wjazdu (failsafe: pokazują się od razu) */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ============================================================
   18. ACCESSIBILITY — WCAG 2.2 / EAA
============================================================ */

/* Skip link — ukryty wizualnie, widoczny przy focus z klawiatury */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--sage-deep, #506930);
  color: #fff;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  z-index: 99999;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  transition: top 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 0;
  outline: 3px solid var(--amber, #c9933d);
  outline-offset: 2px;
  color: #fff;
}

/* Focus indicators dla nawigacji klawiaturą */
*:focus-visible {
  outline: 3px solid var(--sage, #6e8e50);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Usunięcie outline dla myszki (zostaje dla klawiatury) */
:focus:not(:focus-visible) {
  outline: none;
}

/* Linki, przyciski, pola formularza — focus-visible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--sage, #6e8e50);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Reduced motion — szanujemy preferencje użytkownika */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Wyższy kontrast dla osób z ograniczeniem widzenia */
@media (prefers-contrast: more) {
  body {
    background: #fff;
    color: #000;
  }
  a {
    text-decoration: underline;
  }
}

/* Minimum touch target size — 48x48px na mobile (WCAG 2.5.5) */
@media (pointer: coarse) {
  a,
  button,
  input,
  select,
  textarea,
  [role="button"] {
    min-height: 44px;
  }
}


/* ============================================================
   17. CTA-PHONE-BLOCK — duża klikalna karta telefonu w sekcji CTA
   (umieszczana w prawej kolumnie cta-banner__inner)
============================================================ */
a.cta-phone-block,
.cta-phone-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 4px;
  color: var(--white);
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

a.cta-phone-block:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--sage-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.cta-phone-block__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.cta-phone-block__icon {
  width: 26px !important;
  height: 26px !important;
  stroke-width: 1.8;
  color: var(--sage-light);
  flex-shrink: 0;
}

.cta-phone-block__label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
}

.cta-phone-block__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1;
  display: block;
}

.cta-phone-block__sub {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
}

/* Stary cta-phone-link — zostawiamy jako alias, ale i tak nie używamy */
.cta-phone-link { display: none !important; }

/* ============================================================
   SEO LONG-FORM (sekcja informacyjna na stronie głównej)
============================================================ */
.seo-long-form {
  padding: 80px 0 60px;
  background: var(--white);
  color: var(--text-dark);
}
.seo-long-form .container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.seo-long-form h1 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-dark);
  margin: 0 0 32px;
  text-align: center;
}
.seo-long-form h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-dark);
  margin: 0 0 32px;
  text-align: center;
}
.seo-long-form h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 48px 0 16px;
}
.seo-long-form h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--sage-dark);
  margin: 24px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.seo-long-form p {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-mid);
  margin: 0 0 18px;
}
.seo-long-form p strong {
  color: var(--text-dark);
  font-weight: 600;
}
.seo-long-form ul {
  margin: 16px 0 24px;
  padding-left: 24px;
}
.seo-long-form li {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.seo-long-form li strong {
  color: var(--text-dark);
  font-weight: 600;
}
.seo-long-form a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.seo-long-form a:hover {
  color: var(--sage);
}
.seo-long-form a.btn {
  text-decoration: none;
}
