/* ==================================================================
   MULTI-PAGE PHP: komponenty podstron (Faza D)
   ================================================================== */

/* <picture> nie wplywa na layout, img zachowuje sie jak bezposrednie dziecko */
picture { display: contents; }

/* Aktywna pozycja nawigacji */
nav a.is-active,
.site-header.scrolled nav a.is-active { color: var(--gold); }

/* ---------- Hero podstrony (krotszy niz landing, wlasna grafika) ---------- */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 56px;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: slowZoom 20s ease-out forwards; }
.page-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  /* czysty czarny scrim po calosci (bez zieleni), naglowek i nawigacja czytelne */
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.6) 100%);
  /* Dekoracyjny scrim NIE moze lapac klikniec (blokowal przycisk "Zmien zdjecie" w trybie
     edycji: przycisk bylo widac przez polprzezroczystosc, ale klik szedl w scrim). */
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; color: var(--cream); text-align: center; }
.page-hero-content .eyebrow { color: var(--gold-soft); display: block; margin-bottom: 16px; text-shadow: 0 1px 6px rgba(0,0,0,0.4); }
.page-hero-content h1 { color: var(--cream); margin-bottom: 16px; text-shadow: 0 2px 16px rgba(0,0,0,0.45); }
.page-hero-subtitle { color: rgba(250,247,240,0.92); font-size: 1.15rem; max-width: 640px; margin: 0 auto; text-shadow: 0 1px 10px rgba(0,0,0,0.4); }

/* ---------- Bloki generyczne ---------- */
.container-narrow { max-width: 760px; }
.section-block { background: var(--cream); }

/* ---------- Pokoje: lista z opisami (pokoje.php) ---------- */
.rooms-page { background: var(--cream); }
.rooms-list { display: flex; flex-direction: column; gap: 40px; }
.room-item {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.room-item-img { position: relative; overflow: hidden; min-height: 280px; }
.room-item-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--transition); }
.room-item:hover .room-item-img img { transform: scale(1.06); }
.room-item-img::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(201, 169, 97, 0.75); pointer-events: none; z-index: 2; }
.room-item-body { padding: 36px 40px 36px 0; }
.room-item-body h3 { margin-bottom: 14px; }
.room-item .room-meta { color: var(--graphite-soft); opacity: 1; margin-bottom: 18px; flex-wrap: wrap; }
.room-item .room-meta span { background: var(--cream-warm); padding: 4px 12px; border-radius: 2px; font-size: 0.8rem; }
.room-desc { color: var(--graphite-soft); margin-bottom: 20px; }
.room-offers { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.room-offer-tag { font-size: 0.7rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--forest); border: 1px solid var(--line); padding: 4px 10px; border-radius: 2px; }
.room-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.room-item .room-price { margin: 0; color: var(--forest); }

/* Galeria zdjec pokoju w kaflu: reuzyty komponent photo-carousel (fade + zlote kropki POD spodem + autoplay 5s
   przez fadeCarousels()), klik w zdjecie = powiekszenie we wspolnym .dish-lightbox (patrz roomLightbox w main.js). */
.room-item--gallery { align-items: center; }
/* Wciecie zdjecia w karcie: lustro paddingu body (gora/dol 36, lewo 40), zeby nie przylegalo do krawedzi. */
.room-item-media { min-width: 0; padding: 36px 0 36px 40px; }
.room-item-media .photo-carousel { margin: 0; max-width: none; }
.room-item-media .restaurant-img { cursor: zoom-in; }
.room-item-media .fade-dots { margin-top: 16px; margin-bottom: 4px; }

/* Pulsujaca sluchawka klik-to-call nakladana na zdjecia (pokoje single + galeria, restauracja).
   Duzy cel dotykowy, zloty pierscien pulsu. */
.img-call {
  position: absolute; z-index: 4; right: 28px; bottom: 28px;
  width: 66px; height: 66px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: #fff; text-decoration: none;
  box-shadow: 0 6px 18px rgba(14, 51, 41, 0.30);
  animation: imgCallPulse 2.2s ease-out infinite;
  transition: transform 0.25s var(--transition), background 0.25s var(--transition);
}
/* Ikona w forest-deep na zlocie (6.2:1); bialy stroke mial 2.2:1 (WCAG FAIL dla grafiki) */
.img-call svg { width: 31px; height: 31px; fill: none; stroke: var(--forest-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.img-call:hover, .img-call:focus-visible { transform: scale(1.08); background: var(--forest); }
.img-call:hover svg, .img-call:focus-visible svg { stroke: var(--cream); }
.img-call:focus-visible { outline: 2px solid var(--cream); outline-offset: 2px; }
@keyframes imgCallPulse {
  0%   { box-shadow: 0 6px 18px rgba(14,51,41,0.30), 0 0 0 0 rgba(201,169,97,0.55); }
  70%  { box-shadow: 0 6px 18px rgba(14,51,41,0.30), 0 0 0 15px rgba(201,169,97,0); }
  100% { box-shadow: 0 6px 18px rgba(14,51,41,0.30), 0 0 0 0 rgba(201,169,97,0); }
}
@media (prefers-reduced-motion: reduce) { .img-call { animation: none; } }
@media (max-width: 620px) { .img-call { width: 52px; height: 52px; right: 18px; bottom: 18px; } .img-call svg { width: 24px; height: 24px; } }

/* ---------- Sale (wesela.php / konferencje.php) ---------- */
.halls-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.hall-card { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); padding: 36px; }
.hall-card h3 { margin-bottom: 16px; }
.hall-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; font-size: 0.9rem; color: var(--forest); font-weight: 500; }
.hall-card p { color: var(--graphite-soft); }

/* ---------- Karty kontaktu (kontakt.php) ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-card { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); padding: 28px; text-align: center; display: flex; flex-direction: column; gap: 6px; }
.contact-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-text); }
.contact-value { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--forest-deep); text-decoration: none; font-weight: 600; }
a.contact-value:hover { color: var(--gold); }
.contact-sub { font-size: 0.85rem; color: var(--graphite-soft); text-decoration: none; }
a.contact-sub:hover { color: var(--forest); }

/* ---------- Formularz zapytania ---------- */
.form-section { background: var(--cream-warm); }
.inquiry-form-wrap { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-card); padding: 48px; }
.inquiry-form-wrap h2 { margin-bottom: 28px; text-align: center; }
.inquiry-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.inquiry-form label { display: flex; flex-direction: column; gap: 8px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--graphite-soft); }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  font-family: 'Inter', sans-serif; font-size: 1rem; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 2px; background: var(--cream);
  color: var(--graphite); text-transform: none; font-weight: 400; letter-spacing: 0;
}
.inquiry-form textarea { resize: vertical; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,97,0.15);
}
.form-consent { flex-direction: row; align-items: flex-start; gap: 10px; text-transform: none; font-weight: 400; letter-spacing: 0; font-size: 0.85rem; color: var(--graphite-soft); }
.form-consent input { width: auto; margin-top: 3px; }
.inquiry-form .btn { align-self: flex-start; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form-banner { padding: 14px 18px; border-radius: 2px; margin-bottom: 24px; font-size: 0.95rem; }
.form-banner:focus { outline: 2px solid var(--forest); outline-offset: 2px; }
/* Solidne tla zamiast rgba ~0.1 (kontrast byl ~1.2:1, tekst niewidoczny dla slabowidzacych) */
.form-banner-ok { background: #E7F0ED; color: var(--forest-deep); border: 1px solid var(--forest); }
.form-banner-err { background: #FAECE8; color: #7C2D1C; border: 1px solid #c0563b; }

@media (max-width: 980px) {
  .page-hero { min-height: 46vh; padding-top: 110px; padding-bottom: 44px; }
  .page-hero-subtitle { font-size: 1rem; }
  .room-item { grid-template-columns: 1fr; }
  /* Mobile: obrazek w normalnym przeplywie (nie absolute), zeby sam wyznaczal wysokosc diva.
     Bez tego div z samym aspect-ratio i obrazkiem absolute + loading=lazy zapada sie do 0 wysokosci
     (obrazek nigdy nie wchodzi w widok, wiec sie nie laduje). Patrz Frontend Masters "break aspect-ratio". */
  .room-item-img { min-height: 0; aspect-ratio: auto; }
  .room-item-img img { position: static; width: 100%; height: auto; }
  .room-item--gallery { align-items: stretch; }
  .room-item-media { padding: 24px 24px 8px; }
  .room-item-body { padding: 28px 24px; }
  .halls-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .inquiry-form-wrap { padding: 30px 22px; }
}
@media (max-width: 560px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* ==================================================================
   ROZBUDOWANE PODSTRONY: tresc + zdjecia
   ================================================================== */
.section-alt { background: var(--cream-warm); }

/* Wesela: intro 2-kolumnowe (obraz + tekst) */
.wesele-intro { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; margin-bottom: 64px; }
.wesele-intro-media .photo-carousel { margin: 0; max-width: none; }
.wesele-intro-text .eyebrow { display: block; margin-bottom: 14px; }
.wesele-intro-text h2 { margin-bottom: 22px; }
.wesele-intro-text p { color: var(--graphite-soft); }
/* 2 CTA w sekcji intro: primary (formularz) + secondary outline (telefon) */
.intro-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
#zapytanie { scroll-margin-top: 100px; }
@media (max-width: 480px) {
  .intro-cta { flex-direction: column; }
  .intro-cta .btn { width: 100%; text-align: center; justify-content: center; }
}

/* Wesela: dlaczego warto */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: var(--cream); padding: 40px 30px; position: relative; border-top: 2px solid var(--gold); box-shadow: var(--shadow-soft); transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition); }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.why-card .why-icon { position: absolute; top: 34px; right: 30px; width: auto; height: auto; margin: 0; color: var(--gold); line-height: 0; }
.why-card .why-icon svg { width: 30px; height: 30px; }
.why-card h3 { font-size: 1.3rem; margin-bottom: 10px; padding-right: 42px; color: var(--forest-deep); }
.why-card p { color: var(--graphite-soft); font-size: 0.95rem; }

/* Wesela: sale obok siebie (kafel scrim z duzymi statystykami + hover) */
.halls-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.hall-block { display: flex; flex-direction: column; }
.hall-scrim { position: relative; overflow: hidden; min-height: 580px; cursor: pointer; }
.hall-scrim img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 1.4s var(--transition); }
.hall-block:hover .hall-scrim img { transform: scale(1.07); }
.hall-scrim::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 46%, rgba(0,0,0,0.12) 78%, rgba(0,0,0,0.04) 100%); z-index: 1; }
.hall-frame { position: absolute; inset: 18px; border: 1px solid rgba(201, 169, 97, 0.7); z-index: 2; pointer-events: none; }
.hall-scrim-body { position: absolute; inset: auto 0 0 0; z-index: 3; display: flex; flex-direction: column; padding: 40px; color: var(--cream); }
.hall-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 12px; }
.hall-scrim-body h3 { color: var(--cream); font-size: 2.3rem; margin-bottom: 24px; }
.hall-stats { display: flex; gap: 22px; margin-bottom: 30px; }
.hall-stat { display: flex; flex-direction: column; gap: 5px; }
.hall-stat + .hall-stat { padding-left: 22px; border-left: 1px solid rgba(201, 169, 97, 0.35); }
.hall-stat-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 2rem; line-height: 1; color: var(--cream); }
.hall-stat-label { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(250, 247, 240, 0.7); }
.hall-scrim-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hall-scrim-actions .btn { padding: 12px 22px; font-size: 0.7rem; }
.btn-outline-light { background: transparent; border: 1px solid rgba(250, 247, 240, 0.55); color: var(--cream); }
.btn-outline-light:hover { background: var(--cream); border-color: var(--cream); color: var(--forest-deep); }
.plener-gallery .photo-carousel { margin: 0; max-width: none; }

/* Wesela: modal ze szczegolami sali */
.hall-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.hall-modal.open { display: flex; opacity: 1; }
.hall-modal-backdrop { position: absolute; inset: 0; background: rgba(10, 10, 10, 0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); cursor: pointer; }
.hall-modal-content { position: relative; width: calc(100% - 48px); max-width: 640px; max-height: calc(100vh - 48px); overflow: auto; background: var(--cream); padding: 48px 44px 40px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); transform: scale(0.97); transition: transform 0.3s var(--transition); }
.hall-modal.open .hall-modal-content { transform: scale(1); }
.hall-modal-content .eyebrow { display: block; margin-bottom: 8px; }
.hall-modal-content h3 { font-size: 1.9rem; margin-bottom: 22px; color: var(--forest-deep); }
/* X nad galeria zdjec (z-index) i na bialym tle, zeby byl widoczny na kazdej fotce */
.hall-modal-close { position: absolute; top: 14px; right: 14px; z-index: 10; width: 40px; height: 40px; background: #fff; border: 1px solid var(--line); border-radius: 50%; color: var(--graphite); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18); transition: all 0.2s ease; }
.hall-modal-close:hover { background: var(--forest); color: var(--cream); border-color: var(--forest-deep); }
.hall-modal-close svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; }
.hall-modal-specs { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.hall-modal-specs li { display: flex; flex-direction: column; gap: 3px; }
.hall-modal-specs span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--graphite-soft); }
.hall-modal-specs strong { font-size: 1.05rem; font-weight: 600; color: var(--forest-deep); }
.hall-modal-text p { color: var(--graphite-soft); margin-bottom: 14px; line-height: 1.75; }
.hall-modal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
@media (max-width: 520px) {
  .hall-modal-content { padding: 42px 22px 28px; }
  .hall-modal-content h3 { font-size: 1.55rem; }
  .hall-modal-specs { grid-template-columns: 1fr 1fr; gap: 14px 16px; }
  .hall-modal-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* Wesela: slub w plenerze */
.plener-section { background: var(--cream); }
.plener-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.plener-content h3 { font-size: 1.5rem; margin-bottom: 20px; color: var(--forest-deep); }
.plener-content p { color: var(--graphite-soft); margin-bottom: 16px; }

/* Formularz: glowny przycisk (lewo) + subtelny link do telefonu (prawo) */
.form-actions { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 16px 24px; flex-wrap: wrap; }
.form-call-note { margin: 0; font-size: 0.92rem; color: var(--graphite-soft); }
.form-call-note a { display: inline-flex; align-items: center; gap: 7px; color: var(--forest); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
.form-call-note a:hover { color: var(--gold); }
.form-call-note svg { width: 15px; height: 15px; }
@media (max-width: 560px) {
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn-primary { width: 100%; text-align: center; justify-content: center; }
  .form-call-note { text-align: center; }
}

@media (max-width: 980px) {
  .wesele-intro { grid-template-columns: 1fr; gap: 32px; }
  .halls-2col { grid-template-columns: 1fr; gap: 40px; }
  .hall-scrim { min-height: 500px; }
  .plener-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 520px) {
  .hall-scrim { min-height: 440px; }
  /* Ramka jest teraz widoczna od razu: wezszy inset + wiekszy padding tresci,
     zeby eyebrow/przyciski mialy wyrazny oddech od zlotej linii (bylo 6px). */
  .hall-frame { inset: 12px; }
  .hall-scrim-body { padding: 32px 30px; }
  .hall-scrim-body h3 { font-size: 1.9rem; }
  .hall-stats { gap: 14px; margin-bottom: 24px; }
  .hall-stat + .hall-stat { padding-left: 14px; }
  .hall-stat-num { font-size: 1.6rem; }
}

/* Listy z checkmarkami (uzywane m.in. na dla-firm) */
.check-list { list-style: none; }
.check-list li { position: relative; padding: 9px 0 9px 28px; border-bottom: 1px solid var(--line); color: var(--graphite-soft); }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: ''; position: absolute; left: 5px; top: 14px; width: 7px; height: 12px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); }

/* Konferencje: sale 4-kolumnowe z obrazem */
.halls-grid-4 { grid-template-columns: repeat(4, 1fr); }
.hall-card-media { padding: 0; overflow: hidden; }
.hall-card-media-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
/* Zdjecie sali klikalne jak przycisk "Sprawdz szczegoly" (data-open-hall na divie) */
.hall-card-media-img[data-open-hall] { cursor: pointer; }
.hall-card-media-img[data-open-hall]:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; }
.hall-card-media-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--transition); }
.hall-card-media:hover .hall-card-media-img img { transform: scale(1.06); }
.hall-card-media-img::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(201, 169, 97, 0.75); pointer-events: none; }
.hall-card-media-body { padding: 20px 24px; }
.hall-card-media-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.venue-detail-btn { margin-top: 16px; padding: 10px 20px; font-size: 0.7rem; }
.hall-modal-gallery { margin-bottom: 26px; }
.hall-modal-gallery .photo-carousel { margin: 0; max-width: none; }

/* Dla firm: kotwice (offset pod sticky header) */
#konferencje, #eventy, #targi, #filmy { scroll-margin-top: 110px; }
.stat-label { font-size: 0.9rem; color: var(--graphite-soft); line-height: 1.4; }

/* Dla firm: "Co zapewniamy": 2 kolumny (naglowek | minimalistyczne ikony) */
.amenity-section { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.amenity-section-centered { align-items: center; }
/* Atrakcje: kafelki USP 2x2 w prawej kolumnie (lewa = naglowek + opis) */
.atrakcje-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.atrakcje-cards .usp-card { padding: 30px 28px; }
.atrakcje-cards .usp-icon { top: 26px; right: 26px; }
.atrakcje-cards .usp-card h3 { font-size: 1.25rem; padding-right: 42px; }
@media (max-width: 600px) { .atrakcje-cards { grid-template-columns: 1fr; } }
.amenity-intro .eyebrow { display: block; margin-bottom: 12px; }
.amenity-intro h2 { margin-bottom: 16px; }
.amenity-intro p { color: var(--graphite-soft); }
.amenity-cols { display: flex; flex-direction: column; gap: 34px; }
.amenity-group-title { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 18px; }
.amenity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; }
.amenity-tile { display: flex; align-items: center; gap: 14px; }
.amenity-icon { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; }
.amenity-icon svg { width: 100%; height: 100%; }
.amenity-label { font-size: 0.95rem; color: var(--graphite-soft); }
@media (max-width: 900px) { .amenity-section { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 440px) { .amenity-grid { grid-template-columns: 1fr; } }

/* Dla firm: sekcja eventow 2-kol (naglowek + coverflow kart foto) */
.firm-feature { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
.firm-feature-intro .eyebrow { display: block; margin-bottom: 12px; }
.firm-feature-intro h2 { margin-bottom: 16px; }
.firm-feature-intro p { color: var(--graphite-soft); }
.firm-feature-carousel { min-width: 0; }
/* Coverflow zapetlony: srodkowa karta scale 1, boczne mniejsze i przyciemnione, karty pozycjonowane kolowo */
.coverflow { position: relative; overflow: hidden; }
.coverflow-track { position: absolute; inset: 0; }
.event-photo-card { position: absolute; top: 50%; left: 50%; width: 42%; aspect-ratio: 3 / 4; overflow: hidden; cursor: pointer; transform-origin: center; transition: transform 0.6s var(--transition), opacity 0.6s var(--transition); will-change: transform, opacity; }
.event-photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--transition); }
.event-photo-card.is-active:hover img { transform: scale(1.05); }
.event-photo-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.42) 46%, rgba(0,0,0,0.06) 78%); }
.event-photo-frame { position: absolute; inset: 13px; z-index: 2; border: 1px solid rgba(201, 169, 97, 0.75); pointer-events: none; }
.event-photo-scrim { position: absolute; inset: auto 0 0 0; z-index: 3; padding: 22px 20px; color: var(--cream); }
.event-photo-scrim h3 { color: var(--cream); font-size: 1.25rem; margin-bottom: 8px; }
.event-photo-scrim p { color: rgba(250, 247, 240, 0.85); font-size: 0.8rem; line-height: 1.45; }
.cf-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 48px; height: 48px; flex-shrink: 0; border: none; background: rgba(255, 255, 255, 0.94); border-radius: 50%; color: var(--forest-deep); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,0.18); transition: background 0.2s ease, color 0.2s ease; }
.cf-arrow svg { width: 20px; height: 20px; }
.cf-arrow:hover { background: var(--forest); color: var(--cream); }
.cf-prev { left: 8px; }
.cf-next { right: 8px; }
.event-dots { display: flex; gap: 8px; justify-content: center; margin-top: 22px; }
/* Cel dotykowy 24x24 (WCAG target-size) jak .tdots/.fade-dots */
.event-dot { width: 8px; height: 8px; padding: 0; border: 8px solid transparent; box-sizing: content-box; background-clip: padding-box; border-radius: 50%; background-color: #6E8B84; cursor: pointer; transition: all 0.3s var(--transition); }
.event-dot.is-active { background-color: var(--gold-text); width: 22px; border-radius: 12px; }
@media (max-width: 900px) {
  .firm-feature { grid-template-columns: 1fr; gap: 28px; }
  .event-photo-card { width: 58%; }
}
@media (max-width: 560px) { .event-photo-card { width: 70%; } .cf-arrow { width: 40px; height: 40px; } }

/* Dla firm: targi (2-kol karuzela+tekst + jasny pas wielkich liczb) */
.targi-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.targi-feature-carousel .photo-carousel { margin: 0; max-width: none; }
.targi-feature-text .eyebrow { display: block; margin-bottom: 12px; }
.targi-feature-text h2 { margin-bottom: 16px; }
.targi-feature-text > p { color: var(--graphite-soft); margin-bottom: 22px; }
.targi-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 52px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.targi-stat { padding: 40px 28px; text-align: center; }
.targi-stat + .targi-stat { border-left: 1px solid var(--line); }
.targi-stats .stat-num { color: var(--forest); font-size: 3rem; }
.targi-stat-label { display: block; margin-top: 8px; font-size: 0.85rem; color: var(--graphite-soft); }
@media (max-width: 900px) {
  .targi-feature { grid-template-columns: 1fr; gap: 28px; }
  .targi-stats { grid-template-columns: 1fr; }
  .targi-stat { padding: 28px 24px; }
  .targi-stat + .targi-stat { border-left: none; border-top: 1px solid var(--line); }
}

/* Wspolpraca: prawa kolumna sekcji 2-col (formy wspolpracy + kontakt) */
.wspolpraca-side .eyebrow { display: block; margin-bottom: 12px; }
.wspolpraca-side h3 { font-size: 1.7rem; margin-bottom: 22px; }
.wspolpraca-side .check-list { margin: 0; }
.wspolpraca-contact { grid-template-columns: 1fr; margin-top: 30px; }

/* Uroczystosci: naprzemienne bloki karuzela + tekst */
#rodzinne, #komunie, #studniowki { scroll-margin-top: 110px; }
.uro-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.uro-carousel .photo-carousel { margin: 0; max-width: none; }
.uro-row-rev .uro-carousel { order: 2; }
.uro-text .eyebrow { display: block; margin-bottom: 12px; }
.uro-text h2 { margin-bottom: 18px; }
.uro-text > p { color: var(--graphite-soft); margin-bottom: 24px; }
.uro-points { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.uro-points li { padding-left: 20px; border-left: 2px solid var(--gold); }
.uro-points strong { display: block; color: var(--forest-deep); font-size: 1.1rem; margin-bottom: 4px; }
.uro-points span { color: var(--graphite-soft); font-size: 0.95rem; line-height: 1.65; }
@media (max-width: 980px) {
  .uro-row { grid-template-columns: 1fr; gap: 32px; }
  .uro-row-rev .uro-carousel { order: 0; }
}

/* Dojazd: 2 kolumny (tekst + mala mapa) na jasnym tle */
.dojazd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.dojazd-text .eyebrow { display: block; margin-bottom: 12px; }
.dojazd-text h2 { margin-bottom: 16px; }
.dojazd-text > p { color: var(--graphite-soft); margin-bottom: 28px; }
.dojazd-text .distance-time { color: var(--gold); }
@media (max-width: 980px) { .dojazd-grid { grid-template-columns: 1fr; gap: 28px; } }

/* Pasek CTA pelnowymiarowy (cta-band.php) */
.cta-band { background: var(--forest); color: var(--cream); padding: 56px 0; border-top: 2px solid var(--gold); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-band-text { flex: 1 1 360px; }
.cta-band-text .eyebrow { display: block; color: var(--gold-soft); margin-bottom: 10px; }
.cta-band-text h2 { color: var(--cream); margin-bottom: 8px; }
.cta-band-text p { color: rgba(250, 247, 240, 0.8); margin: 0; }
.cta-band-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; flex-shrink: 0; }
.cta-band-call { display: inline-flex; align-items: center; gap: 10px; }
.cta-band-call svg { width: 18px; height: 18px; }
.cta-band-email { color: var(--gold-soft); font-size: 0.95rem; border-bottom: 1px solid rgba(201, 169, 97, 0.45); padding-bottom: 1px; }
.cta-band-email:hover { color: var(--cream); border-color: var(--cream); }
@media (max-width: 768px) {
  .cta-band { padding: 30px 0; }
  .cta-band-inner { flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 20px; }
  .cta-band-text { flex: 0 0 auto; }
  .cta-band-text h2 { font-size: 1.65rem; }
  .cta-band-text p { font-size: 0.95rem; }
  .cta-band-actions { width: 100%; align-items: stretch; gap: 12px; }
  .cta-band-call { width: 100%; justify-content: center; padding: 15px 22px; }
  .cta-band-email { align-self: center; }
}

/* Restauracja: kolumna boczna (zdjecie + godziny) */
.restaurant-side { display: flex; flex-direction: column; gap: 20px; }
.restaurant-side .restaurant-img { overflow: hidden; border-radius: 2px; }
.restaurant-side .restaurant-img img { width: 100%; height: 100%; object-fit: cover; }
.hours-card { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); padding: 28px 32px; }
.hours-card h3 { font-size: 1.4rem; margin-bottom: 14px; }
.hours-table { list-style: none; }
.hours-table li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); }
.hours-table li:last-child { border-bottom: none; }
.hours-table strong { color: var(--forest); }
.hours-phone { margin-top: 14px; font-size: 0.95rem; }
.hours-phone a { color: var(--forest); font-weight: 600; }

/* Wyposazenie pokoju + udogodnienia hotelu */
.amenities-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 20px; }
.amenities-list li { position: relative; padding-left: 18px; font-size: 0.85rem; color: var(--graphite-soft); }
.amenities-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
/* Okolica / uroczystosci */
.okolica-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.okolica-card { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); padding: 26px; }
.okolica-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.okolica-card p { color: var(--graphite-soft); font-size: 0.95rem; }

@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .halls-grid-4 { grid-template-columns: 1fr 1fr; }
  .okolica-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .why-grid, .halls-grid-4, .okolica-grid { grid-template-columns: 1fr; }
}

/* ===== Zlota ramka inset (jak .about-img) na duzych zdjeciach sekcyjnych ===== */
.restaurant-img { position: relative; }
.restaurant-img::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 560px) {
  .restaurant-img::after { inset: 10px; }
}

/* ===== Bujanie ikon USP jak dzwoneczki, na wejscie sekcji w widok ===== */
.usp-icon { transform-origin: 50% 0%; }
.usp-card.visible .usp-icon { animation: bellSway 4s var(--transition) both; }
.usp-grid .usp-card:nth-child(2).visible .usp-icon { animation-delay: 0.12s; }
.usp-grid .usp-card:nth-child(3).visible .usp-icon { animation-delay: 0.24s; }
.usp-grid .usp-card:nth-child(4).visible .usp-icon { animation-delay: 0.36s; }
.usp-grid .usp-card:nth-child(5).visible .usp-icon { animation-delay: 0.48s; }
.usp-grid .usp-card:nth-child(6).visible .usp-icon { animation-delay: 0.60s; }
@keyframes bellSway {
  0%   { transform: rotate(0deg); }
  14%  { transform: rotate(9deg); }
  32%  { transform: rotate(-7deg); }
  50%  { transform: rotate(5deg); }
  68%  { transform: rotate(-3deg); }
  84%  { transform: rotate(1.5deg); }
  100% { transform: rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .usp-card.visible .usp-icon { animation: none; }
}

/* ===== Karuzela pokoi (landing) ===== */
.rooms-carousel { position: relative; display: flex; align-items: center; gap: 14px; }
.rooms-viewport { overflow: hidden; flex: 1; }
.rooms-track { display: flex; gap: 32px; transition: transform 0.6s var(--transition); will-change: transform; }
.rooms-track .room-card { flex: 0 0 calc((100% - 64px) / 3); text-decoration: none; }
.carousel-arrow {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--forest-deep);
  font-family: 'Inter', sans-serif; font-size: 1.7rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; padding-bottom: 3px;
  transition: all 0.3s var(--transition); box-shadow: var(--shadow-soft);
}
.carousel-arrow:hover { background: var(--forest); color: var(--cream); border-color: var(--forest-deep); transform: scale(1.07); }
.carousel-dots { display: flex; justify-content: center; gap: 9px; margin-top: 30px; }
.carousel-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; padding: 0; transition: all 0.3s var(--transition); }
.carousel-dots button.active { background: var(--gold); width: 24px; border-radius: 5px; }
@media (max-width: 980px) {
  .rooms-track .room-card { flex: 0 0 calc((100% - 32px) / 2); }
}
@media (max-width: 620px) {
  .rooms-track .room-card { flex: 0 0 100%; }
  .rooms-track { gap: 0; }
  .carousel-arrow { width: 42px; height: 42px; font-size: 1.4rem; }
  .rooms-carousel { gap: 8px; }
  /* Mobile: miniatura pokoju w kaflu karuzeli w normalnym przeplywie (jak na /pokoje),
     zeby aspect-ratio + overflow:hidden nie scinalo obrazka do zera wysokosci. */
  .room-img { aspect-ratio: auto; }
  .room-img img { height: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .rooms-track { transition: none; }
}

/* ===== Zlota ramka: karty pokoi (karuzela, subtelna) + zdjecia kart wydarzen ===== */
.event-card-img { position: relative; }
.event-card-img::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid var(--gold); pointer-events: none; z-index: 2;
}
.rooms-carousel .room-card::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(201, 169, 97, 0.7); /* zloto 70%, subtelniej nad ciemnym overlayem */
  pointer-events: none; z-index: 3;
}
@media (max-width: 560px) {
  .event-card-img::after, .rooms-carousel .room-card::after, .atrakcja-img::after, .room-item-img::after { inset: 10px; }
}

/* ===== Karuzela fade (zdjecia restauracji), z kropkami ===== */
.fade-carousel { position: relative; width: 100%; aspect-ratio: 5 / 4; overflow: hidden; }
.fade-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s var(--transition); }
.fade-slide.is-active { opacity: 1; }
.fade-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fade-dots { display: flex; justify-content: center; gap: 3px; margin-top: 16px; }
/* Jak .tdots: wizualnie 9px, cel dotykowy 25x25 (WCAG target-size), nieaktywna 3.7:1 */
.fade-dots button { width: 9px; height: 9px; border-radius: 50%; border: 8px solid transparent; box-sizing: content-box; background-clip: padding-box; background-color: #6E8B84; cursor: pointer; padding: 0; transition: all 0.3s var(--transition); }
.fade-dots button:hover { background: var(--gold-soft); }
.fade-dots button.active { background: var(--gold); width: 24px; border-radius: 5px; }
@media (prefers-reduced-motion: reduce) { .fade-slide { transition: none; } }

/* ---------- Kariera (kariera.php) ---------- */
.kariera-intro { text-align: center; }
.kariera-lead { color: var(--graphite-soft); font-size: 1.1rem; margin-top: 16px; }
/* Oferty: rowne kafle. Grid domyslnie rozciaga karty do najwyzszej w wierszu,
   karta to kolumna flex, a margin-top:auto na CTA przypina przyciski do dolu,
   wiec linia przyciskow trzyma sie rowno takze przy rozwinietym sasiedzie. */
.kariera-jobs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
.kariera-job { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); padding: 30px 32px; display: flex; flex-direction: column; }
.kariera-job h3 { margin: 0 0 10px; }
.kariera-job-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.kariera-tag { font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--forest); border: 1px solid var(--line); background: var(--cream-warm); padding: 5px 12px; border-radius: 2px; }
.kariera-job-excerpt { color: var(--graphite-soft); margin: 0 0 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
/* Zloty przycisk przypiety do dolu kafla (margin-top:auto), rowna linia w calym wierszu. */
.kariera-job-more-btn { align-self: flex-start; margin-top: auto; cursor: pointer; }
.kariera-modal .hall-modal-content { max-width: 680px; }
.kariera-modal .kariera-job-tags { margin: 4px 0 6px; }
.kariera-modal .kariera-apply { margin-top: 22px; }
.kariera-job-desc { padding-top: 14px; }
.kariera-job-desc p { color: var(--graphite-soft); margin-bottom: 12px; }
.kariera-job-desc h4 { margin: 18px 0 8px; font-size: 1.02rem; }
.kariera-job-desc ul, .kariera-job-desc ol { margin: 0 0 14px; padding-left: 22px; color: var(--graphite-soft); }
.kariera-job-desc li { margin-bottom: 6px; }
.kariera-apply { display: flex; flex-direction: row; flex-wrap: wrap; gap: 12px; margin-top: auto; padding-top: 20px; }
.kariera-apply .btn { justify-content: center; }
.kariera-empty { max-width: 640px; margin: 0 auto; text-align: center; color: var(--graphite-soft); }
.kariera-empty p { margin-bottom: 24px; font-size: 1.05rem; }
.kariera-empty .kariera-apply { justify-content: center; margin-top: 0; }
@media (max-width: 860px) {
  .kariera-jobs { grid-template-columns: 1fr; }
  .kariera-job { padding: 24px 22px; }
}

/* ---------- Brunch (brunch.php) ---------- */
.brunch-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; max-width: 980px; margin: 0 auto; }
.brunch-menu { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 32px; }
.brunch-menu li { position: relative; padding: 10px 0 10px 22px; border-bottom: 1px solid var(--line); break-inside: avoid; color: var(--graphite); }
.brunch-menu li::before { content: ''; position: absolute; left: 0; top: 18px; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }
.brunch-highlights { display: flex; flex-direction: column; gap: 14px; }
.brunch-highlight { background: var(--forest); color: var(--cream); padding: 18px 22px; border-radius: 3px; display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.brunch-highlight strong { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--cream); }
.brunch-highlight-note { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-soft); white-space: nowrap; }
.brunch-media-row { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.brunch-media img { width: 100%; border-radius: 3px; box-shadow: var(--shadow-card); }
.brunch-media-text h2 { margin: 10px 0 16px; }
.brunch-media-text p { color: var(--graphite-soft); }
.brunch-price-band { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 820px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 4px; box-shadow: var(--shadow-card); overflow: hidden; }
.bpb-tier { padding: 44px 24px; text-align: center; display: flex; flex-direction: column; gap: 8px; position: relative; }
.bpb-tier + .bpb-tier::before { content: ''; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line); }
.bpb-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 400; color: var(--gold-text); line-height: 1; }
.bpb-label { font-size: 0.82rem; letter-spacing: 0.03em; color: var(--graphite-soft); }
@media (max-width: 560px) { .brunch-price-band { grid-template-columns: 1fr; } .bpb-tier + .bpb-tier::before { left: 24%; right: 24%; top: 0; bottom: auto; width: auto; height: 1px; } }
.brunch-price-note { text-align: center; margin-top: 20px; font-size: 0.92rem; color: var(--graphite-soft); }
.brunch-price-divider { display: flex; align-items: center; gap: 20px; max-width: 880px; margin: 56px auto 30px; }
.brunch-price-divider::before, .brunch-price-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.brunch-price-divider span { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-text); white-space: nowrap; }

/* ---------- FAQ (faq.php) ---------- */
.faq-cats { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.faq-chip { background: none; border: 1px solid var(--line); color: var(--graphite-soft); font-family: inherit; font-size: 0.82rem; letter-spacing: 0.04em; padding: 9px 20px; border-radius: 999px; cursor: pointer; transition: background 0.25s var(--transition), color 0.25s var(--transition), border-color 0.25s var(--transition); }
.faq-chip:hover { border-color: var(--gold); color: var(--forest-deep); }
.faq-chip.is-active { background: var(--forest); color: var(--cream); border-color: var(--forest-deep); }
.faq-list-page { max-width: 820px; }
.faq-list-page .faq-item.open .faq-a { max-height: 520px; }
.faq-contact-note { text-align: center; margin-top: 44px; color: var(--graphite-soft); font-size: 0.96rem; }
.faq-contact-note a { color: var(--forest); font-weight: 600; border-bottom: 1px solid var(--gold); text-decoration: none; }
.brunch-cta { text-align: center; }
.brunch-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.brunch-disclaimer { margin: 28px auto 0; font-size: 0.78rem; line-height: 1.6; color: var(--graphite-soft); max-width: 640px; opacity: 0.85; }
@media (max-width: 820px) {
  .brunch-cols { grid-template-columns: 1fr; gap: 32px; }
  .brunch-menu { columns: 1; }
  .brunch-media-row { grid-template-columns: 1fr; gap: 28px; }
  .brunch-price-cards { grid-template-columns: 1fr; max-width: 380px; }
}
/* Galeria brunchu: pozioma karuzela kart (scroll-snap, swipe) ze zlota ramka */
.brunch-gallery { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 32px 24px; -webkit-overflow-scrolling: touch; max-width: 1280px; margin: 0 auto; scrollbar-width: none; -ms-overflow-style: none; }
.brunch-gallery::-webkit-scrollbar { display: none; }
.brunch-gallery-card { flex: 0 0 auto; width: 330px; margin: 0; scroll-snap-align: start; position: relative; box-shadow: var(--shadow-soft); overflow: hidden; }
.brunch-gallery-card::after { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(201, 169, 97, 0.7); pointer-events: none; z-index: 1; }
.brunch-gallery-card picture { display: block; }
.brunch-gallery-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.6s var(--transition); }
.brunch-gallery-card:hover img { transform: scale(1.04); }
@media (max-width: 640px) { .brunch-gallery { padding-left: 18px; padding-right: 18px; } .brunch-gallery-card { width: 80vw; } }

/* Catering: galeria dan (scroll-snap, karty pionowe pod zdjecia 2:3) */
.dish-gallery { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 32px 24px; -webkit-overflow-scrolling: touch; max-width: 1280px; margin: 0 auto; scrollbar-width: none; -ms-overflow-style: none; }
.dish-gallery::-webkit-scrollbar { display: none; }
.dish-gallery-item { flex: 0 0 auto; width: 300px; margin: 0; scroll-snap-align: start; position: relative; box-shadow: var(--shadow-soft); overflow: hidden; }
.dish-gallery-item::after { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(201, 169, 97, 0.7); pointer-events: none; z-index: 1; }
.dish-gallery-item picture { display: block; }
.dish-gallery-item img { display: block; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform 0.6s var(--transition); }
.dish-gallery-item:hover img { transform: scale(1.04); }
@media (max-width: 640px) { .dish-gallery { padding-left: 11vw; padding-right: 11vw; scroll-padding: 0 11vw; } .dish-gallery-item { width: 78vw; scroll-snap-align: center; } }
/* Catering: zlote kropki nawigacji galerii */
.dish-dots { display: flex; gap: 9px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
/* Cel dotykowy 25x25 (WCAG target-size) jak .tdots/.fade-dots */
.dish-dot { width: 9px; height: 9px; padding: 0; border: 8px solid transparent; box-sizing: content-box; background-clip: padding-box; border-radius: 50%; background-color: #6E8B84; cursor: pointer; transition: all 0.3s var(--transition); }
.dish-dot:hover { background-color: var(--forest); }
.dish-dot.is-active { background-color: var(--gold-text); width: 24px; border-radius: 13px; }
/* Catering: lightbox z rozmytym tlem */
.dish-lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 5vw; background: rgba(14, 51, 41, 0.5); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.dish-lightbox.is-open { display: flex; animation: lbFade 0.25s var(--transition); }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.dish-lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); border: 3px solid rgba(201, 169, 97, 0.85); }
.dish-lightbox-close { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border: none; background: rgba(0, 0, 0, 0.35); color: var(--cream); border-radius: 50%; cursor: pointer; font-size: 1.7rem; line-height: 1; transition: background 0.3s var(--transition); }
.dish-lightbox-close:hover { background: rgba(0, 0, 0, 0.6); }

/* Wesela: przycisk pobrania oferty, wyrownany do szerokosci przyciskow intro */
.wesele-cta-stack { display: inline-flex; flex-direction: column; align-items: stretch; max-width: 100%; }
.btn-wide-offer { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 14px; }
.btn-wide-offer svg { width: 18px; height: 18px; flex: 0 0 auto; }
@media (max-width: 560px) { .wesele-cta-stack { display: flex; } }
/* Karty bufetu z ikonami (jak USP na home) */
.brunch-bufet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1120px; margin: 0 auto; }
.brunch-bufet-card { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); padding: 34px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition); }
.brunch-bufet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.brunch-bufet-icon { color: var(--gold); display: inline-flex; }
.brunch-bufet-icon svg { width: 42px; height: 42px; }
.brunch-bufet-card h3 { font-size: 1.18rem; margin: 0; line-height: 1.25; }
.brunch-bufet-note { font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); background: var(--cream-warm); border: 1px solid var(--line); padding: 3px 11px; border-radius: 999px; }
@media (max-width: 900px) { .brunch-bufet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .brunch-bufet-grid { grid-template-columns: 1fr; } }

/* Kafelek Wspolpraca na stronie Kontakt (Wspolpraca wyprowadzona z nav do kafelka) */
.wspolpraca-tile {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  margin-top: 28px; padding: 36px 44px;
  background: var(--cream-warm); border: 1px solid var(--line); border-radius: 3px;
}
.wspolpraca-tile-text h3 { color: var(--forest-deep); margin: 8px 0; }
.wspolpraca-tile-text p { color: var(--graphite-soft); font-size: 0.98rem; max-width: 620px; margin: 0; }
.wspolpraca-tile .btn { flex-shrink: 0; }
@media (max-width: 720px) {
  .wspolpraca-tile { flex-direction: column; align-items: flex-start; gap: 22px; padding: 28px 24px; }
  .wspolpraca-tile .btn { width: 100%; }
}

/* 404: wysrodkowane przyciski CTA */
.error-404-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ Podstrona: Hotel przyjazny zwierzetom ============ */
/* Odwrocenie 2-kolumny: zdjecie z lewej dostaje wezsza kolumne, tekst szersza. */
.restaurant--reverse .restaurant-grid { grid-template-columns: 1fr 1.2fr; }
/* Zdjecia boczne w ukladzie portretowym (wyzsze niz standardowe 3/2). */
.restaurant-side .okolica-img { aspect-ratio: 4 / 5; }

/* Karty z oplata za zwierze */
.pet-fees {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  gap: 26px;
  justify-content: center;
  margin-top: 10px;
}
.pet-fee-card {
  background: var(--cream);
  border: 1px solid rgba(14, 51, 41, 0.12);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: 0 18px 40px -28px rgba(14, 51, 41, 0.4);
}
.pet-fee-tag {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: var(--forest-deep);
}
.pet-fee-size {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--graphite-soft);
}
.pet-fee-price {
  margin-top: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--gold-text);
}
.pet-fee-price small {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--graphite-soft);
  margin-left: 6px;
}

@media (max-width: 640px) {
  .pet-fees { grid-template-columns: 1fr; }
}

/* ===== Pokoje: karty + modal (wspolny wzorzec z sale/kariera) ===== */
.rooms-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1060px; margin: 0 auto; }
.room-card { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.room-card-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.room-card-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.room-card-body h3 { margin: 0 0 10px; }
/* Meta pokoju (m2, osoby, lozka, lokalizacja): pozycja nigdy nie lamie sie w srodku,
   zawijanie tylko miedzy pozycjami, w kazdej karcie tak samo. Dwa wiersze: pierwszy
   metraz + osoby + lozka (+ dodatki), drugi zawsze lokalizacja (pinezka). */
.rooms-cards .room-meta, .room-modal .room-meta { flex-wrap: wrap; row-gap: 4px; }
.rooms-cards .room-meta span, .room-modal .room-meta span { white-space: nowrap; }
.rooms-cards .room-meta { margin-bottom: 5px; }
.room-modal .room-meta-locrow { margin-top: 0; }
.room-meta .room-meta-ico { width: 15px; height: 15px; flex: 0 0 auto; color: var(--gold-text); }
.room-card-excerpt { color: var(--graphite-soft); margin: 12px 0 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.room-card-foot { margin-top: 14px; }
.room-card-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; padding-top: 18px; }
.room-card-cta .btn { flex: 1 1 auto; justify-content: center; }
.room-modal .hall-modal-content { max-width: 780px; }
.room-modal .room-meta { margin: 6px 0 4px; }
.room-modal .room-desc { padding-top: 8px; }
.room-modal .amenities-list { margin-top: 12px; }
.room-modal .room-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.room-modal .hall-modal-gallery .room-item-media { position: relative; padding: 0; }
/* Zdjecie w modalu pokoju: kontener sciety do ~polowy (5:4 przytlaczalo modal),
   zdjecie WYPELNIA caly kadr (cover), ramka i kropki podazaja za pudlem.
   Pelny nieprzyciety kadr po kliku (zoom-lightbox). */
.room-modal .restaurant-img { aspect-ratio: auto; height: auto; }
.room-modal .fade-carousel { aspect-ratio: auto; height: 365px; }
.room-modal .hall-modal-gallery img { width: 100%; height: 365px; object-fit: cover; display: block; }
@media (max-width: 640px) {
  .room-modal .fade-carousel { height: 260px; }
  .room-modal .hall-modal-gallery img { height: 260px; }
}
@media (max-width: 860px) {
  .rooms-cards { grid-template-columns: 1fr; gap: 22px; }
  .room-card-body { padding: 22px 20px 24px; }
}
