/* ==============================================================
   WILLA POD PLATANEM — Bytów (Kaszuby)
   Kierunek: Ziemia (jasna wersja) — len, oliwka, natura
   Typografia: Cormorant Garamond (display) + Jost (body)
   (nazwy zmiennych zachowane z bazy; podmienione wartości = paleta oliwkowa)
   ============================================================== */

:root {
  /* Paleta — len + oliwka / natura */
  --alabaster: #F7F4EC;        /* tło główne — len */
  --sandstone: #ECE6D6;        /* tło alternatywne — ciepły piasek */
  --white: #FFFFFF;            /* karty */
  --ink: #2B2E26;              /* nagłówki, navbar text — głęboka oliwkowa czerń */
  --ink-soft: #474B3F;         /* tekst body */
  --ink-muted: #5F6353;        /* tekst muted — przyciemniony do WCAG AA (≥4.5:1 na len i piasku) */
  --brass: #5E6A42;            /* oliwka — akcenty, CTA (dawniej mosiądz) */
  --brass-soft: #9DA97A;       /* oliwka jasna — akcenty na ciemnym */
  --brass-dark: #4B5533;       /* oliwka ciemna — hover, linki na jasnym */
  --wood: #6B5238;             /* ciepły orzech mebli */
  --line: rgba(94, 106, 66, 0.30);
  --line-soft: rgba(43, 46, 38, 0.10);

  /* Typografia */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  /* Timings */
  --t-fast: 0.25s;
  --t-med: 0.55s;
  --t-slow: 1.1s;
  --ease: cubic-bezier(0.33, 0, 0.23, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadow — miękkie, jasne */
  --shadow-sm: 0 2px 10px rgba(46, 49, 54, 0.07);
  --shadow-md: 0 14px 34px rgba(46, 49, 54, 0.12);
  --shadow-lg: 0 26px 60px rgba(46, 49, 54, 0.16);
}

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

::selection { background: var(--brass); color: var(--white); }

/* Widoczny wskaźnik fokusu (WCAG 2.4.7) */
:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
/* Pola formularza mają w bazie outline:none (wyższa specyficzność) — wymuszamy fokus jawnie */
.contact-form__group input:focus-visible,
.contact-form__group select:focus-visible,
.contact-form__group textarea:focus-visible,
.reservation-bar__field input:focus-visible,
.reservation-bar__field select:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(94, 106, 66, 0.18);
}

/* Skip link — przejdź do treści */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 400;
  background: var(--brass);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.skip-link:focus { left: 0.6rem; top: 0.6rem; }

/* Ograniczenie ruchu — dla osób wrażliwych na animacje */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero__slide, .page-banner__bg { animation: none !important; transform: none !important; }
  .parallax-band { background-attachment: scroll !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ==============================================================
   NAVBAR — jasny alabaster, subtelny blur, grafit
   ============================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t-med) var(--ease);
}
.navbar.is-scrolled { box-shadow: var(--shadow-sm); }

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

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
}
.navbar__logo-icon {
  width: 34px; height: 34px;
  color: var(--brass);
  flex-shrink: 0;
}
.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease);
}
.navbar__logo:hover .navbar__logo-text { color: var(--brass-dark); }
.navbar__logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-top: 0.2rem;
}

.navbar__menu {
  display: flex; gap: 2.4rem;
  list-style: none;
}
.navbar__menu a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  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(--brass);
  transition: width var(--t-med) var(--ease), left var(--t-med) var(--ease);
}
.navbar__menu a:hover { color: var(--brass-dark); }
.navbar__menu a:hover::after { width: 100%; left: 0; }
.navbar__menu a.is-active { color: var(--brass-dark); }
.navbar__menu a.is-active::after { width: 100%; left: 0; }

.navbar__cta {
  display: inline-block;
  background: var(--brass);
  color: var(--white);
  padding: 0.7rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--brass);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.navbar__cta:hover {
  background: transparent;
  color: var(--brass-dark);
}

.navbar__mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 0.5rem;
  flex-direction: column; gap: 5px;
  z-index: 110;
}
.navbar__mobile-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--ink);
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.navbar__mobile-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.navbar__mobile-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--alabaster);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) var(--ease), visibility var(--t-med) var(--ease);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--t-fast) var(--ease);
}
.mobile-menu a:hover, .mobile-menu a.is-active { color: var(--brass-dark); }
.mobile-menu__cta {
  margin-top: 1rem;
  background: var(--brass);
  color: var(--white) !important;
  padding: 0.8rem 2.4rem;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .navbar__menu, .navbar__cta { display: none; }
  .navbar__mobile-toggle { display: flex; }
  .navbar__container { padding: 0.8rem 1.2rem; }
  .navbar__logo-text { font-size: 1.45rem; }
}

/* ==============================================================
   HERO — slideshow crossfade (3 zdjęcia) + Ken Burns
   ============================================================== */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s var(--ease);
  z-index: 1;
  transform: scale(1);
}
.hero__slide.is-active {
  opacity: 1;
  animation: kenBurns 9s var(--ease) forwards;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(30, 30, 32, 0.62) 0%, rgba(30, 30, 32, 0.18) 45%, rgba(30, 30, 32, 0.22) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2.5rem 5.5rem;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.1rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  max-width: 34em;
}

/* Kropki slideshow */
.hero__dots {
  position: absolute;
  right: 2.5rem;
  bottom: 2.2rem;
  z-index: 4;
  display: flex;
  gap: 0.6rem;
}
.hero__dot {
  width: 26px; height: 2px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
  padding: 0;
}
.hero__dot.is-active { background: var(--brass-soft); }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  left: 2.5rem;
  bottom: 2.2rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll svg {
  width: 18px; height: 18px;
  animation: scrollNudge 2.4s var(--ease) infinite;
}
@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Watermark — sygnet platana */
.hero__watermark {
  position: absolute;
  right: 0; bottom: 0;
  z-index: 3;
  width: min(420px, 50vw);
  opacity: 0.7;
  pointer-events: none;
}

@media (max-width: 700px) {
  .hero { height: 86vh; }
  .hero__content { padding: 0 1.4rem 5.5rem; }
  .hero__scroll { left: 1.4rem; }
  .hero__dots { right: 1.4rem; }
}

/* ==============================================================
   PAGE BANNER — podstrony
   ============================================================== */
.page-banner {
  position: relative;
  height: 52vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--white);
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenBurns 14s var(--ease) forwards;
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 30, 32, 0.6) 0%, rgba(30, 30, 32, 0.15) 60%);
}
.page-banner__content {
  position: relative;
  z-index: 2;
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2.5rem 3.2rem;
}
.page-banner__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.8rem;
}
.page-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
@media (max-width: 700px) {
  .page-banner__content { padding: 0 1.4rem 2.4rem; }
}

/* ==============================================================
   SEKCJE — wspólne
   ============================================================== */
.section { padding: 6rem 0; }
.section--alt { background: var(--sandstone); }
.section--tight { padding: 4.5rem 0; }

.section__container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.section__container--narrow { max-width: 860px; text-align: center; }

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 1rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.section__lead {
  font-size: 1.16rem;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}
.section__body {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}
.section__body em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08em;
  color: var(--brass-dark);
}

/* Grań — sygnaturowy separator */
.ridge-divider {
  display: block;
  width: 190px;
  margin: 0 auto 1.4rem;
  color: var(--brass);
}
.ridge-divider--left { margin: 0 0 1.4rem; }

@media (max-width: 700px) {
  .section { padding: 4rem 0; }
  .section__container { padding: 0 1.4rem; }
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out), filter var(--t-slow) var(--ease-out);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ==============================================================
   PASEK REZERWACYJNY
   ============================================================== */
.reservation-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.reservation-bar__container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 1.8rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.reservation-bar__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 0.2rem;
}
.reservation-bar__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.06rem;
  color: var(--ink);
}
.reservation-bar__form {
  display: flex;
  align-items: flex-end;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.reservation-bar__field { display: flex; flex-direction: column; gap: 0.25rem; }
.reservation-bar__field label {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.reservation-bar__field input,
.reservation-bar__field select {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--alabaster);
  border: 1px solid var(--line-soft);
  padding: 0.55rem 0.8rem;
  outline: none;
  transition: border-color var(--t-fast) var(--ease);
  min-width: 140px;
}
.reservation-bar__field input:focus,
.reservation-bar__field select:focus { border-color: var(--brass); }
.reservation-bar__submit {
  background: var(--brass);
  color: var(--white);
  border: 1px solid var(--brass);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.reservation-bar__submit:hover { background: var(--brass-dark); border-color: var(--brass-dark); }

@media (max-width: 700px) {
  .reservation-bar__container { padding: 1.4rem; }
  .reservation-bar__form { width: 100%; }
  .reservation-bar__field { flex: 1 1 45%; }
  .reservation-bar__field input, .reservation-bar__field select { min-width: 0; width: 100%; }
  .reservation-bar__submit { flex: 1 1 100%; }
}

/* ==============================================================
   O NAS — grid tekst + foto
   ============================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem;
  align-items: center;
}
.about__visual { position: relative; }
.about__photo {
  aspect-ratio: 4 / 3.4;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}
.about__photo--framed {
  outline: 1px solid var(--line);
  outline-offset: 14px;
}
.about__badge {
  position: absolute;
  left: -1.4rem; bottom: -1.4rem;
  background: var(--ink);
  color: var(--alabaster);
  padding: 1.1rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about__badge-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 0.2rem;
}
.about__badge-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.1;
}
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__badge { left: 1rem; bottom: -1.2rem; }
}

/* ==============================================================
   WYRÓŻNIKI — karty odległości / atutów
   ============================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 2.2rem 1.7rem 2rem;
  text-align: center;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}
.feature-card__icon {
  width: 44px; height: 44px;
  margin: 0 auto 1.1rem;
  color: var(--brass);
}
.feature-card__icon svg { width: 100%; height: 100%; }
.feature-card__value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.feature-card__label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}
@media (max-width: 960px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

/* ==============================================================
   PARALLAX BAND — ogród / platan
   ============================================================== */
.parallax-band {
  position: relative;
  min-height: 460px;
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
@media (hover: none), (max-width: 900px) {
  .parallax-band { background-attachment: scroll; }
}
.parallax-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 32, 0.42);
}
.parallax-band__content {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem;
  max-width: 780px;
}
.parallax-band__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.parallax-band__source {
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* ==============================================================
   POKOJE — karty
   ============================================================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}
.room-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.room-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.room-card__media {
  position: relative;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
}
.room-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.room-card:hover .room-card__media img { transform: scale(1.06); }
.room-card__tag {
  position: absolute;
  left: 1.1rem; top: 1.1rem;
  background: rgba(250, 248, 243, 0.92);
  color: var(--ink);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
}
.room-card__body { padding: 1.8rem 1.8rem 2rem; display: flex; flex-direction: column; flex: 1; }
.room-card__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.room-card__desc {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin-bottom: 1.3rem;
  flex: 1;
}
.room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  margin-bottom: 1.5rem;
  padding: 0;
  list-style: none;
}
.room-card__amenities li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.room-card__amenities svg { width: 15px; height: 15px; color: var(--brass); flex-shrink: 0; }
.room-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dark);
}
.room-card__link svg { width: 16px; height: 16px; transition: transform var(--t-fast) var(--ease); }
.room-card:hover .room-card__link svg { transform: translateX(5px); }
@media (max-width: 960px) { .rooms-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; } }

/* Wspólne udogodnienia pokoi */
.amenities-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
  margin-top: 2.6rem;
}
.amenities-strip__item {
  text-align: center;
  padding: 1.4rem 0.8rem;
  border: 1px solid var(--line-soft);
  background: var(--white);
}
.amenities-strip__item svg {
  width: 30px; height: 30px;
  color: var(--brass);
  margin: 0 auto 0.7rem;
  display: block;
}
.amenities-strip__item span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  display: block;
}
@media (max-width: 960px) { .amenities-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .amenities-strip { grid-template-columns: repeat(2, 1fr); } }

/* ==============================================================
   CENNIK
   ============================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 2.4rem 2.2rem;
}
.pricing-card--accent { border-top: 3px solid var(--brass); }
.pricing-card__season {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 0.5rem;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.pricing-card__price small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.pricing-card__list {
  list-style: none;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
}
.pricing-card__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  padding: 0.45rem 0;
  color: var(--ink-soft);
}
.pricing-card__list li strong {
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.pricing-note {
  margin-top: 1.8rem;
  padding: 1.3rem 1.6rem;
  background: var(--white);
  border-left: 3px solid var(--brass);
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.pricing-note p { margin-bottom: 0.4rem; }
.pricing-note p:last-child { margin-bottom: 0; }
@media (max-width: 800px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ==============================================================
   GALERIA — masonry + lightbox
   ============================================================== */
.masonry {
  columns: 3;
  column-gap: 1.2rem;
  margin-top: 3rem;
}
.masonry__item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
  border: none;
  padding: 0;
  background: none;
  width: 100%;
}
.masonry__item img {
  width: 100%;
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}
.masonry__item:hover img { transform: scale(1.045); filter: brightness(1.06); }
@media (max-width: 960px) { .masonry { columns: 2; } }
@media (max-width: 540px) { .masonry { columns: 1; } }

/* Pasek galerii na index */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-strip a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.gallery-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gallery-strip a:hover img { transform: scale(1.07); }
@media (max-width: 800px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(24, 24, 26, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) var(--ease), visibility var(--t-med) var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 90vw;
  max-height: 84vh;
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
.lightbox__btn {
  position: absolute;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.lightbox__btn:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--brass-soft); }
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
}

/* ==============================================================
   STREFY / KARTY FOTO (index — strefy dla gości)
   ============================================================== */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}
.zone-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  text-decoration: none;
}
.zone-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s var(--ease);
}
.zone-card:hover .zone-card__bg { transform: scale(1.06); }
.zone-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 30, 32, 0.68) 0%, rgba(30, 30, 32, 0.05) 55%);
}
.zone-card__content { position: relative; z-index: 2; padding: 1.7rem 1.9rem; }
.zone-card__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.zone-card__desc { font-size: 0.85rem; color: rgba(255, 255, 255, 0.85); }
@media (max-width: 800px) { .zones-grid { grid-template-columns: 1fr; } }

/* Lista udogodnień (o nas) */
.amenity-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 2.4rem;
  margin-top: 2rem;
}
.amenity-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.amenity-list svg {
  width: 19px; height: 19px;
  color: var(--brass);
  flex-shrink: 0;
  margin-top: 0.28rem;
}
@media (max-width: 700px) { .amenity-list { grid-template-columns: 1fr; } }

/* Info praktyczne — pastylki */
.info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}
.info-pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 0.85rem 1.4rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.info-pill svg { width: 18px; height: 18px; color: var(--brass); flex-shrink: 0; }
.info-pill strong { font-weight: 500; color: var(--ink); }

/* ==============================================================
   CTA SECTION
   ============================================================== */
.cta-section {
  background: var(--ink);
  color: var(--alabaster);
  text-align: center;
}
.cta-section .section__eyebrow { color: var(--brass-soft); }
.cta-section .section__title { color: var(--alabaster); }
.cta-section .section__lead { color: rgba(250, 248, 243, 0.75); }
.cta-section__buttons {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.3rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--brass);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  cursor: pointer;
}
.btn svg { width: 17px; height: 17px; }
.btn--solid { background: var(--brass); color: var(--white); }
.btn--solid:hover { background: var(--brass-dark); border-color: var(--brass-dark); color: var(--white); }
.btn--ghost { background: transparent; color: var(--brass-soft); }
.btn--ghost:hover { background: rgba(169, 131, 76, 0.14); color: var(--white); }
.btn--ghost-dark { background: transparent; color: var(--brass-dark); }
.btn--ghost-dark:hover { background: var(--brass); color: var(--white); }

/* ==============================================================
   KONTAKT
   ============================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact__item:last-child { border-bottom: none; }
.contact__item svg {
  width: 21px; height: 21px;
  color: var(--brass);
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.contact__item-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.15rem;
}
.contact__item-value {
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.55;
}
.contact__item-value a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.contact__item-value a:hover { color: var(--brass-dark); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 2.6rem;
  box-shadow: var(--shadow-sm);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.contact-form__group { margin-bottom: 1.2rem; }
.contact-form__group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
}
.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--alabaster);
  border: 1px solid var(--line-soft);
  padding: 0.75rem 0.95rem;
  outline: none;
  transition: border-color var(--t-fast) var(--ease);
  resize: vertical;
}
.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus { border-color: var(--brass); }
.contact-form .btn { width: 100%; justify-content: center; }
@media (max-width: 960px) {
  .contact__grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .contact-form { padding: 1.8rem; }
  .contact-form__row { grid-template-columns: 1fr; gap: 0; }
}

.map-wrap {
  margin-top: 4.5rem;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
  filter: grayscale(0.35) sepia(0.08);
}

/* ==============================================================
   PODSTRONA POKOJU
   ============================================================== */
.room-detail__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.room-detail__aside {
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 2.2rem;
  position: sticky;
  top: 96px;
}
.room-detail__aside-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.room-detail__aside .amenity-list { grid-template-columns: 1fr; gap: 0.7rem; margin-top: 0; }
.room-detail__aside .btn { width: 100%; justify-content: center; margin-top: 1.8rem; }
.room-detail__aside-note {
  margin-top: 1.1rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-align: center;
}
@media (max-width: 960px) {
  .room-detail__grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .room-detail__aside { position: static; }
}

.room-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}

/* ==============================================================
   FOOTER
   ============================================================== */
.footer {
  background: var(--ink);
  color: rgba(250, 248, 243, 0.78);
  padding: 4.5rem 0 0;
}
.footer__container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--brass-soft);
  margin-bottom: 1.1rem;
}
.footer__brand-logo svg { width: 32px; height: 32px; }
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--alabaster);
}
.footer__desc { font-size: 0.9rem; line-height: 1.8; max-width: 34em; }
.footer__heading {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 1.2rem;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.55rem; }
.footer__links a {
  color: rgba(250, 248, 243, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--t-fast) var(--ease);
}
.footer__links a:hover { color: var(--brass-soft); }
.footer__contact { list-style: none; }
.footer__contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
}
.footer__contact svg { width: 17px; height: 17px; color: var(--brass); flex-shrink: 0; margin-top: 0.3rem; }
.footer__contact a { color: rgba(250, 248, 243, 0.78); text-decoration: none; }
.footer__contact a:hover { color: var(--brass-soft); }
.footer__bottom {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(250, 248, 243, 0.12);
  padding: 1.4rem 2.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(250, 248, 243, 0.62);
}
@media (max-width: 900px) {
  .footer__container { grid-template-columns: 1fr; gap: 2.4rem; }
}

/* ==============================================================
   FAB — pływający przycisk rezerwacji
   ============================================================== */
.fab {
  position: fixed;
  right: 1.8rem;
  bottom: 1.8rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--brass);
  color: var(--white);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.95rem 1.6rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(14px);
  visibility: hidden;
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility var(--t-med) var(--ease), background var(--t-fast) var(--ease);
}
.fab.is-visible { opacity: 1; transform: translateY(0); visibility: visible; }
.fab:hover { background: var(--brass-dark); }
.fab svg { width: 17px; height: 17px; }
@media (max-width: 700px) { .fab { right: 1.1rem; bottom: 1.1rem; padding: 0.85rem 1.3rem; } }

/* Scroll to top */
.scroll-top {
  position: fixed;
  right: 1.8rem;
  bottom: 5.6rem;
  z-index: 89;
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--brass-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) var(--ease), visibility var(--t-med) var(--ease);
}
.scroll-top.is-visible { opacity: 1; visibility: visible; }
.scroll-top svg { width: 18px; height: 18px; }
@media (max-width: 700px) { .scroll-top { right: 1.1rem; bottom: 5rem; } }

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 2.2rem;
  transform: translate(-50%, 20px);
  z-index: 300;
  background: var(--ink);
  color: var(--alabaster);
  padding: 1rem 1.8rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility var(--t-med) var(--ease);
  max-width: min(90vw, 480px);
  text-align: center;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); visibility: visible; }

/* ==============================================================
   OPINIE / OCENA  (dane z Booking.com — 10/10)
   ============================================================== */
.rating-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}
.rating-hero__score {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--brass-dark);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.9rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.rating-hero__meta { text-align: left; }
.rating-hero__stars { color: var(--brass); letter-spacing: 0.15em; font-size: 1.05rem; }
.rating-hero__label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-top: 0.25rem;
}
.rating-hero__label strong { color: var(--ink); font-weight: 500; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 2rem 1.9rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-card__stars { color: var(--brass); letter-spacing: 0.15em; margin-bottom: 0.9rem; }
.review-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.16rem;
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
}
.review-card__author {
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}
.review-card__author strong { color: var(--ink); font-weight: 500; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; } }

/* ==============================================================
   OKOLICA — punkty (POI) z odległościami
   ============================================================== */
.poi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 3rem;
  margin-top: 2.4rem;
}
.poi-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.poi-row__name { display: flex; align-items: baseline; gap: 0.7rem; color: var(--ink-soft); font-size: 0.98rem; }
.poi-row__name svg { width: 15px; height: 15px; color: var(--brass); transform: translateY(2px); }
.poi-row__dist {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brass-dark);
  white-space: nowrap;
}
@media (max-width: 760px) { .poi-grid { grid-template-columns: 1fr; gap: 0; } }

/* Pastylka „ważna informacja" pod paskiem zapytania */
.reservation-bar__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
@media (max-width: 700px) { .reservation-bar__actions { width: 100%; } .reservation-bar__actions .btn { flex: 1 1 100%; justify-content: center; } }

/* ==============================================================
   NUMERKI ZDJĘĆ (pomoc dla klientki — mapowanie do apartamentów)
   Sterowane flagą SHOW_NUMS w build.mjs; wyłączyć przed oddaniem.
   ============================================================== */
.photo-num {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 3;
  min-width: 1.85rem;
  height: 1.85rem;
  padding: 0 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 46, 38, 0.85);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
  letter-spacing: 0.02em;
}
.photo-num-hint {
  max-width: 46em;
  margin-top: 1rem;
  padding: 0.9rem 1.3rem;
  background: var(--white);
  border-left: 3px solid var(--brass);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ==============================================================
   GALERIA — równa siatka (numerki rosną po kolei, lewo→prawo)
   ============================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
}
.gallery-grid__item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  background: var(--sandstone);
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}
.gallery-grid__item:hover img { transform: scale(1.05); filter: brightness(1.06); }
@media (max-width: 960px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; } }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; } }

/* ==============================================================
   AUDYT 4x — nowe komponenty (CTA hero, FAQ, cennik, RODO, legal)
   ============================================================== */
/* Hero CTA + mikro-USP */
.hero__cta { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 2rem; }
.hero__usp { display: flex; flex-wrap: wrap; gap: 0.7rem 1.2rem; margin-top: 1.8rem; }
.hero__usp span { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; letter-spacing: 0.03em; color: rgba(255,255,255,0.94); background: rgba(30,30,32,0.34); border: 1px solid rgba(255,255,255,0.22); padding: 0.42rem 0.9rem; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.hero__usp svg { width: 16px; height: 16px; color: var(--brass-soft); flex-shrink: 0; }
@media (max-width: 560px) { .hero__cta { flex-direction: column; } .hero__cta .btn { justify-content: center; } }

/* features-grid — wariant 3 kolumny */
.features-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .features-grid--3 { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

/* Cena na karcie apartamentu (aside) */
.room-detail__price { font-family: var(--font-display); font-size: 2rem; color: var(--brass-dark); line-height: 1.1; }
.room-detail__price small { font-family: var(--font-body); font-size: 0.85rem; color: var(--ink-muted); }
.room-detail__price-note { font-size: 0.82rem; color: var(--ink-muted); margin: 0.4rem 0 1.4rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line-soft); }

/* FAQ — akordeon (details/summary, bez JS) */
.faq { margin-top: 2.4rem; text-align: left; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item summary { cursor: pointer; list-style: none; padding: 1.1rem 2rem 1.1rem 0; position: relative; font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0.3rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--brass); }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item__a { padding: 0 0 1.2rem; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.7; }

/* Zgoda RODO + zapewnienie */
.consent-check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.8rem; line-height: 1.5; color: var(--ink-muted); }
.consent-check input { margin-top: 0.2rem; flex: 0 0 auto; width: 16px; height: 16px; accent-color: var(--brass); }
.consent-check a { color: var(--brass-dark); }
.contact-form__consent { margin-top: 0.3rem; }
.contact-form__reassure { font-size: 0.85rem; color: var(--ink-muted); margin-top: 1rem; text-align: center; }
.contact-form__reassure a { color: var(--brass-dark); }

/* Cennik — w cenie / dodatkowo płatne */
.price-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; margin-top: 1.8rem; }
.price-split__col { background: var(--white); border: 1px solid var(--line-soft); padding: 1.6rem 1.8rem; }
.price-split__head { font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass-dark); margin-bottom: 1rem; }
.price-split__list { list-style: none; }
.price-split__list li { display: flex; align-items: center; gap: 0.7rem; padding: 0.4rem 0; font-size: 0.95rem; color: var(--ink-soft); }
.price-split__list svg { width: 17px; height: 17px; color: var(--brass); flex-shrink: 0; }
@media (max-width: 700px) { .price-split { grid-template-columns: 1fr; } }

/* Podpis gospodarzy (o willi) */
.about__signature { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--brass-dark); margin-top: 0.8rem; }

/* Stopka — linki prawne */
.footer__legal { margin-bottom: 0.5rem; }
.footer__legal a { color: rgba(250,248,243,0.62); text-decoration: none; }
.footer__legal a:hover { color: var(--brass-soft); }

/* Strony prawne (polityka, regulamin) */
.legal h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); margin: 1.8rem 0 0.5rem; }
.legal h3:first-child { margin-top: 0; }
.legal a { color: var(--brass-dark); }

/* ==============================================================
   CZYTELNOŚĆ NAPISÓW NA ZDJĘCIACH (życzenie klientki)
   Ciemniejsze nakładki + mocniejsze cienie tekstu
   ============================================================== */
.hero__overlay { background: linear-gradient(to top, rgba(18,18,20,0.74) 0%, rgba(18,18,20,0.30) 50%, rgba(18,18,20,0.42) 100%); }
.hero__title { text-shadow: 0 2px 24px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.55); }
.hero__tagline { text-shadow: 0 1px 12px rgba(0,0,0,0.7); color: #fff; }
.hero__eyebrow { text-shadow: 0 1px 8px rgba(0,0,0,0.6); color: #fff; }
.hero__scroll { text-shadow: 0 1px 6px rgba(0,0,0,0.55); }
.page-banner__overlay { background: linear-gradient(to top, rgba(18,18,20,0.72) 0%, rgba(18,18,20,0.28) 60%, rgba(18,18,20,0.32) 100%); }
.page-banner__title { text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.55); }
.page-banner__eyebrow { text-shadow: 0 1px 8px rgba(0,0,0,0.55); color: #fff; }
.zone-card__overlay { background: linear-gradient(to top, rgba(18,18,20,0.82) 0%, rgba(18,18,20,0.12) 62%); }
.zone-card__title { text-shadow: 0 1px 10px rgba(0,0,0,0.65); }
.zone-card__desc { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.parallax-band__overlay { background: rgba(18,18,20,0.54); }
.parallax-band__quote { text-shadow: 0 2px 20px rgba(0,0,0,0.65); }
.parallax-band__source { text-shadow: 0 1px 8px rgba(0,0,0,0.6); }

/* ==============================================================
   POPRAWKI KLIENTKI (filmik, hero, apartamenty)
   ============================================================== */
/* Filmik pod hero */
.video-wrap {
  max-width: 900px;
  margin: 2.6rem auto 0;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: #000;
  line-height: 0;
}
.video-wrap video { width: 100%; height: auto; display: block; }

/* HERO — napis „Willa Pod Platanem" był obcięty od góry (treść nie mieściła się
   po dodaniu przycisków i pigułek). Pozwalamy hero rosnąć + mocniejszy scrim
   pod biały tekst na jasnym tle willi. */
.hero { height: auto; min-height: 92vh; }
.hero__content { padding-top: 6rem; padding-bottom: 3.6rem; }
.hero__title { font-size: clamp(2.4rem, 6.2vw, 5rem); }
.hero__cta { margin-top: 1.4rem; }
.hero__usp { margin-top: 1.3rem; }
.hero__overlay {
  background: linear-gradient(to top, rgba(12,12,14,0.85) 0%, rgba(12,12,14,0.5) 40%, rgba(12,12,14,0.26) 66%, rgba(12,12,14,0.32) 100%);
}
@media (max-width: 700px) {
  .hero__content { padding-top: 6.5rem; padding-bottom: 2.6rem; }
  .hero__title { font-size: clamp(2.1rem, 9vw, 3.2rem); }
  .hero__tagline { font-size: 1.02rem; }
  .hero__cta { margin-top: 1.1rem; }
  .hero__usp { margin-top: 1rem; gap: 0.45rem 0.8rem; }
  .hero__usp span { font-size: 0.72rem; padding: 0.32rem 0.7rem; }
}

/* Karty apartamentów — mocniejsze nazwy + wyróżniony metraż + większy opis */
.room-card__title { font-weight: 600; }
.room-card__tag { color: var(--brass-dark); font-weight: 600; background: rgba(250, 248, 243, 0.96); }
.room-card__desc { font-size: 1.05rem; line-height: 1.7; }

/* ==============================================================
   INTRO DWUKOLUMNOWE — tekst z lewej, film z prawej (autoplay/muted/loop)
   ============================================================== */
.intro-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 4rem; align-items: center; }
.intro-grid__text { text-align: left; }
.intro-grid__text .ridge-divider { margin-left: 0; margin-right: auto; }
.intro-grid__media { position: relative; }
.intro-grid__media video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  background: var(--sandstone);
}
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .intro-grid__text { text-align: center; }
  .intro-grid__text .ridge-divider { margin-left: auto; }
}

/* ==============================================================
   MOBILE POLISH (audyt mobilny 390px)
   ============================================================== */
/* Hero: wskaźnik „Zobacz więcej" kolidował z pigułkami USP na telefonie */
@media (max-width: 700px) {
  .hero__scroll { display: none; }
}
/* Zgoda RODO — normalny tekst zamiast wersalików etykiety formularza */
.contact-form__group label.consent-check {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.8rem;
}

/* Warianty mobilne teł (pionowe zdjęcia) — patrz generowany css/mobile-bg.css */

/* ==============================================================
   MOBILE: MAKSYMALNY KONTRAST TEKSTU NA ZDJĘCIACH
   (klientka niedowidzi — dół zdjęcia niemal jednolicie ciemny)
   ============================================================== */
@media (max-width: 700px) {
  .hero__overlay {
    background: linear-gradient(to top,
      rgba(10, 11, 9, 0.97) 0%,
      rgba(10, 11, 9, 0.9) 30%,
      rgba(10, 11, 9, 0.45) 62%,
      rgba(10, 11, 9, 0.28) 100%);
  }
  .hero__eyebrow { color: #fff; font-weight: 500; font-size: 0.8rem; letter-spacing: 0.28em; }
  .hero__tagline { color: #fff; }
  .hero__usp span { background: rgba(10, 11, 9, 0.62); border-color: rgba(255, 255, 255, 0.32); }
  .page-banner__overlay {
    background: linear-gradient(to top,
      rgba(10, 11, 9, 0.95) 0%,
      rgba(10, 11, 9, 0.52) 58%,
      rgba(10, 11, 9, 0.34) 100%);
  }
  .zone-card__overlay { background: linear-gradient(to top, rgba(10, 11, 9, 0.9) 0%, rgba(10, 11, 9, 0.15) 62%); }
}

/* Mobile: bez przycisków CTA na hero (duplikat — pasek „Rezerwacja bezpośrednia"
   jest tuż pod zdjęciem); więcej miejsca na samo zdjęcie */
@media (max-width: 700px) {
  .hero__cta { display: none; }
}

/* Mobile: hero = samo zdjęcie + tytuł (bez eyebrow i cytatu), lekkie przyciemnienie
   tylko przy samym dole pod tytułem i pigułkami */
@media (max-width: 700px) {
  .hero__eyebrow, .hero__tagline { display: none; }
  .hero__overlay {
    background: linear-gradient(to top,
      rgba(10, 11, 9, 0.72) 0%,
      rgba(10, 11, 9, 0.34) 24%,
      rgba(10, 11, 9, 0.08) 48%,
      rgba(10, 11, 9, 0.05) 100%);
  }
  .hero__title { text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.7); }
}

/* Mobile: większe, czytelniejsze pigułki pod tytułem hero */
@media (max-width: 700px) {
  .hero__usp { gap: 0.55rem 0.8rem; margin-top: 1.2rem; }
  .hero__usp span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.55rem 1rem;
    background: rgba(10, 11, 9, 0.78);
    border-color: rgba(255, 255, 255, 0.45);
  }
  .hero__usp svg { width: 19px; height: 19px; }
}
