/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Parkinsans', sans-serif;
  background: #fff;
  color: #0D0D0D;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── NAV – standard pages ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 60px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img { height: 38px; width: auto; }
.nav-center-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex: 1;
}
.nav-center-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0D0D0D;
  transition: opacity 0.2s;
}
.nav-center-links a:hover { opacity: 0.5; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-right .nav-cenik {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-phone-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-phone-icon {
  width: 32px; height: 32px;
  border: 1.5px solid #0D0D0D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-phone-icon svg { width: 14px; height: 14px; }
.nav-phone-number {
  font-size: 13px;
  font-weight: 600;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #0D0D0D;
}

/* Mobile overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 201;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1.4rem; font-weight: 600; }
.nav-mobile-close {
  position: absolute;
  top: 1.2rem; right: 2rem;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ── NAV – homepage variant ── */
.nav-home {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  background: transparent;
}

/* Transparent nav variant – used on horska-kvilda + zadov hero pages */
.nav--transparent {
  position: absolute;
  background: transparent;
  border-bottom-color: transparent;
}
.nav--transparent .nav-center-links a,
.nav--transparent .nav-right .nav-cenik,
.nav--transparent .nav-phone-number {
  color: #fff;
}
.nav--transparent .nav-center-links a:hover { opacity: 0.6; }
.nav--transparent .nav-phone-icon {
  border-color: rgba(255,255,255,0.65);
}
.nav--transparent .nav-phone-icon svg { stroke: #fff; }
.nav--transparent .nav-hamburger span { background: #fff; }
.nav-home-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.nav-home-left svg { width: 16px; height: 16px; }
.nav-home-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-home-center img { height: 44px; width: auto; }
.nav-home-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-left: auto;
}
.nav-home-right svg { width: 16px; height: 16px; }

/* ── HOMEPAGE SPLIT ── */
.homepage-split {
  display: flex;
  height: 100vh;
  min-height: 600px;
}
.split-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 2rem 80px;
}
.split-panel > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.split-panel:hover > img { transform: scale(1.03); }
.split-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 28%),
    linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.split-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.split-icon { display: flex; justify-content: center; width: 100%; margin-bottom: 1rem; }
.split-icon img { height: 29px; width: auto; display: block; }
.split-h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  text-align: center;
  width: 100%;
}
.split-btn {
  display: inline-block;
  padding: 0.65rem 2rem;
  background: #fff;
  color: #0D0D0D;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.split-terminy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
}
.split-divider { display: none; }

/* Volné termíny strip */
.terminy-strip {
  display: flex;
}
.terminy-col {
  flex: 1;
  padding: 1.8rem 3rem;
}
.terminy-col:last-child { border-right: none; }
.terminy-col p { font-size: 13px; line-height: 1.7; color: #333; }
.terminy-col strong { font-weight: 700; }

/* ── HERO – location pages ── */
.hero-location {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-location-slides {
  position: absolute;
  inset: 0;
}
.hero-location-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-location-bg.active {
  opacity: 1;
}
.hero-location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.48) 0%,
    rgba(0,0,0,0) 35%,
    rgba(0,0,0,0) 50%,
    rgba(0,0,0,0.72) 100%
  );
}
.hero-location-content {
  position: relative;
  z-index: 1;
  padding: 0 3rem 3.5rem;
  max-width: 680px;
}
.hero-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 0.5rem;
}
.hero-location-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 1rem;
}
.hero-location-content p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1.6rem;
  max-width: 480px;
}
.btn-hero-outline {
  display: inline-block;
  padding: 0.65rem 2rem;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ── HERO – apartment pages ── */
.hero-apt {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.hero-apt-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
}
.hero-apt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 35%,
    rgba(0,0,0,0.25) 55%,
    rgba(0,0,0,0.70) 100%
  );
}
.hero-apt-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem 4rem;
  gap: 2rem;
}
.hero-apt-text {
  max-width: 480px;
}
.hero-apt-text .hero-tag { margin-bottom: 0.6rem; }
.hero-apt-text h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 0.8rem;
}
.hero-apt-text .apt-hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.7;
}
.hero-apt-text .apt-hero-desc strong { color: #fff; font-weight: 700; }
.hero-apt-text .apt-hero-desc ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-top: 0.4rem;
}
.hero-apt-text .apt-hero-desc ul li { margin-bottom: 0.25rem; }

.hero-apt-card {
  width: 400px;
  background: #fff;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.hero-apt-card-img {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.hero-apt-card-img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease;
}
.hero-apt-card-img img:first-child { z-index: 2; }
.hero-apt-card-img img:last-child  { z-index: 1; opacity: 1; }
.hero-apt-card-body {
  padding: 2rem 1.8rem 2rem;
  text-align: center;
}
.card-luzka-label {
  font-size: 18px;
  font-weight: 700;
  color: #0D0D0D;
  margin-bottom: 1rem;
}
.card-bed-icons {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1.2rem;
}
.card-bed-icons img {
  height: 44px;
  width: auto;
}
.card-price {
  font-size: 26px;
  font-weight: 800;
  color: #0D0D0D;
  margin-bottom: 1.4rem;
}
.btn-rezervovat {
  display: block;
  text-align: center;
  padding: 1.2rem 1rem;
  border: 2px solid #0D0D0D;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0D0D0D;
  transition: background 0.2s, color 0.2s;
}
.btn-rezervovat:hover { background: #0D0D0D; color: #fff; }

/* ── HERO – pricing pages ── */
.hero-pricing {
  position: relative;
  height: 45vh;
  min-height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-pricing-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: top;
  width: 100%; height: 100%;
}
.hero-pricing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}
.hero-pricing-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}
.hero-pricing-content .mountain-icon {
  display: block;
  margin: 0 auto 0.8rem;
  width: 40px; height: auto;
  opacity: 0.9;
}
.hero-pricing-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

/* ── FEATURES STRIP ── */
.features-strip {
  padding: 6rem 2.5rem;
  background: #fff;
  text-align: center;
}
.features-strip h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 2.5rem;
}
.features-icons {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  width: 200px;
}
.feature-item svg, .feature-item img {
  width: 40px; height: 40px;
  display: block;
}
.feature-item span {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
  color: #333;
}

/* ── GALLERY STRIP ── */
.gallery-strip {
  display: flex;
  height: 320px;
}
.gallery-strip-item {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.gallery-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-strip-item:hover img { transform: scale(1.04); }

/* ── SECTION HEADER ── */
.section-title {
  text-align: center;
  padding: 4rem 2.5rem 2.5rem;
}
.section-title h2 {
  font-size: 52px;
  font-weight: 800;
}
.section-title p {
  font-size: 13px;
  color: #888;
  margin-top: 0.5rem;
}

/* ── APARTMENT CARDS (location pages) ── */
.apts-grid-section {
  padding: 0 2.5rem 4rem;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
}
.apts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.apt-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
.apt-card-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.apt-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.apt-card-body {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.6rem 1.8rem;
  flex: 1;
}
.apt-card-title-link { color: inherit; text-decoration: none; }
.apt-card-title-link:hover h3 { text-decoration: underline; }
.apt-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: #0D0D0D;
}
.apt-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  color: #0D0D0D;
  font-size: 15px;
  font-weight: 500;
}
.apt-card-meta svg { width: 22px; height: 22px; }
.apt-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex: 1;
}
.apt-card-price-row {
  margin-bottom: 1.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0D0D0D;
}
.btn-vice-info {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border: 1.5px solid #0D0D0D;
  font-size: 14px;
  font-weight: 600;
  color: #0D0D0D;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}
.btn-vice-info:hover { background: #0D0D0D; color: #fff; }

/* ── ACTIVITY CAROUSEL ── */
.activity-section {
  padding: 4rem 2.5rem 3rem;
  background: #fff;
}
.activity-section h2 {
  font-size: 52px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
}
.activity-slider-wrap {
  position: relative;
}
.activity-track-wrap {
  overflow: hidden;
  position: relative;
}
.activity-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: background 0.2s, opacity 0.2s;
  color: #0D0D0D;
}
.activity-arrow:hover { background: #fff; }
.activity-arrow.disabled { opacity: 0.25; pointer-events: none; }
.activity-arrow-prev { left: -20px; }
.activity-arrow-next { right: -20px; }
.activity-track {
  display: flex;
  gap: 3px;
  transition: transform 0.4s ease;
}
.activity-slide {
  flex: 0 0 calc(25% - 2px);
  position: relative;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
}
.activity-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.activity-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
}
.activity-slide-content {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
}
.activity-slide-km {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.8;
  display: block;
  margin-bottom: 0.2rem;
}
.activity-slide-name {
  font-size: 14px;
  font-weight: 700;
}
.activity-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.2rem;
}
.activity-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
}
.activity-dot.active { background: #0D0D0D; }

/* ── RESERVATION SECTION ── */
.rezervace-section {
  padding: 5rem 2.5rem;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
}
.rezervace-section > h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 2rem;
}
.rezervace-grid {
  display: grid;
  grid-template-columns: 3fr 3fr;
  gap: 2.5rem;
  align-items: start;
}
.rezervace-form-box {
  border: 1px solid #d8d8d8;
  padding: 2rem;
}
.rezervace-terminy {
  margin-top: 1.5rem;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  border: 1.5px solid #e0e0e0;
  background: #f5f5f5;
  padding: 1.8rem 2rem;
}
.rezervace-terminy strong { color: #0D0D0D; font-weight: 700; }
.rezervace-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-msg { font-size: 13px; min-height: 1.2em; }
.form-msg.ok { color: #1a7f37; }
.form-msg.error { color: #b00020; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 13px;
  font-weight: 400;
  color: #333;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #ccc;
  padding: 0.6rem 0.75rem;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  color: #0D0D0D;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus { border-color: #0D0D0D; }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-odeslat {
  display: block;
  width: 100%;
  padding: 1rem;
  background: #0D0D0D;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
  font-family: inherit;
}
.btn-odeslat:hover { background: #333; }
.btn-odeslat:disabled { opacity: 0.6; cursor: default; }

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.accordion-item { border: 1px solid #d8d8d8; }
.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.2rem;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: #0D0D0D;
}
.accordion-trigger .acc-icon {
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.accordion-trigger.open .acc-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding: 0 1.2rem 1.2rem;
  font-size: 13px;
  color: #444;
  line-height: 1.75;
}
.accordion-body.open { display: block; }

/* ── APARTMENT DETAIL PAGE ── */
.apt-detail-section {
  padding-top: 0;
  background: #fff;
}

/* Amenities + price row */
.apt-amenities-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
  align-items: start;
}
.apt-amenities-left h2 {
  font-size: 52px;
  font-weight: 800;
  text-align: left;
  margin-bottom: 2rem;
}
.amenities-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
  justify-items: center;
}
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}
.amenity-item svg, .amenity-item img { width: 53px; height: 53px; }
.amenity-item span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.apt-price-box-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 1rem;
}
.apt-price-box {
  border: 1.5px solid #e0e0e0;
  background: #f5f5f5;
  padding: 1.8rem 2rem;
}
.price-line {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 16px;
}
.price-line-label { white-space: nowrap; }
.price-line-dots {
  flex: 1;
  border-bottom: 1px dotted #bbb;
  margin: 0 0.5rem;
  min-width: 20px;
}
.price-line-val { font-weight: 700; white-space: nowrap; }
.apt-price-notes {
  margin-top: 1rem;
  font-size: 14px;
  color: #555;
  line-height: 1.65;
}
.apt-price-notes strong { color: #0D0D0D; }
.apt-price-notes a { text-decoration: underline; }

/* Full-width gallery for apt detail */
.apt-gallery-strip {
  display: flex;
  height: 260px;
}
.apt-gallery-strip-item {
  flex: 1;
  overflow: hidden;
}
.apt-gallery-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
}
.apt-gallery-strip-item:hover img { transform: scale(1.04); }

/* Lightbox */
.apt-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.apt-lightbox.open { display: flex; }
.apt-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}
.apt-lb-close {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
}
.apt-lb-close:hover { opacity: 1; }
.apt-lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}
.apt-lb-nav:hover { background: rgba(255,255,255,0.25); }
.apt-lb-prev { left: 1rem; }
.apt-lb-next { right: 1rem; }
.apt-lb-counter {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

/* Další pokoje */
.dalsi-pokoje {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem 5rem;
  align-items: start;
}
.dalsi-pokoje-left h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.dalsi-pokoje-left p { font-size: 16px; color: #666; line-height: 1.6; }
.dalsi-pokoje-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.dalsi-card {
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
.dalsi-card-photo {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dalsi-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.dalsi-card-body {
  padding: 1.4rem 1.4rem 1.6rem;
}
.dalsi-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0D0D0D;
}

/* ── PRICING PAGE ── */
.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
}
.pricing-main-rows { margin-bottom: 2rem; }
.pricing-main-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid #e8e8e8;
}
.pricing-main-row:first-child { border-top: 1px solid #e8e8e8; }
.pricing-sub-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  padding: 1.2rem 0 0.6rem;
}
.pricing-sub-row {
  display: flex;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 14px;
  border-bottom: 1px solid #f2f2f2;
}
.pricing-sub-row-label { flex: 1; color: #333; }
.pricing-sub-row-dots {
  flex: 0 0 80px;
  border-bottom: 1px dotted #ccc;
  margin: 0 0.75rem;
}
.pricing-sub-row-val { font-weight: 600; min-width: 60px; text-align: right; }
.pricing-note {
  display: inline-block;
  background: #f0f0f0;
  padding: 0.4rem 0.9rem;
  font-size: 12px;
  color: #333;
  margin-top: 0.8rem;
}

/* ── FOOTER ── */
footer {
  background: #fff;
  padding: 3.5rem 2.5rem 0;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-col h5 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #0D0D0D;
}
.footer-col ul li {
  margin-bottom: 0.4rem;
}
.footer-col ul a {
  font-size: 14px;
  color: #888;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #0D0D0D; }
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.footer-contact-line svg { width: 16px; height: 16px; color: #888; flex-shrink: 0; }
.footer-contact-line a {
  font-size: 14px;
  color: #888;
  transition: color 0.2s;
}
.footer-contact-line a:hover { color: #0D0D0D; }
.footer-location-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.footer-location-logo img { height: 14px; width: auto; filter: brightness(0); }
.footer-location-logo span {
  font-size: 15px;
  font-weight: 700;
}
.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: #888;
  line-height: 1.65;
}
.footer-col address a { transition: color 0.2s; }
.footer-col address a:hover { color: #0D0D0D; }
.footer-bottom {
  border-top: 1px solid #e8e8e8;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.footer-bottom-logo img { height: 44px; width: auto; }
.footer-bottom-copy {
  font-size: 13px;
  color: #888;
}
.footer-bottom-right { display: flex; align-items: center; gap: 1rem 1.5rem; flex-wrap: wrap; }
.footer-bottom-right a.footer-bottom-copy { text-decoration: underline; }
.footer-bottom-right a.footer-bottom-copy:hover { color: #0D0D0D; }

/* Outer footer wrapper for bottom border */
.footer-outer {
  border-top: 1px solid #e8e8e8;
}

/* ── PRICING PAGE NAV OFFSET ── */
.page-with-nav { padding-top: 60px; }

/* ── COOKIE BAR ── */
.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 500;
  background: #0D0D0D;
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 13px;
  text-align: center;
}
.cookie-bar a { text-decoration: underline; color: #fff; }
.cookie-bar-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-bar-btn {
  background: #fff;
  color: #0D0D0D;
  border: 1px solid #fff;
  padding: 0.55rem 1.5rem;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.cookie-bar-btn:hover { background: #eee; }
.cookie-bar-btn--outline {
  background: transparent;
  color: #fff;
}
.cookie-bar-btn--outline:hover { background: rgba(255,255,255,0.15); }

/* ── 404 / GDPR PAGES ── */
.simple-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 1.5rem 5rem;
}
.simple-page h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.simple-page h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 2.2rem 0 0.8rem;
}
.simple-page p, .simple-page li {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}
.simple-page ul { list-style: disc; padding-left: 1.4rem; margin-top: 0.4rem; }
.simple-page li { margin-bottom: 0.4rem; }
.simple-page a { text-decoration: underline; }
.page-404 {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-404 .code {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .apts-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .apt-amenities-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .rezervace-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .rezervace-side { display: contents; }
  .rezervace-terminy { order: -1; margin-top: 0; }
}
@media (max-width: 768px) {
  .nav-center-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right .nav-phone-number { display: none; }
  .nav-home-left, .nav-home-right { font-size: 0; gap: 0; }
  /* iOS Safari zoomuje stránku při focusu na pole s písmem < 16px,
     což může nechat stránku posunutou do strany po odklepnutí pole */
  .form-group input,
  .form-group select,
  .form-group textarea,
  #passwordInput,
  .admin-row input { font-size: 16px; }
  .homepage-split { flex-direction: column; height: auto; }
  .split-panel { height: 55vmax; min-height: 320px; }
  .apts-grid { grid-template-columns: 1fr; }
  .gallery-strip { height: 200px; }
  .gallery-strip-item:nth-child(n+4) { display: none; }
  .apt-gallery-strip { height: 220px; gap: 0.6rem; padding: 0 0.6rem; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
  .apt-gallery-strip-item { flex: 0 0 68%; scroll-snap-align: start; }
  .activity-slide { flex: 0 0 calc(50% - 2px); }
  .hero-apt { height: auto; min-height: 100vh; overflow: visible; }
  .hero-apt-inner { flex-direction: column; align-items: flex-start; padding: 6rem 1.5rem 2.5rem; }
  .hero-apt-card { width: 100%; margin-left: 0; margin-top: 1.5rem; }
  .hero-location { height: auto; min-height: 100vh; overflow: visible; }
  .hero-location-content { padding: 0 1.5rem 2.5rem; }
  .features-icons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; justify-items: center; }
  .features-icons .feature-item { width: auto; }
  .dalsi-pokoje { grid-template-columns: 1fr; }
  .dalsi-pokoje-cards { grid-template-columns: 1fr 1fr; }
  .terminy-strip { flex-direction: column; }
  .terminy-col { border-right: none; border-bottom: 1px solid #e8e8e8; padding: 1.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-section { padding: 3rem 1.5rem; }
  .split-panel { padding: 0 0 2.5rem 1.5rem; }
  .features-strip h2,
  .section-title h2,
  .activity-section h2,
  .apt-amenities-left h2,
  .apt-price-box-title,
  .rezervace-section > h2,
  .dalsi-pokoje-left h2 { font-size: 36px; }
  .features-strip { padding: 4rem 1.5rem; }
  .section-title { padding: 3rem 1.5rem 2rem; }
  .activity-section { padding: 3rem 1.5rem 2rem; }
  .apts-grid-section { padding: 0 1.5rem 3rem; }
  .apt-amenities-row { padding: 3rem 1.5rem; }
  .rezervace-section { padding: 3rem 1.5rem; }
  .dalsi-pokoje { padding: 3rem 1.5rem 3.5rem; }
  footer { padding: 3rem 1.5rem 0; }
  .footer-bottom { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 480px) {
  .nav { padding: 0 1.2rem; }
  .hero-apt-text h1 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .apts-grid { grid-template-columns: 1fr; }
  .nav-phone-btn { gap: 0.3rem; }
  .nav-phone-number { font-size: 11px; }
  .amenities-icons { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .dalsi-pokoje-cards { grid-template-columns: 1fr; }
  .card-bed-icons img { max-width: 100%; }
  .price-line { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
  .price-line-label { white-space: normal; }
  .price-line-dots { display: none; }
  .cookie-bar { flex-direction: column; gap: 0.8rem; text-align: center; }
  .pricing-main-row { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.8rem; text-align: left; }
  .footer-bottom-right { flex-direction: column; gap: 0.4rem; }
}
