/* ==============================================================
   PENSJONAT GRANIT — żywioł GÓRY (Skała / Ogień)
   Iteracja 1: Foundation + Hero + Reservation bar + Footer
   ============================================================== */

:root {
  /* Paleta Góry — lodge premium */
  --charcoal: #1C1C1C;       /* węgiel — navbar, tekst na cream */
  --charcoal-soft: #2B2B2B;  /* tekst body */
  --charcoal-muted: #4A4A4A; /* tekst muted */
  --gold: #C9A86A;           /* gold — CTA, akcenty, logo */
  --gold-soft: #D9BC82;      /* gold light */
  --gold-dark: #9E7F45;      /* gold ciemne — hover */
  --burnt-orange: #A0522D;   /* ogień kominka, subtelnie */
  --cream: #F4EFE7;          /* tło główne */
  --cream-alt: #E9E0CD;      /* tło alternatywne */
  --line: rgba(201, 168, 106, 0.25); /* gold line, subtle */

  /* Typografia — BRUTALIST condensed */
  --font-display: 'Oswald', sans-serif;      /* condensed bold uppercase */
  --font-body: 'Inter', sans-serif;          /* neutralny sans */
  --font-accent: 'Playfair Display', serif;  /* italic akcenty */

  /* Timings — wolniejsze, bardziej mgielne */
  --t-fast: 0.25s;
  --t-med: 0.5s;
  --t-slow: 1s;
  --ease: cubic-bezier(0.33, 0, 0.23, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(28, 28, 28, 0.08);
  --shadow-md: 0 12px 30px rgba(28, 28, 28, 0.18);
  --shadow-lg: 0 25px 60px rgba(28, 28, 28, 0.3);
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal-soft);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }

/* ==============================================================
   NAVBAR — DARK CHARCOAL PERSISTENT (nie transparent!)
   ============================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(201, 168, 106, 0.15);
  color: var(--cream);
}

.navbar__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar__logo {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.navbar__logo:hover { color: var(--gold-soft); }
.navbar__logo-icon {
  width: 32px; height: 32px;
  align-self: center;
  color: var(--gold);
}
.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--gold);
}
.navbar__logo-sub {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(244, 239, 231, 0.55);
  letter-spacing: 0.05em;
  margin-left: -0.15rem;
}

.navbar__menu {
  display: flex; gap: 2.5rem;
  list-style: none;
}
.navbar__menu a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--t-fast) var(--ease);
}
.navbar__menu a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-med) var(--ease), left var(--t-med) var(--ease);
}
.navbar__menu a:hover { color: var(--gold); }
.navbar__menu a:hover::after { width: 100%; left: 0; }
.navbar__menu a.is-active { color: var(--gold); }
.navbar__menu a.is-active::after { width: 100%; left: 0; }

/* 🔑 REZERWUJ — gold button with LETTER-FLIP animation co 5s (SYGNATURA Góry) */
.navbar__cta {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  perspective: 800px;
}
.navbar__cta:hover {
  background: var(--charcoal);
  color: var(--gold);
}
.navbar__cta-text {
  display: inline-flex;
  gap: 0;
}
.navbar__cta-text span {
  display: inline-block;
  animation: letterFlip 5s ease-in-out infinite;
  backface-visibility: hidden;
}
.navbar__cta-text span:nth-child(1) { animation-delay: 0s; }
.navbar__cta-text span:nth-child(2) { animation-delay: 0.06s; }
.navbar__cta-text span:nth-child(3) { animation-delay: 0.12s; }
.navbar__cta-text span:nth-child(4) { animation-delay: 0.18s; }
.navbar__cta-text span:nth-child(5) { animation-delay: 0.24s; }
.navbar__cta-text span:nth-child(6) { animation-delay: 0.3s; }
.navbar__cta-text span:nth-child(7) { animation-delay: 0.36s; }
.navbar__cta-text span:nth-child(8) { animation-delay: 0.42s; }

@keyframes letterFlip {
  0%, 88% { transform: rotateY(0deg); }
  94% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

/* Mobile toggle */
.navbar__mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 0.5rem;
  flex-direction: column; gap: 4px;
}
.navbar__mobile-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
}

@media (max-width: 900px) {
  .navbar__menu { display: none; }
  .navbar__mobile-toggle { display: flex; }
  .navbar__logo-sub { display: none; }
  .navbar__logo-text { font-size: 1.3rem; }
  .navbar__cta { padding: 0.55rem 1.15rem; font-size: 0.72rem; letter-spacing: 0.15em; }
  .navbar__container { padding: 0.85rem 1rem; gap: 0.75rem; }
}

/* ==============================================================
   HERO — pełnoekranowe foto + tytuł LEWO-GÓRA + BRAK widgetu
   ============================================================== */
.hero {
  position: relative;
  /* Skrócone — żeby widget rezerwacyjny był widoczny w 1. viewporcie bez scrollu */
  height: 68vh;
  min-height: 460px;
  overflow: hidden;
  color: var(--cream);
  padding-top: 70px; /* navbar */
}

.hero__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  /* Subtelny parallax / ken burns wolny */
  animation: heroZoom 30s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(28, 28, 28, 0.65) 0%, rgba(28, 28, 28, 0.35) 45%, transparent 75%),
    linear-gradient(180deg, transparent 0%, transparent 60%, rgba(28, 28, 28, 0.5) 100%);
}

/* Tytuł LEWO-GÓRA — Oswald brutalist uppercase */
.hero__content {
  position: absolute;
  z-index: 10;
  top: 40%;
  transform: translateY(-50%);
  left: 6vw;
  max-width: 680px;
  color: var(--cream);
  animation: heroTitleIn 1.3s var(--ease-out) 0.4s both;
}
@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(-50%) translateX(-20px); }
  to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-left: 3rem;
  position: relative;
}
.hero__eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 2rem; height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero__tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  max-width: 520px;
  line-height: 1.55;
  color: rgba(244, 239, 231, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Scroll indicator — pulsująca złota strzałka */
.hero__scroll {
  position: absolute;
  z-index: 10;
  bottom: 1.25rem;
  left: 6vw;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
  animation: scrollHint 2.5s ease-in-out infinite;
}
.hero__scroll svg { width: 16px; height: 16px; }
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* Mountain peaks SVG watermark — prawy-dolny, subtelny */
.hero__watermark {
  position: absolute;
  right: 0; bottom: 3rem;
  width: 320px;
  height: 140px;
  z-index: 5;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero {
    height: 55vh;
    min-height: 380px;
  }
  .hero__content { top: 40%; left: 1.5rem; right: 1.5rem; max-width: none; }
  .hero__eyebrow { font-size: 0.7rem; padding-left: 2.5rem; margin-bottom: 1rem; }
  .hero__eyebrow::before { width: 1.5rem; }
  .hero__title { font-size: 3rem; margin-bottom: 1rem; }
  .hero__tagline { font-size: 0.95rem; }
  .hero__scroll { left: 1.5rem; bottom: 1rem; font-size: 0.65rem; }
  .hero__watermark { width: 200px; height: 100px; bottom: 2.5rem; }
}

/* ==============================================================
   RESERVATION BAR — widget jako osobna sekcja PO hero (nie na nim)
   ============================================================== */
.reservation-bar {
  background: var(--charcoal);
  color: var(--cream);
  padding: 3rem 2rem;
  border-bottom: 1px solid rgba(201, 168, 106, 0.2);
}
.reservation-bar__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}
.reservation-bar__intro {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.reservation-bar__eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.reservation-bar__lead {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(244, 239, 231, 0.85);
}

.reservation-bar__form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}
.reservation-bar__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.reservation-bar__field label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.reservation-bar__field input,
.reservation-bar__field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 168, 106, 0.4);
  padding: 0.6rem 0.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease);
}
.reservation-bar__field input:focus,
.reservation-bar__field select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.reservation-bar__field select option {
  background: var(--charcoal);
  color: var(--cream);
}
.reservation-bar__field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(1) saturate(3) hue-rotate(10deg);
  cursor: pointer;
}

.reservation-bar__submit {
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
  white-space: nowrap;
}
.reservation-bar__submit:hover { background: var(--cream); }

@media (max-width: 900px) {
  .reservation-bar__container { grid-template-columns: 1fr; gap: 1.5rem; }
  .reservation-bar__form { grid-template-columns: 1fr; gap: 0.75rem; }
  .reservation-bar__submit { width: 100%; }
}

/* ==============================================================
   SECTIONS — generic
   ============================================================== */
.section {
  padding: 6rem 2rem;
}
.section--intro { padding: 7rem 2rem 5rem; background: var(--cream); }

.section__container {
  max-width: 1400px;
  margin: 0 auto;
}
.section__container--narrow {
  max-width: 760px;
  text-align: center;
}

.section__eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.section__lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--charcoal-soft);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.section__body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--charcoal-muted);
  margin-bottom: 1rem;
}
.section__body strong {
  color: var(--charcoal);
  font-weight: 500;
}

/* 🔑 SCROLL-REVEAL GÓRY — TYLKO fade, bez ruchu, bez kaskady (unikalne) */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s ease-out;
}
[data-reveal].is-revealed {
  opacity: 1;
}

/* ==============================================================
   SECTION MODIFIERS
   ============================================================== */
.section--dark {
  background: var(--charcoal);
  color: var(--cream);
}
.section--dark .section__eyebrow { color: var(--gold); }
.section--dark .section__title { color: var(--cream); }
.section--dark .section__body { color: rgba(244, 239, 231, 0.78); }
.section--dark .section__body strong { color: var(--cream); }

.section--alt {
  background: var(--cream-alt);
}

.section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}
.section__eyebrow--centered { text-align: center; margin-bottom: 2rem; }

/* ==============================================================
   LINKS & LINK-GOLD — text-only gold underline (brutalist)
   ============================================================== */
.link-gold {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border: 1px solid transparent;
  border-bottom: 1px solid var(--gold);
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}
.link-gold:hover {
  background: rgba(201, 168, 106, 0.15);
  border: 1px solid var(--gold);
}
.link-gold--solid {
  background: var(--gold);
  color: var(--charcoal);
  border: 1px solid var(--gold);
}
.link-gold--solid:hover {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

/* ==============================================================
   POZNAJMY SIĘ — 2-col z DIAGONAL CLIP-PATH foto
   ============================================================== */
.poznajmy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.poznajmy__text { max-width: 540px; }

.poznajmy__visual {
  position: relative;
  aspect-ratio: 3/4;
}
.poznajmy__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* 🔑 DIAGONAL clip-path — pęknięcie skały (SYGNATURA Góry) */
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 22%);
  box-shadow: 0 25px 60px rgba(28, 28, 28, 0.35);
  transition: transform 0.7s var(--ease-out);
}
.poznajmy__photo:hover { transform: scale(1.02); }

/* „Od roku 1973" — brutalist badge w rogu */
.poznajmy__since {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--charcoal);
  color: var(--gold);
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gold);
  z-index: 2;
}
.poznajmy__since-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
}
.poznajmy__since-year {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .poznajmy__grid { grid-template-columns: 1fr; gap: 3rem; }
  .poznajmy__visual { max-width: 420px; margin: 0 auto; }
  .poznajmy__since { left: 0; bottom: -20px; padding: 1rem 1.25rem; }
  .poznajmy__since-year { font-size: 2.5rem; }
}

/* ==============================================================
   POKOJE — Trojan linked slideshow (cienka belka pod foto, nie overlay-card!)
   ============================================================== */
.pokoje-slideshow {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.pokoje-slideshow__track {
  position: relative;
  overflow: hidden;
}

.pokoj-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
  pointer-events: none;
}
.pokoj-slide.is-active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.pokoj-slide__photo {
  width: 100%;
  aspect-ratio: 2/1;
  min-height: 460px;
  background-size: cover;
  background-position: center;
}

/* 🔑 CIENKA BELKA pod foto — nie overlay-card jak Azurre, nie 3-col jak Jeziornik */
.pokoj-slide__bar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 1.75rem 2rem;
  background: rgba(28, 28, 28, 0.95);
  border-top: 1px solid var(--gold);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pokoj-slide__info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.pokoj-slide__tier {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.pokoj-slide__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}
.pokoj-slide__meta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(244, 239, 231, 0.65);
}
.pokoj-slide__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  color: var(--cream);
}
.pokoj-slide__price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(244, 239, 231, 0.6);
}
.pokoj-slide__price strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.pokoj-slide__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* Controls — strzałki + counter (zamiast kropek) */
.pokoje-slideshow__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.pokoj-arrow {
  width: 48px; height: 48px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast) var(--ease);
}
.pokoj-arrow:hover {
  background: var(--gold);
  color: var(--charcoal);
}
.pokoj-arrow svg { width: 20px; height: 20px; }
.pokoj-counter {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  min-width: 80px;
  text-align: center;
}
.pokoj-counter__current {
  font-size: 1.5rem;
  font-weight: 600;
}
.pokoj-counter__total {
  opacity: 0.6;
}

@media (max-width: 900px) {
  .pokoj-slide__photo { min-height: 300px; aspect-ratio: 16/10; }
  .pokoj-slide__bar { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem; }
  .pokoj-slide__price { justify-content: flex-start; }
  .pokoj-slide__actions { justify-content: flex-start; }
  .pokoj-slide__name { font-size: 1.4rem; }
}

/* ==============================================================
   STREFY — horizontal flex-accordion (🔑 SYGNATURA Góry)
   ============================================================== */
.section--strefy {
  padding: 6rem 0 0; /* bez padding poziom — strefy idą na pełną szerokość */
  background: var(--charcoal);
  color: var(--cream);
}
.section--strefy .section__container { padding: 0 2rem 4rem; }
.section--strefy .section__eyebrow { color: var(--gold); }
.section--strefy .section__title { color: var(--cream); }
.section--strefy .section__body { color: rgba(244, 239, 231, 0.8); }

.strefy {
  display: flex;
  height: 540px;
  width: 100%;
}

.strefa {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: flex 0.7s var(--ease);
  border-left: 1px solid rgba(201, 168, 106, 0.2);
}
.strefa:first-child { border-left: none; }

.strefa__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 28, 28, 0.95) 0%, rgba(28, 28, 28, 0.65) 50%, rgba(28, 28, 28, 0.4) 100%);
  transition: background var(--t-med) var(--ease);
}

/* Vertical title — widoczny default, znika przy hover */
.strefa__vertical {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  z-index: 2;
  transition: opacity 0.4s var(--ease);
}
.strefa__number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.strefa__vtitle {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

/* Content — hidden default, pokazuje się przy hover rozszerzonej strefy */
.strefa__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 2.5rem 2.5rem;
  color: var(--cream);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease) 0.2s, transform 0.5s var(--ease) 0.2s;
  z-index: 2;
  max-width: 520px;
}

/* Hover: strefa rozszerza się ~3x, vtitle znika, content pojawia się */
.strefa:hover,
.strefa.is-active {
  flex: 3;
}
.strefa:hover .strefa__vertical,
.strefa.is-active .strefa__vertical {
  opacity: 0;
}
.strefa:hover .strefa__content,
.strefa.is-active .strefa__content {
  opacity: 1;
  transform: translateY(0);
}
.strefa:hover .strefa__overlay,
.strefa.is-active .strefa__overlay {
  background: linear-gradient(to top, rgba(28, 28, 28, 0.96) 0%, rgba(28, 28, 28, 0.75) 40%, rgba(28, 28, 28, 0.3) 100%);
}

.strefa__eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.strefa__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1;
}
.strefa__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(244, 239, 231, 0.85);
  margin-bottom: 1.25rem;
}
.strefa__list {
  list-style: none;
  padding: 0;
}
.strefa__list li {
  font-size: 0.88rem;
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
  color: rgba(244, 239, 231, 0.75);
}
.strefa__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.95rem;
  width: 8px; height: 1px;
  background: var(--gold);
}

@media (max-width: 900px) {
  .strefy { flex-direction: column; height: auto; }
  .strefa { flex: none !important; min-height: 320px; border-left: none; border-top: 1px solid rgba(201, 168, 106, 0.2); }
  .strefa:first-child { border-top: none; }
  .strefa__vertical { display: none; }
  .strefa__content { position: relative; inset: auto; padding: 1.75rem 1.5rem; opacity: 1; transform: none; }
  .strefa__overlay { background: linear-gradient(to top, rgba(28,28,28,0.95) 0%, rgba(28,28,28,0.6) 60%, rgba(28,28,28,0.25) 100%); }
}

/* ==============================================================
   PARALLAX SEKCJA — scroll-linked horizontal text overlay (🔑 SYGNATURA z Sudecki)
   ============================================================== */
.section--parallax {
  padding: 0;
  background: var(--charcoal);
}
.parallax-wrapper {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.parallax-wrapper__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.parallax-wrapper__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.4) 0%, transparent 60%);
}

/* Panel sunie W LEWO NA foto wraz ze scrollem (JS) */
.parallax-wrapper__panel {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(20%);
  width: 50%;
  max-width: 620px;
  background: rgba(244, 239, 231, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 3rem 3rem;
  z-index: 2;
  border-left: 3px solid var(--gold);
  color: var(--charcoal-soft);
  will-change: transform;
}
.parallax__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.parallax__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal-soft);
  margin-bottom: 1rem;
}
.parallax__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(28, 28, 28, 0.15);
}
.parallax__meta span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.parallax__meta strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .parallax-wrapper { min-height: 500px; }
  .parallax-wrapper__panel {
    width: calc(100% - 2rem);
    right: 1rem;
    max-width: none;
    padding: 1.75rem 1.5rem;
    transform: translateY(-50%) translateX(0);
  }
  .parallax__body { font-size: 0.92rem; }
}

/* ==============================================================
   PAKIETY — background foto karty
   ============================================================== */
.pakiety__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pakiet {
  position: relative;
  min-height: 460px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: transform var(--t-med) var(--ease);
}
.pakiet:hover { transform: translateY(-4px); }

.pakiet__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 28, 28, 0.96) 0%, rgba(28, 28, 28, 0.65) 50%, rgba(28, 28, 28, 0.15) 100%);
  transition: background var(--t-med) var(--ease);
}
.pakiet:hover .pakiet__overlay {
  background: linear-gradient(to top, rgba(28, 28, 28, 0.92) 0%, rgba(28, 28, 28, 0.5) 50%, rgba(28, 28, 28, 0.1) 100%);
}

.pakiet__content {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
  color: var(--cream);
  width: 100%;
}
.pakiet__season {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.pakiet__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.85rem;
  line-height: 1.05;
}
.pakiet__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(244, 239, 231, 0.88);
  margin-bottom: 1.25rem;
}
.pakiet__price {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(244, 239, 231, 0.7);
  margin-bottom: 1rem;
}
.pakiet__price strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) { .pakiety__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pakiety__grid { grid-template-columns: 1fr; } }

/* ==============================================================
   LOKALIZACJA
   ============================================================== */
.lokalizacja__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.lokalizacja__text { max-width: 520px; }
.lokalizacja__list {
  list-style: none;
  padding: 0;
}
.lokalizacja__list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(28, 28, 28, 0.12);
  font-size: 1rem;
  color: var(--charcoal-soft);
}
.lokalizacja__list li strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}
@media (max-width: 900px) { .lokalizacja__grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ==============================================================
   QUOTE-WALL OPINIE (🔑 SYGNATURA Góry — auto-rotating)
   ============================================================== */
.section--quotes {
  background: var(--charcoal);
  color: var(--cream);
  padding: 8rem 2rem;
}
.section--quotes .section__eyebrow { color: var(--gold); }

.quote-wall {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 280px;
}

.quote-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  pointer-events: none;
}
.quote-item--active {
  opacity: 1;
  pointer-events: auto;
}
.quote-item__text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--cream);
  max-width: 800px;
  margin-bottom: 2rem;
  position: relative;
}
.quote-item__text::before {
  content: '"';
  position: absolute;
  top: -3rem;
  left: -3rem;
  font-family: var(--font-display);
  font-size: 7rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.5;
}
.quote-item__author {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.quote-wall__indicators {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
}
.quote-indicator {
  width: 24px;
  height: 2px;
  border: none;
  background: rgba(201, 168, 106, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background var(--t-fast) var(--ease), width var(--t-fast) var(--ease);
}
.quote-indicator:hover { background: var(--gold); }
.quote-indicator--active {
  background: var(--gold);
  width: 48px;
}

@media (max-width: 900px) {
  .quote-item__text::before { top: -2rem; left: 0; font-size: 4rem; }
  .quote-wall { min-height: 360px; }
}

/* ==============================================================
   KONTAKT
   ============================================================== */
.kontakt__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.kontakt__form {
  background: var(--cream);
  padding: 2.5rem;
  border: 1px solid rgba(28, 28, 28, 0.12);
  display: flex; flex-direction: column; gap: 1.15rem;
}
.kontakt__field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.kontakt__field { display: flex; flex-direction: column; gap: 0.35rem; }
.kontakt__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.kontakt__input {
  border: none;
  border-bottom: 1px solid rgba(28, 28, 28, 0.2);
  padding: 0.55rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: transparent;
  transition: border-color var(--t-fast) var(--ease);
}
.kontakt__input:focus { outline: none; border-bottom-color: var(--gold); }
.kontakt__input--textarea {
  border: 1px solid rgba(28, 28, 28, 0.2);
  padding: 0.65rem;
  resize: vertical;
  min-height: 80px;
}

.kontakt__info {
  background: var(--charcoal);
  color: var(--cream);
  padding: 2.5rem;
  border: 1px solid var(--gold);
}
.kontakt__info-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.kontakt__info-item {
  margin-bottom: 1.35rem;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.kontakt__info-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}
.kontakt__info-value {
  font-size: 1rem;
  color: var(--cream);
  text-decoration: none;
  line-height: 1.55;
}
a.kontakt__info-value:hover { color: var(--gold); }
.kontakt__guarantees {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 168, 106, 0.2);
  font-size: 0.88rem;
  line-height: 2;
  color: rgba(244, 239, 231, 0.82);
}
@media (max-width: 900px) {
  .kontakt__grid { grid-template-columns: 1fr; gap: 2rem; }
  .kontakt__field-row { grid-template-columns: 1fr; }
}

/* ==============================================================
   FOOTER
   ============================================================== */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 5rem 2rem 1.5rem;
  border-top: 1px solid rgba(201, 168, 106, 0.15);
}
.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__logo-icon {
  width: 48px; height: 48px;
  color: var(--gold);
}
.footer__logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  line-height: 1;
}
.footer__tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.7;
  margin-top: 0.35rem;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__column h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.footer__column a,
.footer__column span {
  display: block;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 2;
  opacity: 0.8;
  transition: color var(--t-fast) var(--ease);
}
.footer__column a:hover { color: var(--gold); opacity: 1; }

.footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 106, 0.15);
  font-size: 0.8rem;
  opacity: 0.55;
  text-align: center;
  color: var(--cream);
}
.footer__demo-note {
  color: var(--gold-soft);
  font-weight: 500;
}

@media (max-width: 900px) {
  .footer__container { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__columns { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* ==============================================================
   PODSTRONY — active link
   ============================================================== */
.navbar__menu a.is-active { color: var(--gold); }
.navbar__menu a.is-active::after { width: 100%; left: 0; }

/* ==============================================================
   PAGE BANNER (podstrony)
   ============================================================== */
.page-banner {
  position: relative;
  height: 55vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  color: var(--cream);
  overflow: hidden;
  padding-top: 70px;
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(28, 28, 28, 0.7) 0%, rgba(28, 28, 28, 0.4) 60%, rgba(28, 28, 28, 0.75) 100%);
}
.page-banner__content {
  position: absolute;
  left: 50%;
  bottom: 30%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  width: 90%;
  max-width: 900px;
  opacity: 0;
  animation: pageBannerIn 1.1s var(--ease-out) 0.3s forwards;
}
@keyframes pageBannerIn {
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
}
.page-banner__eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.page-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.page-banner__tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(244, 239, 231, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
/* 🔑 DIAGONAL cut-out zamiast fali (SYGNATURA Góry) */
.page-banner__diagonal {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 80px;
  z-index: 2;
}

/* ==============================================================
   SECTION--CTA
   ============================================================== */
.section--cta {
  background: var(--cream);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ==============================================================
   POZNAJMY.html historia — wariant poznajmy grid
   ============================================================== */
.historia__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.historia__text { max-width: 600px; }
.historia__visual {
  position: relative;
  aspect-ratio: 3/4;
}
.historia__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* Diagonal clip-path w drugą stronę (lustro względem index) */
  clip-path: polygon(0% 0%, 85% 0%, 100% 22%, 100% 100%, 0% 100%);
  box-shadow: 0 25px 60px rgba(28, 28, 28, 0.35);
  transition: transform 0.7s var(--ease-out);
}
.historia__photo:hover { transform: scale(1.02); }
.historia__since {
  position: absolute;
  top: -30px;
  right: -30px;
  background: var(--charcoal);
  color: var(--gold);
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gold);
  z-index: 2;
}
.historia__since-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
}
.historia__since-year {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .historia__grid { grid-template-columns: 1fr; gap: 3rem; }
  .historia__visual { max-width: 420px; margin: 0 auto; }
  .historia__since { right: 0; top: -20px; padding: 1rem 1.25rem; }
  .historia__since-year { font-size: 2.25rem; }
}

/* ==============================================================
   ZASADY — 4 wartości w stylu brutalist z numeracją (filozofia)
   ============================================================== */
.zasady {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 2rem;
  border: 1px solid rgba(201, 168, 106, 0.2);
}
.zasada {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(201, 168, 106, 0.2);
  border-bottom: 1px solid rgba(201, 168, 106, 0.2);
  position: relative;
  transition: background var(--t-med) var(--ease);
}
.zasada:hover { background: rgba(201, 168, 106, 0.05); }
.zasada:nth-child(2n) { border-right: none; }
.zasada:nth-last-child(-n+2) { border-bottom: none; }

.zasada__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  opacity: 0.7;
  display: block;
  margin-bottom: 1rem;
}
.zasada__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.zasada__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(244, 239, 231, 0.8);
}
@media (max-width: 700px) {
  .zasady { grid-template-columns: 1fr; }
  .zasada { border-right: none !important; border-bottom: 1px solid rgba(201, 168, 106, 0.2) !important; }
  .zasada:last-child { border-bottom: none !important; }
}

/* ==============================================================
   TEAM CARDS (z monogramami — Góry palette)
   ============================================================== */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.team-card { text-align: center; }
.team-card__monogram {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem;
  background: var(--charcoal);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--gold);
  transition: transform 0.6s var(--ease-out), background var(--t-fast) var(--ease);
}
.team-card:hover .team-card__monogram {
  transform: scale(1.04);
  background: var(--gold);
  color: var(--charcoal);
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.team-card__role {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.team-card__bio {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--charcoal-muted);
  max-width: 240px;
  margin: 0 auto;
}
@media (max-width: 900px) { .team__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .team__grid { grid-template-columns: 1fr; } }

/* ==============================================================
   LOKALIZACJA (z poznajmy + index)
   ============================================================== */
.lokalizacja__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.lokalizacja__text { max-width: 520px; }
.lokalizacja__list { list-style: none; padding: 0; }
.lokalizacja__list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(28, 28, 28, 0.12);
  font-size: 1rem;
  color: var(--charcoal-soft);
}
.lokalizacja__list li strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}
@media (max-width: 900px) { .lokalizacja__grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ==============================================================
   POKOJE.html — sekcja per tier z grid 3×2 zdjęć
   ============================================================== */
.pokoj-page { padding: 6rem 2rem; }
.pokoj-page__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}
.pokoj-page__tier {
  background: var(--charcoal);
  color: var(--cream);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border: 1px solid var(--gold);
  min-width: 180px;
}
.pokoj-page__tier-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.pokoj-page__tier-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}
.pokoj-page__text { max-width: 720px; }
.pokoj-page__meta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}
.pokoj-features {
  list-style: none;
  padding: 0;
  margin-top: 1.75rem;
}
.pokoj-features li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal-soft);
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}
.pokoj-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.2rem;
  width: 10px; height: 1px;
  background: var(--gold);
}
.pokoj-page__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 106, 0.3);
  flex-wrap: wrap;
}
.pokoj-page__price {
  display: flex; align-items: baseline; gap: 0.35rem;
}
.pokoj-page__price span { font-size: 0.9rem; color: var(--charcoal-muted); }
.pokoj-page__price strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}

.pokoj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pokoj-grid__item {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease-out);
  cursor: pointer;
}
.pokoj-grid__item:hover { transform: scale(1.02); }

@media (max-width: 900px) {
  .pokoj-page__header { grid-template-columns: 1fr; gap: 1.5rem; }
  .pokoj-page__tier { align-self: flex-start; }
  .pokoj-grid { grid-template-columns: 1fr 1fr; }
  .pokoj-page__footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .pokoj-grid { grid-template-columns: 1fr; }
}

/* ==============================================================
   GALERIA.html — tabs + 3×3 grid (NIE masonry!)
   ============================================================== */
.gallery-section { padding: 5rem 2rem; }

.gallery-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(201, 168, 106, 0.25);
  margin-bottom: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-tabs::-webkit-scrollbar { display: none; }
.gallery-tab {
  background: transparent;
  border: none;
  padding: 1rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.gallery-tab:hover { color: var(--charcoal); }
.gallery-tab--active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

.gallery-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.gallery-panel--active {
  display: block;
  opacity: 1;
}

/* 🔑 3×3 grid jednolity (nie masonry z różnymi wysokościami!) */
.gallery-grid-9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid-9__item {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease-out);
  cursor: pointer;
}
.gallery-grid-9__item:hover { transform: scale(1.02); }

@media (max-width: 900px) {
  .gallery-grid-9 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .gallery-grid-9 { grid-template-columns: 1fr; }
  .gallery-tab { padding: 0.75rem 1.25rem; font-size: 0.75rem; }
}

/* ==============================================================
   KONTAKT.html — map + FAQ
   ============================================================== */
.kontakt__map-wide {
  aspect-ratio: 21/9;
  border: 1px solid var(--gold);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
}
.kontakt__map-wide iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.faq__list { margin-top: 2rem; }
.faq__item {
  background: var(--cream);
  border: 1px solid rgba(28, 28, 28, 0.12);
  margin-bottom: 0.75rem;
  padding: 0;
  overflow: hidden;
  transition: border-color var(--t-med) var(--ease);
}
.faq__item[open] {
  border-color: var(--gold);
  background: rgba(201, 168, 106, 0.06);
}
.faq__question {
  padding: 1.25rem 1.75rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--charcoal);
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  position: absolute;
  right: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--t-med) var(--ease);
}
.faq__item[open] .faq__question::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}
.faq__answer {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--charcoal-muted);
  margin: 0;
  font-family: var(--font-body);
}
.faq__answer strong { color: var(--charcoal); font-weight: 500; }

/* ==============================================================
   PREFERS-REDUCED-MOTION
   ============================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; }
}
