/* ============================================================
   RIVER HOTEL KÖNIGSTEIN — shared stylesheet
   Design refresh mockup v0.1
   ============================================================ */

:root {
  --gold: #c09b75;
  --gold-dark: #a57f58;
  --gold-light: #d9c0a3;
  --ink: #1a1a1a;
  --ink-soft: #2c2c2c;
  --muted: #8a8a8a;
  --line: #e8e4df;
  --cream: #faf8f5;
  --white: #ffffff;
  --shadow: 0 20px 60px -30px rgba(26, 26, 26, 0.25);
  --radius: 2px;
  --serif: 'Cormorant Garamond', 'Roboto Slab', Georgia, serif;
  --sans: 'Inter', 'Montserrat', -apple-system, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  position: relative;
  padding-left: 48px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.centered { padding-left: 0; padding: 0 48px; }
.eyebrow.centered::before { left: 0; }
.eyebrow.centered::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--white);
  cursor: pointer;
  transition: all .3s ease;
}
.btn:hover { background: transparent; color: var(--gold); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

/* ---------- HEADER ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  padding: 10px 0;
  letter-spacing: 0.05em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar .info { display: flex; gap: 32px; }
.topbar .info span::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
.lang-switch { display: flex; gap: 16px; font-weight: 500; }
.lang-switch a { padding: 2px 0; border-bottom: 1px solid transparent; }
.lang-switch a.active { color: var(--gold); border-color: var(--gold); }

header.site-header {
  position: absolute;
  top: 37px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 24px 0;
}
header.site-header.solid {
  position: relative;
  top: 0;
  background: var(--ink);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.logo-mark {
  width: 44px; height: 44px;
  border: 1.5px solid var(--white);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}
.logo-text {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.logo-text small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 2px;
}
nav ul {
  display: flex;
  gap: 44px;
  list-style: none;
}
nav a {
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all .3s ease;
}
nav a:hover::after, nav a.active::after { width: 100%; left: 0; }
nav a.active { color: var(--gold); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 180px;
  background:
    linear-gradient(180deg, rgba(26,26,26,.35) 0%, rgba(26,26,26,.15) 40%, rgba(26,26,26,.85) 100%),
    var(--hero-image, linear-gradient(135deg, #3a4a5c 0%, #1a2838 50%, #0c1520 100%));
  background-size: cover;
  background-position: center;
  color: var(--white);
  /* POZOR: žádné overflow:hidden — .res-bar záměrně přesahuje pod spodní hranu hero */
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  color: var(--white);
  margin-top: 24px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.hero p.lead {
  font-size: 18px;
  font-weight: 300;
  max-width: 580px;
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Sub-hero (smaller hero for inner pages) */
.subhero {
  position: relative;
  padding: 240px 0 120px;
  background:
    linear-gradient(180deg, rgba(26,26,26,.55) 0%, rgba(26,26,26,.85) 100%),
    var(--subhero-image, linear-gradient(135deg, #3a4a5c 0%, #1a2838 60%, #0c1520 100%));
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}
.subhero .container { position: relative; z-index: 2; }
.subhero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 5.5vw, 78px);
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.subhero h1 em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.subhero p.lead {
  font-size: 17px;
  max-width: 620px;
  color: rgba(255,255,255,.78);
}
.breadcrumb {
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 10px; color: var(--gold); }

/* Reservation bar floating over hero bottom */
.res-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 10;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  width: calc(100% - 64px);
  max-width: 1100px;
}
.res-bar .field { display: flex; flex-direction: column; gap: 4px; }
.res-bar label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.res-bar .val {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
}
.res-bar .divider {
  width: 1px;
  height: 40px;
  background: var(--line);
}

/* ---------- SECTIONS ---------- */
section { padding: 160px 0; }
section.tight { padding: 120px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.section-head h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin: 20px 0 20px;
}
.section-head h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

/* ---------- FOOTER ---------- */
footer {
  background: #0f0f0f;
  color: rgba(255,255,255,.6);
  padding: 80px 0 32px;
}
footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
footer h4 {
  color: var(--white);
  font-size: 14px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
footer .col p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 12px; font-size: 14px; }
footer ul a:hover { color: var(--gold); }
footer .socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
footer .socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center;
  font-size: 12px;
  transition: all .3s;
}
footer .socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  footer .grid { grid-template-columns: 1fr 1fr; }
}
/* Hamburger tlačítko — viditelné jen na mobilu */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  /* flex-shrink:0 je zásadní — bez něj flexbox tlačítko zmáčkl na 20 px,
     padding sežral celou vnitřní šířku a tři proužky se vykreslily
     s nulovou šířkou, tzn. hamburger byl na mobilu neviditelný. */
  flex: 0 0 44px;
  padding: 11px 10px;
  /* explicitní barva — color:inherit dávalo tmavou na tmavém pozadí */
  color: var(--white);
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  transition: transform .3s ease, opacity .3s ease;
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  section { padding: 100px 0; }
  .nav-toggle { display: flex; }

  /* Logo a tlačítko rezervace se na mobilu zmenší, aby se do řádku
     vešel i hamburger a hlavička nepřerostla do hero sekce. */
  .site-header .container { position: relative; gap: 12px; }
  .logo { gap: 10px; }
  .logo-mark { width: 34px; height: 34px; font-size: 17px; }
  .logo-text { font-size: 15px; letter-spacing: 0.16em; }
  .logo-text small { font-size: 8px; letter-spacing: 0.2em; }
  .btn-book-header { padding: 12px 16px; font-size: 11px; letter-spacing: 0.12em; }

  .site-header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    box-shadow: var(--shadow);
  }
  .site-header.nav-open nav { max-height: 80vh; }
  .site-header nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }
  .site-header nav ul li a {
    display: block;
    padding: 15px 28px;
    color: var(--white);
  }
  .topbar .info { display: none; }
  .hero { padding-bottom: 220px; }
  .hero h1 { font-size: 48px; }
  .subhero { padding: 180px 0 80px; }
  .res-bar {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    padding: 20px;
    gap: 16px;
    text-align: center;
  }
  .res-bar .divider { display: none; }
  .res-bar .btn { width: 100%; }
  footer .grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   HOME PAGE (home.php)
   ============================================================ */
  /* ===== Homepage-specific ===== */
  .about {
    background: var(--cream);
    padding-top: 220px;
  }
  .about .grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 96px;
    align-items: center;
  }
  .about-img {
    aspect-ratio: 4/5;
    background: var(--about-image, linear-gradient(135deg, #d4c4b0 0%, #8a7558 100%));
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  .about-img .badge {
    position: absolute;
    left: -40px; bottom: 48px;
    background: var(--ink);
    color: var(--white);
    padding: 24px 32px;
    text-align: center;
  }
  .about-img .badge .num {
    font-family: var(--serif);
    font-size: 48px;
    line-height: 1;
    color: var(--gold);
  }
  .about-img .badge .lbl {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 6px;
    color: rgba(255,255,255,.8);
  }
  .about h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    margin: 24px 0 28px;
  }
  .about h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
  .about p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--ink-soft);
    margin-bottom: 20px;
  }
  .about .signature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }
  .about .signature-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--ink);
  }
  .about .signature-text small {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
  }

  .rooms { background: var(--white); }
  .rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .room-card {
    background: var(--cream);
    position: relative;
    transition: transform .4s ease;
  }
  .room-card:hover { transform: translateY(-6px); }
  .room-img {
    aspect-ratio: 4/3;
    background: var(--room-image, linear-gradient(135deg, #b8a88f 0%, #6a5a43 100%));
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .room-tag {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--white);
    color: var(--ink);
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .room-body { padding: 32px 28px 36px; }
  .room-body h3 {
    font-size: 26px;
    margin-bottom: 8px;
  }
  .room-body .room-sub {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 20px;
  }
  .room-feats {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
  }
  .room-feats li {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.03em;
  }
  .room-feats li::before {
    content: '✓';
    color: var(--gold);
    margin-right: 6px;
  }
  .room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .room-price .from {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .room-price .amount {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--ink);
  }
  .room-price .amount small {
    font-size: 14px;
    color: var(--muted);
  }
  .room-link {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .room-link::after { content: '→'; transition: transform .3s; }
  .room-link:hover::after { transform: translateX(6px); }

  .services {
    background: var(--ink);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .services .section-head h2 { color: var(--white); }
  .services .section-head p { color: rgba(255,255,255,.65); }
  .services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .service {
    padding: 48px 32px;
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: background .3s;
  }
  .service:last-child { border-right: none; }
  .service:hover { background: rgba(192,155,117,.06); }
  .service-icon {
    width: 48px; height: 48px;
    border: 1px solid var(--gold);
    display: grid; place-items: center;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 20px;
    margin-bottom: 32px;
  }
  .service h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 12px;
  }
  .service p {
    font-size: 14px;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
  }

  .experience { background: var(--cream); }
  .experience .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .experience .img-side {
    background: var(--exp-image, linear-gradient(135deg, #2a3848 0%, #0a1420 100%));
    background-size: cover;
    background-position: center;
    min-height: 540px;
    position: relative;
  }
  .experience .text-side {
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .experience h2 {
    font-size: clamp(32px, 3.5vw, 48px);
    margin: 20px 0 28px;
  }
  .experience p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--ink-soft);
    margin-bottom: 20px;
  }
  .experience .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
  }
  .stat .num {
    font-family: var(--serif);
    font-size: 42px;
    color: var(--gold);
    line-height: 1;
  }
  .stat .lbl {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 8px;
  }

  .gallery { background: var(--white); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 160px;
    gap: 16px;
  }
  .gallery-grid .g {
    background: linear-gradient(135deg, #b8a88f, #6a5a43);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform .4s ease;
  }
  /* POZN: tady byl ::after s content:'[ Fotografie ]' z designového mockupu.
     Šablona plní .g reálnými fotkami přes inline background-image, což
     přebije jen gradient — popisek se vykresloval přes každou fotku. */
  .gallery-grid .g:hover { transform: scale(1.01); }
  .gallery-grid .g1 { grid-column: span 6; grid-row: span 2; background: linear-gradient(135deg, #a4b5c4, #2a3848); }
  .gallery-grid .g2 { grid-column: span 3; grid-row: span 1; background: linear-gradient(135deg, #c4b8a4, #7a6a50); }
  .gallery-grid .g3 { grid-column: span 3; grid-row: span 1; background: linear-gradient(135deg, #b5a48a, #5c4e3a); }
  .gallery-grid .g4 { grid-column: span 3; grid-row: span 1; background: linear-gradient(135deg, #d4c4b0, #8a7558); }
  .gallery-grid .g5 { grid-column: span 3; grid-row: span 1; background: linear-gradient(135deg, #a09080, #4a3e2e); }
  .gallery-grid .g6 { grid-column: span 4; grid-row: span 1; background: linear-gradient(135deg, #8ea4b8, #1a2838); }
  .gallery-grid .g7 { grid-column: span 4; grid-row: span 1; background: linear-gradient(135deg, #c4b09a, #6a5440); }
  .gallery-grid .g8 { grid-column: span 4; grid-row: span 1; background: linear-gradient(135deg, #a8b8a0, #3a4a32); }
  .gallery-cta { text-align: center; margin-top: 64px; }

  .location {
    background: var(--ink);
    color: var(--white);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 540px;
  }
  .location .info-side {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .location .info-side h2 {
    font-size: clamp(36px, 4vw, 52px);
    color: var(--white);
    margin: 20px 0 32px;
  }
  .location .info-side h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
  .location .info-side p {
    color: rgba(255,255,255,.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
  }
  .contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  .contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .contact-list .icon {
    width: 36px; height: 36px;
    border: 1px solid var(--gold);
    display: grid; place-items: center;
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
  }
  .contact-list .lbl {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
  }
  .contact-list .val {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--white);
  }
  .location .map-side {
    background: linear-gradient(135deg, #2a3848 0%, #0a1420 100%);
    position: relative;
    min-height: 480px;
  }
  .location .map-side iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  @media (max-width: 1024px) {
    .about .grid, .experience .split, .location { grid-template-columns: 1fr; }
    .rooms-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .services-grid .service:nth-child(2) { border-right: none; }
    .experience .text-side { padding: 64px 40px; }
    .location .info-side { padding: 64px 40px; }
  }
  @media (max-width: 768px) {
    .about { padding-top: 160px; }
    .rooms-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .services-grid .service { border-right: none; }
    .gallery-grid .g1 { grid-column: span 12; }
    .gallery-grid .g2, .gallery-grid .g3, .gallery-grid .g4, .gallery-grid .g5 { grid-column: span 6; }
    .gallery-grid .g6, .gallery-grid .g7, .gallery-grid .g8 { grid-column: span 12; }
  }

/* ============================================================
   UBYTOVANI PAGE (ubytovani.php)
   ============================================================ */
  /* ===== Ubytování page ===== */
  .rooms-intro {
    background: var(--cream);
    padding: 120px 0;
  }
  .rooms-intro .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  .rooms-intro .feat h3 {
    font-size: 22px;
    margin: 20px 0 8px;
  }
  .rooms-intro .feat p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
  }
  .rooms-intro .feat .icon {
    width: 56px; height: 56px;
    border: 1px solid var(--gold);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: 22px;
    margin: 0 auto;
  }

  .room-detail {
    padding: 140px 0;
    background: var(--white);
  }
  .room-detail:nth-child(even) { background: var(--cream); }

  .room-detail .split {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .room-detail:nth-child(even) .split { direction: rtl; }
  .room-detail:nth-child(even) .split > * { direction: ltr; }

  .room-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    aspect-ratio: 5/4;
  }
  .room-gallery .img {
    background: linear-gradient(135deg, #b8a88f 0%, #6a5a43 100%);
    position: relative;
  }
  .room-gallery .img::after {
    content: '[ Foto ]';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.4);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .room-gallery .img.main { grid-row: span 2; }
  .room-gallery .img.b { background: linear-gradient(135deg, #a4b5c4, #2a3848); }
  .room-gallery .img.c { background: linear-gradient(135deg, #d4c4b0, #8a7558); }

  .room-info .price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: var(--ink);
    color: var(--white);
    padding: 12px 20px;
    margin-bottom: 24px;
  }
  .room-info .price-tag .from {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .room-info .price-tag .amount {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--white);
  }
  .room-info .price-tag small { font-size: 12px; color: rgba(255,255,255,.6); }
  .room-info h2 {
    font-size: clamp(36px, 4vw, 56px);
    margin-bottom: 20px;
  }
  .room-info h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
  .room-info p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--ink-soft);
    margin-bottom: 20px;
  }
  .amenities {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin: 32px 0;
    padding: 32px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .amenities li {
    font-size: 14px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .amenities li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .room-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
  }

  .cta-band {
    background: var(--ink);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .cta-band h2 {
    font-size: clamp(36px, 4vw, 54px);
    color: var(--white);
    margin: 20px 0 24px;
  }
  .cta-band h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
  .cta-band p {
    color: rgba(255,255,255,.7);
    font-size: 17px;
    max-width: 580px;
    margin: 0 auto 40px;
  }

  @media (max-width: 1024px) {
    .room-detail .split { grid-template-columns: 1fr; gap: 48px; }
    .room-detail:nth-child(even) .split { direction: ltr; }
    .rooms-intro .grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }
  @media (max-width: 640px) {
    .room-detail { padding: 80px 0; }
    .amenities { grid-template-columns: 1fr; }
    .rooms-intro .grid { grid-template-columns: 1fr; }
  }

/* ============================================================
   HISTORIE PAGE (historie.php)
   ============================================================ */
  /* ===== History page ===== */
  .article {
    padding: 140px 0;
    background: var(--white);
  }
  .article .container-narrow { max-width: 820px; }
  .article .lead-para {
    font-family: var(--serif);
    font-size: 26px;
    line-height: 1.5;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--line);
  }
  .article p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--ink-soft);
    margin-bottom: 24px;
  }
  .article p.dropcap::first-letter {
    font-family: var(--serif);
    font-size: 82px;
    font-weight: 400;
    float: left;
    line-height: 0.85;
    padding: 8px 14px 0 0;
    color: var(--gold);
  }
  .article h3 {
    font-size: 32px;
    margin: 64px 0 20px;
  }
  .article h3 em { font-style: italic; color: var(--gold); font-weight: 400; }

  .pull-image {
    margin: 64px 0;
    position: relative;
  }
  .pull-image .img {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #2a3848 0%, #0a1420 100%);
    position: relative;
  }
  .pull-image .img::after {
    content: '[ Historická fotografie lodi ]';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.4);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .pull-image figcaption {
    font-size: 12px;
    color: var(--muted);
    margin-top: 16px;
    padding-left: 20px;
    border-left: 2px solid var(--gold);
    font-style: italic;
  }

  /* Timeline */
  .timeline-section {
    background: var(--cream);
    padding: 140px 0;
  }
  .timeline {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 0;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 1px;
    background: var(--line);
    transform: translateX(-50%);
  }
  .tl-item {
    position: relative;
    width: 50%;
    padding: 0 60px 80px;
  }
  .tl-item:nth-child(odd) {
    left: 0;
    text-align: right;
  }
  .tl-item:nth-child(even) {
    left: 50%;
  }
  .tl-item::before {
    content: '';
    position: absolute;
    top: 8px;
    width: 14px; height: 14px;
    background: var(--cream);
    border: 2px solid var(--gold);
    border-radius: 50%;
  }
  .tl-item:nth-child(odd)::before { right: -7px; }
  .tl-item:nth-child(even)::before { left: -7px; }
  .tl-year {
    font-family: var(--serif);
    font-size: 42px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
  }
  .tl-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .tl-item p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.7;
  }

  /* Stats row */
  .stats-row {
    background: var(--ink);
    color: var(--white);
    padding: 100px 0;
  }
  .stats-row .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
  }
  .stats-row .stat .num {
    font-family: var(--serif);
    font-size: 64px;
    color: var(--gold);
    line-height: 1;
  }
  .stats-row .stat .lbl {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-top: 12px;
  }

  @media (max-width: 768px) {
    .timeline::before { left: 20px; }
    .tl-item { width: 100%; left: 0 !important; padding: 0 20px 60px 60px; text-align: left !important; }
    .tl-item::before { left: 13px !important; right: auto !important; }
    .stats-row .grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .article .lead-para { font-size: 20px; }
  }

/* ============================================================
   GALERIE PAGE (galerie.php)
   ============================================================ */
  /* ===== Gallery page ===== */
  .gallery-section {
    padding: 120px 0;
    background: var(--white);
  }
  .filter-bar {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 64px;
    flex-wrap: wrap;
  }
  .filter-bar button {
    background: transparent;
    border: 1px solid transparent;
    padding: 12px 24px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    transition: all .3s;
  }
  .filter-bar button:hover { color: var(--ink); }
  .filter-bar button.active {
    border-color: var(--gold);
    color: var(--gold);
  }

  .masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 140px;
    gap: 12px;
  }
  .masonry .photo {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, #b8a88f, #6a5a43);
    transition: transform .5s ease;
  }
  .masonry .photo::after {
    content: attr(data-label);
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.45);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
  }
  .masonry .photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26,26,26,.4) 100%);
    opacity: 0;
    transition: opacity .3s;
    z-index: 1;
  }
  .masonry .photo:hover::before { opacity: 1; }
  .masonry .photo:hover { transform: scale(1.015); }

  /* Masonry layout pattern */
  .masonry .p1  { grid-column: span 6; grid-row: span 3; background: linear-gradient(135deg, #a4b5c4, #2a3848); }
  .masonry .p2  { grid-column: span 3; grid-row: span 2; background: linear-gradient(135deg, #c4b8a4, #7a6a50); }
  .masonry .p3  { grid-column: span 3; grid-row: span 2; background: linear-gradient(135deg, #b5a48a, #5c4e3a); }
  .masonry .p4  { grid-column: span 3; grid-row: span 2; background: linear-gradient(135deg, #d4c4b0, #8a7558); }
  .masonry .p5  { grid-column: span 3; grid-row: span 2; background: linear-gradient(135deg, #a09080, #4a3e2e); }
  .masonry .p6  { grid-column: span 4; grid-row: span 2; background: linear-gradient(135deg, #8ea4b8, #1a2838); }
  .masonry .p7  { grid-column: span 4; grid-row: span 2; background: linear-gradient(135deg, #c4b09a, #6a5440); }
  .masonry .p8  { grid-column: span 4; grid-row: span 2; background: linear-gradient(135deg, #a8b8a0, #3a4a32); }
  .masonry .p9  { grid-column: span 6; grid-row: span 2; background: linear-gradient(135deg, #9ab0c4, #2c4058); }
  .masonry .p10 { grid-column: span 3; grid-row: span 2; background: linear-gradient(135deg, #b8a48a, #5a4630); }
  .masonry .p11 { grid-column: span 3; grid-row: span 2; background: linear-gradient(135deg, #c4a890, #6a4a30); }
  .masonry .p12 { grid-column: span 4; grid-row: span 2; background: linear-gradient(135deg, #9ea890, #3a4a2a); }
  .masonry .p13 { grid-column: span 4; grid-row: span 2; background: linear-gradient(135deg, #b4a090, #5a4638); }
  .masonry .p14 { grid-column: span 4; grid-row: span 2; background: linear-gradient(135deg, #8a9ab4, #2c3c50); }

  .load-more {
    text-align: center;
    margin-top: 80px;
  }

  .quote-band {
    background: var(--cream);
    padding: 120px 0;
    text-align: center;
  }
  .quote-band blockquote {
    font-family: var(--serif);
    font-size: clamp(28px, 3.2vw, 42px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    color: var(--ink);
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
  }
  .quote-band blockquote::before,
  .quote-band blockquote::after {
    font-family: var(--serif);
    font-size: 80px;
    color: var(--gold);
    line-height: 0;
    position: absolute;
  }
  .quote-band blockquote::before { content: '"'; left: 0; top: 32px; }
  .quote-band blockquote::after { content: '"'; right: 0; bottom: -16px; }
  .quote-band cite {
    display: block;
    margin-top: 32px;
    font-family: var(--sans);
    font-size: 12px;
    font-style: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }

  @media (max-width: 1024px) {
    .masonry .p1 { grid-column: span 12; }
    .masonry .p2, .masonry .p3, .masonry .p4, .masonry .p5,
    .masonry .p10, .masonry .p11 { grid-column: span 6; }
    .masonry .p6, .masonry .p7, .masonry .p8,
    .masonry .p12, .masonry .p13, .masonry .p14 { grid-column: span 6; }
    .masonry .p9 { grid-column: span 12; }
  }
  @media (max-width: 640px) {
    .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
    .masonry .photo { grid-column: span 1 !important; grid-row: span 2 !important; }
    .masonry .p1, .masonry .p9 { grid-column: span 2 !important; }
  }

/* ============================================================
   KONTAKT PAGE (kontakt.php)
   ============================================================ */
  /* ===== Kontakt page ===== */
  .contact-main {
    padding: 140px 0;
    background: var(--white);
  }
  .contact-main .grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 96px;
    align-items: flex-start;
  }
  .contact-info h2 {
    font-size: clamp(32px, 3.5vw, 48px);
    margin: 20px 0 24px;
  }
  .contact-info h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
  .contact-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 32px;
  }
  .contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .contact-block {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  .contact-block:last-child { border-bottom: none; }
  .contact-block .icon {
    width: 48px; height: 48px;
    border: 1px solid var(--gold);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: 18px;
    flex-shrink: 0;
  }
  .contact-block .lbl {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .contact-block .val {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
  }
  .contact-block .val a:hover { color: var(--gold); }
  .contact-block .sub {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
  }

  .form-card {
    background: var(--cream);
    padding: 56px 48px;
    box-shadow: var(--shadow);
  }
  .form-card h3 {
    font-size: 28px;
    margin: 16px 0 12px;
  }
  .form-card p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 32px;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .form-field.full { grid-column: span 2; }
  .form-field label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
  }
  .form-field input,
  .form-field textarea,
  .form-field select {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 400;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    transition: border-color .3s;
  }
  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus {
    outline: none;
    border-bottom-color: var(--gold);
  }
  .form-field textarea {
    resize: vertical;
    min-height: 100px;
  }
  .form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    margin: 24px 0 32px;
  }
  .form-consent input { margin-top: 3px; }
  .form-consent a { color: var(--gold); border-bottom: 1px solid var(--gold); }

  /* Map section */
  .map-section {
    background: var(--ink);
    padding: 0;
    position: relative;
  }
  .map-section .map-placeholder {
    aspect-ratio: 21/9;
    background: linear-gradient(135deg, #2a3848 0%, #0a1420 100%);
    position: relative;
  }
  .map-section .map-placeholder::after {
    content: '[ Interaktivní mapa — Dvořákovo nábřeží, molo č. 7, Praha ]';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.4);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .map-section .pin {
    position: absolute;
    top: 50%; left: 50%;
    width: 56px; height: 56px;
    border: 2px solid var(--gold);
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -100%) rotate(-45deg);
    background: rgba(192,155,117,.15);
    pointer-events: none;
  }

  /* Directions */
  .directions {
    background: var(--cream);
    padding: 140px 0;
  }
  .directions .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .dir-card {
    background: var(--white);
    padding: 40px 36px;
    border-top: 2px solid var(--gold);
  }
  .dir-card .dir-icon {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--gold);
    width: 52px; height: 52px;
    border: 1px solid var(--gold);
    display: grid;
    place-items: center;
    margin-bottom: 24px;
  }
  .dir-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .dir-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--ink-soft);
  }

  @media (max-width: 1024px) {
    .contact-main .grid { grid-template-columns: 1fr; gap: 48px; }
    .directions .grid { grid-template-columns: 1fr; gap: 24px; }
  }
  @media (max-width: 640px) {
    .form-grid { grid-template-columns: 1fr; }
    .form-field.full { grid-column: span 1; }
    .form-card { padding: 36px 28px; }
  }

/* ============================================================
   REZERVACE PAGE (rezervace.php)
   ============================================================ */
  /* ===== Rezervace page ===== */
  .res-main {
    padding: 100px 0 60px;
    background: var(--cream);
  }
  .benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
  }
  .benefit {
    background: var(--white);
    padding: 32px 28px;
    border-left: 2px solid var(--gold);
  }
  .benefit .b-icon {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .benefit h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .benefit p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
  }

  /* Previo iframe wrapper */
  .previo-wrap {
    background: var(--white);
    padding: 48px;
    box-shadow: var(--shadow);
    margin-bottom: 48px;
  }
  .previo-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
    gap: 16px;
  }
  .previo-head h2 {
    font-size: 28px;
    margin: 0;
  }
  .previo-head h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
  .previo-head .secure {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .previo-head .secure::before {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    background: #4caf50;
    border-radius: 50%;
  }

  /* Previo iframe placeholder (skeleton that mimics Previo UI) */
  .previo-iframe {
    background: var(--cream);
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--line);
  }
  .previo-iframe .ph-inner {
    text-align: center;
    padding: 48px;
    max-width: 640px;
  }
  .previo-iframe .ph-tag {
    display: inline-block;
    background: var(--ink);
    color: var(--gold);
    padding: 6px 14px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .previo-iframe h3 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .previo-iframe p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
  }
  .previo-iframe code {
    display: block;
    background: var(--ink);
    color: #a8c4e8;
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    text-align: left;
    line-height: 1.6;
    border-left: 3px solid var(--gold);
    overflow-x: auto;
  }

  /* Info grid */
  .info-grid {
    background: var(--white);
    padding: 120px 0;
  }
  .info-grid .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
  .info-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--cream);
  }
  .info-card .num {
    font-family: var(--serif);
    font-size: 48px;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
  }
  .info-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .info-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--ink-soft);
  }

  /* FAQ */
  .faq-section {
    background: var(--cream);
    padding: 140px 0;
  }
  .faq-list {
    max-width: 820px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-item summary {
    padding: 28px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    transition: color .3s;
  }
  .faq-item summary:hover { color: var(--gold); }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-family: var(--serif);
    font-size: 32px;
    color: var(--gold);
    transition: transform .3s;
    font-weight: 300;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item .faq-body {
    padding: 0 0 28px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    max-width: 90%;
  }

  /* CTA fallback */
  .contact-cta {
    background: var(--ink);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
  }
  .contact-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .contact-cta h2 {
    color: var(--white);
    font-size: clamp(32px, 3.5vw, 48px);
    margin: 20px 0 20px;
  }
  .contact-cta h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
  .contact-cta p {
    color: rgba(255,255,255,.7);
    max-width: 560px;
    margin: 0 auto 40px;
  }
  .cta-phones {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .cta-phone {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--white);
  }
  .cta-phone small {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
  }

  @media (max-width: 1024px) {
    .benefits { grid-template-columns: 1fr 1fr; }
    .info-grid .grid { grid-template-columns: 1fr; }
    .previo-wrap { padding: 32px 24px; }
  }
  @media (max-width: 640px) {
    .benefits { grid-template-columns: 1fr; }
    .faq-item summary { font-size: 18px; }
  }

/* ============================================================
   RESPONZIVNÍ MŘÍŽKY
   ------------------------------------------------------------
   Tyhle mřížky byly dřív zapsané inline v šablonách
   (style="display:grid; grid-template-columns:…"). Inline styl
   přebije jakékoli pravidlo ze stylesheetu bez !important, takže
   na ně nezabíral žádný breakpoint a stránky zůstávaly na mobilu
   vícesloupcové. Desktopové hodnoty jsou převzaté 1:1, přibyly
   jen mobilní varianty.
   ============================================================ */

/* --- kontakt --- */
.grid-contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.grid-form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* --- detail pokoje (foto + text, foto na spad) --- */
.grid-room {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
}
.room-body { padding: 60px 56px; }
/* cena + CTA: na úzkém sloupci se zalomí pod sebe místo aby se dotýkaly */
.room-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.grid-amenities {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  padding: 0;
}

/* --- historie: timeline + statistiky --- */
.timeline { position: relative; padding: 40px 0; }
.timeline-line {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: var(--line);
  transform: translateX(-50%);
}
.timeline-item { position: relative; margin-bottom: 60px; }
.timeline-dot {
  position: absolute;
  left: 50%; top: 12px;
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.tl-text--right { text-align: right; padding-right: 40px; }
.tl-text--left  { padding-left: 40px; }
.tl-year {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 8px;
}
.tl-title { font-size: 22px; margin-bottom: 12px; }
.tl-desc  { color: var(--muted); font-size: 15px; }

.grid-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
/* auto-fit místo repeat(count($stats), 1fr) — zvládne libovolný počet
   statistik a sám se zalomí, takže se nemusí počítat v šabloně */
.grid-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .grid-room { grid-template-columns: 1fr; }
  .room-body { padding: 48px 40px; }
}

@media (max-width: 900px) {
  .grid-contact { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  /* timeline: z oboustranné na jednosloupcovou, čára i puntík doleva */
  .grid-timeline { grid-template-columns: 1fr; gap: 0; }
  .tl-text--right, .tl-text--left { text-align: left; padding: 0 0 0 36px; }
  .tl-spacer { display: none; }
  .timeline-line { left: 7px; transform: none; }
  .timeline-dot { left: 7px; transform: none; }
  .tl-year { font-size: 26px; }
  .grid-stats { gap: 20px; }
}

@media (max-width: 640px) {
  .grid-form-pair { grid-template-columns: 1fr; }
  .grid-amenities { grid-template-columns: 1fr; }
  .room-body { padding: 36px 24px; }
}

/* ============================================================
   TYPOGRAFIE OBSAHU Z DB (admin → Stránky)
   Globální reset na začátku souboru nuluje marginy i padding,
   takže HTML uložené klientem v adminu (<p>, <h2>, <ul>) by se
   jinak vykreslilo jako jeden slepenec bez odsazení.
   Týká se /historie a všech právních stránek ve všech jazycích.
   ============================================================ */
.legal-content > * + *,
.history-article article > * + * { margin-top: 24px; }

.legal-content p,
.history-article article p { line-height: 1.85; }

.legal-content h2,
.legal-content h3,
.history-article article h2,
.history-article article h3 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.25;
  margin-top: 52px;
  margin-bottom: -8px;   /* + 24px z pravidla výše = 16px pod nadpisem */
}
.legal-content h2, .history-article article h2 { font-size: 28px; }
.legal-content h3, .history-article article h3 { font-size: 22px; }
.legal-content > :first-child,
.history-article article > :first-child { margin-top: 0; }

.legal-content ul, .legal-content ol,
.history-article article ul, .history-article article ol { padding-left: 22px; }
.legal-content li, .history-article article li { margin-bottom: 8px; }
.legal-content li:last-child, .history-article article li:last-child { margin-bottom: 0; }

.legal-content a, .history-article article a {
  color: var(--gold-dark, var(--gold));
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content strong, .history-article article strong { color: var(--ink); font-weight: 600; }

@media (max-width: 640px) {
  .legal-content h2, .history-article article h2 { font-size: 24px; }
  .legal-content h3, .history-article article h3 { font-size: 20px; }
  .legal-content h2, .legal-content h3,
  .history-article article h2, .history-article article h3 { margin-top: 40px; }
}

/* ============================================================
   MAPA SE SOUHLASEM (views/partials/map-embed.php)
   Rodič musí mít position:relative a výšku (.location .map-side,
   .contact-map). Iframe i placeholder leží přes celou jeho plochu.
   ============================================================ */
.map-embed-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-consent {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, #2a3848 0%, #0a1420 100%);
}
.map-consent[hidden] { display: none; }
.map-consent-addr {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  max-width: 34ch;
}
.map-consent-note {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
  max-width: 42ch;
}
.map-consent-ext {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.map-consent-ext:hover { color: var(--white); }

@media (max-width: 640px) {
  .map-consent { gap: 12px; padding: 24px 20px; }
  .map-consent-addr { font-size: 17px; }
}

/* ============================================================
   KONTAKT — bez formuláře (views/pages/kontakt.php)
   Web žádný formulář nemá, hosté píšou přímo na e-mail.
   ============================================================ */
.contact-lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 54ch;
  margin-bottom: 40px;
}
.contact-direct {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-direct-item { min-width: 0; }
.contact-label {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-big {
  font-family: var(--serif);
  font-size: clamp(21px, 2.6vw, 27px);
  line-height: 1.25;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  word-break: break-word;
  transition: color .2s ease, border-color .2s ease;
}
.contact-big:hover, .contact-big:focus-visible { color: var(--gold); }
.contact-value {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
}
.contact-value--small { font-size: 15px; color: var(--ink-soft); }

.contact-book { margin-top: 40px; }
.contact-book h3 { font-size: 24px; margin-bottom: 12px; }
.contact-book p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .contact-direct { gap: 24px; padding: 24px 0; }
  .contact-lead { margin-bottom: 32px; }
}
