/* =========================================================
   Dom Gościnny Kinga – Rewal | styles.css
   Mobile-First · WCAG 2.1 AA · No hover-only interactions
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --c-navy:    #0a3f6e;
  --c-blue:    #0e5aa7;
  --c-blue-600:#0c4d90;
  --c-sky:     #eaf3fb;
  --c-sky-200: #d6e8f7;
  --c-sun:     #f4a82c;   /* CTA accent */
  --c-sun-700: #cf8408;
  --c-ink:     #182330;   /* body text  ~13:1 on white */
  --c-muted:   #4d5b6b;   /* ~7:1 on white */
  --c-white:   #ffffff;
  --c-line:    #e2e8f0;
  --c-ok:      #1f8a52;

  --radius:   14px;
  --radius-s: 9px;
  --shadow:   0 6px 22px rgba(10, 63, 110, .10);
  --shadow-l: 0 14px 40px rgba(10, 63, 110, .16);
  --maxw:     1140px;
  --gap:      clamp(1rem, 3vw, 2rem);
  --tap:      48px;       /* min touch target */

  /* Tekst: Lato (polskie znaki) · Nagłówki: Poppins — z bezpiecznym fallbackiem */
  --font: 'Lato', "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --font-head: 'Poppins', "Segoe UI", system-ui, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font);
  font-size: 1rem;              /* 16px minimum */
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; padding: 0; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; color: var(--c-navy); font-weight: 700; }

/* ---------- Accessibility helpers ---------- */
:focus-visible {
  outline: 3px solid var(--c-sun-700);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute; left: 8px; top: -60px;
  background: var(--c-navy); color: #fff; padding: 12px 18px;
  border-radius: 0 0 var(--radius-s) var(--radius-s); z-index: 1200;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; text-decoration: none; }
.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;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding-block: clamp(2.75rem, 7vw, 5rem); }
.section, .hero { scroll-margin-top: 104px; }
.section--alt { background: var(--c-sky); }
.section__head { max-width: 720px; margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.section__head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; font-size: .8rem;
  color: var(--c-blue); background: var(--c-sky-200);
  padding: .35em .8em; border-radius: 999px; margin-bottom: .9rem;
}
.section--alt .eyebrow { background: #fff; }
h2.section__title { font-size: clamp(1.6rem, 4.5vw, 2.4rem); }
#onas-title { font-size: calc(clamp(1.6rem, 4.5vw, 2.4rem) + 2px); }
.section__lead { margin-top: .8rem; color: var(--c-muted); font-size: 1.05rem; }
/* Box z opisem (np. intro Pokoi) – styl jak pozostałe kafelki sekcji */
.intro-card {
  max-width: 820px; margin: 0 auto clamp(1.6rem, 4vw, 2.4rem);
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(1.5rem, 4vw, 2.3rem) clamp(1.4rem, 4vw, 2.2rem); text-align: center;
}
.intro-card p { font-size: 1.24rem; line-height: 1.75; color: var(--c-ink); }

/* ---------- Buttons (min 48px, text labels) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: var(--tap); padding: .8em 1.4em;
  font: inherit; font-weight: 700; font-size: 1rem;
  border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  text-align: center; white-space: nowrap; transition: transform .12s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--c-sun); color: var(--c-navy); box-shadow: var(--shadow); }
.btn--primary:hover { background: #a05f00; color: #fff; }
.btn--solid { background: var(--c-blue); color: #fff; }
.btn--solid:hover { background: var(--c-blue-600); }
.btn--ghost { background: transparent; color: var(--c-navy); border-color: var(--c-navy); }
.btn--ghost:hover { background: var(--c-navy); color: #fff; }
.btn--block { width: 100%; }
.btn .ico { width: 1.35em; height: 1.35em; flex: none; }
.btn--cta { font-weight: 800; letter-spacing: .01em; }
/* Unoszenie przycisków przy najechaniu (tylko urządzenia z kursorem) */
@media (hover: hover) {
  .btn--primary:hover, .btn--solid:hover, .btn--call:hover { transform: translateY(-3px); box-shadow: var(--shadow-l); }
}

/* ---------- Header / Nav (floating glass pill) ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding-block: clamp(.5rem, 1.6vw, .9rem);
  pointer-events: none;
}
.site-header .container { pointer-events: none; }
.nav {
  pointer-events: auto;
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  min-height: 78px; padding: .5rem .6rem .5rem 1.25rem;
  background: rgba(255,255,255,.74);
  -webkit-backdrop-filter: blur(20px) saturate(175%);
  backdrop-filter: blur(20px) saturate(175%);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  box-shadow: 0 12px 38px rgba(10,63,110,.20);
}
.brand { display: flex; align-items: center; gap: .6rem; flex: none; }
.brand img { height: 62px; width: auto; }
@media (min-width: 1140px){ .brand img { height: 70px; } }

.nav__toggle {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 52px; height: 52px; border: 0; border-radius: 50%;
  background: var(--c-navy); color: #fff; cursor: pointer;
  box-shadow: 0 6px 16px rgba(10,63,110,.3);
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
}
.nav__toggle:active { transform: scale(.95); }
@media (hover: hover) {
  .nav__toggle:hover { background: #082f55; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(10,63,110,.4); }
}
.nav__toggle .bars { position: relative; width: 22px; height: 2px; background: currentColor; display: block; }
.nav__toggle .bars::before, .nav__toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: currentColor; transition: .2s;
}
.nav__toggle .bars::before { top: -7px; } .nav__toggle .bars::after { top: 7px; }
.nav__toggle[aria-expanded="true"] .bars { background: transparent; }
.nav__toggle[aria-expanded="true"] .bars::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .bars::after  { top: 0; transform: rotate(-45deg); }

.nav__menu {
  position: fixed; top: 96px; left: .8rem; right: .8rem;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.7); border-radius: 22px; box-shadow: var(--shadow-l);
  display: grid; gap: .1rem; padding: .8rem 1rem 1.05rem;
  transform: translateY(-135%); transition: transform .3s ease; visibility: hidden;
}
.nav__menu.open { transform: translateY(0); visibility: visible; }
.nav__menu a {
  display: flex; align-items: center; min-height: var(--tap);
  font-family: var(--font-head); color: var(--c-ink); font-weight: 600; padding: 0 .4rem; border-bottom: 1px solid var(--c-line);
}
.nav__menu a:hover { color: var(--c-blue); text-decoration: none; }
.nav__menu .nav__cta-btn .btn { margin-top: .6rem; }
.nav__cta { display: none; }

@media (min-width: 1140px) {
  .nav__toggle { display: none; }
  .nav__menu {
    position: static; transform: none; visibility: visible; box-shadow: none; border: 0;
    display: flex; align-items: center; gap: .12rem; padding: 0; background: transparent;
    flex-wrap: nowrap; -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  .nav__menu li.is-link a {
    border: 0; min-height: auto; padding: .55rem .72rem; border-radius: 999px; white-space: nowrap; font-size: 1.02rem;
  }
  .nav__menu li.is-link a:hover { background: rgba(255,255,255,.7); color: var(--c-blue); text-decoration: none; }
  .nav__menu .nav__cta { display: inline-flex; margin-left: .35rem; }
  .nav__menu .nav__cta-btn { display: none; } /* hide in-menu block button on desktop */
}

/* Dark phone CTA (pill) */
.btn--call { background: var(--c-navy); color: #fff; box-shadow: 0 6px 18px rgba(10,63,110,.28); }
.btn--call:hover { background: #082f55; color: #fff; }
.btn--call .ico { width: 1.15em; height: 1.15em; }
.nav__cta .btn--call { padding: .65em 1.15em; font-size: .95rem; }

/* Navbar CTA (telefon): kolory tekstu jak przycisk hero btn--primary — nadpisuje reguły menu */
.nav__menu .nav__cta .btn--primary, .nav__menu .nav__cta-btn .btn--primary { color: var(--c-navy); box-shadow: none; padding: .74em .5em; gap: .22em; }
/* numer telefonu w navbarze +1px; padding skompensowany, by przycisk zachował dokładnie ten sam rozmiar/pozycję */
.nav__menu .nav__cta .cta-num, .nav__menu .nav__cta-btn .cta-num { font-size: calc(1rem + 1px); }
.nav__menu .nav__cta .btn--primary:hover, .nav__menu .nav__cta-btn .btn--primary:hover { color: #fff; box-shadow: none; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; min-height: 100vh; display: flex; align-items: center; }
.hero > .container { width: 100%; min-width: 0; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0; transition: opacity 2s ease-in-out;
}
.hero__slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: opacity .4s ease; }
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,40,70,.62), rgba(8,40,70,.78));
}
.hero__inner { padding-top: clamp(5.5rem, 9vw, 6.5rem); padding-bottom: clamp(3.5rem, 7vw, 5rem); max-width: 940px; }
.hero h1 { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.3); }
.hero__title-main { font-size: clamp(1.5rem, 7.8vw, 5.9rem); line-height: 1.03; white-space: nowrap; }
.hero__title-sub  { margin-top: .55rem; font-family: var(--font-head); font-size: clamp(.95rem, 4.3vw, 2.65rem); font-weight: 700; line-height: 1.12; white-space: nowrap; text-shadow: 0 2px 16px rgba(0,0,0,.3); }
/* mobile: nagłówek i podtytuł hero mogą się zawijać, żeby nie wystawały poza ekran */
@media (max-width: 600px) {
  .hero__title-main, .hero__title-sub { white-space: normal; }
}
.hero__sub { margin-top: 1.1rem; font-size: clamp(1.05rem, 3vw, 1.3rem); color: #eaf3fb; max-width: 640px; text-align: justify; hyphens: auto; }
.hero__sub .hl-plaza { font-size: calc(1em + 3px); }
.hero__badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.hero__badges li {
  display: inline-flex; align-items: center; gap: .45em;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  padding: .45em .9em; border-radius: 999px; font-size: .92rem; font-weight: 600;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.hero__badges .ico { width: 1.15em; height: 1.15em; flex: none; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero__cta .btn, .hero__cta .btn:hover { box-shadow: none; }
.hero__cta .btn { font-size: calc(1rem + 1px); }

/* Wskaźnik scrollowania */
.hero__scroll {
  position: absolute; left: 50%; bottom: clamp(1rem, 3vh, 1.9rem);
  transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: .4rem;
  color: #fff; text-decoration: none; z-index: 3; opacity: .9;
  transition: opacity .2s ease;
}
.hero__scroll:hover, .hero__scroll:focus-visible { opacity: 1; text-decoration: none; }
.hero__scroll-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.7); background: rgba(255,255,255,.12);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  box-shadow: 0 3px 14px rgba(0,0,0,.28);
  animation: heroScrollBounce 1.8s ease-in-out infinite;
}
.hero__scroll-ico svg { width: 22px; height: 22px; filter: drop-shadow(0 1px 3px rgba(0,0,0,.4)); }
@keyframes heroScrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) { .hero__scroll-ico { animation: none; } }
/* mobile: podnieś chevron nad dolny pasek akcji (Zadzwoń/Napisz ~68px) */
@media (max-width: 919px) {
  .hero__scroll { bottom: calc(4.9rem + env(safe-area-inset-bottom)); }
}
.hero__cta .ico, .btn--cta .ico { width: 1.6em; height: 1.6em; }

/* ---------- Feature / amenities ---------- */
.features { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 1.5rem; }
@media (min-width: 560px){ .features { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px){ .features { grid-template-columns: repeat(3,1fr); } }
.feature {
  display: flex; gap: .85rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 1.05rem 1.1rem; box-shadow: var(--shadow);
}
.feature .ico { flex: none; width: 28px; height: 28px; color: var(--c-blue); margin-top: 2px; }
.feature h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--c-navy); }
.feature p { color: var(--c-muted); font-size: .95rem; margin-top: .15rem; }

/* About split */
.split { display: grid; gap: clamp(1.5rem,4vw,2.5rem); align-items: center; }
@media (min-width: 860px){ .split { grid-template-columns: 1.05fr 1fr; } }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-l); width: 100%; }
.prose p { text-align: justify; hyphens: auto; }
.prose p + p { margin-top: .9rem; }
.stat-row { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.4rem; }
.stat b { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--c-blue); line-height: 1; }
.stat span { font-size: .9rem; color: var(--c-muted); }

/* O nas – układ bez zdjęcia */
.about-intro { max-width: 880px; margin-inline: auto; }
.about-intro .prose p { text-align: justify; hyphens: auto; color: var(--c-ink); font-size: 1.05rem; }
.about-intro .stat-row { justify-content: center; gap: clamp(1.6rem, 5vw, 3rem); }
.about-intro .stat { text-align: center; }

/* ---------- Rooms (photo-less tiles) ---------- */
.rooms { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 720px){ .rooms { grid-template-columns: repeat(3,1fr); } }
.room-card {
  position: relative; overflow: hidden; background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.5rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .7rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.room-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-sun)); opacity: 0; transition: opacity .25s ease; }
.room-card--featured { border-color: var(--c-sun); }
.room-card--featured::before { opacity: 1; }
@media (hover: hover) {
  .room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); border-color: var(--c-sky-200); }
  .room-card:hover::before { opacity: 1; }
}
.room-card__head { display: flex; align-items: center; justify-content: space-between; }
.room-card__num { display: inline-flex; align-items: baseline; gap: .12em; font-family: var(--font-head);
  font-weight: 800; font-size: 2.3rem; color: var(--c-blue); line-height: 1; }
.room-card__num small { font-size: .85rem; font-weight: 700; color: var(--c-muted); }
.room-card__ico { width: 44px; height: 44px; color: var(--c-sun-700); flex: none; }
.room-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; }
.room-card__sub { display: block; font-family: var(--font); font-weight: 600; font-size: .82rem; color: var(--c-muted); margin-top: .15rem; }
.room-card > p { color: var(--c-muted); font-size: .96rem; flex: 1; text-align: justify; hyphens: auto; }
.room-card__feat { display: grid; gap: .45rem; }
.room-card__feat li { display: flex; align-items: center; gap: .55em; font-size: .92rem; font-weight: 600; color: var(--c-ink); }
.room-card__feat li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--c-sun); flex: none; }

/* ---------- Pricing (single tile) ---------- */
.price-tile { max-width: 760px; margin-inline: auto; background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem 1.6rem 1.7rem; }
.price-tile__title { font-family: var(--font-head); font-weight: 700; color: var(--c-navy);
  font-size: 1.3rem; text-align: center; margin-bottom: 1.1rem; }
.price-tile__row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  background: var(--c-sky); border-radius: var(--radius-s); padding: 1.1rem 1.3rem; }
.price-tile__label { display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 700; color: var(--c-blue); margin-bottom: .25rem; }
.price-tile__term strong { font-size: 1.12rem; color: var(--c-navy); font-family: var(--font-head); }
.price-tile__amount { text-align: right; }
.price-tile__amount b { font-family: var(--font-head); font-weight: 800; font-size: 1.65rem; color: var(--c-blue); display: block; line-height: 1.1; }
.price-tile__amount small { color: var(--c-muted); font-size: .85rem; }
.price-note__list { display: grid; gap: .75rem; margin-top: 1.25rem; }
.price-note__list li { display: flex; gap: .6rem; align-items: flex-start; color: var(--c-ink); }
.price-note__list .ico { color: var(--c-ok); width: 22px; height: 22px; flex: none; margin-top: 2px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; gap: .7rem; grid-template-columns: repeat(2,1fr); margin-top: 1.5rem; }
@media (min-width: 640px){ .gallery { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 960px){ .gallery { grid-template-columns: repeat(4,1fr); } }
.gallery button {
  padding: 0; border: 0; background: none; cursor: zoom-in; border-radius: var(--radius-s);
  overflow: hidden; box-shadow: var(--shadow); display: block;
}
.gallery img { aspect-ratio: 1/1; object-fit: cover; width: 100%; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
@media (hover: hover) { .gallery button:hover img { transform: scale(1.1); } }
.gallery button:active img { transform: scale(.98); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1300; display: none; }
.lightbox[open], .lightbox.open { display: grid; }
.lightbox { place-items: center; background: rgba(8,20,35,.92); padding: 1rem; }
.lightbox img { max-width: 92vw; max-height: 80vh; width: auto; height: auto; border-radius: var(--radius-s); box-shadow: var(--shadow-l); }
.lightbox__bar { position: absolute; top: 0; left: 0; right: 0; display: flex; justify-content: space-between; align-items: center; padding: .8rem 1rem; color: #fff; }
.lb-btn {
  min-width: var(--tap); min-height: var(--tap); border-radius: 999px; border: 2px solid rgba(255,255,255,.5);
  background: rgba(0,0,0,.35); color: #fff; font-size: 1.3rem; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
}
.lb-btn:hover { background: rgba(0,0,0,.6); }
.lightbox__nav { position: absolute; inset: 0; display: flex; justify-content: space-between; align-items: center; padding: 0 .6rem; pointer-events: none; }
.lightbox__nav .lb-btn { pointer-events: auto; }
.lightbox__count { font-weight: 700; }

/* ---------- Attractions ---------- */
.attractions { display: grid; gap: 1.1rem; grid-template-columns: 1fr; margin-top: 1.5rem; }
@media (min-width: 620px){ .attractions { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px){ .attractions { grid-template-columns: repeat(3,1fr); } }
.attraction {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  min-height: clamp(280px, 34vw, 360px); display: flex; align-items: flex-end; color: #fff; isolation: isolate;
  transition: transform .3s ease, box-shadow .3s ease;
}
.attraction img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.attraction::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,40,70,0) 30%, rgba(8,40,70,.88)); transition: opacity .3s ease; }
.attraction__body { padding: 1.2rem 1.3rem; transition: transform .3s ease; }
/* Efekt hover tylko dla urządzeń z prawdziwym kursorem (nieaktywny na mobile) */
@media (hover: hover) {
  .attraction:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); }
  .attraction:hover img { transform: scale(1.08); }
  .attraction:hover .attraction__body { transform: translateY(-4px); }
  .attraction:hover .tile-zoom svg { opacity: 1; transform: scale(1); }
}
/* Klikalny overlay otwierający zdjęcie w lightboxie */
.tile-zoom {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; background: transparent; cursor: zoom-in; z-index: 2; padding: 0;
}
.tile-zoom svg {
  position: absolute; top: .85rem; right: .85rem; width: 42px; height: 42px; padding: 9px;
  color: #fff; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%; -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; transform: scale(.8); transition: opacity .25s ease, transform .25s ease;
}
.tile-zoom:focus-visible { outline: 3px solid #fff; outline-offset: -5px; border-radius: var(--radius); }
.tile-zoom:focus-visible svg { opacity: 1; transform: scale(1); }
.attraction h3 { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; }
.attraction p { font-size: .92rem; color: #e9f2fb; margin-top: .25rem; }
.area-extra { margin-top: 1.4rem; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 1.2rem 1.3rem; box-shadow: var(--shadow); }
.area-extra h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; margin-bottom: .6rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chips li { background: var(--c-sky); color: var(--c-blue-600); border-radius: 999px; padding: .4em .85em; font-weight: 600; font-size: .9rem; }

/* ---------- Reviews ---------- */
.reviews-head { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.rating-badge { display: flex; align-items: center; gap: .7rem; background: #fff; border: 1px solid var(--c-line); border-radius: 999px; padding: .5rem 1rem; box-shadow: var(--shadow); }
.stars { color: var(--c-sun-700); font-size: 1.1rem; letter-spacing: .05em; }
.rating-badge b { color: var(--c-navy); }
.reviews { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 680px){ .reviews { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px){ .reviews { grid-template-columns: repeat(3,1fr); } }
.review {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 1.2rem 1.3rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: .6rem;
}
.review .stars { font-size: 1rem; }
.review blockquote { font-size: 1.02rem; color: var(--c-ink); }
.review figcaption { font-weight: 700; color: var(--c-navy); font-size: .95rem; }
.review figcaption span { display: block; font-weight: 500; color: var(--c-muted); font-size: .82rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(1.4rem,4vw,2.2rem); }
@media (min-width: 900px){ .contact-grid { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.contact-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.contact-card .map-card { margin-top: auto; }
.contact-card form { display: flex; flex-direction: column; flex: 1; }
.contact-list { display: grid; gap: 1rem; margin: 1rem 0 1.3rem; }
.contact-list li { display: flex; gap: .85rem; align-items: flex-start; }
.contact-list .ico { color: var(--c-blue); width: 24px; height: 24px; flex: none; margin-top: 2px; }
.contact-list a { font-weight: 700; color: var(--c-navy); }
.contact-list small { display: block; color: var(--c-muted); font-weight: 400; }
.contact-actions { display: grid; gap: .7rem; grid-template-columns: 1fr; margin-bottom: 1.4rem; }
@media (min-width: 460px){ .contact-actions { grid-template-columns: 1fr 1fr; } }

/* Form */
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 600; color: var(--c-navy); font-size: .95rem; }
.field .req { color: #c0392b; }
.field input, .field textarea, .field select {
  font: inherit; font-size: 1rem; color: var(--c-ink);
  padding: .75rem .85rem; min-height: var(--tap);
  border: 2px solid var(--c-line); border-radius: var(--radius-s); background: #fff; width: 100%;
}
.field textarea { min-height: 165px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--c-blue); outline: none; box-shadow: 0 0 0 3px var(--c-sky-200); }
.field--row { display: grid; gap: 1rem; }
@media (min-width: 520px){ .field--row { grid-template-columns: 1fr 1fr; } }
.form__hint { font-size: .85rem; color: var(--c-muted); }
.form__status { font-weight: 600; padding: .6rem .8rem; border-radius: var(--radius-s); display: none; }
.form__status.ok { display: block; background: #e7f6ee; color: var(--c-ok); }
.form__status.err { display: block; background: #fdecec; color: #b42318; }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--c-muted); }
.consent input { width: 22px; height: 22px; min-height: auto; flex: none; margin-top: 2px; }

/* Map */
.map-card { border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 1.3rem; }
.map-card iframe { display: block; width: 100%; height: 320px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-navy); color: #cfe0f0; padding-block: clamp(2.5rem,6vw,3.5rem) 6.5rem; }
.footer-grid { display: grid; gap: 1.8rem; grid-template-columns: 1fr; }
@media (min-width: 600px){ .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px){ .footer-grid { grid-template-columns: 1.5fr 1fr 1.1fr 1.5fr; } }
.site-footer h3 { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; margin-bottom: .7rem; }
.site-footer a { color: #cfe0f0; }
.site-footer a:hover { color: #fff; }
.footer-brand img {
  display: block; box-sizing: content-box; height: 62px; width: auto; max-width: 100%;
  background: #fff; padding: 9px 16px; border-radius: 12px;
}
.site-footer h3 { letter-spacing: .01em; }
.footer-brand p { margin-top: 1rem; font-size: .9rem; line-height: 1.65; color: #bcd2e8; max-width: 36ch; text-align: left; text-wrap: balance; }
.footer-list { display: grid; gap: .55rem; font-size: .9rem; line-height: 1.5; }
.footer-pay .footer-list { gap: .4rem; font-size: .78rem; }
.footer-pay strong { color: #dbe7f3; font-weight: 600; }
.footer-pay .acct { font-variant-numeric: tabular-nums; letter-spacing: .01em; color: #e6f0fa; font-weight: 700; font-size: .8rem; word-break: break-word; }
.footer-pay .pay-note { margin-top: .3rem; font-size: .74rem; color: #aecbe6; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 2.4rem; padding-top: 1.3rem; font-size: .85rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; align-items: center; }
.footer-bottom__links a { color: #cfe0f0; font-weight: 600; }
.footer-bottom .credit a { color: var(--c-sun); font-weight: 700; }
.footer-bottom .credit a:hover { color: #fff; }

/* ---------- Sticky mobile action bar ---------- */
.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1100;
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
  padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.97); border-top: 1px solid var(--c-line);
  box-shadow: 0 -6px 22px rgba(10,63,110,.12); backdrop-filter: blur(6px);
}
.actionbar .btn { min-height: 50px; font-size: .98rem; }
@media (min-width: 920px){ .actionbar { display: none; } .site-footer { padding-bottom: clamp(2.5rem,6vw,3.5rem); } }

/* utils */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
