html { scroll-padding-top: 96px; }

/* PATCHED-V30-2026-04-24 */
/*
 * Cupid Resort — style.css
 * Generated: 2026-04-23 | Skill round 5.9.1
 * Font: Bodoni Moda + Inter | Accent: Dark Emerald #065f46
 * Section order: hero → about → suites → meals → activities → getting-here → contact → reviews → footer
 */

/* ═══════════════════════════════════ CSS VARIABLES ═══════════════════════════════════ */
:root {
  --accent:           #065f46;
  --accent-hover:     #064e3b;
  --bg:               #ffffff;
  --bg-alt:           #f4f9f7;
  --text:             #111827;
  --text-muted:       #6b7280;
  --border:           #e5e7eb;
  --img-radius:       1rem;
  --btn-radius:       0.5rem;
  --max-w:            1200px;
  --nav-h:            80px;
  --font-heading:     'Bodoni Moda', Georgia, serif;
  --font-body:        'Inter', system-ui, -apple-system, sans-serif;
  --section-pad:      72px;

  /* Footer dark theme — accent #065f46 darkened 85% with black */
  --footer-bg:        #010e0a;
  --footer-text:      #a0a0b0;
  --footer-head:      #ffffff;
  --footer-line:      rgba(255, 255, 255, 0.10);
  --footer-chip:      rgba(255, 255, 255, 0.10);
  --footer-chip-h:    rgba(255, 255, 255, 0.18);
}

/* ═══════════════════════════════════ RESET & BASE ═══════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  max-width:  100%;
}

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

body {
  margin:      0;
  padding:     0;
  font-family: var(--font-body);
  font-size:   1.0625rem;
  line-height: 1.65;
  color:       var(--text);
  background:  var(--bg);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin:      0 0 1rem;
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color:       var(--text);
}

p {
  margin:    0 0 1rem;
  font-size: 1.0625rem;
}

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

a:hover {
  text-decoration: none;
}

ul,
ol {
  margin:  0;
  padding: 0;
}

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

/* ═══════════════════════════════════ LAYOUT UTILITIES ═══════════════════════════════════ */
.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;
  }
}

.section {
  padding-top:    var(--section-pad);
  padding-bottom: var(--section-pad);
}

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

/* ═══════════════════════════════════ TYPOGRAPHY ═══════════════════════════════════ */
.section-eyebrow {
  font-family:    var(--font-body);
  font-size:      1.0625rem;
  font-weight:    600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color:          var(--accent);
  margin-bottom:  0.75rem;
}

.section-heading {
  font-family:  var(--font-heading);
  font-size:    clamp(2rem, 4vw, 3rem);
  font-weight:  700;
  color:        var(--text);
  margin-bottom: 1.25rem;
  line-height:   1.15;
}

.section-intro {
  font-size:   1.0625rem;
  color:       var(--text-muted);
  max-width:   70ch;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.section-intro.text-center {
  margin-left:  auto;
  margin-right: auto;
}

/* ═══════════════════════════════════ BUTTONS ═══════════════════════════════════ */
.btn {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  gap:             0.4rem;
  padding:         0.875rem 1.75rem;
  border-radius:   var(--btn-radius);
  font-weight:     600;
  font-size:       1rem;
  border:          none;
  cursor:          pointer;
  text-decoration: none;
  transition:      background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--accent);
  color:      #fff;
}

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

.btn-ghost {
  background:    transparent;
  color:         rgba(255, 255, 255, 0.9);
  border:        2px solid rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
  background:      rgba(255, 255, 255, 0.1);
  color:           #fff;
  text-decoration: none;
}

/* ═══════════════════════════════════ NAV SENTINEL ═══════════════════════════════════ */
.nav-sentinel {
  display:        block;
  width:          100%;
  height:         1px;
  pointer-events: none;
}

/* ═══════════════════════════════════ NAVBAR ═══════════════════════════════════ */
.navbar {
  position:   fixed;
  top:        0;
  left:       0;
  right:      0;
  height:     var(--nav-h);
  z-index:    1000;
  background: transparent;
  transition: background 0.25s, box-shadow 0.25s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.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:          var(--nav-h);
}

.navbar-logo {
  display:         flex;
  align-items:     center;
  text-decoration: none;
  flex-shrink:     0;
}

.navbar-logo img {
  height:     48px;
  width:      auto;
  max-height: 48px;
  object-fit: contain;
}
/* logo-navbar class overrides the above when present */
.logo-navbar {
  height:     var(--nav-h) !important;
  max-height: var(--nav-h) !important;
  width:      auto;
  object-fit: contain;
  /* filter: desktop-only via media query below */
}
.navbar.scrolled .logo-navbar { filter: none; }

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

.navbar-links a {
  color:           rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size:       1rem;
  font-weight:     500;
  transition:      color 0.2s;
}

.navbar-links a:hover {
  color:           #fff;
  text-decoration: none;
}

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

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

.navbar.scrolled .navbar-links .nav-cta a {
  color: #fff;
}

.navbar.scrolled .navbar-links .nav-cta a:hover {
  color: #fff;
}

.navbar-links .nav-cta a {
  background:    var(--accent);
  color:         #fff;
  padding:       0.4rem 1.1rem;
  border-radius: var(--btn-radius);
  font-weight:   600;
  transition:    background 0.2s;
}

.navbar-links .nav-cta a:hover {
  background:      var(--accent-hover);
  color:           #fff;
  text-decoration: none;
}

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

.hamburger-bar {
  display:       block;
  width:         22px;
  height:        2px;
  background:    var(--text);
  border-radius: 2px;
  transition:    background 0.2s;
}

.navbar:not(.scrolled) .hamburger-bar {
  background: #fff;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .navbar-links {
    display: none;
  }

  /* Navbar keeps transparent/scrolled behavior on mobile too */

  /* Logo keeps same filter behavior on mobile */

  .hamburger-bar {
    background: rgba(255,255,255,0.9);
  }
  .navbar.scrolled .hamburger-bar {
    background: var(--text);
  }
}

/* ═══════════════════════════════════ MOBILE MENU ═══════════════════════════════════ */
.mobile-menu {
  display:         none;
  position:        fixed;
  top:             var(--nav-h, 80px);
  left:            0;
  right:           0;
  max-height:      calc(100vh - var(--nav-h, 80px));
  overflow-y:      auto;
  background:      #fff;
  padding:         1.25rem 1.5rem 1.5rem;
  box-shadow:      0 12px 36px rgba(0, 0, 0, 0.14);
  z-index:         1001;
  flex-direction:  column;
  border-bottom-left-radius:  var(--btn-radius);
  border-bottom-right-radius: var(--btn-radius);
}

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

.mobile-menu-close {
  align-self:      flex-end;
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  width:           36px;
  height:          36px;
  background:      none;
  border:          none;
  font-size:       1.5rem;
  cursor:          pointer;
  line-height:     1;
  color:           var(--text-muted);
  margin-bottom:   0.75rem;
}

.mobile-nav-links {
  list-style: none;
  padding:    0;
  margin:     0;
}

.mobile-nav-links li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-links li:last-child {
  border-bottom: none;
}

.mobile-nav-links a {
  display:         block;
  padding:         0.85rem 0;
  color:           var(--text);
  font-weight:     500;
  font-size:       1rem;
  text-decoration: none;
}

.mobile-nav-links a:hover {
  color:           var(--accent);
  text-decoration: none;
}

.mobile-menu-backdrop {
  display:               none;
  position:              fixed;
  inset:                 var(--nav-h) 0 0 0;
  background:            rgba(17, 24, 39, 0.25);
  backdrop-filter:       blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index:               998;
}

.mobile-menu-backdrop.open {
  display: block;
}

/* ═══════════════════════════════════ HERO ═══════════════════════════════════ */
.hero {
  position:        relative;
  height:          100vh;
  min-height:      600px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  overflow:        hidden;
}

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

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

.hero-overlay {
  position:   absolute;
  inset:      0;
  z-index:    1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

@media (min-width: 901px) {
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.42) 60%,
      rgba(0, 0, 0, 0.55) 100%
    );
  }
}

.hero-content {
  position:        relative;
  z-index:         2;
  text-align:      center;
  color:           #fff;
  max-width:       860px;
  padding:         0 1.5rem;
  padding-top:     var(--nav-h);
}

.hero-eyebrow {
  font-size:      1rem;
  font-weight:    500;
  letter-spacing: 0.1em;
  color:          rgba(255, 255, 255, 0.85);
  margin-bottom:  1rem;
  text-transform: uppercase;
}

.hero-headline {
  font-family:   var(--font-heading);
  font-size:     clamp(2.5rem, 6vw, 4.5rem);
  font-weight:   700;
  color:         #fff;
  line-height:   1.1;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size:     1.125rem;
  color:         rgba(255, 255, 255, 0.88);
  max-width:     55ch;
  margin:        0 auto 2rem;
  line-height:   1.6;
}

.hero-actions {
  display:         flex;
  gap:             1rem;
  justify-content: center;
  flex-wrap:       wrap;
}

/* ═══════════════════════════════════ ABOUT ═══════════════════════════════════ */
.about-section {
  background: var(--bg);
}

.about-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   4rem;
  align-items:           start;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap:                   2rem;
  }
}

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

.quick-facts {
  list-style:   none;
  padding:      0;
  margin-top:   2rem;
  display:      flex;
  flex-direction: column;
  gap:          0.85rem;
}

.quick-facts li {
  display:     flex;
  align-items: baseline;
  gap:         0.75rem;
  font-size:   1rem;
  color:       var(--text);
}

.quick-facts li i {
  color:       var(--accent);
  font-size:   1rem;
  width:       1.1rem;
  flex-shrink: 0;
  text-align:  center;
  transform:   translateY(0.1em);
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width:         100%;
  border-radius: var(--img-radius);
  object-fit:    cover;
  aspect-ratio:  4 / 5;
}

/* ═══════════════════════════════════ SUITES / ROOMS ═══════════════════════════════════ */
.villas-section {
  background: var(--bg-alt);
}

.villa-card {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   3rem;
  align-items:           start;
  margin-bottom:         5rem;
  background:            var(--bg);
  border-radius:         var(--img-radius);
  overflow:              hidden;
  box-shadow:            0 2px 16px rgba(0, 0, 0, 0.07);
}

.villa-card:last-child {
  margin-bottom: 0;
}

.villa-card-reverse {
  direction: rtl;
}

.villa-card-reverse > * {
  direction: ltr;
}

@media (max-width: 900px) {
  .villa-card {
    grid-template-columns: 1fr;
    direction:             ltr;
  }

  .villa-card-reverse {
    direction: ltr;
  }
}

.villa-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .villa-info {
    padding: 1.5rem;
  }
}

.villa-name {
  font-family:   var(--font-heading);
  font-size:     1.75rem;
  font-weight:   700;
  margin-bottom: 1rem;
  color:         var(--text);
}

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

.villa-specs {
  list-style: none;
  padding:    0;
  margin:     0 0 2rem;
  display:    flex;
  flex-wrap:  wrap;
  gap:        0.5rem 1.5rem;
}

.villa-specs li {
  display:     flex;
  align-items: baseline;
  gap:         0.5rem;
  font-size:   0.9375rem;
  color:       var(--text-muted);
}

.villa-specs li i {
  color:       var(--accent);
  font-size:   0.875rem;
  flex-shrink: 0;
  transform:   translateY(0.1em);
}

.villa-actions {
  display:        flex;
  gap:            0.75rem;
  align-items:    center;
  flex-wrap:      wrap;
  margin-top:     auto;
}

.villa-view-link {
  display:         inline-flex;
  align-items:     center;
  background:      none;
  border:          1px solid var(--border);
  border-radius:   var(--btn-radius);
  padding:         0.7rem 1.25rem;
  font-size:       0.9375rem;
  color:           var(--text-muted);
  font-weight:     500;
  cursor:          pointer;
  text-decoration: none;
  transition:      border-color 0.2s, color 0.2s;
}

.villa-view-link:hover {
  border-color:    var(--accent);
  color:           var(--accent);
  text-decoration: none;
}

.btn-room-cta {
  display:         inline-flex;
  align-items:     center;
  background:      var(--accent);
  color:           #fff;
  border:          none;
  border-radius:   var(--btn-radius);
  padding:         0.7rem 1.5rem;
  font-size:       0.9375rem;
  font-weight:     600;
  cursor:          pointer;
  text-decoration: none;
  transition:      background 0.2s;
}

.btn-room-cta:hover {
  background:      var(--accent-hover);
  text-decoration: none;
}

/* ═══════════════════════════════════ CAROUSEL ═══════════════════════════════════ */
.carousel {
  position:  relative;
  overflow:  hidden;
  background: #111;
  aspect-ratio: 4 / 3;
  min-height: 260px;
}

.carousel-track {
  display:    flex;
  height:     100%;
  transition: transform 0.4s ease;
}

.carousel-slide {
  flex:          0 0 100%;
  width:         100%;
  height:        100%;
  overflow:      hidden;
}

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

.carousel-btn {
  position:                   absolute;
  top:                        50%;
  transform:                  translateY(-50%);
  z-index:                    10;
  background:                 rgba(0, 0, 0, 0.45);
  color:                      #fff;
  border:                     none;
  border-radius:              50%;
  width:                      40px;
  height:                     40px;
  display:                    flex;
  align-items:                center;
  justify-content:            center;
  cursor:                     pointer;
  touch-action:               manipulation;
  -webkit-tap-highlight-color: transparent;
  min-width:                  44px;
  min-height:                 44px;
  transition:                 background 0.2s;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev {
  left: 0.75rem;
}

.carousel-btn.next {
  right: 0.75rem;
}

@media (max-width: 768px) {
  .carousel-btn.prev {
    left: 0.5rem;
  }

  .carousel-btn.next {
    right: 0.5rem;
  }
}

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

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

.carousel-dot.active {
  background: #fff;
}

/* ═══════════════════════════════════ MEALS ═══════════════════════════════════ */
.meals-section {
  background: var(--bg);
}

.meals-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   4rem;
  align-items:           start;
}

@media (max-width: 900px) {
  .meals-grid {
    grid-template-columns: 1fr;
    gap:                   2rem;
  }
}

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

.meal-block {
  padding-top: 1.25rem;
  border-top:  1px solid var(--border);
}

.meal-block:first-child {
  border-top: none;
  padding-top: 0;
}

.meal-label {
  font-family:   var(--font-body);
  font-size:     1rem;
  font-weight:   700;
  color:         var(--accent);
  margin-bottom: 0.5rem;
  display:       flex;
  align-items:   center;
  gap:           0.5rem;
}

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

.meal-block p {
  font-size:   1.0625rem;
  color:       var(--text-muted);
  line-height: 1.7;
  margin:      0;
}

.meals-image-wrap {
  position: relative;
  order:    -1;
}

@media (min-width: 901px) {
  .meals-image-wrap {
    order: 2;
  }
}

.meals-img {
  width:         100%;
  border-radius: var(--img-radius);
  object-fit:    cover;
  aspect-ratio:  3 / 4;
}

/* ═══════════════════════════════════ ACTIVITIES ═══════════════════════════════════ */
.activities-section {
  background: var(--bg-alt);
}

/* A: Core activity cards */
.activity-cards-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1.75rem;
  margin-bottom:         4rem;
}

@media (max-width: 900px) {
  .activity-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .activity-cards-grid {
    grid-template-columns: 1fr;
  }
}

.activity-card {
  background:    var(--bg);
  border-radius: var(--img-radius);
  padding:       1.5rem;
  border:        1px solid var(--border);
  display:       flex;
  flex-direction: column;
  gap:           1rem;
  transition:    box-shadow 0.2s;
}

.activity-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
}

.activity-card-icon {
  width:           52px;
  height:          52px;
  border-radius:   50%;
  background:      rgba(6, 95, 70, 0.1);
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
}

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

.activity-card-title {
  font-family:   var(--font-heading);
  font-size:     1.2rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0;
}

.activity-card p {
  font-size:   1.0625rem;
  color:       var(--text-muted);
  line-height: 1.65;
  margin:      0;
  flex:        1;
}

.activity-card-img {
  width:         100%;
  border-radius: 0.5rem;
  aspect-ratio:  3 / 2;
  object-fit:    cover;
}

/* C: On-site activities */
.onsite-activities {
  background:    var(--bg);
  border-radius: var(--img-radius);
  padding:       2.5rem;
  margin-bottom: 3rem;
  border:        1px solid var(--border);
}

.onsite-heading {
  font-family:   var(--font-heading);
  font-size:     1.6rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0.5rem;
}

.onsite-intro {
  font-size:   1.0625rem;
  color:       var(--text-muted);
  margin-bottom: 1.5rem;
}

.onsite-list {
  list-style:            none;
  padding:               0;
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   0.75rem 2rem;
}

@media (max-width: 768px) {
  .onsite-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.onsite-item {
  display:     flex;
  align-items: baseline;
  gap:         0.6rem;
  font-size:   1rem;
  color:       var(--text);
  font-weight: 500;
}

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

/* B: Tour blocks */
.tour-blocks {
  margin-top: 0;
}

.tours-heading {
  font-family:   var(--font-heading);
  font-size:     1.75rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 2rem;
}

.tour-blocks-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   2rem;
}

@media (max-width: 768px) {
  .tour-blocks-grid {
    grid-template-columns: 1fr;
  }
}

.tour-block {
  background:    var(--bg);
  border-radius: var(--img-radius);
  overflow:      hidden;
  border:        1px solid var(--border);
  display:       flex;
  flex-direction: column;
  transition:    box-shadow 0.2s;
}

.tour-block:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
}

.tour-block-img-wrap {
  width:  100%;
  height: 200px;
  overflow: hidden;
}

.tour-block-img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tour-block:hover .tour-block-img {
  transform: scale(1.04);
}

.tour-block-body {
  padding: 1.5rem;
  flex:    1;
}

.tour-block-title {
  font-family:   var(--font-heading);
  font-size:     1.2rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0.6rem;
}

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

.tour-highlights {
  list-style: none;
  padding:    0;
  display:    flex;
  flex-direction: column;
  gap:        0.5rem;
}

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

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

/* ═══════════════════════════════════ GETTING HERE ═══════════════════════════════════ */
.getting-here-section {
  background: var(--bg);
}

.getting-here-grid {
  display:        flex;
  flex-direction: column;
  gap:            2.25rem;
  margin-bottom:  3rem;
}

.transport-step {
  display:     flex;
  gap:         1.5rem;
  align-items: flex-start;
  padding:     1.75rem;
  background:  var(--bg-alt);
  border-radius: var(--img-radius);
  border:      1px solid var(--border);
}

@media (max-width: 600px) {
  .transport-step {
    flex-direction: column;
    gap:            1rem;
  }
}

.transport-icon {
  width:           52px;
  height:          52px;
  border-radius:   50%;
  background:      rgba(6, 95, 70, 0.1);
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
}

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

.transport-title {
  font-family:   var(--font-body);
  font-size:     1.05rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0.5rem;
}

.transport-body p {
  font-size:   1.0625rem;
  color:       var(--text-muted);
  line-height: 1.7;
  margin:      0;
}

/* Travel tips */
.travel-tips {
  background:    var(--bg-alt);
  border-radius: var(--img-radius);
  padding:       2rem;
  margin-bottom: 2.5rem;
  border:        1px solid var(--border);
}

.tips-heading {
  font-family:   var(--font-heading);
  font-size:     1.35rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 1.25rem;
}

.tips-dl {
  display:        flex;
  flex-direction: column;
  gap:            1.25rem;
}

.tip-row {
  display:   grid;
  grid-template-columns: 1fr 2fr;
  gap:       1rem;
  padding-top: 1.25rem;
  border-top:  1px solid var(--border);
}

.tip-row:first-child {
  border-top:  none;
  padding-top: 0;
}

@media (max-width: 600px) {
  .tip-row {
    grid-template-columns: 1fr;
    gap:                   0.5rem;
  }
}

.tips-dl dt {
  font-size:   1rem;
  font-weight: 700;
  color:       var(--text);
  display:     flex;
  align-items: center;
  gap:         0.5rem;
}

.tips-dl dt i {
  color:     var(--accent);
  font-size: 1rem;
}

.tips-dl dd {
  margin:      0;
  font-size:   1.0625rem;
  color:       var(--text-muted);
  line-height: 1.65;
}

.getting-here-img {
  width:         100%;
  border-radius: var(--img-radius);
  object-fit:    cover;
  aspect-ratio:  16 / 6;
}

/* ═══════════════════════════════════ CONTACT ═══════════════════════════════════ */
.contact-section {
  background: var(--bg-alt);
}

.contact-grid {
  display:               grid;
  grid-template-columns: 1.6fr 1fr;
  gap:                   4rem;
  align-items:           start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap:                   2.5rem;
  }
}

/* Form */
.booking-form {
  display:        flex;
  flex-direction: column;
  gap:            1.25rem;
  margin-top:     1.5rem;
}

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

.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.7rem 0.9rem;
  border:        1px solid var(--border);
  border-radius: var(--btn-radius);
  font-family:   var(--font-body);
  font-size:     1rem;
  color:         var(--text);
  background:    var(--bg);
  transition:    border-color 0.2s;
  outline:       none;
  appearance:    none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize:     vertical;
  min-height: 100px;
}

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

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.booking-form .btn-submit {
  display:       inline-flex;
  width:         auto;
  align-self:    flex-start;
  padding:       0.875rem 2rem;
  background:    var(--accent);
  color:         #fff;
  border:        none;
  border-radius: var(--btn-radius);
  font-weight:   600;
  font-size:     1rem;
  cursor:        pointer;
  text-decoration: none;
  transition:    background 0.2s;
}

.booking-form .btn-submit:hover {
  background: var(--accent-hover);
}

.form-error {
  background:    #fef2f2;
  border-left:   4px solid #dc2626;
  color:         #7f1d1d;
  padding:       1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: var(--btn-radius);
}

.form-error strong {
  display:       block;
  margin-bottom: 0.25rem;
}

.form-error p {
  font-size: 1rem;
  margin:    0;
}

.form-success {
  background:    #ecfdf5;
  border-left:   4px solid var(--accent);
  color:         #064e3b;
  padding:       1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: var(--btn-radius);
}

.form-success strong {
  display:       block;
  margin-bottom: 0.25rem;
}

.form-success p {
  font-size: 1rem;
  margin:    0;
}

/* Sidebar */
.contact-sidebar {
  display:        flex;
  flex-direction: column;
  gap:            1.25rem;
}

.contact-card {
  background:    var(--bg);
  border-radius: var(--img-radius);
  padding:       1.5rem;
  border:        1px solid var(--border);
}

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

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

.contact-card-body {
  font-size:   1.0625rem;
  color:       var(--text-muted);
  line-height: 1.65;
  margin:      0 0 1rem;
}

.maps-btn {
  display:         inline-flex;
  align-items:     center;
  gap:             0.4rem;
  background:      var(--accent);
  color:           #fff;
  padding:         0.6rem 1.25rem;
  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);
  color:           #fff;
  text-decoration: none;
}

/* ═══════════════════════════════════ REVIEWS ═══════════════════════════════════ */
.reviews-section {
  background: var(--bg);
}

.reviews-aggregate {
  display:         flex;
  align-items:     center;
  gap:             0.75rem;
  justify-content: center;
  margin-bottom:   3rem;
  flex-wrap:       wrap;
}

.agg-score {
  font-family: var(--font-heading);
  font-size:   2.5rem;
  font-weight: 700;
  color:       var(--text);
  line-height: 1;
}

.agg-stars {
  font-size: 1.5rem;
  color:     #f59e0b;
}

.agg-count {
  font-size: 1rem;
  color:     var(--text-muted);
}

.review-cards-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1.5rem;
}

@media (max-width: 900px) {
  .review-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .review-cards-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background:    var(--bg-alt);
  border-radius: var(--img-radius);
  padding:       1.5rem;
  border:        1px solid var(--border);
  display:       flex;
  flex-direction: column;
  gap:           0.75rem;
}

.review-stars {
  font-size: 1.1rem;
  color:     #f59e0b;
  line-height: 1;
}

.review-body {
  font-size:   1.0625rem;
  color:       var(--text);
  line-height: 1.65;
  flex:        1;
  margin:      0;
  font-style:  italic;
}

.review-author {
  display:         flex;
  flex-direction:  row;
  align-items:     baseline;
  gap:             0.5rem;
  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:   1rem;
  font-weight: 400;
  color:       var(--text-muted);
}


/* ═══════════════════════════════════ FOOTER ═══════════════════════════════════ */
.footer {
  background: var(--footer-bg);
  color:      var(--footer-text);
  padding:    4rem 0 1.5rem;
  font-size:  1rem;
}

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

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap:                   2.25rem;
  }
}

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

.footer-description {
  color:       var(--footer-text);
  font-size:   1rem;
  line-height: 1.65;
  max-width:   42rem;
  margin:      0;
}

.footer-col-heading {
  font-size:      1rem;
  font-weight:    700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--footer-text);
  margin-bottom:  1.25rem;
  margin-top:     0;
}

.footer-links {
  list-style: none;
  padding:    0;
  margin:     0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color:           var(--footer-head);
  text-decoration: none;
  font-size:       1rem;
  transition:      opacity 0.15s;
}

.footer-links a:hover {
  opacity:         0.7;
  text-decoration: none;
}

.footer-enquiry {
  color: #ffffff;
  font-weight: 700;
  font-size:       1rem;
  text-decoration: none;
  display:         inline-flex;
  align-items:     center;
  gap:             0.4rem;
  margin-bottom:   1.25rem;
}

.footer-enquiry:hover {
  opacity:         0.7;
  text-decoration: none;
}

.footer-enquiry i {
  font-size: 1rem;
}

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

.footer-social a {
  width:           36px;
  height:          36px;
  border-radius:   50%;
  background:      var(--footer-chip);
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  color:           var(--footer-head);
  text-decoration: none;
  font-size:       1rem;
  transition:      background 0.2s;
}

.footer-social a:hover {
  background:      var(--footer-chip-h);
  text-decoration: none;
}

.footer-divider {
  border:     none;
  height:     1px;
  background: var(--footer-line);
  margin:     1.5rem 0;
}

.footer-copyright {
  text-align: center;
  font-size:  1rem;
  color:      var(--footer-text);
  margin:     0;
}

/* ═══════════════════════════════════ MODAL ═══════════════════════════════════ */
.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.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-content {
  position:      relative;
  z-index:       1;
  background:    #fff;
  border-radius: var(--img-radius);
  padding:       2rem;
  max-width:     560px;
  width:         100%;
  max-height:    90vh;
  overflow-y:    auto;
}

.modal-close {
  position:    absolute;
  top:         1rem;
  right:       1rem;
  background:  none;
  border:      none;
  font-size:   1.5rem;
  cursor:      pointer;
  line-height: 1;
  color:       var(--text-muted);
  transition:  color 0.2s;
}

.modal-close:hover {
  color: var(--text);
}

.modal-content h3 {
  font-family:   var(--font-heading);
  font-size:     1.5rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0.75rem;
  padding-right: 2rem;
}

.modal-content p {
  font-size:   1.0625rem;
  color:       var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.modal-amenities {
  list-style:    none;
  padding:       0;
  margin:        0 0 1.5rem;
  display:       flex;
  flex-wrap:     wrap;
  gap:           0.5rem 1.5rem;
}

.modal-amenities li {
  font-size:   0.9375rem;
  color:       var(--text-muted);
  display:     flex;
  align-items: baseline;
  gap:         0.4rem;
}

.modal-amenities li i {
  color:       var(--accent);
  font-size:   0.9375rem;
}

/* ═══════════════════════════════════ DEFENSIVE LINK STYLING ═══════════════════════════════════ */
.navbar-logo,
.navbar-links a,
.mobile-menu a,
.btn,
.btn-room-cta,
.btn-submit,
.villa-view-link,
.modal-room-cta,
.maps-btn,
.footer-links a,
.footer-enquiry,
.footer-social a {
  text-decoration: none;
}

/* ═══════════════════════════════════ RESPONSIVE FINAL FIXES ═══════════════════════════════════ */
@media (max-width: 600px) {
  .hero-headline {
    font-size: 2.2rem;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .villa-card {
    margin-bottom: 2rem;
  }

  .carousel {
    aspect-ratio: 4 / 3;
  }

  .onsite-activities {
    padding: 1.25rem;
  }

  .tour-block-img-wrap {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items:    center;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .reviews-aggregate {
    flex-direction: column;
    gap:            0.25rem;
  }
}

.review-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.review-stars i { color: #f59e0b; font-size: 0.9375rem; }

/* Logo navbar */

/* Tour blocks: 2-column alternating layout */
.tour-block {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  flex-direction: unset !important;
  border-radius: var(--img-radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  margin-bottom: 2rem;
}
.tour-block--reverse .tour-block-img { order: 2; }
.tour-block--reverse .tour-block-body { order: 1; }
.tour-block-img img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
@media (max-width: 768px) {
  .tour-block { grid-template-columns: 1fr !important; }
  .tour-block--reverse .tour-block-img { order: 0; }
  .tour-block--reverse .tour-block-body { order: 1; }
}

/* Quick facts list in contact sidebar */
.quick-facts-list { list-style: none; padding: 0; margin: 0; }
.quick-facts-list li { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 0.9375rem; }
.quick-facts-list li i { color: var(--accent); flex-shrink: 0; }

/* Card eyebrow */
.card-eyebrow { font-size: 0.9375rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.25rem; }

/* Footer location */
.footer-location { color: rgba(255,255,255,0.65); font-size: 0.9375rem; margin-top: 0.75rem; }
.footer-location i { color: var(--accent); margin-right: 0.35rem; }

.navbar:not(.scrolled) .navbar-logo img, .navbar:not(.scrolled) .logo-navbar { filter: brightness(0) invert(1); }
.navbar-logo img, .logo-navbar { transition: filter 0.3s; }
.navbar.scrolled .nav-cta a { color: #fff !important; }
.review-country::before { display: none !important; }

/* LANGUAGE SWITCHER */
.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(var(--accent-rgb,6,95,70),.5);flex-shrink:0}.x13-t{display:flex;align-items:center;justify-content:center;padding:.2rem .55rem;font-size:.9375rem;font-weight:700;letter-spacing:.03em;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,#f5f5f5);border-color:rgba(var(--accent-rgb,6,95,70),.3)}.navbar.scrolled .x13-t{color:var(--text-muted,#6b7280)}.navbar.scrolled .x13-t:hover{color:var(--accent)}.navbar.scrolled .x13-t.x13-active{color:var(--text-primary,#1a1a1a);background:rgba(var(--accent-rgb,6,95,70),.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,#6b7280)}.navbar.scrolled .x21-t:hover{color:var(--accent)}.navbar.scrolled .x21-t.x21-active{color:var(--text-primary,#1a1a1a)}.navbar.scrolled .x21-div{background:var(--border,#e5e7eb)}@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:.9375rem;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,#f5f5f5)}.navbar.scrolled .x22-t{color:var(--text-muted,#6b7280)}.navbar.scrolled .x22-t:hover{color:var(--accent)}.navbar.scrolled .x22-t.x22-active{color:var(--text-primary,#1a1a1a);background:rgba(var(--accent-rgb,6,95,70),.08)}@media(max-width:1023px){.x22-lang{display:none}}
.xm11-wrap{display:none}.xm11-lang{display:flex;align-items:center;justify-content:center;gap:.1rem;margin-top:.6rem}.xm11-t{font-size:.6875rem;font-weight:700;letter-spacing:.03em;color:var(--text-muted,#6b7280);text-decoration:none;padding:.1rem .25rem;border-radius:3px;line-height:1;transition:color .2s,background .2s}.xm11-t:hover{color:var(--dark)}.xm11-t.xm11-active{color:var(--text-primary,#1a1a1a);background:var(--bg-alt,#f5f5f5)}@media(max-width:1023px){.xm11-wrap{display:flex;flex-direction:column;align-items:center}}
.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:var(--text-muted,#6b7280);text-decoration:none;padding:.1rem .25rem;border-radius:3px;line-height:1;transition:color .2s,background .2s}.xm12-t:hover{color:var(--dark)}.xm12-t.xm12-active{color:var(--text-primary,#1a1a1a);background:var(--bg-alt,#f5f5f5)}@media(max-width:1023px){.xm12-row{display:flex;align-items:center}}
.xm14-wrap{display:none}.xm14-lang{display:flex;align-items:center;gap:.1rem;margin-bottom:.15rem}.xm14-t{font-size:.6875rem;font-weight:700;letter-spacing:.03em;color:var(--text-muted,#6b7280);text-decoration:none;padding:.1rem .25rem;border-radius:3px;line-height:1;transition:color .2s,background .2s}.xm14-t:hover{color:var(--dark)}.xm14-t.xm14-active{color:var(--text-primary,#1a1a1a);background:var(--bg-alt,#f5f5f5)}@media(max-width:1023px){.xm14-wrap{display:flex;flex-direction:column;align-items:center}}
.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}}
.footer-enquiry-link{display:inline-block;color:#fff;font-size:1.0625rem;font-weight:700;text-decoration:none;margin-bottom:1rem}.footer-enquiry-link:hover{text-decoration:underline}

/* Getting Here maps grid */
.getting-here-grid-maps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
  max-width: var(--max-width, 1200px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}
.getting-here-img-col img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}
.getting-here-maps-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767px) {
  .getting-here-grid-maps {
    grid-template-columns: 1fr;
  }
}
.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.0625rem;
  transition: background 0.2s;
}
.btn-maps:hover { filter: brightness(1.1); }

/* Form row: 2 columns */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 767px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}



.maps-iframe-wrap iframe {
  height: 350px !important;
  min-height: 300px;
}

/* Tour block images: show full image (no crop) */


/* Getting Here: full-width maps block */
.getting-here-maps-full {
  margin-top: 2rem;
  max-width: var(--max-width, 1200px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}
.btn-maps-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.5rem;
  margin-bottom: 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.0625rem;
}
.btn-maps-full:hover { filter: brightness(1.1); }

/* Multi-day image: show full square */
.tour-block-img-wrap:has(img[src*="multi-day"]) {
  height: auto;
  overflow: visible;
}
.tour-block-img-wrap img[src*="multi-day"],
.tour-block-img[src*="multi-day"] {
  height: auto !important;
  aspect-ratio: 1/1;
  object-fit: contain !important;
  min-height: auto !important;
}

.tour-block-img-wrap--square {
  height: auto !important;
  overflow: visible !important;
}
.tour-block-img-wrap--square .tour-block-img {
  height: auto !important;
  min-height: auto !important;
  object-fit: contain !important;
}

/* Hamburger white on transparent navbar (all devices) */
.navbar:not(.scrolled) .hamburger-bar {
  background: #fff !important;
}

/* Mobile lang lighter on transparent navbar */
.navbar:not(.scrolled) .xm11-t,
.navbar:not(.scrolled) .xm12-t,
.navbar:not(.scrolled) .xm14-t {
  color: rgba(255,255,255,0.7) !important;
}
.navbar:not(.scrolled) .xm11-t.xm11-active,
.navbar:not(.scrolled) .xm12-t.xm12-active,
.navbar:not(.scrolled) .xm14-t.xm14-active {
  color: #fff !important;
  background: rgba(255,255,255,0.15) !important;
}
