/* ==========================================================================
   ZÁMEK KALEK — DESIGN SYSTEM & STYLESHEET
   Luxury Mountain Chateau & Boutique Hotel Aesthetics
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Colors */
  --c-primary: #153325;
  --c-primary-dark: #0c1813;
  --c-primary-surface: #10241b;
  --c-primary-light: #1f4734;
  
  --c-gold: #c69d4e;
  --c-gold-light: #dfb76c;
  --c-gold-pale: #f5e7c8;
  --c-gold-dark: #9a752b;
  --c-gold-glow: rgba(198, 157, 78, 0.25);

  --c-bg-light: #faf8f4;
  --c-bg-warm: #f4eee3;
  --c-surface: #ffffff;
  --c-surface-raised: #fbf9f6;
  
  --c-text-main: #18241e;
  --c-text-muted: #56695e;
  --c-text-light: #94a39b;
  --c-text-inverse: #ffffff;

  --c-border: rgba(21, 51, 37, 0.1);
  --c-border-gold: rgba(198, 157, 78, 0.35);

  /* Typography */
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(12, 24, 19, 0.08);
  --shadow-lg: 0 16px 40px rgba(12, 24, 19, 0.12);
  --shadow-gold: 0 8px 25px rgba(198, 157, 78, 0.3);
  --shadow-modal: 0 25px 60px rgba(0, 0, 0, 0.4);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width: 1280px;
  --header-height: 92px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--c-text-main);
  background-color: var(--c-bg-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.modal-open,
body.lightbox-open,
body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--c-gold-pale);
  color: var(--c-gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid var(--c-border-gold);
}

.section-badge.dark-mode {
  background: rgba(198, 157, 78, 0.15);
  color: var(--c-gold-light);
  border-color: rgba(198, 157, 78, 0.3);
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  color: var(--c-primary);
  margin-bottom: 16px;
}

.section-title.dark-mode {
  color: var(--c-text-inverse);
}

.section-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--c-text-muted);
  max-width: 680px;
  margin: 0 auto 40px auto;
}

.section-subtitle.dark-mode {
  color: #a8b8af;
}

.text-gold {
  color: var(--c-gold);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, #dfb76c 0%, #c69d4e 50%, #ad8231 100%);
  color: #122119;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(198, 157, 78, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e8c683 0%, #d4aa5a 50%, #bd913c 100%);
  box-shadow: 0 6px 20px rgba(198, 157, 78, 0.5);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--c-primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--c-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-gold {
  background: transparent;
  color: var(--c-gold);
  border: 1.5px solid var(--c-gold);
}

.btn-outline-gold:hover {
  background: var(--c-gold);
  color: #122119;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--c-primary);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  width: 100%;
}

/* --- Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(12, 24, 19, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(198, 157, 78, 0.18);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  height: 74px;
  background: rgba(12, 24, 19, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(198, 157, 78, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  height: 60px;
}

.header-logo img,
.header-logo svg {
  height: 56px;
  width: auto;
  transition: transform var(--transition-normal), height var(--transition-normal);
}

.site-header.scrolled .header-logo img,
.site-header.scrolled .header-logo svg {
  height: 46px;
}

.header-logo:hover img,
.header-logo:hover svg {
  transform: scale(1.03);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-dropdown-trigger {
  color: #dbe4de;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-dropdown-trigger .dropdown-chevron {
  font-size: 0.7rem;
  color: var(--c-gold);
  transition: transform var(--transition-fast);
}

.nav-item.has-dropdown:hover .nav-dropdown-trigger,
.nav-item.has-dropdown.active .nav-dropdown-trigger,
.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-item.has-dropdown:hover .dropdown-chevron,
.nav-item.has-dropdown.active .dropdown-chevron {
  transform: rotate(180deg);
}

/* Nav Dropdown Popup */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: rgba(12, 24, 19, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(198, 157, 78, 0.3);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-normal);
  z-index: 1010;
  list-style: none;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown.active .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  color: #d1ded6;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.nav-dropdown-link:hover {
  background: rgba(198, 157, 78, 0.16);
  color: var(--c-gold-light);
  padding-left: 22px;
}

/* Language Switcher Dropdown */
.lang-dropdown-wrapper {
  position: relative;
}

.lang-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(198, 157, 78, 0.35);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.lang-dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--c-gold);
}

.lang-dropdown-btn .lang-chevron {
  font-size: 0.65rem;
  color: var(--c-gold-light);
  transition: transform var(--transition-fast);
}

.lang-dropdown-wrapper.active .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  background: rgba(12, 24, 19, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(198, 157, 78, 0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  padding: 6px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-fast);
  z-index: 1020;
}

.lang-dropdown-wrapper:hover .lang-dropdown-menu,
.lang-dropdown-wrapper.active .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  color: #c7d6cd;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.lang-badge {
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(198, 157, 78, 0.18);
  color: var(--c-gold-light);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.lang-dropdown-item:hover {
  background: rgba(198, 157, 78, 0.18);
  color: #ffffff;
}

.lang-dropdown-item.active {
  color: var(--c-gold);
  font-weight: 700;
  background: rgba(198, 157, 78, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-gold-light);
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-phone .phone-number {
  white-space: nowrap;
}

.header-phone:hover {
  color: #ffffff;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1002;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-gold-light);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: #0d1a14;
  z-index: 1001;
  padding: 100px 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  border-left: 1px solid rgba(198, 157, 78, 0.25);
  transition: right var(--transition-normal);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #e5ece7;
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-link:hover {
  color: var(--c-gold);
  padding-left: 6px;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 88vh;
  padding-top: calc(var(--header-height) + 30px);
  padding-bottom: 70px;
  display: flex;
  align-items: center;
  background-color: #0b1712;
  background-image: 
    radial-gradient(ellipse at 85% 25%, rgba(198, 157, 78, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 85%, rgba(26, 54, 42, 0.8) 0%, transparent 60%),
    linear-gradient(180deg, rgba(11, 23, 18, 0.96) 0%, rgba(14, 28, 22, 0.94) 100%);
  background-attachment: scroll;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 36px;
}

.hero-content {
  text-align: left;
  color: #ffffff;
}

.hero-content .section-badge {
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 18px;
}

.hero-title .title-accent {
  display: block;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: var(--c-gold-light);
  font-family: var(--font-sans);
  font-weight: 400;
  margin-top: 8px;
  letter-spacing: 0.03em;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: #e0ece4;
  line-height: 1.65;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(198, 157, 78, 0.25);
  border-radius: 999px;
  font-size: 0.84rem;
  color: #d1dfd6;
  backdrop-filter: blur(8px);
}

.hero-pill svg {
  color: var(--c-gold-light);
  flex-shrink: 0;
}

/* Hero Visual Showcase Card with Slideshow */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 530px;
  background: rgba(18, 38, 30, 0.75);
  border: 1px solid rgba(198, 157, 78, 0.4);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: 
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 35px rgba(198, 157, 78, 0.15);
  backdrop-filter: blur(16px);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.65),
    0 0 45px rgba(198, 157, 78, 0.25);
}

.hero-slideshow-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 16 / 10;
  background: #12221b;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-image-card:hover .hero-slide.active .hero-card-img {
  transform: scale(1.03);
}

.hero-slide-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(11, 23, 18, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(198, 157, 78, 0.35);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 500;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

/* Slideshow Navigation Arrows */
.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(11, 23, 18, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(198, 157, 78, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  opacity: 0;
  transition: all var(--transition-fast);
}

.hero-image-card:hover .hero-slider-nav {
  opacity: 0.85;
}

.hero-slider-nav:hover {
  opacity: 1 !important;
  background: var(--c-gold);
  color: #12221b;
  border-color: var(--c-gold-light);
  transform: translateY(-50%) scale(1.08);
}

.hero-slider-nav.prev {
  left: 10px;
}

.hero-slider-nav.next {
  right: 10px;
}

/* Slideshow Indicator Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 6;
}

.hero-slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero-slider-dot.active {
  width: 20px;
  border-radius: 4px;
  background: var(--c-gold-light);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.hero-card-caption {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 12px 6px 4px 6px;
  margin-top: 6px;
}

.hero-caption-item {
  text-align: center;
}

.hero-caption-val {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-gold-light);
}

.hero-caption-lbl {
  display: block;
  font-size: 0.76rem;
  color: var(--c-text-muted);
}

.hero-caption-divider {
  width: 1px;
  height: 28px;
  background: rgba(198, 157, 78, 0.25);
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-content {
    text-align: center;
  }
  .hero-actions, .hero-pills {
    justify-content: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Quick Booking Bar */
.quick-booking-bar {
  background: rgba(14, 28, 22, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(198, 157, 78, 0.35);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  max-width: 1100px;
  margin: 0 auto;
}

.booking-bar-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: flex-end;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.booking-field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.booking-input,
.booking-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.booking-input:focus,
.booking-select:focus {
  outline: none;
  border-color: var(--c-gold);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 3px rgba(198, 157, 78, 0.2);
}

.booking-select option {
  background: #122119;
  color: #ffffff;
}

/* --- Section Containers --- */
.section {
  padding: 90px 0;
}

.section-alt {
  background-color: var(--c-bg-warm);
}

.section-dark {
  background-color: var(--c-primary-dark);
  color: var(--c-text-inverse);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* --- Story & Heritage Section --- */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.story-text p {
  color: var(--c-text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.stat-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--c-gold);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-txt {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  font-weight: 500;
}

.story-image-stack {
  position: relative;
}

.story-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}

.story-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--c-primary);
  color: var(--c-gold-light);
  border: 2px solid var(--c-gold);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.story-img-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

/* Feature Highlights 4-Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.highlight-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-gold);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px auto;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(198, 157, 78, 0.15) 0%, rgba(21, 51, 37, 0.08) 100%);
  border: 1px solid rgba(198, 157, 78, 0.35);
  color: var(--c-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.highlight-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--c-gold-dark);
  transition: transform var(--transition-fast);
}

.highlight-card:hover .highlight-icon {
  background: linear-gradient(135deg, rgba(198, 157, 78, 0.3) 0%, rgba(21, 51, 37, 0.18) 100%);
  border-color: var(--c-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(198, 157, 78, 0.25);
}

.highlight-card:hover .highlight-icon svg {
  transform: scale(1.1);
}

.highlight-card h4 {
  font-size: 1.15rem;
  color: var(--c-primary);
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

/* --- Rooms Section --- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-border-gold);
}

.room-card.featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border: 1.5px solid var(--c-gold);
  background: linear-gradient(to right, #ffffff, #faf7f0);
}

.room-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.room-card.featured .room-img-wrap {
  height: 100%;
  min-height: 340px;
}

.room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.room-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--c-primary);
  color: var(--c-gold-light);
  border: 1px solid var(--c-gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.room-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}

.room-header h3 {
  font-size: 1.3rem;
  color: var(--c-primary);
}

.room-price-box {
  text-align: right;
  flex-shrink: 0;
}

.room-price-val {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-gold-dark);
  line-height: 1;
}

.room-price-unit {
  font-size: 0.75rem;
  color: var(--c-text-muted);
}

.room-desc {
  font-size: 0.92rem;
  color: var(--c-text-muted);
  margin-bottom: 18px;
  flex-grow: 1;
}

.room-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(21, 51, 37, 0.08);
}

.room-features-list li {
  font-size: 0.85rem;
  color: var(--c-text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gold-check {
  color: var(--c-gold);
  font-weight: 800;
  font-size: 0.95rem;
}

.room-actions {
  display: flex;
  gap: 10px;
}

/* --- Pricing Section --- */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.price-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-gold);
}

.price-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 10px;
}

.price-card-val {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--c-gold-dark);
  margin-bottom: 6px;
}

.price-card-sub {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.pricing-discount-banner {
  background: linear-gradient(135deg, var(--c-primary-surface) 0%, var(--c-primary) 100%);
  color: #ffffff;
  border: 1px solid var(--c-gold);
  border-radius: var(--radius-md);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-md);
}

.pricing-discount-banner span.tag {
  background: var(--c-gold);
  color: #122119;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* --- Gastronomy & Finnish Kota --- */
.gastro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.gastro-buffet-box {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 24px 0;
  border-left: 4px solid var(--c-gold);
}

.gastro-buffet-box h4 {
  color: var(--c-primary);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.gastro-buffet-box p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

.kota-banner-section {
  background: linear-gradient(rgba(12, 24, 19, 0.92), rgba(12, 24, 19, 0.94)), url('img/finnish_grill_kota.webp');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xl);
  padding: 60px;
  color: #ffffff;
  border: 1px solid rgba(198, 157, 78, 0.35);
  box-shadow: var(--shadow-lg);
  margin-top: 60px;
}

.kota-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.kota-content h3 {
  font-size: 2.2rem;
  color: var(--c-gold-light);
  margin-bottom: 18px;
}

.kota-content p {
  color: #d2ded7;
  font-size: 1rem;
  margin-bottom: 16px;
}

.kota-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.kota-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #e5ece8;
}

.kota-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--c-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* --- Activities Section --- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.act-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.act-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-gold);
}

.act-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(198, 157, 78, 0.12) 0%, rgba(21, 51, 37, 0.06) 100%);
  border: 1px solid rgba(198, 157, 78, 0.3);
  color: var(--c-gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--transition-normal);
}

.act-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--c-gold-dark);
  transition: transform var(--transition-fast);
}

.act-card:hover .act-icon {
  background: linear-gradient(135deg, rgba(198, 157, 78, 0.25) 0%, rgba(21, 51, 37, 0.15) 100%);
  border-color: var(--c-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(198, 157, 78, 0.22);
}

.act-card:hover .act-icon svg {
  transform: scale(1.12);
}

.act-card h4 {
  font-size: 1.15rem;
  color: var(--c-primary);
  margin-bottom: 8px;
}

.act-card p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

/* --- Weddings & Celebrations --- */
.wedding-box {
  background: var(--c-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.wedding-img-side {
  position: relative;
  min-height: 400px;
}

.wedding-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wedding-content-side {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wedding-content-side h3 {
  font-size: 2rem;
  color: var(--c-primary);
  margin-bottom: 16px;
}

.wedding-content-side p {
  font-size: 1rem;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}

.wedding-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 30px;
}

.wedding-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--c-text-main);
  font-weight: 500;
}

/* --- Gallery Section --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.gallery-filter-btn {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-primary);
}

.gallery-filter-btn.active {
  background: var(--c-primary);
  color: var(--c-gold-light);
  border-color: var(--c-gold);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Gallery Card (Zahradnik Principle) */
.gallery-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(198, 157, 78, 0.4);
}

.gallery-card[hidden] {
  display: none !important;
}

.gallery-card-media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #0d1a14;
  overflow: hidden;
  cursor: zoom-in;
  line-height: 0;
}

.gallery-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}

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

.gallery-card-zoom-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(12, 24, 19, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(198, 157, 78, 0.4);
  color: var(--c-gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  opacity: 0.9;
  transform: translateY(0);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.gallery-card:hover .gallery-card-zoom-badge {
  opacity: 1;
  background: var(--c-gold);
  color: #0c1813;
  border-color: var(--c-gold-light);
}

.gallery-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.gallery-card-desc {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.gallery-card-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.gallery-card-tags li {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-primary-light);
  background: rgba(21, 51, 37, 0.06);
  border: 1px solid rgba(21, 51, 37, 0.1);
  padding: 3px 9px;
  border-radius: 4px;
}

/* --- Advanced Lightbox matching Zahradnik UX --- */
.lightbox-otevreny {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox {
  --lightbox-rail: clamp(120px, 12vw, 160px);
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--lightbox-rail);
  background: rgba(10, 18, 14, 0.97);
  backdrop-filter: blur(16px);
  overscroll-behavior: contain;
}

.lightbox__obsah {
  grid-column: 1;
  min-width: 0;
  min-height: 0;
  height: 100dvh;
  margin: 0;
  padding: clamp(60px, 6vh, 80px) clamp(60px, 6vw, 100px) 24px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.lightbox__obrazek {
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox__hlavni {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.18s ease;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(198, 157, 78, 0.2);
}

.lightbox__hlavni.is-loading {
  opacity: 0.3;
}

.lightbox__popisek {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 800px;
  justify-self: center;
  text-align: center;
}

.lightbox__titulek {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lightbox__popis {
  color: #b5c7bd;
  font-size: 0.88rem;
  line-height: 1.5;
}

.lightbox__pocitadlo {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 10;
  margin: 0;
  padding: 6px 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(12, 24, 19, 0.7);
  border: 1px solid rgba(198, 157, 78, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lightbox__zavrit {
  position: absolute;
  top: 18px;
  right: calc(var(--lightbox-rail) + 20px);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 24, 19, 0.7);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox__zavrit:hover {
  background: var(--c-gold);
  color: #0c1813;
  border-color: var(--c-gold);
}

.lightbox__zavrit svg {
  width: 22px;
  height: 22px;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(12, 24, 19, 0.7);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox__nav:hover {
  background: var(--c-gold);
  color: #0c1813;
  border-color: var(--c-gold);
  transform: translateY(-50%) scale(1.08);
}

.lightbox__nav svg {
  width: 24px;
  height: 24px;
}

.lightbox__nav--predchozi {
  left: 20px;
}

.lightbox__nav--dalsi {
  right: calc(var(--lightbox-rail) + 20px);
}

/* Lightbox Sidebar Thumbnail Strip */
.lightbox__nahledy {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 12px;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(8, 15, 11, 0.85);
  border-left: 1px solid rgba(198, 157, 78, 0.2);
}

.lightbox__nahled {
  flex: 0 0 auto;
  width: 100%;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: transparent;
  opacity: 0.5;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox__nahled:hover,
.lightbox__nahled.is-active {
  opacity: 1;
  border-color: var(--c-gold);
  box-shadow: 0 0 12px var(--c-gold-glow);
}

.lightbox__nahled img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Mobile / Tablet Lightbox responsive */
@media (max-width: 900px) {
  .lightbox {
    --lightbox-rail: 0px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 76px minmax(0, 1fr);
  }

  .lightbox__nahledy {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 76px;
    flex-direction: row;
    padding: 8px 12px;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    border-left: 0;
    border-bottom: 1px solid rgba(198, 157, 78, 0.2);
  }

  .lightbox__nahled {
    width: 80px;
    height: 60px;
  }

  .lightbox__obsah {
    grid-column: 1;
    grid-row: 2;
    height: calc(100dvh - 76px);
    padding: 50px 20px 20px;
  }

  .lightbox__pocitadlo {
    top: 88px;
    left: 14px;
  }

  .lightbox__zavrit {
    top: 84px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .lightbox__nav {
    top: calc(50% + 38px);
    width: 44px;
    height: 44px;
  }

  .lightbox__nav--dalsi {
    right: 12px;
  }

  .lightbox__nav--predchozi {
    left: 12px;
  }
}

/* --- Reviews Section --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: var(--c-gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.review-quote {
  font-style: italic;
  color: var(--c-text-main);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-author-name {
  font-weight: 700;
  color: var(--c-primary);
  font-size: 0.95rem;
}

.review-author-loc {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

/* --- Booking & MySlotio Section --- */
.booking-section-wrapper {
  background: linear-gradient(135deg, #0d1a14 0%, #153325 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  color: #ffffff;
  border: 1px solid rgba(198, 157, 78, 0.35);
  box-shadow: var(--shadow-lg);
}

.booking-sec-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
}

.booking-info-side h3 {
  font-size: 2.2rem;
  color: var(--c-gold-light);
  margin-bottom: 16px;
}

.booking-info-side p {
  color: #d1dfd7;
  font-size: 1rem;
  margin-bottom: 24px;
}

.booking-guarantees {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.booking-guarantees li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #ffffff;
}

.guarantee-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(198, 157, 78, 0.2);
  color: var(--c-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.myslotio-embed-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px dashed rgba(198, 157, 78, 0.4);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.myslotio-embed-box p {
  font-size: 0.85rem;
  color: #a6baaF;
  margin-bottom: 14px;
}

/* Booking Form Card */
.booking-form-card {
  background: #ffffff;
  color: var(--c-text-main);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.booking-form-card h4 {
  font-size: 1.4rem;
  color: var(--c-primary);
  margin-bottom: 20px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(21, 51, 37, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: #fcfbf9;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--c-gold);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(198, 157, 78, 0.15);
}

.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding: 12px;
  background: var(--c-bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--c-text-main);
  cursor: pointer;
}

.checkbox-item input {
  accent-color: var(--c-primary);
  width: 16px;
  height: 16px;
}

/* --- Contact & Location Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(198, 157, 78, 0.15) 0%, rgba(21, 51, 37, 0.08) 100%);
  border: 1px solid rgba(198, 157, 78, 0.35);
  color: var(--c-gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all var(--transition-normal);
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--c-gold-dark);
  transition: transform var(--transition-fast);
}

.contact-card:hover .contact-card-icon {
  background: linear-gradient(135deg, rgba(198, 157, 78, 0.3) 0%, rgba(21, 51, 37, 0.18) 100%);
  border-color: var(--c-gold);
  transform: translateY(-2px);
}

.contact-card:hover .contact-card-icon svg {
  transform: scale(1.15);
}

.contact-card-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-card-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-primary);
}

.contact-directions {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.contact-directions h4 {
  font-size: 1.05rem;
  color: var(--c-primary);
  margin-bottom: 12px;
}

.contact-directions p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* --- Footer --- */
.site-footer {
  background: #08110d;
  color: #c2d1c8;
  padding: 70px 0 30px;
  border-top: 2px solid rgba(198, 157, 78, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand img,
.footer-brand svg {
  height: 60px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 380px;
}

.footer-col h4 {
  color: var(--c-gold-light);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #b0c2b7;
}

.footer-links a:hover {
  color: var(--c-gold);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #7b8f83;
}

/* --- Room Detail Modal --- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 2001;
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-modal);
  border: 1px solid var(--c-border-gold);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
  transition: background var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--c-gold);
  color: #102118;
}

.modal-img-wrap {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 30px;
}

.modal-body h3 {
  font-size: 1.6rem;
  color: var(--c-primary);
  margin-bottom: 8px;
}

.modal-body p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.modal-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.modal-features-list li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
}

/* Toast */
.app-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  background: var(--c-primary);
  color: #ffffff;
  border: 1px solid var(--c-gold);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  font-size: 0.92rem;
  font-weight: 500;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
  pointer-events: none;
  max-width: 380px;
}

.app-toast.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1150px) {
  .header-phone .phone-number {
    display: none;
  }
  .main-nav {
    gap: 12px;
  }
  .nav-links {
    gap: 4px;
  }
  .nav-link,
  .nav-dropdown-trigger {
    padding: 8px 10px;
    font-size: 0.82rem;
  }
}

@media (max-width: 1024px) {
  .booking-bar-form {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-bar-form .btn {
    grid-column: span 2;
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .room-card.featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .story-grid,
  .gastro-grid,
  .kota-grid,
  .wedding-box,
  .booking-sec-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .section {
    padding: 60px 0;
  }
  .hero-section {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 60px;
  }
  .booking-bar-form {
    grid-template-columns: 1fr;
  }
  .booking-bar-form .btn {
    grid-column: span 1;
  }
  .highlights-grid,
  .rooms-grid,
  .pricing-cards-grid,
  .activities-grid,
  .reviews-grid,
  .footer-grid,
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  .room-card.featured {
    grid-column: span 1;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .booking-section-wrapper {
    padding: 30px 20px;
  }
  .kota-banner-section {
    padding: 30px 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
