/* ==========================================================
   Adil Waterhouse Resort — style.css
   Generated: 2026-04-30 | Skill round 5.9.1
   Font: DM Serif Display + Manrope | Accent: Deep Rose #9f1239
   ========================================================== */

/* ==========================================================
   CSS Custom Properties
   ========================================================== */
:root {
  --font-heading: 'Cabinet Grotesk', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;

  --accent:       #9f1239;
  --accent-hover: #881337;
  --accent-light: #fdf2f4;

  --text:         #1a1a1a;
  --text-muted:   #6b7280;
  --bg:           #ffffff;
  --bg-alt:       #f8f7f5;
  --border:       #e5e7eb;

  --footer-bg:    #170208;
  --footer-text:  rgba(255, 255, 255, 0.65);
  --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);

  --nav-h:        72px;
  --max-w:        1200px;

  --btn-radius:   6px;
  --img-radius:   10px;
  --card-radius:  12px;

  --section-pad:  80px;
  --section-pad-sm: 48px;
}

/* ==========================================================
   Reset & Base
   ========================================================== */
html,
body {
  width:      100%;
  max-width:  100vw;
  overflow-x: hidden;
  margin:     0;
  padding:    0;
}

*,
*::before,
*::after {
  box-sizing:  border-box;
  max-width:   100%;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:  var(--font-heading);
  line-height:  1.25;
  margin-top:   0;
  font-weight:  400;
}

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

ul,
ol {
  margin-top:    0;
  margin-bottom: 1rem;
  padding-left:  1.5rem;
}

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

a:hover {
  text-decoration: none;
}

/* ==========================================================
   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;
  }
}

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display:         inline-block;
  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;
  text-decoration: none;
  line-height:     1.4;
}

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

.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-family:     var(--font-body);
  font-weight:     600;
  font-size:       1rem;
  cursor:          pointer;
  transition:      background 0.2s;
  text-decoration: none;
}

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

/* ==========================================================
   Nav Sentinel
   ========================================================== */
.nav-sentinel {
  position:       absolute;
  top:            0;
  left:           0;
  width:          1px;
  height:         0;
  pointer-events: none;
  opacity:        0;
  visibility:     hidden;
}

/* ==========================================================
   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;
}

.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%;
}

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

.navbar-logo img {
  height:     56px;
  width:      auto;
  max-width:  none;
  object-fit: contain;
}

.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.92);
  font-size:       1rem;
  font-weight:     500;
  text-decoration: none;
  transition:      color 0.2s;
  white-space:     nowrap;
}

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

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

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

.nav-cta a {
  background:      var(--accent) !important;
  color:           #fff !important;
  padding:         0.4rem 1.1rem;
  border-radius:   var(--btn-radius);
  transition:      background 0.2s !important;
}

.nav-cta a:hover {
  background:      var(--accent-hover) !important;
  color:           #fff !important;
}

@media (max-width: 900px) {
  .navbar {
    background:      rgba(255, 255, 255, 0.97) !important;
    box-shadow:      0 1px 0 var(--border);
    backdrop-filter: blur(12px);
  }

  .navbar-logo img {
    filter: none;
  }

  .navbar-links {
    display: none;
  }
}

/* ==========================================================
   Hamburger
   ========================================================== */
.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;
  }

  .hamburger-bar {
    background: var(--text);
  }
}

/* ==========================================================
   Mobile Menu
   ========================================================== */
.mobile-menu {
  position:         fixed;
  top:              var(--nav-h);
  left:             0;
  right:            0;
  max-height:       calc(100vh - var(--nav-h) - 2rem);
  height:           auto;
  overflow-y:       auto;
  background:       #fff;
  z-index:          950;
  transform:        translateY(-110%);
  transition:       transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding:          1.5rem;
  display:          flex;
  flex-direction:   column;
  box-shadow:       0 12px 36px rgba(0, 0, 0, 0.14);
  border-bottom-left-radius:  var(--btn-radius);
  border-bottom-right-radius: var(--btn-radius);
}

.mobile-menu.open {
  transform: translateY(0);
}

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

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

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

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

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

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

.mobile-nav-cta a {
  color:         var(--accent) !important;
  font-weight:   700 !important;
}

.menu-backdrop {
  position:                fixed;
  inset:                   var(--nav-h) 0 0 0;
  background:              rgba(17, 24, 39, 0.30);
  backdrop-filter:         blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index:                 940;
  opacity:                 0;
  pointer-events:          none;
  transition:              opacity 0.25s;
  display:                 block;
}

.menu-backdrop.open {
  opacity:       1;
  pointer-events: auto;
}

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  position:         relative;
  min-height:       100vh;
  display:          flex;
  align-items:      flex-start;
  padding-top:      clamp(4rem, 10vh, 8rem);
  padding-bottom:   3rem;
  overflow:         hidden;
}

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

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

.hero-variant-0 .hero-content {
  position:         relative;
  z-index:          1;
  width:            100%;
  max-width:        var(--max-w);
  margin:           0 auto;
  padding:          0 2rem;
  display:          flex;
  flex-direction:   column;
  align-items:      flex-start;
  padding-top:      calc(var(--nav-h) + 2rem);
}

.hero-eyebrow {
  font-family:    var(--font-body);
  font-size:      0.9375rem;
  font-weight:    600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          rgba(255, 255, 255, 0.85);
  margin-bottom:  0.75rem;
}

.hero-title {
  font-size:    clamp(2.25rem, 5vw, 3.75rem);
  font-weight:  400;
  color:        #fff;
  margin-bottom: 1.25rem;
  text-shadow:  0 2px 12px rgba(0, 0, 0, 0.35);
  max-width:    640px;
}

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

@media (max-width: 768px) {
  .hero-variant-0 .hero-content {
    padding: 0 1rem;
    padding-top: calc(var(--nav-h) + 1.5rem);
    align-items: flex-start;
  }

  .hero-title {
    font-size: clamp(1.875rem, 8vw, 2.5rem);
  }

  .hero-tagline {
    font-size: 1rem;
  }
}

/* ==========================================================
   Sections
   ========================================================== */
.section {
  padding-top:    var(--section-pad);
  padding-bottom: var(--section-pad);
}

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

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

.section-title {
  font-size:     clamp(1.875rem, 3.5vw, 2.75rem);
  margin-bottom: 1.25rem;
  color:         var(--text);
}

.section-intro {
  font-size:     1.0625rem;
  color:         var(--text-muted);
  margin-bottom: 2.5rem;
  line-height:   1.65;
}

@media (max-width: 768px) {
  .section {
    padding-top:    var(--section-pad-sm);
    padding-bottom: var(--section-pad-sm);
  }
}

/* ==========================================================
   About Section
   ========================================================== */
.about-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   4rem;
  align-items:           start;
}

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

.about-features {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   1rem;
  margin-top:            1.5rem;
}

.about-feature-item {
  display:     flex;
  align-items: center;
  gap:         0.65rem;
  font-size:   1rem;
  font-weight: 600;
  color:       var(--text);
}

.about-feature-item i {
  color:      var(--accent);
  font-size:  1rem;
  width:      1.25rem;
  text-align: center;
  flex-shrink: 0;
}

.about-image-wrap {
  border-radius: var(--img-radius);
  overflow:      hidden;
  position:      sticky;
  top:           calc(var(--nav-h) + 1.5rem);
}

.about-img {
  width:       100%;
  height:      480px;
  object-fit:  cover;
  border-radius: var(--img-radius);
  max-width:   none;
}

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

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

  .about-img {
    height: 320px;
  }
}

/* ==========================================================
   Villa Cards
   ========================================================== */
.villa-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   2rem;
  align-items:           start;
}

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

@media (max-width: 640px) {
  .villa-grid {
    grid-template-columns: 1fr;
  }
}

.villa-card {
  display:          flex;
  flex-direction:   column;
  height:           100%;
  background:       var(--bg);
  border-radius:    var(--card-radius);
  border:           1px solid var(--border);
  overflow:         hidden;
  box-shadow:       0 2px 8px rgba(0, 0, 0, 0.05);
}

.villa-view-link {
  display:         inline-block;
  align-self:      center;
  margin:          1rem 0 1.25rem;
  padding:         0.5rem 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;
  font-family:     var(--font-body);
}

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

.villa-info {
  display:        flex;
  flex-direction: column;
  flex:           1;
  padding:        0 1.25rem 1.25rem;
}

.villa-name {
  font-size:     1.25rem;
  margin-bottom: 0.375rem;
  color:         var(--text);
}

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

.villa-capacity i {
  color:      var(--accent);
  margin-right: 0.35rem;
}

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

.btn-room-cta {
  margin-top:      0.75rem;
  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;
  text-decoration: none;
}

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

/* ==========================================================
   Carousel
   ========================================================== */
.carousel {
  position:      relative;
  overflow:      hidden;
  aspect-ratio:  4 / 3;
  background:    var(--border);
}

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

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

.carousel-slide img {
  width:       100%;
  height:      100%;
  object-fit:  cover;
  max-width:   none;
}

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

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

.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.35rem;
}

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

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

/* ==========================================================
   Activities Section
   ========================================================== */
.activity-cards {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   1.5rem;
  margin-bottom:         3rem;
}

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

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

.activity-card {
  background:    var(--bg);
  border:        1px solid var(--border);
  border-radius: var(--card-radius);
  overflow:      hidden;
  padding-bottom: 1.25rem;
}

.activity-card-icon {
  display:         flex;
  align-items:     center;
  justify-content: flex-start;
  padding:         1.25rem 1.25rem 0;
}

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

.activity-card h3 {
  font-size:     1.125rem;
  margin-top:    0.75rem;
  margin-bottom: 0.75rem;
  padding:       0 1.25rem;
  color:         var(--text);
}

.activity-card img {
  width:        100%;
  height:       180px;
  object-fit:   cover;
  margin-bottom: 1rem;
  max-width:    none;
}

.activity-card p {
  font-size:   1rem;
  color:       var(--text-muted);
  line-height: 1.6;
  padding:     0 1.25rem;
  margin-bottom: 0;
}

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

.onsite-title {
  font-size:     1.375rem;
  margin-bottom: 1.25rem;
  color:         var(--text);
}

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

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

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

.onsite-item {
  display:         flex;
  align-items:     center;
  gap:             0.5rem;
  font-size:       1rem;
  font-weight:     500;
  color:           var(--text-muted);
  background:      var(--bg);
  border:          1px solid var(--border);
  border-radius:   var(--btn-radius);
  padding:         0.75rem 1rem;
}

.onsite-item i {
  color:      var(--accent);
  font-size:  1rem;
  flex-shrink: 0;
}

/* Tours section */
.tours-section {
  margin-top: 1rem;
}

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

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

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

.tour-card {
  display:          flex;
  gap:              1.25rem;
  background:       var(--bg);
  border:           1px solid var(--border);
  border-radius:    var(--card-radius);
  overflow:         hidden;
}

.tour-card img {
  width:        200px;
  height:       auto;
  flex-shrink:  0;
  object-fit:   cover;
  align-self:   stretch;
  max-width:    200px;
}

.tour-card-body {
  padding:    1.25rem 1.25rem 1.25rem 0;
  flex:       1;
}

.tour-card-body h4 {
  font-size:     1.125rem;
  margin-bottom: 0.65rem;
  color:         var(--text);
}

.tour-card-body p {
  font-size:     1rem;
  color:         var(--text-muted);
  line-height:   1.6;
  margin-bottom: 0.75rem;
}

.tour-highlights {
  list-style:  none;
  padding:     0;
  margin:      0;
}

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

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

@media (max-width: 900px) {
  .tour-card {
    flex-direction: column;
  }

  .tour-card img {
    width:     100%;
    height:    200px;
    max-width: none;
  }

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

/* ==========================================================
   Meals Section
   ========================================================== */
.meals-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   4rem;
  align-items:           start;
}

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

.meal-breakdown {
  display:        flex;
  flex-direction: column;
  gap:            1rem;
  margin:         1.75rem 0;
}

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

.meal-icon {
  width:           2.5rem;
  height:          2.5rem;
  background:      var(--accent-light);
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
}

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

.meal-detail {
  flex: 1;
}

.meal-detail strong {
  display:       block;
  font-size:     1rem;
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0.25rem;
}

.meal-detail p {
  font-size:     1rem;
  color:         var(--text-muted);
  margin-bottom: 0;
  line-height:   1.55;
}

.meals-image-wrap {
  border-radius: var(--img-radius);
  overflow:      hidden;
  position:      sticky;
  top:           calc(var(--nav-h) + 1.5rem);
}

.meals-image-wrap img {
  width:         100%;
  height:        480px;
  object-fit:    cover;
  border-radius: var(--img-radius);
  max-width:     none;
}

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

  .meals-image-wrap {
    position: static;
  }

  .meals-image-wrap img {
    height: 280px;
  }
}

/* ==========================================================
   Getting Here Section
   ========================================================== */
.getting-here-grid {
  display:               grid;
  grid-template-columns: 1fr 340px;
  gap:                   3rem;
  align-items:           start;
}

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

.getting-here-step {
  display:       flex;
  gap:           1.25rem;
  margin-bottom: 2.5rem;
  align-items:   flex-start;
}

.step-icon {
  width:           3rem;
  height:          3rem;
  background:      var(--accent-light);
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
}

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

.step-content h3 {
  font-size:     1.125rem;
  margin-bottom: 0.5rem;
  color:         var(--text);
}

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

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

.location-image {
  width:         100%;
  height:        220px;
  object-fit:    cover;
  border-radius: var(--img-radius);
  max-width:     none;
}

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

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

.maps-btn i {
  font-size: 1rem;
}

.map-embed {
  border-radius: var(--img-radius);
  overflow:      hidden;
}

.map-embed iframe {
  display: block;
}

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

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

.travel-tips h4 i {
  color: var(--accent);
}

.travel-tips-list {
  list-style:  none;
  padding:     0;
  margin:      0;
}

.travel-tips-list li {
  display:       flex;
  align-items:   baseline;
  gap:           0.65rem;
  font-size:     1rem;
  color:         var(--text-muted);
  line-height:   1.55;
  margin-bottom: 0.75rem;
}

.travel-tips-list li:last-child {
  margin-bottom: 0;
}

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

/* ==========================================================
   Contact Section
   ========================================================== */
.contact-grid {
  display:               grid;
  grid-template-columns: 1fr 320px;
  gap:                   3rem;
  align-items:           start;
}

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

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

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

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

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

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

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

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

.booking-form input,
.booking-form select,
.booking-form textarea {
  width:         100%;
  padding:       0.75rem 1rem;
  font-size:     1rem;
  font-family:   var(--font-body);
  color:         var(--text);
  background:    var(--bg);
  border:        1px solid var(--border);
  border-radius: var(--btn-radius);
  transition:    border-color 0.2s;
  appearance:    none;
}

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

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

.booking-form input.has-error:focus,
.booking-form select.has-error:focus,
.booking-form textarea.has-error:focus {
  outline-color: #dc2626;
}

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

.booking-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%236b7280' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat:   no-repeat;
  background-position: right 0.75rem center;
  background-size:     1.25rem;
  padding-right:       2.5rem;
}

.form-submit-row {
  display:     flex;
  align-items: center;
  gap:         1.5rem;
  flex-wrap:   wrap;
}

.form-reply-note {
  font-size:     1rem;
  color:         var(--text-muted);
  margin-bottom: 0;
}

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

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

.form-banner strong {
  display:       block;
  margin-bottom: 0.25rem;
  font-weight:   700;
}

.form-banner p {
  margin: 0;
}

.form-banner-success {
  background:  #d1fae5;
  border-left: 4px solid #059669;
  color:       #065f46;
}

.form-banner-success i {
  color: #059669;
}

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

.form-banner-error i {
  color: #dc2626;
}

/* Form error message */
.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;
}

/* Contact right column */
.contact-info-col {
  display:        flex;
  flex-direction: column;
  gap:            1.25rem;
}

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

.info-card-eyebrow {
  font-size:      0.9375rem;
  font-weight:    700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:          var(--accent);
  margin-bottom:  0.75rem;
}

.info-card-line {
  font-size:     1rem;
  color:         var(--text);
  margin-bottom: 0.4rem;
}

.info-card-line i {
  color:       var(--accent);
  margin-right: 0.4rem;
}

.info-card-note {
  font-size:   0.9375rem;
  color:       var(--text-muted);
  margin-top:  0.5rem;
  margin-bottom: 0;
}

.quick-facts-list {
  list-style:  none;
  padding:     0;
  margin:      0;
}

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

.quick-facts-list li:last-child {
  margin-bottom: 0;
}

.quick-facts-list li i {
  color:      var(--accent);
  font-size:  1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.quick-facts-list li span {
  flex: 1;
}

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

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

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

.review-card {
  background:     var(--bg);
  border:         1px solid var(--border);
  border-radius:  var(--card-radius);
  padding:        1.5rem;
  opacity:        0;
  transform:      translateY(16px);
  transition:     opacity 0.4s ease, transform 0.4s ease;
}

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

.review-stars {
  display:       flex;
  gap:           0.2rem;
  color:         var(--accent);
  margin-bottom: 1rem;
  font-size:     1rem;
}

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

.review-author {
  font-size:   1rem;
  font-weight: 700;
  color:       var(--text);
  margin-bottom: 0.2rem;
}

.review-country {
  font-size:   0.9375rem;
  color:       var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================
   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;
}

@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-bottom: 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;
}

.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:           var(--footer-head);
  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-bottom: 0;
}

/* ==========================================================
   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.6);
}

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

.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);
  padding:     0;
  width:       2rem;
  height:      2rem;
  display:     flex;
  align-items: center;
  justify-content: center;
}

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

.modal-room-title {
  font-size:     1.5rem;
  margin-bottom: 1rem;
  padding-right: 2rem;
  color:         var(--text);
}

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

.modal-room-specs {
  list-style:  none;
  padding:     0;
  margin:      0 0 1.5rem;
}

.modal-room-specs li {
  display:       flex;
  align-items:   center;
  gap:           0.65rem;
  font-size:     1rem;
  color:         var(--text-muted);
  margin-bottom: 0.5rem;
}

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

.modal-room-cta {
  display:         block;
  text-align:      center;
  text-decoration: none;
}

/* ==========================================================
   Link & button text-decoration overrides
   ========================================================== */
.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;
}

a:hover {
  text-decoration: none;
}

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

/* ============================================================
   V24 AUDIT FIXES
   ============================================================ */
.logo-navbar { height: var(--navbar-h); width: auto; padding: 0; object-fit: contain; transition: filter .3s; }
.navbar:not(.scrolled) .logo-navbar { filter: brightness(0) invert(1); }
.navbar.scrolled .logo-navbar { filter: brightness(0) invert(0.5); }

/* Lang 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(67,56,202,.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(67,56,202,.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(67,56,202,.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(67,56,202,.08)}@media(max-width:1023px){.x22-lang{display:none}}

/* Lang switcher — Mobile */
.xm11-lang{display:none;align-items:center;justify-content:center;gap:.15rem;margin-top:.15rem}.xm11-t{font-size:.6875rem;font-weight:700;letter-spacing:.03em;color:#555;text-decoration:none;padding:.1rem .2rem;border-radius:3px;line-height:1}.xm11-t.xm11-active{color:#222;background:rgba(0,0,0,.05)}@media(max-width:1023px){.xm11-lang{display:flex}}
.xm12-row{display:none;align-items:center}.xm12-lang{display:flex;align-items:center;gap:.1rem;margin-right:.4rem}.xm12-t{font-size:.6875rem;font-weight:700;color:#555;text-decoration:none;padding:.1rem .25rem;border-radius:3px;line-height:1}.xm12-t.xm12-active{color:#222;background:rgba(0,0,0,.05)}@media(max-width:1023px){.xm12-row{display:flex}}
.xm14-wrap{display:none;flex-direction:column;align-items:center;gap:.1rem}.xm14-lang{display:flex;align-items:center;gap:.1rem}.xm14-t{font-size:.6875rem;font-weight:700;color:#555;text-decoration:none;padding:.1rem .2rem;border-radius:3px;line-height:1}.xm14-t.xm14-active{color:#222;background:rgba(0,0,0,.05)}@media(max-width:1023px){.xm14-wrap{display:flex}}

/* Footer 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}}

/* Mobile: navbar always white */
@media(max-width:1023px){
  .navbar{background:rgba(255,255,255,.97)!important;border-bottom:1px solid var(--border,#e5e5e5);box-shadow:0 1px 3px rgba(0,0,0,.08)}
  #navbar .logo-navbar{filter:none!important}
  #navbar .hamburger-bar{background:#333!important}
  .navbar-links{display:none!important}
  .hamburger{display:flex!important}
}

/* scroll-padding */
html { scroll-padding-top: calc(var(--navbar-h, 80px) + 1rem); }

/* V24: Hero positioning */
.hero-content {
  margin-left: max(100px, 6vw) !important;
  margin-right: 200px;
}
.hero-title { white-space: nowrap; }
.hero { padding-top: 33vh !important; }
@media (max-width: 640px) {
  .hero-content { margin-left: 1.25rem !important; margin-right: 1.25rem; }
  .hero-title { white-space: normal; }
  .hero { padding-top: 180px !important; }
}

/* V24: Tour blocks */
.tour-block { grid-template-columns: 1fr 1.4fr; }
.tour-block-image img, .tour-block-img { width: 100%; height: auto; object-fit: cover; }
@media (max-width: 768px) {
  .tour-block { grid-template-columns: 1fr !important; }
}

/* V24: Footer sizes */
.footer-brand { font-size: 2rem !important; }
.footer-col-heading { font-size: 1.125rem !important; }
.section-eyebrow { font-size: 1.0625rem !important; }

/* V24: Carousel dots */
.carousel-dot { border: none; padding: 0; }

/* V24: Mobile font floor */
@media (max-width: 767px) {
  body { font-size: 1rem; }
  p, li, td, th, label, input, select, textarea { font-size: 1rem !important; }
  .footer-copyright, .review-country { font-size: 0.9375rem !important; }
}

/* Fix: nav-sentinel invisible */
.nav-sentinel { position: absolute !important; height: 0 !important; width: 0 !important; pointer-events: none; opacity: 0; visibility: hidden; }

/* Fix: Contact form — constrain width, not full screen */
#contact .contact-form-wrap,
#contact form {
  max-width: 100%;
}
#contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) {
  #contact .form-row { grid-template-columns: 1fr; }
}

/* Fix: Tour packages image — full width, original proportions */
.tour-card img {
  width: 100%;
  height: auto !important;
  object-fit: cover;
  aspect-ratio: unset !important;
}

/* Fix: Travel tips 3-column full width */
.travel-tips {
  margin-top: 2rem;
}
.travel-tips-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 768px) {
  .travel-tips-list { grid-template-columns: 1fr; }
}

/* Fix: Footer copyright — full width, centered, divider above */
.footer-divider {
  width: 100%;
  grid-column: 1 / -1;
}
.footer-copyright {
  text-align: center;
  width: 100%;
  grid-column: 1 / -1;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Fix: Carousel arrows always visible */
.carousel-btn {
  display: flex !important;
  opacity: 1 !important;
}

/* Fix: Hero behind navbar — no white gap */
section.hero, .hero { margin-top: 0; }

/* Fix: Multi-day block full width, square image preserved */
.multi-day-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  margin-top: 2rem;
  background: var(--bg-alt, #f9fafb);
  border-radius: var(--radius, 12px);
  overflow: hidden;
}
.multi-day-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.multi-day-body {
  padding: 2rem;
}
@media (max-width: 768px) {
  .multi-day-block { grid-template-columns: 1fr; }
}

/* Fix: Remove duplicate/conflicting form-row overrides */
#contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 640px) {
  #contact .form-row { grid-template-columns: 1fr; }
}

/* Fix: Eliminate white bar — body bg dark to match hero overlay */
body { background: var(--bg); }



/* OVERRIDE: Navbar always white — no transparency, same as scrolled */
.navbar,
.navbar:not(.scrolled) {
  background: rgba(255,255,255,0.97) !important;
  box-shadow: 0 1px 0 var(--border, #e5e5e5) !important;
}
.navbar:not(.scrolled) .navbar-links a {
  color: var(--text) !important;
}
.navbar:not(.scrolled) .navbar-links a:hover {
  color: var(--accent) !important;
}
.navbar:not(.scrolled) .logo-navbar {
  filter: none !important;
}
.navbar:not(.scrolled) .hamburger-bar {
  background: var(--text) !important;
}
.navbar:not(.scrolled) .nav-cta a {
  background: var(--accent) !important;
  color: #fff !important;
}

/* OVERRIDE: Lang switcher always dark — not white on white */
.navbar:not(.scrolled) .x22-t,
.navbar:not(.scrolled) .x21-t,
.navbar:not(.scrolled) .x13-t {
  color: var(--text-muted) !important;
}
.navbar:not(.scrolled) .x22-t:hover,
.navbar:not(.scrolled) .x21-t:hover,
.navbar:not(.scrolled) .x13-t:hover {
  color: var(--accent) !important;
}
.navbar:not(.scrolled) .x22-t.x22-active,
.navbar:not(.scrolled) .x21-t.x21-active,
.navbar:not(.scrolled) .x13-t.x13-active {
  color: var(--text) !important;
}
.navbar:not(.scrolled) .x22-lang {
  background: var(--bg-alt, #f5f5f5) !important;
}
.navbar:not(.scrolled) .x21-div {
  background: var(--border, #e5e5e5) !important;
}

/* OVERRIDE: Lang switcher active state at top — match scrolled exactly */
.navbar:not(.scrolled) .x22-t.x22-active {
  color: var(--text) !important;
  background: rgba(67,56,202,.08) !important;
}
.navbar:not(.scrolled) .x21-t.x21-active {
  color: var(--text) !important;
}
.navbar:not(.scrolled) .x13-t.x13-active {
  color: var(--text) !important;
  background: rgba(67,56,202,.08) !important;
}

/* OVERRIDE: Logo — full navbar height, no padding */
.navbar-logo img,
#navbar .navbar-logo img,
#navbar .logo-navbar {
  height: var(--nav-h, 72px) !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  object-fit: contain;
}

/* FINAL: Logo exactly 80px, zero padding/margin on all ancestors */
.navbar { height: 72px !important; }
.navbar-inner { padding-top: 0 !important; padding-bottom: 0 !important; }
.navbar-logo { padding: 0 !important; margin: 0 !important; }
.navbar-logo img,
#navbar .navbar-logo img,
#navbar .logo-navbar {
  height: 72px !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  object-fit: contain;
}
