/* =================================================================
   KIERUNEK WSCHÓD — site.css
   Komponenty specyficzne dla tej strony (galerie, lightbox, hero z
   rotacją zdjęć, przełącznik języka, muzyka, atrakcje, podstrony).
   Ładowany PO style.css. Wszystkie kolory przez var(--…) z paczki.
   ================================================================= */

/* ---------- wejście strony / przejścia ---------- */
body { opacity: 0; transition: opacity .6s var(--ease); }
body.loaded { opacity: 1; }

/* odsłanianie przy scrollu (IntersectionObserver w main.js) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.animate-on-scroll.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll { opacity: 1; transform: none; transition: none; }
  body { opacity: 1; transition: none; }
}

/* nagłówek po przewinięciu — mocniejszy cień */
.site-header.scrolled { box-shadow: var(--shadow-2); }

/* akcent w nagłówkach (np. „Puszczy") */
.text-gold { color: var(--folk-red); font-style: italic; }

/* ---------- przełącznik języka (wstrzykiwany przez i18n.js) ---------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: var(--linen-warm);
  border: 1px solid rgba(139, 94, 60, 0.25);
  border-radius: var(--radius-pill);
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0 8px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.lang-switch a:hover { color: var(--folk-red); }
.lang-switch a.active { background: var(--folk-red); color: var(--paper); }

/* ---------- przycisk muzyki (audio.js tworzy #music-control) ---------- */
.music-control {
  cursor: pointer;
  box-shadow: var(--shadow-2);
  transition: transform .18s var(--ease), box-shadow .2s var(--ease);
}
.music-control:hover { transform: scale(1.08); box-shadow: var(--shadow-3); }

/* ---------- hero: rotacja prawdziwych zdjęć w kadrowanej ramce ---------- */
.hero-photo .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero-photo .hero-bg.active { opacity: 1; }

/* ---------- pasek USP (strona główna) ---------- */
.usp-strip {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  margin-top: var(--space-6);
}
@media (min-width: 560px) { .usp-strip { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .usp-strip { grid-template-columns: repeat(4, 1fr); gap: var(--space-4); } }
.usp-item {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4);
  background: var(--linen-soft);
  border: 1px solid rgba(139, 94, 60, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}
.usp-item .usp-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--linen-warm);
  color: var(--folk-red);
  border-radius: 50%;
}
.usp-item .usp-icon svg { width: 22px; height: 22px; }
.usp-item span:last-child { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- okruszki (podstrony) ---------- */
.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--ink-mute);
  margin-bottom: var(--space-4);
}
.crumb a { color: var(--ink-soft); text-decoration: none; }
.crumb a:hover { color: var(--folk-red); }
.crumb .sep { color: var(--wood-soft); }

/* ---------- siatka „co w środku" (podstrony) ---------- */
.features { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 560px) { .features { grid-template-columns: 1fr 1fr; } }
@media (min-width: 920px) { .features { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); } }
.feature {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--paper);
  border: 1px solid rgba(139, 94, 60, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}
.feature .fc-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--linen-warm);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--folk-red);
}
.feature .fc-icon svg { width: 22px; height: 22px; }
.feature h4 { font-size: 1.05rem; font-weight: 600; font-family: var(--font-body); margin-bottom: 2px; color: var(--ink); }
.feature p { font-size: 0.95rem; color: var(--ink-soft); }

/* opis z prozą (podstrony) — bloki tekstu */
.prose { color: var(--ink-soft); }
.prose > * + * { margin-top: var(--space-4); }
.prose h3 { color: var(--ink); margin-top: var(--space-6); margin-bottom: var(--space-2); }
.prose ul { margin: var(--space-3) 0 0; padding-left: 1.1em; }
.prose li { margin-top: 6px; }
.prose strong { color: var(--ink); }
.prose .acc-rule {
  padding: var(--space-4) var(--space-5);
  background: var(--linen-warm);
  border-left: 3px solid var(--folk-red);
  border-radius: var(--radius-md);
  color: var(--ink);
}

/* ---------- rozwijane instrukcje obsługi (balia, sauna...) - <details> ---------- */
.acc-guide {
  margin-top: var(--space-6);
  border: 1px solid var(--linen-warm);
  border-radius: var(--radius-lg);
  background: var(--linen-soft);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.acc-guide > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--linen-warm);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  transition: filter .2s var(--ease);
}
.acc-guide > summary::-webkit-details-marker { display: none; }
.acc-guide > summary:hover { filter: brightness(0.97); }
.acc-guide > summary::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  background: var(--folk-red);
  transform: rotate(45deg);
  flex: 0 0 auto;
  transition: transform .25s var(--ease);
}
.acc-guide[open] > summary::before { transform: rotate(135deg); }
.acc-guide[open] > summary { border-bottom: 1px solid var(--linen-warm); }

.acc-guide-body {
  padding: var(--space-5);
  background: var(--paper);
  color: var(--ink-soft);
}
.acc-guide-body > * + * { margin-top: var(--space-4); }
.acc-guide-body > :first-child { margin-top: 0; }
.acc-guide-body h4 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  margin-top: var(--space-6);
}
.acc-guide-body ol,
.acc-guide-body ul { margin-top: var(--space-3); padding-left: 1.25em; }
.acc-guide-body li { margin-top: var(--space-2); }
.acc-guide-body li::marker { color: var(--folk-red); }
.acc-guide-body strong { color: var(--ink); }

/* złota zasada - wyróżniony callout */
.acc-guide-body .acc-rule {
  padding: var(--space-4) var(--space-5);
  background: var(--linen-warm);
  border-left: 3px solid var(--folk-red);
  border-radius: var(--radius-md);
  color: var(--ink);
}
/* podpis na koniec - pismo odręczne */
.acc-guide-body .acc-outro {
  margin-top: var(--space-5);
  font-family: var(--font-hand);
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--folk-red);
  text-align: center;
}
/* miejsca na zdjęcia właściciela */
.acc-guide-body figure { margin: var(--space-4) 0 0; }
.acc-guide-body figure img { width: 100%; border-radius: var(--radius-md); display: block; }
.acc-guide-body figcaption {
  font-size: var(--fs-body-sm);
  color: var(--ink-mute);
  margin-top: var(--space-2);
  text-align: center;
}

/* lista udogodnień (feat-*) — checkmark rysowany CSS-em */
.feat-list {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}
.feat-list li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-bottom: 1px dashed rgba(139, 94, 60, 0.25);
  color: var(--ink-soft);
}
.feat-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 12px;
  width: 6px; height: 11px;
  border: solid var(--folk-red);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* układ podstrony: opis + boczna karta udogodnień */
.detail-grid { display: grid; gap: var(--space-6); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 920px) { .detail-grid { grid-template-columns: 1.6fr 1fr; gap: var(--space-8); } }
@media (min-width: 920px) { .detail-aside { position: sticky; top: 88px; } }

/* karta udogodnień (boczna) */
.amenities-card {
  padding: var(--space-5);
  background: var(--linen-soft);
  border: 1px solid rgba(139, 94, 60, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}
.amenities-card .ac-price {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(139, 94, 60, 0.2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--spruce);
}

/* ---------- cennik na podstronie (3 sezony) ---------- */
.price-strip { display: grid; gap: var(--space-3); }
@media (min-width: 640px) { .price-strip { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); } }
.ps-tier {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--paper);
  border: 1px solid rgba(139, 94, 60, 0.18);
  text-align: center;
}
.ps-tier .pt-season {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.ps-tier .pln {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--spruce);
  margin-top: 4px;
  line-height: 1;
}
.ps-tier .eur { display: block; font-family: var(--font-body); color: var(--ink-mute); margin-top: 4px; }

/* plakietka karty „featured" — tłumaczalna (zastępuje zaszyte po polsku ::before z style.css) */
.price-card.featured::before { content: none; }
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--folk-red);
  color: var(--paper);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ---------- przyciski rezerwacji / kontakt (strona główna) ---------- */
.booking-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-5);
}
.booking-row .btn { flex: 1 1 160px; }

/* ---------- rezerwacja online (silnik IdoBooking) ---------- */
.booking-online {
  margin: 0 auto var(--space-7);
  text-align: center;
}
.booking-online[hidden] { display: none; }
.booking-engine {
  margin-bottom: var(--space-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  background: var(--linen-warm);
}
.booking-engine iframe {
  display: block;
  width: 100%;
  min-height: 640px;
  border: 0;
}
.booking-or {
  margin: var(--space-5) 0 var(--space-3);
  color: var(--ink-soft, var(--ink));
  font-size: 0.95rem;
}

/* ---------- kafelki kontaktu (pod cennikiem) ---------- */
.contact-tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  max-width: 720px;
  margin-inline: auto;
}
.contact-tile {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-4);
  background: var(--paper);
  border: 1px solid rgba(139, 94, 60, 0.2);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-1);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.contact-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: var(--folk-red);
}
.contact-tile .ct-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  background: var(--linen-warm);
  color: var(--folk-red);
}
.contact-tile .ct-icon svg { width: 17px; height: 17px; }
.contact-tile .ct-text { display: flex; flex-direction: column; line-height: 1.15; }
.contact-tile .ct-label { font-weight: 600; font-size: 0.95rem; }
.contact-tile .ct-value { font-size: 0.78rem; color: var(--ink-mute); }

/* ---------- galerie + lightbox ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-3);
}
@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--space-4); }
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(139, 94, 60, 0.2);
  background: var(--linen-warm);
  cursor: zoom-in;
  box-shadow: var(--shadow-1);
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease);
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.06); }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 11, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
  z-index: 10000;
}
.lightbox-overlay.active { opacity: 1; pointer-events: auto; }
.lightbox-image {
  position: fixed;
  z-index: 10001;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 60px rgba(20, 14, 10, 0.55);
  cursor: zoom-out;
  transition: top .6s var(--ease), left .6s var(--ease), width .6s var(--ease), height .6s var(--ease);
}
.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(252, 248, 238, 0.92);
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-2);
  z-index: 10002;
}
.lb-nav.prev { left: 16px; }
.lb-nav.next { right: 16px; }
.lb-nav:hover { background: var(--paper); color: var(--folk-red); }
@media (hover: hover) and (min-width: 720px) {
  .lightbox-overlay.active.has-multi .lb-nav { display: inline-flex; }
}

/* mini-galeria pod hero podstrony (miniatury klikalne) */
.mini-gallery { display: grid; gap: var(--space-3); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .mini-gallery { grid-template-columns: repeat(4, 1fr); gap: var(--space-4); } }

/* ---------- atrakcje ---------- */
.attractions-grid { display: grid; gap: var(--space-5); grid-template-columns: 1fr; }
@media (min-width: 640px) { .attractions-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .attractions-grid { grid-template-columns: repeat(3, 1fr); } }
.attraction-card {
  display: flex;
  flex-direction: column;
  background: var(--linen-soft);
  border: 1px solid rgba(139, 94, 60, 0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.attraction-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.attraction-img {
  aspect-ratio: 4 / 3;
  background: var(--linen-warm) center / cover no-repeat;
  border-bottom: 1px solid rgba(139, 94, 60, 0.18);
}
.attraction-content { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); }
.attraction-title { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; color: var(--ink); }
.attraction-desc { color: var(--ink-soft); font-size: 0.98rem; }

/* karty atrakcji: numer, kategoria, chipy, rozwijane szczegóły */
.attraction-card .attraction-img { position: relative; }
.attr-num {
  position: absolute; top: 10px; left: 10px;
  min-width: 30px; height: 30px; padding: 0 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--folk-red); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  border-radius: var(--radius-pill); box-shadow: var(--shadow-1);
}
.attr-cat {
  font-size: var(--fs-eyebrow); letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase; color: var(--folk-red); font-weight: 600;
}
.attr-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.attr-chip {
  font-size: 0.8rem; color: var(--ink-soft);
  background: var(--linen-warm); border: 1px solid rgba(139, 94, 60, 0.18);
  border-radius: var(--radius-pill); padding: 3px 10px;
}
.attr-details { margin-top: var(--space-2); }
.attr-details > summary {
  cursor: pointer; list-style: none;
  color: var(--folk-red); font-weight: 600; font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 0;
}
.attr-details > summary::-webkit-details-marker { display: none; }
.attr-details > summary::after { content: "+"; font-size: 1.15rem; line-height: 1; }
.attr-details[open] > summary::after { content: "\2013"; }
.attr-details-body { padding-top: var(--space-2); }
.attr-details-body h4 { color: var(--ink); margin-bottom: var(--space-2); font-size: 1.02rem; }
.attr-do { list-style: none; margin: 0 0 var(--space-3); padding: 0; }
.attr-do li { position: relative; padding: 4px 0 4px 16px; color: var(--ink-soft); font-size: 0.95rem; }
.attr-do li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 5px; height: 5px; background: var(--folk-red); border-radius: 50%;
}
.attr-do strong { color: var(--ink); }
.attr-tip {
  padding: var(--space-3) var(--space-4);
  background: var(--linen-warm); border-left: 3px solid var(--folk-red);
  border-radius: var(--radius-md); color: var(--ink); font-size: 0.95rem;
  margin-bottom: var(--space-3);
}
.attr-addr { color: var(--ink-mute); font-size: 0.9rem; margin-bottom: var(--space-3); }
.attr-addr-label { color: var(--ink-soft); font-weight: 600; }
.attr-go { width: 100%; }

/* zdjęcia w sekcjach tekstowych (prose): tło = ciepły placeholder, gdy plik jeszcze nie wgrany */
.prose figure.prose-fig { margin: var(--space-4) 0 0; }
.prose-fig .ph { display: block; width: 100%; aspect-ratio: 16 / 9; background: var(--linen-warm) center / cover no-repeat; border-radius: var(--radius-md); box-shadow: var(--shadow-1); }
.prose-fig figcaption { margin-top: 6px; font-size: 0.85rem; color: var(--ink-mute); text-align: center; }
.prose .figrow { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); margin-top: var(--space-4); }
.prose .figrow figure.prose-fig { margin: 0; }
.prose .figrow .prose-fig .ph { aspect-ratio: 4 / 3; }
@media (min-width: 600px) { .prose .figrow.three { grid-template-columns: repeat(3, 1fr); } }

/* ---------- hero podstrony statycznej (galerie / about / atrakcje / cennik) ---------- */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  background: var(--linen-warm) center / cover no-repeat;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,31,23,0.30) 0%, rgba(42,31,23,0.55) 100%);
}
.page-hero .wrap { position: relative; z-index: 1; text-align: center; padding-block: var(--space-8); }
.page-hero .eyebrow { color: var(--honey); }
.page-hero h1 { color: var(--on-dark); }
.page-hero .lead { color: rgba(247, 239, 221, 0.9); margin-inline: auto; }

/* podpięcie zdjęć do hero podstron przez modyfikatory */
.page-hero.ph-about  { background-image: url('../assets/caly dom.jpeg'); }

/* ---------- karuzela zdjęć w kartach apartamentów (swipe na telefonie, strzałki na desktopie) ---------- */
.apt-carousel {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid rgba(139, 94, 60, 0.18);
  background: var(--linen-warm);
}
.apt-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.apt-track::-webkit-scrollbar { display: none; }
.apt-slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always; /* jeden gest = jeden kadr: bezwładność zatrzymuje się na następnym zdjęciu, płynnie */
  background: center / cover no-repeat;
}
.apt-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(252, 248, 238, 0.9);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-1);
  z-index: 3;
}
.apt-nav.prev { left: 8px; }
.apt-nav.next { right: 8px; }
.apt-nav:hover { background: var(--paper); color: var(--folk-red); }
@media (hover: hover) and (min-width: 720px) {
  .apt-carousel:hover .apt-nav,
  .hero-photo[data-carousel]:hover .apt-nav { display: inline-flex; }
}
.apt-dots {
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 3;
  pointer-events: none;
}
.apt-dots .d {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(252, 248, 238, 0.65);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  cursor: pointer;
  transition: width .2s var(--ease), background-color .2s var(--ease);
}
.apt-dots .d.active { width: 16px; border-radius: 3px; background: var(--paper); }

/* ============== Rzut piętra (modern.html, retro.html) ============== */
.floorplan {
  text-align: center;
}
.floorplan-img {
  display: block;
  max-width: 100%;
  max-height: 720px;
  height: auto;
  margin: var(--space-5) auto 0;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(40, 28, 20, 0.18);
  background: var(--linen-warm);
}

/* ============== Cennik: panel rabatów ============== */
.price-discounts {
  max-width: 56ch;
  margin: var(--space-7) auto 0;
  padding: var(--space-5);
  background: var(--linen-warm);
  border-radius: var(--radius-lg);
  text-align: center;
}
.price-discounts h3 {
  margin: 0 0 var(--space-3);
}
.price-discounts ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  color: var(--ink);
}
.price-discounts li strong {
  color: var(--folk-red);
}
