/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', 'Segoe UI', system-ui, -apple-system, sans-serif; color: #1a1a1a; background: #fff; line-height: 1.7; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── TOKENS ───────────────────────────────────────────────── */
:root {
  --green:       #1e3a2f;
  --green-light: #2d5242;
  --cream:       #f5f2ec;
  --tan:         #c9b99a;
  --text:        #1a1a1a;
  --muted:       #6b6b6b;
  --border:      #e4e0d8;
  --white:       #ffffff;
  --radius:      4px;
  --section-pad: 6rem 2rem;
}

/* ─── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', 'Book Antiqua', Palatino, Georgia, serif; line-height: 1.2; letter-spacing: -0.02em; }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--green); margin-bottom: 0.6rem;
}
.section-inner { max-width: 1140px; margin: 0 auto; }

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 0.85rem 2rem;
  border-radius: var(--radius); font-size: 0.85rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all 0.22s; border: 2px solid transparent;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-light); border-color: var(--green-light); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-text { background: none; border: none; color: var(--green); font-size: 0.9rem; font-weight: 700; text-decoration: underline; cursor: pointer; padding: 0; letter-spacing: 0; text-transform: none; }
.btn-full { width: 100%; text-align: center; }

/* ─── NAV ──────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  transition: background 0.3s, box-shadow 0.3s;
}
#nav.scrolled { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
#nav.scrolled .nav-logo, #nav.scrolled .nav-links a { color: var(--green); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px;
}
.nav-logo {
  font-family: 'Playfair Display', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 1rem; color: var(--white); font-weight: 700;
  letter-spacing: 0.5px; transition: color 0.3s;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.85); transition: color 0.2s;
}
.nav-links a:hover, #nav.scrolled .nav-links a:hover { color: var(--tan); }
.nav-book-btn {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white);
  background: var(--green); border: 1.5px solid var(--green);
  padding: 0.55rem 1.3rem; border-radius: var(--radius); transition: all 0.2s;
}
#nav.scrolled .nav-book-btn { background: var(--green); color: var(--white); }
.nav-book-btn:hover { background: var(--green-light); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: background 0.3s; }
#nav.scrolled .nav-hamburger span { background: var(--green); }

.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); z-index: 89; padding: 1rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav-link { display: block; padding: 0.85rem 2rem; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green); border-bottom: 1px solid var(--border); }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg, #1e3a2f 0%, #2d5242 55%, #3d6b52 100%); }
/* Hero always has a green base so it's never invisible without a photo */
.hero-bg { background: linear-gradient(160deg, #1e3a2f 0%, #2d5242 100%); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.55) 100%); }
.hero-content { position: relative; text-align: center; color: var(--white); padding: 0 2rem; max-width: 800px; }
.hero-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; opacity: 0.75; margin-bottom: 1rem; }
.hero-title { font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; line-height: 1.0; text-shadow: 0 2px 24px rgba(0,0,0,0.35); margin-bottom: 1.2rem; }
.hero-sub { font-size: 1.1rem; font-weight: 300; opacity: 0.85; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-booking-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--white);
}
.booking-bar-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; gap: 0;
}
.bbar-field { flex: 1; padding: 1.2rem 1.5rem; }
.bbar-field label { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.bbar-field input { width: 100%; border: none; outline: none; font-size: 0.95rem; font-family: inherit; color: var(--text); cursor: pointer; background: transparent; }
.bbar-sep { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
.btn-book-bar {
  margin: 0.8rem 1rem; white-space: nowrap;
  background: var(--green); color: var(--white);
  padding: 0.85rem 1.8rem; border-radius: var(--radius);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; flex-shrink: 0; transition: background 0.2s;
}
.btn-book-bar:hover { background: var(--green-light); }

/* ─── HIGHLIGHTS BAR ───────────────────────────────────────── */
.highlights-bar { background: var(--green); padding: 0; }
.highlights-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hl-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.6rem 1rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}
.hl-item:last-child { border-right: none; }
.hl-icon { font-size: 1.5rem; margin-bottom: 0.5rem; opacity: 0.8; }
.hl-val { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.hl-lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.6; }

/* ─── FLOORPLAN ─────────────────────────────────────────────── */
.floorplan-section { padding: var(--section-pad); background: var(--white); }
.floorplan-section h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 0.5rem; }
.fp-sub { color: var(--muted); margin-bottom: 2rem; }
.fp-wrap { background: var(--cream); border-radius: 12px; padding: 2rem; border: 1px solid var(--border); }
.fp-svg { width: 100%; height: auto; display: block; }
.fp-image { width: 100%; height: auto; display: block; border-radius: 8px; }
.fp-legend {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  justify-content: center; margin-top: 1.5rem;
  font-size: 0.82rem; color: var(--muted);
}
.fpl-item { display: flex; align-items: center; gap: 0.5rem; }
.fpl-dot { width: 14px; height: 14px; border-radius: 2px; border: 1px solid rgba(30,58,47,0.3); flex-shrink: 0; }

/* ─── ABOUT ────────────────────────────────────────────────── */
.about { padding: var(--section-pad); background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); margin-bottom: 1.2rem; color: var(--text); }
.about-text p { color: var(--muted); margin-bottom: 1rem; font-size: 1rem; }
.about-actions { display: flex; gap: 1.5rem; align-items: center; margin-top: 2rem; flex-wrap: wrap; }
.about-photo-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 8px; }
.about-photo { overflow: hidden; border-radius: 4px; }
.about-photo-main { grid-row: span 2; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.about-photo:hover img { transform: scale(1.04); }

/* ─── GALLERY ──────────────────────────────────────────────── */
.gallery-section { padding: 5rem 0; background: var(--white); }
.gallery-section .section-inner { padding: 0 2rem; margin-bottom: 2.5rem; }
.gallery-section h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 6px;
}
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: var(--white); font-size: 0.8rem; padding: 1.5rem 1rem 0.8rem;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ─── LIGHTBOX ─────────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.93); z-index: 200;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
#lb-img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 3px; }
.lb-close { position: absolute; top: 1.5rem; right: 2rem; color: var(--white); background: none; border: none; font-size: 2.5rem; cursor: pointer; line-height: 1; opacity: 0.7; transition: opacity 0.2s; }
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); color: var(--white); border: none; font-size: 2.5rem; cursor: pointer; padding: 0.5rem 1rem; border-radius: 3px; transition: background 0.2s; }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.22); }

/* ─── FEATURES ─────────────────────────────────────────────── */
.features-section { padding: var(--section-pad); background: var(--green); color: var(--white); }
.features-section .section-label { color: var(--tan); }
.features-section h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 2.5rem; }
.features-grid { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.8rem; }
.features-grid li { display: flex; align-items: center; gap: 0.8rem; font-size: 0.97rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.feat-check { color: var(--tan); font-size: 1rem; flex-shrink: 0; }

/* ─── LOCATION ─────────────────────────────────────────────── */
.location-section { padding: var(--section-pad); background: var(--cream); }
.location-section h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 1rem; }
.location-body { color: var(--muted); margin-bottom: 2rem; }

/* facilities widget */
.fac-wrap { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--white); max-width: 720px; }
.fac-header { display: flex; align-items: center; gap: 0.45rem; padding: 0.6rem 1.1rem; background: #f0ede8; border-bottom: 1px solid var(--border); font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.fac-tabs { display: flex; gap: 0.4rem; overflow-x: auto; padding: 0.7rem 0.8rem 0; border-bottom: 1px solid var(--border); background: var(--white); scrollbar-width: none; }
.fac-tabs::-webkit-scrollbar { display: none; }
.fac-tab { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; padding: 0.5rem 0.85rem 0.6rem; border: 1.5px solid #d0d8e0; border-bottom: none; border-radius: 7px 7px 0 0; background: var(--white); cursor: pointer; font-family: inherit; white-space: nowrap; position: relative; bottom: -1px; transition: background 0.12s, border-color 0.12s; }
.fac-tab:hover { background: #f0f5ff; }
.fac-tab.active { background: #dbeafe; border-color: #93c5fd; color: #1e40af; border-bottom: 1.5px solid #dbeafe; }
.fac-tab-icon { color: inherit; display: flex; }
.fac-tab-count { font-size: 1rem; font-weight: 700; line-height: 1.1; color: inherit; }
.fac-tab-label { font-size: 0.7rem; color: var(--muted); }
.fac-tab.active .fac-tab-label { color: #3b82f6; }
.fac-panel { display: none; }
.fac-panel.active { display: block; }
.fac-list { list-style: none; margin: 0; padding: 0; }
.fac-item { display: flex; justify-content: space-between; align-items: center; padding: 0.7rem 1.1rem; border-bottom: 1px solid var(--border); }
.fac-item:last-of-type { border-bottom: none; }
.fac-item-name { font-size: 0.9rem; font-weight: 500; color: var(--text); }
.fac-item-type { font-size: 0.76rem; color: var(--muted); margin-top: 0.1rem; }
.fac-item-dist { display: flex; align-items: center; gap: 0.4rem; text-align: right; flex-shrink: 0; }
.fac-walk { display: flex; align-items: center; gap: 0.25rem; font-size: 0.82rem; font-weight: 600; color: var(--green); }
.fac-dist-m { font-size: 0.78rem; color: var(--muted); }
.fac-more-item { padding: 0.55rem 1.1rem; font-size: 0.78rem; color: var(--muted); font-style: italic; border-top: 1px dashed var(--border); }
.fac-no-detail { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.1rem; font-size: 0.88rem; color: var(--muted); gap: 1rem; }
.fac-no-detail a { color: var(--green); font-weight: 600; white-space: nowrap; }

/* ─── BOOKING ──────────────────────────────────────────────── */
.booking-section { padding: var(--section-pad); background: var(--white); }
.booking-section h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 0.5rem; }
.booking-body { color: var(--muted); margin-bottom: 2.5rem; }
.booking-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

/* calendar */
.booking-calendar-wrap { position: sticky; top: 90px; }
#booking-calendar { user-select: none; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-header h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.cal-nav { background: none; border: 1.5px solid var(--border); color: var(--text); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.cal-nav:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-day-name { text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); padding: 0.3rem 0; }
.cal-day {
  text-align: center; padding: 0.6rem 0.3rem; font-size: 0.88rem;
  border-radius: 3px; cursor: pointer; transition: all 0.15s; border: 1.5px solid transparent;
}
.cal-day.empty { cursor: default; }
.cal-day.past { color: #ccc; cursor: not-allowed; }
.cal-day.blocked { background: #fef0f0; color: #e57373; cursor: not-allowed; text-decoration: line-through; }
.cal-day.out-of-range { color: #ccc; cursor: not-allowed; }
.cal-day.selected { background: var(--green); color: var(--white); }
.cal-day.in-range { background: rgba(30,58,47,0.12); }
.cal-day.today { border-color: var(--green); font-weight: 700; }
.cal-day:not(.past):not(.blocked):not(.empty):hover { background: var(--cream); border-color: var(--green); }
.booking-legend { display: flex; gap: 1.5rem; margin-top: 1rem; font-size: 0.8rem; color: var(--muted); flex-wrap: wrap; }
.booking-legend span { display: inline-block; width: 14px; height: 14px; border-radius: 2px; vertical-align: middle; margin-right: 4px; }
.leg-avail { background: #fff; border: 1.5px solid var(--border); }
.leg-blocked { background: #fef0f0; border: 1.5px solid #e57373; }
.leg-sel { background: var(--green); }

/* booking form */
.booking-form h3 { font-size: 1.1rem; font-family: 'Playfair Display', serif; margin-bottom: 1.5rem; }
.form-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; margin-bottom: 0.2rem; }
.form-row label { color: var(--muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; }
.f-date-display { font-weight: 600; color: var(--green); }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; }
.booking-result { margin-top: 1rem; padding: 1rem; border-radius: var(--radius); font-size: 0.9rem; }
.booking-result.success { background: #f0faf3; border: 1px solid #a8d5b5; color: #1e6b3a; }
.booking-result.error { background: #fef0f0; border: 1px solid #f5c6cb; color: #c0392b; }

/* no-booking section */
.no-booking-section { padding: var(--section-pad); background: var(--green); color: var(--white); text-align: center; }
.no-booking-inner h2 { color: var(--white); font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 1rem; }
.no-booking-inner p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ─── CONTACT ──────────────────────────────────────────────── */
.contact-section { padding: var(--section-pad); background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-section h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; padding-top: 0.5rem; }
.contact-list li { display: flex; align-items: center; gap: 1rem; font-size: 1rem; }
.contact-icon { width: 40px; height: 40px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green); }
.contact-list a:hover { color: var(--green); text-decoration: underline; }

/* ─── FOOTER ───────────────────────────────────────────────── */
footer { background: var(--green); color: rgba(255,255,255,0.55); padding: 3rem 2rem; text-align: center; }
.footer-inner { max-width: 800px; margin: 0 auto; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 0.4rem; }
.footer-sub { font-size: 0.88rem; margin-bottom: 1.5rem; }
.footer-copy { font-size: 0.78rem; }

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid, .contact-grid, .booking-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .fac-tabs { gap: 0.3rem; }
  .fac-tab { padding: 0.45rem 0.65rem 0.5rem; }
  .fac-tab-count { font-size: 0.9rem; }
  .fac-no-detail { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .about-photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .about-photo-main { grid-row: span 1; }
  .booking-calendar-wrap { position: static; }
}

/* ─── LANGUAGE DROPDOWN ──────────────────────────────────────── */
details.lang-dropdown { position: relative; }
details.lang-dropdown summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 0.45rem;
  background: rgba(255,255,255,0.13); border: 1px solid rgba(255,255,255,0.25);
  color: var(--white); padding: 0.35rem 0.7rem 0.35rem 0.6rem;
  border-radius: 6px; font-size: 0.82rem; font-family: inherit;
  font-weight: 500; white-space: nowrap; transition: background 0.18s;
}
details.lang-dropdown summary::-webkit-details-marker { display: none; }
details.lang-dropdown summary::marker { display: none; content: ''; }
details.lang-dropdown summary:hover { background: rgba(255,255,255,0.22); }
details.lang-dropdown summary span { font-size: 0.82rem; }
.lang-chevron { opacity: 0.75; flex-shrink: 0; transition: transform 0.18s; }
details.lang-dropdown[open] .lang-chevron { transform: rotate(180deg); }
#nav.scrolled details.lang-dropdown summary {
  background: rgba(30,58,47,0.08); border-color: rgba(30,58,47,0.2); color: var(--green);
}
#nav.scrolled details.lang-dropdown summary:hover { background: rgba(30,58,47,0.14); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: #fff; border-radius: 8px; min-width: 152px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.14); overflow: hidden; z-index: 200;
}
.lang-opt {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.62rem 1rem; font-size: 0.85rem; color: #1e3a2f;
  transition: background 0.13s;
}
.lang-opt:hover { background: #f4f8f6; }
.lang-opt.active { background: #edf4f0; font-weight: 600; }
/* mobile */
.mobile-lang-switcher {
  display: flex; gap: 0.5rem;
  padding: 0.85rem 2rem; border-top: 1px solid var(--border);
}
.mobile-lang-switcher .lang-btn {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.9rem; color: var(--green); font-weight: 500;
  padding: 0.35rem 0.8rem; border: 1.5px solid var(--border); border-radius: 5px;
}
.mobile-lang-switcher .lang-btn:hover,
.mobile-lang-switcher .lang-btn.active {
  background: var(--green); color: var(--white); border-color: var(--green);
}

@media (max-width: 768px) {
  :root { --section-pad: 4rem 1.5rem; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .hl-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hl-item:nth-child(2n) { border-right: none; }
  .hl-item:nth-last-child(-n+2) { border-bottom: none; }
  .nav-links, .nav-book-btn { display: none; }
  .nav-hamburger { display: flex; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-booking-bar { position: static; }
  .booking-bar-inner { flex-direction: column; gap: 0; }
  .bbar-sep { display: none; }
  .bbar-field { width: 100%; border-bottom: 1px solid var(--border); }
  .btn-book-bar { margin: 1rem; align-self: stretch; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}
