/* paleta: Palais Berlin Brass (light) — zmiana: meta.palette w brief.json + rebuild */
:root {
  --bg: #FFFEFE;
  --surface: #FFFFFF;
  --surface-alt: #F8F7F5;
  --text: #111111;
  --text-muted: #5C5C5C;
  --primary: #8B6E4A;
  --accent: #B81D35;
  --border: rgba(0,0,0,0.12);
  --text-on-accent: #FFFFFF;   /* kontrast 6.43:1 */
  --text-on-primary: #FFFFFF;  /* kontrast 4.74:1 */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-400-700.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-300-400-600-700.woff2') format('woff2');
  font-weight: 300 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   TOKENS — kanoniczny schemat (superset wioleta-chutnik).
   Sloty kolorów (--bg … --border) wstrzykuje asembler z palety.
   ============================================================ */
:root {
  /* spacing (skala numeryczna złotego korpusu) */
  --spacing-4: 0.25rem;
  --spacing-8: 0.5rem;
  --spacing-12: 0.75rem;
  --spacing-16: 1rem;
  --spacing-24: 1.5rem;
  --spacing-32: 2rem;
  --spacing-48: 3rem;
  --spacing-64: 4rem;
  --spacing-80: 5rem;
  --spacing-96: 6rem;
  --spacing-128: 8rem;

  /* typografia — skala płynna */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: clamp(1.25rem, 1.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 2.5vw, 2rem);
  --text-3xl: clamp(1.9rem, 3.5vw, 2.75rem);
  --text-4xl: clamp(2.4rem, 5vw, 3.75rem);
  --text-5xl: clamp(3rem, 6vw, 5.5rem);
  --leading-tight: 1.15;
  --leading-normal: 1.7;
  --leading-loose: 1.9;

  /* layout */
  --container-max: 1200px;
  --container-padding: clamp(var(--spacing-16), 5vw, var(--spacing-48));
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;

  /* ruch */
  --ease: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.6s var(--ease);
}


/* ============================================================
   CORE — reset, typografia, layout, komponenty wspólne.
   Wymogi jakości (clamp, lh 1.7, mobile-first, reduced-motion)
   są tu GWARANTOWANE — nie zależą od promptu ani modelu.
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; }

/* grid overflow safety — karty nie wychodzą poza siatkę na mobile */
* { min-width: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: var(--leading-tight);
  color: var(--text);
}
h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-3xl); margin-bottom: var(--spacing-16); }
h3 { font-size: var(--text-xl); }

p { line-height: var(--leading-normal); }
.prose p { max-width: 65ch; margin-inline: auto; }

a { color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* --- layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* RYTM SEKCJI (2026-08-12): do dziś KAŻDA sekcja miała identyczny oddech pionowy, przez co
   strona czytała się jak stos jednakowych klocków — sygnatura szablonu. Teraz gęstość zależy
   od ROLI sekcji (patrz site_assembler.skomponuj_strone): opowieść oddycha, cennik jest
   rzeczowy, wezwanie do działania dostaje najwięcej powietrza. `--gestosc` jest zmienną, więc
   styl może wzmocnić albo stonować amplitudę rytmu (design_tokens.kompozycja.amplituda). */
.section { padding-block: calc(clamp(4rem, 10vw, 8rem) * var(--gestosc, 1)); }
.section--przestronny { --gestosc: var(--gestosc-przestronny, 1.35); }
.section--gesty       { --gestosc: var(--gestosc-gesty, 0.8); }
.section--zwarty      { --gestosc: var(--gestosc-zwarty, 0.7); }
.section--kulminacja  { --gestosc: var(--gestosc-kulminacja, 1.5); }

.section--bg { background: var(--bg); }
.section--surface { background: var(--surface); }
.section--alt { background: var(--surface-alt); }
/* Kulminacja — jedyny moment strony na własny grunt. Nie łączy się z pasmem rozdziału. */
.section--akcent { background: var(--surface-alt); }

.section-header { text-align: center; margin-bottom: var(--spacing-64); }
/* Nagłówek do lewej dla partii rzeczowych (cennik, dane praktyczne) — krótsza droga oka niż
   przy centrowaniu, a centrowanie zostaje gestem ceremonialnym tam, gdzie ma coś znaczyć. */
.section--naglowek-lewy .section-header { text-align: left; margin-inline-end: auto; }
/* Miara (długość wiersza) obowiązuje TYLKO tekst opisowy. Nałożona na cały nagłówek łamała
   niemieckie złożenia w środku wyrazu — „Meisterleistung|en" — bo `ch` liczy się od stopnia
   bazowego kontenera, nie od 6.5rem nagłówka. Tytuł ma się łamać między słowami, nie w nich. */
.section--naglowek-lewy .section-header > p { max-width: 46ch; }
.section--naglowek-lewy .section-header .eyebrow { margin-inline: 0; }
.section-header h2 { overflow-wrap: normal; word-break: normal; hyphens: manual; }
.section-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: var(--text-sm);
  color: var(--accent);
  margin-top: var(--spacing-8);
}

/* --- przyciski (48px touch target — standard PRO) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-8);
  min-height: 48px;
  min-width: 48px;
  padding: var(--spacing-12) var(--spacing-32);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--text);
  transition: all 0.4s var(--ease);
}
.btn--primary { background: var(--accent); color: var(--bg); }
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.btn--primary:hover { opacity: 0.92; }

/* --- reveal on scroll (Pro Cinematic Blur-Up, wzór zenith-v2) ---
   Selektor MUSI zaczynać się od `.js` — klasę tę ustawia base.js, czyli ten sam
   kod, który później dodaje `.active`. Bez tego warunku strona ukrywała treść
   bezwarunkowo i odsłaniała ją wyłącznie skryptem: każda awaria base.js
   (blokada, błąd, przerwane pobieranie) zostawiała gościa przed pustą stroną.
   Na non-berlin znikała bez JS cała karta dań. Naprawa 2026-07-29. */
.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(12px);
  transition: opacity 1.4s var(--ease-out),
              transform 1.4s var(--ease-out),
              filter 1.4s var(--ease-out);
  will-change: opacity, transform, filter;
}
.js .reveal.active { opacity: 1; transform: translateY(0); filter: blur(0); }

/* --- strony prawne + drobne utility --- */
.legal-page { max-width: 760px; padding-block: var(--spacing-48); }
.legal-page h2 { font-size: var(--text-xl); margin-top: var(--spacing-32); }
.legal-page p { color: var(--text-muted); margin-bottom: var(--spacing-16); }
.legal-page a { color: var(--accent); }
.legal-title { font-size: var(--text-3xl); margin-bottom: var(--spacing-24); }
.legal-back {
  display: inline-block;
  margin-bottom: var(--spacing-32);
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.legal-back:hover { color: var(--accent); }
.contact-form { text-align: left; }
.footer-copy { white-space: nowrap; }

/* --- dostępność ruchu --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; filter: none; }
}


/* ── blok: nav-palais-split ── */
/* ── 2026 LUXURY PALACE HEADER: nav-palais-split (Benchmark Slow-Mo & Staggered Motion) ── */
.hdr {
  position: sticky;
  top: 0;
  z-index: 90;
  width: 100%;
  background: rgba(14, 12, 12, 0.92);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.6s ease;
}

.hdr.scrolled {
  background: rgba(10, 9, 9, 0.97);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(212, 175, 55, 0.5);
}

/* ── Top Utility Bar ── */
.hdr-top {
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  background: rgba(20, 18, 18, 0.6);
}

.hdr-top-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter, 32px);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 11.5px;
}

.hdr-top-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #C5A880;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.hdr-tag-dot {
  font-size: 8px;
  color: #D4AF37;
}

.hdr-divider {
  color: rgba(212, 175, 55, 0.3);
}

.hdr-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #F8F6F2;
  font-weight: 600;
}

.status-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2ECC71;
  box-shadow: 0 0 6px #2ECC71;
}

.hdr-top-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hdr-phone-direct {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #F8F6F2;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.hdr-phone-direct:hover {
  color: #D4AF37;
}

.hdr-phone-icon {
  width: 13px;
  height: 13px;
  color: #D4AF37;
}

.hdr-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #999;
}

.lang-opt.active {
  color: #FFFFFF;
}

.lang-sep {
  color: rgba(212, 175, 55, 0.3);
}

/* ── Main Navigation Bar ── */
.hdr-main {
  width: 100%;
}

.hdr-main-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter, 32px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

/* Brand & Crest */
.hdr-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.hdr-crest-svg {
  width: 44px;
  height: 46px;
  color: #D4AF37;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s ease;
}

.hdr-brand:hover .hdr-crest-svg {
  transform: scale(1.06);
}

.hdr-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-sub {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C5A880;
  white-space: nowrap;
}

/* Menu Links */
.hdr-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  margin: 0;
  padding: 0;
}

.hdr-nav-item {
  position: relative;
}

.hdr-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.35s ease;
  white-space: nowrap;
  position: relative;
}

.hdr-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: #D4AF37;
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1), left 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.hdr-nav-link:hover {
  color: #D4AF37;
}

.hdr-nav-link:hover::after {
  width: 100%;
  left: 0;
}

.hdr-nav-link .caret {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid #D4AF37;
  border-bottom: 1.5px solid #D4AF37;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.has-dropdown:hover .hdr-nav-link .caret {
  transform: rotate(-135deg);
}

/* Dropdown Menu */
.hdr-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -15px;
  width: 270px;
  background: rgba(20, 18, 18, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 100;
  backdrop-filter: blur(20px);
}

.has-dropdown:hover .hdr-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 10px 18px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(212, 175, 55, 0.15);
}

.dropdown-item strong {
  font-size: 12.5px;
  font-weight: 600;
  color: #FFFFFF;
}

.dropdown-item small {
  font-size: 10.5px;
  color: #C5A880;
  margin-top: 2px;
}

/* Actions & Button */
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.hdr-actions .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  background: #96613F;
  background: linear-gradient(135deg, #9C6644 0%, #7F4F30 100%);
  border: 1px solid rgba(184, 134, 98, 0.4);
  color: #FFFFFF !important;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hdr-actions .cta:hover {
  background: linear-gradient(135deg, #A8714C 0%, #8D5838 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
}

.cta-arrow {
  width: 13px;
  height: 13px;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.hdr-actions .cta:hover .cta-arrow {
  transform: translateX(3px);
}

/* Hamburger Button */
.nav-toggle {
  display: none;
  background: rgba(36, 32, 32, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 4px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  z-index: 99;
  transition: background-color 0.35s ease, border-color 0.35s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(50, 45, 45, 0.9);
  border-color: #D4AF37;
  outline: none;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #FFFFFF;
  border-radius: 1px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, background-color 0.4s ease;
  transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: #D4AF37;
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: #D4AF37;
}

/* ── BENCHMARK SLOW-MO LUXURY MOBILE OVERLAY (PRO STANDARD: ZENITH V2) ── */
.nav-mobile-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: rgba(10, 9, 9, 0.97) !important;
  z-index: 99999 !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 28px 28px 40px !important;
  box-sizing: border-box !important;
  backdrop-filter: blur(28px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(140%) !important;
  
  /* SLOW-MO ANIMATION: 1.2s cubic-bezier(0.25, 1, 0.5, 1) */
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s ease !important;
}

.nav-mobile-overlay.open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.15s, transform 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.15s;
}

.nav-mobile-overlay.open .nav-mobile-header {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nav-mobile-crest {
  width: 36px;
  height: 38px;
  color: #D4AF37;
}

.nav-mobile-close {
  background: rgba(36, 32, 32, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  transition: background-color 0.3s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-mobile-close:hover {
  background: rgba(60, 50, 50, 0.95);
  transform: rotate(90deg);
}

/* STAGGERED SLOW-MO TYPOGRAPHY */
.nav-mobile-links {
  margin: 36px 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}

.nav-mobile-links a {
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: clamp(22px, 6vw, 32px);
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.05em;
  padding: 4px 0;
  display: inline-block;
  width: fit-content;
  
  /* STAGGERED ANIMATION INIT: 1.0s cubic-bezier(0.25, 1, 0.5, 1) */
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.0s cubic-bezier(0.25, 1, 0.5, 1),
              transform 1.0s cubic-bezier(0.25, 1, 0.5, 1),
              color 0.35s ease;
}

.nav-mobile-links a:hover {
  color: #D4AF37;
  transform: translateX(8px);
}

/* Kiedy overlay jest otwarty, animuj linki ze spokojnymi, luksusowymi interwałami */
.nav-mobile-overlay.open .nav-mobile-links a:nth-child(1) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.nav-mobile-overlay.open .nav-mobile-links a:nth-child(2) { transition-delay: 0.38s; opacity: 1; transform: translateY(0); }
.nav-mobile-overlay.open .nav-mobile-links a:nth-child(3) { transition-delay: 0.51s; opacity: 1; transform: translateY(0); }
.nav-mobile-overlay.open .nav-mobile-links a:nth-child(4) { transition-delay: 0.64s; opacity: 1; transform: translateY(0); }
.nav-mobile-overlay.open .nav-mobile-links a:nth-child(5) { transition-delay: 0.77s; opacity: 1; transform: translateY(0); }
.nav-mobile-overlay.open .nav-mobile-links a:nth-child(6) { transition-delay: 0.90s; opacity: 1; transform: translateY(0); }

.nav-mobile-footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.0s cubic-bezier(0.25, 1, 0.5, 1) 0.95s, transform 1.0s cubic-bezier(0.25, 1, 0.5, 1) 0.95s;
}

.nav-mobile-overlay.open .nav-mobile-footer {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12.5px;
  color: #BDB9B3;
}

.nav-mobile-contact a {
  color: #FFFFFF;
  text-decoration: none;
}

.nav-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(135deg, #9C6644 0%, #7F4F30 100%);
  border: 1px solid rgba(184, 134, 98, 0.4);
  color: #FFFFFF !important;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

/* Responsywny podział bez ścisku */
@media (max-width: 1080px) {
  .hdr-nav {
    display: none !important;
  }
  .nav-toggle {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .hdr-top {
    display: none !important;
  }
  .hdr-main-container {
    height: 60px;
    padding: 0 16px;
  }
  .hdr-brand {
    gap: 10px;
  }
  .hdr-crest-svg {
    width: 36px;
    height: 38px;
  }
  .brand-title {
    font-size: 13px;
  }
  .brand-sub {
    font-size: 9px;
  }
  .hdr-actions .cta {
    display: none !important;
  }
  .nav-toggle {
    display: flex !important;
  }
}


/* ── blok: hero-editorial-palais ── */
/* ── 2026 PALACE HERO: hero-editorial-palais (Dynamic Canvas Backdrop) ── */

/* Fixed Background Canvas — zaczyna w kolorze, z tyłu pod całą stroną */
.hero-fixed-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: #0C0B0B;
}

.hero-fixed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0%) contrast(105%) brightness(0.85);
  transform: scale(1.02);
  transition: filter 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: filter, transform;
}

/* Po przewinięciu w dół hero staje się czarno-biały */
.hero-fixed-img.passed-monochrome {
  filter: grayscale(100%) contrast(120%) brightness(0.55);
}

/* Subtle Fixed Vignette & Light Scrim */
.hero-fixed-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(14, 12, 12, 0.15) 0%, rgba(10, 9, 9, 0.75) 100%);
  pointer-events: none;
}

/* Pierwszy ekran z tekstem powitalnym — Wycentrowany, majestatyczny kadr */
.hero-palais {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 8vw, 100px) var(--gutter, 24px) clamp(48px, 6vw, 80px);
  background: transparent;
  z-index: 1;
}

.hero-palais-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #FFFFFF;
  padding: 0;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Eyebrow badge */
.hero-palais-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D4AF37;
  font-weight: 700;
  padding: 6px 16px;
  background: rgba(24, 22, 22, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-diamond {
  font-size: 8px;
  color: #D4AF37;
}

/* Main Heading Composition */
.hero-palais-heading {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-city-tag {
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: clamp(38px, 7.5vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 300;
  color: #FFFFFF;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.8);
}

.hero-title-main {
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: clamp(22px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 300;
  color: #FFFFFF;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero-title-main i {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 300;
  color: #D4AF37;
  margin: 0 4px;
}

/* Subtitle */
.hero-palais-sub {
  font-size: clamp(12.5px, 1.2vw, 15px);
  line-height: 1.5;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #F8F6F2;
  font-weight: 500;
  margin: 4px 0 0;
  max-width: 680px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

/* Scroll Cue */
.hero-palais-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: clamp(12px, 2.5vw, 24px);
  opacity: 0.9;
}

.hero-cue-line {
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, #D4AF37, transparent);
  animation: cueBounce 2s infinite ease-in-out;
}

@keyframes cueBounce {
  0%, 100% { transform: scaleY(0.6); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

.hero-cue-txt {
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-palais {
    min-height: 86svh;
    min-height: 86dvh;
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .hero-palais-content {
    gap: 12px;
  }
  .hero-city-tag {
    font-size: clamp(34px, 11vw, 56px);
  }
  .hero-title-main {
    font-size: clamp(20px, 6vw, 32px);
  }
  .hero-palais-sub {
    font-size: 12px;
    letter-spacing: 0.8px;
    line-height: 1.45;
  }
  .hero-palais-cue {
    display: none;
  }
}


/* ── blok: booking-bar-compact ── */
/* ── 2026 LUXURY BOOKING BAR: booking-bar-compact (Quiet Luxury Expandable Accordion) ── */
.booking-section {
  background: transparent;
  padding: clamp(28px, 4vw, 54px) var(--gutter, 24px) clamp(28px, 4vw, 50px);
  max-width: 1280px;
  margin: 0 auto;
}

/* ── 1. Luxury Collapsed Trigger Card ── */
.bk-trigger-card {
  background: rgba(22, 19, 19, 0.90);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 6px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.bk-trigger-card:hover {
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
}

.bk-trigger-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bk-trigger-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(38, 34, 34, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bk-trigger-icon {
  width: 20px;
  height: 20px;
  color: #D4AF37;
}

.bk-trigger-titles {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bk-trigger-badge {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #D4AF37;
}

.bk-trigger-heading {
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

/* Book Now Expand Button */
.bk-expand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  background: #96613F;
  background: linear-gradient(135deg, #9C6644 0%, #7F4F30 100%);
  border: 1px solid rgba(184, 134, 98, 0.4);
  color: #FFFFFF !important;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}

.bk-expand-btn:hover {
  background: linear-gradient(135deg, #A8714C 0%, #8D5838 100%);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
}

.bk-expand-arrow {
  font-size: 14px;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.bk-expand-btn.is-active .bk-expand-arrow {
  transform: rotate(180deg);
}

/* ── 2. Smooth Accordion Expandable Panel ── */
.bk-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  transition: grid-template-rows 0.65s cubic-bezier(0.25, 1, 0.5, 1),
              opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              margin-top 0.45s ease;
}

.bk-accordion-panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 16px;
}

.bk-accordion-inner {
  overflow: hidden;
  min-height: 0;
}

/* ── Booking Bar Internal Form ── */
.booking-bar {
  background: rgba(28, 25, 25, 0.94);
  min-height: 96px;
  display: flex;
  align-items: stretch;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.45);
  position: relative;
  border-radius: 4px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.bk-dates {
  display: flex;
  align-items: stretch;
  flex: 1 1 auto;
  position: relative;
}

.bk-field {
  flex: 1 1 0;
  min-width: 160px;
  padding: 16px 20px 14px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  background: rgba(38, 34, 34, 0.75);
  transition: background-color 0.25s;
}

.bk-field:hover {
  background: rgba(50, 45, 45, 0.85);
}

.bk-field:focus-visible {
  outline: 2px solid #D4AF37;
  outline-offset: -2px;
}

.bk-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #D4AF37;
}

.bk-field-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bk-label {
  display: block;
  font-size: 10.5px;
  line-height: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #D4AF37;
  pointer-events: none;
  white-space: nowrap;
}

.bk-value {
  display: block;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 20px;
  font-weight: 600;
  color: #FFFFFF !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Invisible Native Date Input Overlay */
.bk-date-native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  font-size: 16px;
}

/* Nights Indicator Badge */
.bk-nights-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: rgba(28, 25, 25, 0.88);
  position: relative;
  z-index: 1;
}

.bk-nights-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  white-space: nowrap;
}

.bk-moon-icon {
  width: 12px;
  height: 12px;
  color: #D4AF37;
}

.bk-nights-num {
  font-weight: 800;
  color: #D4AF37;
}

/* Vertical Hairline Dividers */
.bk-field + .bk-field::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(212, 175, 55, 0.3);
  pointer-events: none;
}

/* Guests Selector */
.bk-guests-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  flex: 1 1 auto;
}

.bk-guests-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(212, 175, 55, 0.3);
  pointer-events: none;
  z-index: 1;
}

.bk-guests {
  width: 100%;
  min-width: 200px;
  padding: 16px 20px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(38, 34, 34, 0.75);
  border: 0;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.25s;
}

.bk-guests:hover {
  background: rgba(50, 45, 45, 0.85);
}

.bk-guests .chev {
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #D4AF37;
  border-bottom: 2px solid #D4AF37;
  transform: rotate(45deg);
  transition: transform 0.25s;
}

.bk-guests[aria-expanded="true"] .chev {
  transform: rotate(-135deg);
}

/* Interactive Popover Modal */
.bk-guests-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 320px;
  background: rgba(22, 20, 20, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  padding: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 4px;
  backdrop-filter: blur(20px);
}

.bk-guests-popover[hidden] {
  display: none !important;
}

.bk-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.bk-counter-info strong {
  display: block;
  font-size: 13.5px;
  color: #FFFFFF;
}

.bk-counter-info small {
  display: block;
  font-size: 11px;
  color: #C5A880;
}

.bk-counter-ctrls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bk-btn-step {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(38, 34, 34, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: #D4AF37;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.bk-btn-step:hover {
  background: #9C6644;
  color: #fff;
}

.bk-count-val {
  font-size: 14px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  color: #FFFFFF;
}

.bk-suite-select label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 6px;
}

.bk-suite-select select {
  width: 100%;
  padding: 10px 12px;
  background: rgba(38, 34, 34, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #FFFFFF;
  font-size: 13px;
  border-radius: 2px;
  outline: none;
}

.bk-suite-select select option {
  background: #1C1A1A;
  color: #FFF;
}

.bk-promo-toggle input {
  width: 100%;
  padding: 10px 12px;
  background: rgba(38, 34, 34, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #FFFFFF;
  font-size: 13px;
  border-radius: 2px;
  box-sizing: border-box;
}

.bk-promo-toggle input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.bk-btn-apply {
  background: linear-gradient(135deg, #9C6644 0%, #7F4F30 100%);
  color: #fff;
  border: 1px solid rgba(184, 134, 98, 0.4);
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.2s;
}

.bk-btn-apply:hover {
  opacity: 0.9;
}

/* Submit Action Button */
.bk-submit {
  display: flex;
  align-items: stretch;
  flex: none;
}

.bk-submit-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 clamp(20px, 2.5vw, 36px);
  background: #96613F;
  background: linear-gradient(135deg, #9C6644 0%, #7F4F30 100%);
  border: 1px solid rgba(184, 134, 98, 0.4);
  color: #FFFFFF !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  min-height: 100%;
}

.bk-submit-cta:hover {
  background: linear-gradient(135deg, #A8714C 0%, #8D5838 100%);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
  color: #FFFFFF !important;
}

.bk-arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.25s;
}

.bk-submit-cta:hover .bk-arrow-icon {
  transform: translateX(4px);
}

/* Narrative Editorial Intro */
.booking-intro {
  margin-top: clamp(28px, 4vw, 48px);
  max-width: 960px;
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: clamp(15px, 1.8vw, 22px);
  line-height: 1.6;
  letter-spacing: -0.2px;
  color: #F8F6F2 !important;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* Responsive Mobile Layout */
@media (max-width: 1040px) {
  .booking-bar {
    flex-wrap: wrap;
  }
  .bk-dates {
    width: 100%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  }
  .bk-guests-wrapper {
    width: 55%;
  }
  .bk-submit {
    width: 45%;
  }
  .bk-submit-cta {
    width: 100%;
    min-height: 64px;
  }
}

@media (max-width: 768px) {
  .booking-section {
    padding: 24px 16px 20px;
  }
  .bk-trigger-card {
    padding: 12px 16px;
    gap: 12px;
  }
  .bk-trigger-icon-wrap {
    width: 36px;
    height: 36px;
  }
  .bk-trigger-icon {
    width: 18px;
    height: 18px;
  }
  .bk-trigger-badge {
    font-size: 9.5px;
  }
  .bk-trigger-heading {
    font-size: 15px;
  }
  .bk-expand-btn {
    padding: 10px 18px;
    font-size: 11.5px;
  }
  .bk-dates {
    flex-direction: column;
  }
  .bk-field {
    min-height: 52px;
    padding: 14px 16px;
  }
  .bk-nights-indicator {
    padding: 6px 0;
    border-top: 1px dashed rgba(212, 175, 55, 0.2);
    border-bottom: 1px dashed rgba(212, 175, 55, 0.2);
  }
  .bk-field + .bk-field::before,
  .bk-guests-wrapper::before {
    display: none;
  }
  .bk-guests-wrapper {
    width: 100%;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
  }
  .bk-guests {
    min-height: 54px;
    padding: 14px 16px;
  }
  .bk-guests-popover {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 16px 16px 0 0;
    padding: 24px 20px 36px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
    z-index: 1000;
  }
  .bk-submit {
    width: 100%;
  }
  .bk-submit-cta {
    padding: 16px 20px;
    min-height: 54px;
  }
  .booking-intro {
    font-size: 14.5px;
    line-height: 1.55;
    padding: 0 8px;
    margin-top: 24px;
  }
}


/* ── blok: stay-split-cards ── */
.stay-cards-wrap {
  padding: clamp(48px, 6vw, 84px) var(--gutter, 32px) clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 56px);
  max-width: 1280px;
  margin: 0 auto;
}

.stay-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
}

.stay-head h2 {
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0;
}

.stay-head p {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: #F4F0E8;
  margin: 0;
}

.stay-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.stay-item {
  position: relative;
  aspect-ratio: 566 / 436;
  overflow: hidden;
  background: var(--bg-dark, #222);
}

.stay-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.stay-item:hover img {
  transform: scale(1.05);
}

.stay-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.stay-name {
  position: absolute;
  inset: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
  padding: 0 16px;
}

.stay-btns {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(24px, 4vw, 50px);
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.btn-ghost {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.btn-ghost:hover {
  background: #fff;
  color: var(--text, #111);
}

@media (max-width: 820px) {
  .stay-items {
    grid-template-columns: 1fr;
  }
}


/* ── blok: rooms-carousel-tabs ── */
.rooms-carousel-section {
  background: var(--bg-dark, #1C1A1A);
  color: #fff;
  padding: clamp(48px, 6vw, 84px) var(--gutter, 24px) clamp(48px, 6vw, 90px);
}

.rooms-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.rooms-heading {
  color: #fff;
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: clamp(30px, 4.5vw, 64px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.04em;
  margin: 0;
}

.rooms-sub {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.6;
  color: #c4c4c4;
  margin: 0;
}

.rooms-track {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.rooms-track::-webkit-scrollbar {
  display: none;
}

.room {
  flex: none;
  width: clamp(280px, 42vw, 480px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.room-img {
  aspect-ratio: 525 / 367;
  overflow: hidden;
  background: #111;
  border-radius: 2px;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.room:hover .room-img img {
  transform: scale(1.05);
}

.room-content {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.room-name {
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

.room-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: #E8E4DC;
  margin: 0;
}

.room-action {
  margin-top: 6px;
}

.btn-room-inquire {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #D4AF37;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-room-inquire:hover {
  color: #fff;
  border-color: #fff;
}

.rooms-fn {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
}

.rooms-bar {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
}

.rooms-bar span {
  position: absolute;
  left: 0;
  top: -1px;
  height: 3px;
  background: #D4AF37;
  transition: width 0.4s, left 0.4s;
}

.rooms-nav {
  display: flex;
  gap: 10px;
}

.rooms-nav button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.rooms-nav button:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

@media (max-width: 768px) {
  .room {
    width: 82vw;
    min-width: 270px;
  }
  .rooms-fn {
    margin-top: 20px;
  }
  .rooms-nav button {
    width: 42px;
    height: 42px;
  }
}


/* ── blok: accordion-luxury-cards ── */
.features-accordion-wrap {
  padding: clamp(40px, 5vw, 60px) var(--gutter, 32px);
  max-width: 1280px;
  margin: 0 auto;
}

.features-title {
  margin-bottom: 24px;
}

.feat {
  border-bottom: 1px solid var(--border, rgba(0,0,0,0.12));
}

.feat-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 24px;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
}

.feat:first-child .feat-head {
  padding-top: 0;
}

.feat-head h3 {
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: clamp(26px, 3.8vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 300;
  color: var(--text, #111);
  transition: color 0.3s;
  margin: 0;
}

.feat-head:hover h3 {
  color: var(--primary, #8B6E4A);
}

.feat-sign {
  flex: none;
  width: 22px;
  height: 22px;
  position: relative;
}

.feat-sign::before,
.feat-sign::after {
  content: "";
  position: absolute;
  background: var(--text, #111);
  transition: transform 0.35s, opacity 0.35s;
}

.feat-sign::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 1.5px;
  transform: translateY(-50%);
}

.feat-sign::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
}

.feat.open .feat-sign::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

.feat-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feat.open .feat-body {
  grid-template-rows: 1fr;
}

.feat-body > div {
  overflow: hidden;
}

.feat-cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 20px;
  padding: 8px 0 36px;
}

.feat-card {
  position: relative;
  aspect-ratio: 840 / 680;
  overflow: hidden;
  background: var(--bg-dark, #1a1a1a);
  text-decoration: none;
}

.feat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.feat-card:hover img {
  transform: scale(1.06);
}

.feat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75));
  z-index: 1;
}

.feat-card-title {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0;
}

@media (max-width: 820px) {
  .feat-cards {
    grid-auto-flow: row;
    grid-auto-columns: auto;
  }
}


/* ── blok: editorial-collage ── */
.collage-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cl-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-dark, #111);
  text-decoration: none;
  display: block;
}

.cl-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

.cl-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cl-item:hover img {
  transform: scale(1.05);
}

.cl-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.75));
  z-index: 1;
}

.cl-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(20px, 3vw, 32px) clamp(24px, 4vw, 40px);
  color: #fff;
}

.cl-date {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 12px;
  color: var(--primary, #8B6E4A);
}

.cl-title {
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
  font-weight: 400;
}

.cl-title.d-48 {
  font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1.1;
}

.cl-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 3px;
  color: #fff;
}

@media (max-width: 820px) {
  .collage {
    grid-template-columns: 1fr;
  }
  .cl-item.big {
    grid-column: span 1;
    grid-row: span 1;
  }
}


/* ── blok: neighbourhood-staggered-grid ── */
.neigh-section {
  padding: clamp(54px, 7vw, 96px) var(--gutter, 32px) clamp(80px, 10vw, 180px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.neigh-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.neigh-head h2 {
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0;
}

.neigh-head p {
  font-size: clamp(14.5px, 1.3vw, 16px);
  line-height: 1.6;
  color: #F4F0E8;
  margin: 0;
}

.neigh-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 354px));
  justify-content: center;
  column-gap: 27px;
  row-gap: clamp(40px, 6vw, 90px);
  margin-top: 28px;
}

.neigh-items > *:nth-child(3n+2) {
  margin-top: 80px;
}

.neigh-item {
  position: relative;
  aspect-ratio: 354 / 472;
  overflow: hidden;
  background: var(--bg-dark, #1a1a1a);
}

.neigh-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.neigh-item:hover img {
  transform: scale(1.06);
}

.neigh-veil {
  position: absolute;
  inset: 0;
  background: var(--primary, #8B6E4A);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 36px 22px 32px;
  text-align: center;
  transform: translateX(-100%);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

.neigh-item:hover .neigh-veil,
.neigh-item:focus-within .neigh-veil {
  transform: translateX(0);
}

.neigh-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.neigh-top h3 {
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
  color: #fff;
}

.neigh-top p {
  font-size: 12.5px;
  line-height: 1.55;
  opacity: 0.95;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.btn-mini {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-size: 10.5px;
  line-height: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.btn-mini:hover {
  background: #fff;
  color: var(--primary, #8B6E4A);
}

.neigh-count {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-align: center;
  font-weight: 600;
  color: var(--primary, #8B6E4A);
}

@media (max-width: 1024px) {
  .neigh-items {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    row-gap: 32px;
  }
  .neigh-items > *:nth-child(3n+2) {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .neigh-items {
    grid-template-columns: 1fr;
  }
  .neigh-veil {
    transform: translateX(-100%);
  }
  .neigh-item:active .neigh-veil,
  .neigh-item:hover .neigh-veil {
    transform: translateX(0);
  }
}


/* ── blok: membership-club-split ── */
/* ── 2026 LUXURY VIP CLUB & RESERVATION: membership-club-split (Dark Glass Prim Mobile Optimized) ── */
.insider-club-section {
  position: relative;
  z-index: 8;
  width: 100%;
  background: rgba(14, 12, 12, 0.94);
  border-top: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 -30px 80px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: clamp(48px, 7vw, 100px) var(--gutter, 24px) clamp(48px, 7vw, 90px);
}

.insider-container {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 56px);
}

.insider-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.insider-logo {
  margin-bottom: 16px;
}

.insider-svg {
  width: 58px;
  height: 62px;
  color: #D4AF37;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.insider-rich {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 860px;
}

.insider-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(36, 32, 32, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #D4AF37;
}

.badge-dot {
  font-size: 7px;
}

.insider-title {
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: clamp(26px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #FFFFFF !important;
  margin: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.insider-desc {
  font-size: clamp(14.5px, 1.4vw, 18px);
  line-height: 1.6;
  color: #E8E4DC !important;
  max-width: 760px;
  margin: 0;
}

.insider-benefits {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  padding: 0;
  list-style: none;
}

.insider-benefits li {
  font-size: 11.5px;
  line-height: 18px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #F8F6F2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.insider-benefits li::before {
  content: "◆";
  color: #D4AF37;
  font-size: 8px;
}

/* Form Container */
.insider-form-wrap {
  background: rgba(22, 19, 19, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 4px;
  padding: clamp(24px, 4vw, 54px) clamp(16px, 3.5vw, 54px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.insider-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fld-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.fld {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fld-full {
  width: 100%;
}

.fld label {
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #D4AF37;
}

.fld input,
.fld-select {
  font-family: inherit;
  font-size: 15px;
  padding: 10px 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  background: transparent;
  outline: none;
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
  color: #FFFFFF !important;
}

.fld input::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
}

.fld input:focus,
.fld-select:focus {
  border-bottom-color: #D4AF37;
  box-shadow: 0 1px 0 #D4AF37;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 40%;
  width: 7px;
  height: 7px;
  border-right: 2px solid #D4AF37;
  border-bottom: 2px solid #D4AF37;
  transform: rotate(45deg);
  pointer-events: none;
}

.fld-select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  padding-right: 24px;
}

.fld-select option {
  background: #181515;
  color: #FFFFFF;
}

/* Submit Action Button */
.insider-form-wrap .actions {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.btn-club-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #96613F;
  background: linear-gradient(135deg, #9C6644 0%, #7F4F30 100%);
  border: 1px solid rgba(184, 134, 98, 0.45);
  color: #FFFFFF !important;
  padding: 18px 48px;
  min-width: 280px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.btn-club-submit:hover {
  background: linear-gradient(135deg, #A8714C 0%, #8D5838 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.6);
}

.submit-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s;
}

.btn-club-submit:hover .submit-arrow {
  transform: translateX(4px);
}

/* Success Confirmation Box */
.form-feedback-success {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 24px;
  background: rgba(26, 23, 23, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.55);
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.form-feedback-success[hidden] {
  display: none !important;
}

.feedback-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  background: #2ECC71;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.4);
}

.form-feedback-success h4 {
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: 24px;
  color: #FFFFFF !important;
  margin: 0 0 10px;
}

.form-feedback-success p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #E8E4DC !important;
  margin: 0;
}

/* Mobile Ergonomics & Prevent iOS Zoom */
@media (max-width: 768px) {
  .fld-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .fld input,
  .fld-select {
    font-size: 16px !important; /* Prevents auto-zoom on iOS Safari */
    min-height: 44px;
  }
  .btn-club-submit {
    width: 100%;
    min-width: auto;
    padding: 16px 20px;
    font-size: 12.5px;
  }
}


/* ── blok: footer-palais-columns ── */
/* ── 2026 GRAND PALACE FOOTER: footer-palais-columns (Dark Glass Prim Mobile Optimized) ── */
.footer-palais {
  position: relative;
  z-index: 10;
  background: rgba(12, 10, 10, 0.96);
  border-top: 1px solid rgba(212, 175, 55, 0.4);
  color: #F8F6F2;
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.foot-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 100px) var(--gutter, 24px) clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 64px);
}

.foot-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(36px, 5vw, 80px);
}

.foot-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 440px;
}

.foot-crest-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.foot-svg {
  width: 48px;
  height: 52px;
  color: #D4AF37;
  flex-shrink: 0;
}

.foot-brand-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.foot-title {
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.foot-subtitle {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #C5A880;
  text-transform: uppercase;
}

.foot-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #D6D2C8;
  margin: 0;
}

.foot-service-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(36, 32, 32, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #F8F6F2;
  width: fit-content;
}

.service-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ECC71;
  box-shadow: 0 0 8px #2ECC71;
}

/* 4-column Navigation Grid */
.foot-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}

.foot-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-col h4 {
  font-family: var(--font-heading, "Playfair Display", Georgia, serif);
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #D4AF37 !important;
}

.foot-col a {
  font-size: 12.5px;
  line-height: 1.5;
  color: #D6D2C8;
  text-decoration: none;
  transition: color 0.25s, transform 0.25s;
  display: inline-block;
  width: fit-content;
}

.foot-col a:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

/* Bottom Legal Bar */
.foot-bottom {
  padding-top: clamp(20px, 3vw, 32px);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 11.5px;
  color: #BDB9B3;
  letter-spacing: 0.5px;
}

.foot-legal-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.foot-hallmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #D4AF37;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hallmark-diamond {
  font-size: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .foot-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .foot-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }
}

@media (max-width: 580px) {
  .foot-nav-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}


/* ── efekt: cinematic-chapter-flow ── */
/* ── EFEKT: cinematic-chapter-flow (Wzór The Real Hotels — Frosted Glass Veil & Monochrome Memory) ── */

body {
  background: #0C0B0B;
  color: #F8F6F2;
}

/* 1. SZKLANA SZYBA (FROSTED GLASS VEIL): Lekko rozmywa obraz z tyłu zachowując kinową głębię */
.section,
.booking-section {
  position: relative;
  z-index: 5;
  background: rgba(18, 16, 16, 0.76) !important;
  backdrop-filter: blur(20px) saturate(135%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(135%) !important;
  border-top-left-radius: clamp(28px, 4vw, 48px);
  border-top-right-radius: clamp(28px, 4vw, 48px);
  margin-top: clamp(-36px, -4vw, -24px);
  box-shadow: 0 -25px 60px rgba(0, 0, 0, 0.7);
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  color: #F8F6F2 !important;
  transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.section--surface,
.section--alt,
.section--bg {
  background: rgba(18, 16, 16, 0.76) !important;
}

/* 2. DYNAMICZNY MONOCHROM NA PRZEWINIĘTEJ / MIJANEJ TREŚCI */
.section.passed-monochrome {
  filter: grayscale(100%) brightness(0.65) contrast(110%);
}

.stay-item.passed-monochrome img,
.room.passed-monochrome .room-img img,
.feat-card.passed-monochrome img,
.cl-item.passed-monochrome img,
.neigh-item.passed-monochrome img {
  filter: grayscale(100%) brightness(0.62) contrast(115%) !important;
}

/* Płynne przejście filtrów dla wszystkich obrazów w sekcjach */
.stay-item img,
.room-img img,
.feat-media img,
.cl-item img,
.neigh-item img {
  transition: filter 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              clip-path 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sekcja rezerwacji / CTA bezpośrednio pod Hero */
.booking-section {
  z-index: 6;
  margin-top: -30px;
  background: rgba(22, 19, 19, 0.80) !important;
  backdrop-filter: blur(24px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(140%) !important;
}

.booking-bar {
  background: rgba(28, 25, 25, 0.88) !important;
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5) !important;
}

.bk-field {
  background: rgba(36, 32, 32, 0.8) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
}

.bk-guests {
  background: rgba(36, 32, 32, 0.8) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
}

.bk-guests-popover {
  background: rgba(22, 20, 20, 0.98) !important;
  border: 1px solid rgba(212, 175, 55, 0.5) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7) !important;
}

/* KRYSTALICZNIE JASNA TYPOGRAFIA NA CAŁEJ STRONIE */
h1, h2, h3, h4, h5, h6,
.section h1, .section h2, .section h3, .section h4,
.features-title h2, .feat-head h3, .stay-head h2, 
.neigh-head h2, .rooms-heading, .cl-title, .neigh-top h3 {
  color: #FFFFFF !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

p, span, label,
.section p, .section-header p,
.booking-intro, .stay-head p, .stay-sub,
.rooms-sub, .room-desc, .neigh-head p,
.feat-desc, .feat-body p, .prose p {
  color: #F4F0E8 !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.eyebrow, .feat-eyebrow, .rooms-eyebrow, .neigh-eyebrow {
  color: #D4AF37 !important;
}

/* Znaczniki akordeonu i linie */
.feat-sign::before,
.feat-sign::after {
  background: #D4AF37 !important;
}

.feat {
  border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
}

/* Karty w sekcjach (Pokoje, Udogodnienia, Galeria, Okolica) */
.stay-card,
.room-card,
.feat-card,
.cl-item,
.neigh-card,
.neigh-item,
.room {
  background: rgba(26, 23, 23, 0.8) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

.feat-tab,
.room-tab {
  color: rgba(255, 255, 255, 0.75) !important;
}

.feat-tab.active,
.room-tab.active {
  color: #FFFFFF !important;
  border-bottom-color: #D4AF37 !important;
}

/* Ostatnia ciemna sekcja klubu na dole */
.insider-club-section,
section:last-of-type {
  border-top-left-radius: clamp(32px, 5vw, 56px);
  border-top-right-radius: clamp(32px, 5vw, 56px);
  background: rgba(12, 10, 10, 0.96) !important;
  box-shadow: 0 -35px 80px rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(212, 175, 55, 0.6);
  z-index: 10;
}

/* Mosiężny szew świetlny na szczycie każdej sekcji */
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(84%, 1060px);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.2) 20%,
    rgba(212, 175, 55, 0.8) 50%,
    rgba(212, 175, 55, 0.2) 80%,
    transparent 100%
  );
  border-radius: 2px;
  pointer-events: none;
}

/* 3. Kinowe odsłanianie fotografii przy wejściu (The Real Hotels Mask Wipe) */
.stay-card-img img,
.room-card-media img,
.feat-media img,
.cl-media img,
.neigh-media img,
.room-img img {
  clip-path: inset(6% 0 6% 0 round 6px);
  transform: scale(1.08);
  transition: clip-path 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.3s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.stay-item.active .stay-card-img img,
.room-card.active .room-card-media img,
.feat-card.active .feat-media img,
.cl-item.active .cl-media img,
.neigh-item.active .neigh-media img,
.room.active .room-img img {
  clip-path: inset(0 0 0 0 round 0px);
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .stay-card-img img,
  .room-card-media img,
  .feat-media img,
  .cl-media img,
  .neigh-media img,
  .room-img img {
    clip-path: none !important;
    transform: none !important;
  }
  .section.passed-monochrome,
  .hero-fixed-img.passed-monochrome {
    filter: none !important;
  }
}


/* ── efekt: cinematic-zoom-hover ── */
/* EFEKT: cinematic-zoom-hover — filmowy, powolny zoom zdjęć */
.cl-item img,
.stay-item img,
.feat-card img,
.room-img img,
.neigh-item img {
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cl-item:hover img,
.stay-item:hover img,
.feat-card:hover img,
.room:hover .room-img img,
.neigh-item:hover img {
  transform: scale(1.06);
}


/* ── efekt: editorial-scrim-gradient ── */
/* EFEKT: editorial-scrim-gradient — przyciemnienie dolnej strefy zdjęć pod tekst */
.cl-item::after,
.feat-card::after,
.stay-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.75));
  pointer-events: none;
  z-index: 1;
}


/* ── efekt: brass-veil-reveal ── */
/* EFEKT: brass-veil-reveal — boczna kurtyna informacyjna */
.neigh-veil {
  position: absolute;
  inset: 0;
  background: var(--primary, #8B6E4A);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 44px 24px 40px;
  text-align: center;
  transform: translateX(-100%);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

.neigh-item:hover .neigh-veil,
.neigh-item:focus-within .neigh-veil {
  transform: translateX(0);
}

@media (max-width: 768px) {
  .neigh-veil {
    transform: translateX(-100%);
  }
  .neigh-item:active .neigh-veil,
  .neigh-item:hover .neigh-veil {
    transform: translateX(0);
  }
}


/* ── efekt: staggered-gallery-offset ── */
/* EFEKT: staggered-gallery-offset — asymetryczne przesunięcie środkowej kolumny */
@media (min-width: 821px) {
  .neigh-items > *:nth-child(3n+2) {
    margin-top: 101px;
  }
}


/* ── efekt: snap-track-progress ── */
/* EFEKT: snap-track-progress — pasek postępu karuzeli */
.rooms-bar {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  position: relative;
}

.rooms-bar span {
  position: absolute;
  left: 0;
  top: -1px;
  height: 3px;
  background: var(--primary, #8B6E4A);
  transition: width 0.4s, left 0.4s;
}
