/* =============================================================
   Nusakuya Resort — style.css
   Font:   Cabinet Grotesk (headings) + DM Sans (body)
   Accent: #c2410c  Hover: #9a3412  Footer-bg: #1d0901
   Generated: 2026-04-25
   ============================================================= */

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Typography */
  --font-heading: 'Cabinet Grotesk', system-ui, sans-serif;
  --font-body:      'DM Sans', system-ui, sans-serif;

  /* Accent palette */
  --accent:       #c2410c;
  --accent-hover: #9a3412;

  /* Neutral palette */
  --text:         #1a1a1a;
  --text-muted:   #6b7280;
  --bg:           #ffffff;
  --bg-alt:       #f8f5f1;
  --border:       #e5e7eb;

  /* Footer */
  --footer-bg:    #1d0901;
  --footer-text:  rgba(255, 255, 255, 0.72);

  /* Layout */
  --max-w:        1280px;
  --navbar-h:     80px;
  --section-pad:  80px;

  /* Component tokens */
  --btn-radius:   6px;
  --img-radius:   10px;
  --card-radius:  12px;
  --shadow-sm:    0 1px 4px rgba(0, 0, 0, 0.07);
  --shadow-md:    0 4px 18px rgba(0, 0, 0, 0.10);
  --shadow-lg:    0 10px 36px rgba(0, 0, 0, 0.14);
}

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

html, body {
  width:      100%;
  max-width:  100vw;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:    var(--font-body);
  font-size:      1.0625rem;
  line-height:    1.65;
  color:          var(--text);
  background:     var(--bg);
  -webkit-font-smoothing:  antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color:           var(--accent);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

ul { list-style: none; }

button {
  font-family: var(--font-body);
  cursor:      pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family:  var(--font-heading);
  line-height:  1.25;
  color:        var(--text);
}

/* ============================================================
   3. LAYOUT — CONTAINER
   ============================================================ */
.container {
  width:         100%;
  max-width:     var(--max-w);
  margin-left:   auto !important;
  margin-right:  auto !important;
  padding-left:  1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding-left:  2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1200px) {
  .container {
    padding-left:  3rem;
    padding-right: 3rem;
  }
}

/* ============================================================
   4. SECTIONS — SHARED
   ============================================================ */
.section {
  padding-top:    var(--section-pad);
  padding-bottom: var(--section-pad);
  background:     var(--bg);
}

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

.section-eyebrow {
  font-family:    var(--font-body);
  font-size:      1.0625rem;
  font-weight:    600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color:          var(--accent);
  margin-bottom:  0.5rem;
}

.section-title {
  font-family:   var(--font-heading);
  font-size:     clamp(1.75rem, 4vw, 2.75rem);
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 1.25rem;
}

.section-intro {
  font-size:    1.0625rem;
  line-height:  1.7;
  color:        var(--text-muted);
  max-width:    100%;
  margin-bottom: 2.5rem;
  text-align:   justify;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  gap:             0.4rem;
  padding:         0.75rem 1.75rem;
  font-family:     var(--font-body);
  font-size:       1rem;
  font-weight:     600;
  border-radius:   var(--btn-radius);
  border:          2px solid transparent;
  text-decoration: none;
  transition:      background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor:          pointer;
  white-space:     nowrap;
}

.btn-primary {
  background:   var(--accent);
  color:        #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background:   var(--accent-hover);
  border-color: var(--accent-hover);
  text-decoration: none;
}

.btn-secondary {
  background:   transparent;
  color:        #fff;
  border-color: rgba(255, 255, 255, 0.8);
}
.btn-secondary:hover {
  background:   rgba(255, 255, 255, 0.15);
  border-color: #fff;
  text-decoration: none;
}

/* ============================================================
   6. NAVBAR
   ============================================================ */
.navbar {
  position:   fixed;
  top:        0;
  left:       0;
  right:      0;
  height:     var(--navbar-h);
  z-index:    1000;
  background: transparent;
  transition: background 0.25s, box-shadow 0.25s;
}

.navbar.scrolled {
  background:              rgba(255, 255, 255, 0.97);
  box-shadow:              0 2px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter:         blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.nav-brand {
  display:     flex;
  align-items: center;
  text-decoration: none;
}

.logo-navbar,
.navbar-logo img {
  height:      var(--navbar-h);
  width:       auto;
  object-fit:  contain;
  display:     block;
  /* Lighten logo for dark hero: invert + sepia for webp logos on dark backgrounds */
}

/* When navbar is transparent (over hero), attempt to lighten the logo */
.navbar:not(.scrolled) .navbar-logo img {
  filter: brightness(0) invert(1);
}

.navbar-links {
  display:     flex;
  align-items: center;
  gap:         1.75rem;
  list-style:  none;
}

.navbar-links a {
  font-size:       1.0625rem;
  font-weight:     600;
  color:           rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition:      color 0.2s;
}
.navbar-links a:hover { color: #fff; }

.navbar.scrolled .navbar-links a       { color: var(--text-muted); }
.navbar.scrolled .navbar-links a:hover { color: var(--accent); }

.navbar-links .nav-cta a {
  background:    var(--accent);
  color:         #fff;
  padding:       0.4rem 1.125rem;
  border-radius: var(--btn-radius);
  font-weight:   700;
  transition:    background 0.2s;
}
.navbar-links .nav-cta a:hover {
  background:   var(--accent-hover);
  color:        #fff;
  text-decoration: none;
}
.navbar.scrolled .navbar-links .nav-cta a       { color: #fff; }
.navbar.scrolled .navbar-links .nav-cta a:hover { color: #fff; }

/* Hamburger button */
.hamburger {
  display:    none;
  flex-direction: column;
  justify-content: center;
  align-items:    center;
  gap:        5px;
  width:      44px;
  height:     44px;
  background: none;
  border:     none;
  padding:    0;
  cursor:     pointer;
}

.hamburger-bar {
  display:       block;
  width:         24px;
  height:        2px;
  background:    rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition:    background 0.2s;
}
.navbar.scrolled .hamburger-bar { background: var(--text); }

/* ============================================================
   7. NAV SENTINEL (must not take up space)
   ============================================================ */
.nav-sentinel {
  position:   absolute;
  top:        0;
  left:       0;
  width:      1px;
  height:     1px;
  opacity:    0;
  visibility: hidden;
  pointer-events: none;
}

/* ============================================================
   8. MOBILE MENU
   ============================================================ */
.mobile-menu {
  display:                    none;
  position:                   fixed;
  top:                        0;
  left:                       0;
  right:                      0;
  max-height:                 calc(100vh - 2rem);
  overflow-y:                 auto;
  background:                 #fff;
  padding:                    1.25rem 1.5rem 2rem;
  box-shadow:                 var(--shadow-lg);
  z-index:                    1001;
  border-bottom-left-radius:  var(--card-radius);
  border-bottom-right-radius: var(--card-radius);
  flex-direction:             column;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-close {
  align-self:      flex-end;
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  width:           40px;
  height:          40px;
  background:      none;
  border:          1px solid var(--border);
  border-radius:   50%;
  font-size:       1.125rem;
  color:           var(--text-muted);
  margin-bottom:   0.75rem;
  transition:      color 0.2s, border-color 0.2s;
}
.mobile-menu-close:hover {
  color:        var(--accent);
  border-color: var(--accent);
}

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

.mobile-nav-links li a {
  display:         block;
  padding:         0.75rem 0;
  font-size:       1.0625rem;
  font-weight:     500;
  color:           var(--text);
  text-decoration: none;
  border-bottom:   1px solid var(--border);
  transition:      color 0.2s;
}
.mobile-nav-links li:last-child a { border-bottom: none; }
.mobile-nav-links li a:hover      { color: var(--accent); }

.mobile-nav-links .mobile-cta {
  display:         inline-flex;
  margin-top:      0.75rem;
  padding:         0.75rem 1.5rem !important;
  background:      var(--accent) !important;
  color:           #fff !important;
  border-radius:   var(--btn-radius);
  border-bottom:   none !important;
  font-weight:     700 !important;
  text-decoration: none;
  transition:      background 0.2s;
}
.mobile-nav-links .mobile-cta:hover { background: var(--accent-hover) !important; }

.menu-backdrop {
  display:         none;
  position:        fixed;
  inset:           0;
  background:      rgba(17, 24, 39, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index:         1000;
}
.menu-backdrop.open { display: block; }

/* ============================================================
   9. HERO SECTION
   ============================================================ */
.hero {
  position:   relative;
  min-height: 100vh;
  display:    flex;
  align-items: flex-start;
  overflow:   hidden;
}

.hero-image {
  position: absolute;
  inset:    0;
  z-index:  0;
}

.hero-image img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  object-position: center;
  display:    block;
}

.hero-overlay {
  position:   absolute;
  inset:      0;
  z-index:    1;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.42) 50%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

/* Desktop: also a top gradient for navbar readability */
@media (min-width: 901px) {
  .hero-overlay::after {
    content:  '';
    position: absolute;
    top:      0;
    left:     0;
    right:    0;
    height:   160px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35), transparent);
  }
}

.hero-content {
  position:    relative;
  z-index:     2;
  padding-top: clamp(6rem, 18vh, 12rem);
  max-width:   680px;
}

.hero-title {
  font-family:   var(--font-heading);
  font-size:     clamp(2.25rem, 5.5vw, 4rem);
  font-weight:   700;
  color:         #fff;
  line-height:   1.15;
  margin-bottom: 1rem;
  text-shadow:   0 2px 12px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-size:     clamp(1rem, 2vw, 1.125rem);
  color:         rgba(255, 255, 255, 0.88);
  line-height:   1.6;
  margin-bottom: 2rem;
  text-shadow:   0 1px 6px rgba(0,0,0,0.25);
}

.hero-ctas {
  display:   flex;
  flex-wrap: wrap;
  gap:       0.875rem;
}

/* ============================================================
   10. ABOUT SECTION
   ============================================================ */
.about-grid {
  display:               grid;
  grid-template-columns: 1fr 1.4fr;
  gap:                   4rem;
  align-items:           center;
}

.about-text .section-eyebrow,
.about-text .section-title {
  margin-bottom: 0.75rem;
}

.about-desc {
  font-size:    1.0625rem;
  line-height:  1.7;
  color:        var(--text-muted);
  margin-bottom: 1rem;
}

.about-highlights {
  list-style:   none;
  margin-top:   1.5rem;
  display:      flex;
  flex-direction: column;
  gap:          0.6rem;
}

.about-highlights li {
  display:     flex;
  align-items: flex-start;
  gap:         0.65rem;
  font-size:   1rem;
  color:       var(--text);
  line-height: 1.5;
}

.about-highlights li i {
  color:      var(--accent);
  font-size:  0.875rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.about-image {
  border-radius: var(--card-radius);
  overflow:      hidden;
  box-shadow:    var(--shadow-md);
}

.about-image img {
  width:      100%;
  height:     480px;
  object-fit: cover;
  display:    block;
}

/* ============================================================
   11. ACTIVITIES SECTION
   ============================================================ */
.activities-banner {
  border-radius: var(--card-radius);
  overflow:      hidden;
  margin-bottom: 2rem;
  box-shadow:    var(--shadow-sm);
}

.activities-banner img {
  width:           100%;
  height:          360px;
  object-fit:      cover;
  object-position: center;
  display:         block;
}

/* On-site activities */
.onsite-activities {
  margin-bottom: 3rem;
}

.onsite-heading {
  font-family:   var(--font-heading);
  font-size:     1.375rem;
  font-weight:   600;
  color:         var(--text);
  margin-bottom: 1rem;
}

.onsite-list {
  list-style: none;
  display:    flex;
  flex-direction: column;
  gap:        0.75rem;
}

.onsite-list li {
  display:     flex;
  align-items: flex-start;
  gap:         0.75rem;
  font-size:   1.0625rem;
  line-height: 1.6;
  color:       var(--text-muted);
}

.onsite-list li i {
  color:      var(--accent);
  font-size:  1rem;
  margin-top: 0.2rem;
  width:      1.125rem;
  flex-shrink: 0;
  text-align: center;
}

/* Activity card grid */
.activity-section-heading {
  font-family:   var(--font-heading);
  font-size:     1.5rem;
  font-weight:   600;
  color:         var(--text);
  margin-bottom: 1.5rem;
}

.activity-grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   1.5rem;
  margin-bottom:         3.5rem;
}

.activity-card {
  background:    var(--bg);
  border:        1px solid var(--border);
  border-radius: var(--card-radius);
  overflow:      hidden;
  box-shadow:    var(--shadow-sm);
  transition:    box-shadow 0.2s, transform 0.2s;
}
.activity-card:hover {
  box-shadow: var(--shadow-md);
  transform:  translateY(-2px);
}

.activity-card img {
  width:      100%;
  height:     200px;
  object-fit: cover;
  display:    block;
}

.activity-card-body {
  padding: 1.25rem;
}

.activity-card-icon {
  width:           42px;
  height:          42px;
  border-radius:   50%;
  background:      rgba(194, 65, 12, 0.10);
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin-bottom:   0.75rem;
}

.activity-card-icon i {
  color:     var(--accent);
  font-size: 1.125rem;
}

.activity-card-title {
  font-family:   var(--font-heading);
  font-size:     1.125rem;
  font-weight:   600;
  color:         var(--text);
  margin-bottom: 0.5rem;
}

.activity-card-desc {
  font-size:  0.9375rem;
  line-height: 1.65;
  color:      var(--text-muted);
}

/* Tour blocks */
.tour-section-heading {
  font-family:   var(--font-heading);
  font-size:     1.5rem;
  font-weight:   600;
  color:         var(--text);
  margin-bottom: 1.75rem;
}

.tour-blocks {
  display:        flex;
  flex-direction: column;
  gap:            3.5rem;
}

.tour-block {
  display:               grid;
  grid-template-columns: 1fr 1.4fr;
  gap:                   3rem;
  align-items:           center;
}

/* Alternate blocks: odd = image left, even = image right */
.tour-block:nth-child(even) {
  direction: rtl;
}
.tour-block:nth-child(even) > * {
  direction: ltr;
}

.tour-block-image {
  border-radius: var(--card-radius);
  overflow:      hidden;
  box-shadow:    var(--shadow-md);
}

.tour-block-image img {
  width:      100%;
  height:     auto;
  object-fit: cover;
  display:    block;
}

.tour-block-title {
  font-family:   var(--font-heading);
  font-size:     1.375rem;
  font-weight:   600;
  color:         var(--text);
  margin-bottom: 0.875rem;
}

.tour-block-desc {
  font-size:    1.0625rem;
  line-height:  1.7;
  color:        var(--text-muted);
  margin-bottom: 1.25rem;
  text-align:   justify;
}

.tour-block-highlights {
  list-style: none;
  display:    flex;
  flex-direction: column;
  gap:        0.6rem;
}

.tour-block-highlights li {
  display:     flex;
  align-items: baseline;
  gap:         0.6rem;
  font-size:   1rem;
  line-height: 1.55;
  color:       var(--text-muted);
}

.tour-block-highlights li i {
  color:       var(--accent);
  font-size:   1rem;
  width:       1rem;
  flex-shrink: 0;
  text-align:  center;
  transform:   translateY(0.15em);
}

/* ============================================================
   12. ROOMS SECTION
   ============================================================ */
.rooms-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   2rem;
  margin-top:            0.5rem;
}

.room-card {
  display:        flex;
  flex-direction: column;
  height:         100%;
  background:     var(--bg);
  border:         1px solid var(--border);
  border-radius:  var(--card-radius);
  overflow:       hidden;
  box-shadow:     var(--shadow-sm);
  transition:     box-shadow 0.2s;
}
.room-card:hover { box-shadow: var(--shadow-md); }

/* ---- Carousel ---- */
.carousel {
  position:  relative;
  overflow:  hidden;
  background: #f3f4f6;
}

.carousel-track {
  display:    flex;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  flex:      0 0 100%;
}

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

.carousel-btn {
  position:  absolute;
  top:       50%;
  transform: translateY(-50%);
  z-index:   10;
  display:   flex;
  align-items:     center;
  justify-content: center;
  width:           36px;
  height:          36px;
  min-width:       44px;
  min-height:      44px;
  background:      rgba(255, 255, 255, 0.92);
  border:          none;
  border-radius:   50%;
  box-shadow:      var(--shadow-sm);
  color:           var(--text);
  font-size:       0.875rem;
  opacity:         1;
  cursor:          pointer;
  touch-action:    manipulation;
  -webkit-tap-highlight-color: transparent;
  transition:      background 0.2s;
}
.carousel-btn:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
}
.carousel-btn.prev { left:  0.5rem; }
.carousel-btn.next { right: 0.5rem; }

.carousel-dots {
  position:        absolute;
  bottom:          0.6rem;
  left:            50%;
  transform:       translateX(-50%);
  display:         flex;
  gap:             0.35rem;
  z-index:         5;
}

.carousel-dot {
  width:         9px;
  height:        9px;
  border-radius: 50%;
  border:        none;
  background:    rgba(255, 255, 255, 0.55);
  cursor:        pointer;
  padding:       0;
  transition:    background 0.2s;
}
.carousel-dot.active,
.carousel-dot:hover {
  background: #fff;
}

/* ---- View details row ---- */
.room-view-details-row {
  display:         flex;
  justify-content: center;
  padding:         0.875rem 1rem 0;
}

.villa-view-link {
  display:       inline-block;
  padding:       0.4rem 1rem;
  font-size:     1rem;
  font-weight:   600;
  color:         var(--accent);
  background:    transparent;
  border:        1px solid var(--accent);
  border-radius: var(--btn-radius);
  cursor:        pointer;
  transition:    background 0.2s, color 0.2s;
  text-decoration: none;
}
.villa-view-link:hover {
  background: var(--accent);
  color:      #fff;
}

/* ---- Room info ---- */
.room-info {
  display:        flex;
  flex-direction: column;
  flex:           1;
  padding:        1rem 1.125rem 0;
}

.room-title {
  font-family:   var(--font-heading);
  font-size:     1.125rem;
  font-weight:   600;
  color:         var(--text);
  margin-bottom: 0.35rem;
}

.room-meta {
  font-size:    0.9375rem;
  color:        var(--text-muted);
  margin-bottom: 0.75rem;
}

.room-features {
  list-style: none;
  display:    flex;
  flex-direction: column;
  gap:        0.4rem;
  margin-bottom: 0.875rem;
}

.room-features li {
  display:     flex;
  align-items: center;
  gap:         0.5rem;
  font-size:   0.9375rem;
  color:       var(--text-muted);
}

.room-features li i {
  color:      var(--accent);
  font-size:  0.875rem;
  width:      1rem;
  flex-shrink: 0;
  text-align: center;
}

.room-desc {
  font-size:    0.9375rem;
  line-height:  1.65;
  color:        var(--text-muted);
  flex:         1;
}

/* ---- Room footer / Book CTA ---- */
.room-footer {
  padding: 1rem 1.125rem 1.125rem;
}

.btn-room-cta {
  display:       block;
  width:         100%;
  text-align:    center;
  padding:       0.875rem;
  background:    var(--accent);
  color:         #fff;
  border:        none;
  border-radius: var(--btn-radius);
  font-family:   var(--font-body);
  font-weight:   600;
  font-size:     1rem;
  cursor:        pointer;
  transition:    background 0.2s;
  margin-top:    auto;
}
.btn-room-cta:hover { background: var(--accent-hover); }

/* ---- Modals ---- */
.modal {
  display:         none;
  position:        fixed;
  inset:           0;
  z-index:         2000;
  align-items:     center;
  justify-content: center;
  padding:         1.5rem;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position:   absolute;
  inset:      0;
  background: rgba(0, 0, 0, 0.60);
  cursor:     pointer;
}

.modal-box {
  position:   relative;
  background: var(--bg);
  border-radius: var(--card-radius);
  padding:    2rem;
  max-width:  560px;
  width:      100%;
  max-height: 90vh;
  overflow-y: auto;
  z-index:    1;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position:    absolute;
  top:         1rem;
  right:       1rem;
  display:     inline-flex;
  align-items: center;
  justify-content: center;
  width:       36px;
  height:      36px;
  background:  none;
  border:      1px solid var(--border);
  border-radius: 50%;
  font-size:   1rem;
  color:       var(--text-muted);
  cursor:      pointer;
  transition:  color 0.2s, border-color 0.2s;
}
.modal-close:hover {
  color:        var(--accent);
  border-color: var(--accent);
}

.modal-body {
  padding-top: 0.25rem;
}

.modal-room-title {
  font-family:   var(--font-heading);
  font-size:     1.375rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0.4rem;
  padding-right: 2.5rem;
}

.modal-room-meta {
  font-size:    0.9375rem;
  color:        var(--text-muted);
  margin-bottom: 1rem;
}

.modal-room-desc {
  font-size:    1rem;
  line-height:  1.7;
  color:        var(--text-muted);
  margin-bottom: 1.25rem;
}

.modal-room-specs {
  list-style: none;
  display:    flex;
  flex-direction: column;
  gap:        0.5rem;
  margin-bottom: 1.5rem;
}

.modal-room-specs li {
  display:     flex;
  align-items: center;
  gap:         0.6rem;
  font-size:   0.9375rem;
  color:       var(--text-muted);
}

.modal-room-specs li i {
  color:       var(--accent);
  font-size:   0.875rem;
  width:       1rem;
  flex-shrink: 0;
  text-align:  center;
}

.modal-room-cta {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  padding:         0.75rem 1.75rem;
  background:      var(--accent);
  color:           #fff;
  border-radius:   var(--btn-radius);
  font-weight:     600;
  font-size:       1rem;
  text-decoration: none;
  transition:      background 0.2s;
}
.modal-room-cta:hover {
  background:      var(--accent-hover);
  text-decoration: none;
  color:           #fff;
}

/* ============================================================
   13. MEALS SECTION
   ============================================================ */
.meals-grid {
  display:               grid;
  grid-template-columns: 1fr 1.4fr;
  gap:                   4rem;
  align-items:           start;
}

.meals-intro {
  font-size:    1.0625rem;
  line-height:  1.7;
  color:        var(--text-muted);
  margin-bottom: 1.75rem;
}

.meals-breakdown {
  display:        flex;
  flex-direction: column;
  gap:            1.5rem;
  margin-bottom:  1.75rem;
}

.meal-item {
  display: flex;
  gap:     1rem;
  align-items: flex-start;
}

.meal-icon {
  width:           46px;
  height:          46px;
  min-width:       46px;
  border-radius:   50%;
  background:      rgba(194, 65, 12, 0.10);
  display:         flex;
  align-items:     center;
  justify-content: center;
}

.meal-icon i {
  color:     var(--accent);
  font-size: 1.125rem;
}

.meal-detail h4 {
  font-family:   var(--font-heading);
  font-size:     1.0625rem;
  font-weight:   600;
  color:         var(--text);
  margin-bottom: 0.3rem;
}

.meal-detail p {
  font-size:  0.9375rem;
  line-height: 1.65;
  color:      var(--text-muted);
}

.meals-notes {
  background:    var(--bg);
  border:        1px solid var(--border);
  border-radius: var(--card-radius);
  padding:       1.25rem 1.375rem;
}

.section-alt .meals-notes {
  background: rgba(255, 255, 255, 0.7);
}

.meals-notes-heading {
  font-family:   var(--font-heading);
  font-size:     1rem;
  font-weight:   600;
  color:         var(--text);
  margin-bottom: 0.75rem;
}

.meals-notes-list {
  list-style: none;
  display:    flex;
  flex-direction: column;
  gap:        0.6rem;
}

.meals-notes-list li {
  display:     flex;
  align-items: flex-start;
  gap:         0.6rem;
  font-size:   0.9375rem;
  color:       var(--text-muted);
  line-height: 1.55;
}

.meals-notes-list li i {
  color:       var(--accent);
  font-size:   0.875rem;
  margin-top:  0.175rem;
  width:       1rem;
  flex-shrink: 0;
  text-align:  center;
}

.meals-image {
  border-radius: var(--card-radius);
  overflow:      hidden;
  box-shadow:    var(--shadow-md);
  position:      sticky;
  top:           calc(var(--navbar-h) + 1.5rem);
}

.meals-image img {
  width:      100%;
  height:     520px;
  object-fit: cover;
  display:    block;
}

/* ============================================================
   14. GETTING HERE SECTION
   ============================================================ */
.getting-here-grid {
  display:               grid;
  grid-template-columns: 1fr 360px;
  gap:                   3.5rem;
  align-items:           start;
}

.getting-here-content h3.getting-here-sub {
  font-family:   var(--font-heading);
  font-size:     1.1875rem;
  font-weight:   600;
  color:         var(--text);
  margin-top:    1.75rem;
  margin-bottom: 0.75rem;
  display:       flex;
  align-items:   center;
  gap:           0.5rem;
}

.getting-here-content h3.getting-here-sub:first-of-type {
  margin-top: 0;
}

.getting-here-content h3.getting-here-sub i {
  color:     var(--accent);
  font-size: 1rem;
}

.getting-here-content p {
  font-size:    1.0625rem;
  line-height:  1.7;
  color:        var(--text-muted);
  margin-bottom: 0.75rem;
}

.travel-list {
  list-style: none;
  display:    flex;
  flex-direction: column;
  gap:        0.4rem;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.travel-list li {
  font-size:   1rem;
  line-height: 1.6;
  color:       var(--text-muted);
  padding-left: 1rem;
  position:    relative;
}

.travel-list li::before {
  content:    '·';
  position:   absolute;
  left:       0;
  color:      var(--accent);
  font-weight: 700;
}

/* Sidebar */
.getting-here-sidebar {
  display:        flex;
  flex-direction: column;
  gap:            1rem;
  position:       sticky;
  top:            calc(var(--navbar-h) + 1.5rem);
}

.location-image {
  width:         100%;
  height:        200px;
  object-fit:    cover;
  border-radius: var(--card-radius);
  display:       block;
}

.maps-btn {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             0.5rem;
  padding:         0.75rem 1rem;
  background:      var(--accent);
  color:           #fff;
  border-radius:   var(--btn-radius);
  font-size:       0.9375rem;
  font-weight:     600;
  text-decoration: none;
  transition:      background 0.2s;
}
.maps-btn:hover {
  background:      var(--accent-hover);
  text-decoration: none;
  color:           #fff;
}

.map-embed-wrap {
  border-radius: var(--card-radius);
  overflow:      hidden;
  box-shadow:    var(--shadow-sm);
}

.map-embed-wrap iframe {
  display: block;
  width:   100%;
  height:  260px;
  border:  none;
}

.travel-tips {
  background:    var(--bg);
  border:        1px solid var(--border);
  border-radius: var(--card-radius);
  padding:       1.25rem;
}

.travel-tips h4 {
  font-family:   var(--font-heading);
  font-size:     1rem;
  font-weight:   600;
  color:         var(--text);
  margin-bottom: 0.875rem;
  display:       flex;
  align-items:   center;
  gap:           0.5rem;
}

.travel-tips h4 i {
  color:     var(--accent);
  font-size: 0.875rem;
}

.travel-tips-list {
  list-style: none;
  display:    flex;
  flex-direction: column;
  gap:        0.65rem;
}

.travel-tips-list li {
  display:     flex;
  align-items: flex-start;
  gap:         0.6rem;
  font-size:   0.9375rem;
  line-height: 1.55;
  color:       var(--text-muted);
}

.travel-tips-list li i {
  color:       var(--accent);
  font-size:   0.875rem;
  margin-top:  0.175rem;
  width:       1rem;
  flex-shrink: 0;
  text-align:  center;
}

/* ============================================================
   15. CONTACT SECTION
   ============================================================ */
.contact-grid {
  display:               grid;
  grid-template-columns: 1fr 360px;
  gap:                   3.5rem;
  align-items:           start;
}

/* Form banners */
.form-banner {
  display:       flex;
  align-items:   flex-start;
  gap:           0.875rem;
  padding:       1rem 1.25rem;
  border-radius: var(--card-radius);
  margin-bottom: 1.5rem;
  font-size:     1rem;
  line-height:   1.55;
}

.form-banner i {
  font-size:  1.25rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.form-banner > div strong { display: block; margin-bottom: 0.2rem; font-size: 1rem; }
.form-banner > div p      { margin: 0; font-size: 0.9375rem; }

.form-banner-success {
  background:  #f0fdf4;
  border-left: 4px solid #16a34a;
  color:       #14532d;
}
.form-banner-success i { color: #16a34a; }

.form-banner-error {
  background:  #fef2f2;
  border-left: 4px solid #dc2626;
  color:       #7f1d1d;
}
.form-banner-error i { color: #dc2626; }

/* Booking form */
.booking-form {
  display:        flex;
  flex-direction: column;
  gap:            1rem;
}

.honeypot {
  display:    none;
  visibility: hidden;
  position:   absolute;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap:     1rem;
}

.form-group {
  display:        flex;
  flex-direction: column;
  gap:            0.3rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size:   1rem;
  font-weight: 600;
  color:       var(--text);
}

.required-asterisk {
  color:       var(--accent);
  margin-left: 0.2rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width:         100%;
  padding:       0.65rem 0.875rem;
  font-family:   var(--font-body);
  font-size:     1rem;
  color:         var(--text);
  background:    var(--bg);
  border:        1.5px solid var(--border);
  border-radius: var(--btn-radius);
  outline:       none;
  transition:    border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance:    none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow:   0 0 0 3px rgba(194, 65, 12, 0.12);
}

.form-group input.has-error,
.form-group select.has-error,
.form-group textarea.has-error {
  border-color: #dc2626;
}

.form-group select {
  background-image:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat:   no-repeat;
  background-position: right 0.875rem center;
  padding-right:       2.5rem;
}

.form-group textarea {
  resize:      vertical;
  min-height:  120px;
  line-height: 1.6;
}

.form-footer {
  display:     flex;
  align-items: center;
  gap:         1.25rem;
  margin-top:  0.5rem;
}

.btn-submit {
  display:       inline-flex;
  align-items:   center;
  padding:       0.875rem 2rem;
  background:    var(--accent);
  color:         #fff;
  border:        none;
  border-radius: var(--btn-radius);
  font-family:   var(--font-body);
  font-weight:   600;
  font-size:     1rem;
  cursor:        pointer;
  transition:    background 0.2s;
  white-space:   nowrap;
}
.btn-submit:hover { background: var(--accent-hover); }

.form-reassurance {
  font-size:  0.9375rem;
  color:      var(--text-muted);
}

/* Contact sidebar info cards */
.contact-info-col {
  display:        flex;
  flex-direction: column;
  gap:            1rem;
  position:       sticky;
  top:            calc(var(--navbar-h) + 1.5rem);
}

.info-card {
  background:    var(--bg);
  border:        1px solid var(--border);
  border-radius: var(--card-radius);
  padding:       1.25rem;
  box-shadow:    var(--shadow-sm);
}

.section-alt .info-card {
  background: rgba(255, 255, 255, 0.75);
}

.info-card-heading {
  font-family:   var(--font-heading);
  font-size:     1rem;
  font-weight:   600;
  color:         var(--text);
  margin-bottom: 0.625rem;
  display:       flex;
  align-items:   center;
  gap:           0.5rem;
}

.info-card-heading i {
  color:     var(--accent);
  font-size: 0.9375rem;
}

.info-card-body {
  font-size:    1rem;
  color:        var(--text);
  font-weight:  500;
  margin-bottom: 0.3rem;
}

.info-card-detail {
  font-size:  0.9375rem;
  color:      var(--text-muted);
  line-height: 1.6;
}

.quick-facts-list {
  list-style: none;
  display:    flex;
  flex-direction: column;
  gap:        0.55rem;
}

.quick-facts-list li {
  display:     flex;
  align-items: flex-start;
  gap:         0.6rem;
  font-size:   1rem;
  color:       var(--text-muted);
  line-height: 1.5;
}

.quick-facts-list li i {
  color:       var(--accent);
  font-size:   0.875rem;
  margin-top:  0.2rem;
  width:       1rem;
  flex-shrink: 0;
  text-align:  center;
}

/* ============================================================
   16. REVIEWS SECTION
   ============================================================ */
.reviews-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1.5rem;
}

.review-card {
  background:    var(--bg-alt);
  border:        1px solid var(--border);
  border-radius: var(--card-radius);
  padding:       1.5rem;
  display:       flex;
  flex-direction: column;
  opacity:       0;
  transform:     translateY(18px);
  transition:    opacity 0.45s ease, transform 0.45s ease;
}

.review-card.visible {
  opacity:   1;
  transform: translateY(0);
}

.review-stars {
  display:       flex;
  gap:           0.2rem;
  margin-bottom: 0.875rem;
  color:         #f59e0b;
}

.review-stars i { font-size: 1rem; }

.review-body {
  flex:         1;
  margin-bottom: 0.875rem;
}

.review-body p {
  font-size:  1rem;
  line-height: 1.7;
  color:      var(--text-muted);
  font-style: italic;
}

.review-footer {
  display:     flex;
  align-items: baseline;
  gap:         0.4rem;
  padding-top: 0.75rem;
  border-top:  1px solid var(--border);
}

.review-name {
  font-size:   1rem;
  font-weight: 700;
  color:       var(--text);
}

.review-country {
  font-size:  0.9375rem;
  font-weight: 400;
  color:      var(--text-muted);
}

.review-country::before {
  content: '· ';
  color:   var(--text-muted);
}

/* ============================================================
   17. FOOTER
   ============================================================ */
.footer {
  background: var(--footer-bg);
  padding:    3.5rem 0 1.5rem;
  color:      var(--footer-text);
}

.footer-grid {
  display:               grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap:                   3rem;
  margin-bottom:         2.5rem;
}

.footer-brand {
  font-family:   var(--font-heading);
  font-size:     2rem;
  font-weight:   700;
  color:         #fff;
  margin-bottom: 0.75rem;
}

.footer-description {
  font-size:    0.9375rem;
  line-height:  1.65;
  color:        var(--footer-text);
  margin-bottom: 0.875rem;
}

.footer-location {
  display:     flex;
  align-items: center;
  gap:         0.45rem;
  font-size:   0.9375rem;
  color:       var(--footer-text);
}

.footer-location i { color: var(--accent); }

.footer-col-heading {
  font-family:    var(--font-body);
  font-size:      1.125rem;
  font-weight:    700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color:          rgba(255, 255, 255, 0.5);
  margin-bottom:  0.875rem;
}

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

.footer-links li a {
  font-size:       0.9375rem;
  color:           var(--footer-text);
  text-decoration: none;
  transition:      color 0.2s;
}
.footer-links li a:hover { color: #fff; }

.footer-enquiry {
  display:         block;
  font-size:       1rem;
  font-weight:     700;
  color:           #fff;
  text-decoration: none;
  margin-bottom:   1.125rem;
  transition:      color 0.2s;
}
.footer-enquiry:hover {
  color:           rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.footer-enquiry i { margin-left: 0.3rem; }

.footer-social {
  display: flex;
  gap:     0.6rem;
}

.footer-social a {
  display:         flex;
  align-items:     center;
  justify-content: center;
  width:           36px;
  height:          36px;
  border-radius:   50%;
  background:      rgba(255, 255, 255, 0.10);
  color:           rgba(255, 255, 255, 0.80);
  font-size:       0.9375rem;
  text-decoration: none;
  transition:      background 0.2s, color 0.2s;
}
.footer-social a:hover {
  background:      rgba(255, 255, 255, 0.20);
  color:           #fff;
  text-decoration: none;
}

.footer-divider {
  border:     none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin:     0 0 1.25rem;
}

.footer-copyright {
  font-size:  0.9375rem;
  color:      rgba(255, 255, 255, 0.40);
  text-align: center;
}

/* ============================================================
   18. UTILITY
   ============================================================ */
.visually-hidden {
  position:    absolute;
  width:       1px;
  height:      1px;
  overflow:    hidden;
  clip:        rect(0, 0, 0, 0);
  white-space: nowrap;
  border:      none;
}

/* ============================================================
   19. RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 64px; }

  .about-grid         { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image img    { height: 360px; }

  .activity-grid      { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

  .tour-block         { grid-template-columns: 1fr; gap: 1.75rem; }
  .tour-block:nth-child(even) { direction: ltr; }
  .tour-block-image img { height: auto; }

  .rooms-grid         { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .meals-grid         { grid-template-columns: 1fr; gap: 2.5rem; }
  .meals-image        { position: static; }
  .meals-image img    { height: 320px; }

  .getting-here-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .getting-here-sidebar { position: static; }
  .map-embed-wrap iframe { height: 300px; }

  .contact-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info-col   { position: static; }

  .footer-grid        { grid-template-columns: 1fr 1.4fr; gap: 2rem; }
  .footer-brand-col   { grid-column: 1 / -1; }
}

/* ============================================================
   20. RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 52px; --navbar-h: 64px; }

  /* Navbar: always solid on mobile */
  .navbar {
    background:              rgba(255, 255, 255, 0.97) !important;
    box-shadow:              0 1px 0 var(--border);
    backdrop-filter:         blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  /* Logo: opaque on mobile (white background, no invert needed) */
  .navbar:not(.scrolled) .navbar-logo img { filter: none; }

  .hamburger-bar           { background: var(--text) !important; }
  .navbar-links            { display: none; }
  .hamburger               { display: flex; }

  /* Hero */
  .hero                    { min-height: 90vh; }
  .hero-overlay            { background: rgba(0, 0, 0, 0.5); }
  .hero-content            { padding-top: 7rem; max-width: 100%; }
  .hero-ctas               { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn          { width: 100%; justify-content: center; }

  /* About */
  .about-image img         { height: 280px; }

  /* Activities */
  .activities-banner img   { height: 220px; }
  .activity-grid           { grid-template-columns: 1fr; gap: 1rem; }
  .activity-card img       { height: 180px; }
  .tour-block-image img    { height: auto; }

  /* Rooms */
  .rooms-grid              { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Footer */
  .footer-grid             { grid-template-columns: 1fr; gap: 1.75rem; }

  /* Contact form row */
  .form-row                { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews-grid            { grid-template-columns: 1fr; }

  /* Map */
  .map-embed-wrap iframe   { height: 240px; }
}

/* ============================================================
   21. RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .section-title  { font-size: 1.625rem; }
  .hero-title     { font-size: 2rem; }
  .modal-box      { padding: 1.25rem; }
}

/* ============================================================
   22. PRINT
   ============================================================ */
@media print {
  .navbar, .mobile-menu, .menu-backdrop, .hero-ctas,
  .btn-room-cta, .carousel-btn, .modal,
  .footer-social, .maps-btn { display: none !important; }

  .section { padding: 1.5rem 0; }
  body      { font-size: 12pt; }
}

/* Logo white filter for transparent navbar */
.logo-navbar {
  transition: filter 0.3s;
}
.navbar:not(.scrolled) .logo-navbar {
  filter: brightness(0) invert(1);
}

/* V22: Hero left-aligned positioning */
.hero-content {
  margin-left: max(100px, 6vw);
  margin-right: 200px;
  padding-top: 33vh;
}
@media (max-width: 640px) {
  .hero-content {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    padding-top: 180px;
  }
}

/* V22: scroll-padding-top */
html { scroll-padding-top: calc(80px + 1rem); }

/* Footer lang flags */
.footer-lang-text{display:flex;align-items:center;gap:.75rem;margin-top:1.25rem}
.flt-a{display:inline-flex;align-items:center;text-decoration:none;opacity:.75;transition:opacity .2s;line-height:1}
.flt-a:hover{opacity:1}.flt-a.flt-active{opacity:.85}
.flag-svg{width:28px;height:auto;border-radius:2px;box-shadow:0 0 0 1px rgba(255,255,255,.1)}
@media(max-width:767px){.footer-lang-text{justify-content:flex-start;gap:1rem}.flt-a{opacity:.9}.flt-a.flt-active{opacity:1}.flag-svg{width:32px}}

/* V22: Mobile font floor — 1rem minimum for body text */
@media (max-width: 767px) {
  body { font-size: 1rem; }
  p, li, td, th, label, input, select, textarea,
  .section-intro, .about-desc, .activity-card-desc,
  .tour-block-desc, .room-desc, .room-features li,
  .meals-intro, .meal-item p, .meals-notes-list li,
  .travel-list li, .travel-tips-list li,
  .review-body p, .info-card-body, .info-card-detail,
  .quick-facts-list li, .onsite-list li,
  .modal-room-desc, .modal-room-specs li {
    font-size: 1rem;
  }
  /* Exceptions at 0.9375rem per audit */
  .footer-copyright, .footer-description,
  .form-reassurance, .review-country {
    font-size: 0.9375rem;
  }
}

/* Language Switcher — Desktop */
.x13-lang{display:flex;align-items:center;gap:0;margin-left:18px;background:rgba(255,255,255,.12);border-radius:999px;padding:.15rem;border:1px solid rgba(194,65,12,.5);flex-shrink:0}.x13-t{display:flex;align-items:center;justify-content:center;padding:.2rem .55rem;font-size:.875rem;font-weight:700;color:rgba(255,255,255,.7);text-decoration:none;border-radius:999px;transition:color .2s,background .2s;line-height:1}.x13-t:hover{color:#fff}.x13-t.x13-active{color:#fff;background:rgba(255,255,255,.22)}.navbar.scrolled .x13-lang{background:var(--bg-alt);border-color:rgba(194,65,12,.3)}.navbar.scrolled .x13-t{color:var(--text-muted)}.navbar.scrolled .x13-t:hover{color:var(--accent)}.navbar.scrolled .x13-t.x13-active{color:var(--text);background:rgba(194,65,12,.08)}@media(max-width:1023px){.x13-lang{display:none}}

.x21-lang{display:flex;align-items:center;gap:.25rem;margin-left:18px;flex-shrink:0}.x21-t{font-size:.9375rem;font-weight:700;text-decoration:none;color:rgba(255,255,255,.45);transition:color .2s;line-height:1}.x21-t:hover{color:rgba(255,255,255,.85)}.x21-t.x21-active{color:#fff}.x21-div{width:1px;height:12px;background:rgba(255,255,255,.3)}.navbar.scrolled .x21-t{color:var(--text-muted)}.navbar.scrolled .x21-t:hover{color:var(--accent)}.navbar.scrolled .x21-t.x21-active{color:var(--text)}.navbar.scrolled .x21-div{background:var(--border)}@media(max-width:1023px){.x21-lang{display:none}}

.x22-lang{display:flex;align-items:center;gap:.1rem;margin-left:18px;background:rgba(255,255,255,.1);border-radius:999px;padding:.15rem .25rem;flex-shrink:0}.x22-t{display:flex;align-items:center;justify-content:center;padding:.2rem .5rem;font-size:.875rem;font-weight:700;color:rgba(255,255,255,.45);text-decoration:none;border-radius:999px;transition:color .2s,background .2s;line-height:1}.x22-t:hover{color:rgba(255,255,255,.85)}.x22-t.x22-active{color:#fff;background:rgba(255,255,255,.2)}.navbar.scrolled .x22-lang{background:var(--bg-alt)}.navbar.scrolled .x22-t{color:var(--text-muted)}.navbar.scrolled .x22-t:hover{color:var(--accent)}.navbar.scrolled .x22-t.x22-active{color:var(--text);background:rgba(194,65,12,.08)}@media(max-width:1023px){.x22-lang{display:none}}

/* Language Switcher — Mobile (xm12: left of hamburger) */
.xm12-row{display:none}.xm12-lang{display:flex;align-items:center;gap:.1rem;margin-right:.4rem}.xm12-t{font-size:.6875rem;font-weight:700;letter-spacing:.03em;color:rgba(255,255,255,.7);text-decoration:none;padding:.1rem .25rem;border-radius:3px;line-height:1;transition:color .2s,background .2s}.xm12-t:hover{color:#fff}.xm12-t.xm12-active{color:#fff;background:rgba(255,255,255,.15)}.navbar.scrolled .xm12-t{color:var(--text-muted)}.navbar.scrolled .xm12-t.xm12-active{color:var(--text);background:var(--bg-alt)}@media(max-width:1023px){.xm12-row{display:flex;align-items:center}}

/* Fix: hide navbar-links at 1023px (match lang switcher breakpoint) */
@media (max-width: 1023px) {
  .navbar-links { display: none !important; }
  .hamburger { display: flex !important; }
}

/* Fix: xm12 always dark text on mobile (navbar is always white bg) */
@media (max-width: 1023px) {
  .xm12-t {
    color: var(--text-muted) !important;
  }
  .xm12-t.xm12-active {
    color: var(--text) !important;
    background: var(--bg-alt) !important;
  }
}
