/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary: #8B6F47;
  --color-primary-dark: #6e5638;
  --color-accent: #C9A96E;
  --color-text: #2c2c2c;
  --color-text-light: #6b6b6b;
  --color-bg: #ffffff;
  --color-bg-light: #f8f5f0;
  --color-border: #e8e0d5;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --max-width: 1200px;
  --section-pad: 96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--section-pad) 0; }
.bg-light { background: var(--color-bg-light); }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.section-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 { margin-bottom: 16px; }
.section-sub { color: var(--color-text-light); max-width: 540px; margin: 0 auto; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; text-align: center; }

.room-card .btn-outline {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.room-card .btn-outline:hover { background: var(--color-primary); color: #fff; }

/* ===========================
   NAVBAR
=========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s;
}
.logo span { color: var(--color-accent); }
#navbar.scrolled .logo { color: var(--color-text); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
#navbar.scrolled .nav-links a { color: var(--color-text); }
#navbar.scrolled .nav-links a:hover { color: var(--color-primary); }

.nav-cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--color-primary-dark) !important; color: #fff !important; }

.lang-toggle {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-toggle:hover { border-color: #fff; color: #fff; }
#navbar.scrolled .lang-toggle { border-color: var(--color-primary); color: var(--color-primary); }
#navbar.scrolled .lang-toggle:hover { background: var(--color-primary); color: #fff; }

.nav-close { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.3s;
}
#navbar.scrolled .hamburger span { background: var(--color-text); }

/* ===========================
   HERO
=========================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img,
.hero-bg video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 0 24px;
}

.hero-label {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 12px;
}

.hero-content h1 {
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.15rem;
  opacity: 0.88;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-down span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  position: relative;
}
.scroll-down span::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: scrollBounce 1.6s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

/* ===========================
   SPLIT LAYOUT
=========================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-text h2 { margin-bottom: 20px; }
.split-text p { color: var(--color-text-light); margin-bottom: 16px; }

.split-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.split-image:hover img { transform: scale(1.03); }

/* Video thumbnail — CSS Grid stacking */
.split-video-thumb {
  aspect-ratio: 4/5;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  display: grid;
  grid-template-areas: "stack";
}
.split-video-thumb img,
.split-video-thumb .video-play-overlay {
  grid-area: stack;
}
.split-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.split-video-thumb:hover img { transform: scale(1.03); }

.video-play-overlay {
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: background 0.3s;
}
.split-video-thumb:hover .video-play-overlay { background: rgba(0,0,0,0.5); }

.video-play-btn {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
  backdrop-filter: blur(4px);
}
.split-video-thumb:hover .video-play-btn {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.08);
}
.video-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  flex-shrink: 0;
}

.video-play-label {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Video lightbox */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.vlb-inner {
  width: 90vw;
  max-width: 1100px;
}
.vlb-inner video {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.vlb-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 4px 8px;
  line-height: 1;
}
.vlb-close:hover { opacity: 1; }


.stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ===========================
   ROOMS
=========================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* 4-room layout: 2+2 */
.rooms-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.room-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(139,111,71,0.15);
  border-color: var(--color-accent);
}
.room-card.featured {
  border-color: var(--color-accent);
  box-shadow: 0 4px 28px rgba(139,111,71,0.14);
}

.room-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.room-img img { transition: transform 0.5s ease; }
.room-card:hover .room-img img { transform: scale(1.05); }

.room-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.room-capacity {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.room-subtitle {
  font-size: 0.8rem !important;
  color: var(--color-accent) !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px !important;
}

.room-body {
  padding: 24px;
}
.room-body h3 { margin-bottom: 8px; }
.room-body p { color: var(--color-text-light); font-size: 0.9rem; margin-bottom: 16px; }

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.room-features li {
  font-size: 0.78rem;
  background: var(--color-bg-light);
  color: var(--color-text-light);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
}

.room-prices {
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.room-prices::before {
  content: "Cena za noc";
  display: block;
  padding: 7px 14px 6px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-sans);
}
.room-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 14px;
  border-bottom: 1px solid var(--color-border);
  gap: 8px;
}
.room-price-row:last-child {
  border-bottom: none;
}
.room-price-row span:first-child {
  font-size: 0.82rem;
  color: var(--color-text-light);
  flex-shrink: 0;
}
.room-price-row span:last-child {
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 1rem;
  white-space: nowrap;
}

.rooms-note {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-top: 40px;
  font-style: italic;
}

.rooms-discount {
  text-align: center;
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-top: 12px;
  font-weight: 500;
}

/* ===========================
   EVENTS
=========================== */
.events-section {
  background: #1a1410;
  color: #fff;
}

.events-section .section-label { color: var(--color-accent); }
.events-section h2 { color: #fff; }
.events-section .section-sub { color: rgba(255,255,255,0.6); }

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.event-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, background 0.3s;
}
.event-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--color-accent);
}

.event-img {
  margin: -40px -40px 24px -40px;
  aspect-ratio: 16/7;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}
.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.event-card:hover .event-img img { transform: scale(1.04); }

.event-icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  margin-bottom: 4px;
}
.event-icon svg { width: 100%; height: 100%; }

.event-card h3 {
  color: #fff;
  font-size: 1.6rem;
  margin: 0;
}

.event-card > p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

.event-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin: 4px 0;
}
.event-features li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.btn-event {
  display: inline-block;
  align-self: flex-start;
  padding: 12px 28px;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  margin-top: 4px;
}
.btn-event:hover {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width: 768px) {
  .events-grid { grid-template-columns: 1fr; }
  .event-card { padding: 28px 24px; }
}

/* ===========================
   SERVICES
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}

.service-item { text-align: center; }

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--color-primary);
}
.service-icon svg { width: 100%; height: 100%; }

.service-item h4 { margin-bottom: 8px; }
.service-item p { color: var(--color-text-light); font-size: 0.9rem; }

/* ===========================
   GALLERY
=========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 6px;
  margin-top: -20px;
  grid-template-areas:
    "a b c f"
    "a d d e";
}

/* layout:
   [vysoký] [norm ] [norm ] [norm ]
   [vysoký] [ široký    ] [norm ] */

.gallery-item { overflow: hidden; }
.gallery-item img { transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item.g-a { grid-area: a; }
.gallery-item.g-b { grid-area: b; }
.gallery-item.g-c { grid-area: c; }
.gallery-item.g-d { grid-area: d; }
.gallery-item.g-e { grid-area: e; }
.gallery-item.g-f { grid-area: f; }

/* ===========================
   OKOLÍ
=========================== */
#okoli { background: var(--color-bg); }

.poi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.poi-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.poi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.11);
}

.poi-card-featured {
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(201,169,110,0.2);
}
.poi-card-featured:hover {
  box-shadow: 0 12px 40px rgba(201,169,110,0.3);
}

.poi-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.poi-img img { transition: transform 0.5s ease; }
.poi-card:hover .poi-img img { transform: scale(1.06); }

.poi-dist {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.poi-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.poi-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.poi-body h4 {
  font-size: 1.1rem;
  margin: 0;
}

.poi-body p {
  color: var(--color-text-light);
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
}

.poi-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-primary);
  transition: color 0.2s;
}
.poi-card:hover .poi-link { color: var(--color-primary-dark); }

/* ===========================
   CONTACT
=========================== */
.contact-split { gap: 80px; }
.contact-split .split-text { align-self: start; }
.contact-split .split-text h2 { margin-bottom: 16px; }
.contact-split .split-text > p { color: var(--color-text-light); margin-bottom: 32px; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.contact-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-primary); }
.contact-item a { color: var(--color-text); transition: color 0.2s; }
.contact-item a:hover { color: var(--color-primary); }

.contact-form-wrap {
  background: var(--color-bg-light);
  border-radius: 8px;
  padding: 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--color-text); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  background: #fff;
  color: var(--color-text);
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: -8px;
}

/* ===========================
   AIRBNB BUTTON
=========================== */
.airbnb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 13px 24px;
  background: #FF5A5F;
  color: #fff;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.airbnb-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.airbnb-btn:hover { background: #e04e53; transform: translateY(-1px); }

.footer-airbnb {
  color: #FF5A5F !important;
  font-weight: 500 !important;
  opacity: 1 !important;
}
.footer-airbnb:hover { color: #e04e53 !important; }

/* ===========================
   GOOGLE MAPS
=========================== */
.map-wrap {
  width: 100%;
  line-height: 0;
  border-top: 1px solid var(--color-border);
}
.map-wrap iframe { display: block; }

/* ===========================
   GALLERY OVERLAY
=========================== */
.gallery-item { position: relative; cursor: pointer; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-overlay span {
  color: #fff;
  font-size: 2.5rem;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s;
  line-height: 1;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.35); }
.gallery-item:hover .gallery-overlay span { opacity: 1; transform: scale(1); }

/* ===========================
   LIGHTBOX
=========================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lb-img-wrap {
  max-width: 90vw;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: opacity 0.2s;
}
.lb-caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 14px;
  letter-spacing: 0.05em;
}
.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 4px 8px;
}
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 4px;
  line-height: 1;
  transition: background 0.2s;
  z-index: 2;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ===========================
   FOOTER
=========================== */
#footer {
  background: #1a1410;
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  gap: 40px;
  flex-wrap: wrap;
}

#footer .logo { color: #fff; font-size: 1.3rem; margin-bottom: 10px; display: block; }
#footer .logo span { color: var(--color-accent); }
.footer-brand p { font-size: 0.85rem; opacity: 0.6; max-width: 220px; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a { font-size: 0.88rem; opacity: 0.7; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.78rem;
  opacity: 0.4;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "a b"
      "c d"
      "e f";
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .poi-grid { grid-template-columns: repeat(2, 1fr); }
  .poi-grid .poi-card:nth-child(5),
  .poi-grid .poi-card:nth-child(6),
  .poi-grid .poi-card:nth-child(7) { grid-column: auto; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,20,16,0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
  }
  .nav-links.open { display: flex; }

  .nav-links.open .nav-close {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.8rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 4px 8px;
  }
  .nav-links.open .nav-close:hover { opacity: 1; }
  .nav-links a { font-size: 1.3rem; color: #fff !important; }
  .nav-cta { background: var(--color-primary) !important; }

  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-image { aspect-ratio: 16/9; }
  .split-video-thumb { aspect-ratio: 16/9; }

  .rooms-grid,
  .rooms-grid-4,
  .poi-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }

  .contact-split { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .stats { gap: 24px; }
  .footer-inner { flex-direction: column; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "a b"
      "c d"
      "e f";
  }
}
