/* style.css — Mussah Poteh Resort — round 5.9.1
   Font: Cabinet Grotesk + DM Sans | Accent: Dark Emerald #065f46
   Accent: Dark Emerald #065f46
   Footer bg: #000e0a (dark_variant of accent, 85% black mix)
   Section variant: 1 (hero → about → rooms → activities → meals → getting-here → contact → reviews)
   Heading cluster: narrative
*/

/* ======================================================
   CSS CUSTOM PROPERTIES
   ====================================================== */
:root {
  --accent:        #065f46;
  --accent-hover:  #064e3b;
  --accent-light:  rgba(6, 95, 70, 0.12);
  --bg:            #ffffff;
  --bg-alt:        #f9fafb;
  --text:          #111827;
  --text-muted:    #6b7280;
  --border:        #e5e7eb;
  --font-heading:  'Cabinet Grotesk', 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body:     'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --navbar-h:      80px;
  --max-w:         1200px;
  --btn-radius:    6px;
  --img-radius:    12px;
  --section-pad:   80px;
  --footer-bg:     #000e0a;
  --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
   ====================================================== */
html, body {
  width:       100%;
  max-width:   100vw;
  overflow-x:  hidden;
  scroll-behavior: smooth;
}
html {
  scroll-padding-top: calc(var(--nav-h, 80px) + 1rem);
}

*, *::before, *::after {
  box-sizing:  border-box;
  max-width:   100%;
}
body {
  font-family:  var(--font-body);
  font-size:    1.0625rem;
  line-height:  1.6;
  color:        var(--text);
  background:   var(--bg);
  margin:       0;
  padding:      0;
}
img, video, iframe {
  max-width:    100%;
  height:       auto;
  display:      block;
}
a {
  text-decoration: none;
  color:           var(--accent);
  transition:      color 0.2s;
}
a:hover { color: var(--accent-hover); }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 {
  font-family:   var(--font-heading);
  line-height:   1.2;
  color:         var(--text);
  margin-top:    0;
}
p { margin-top: 0; }

/* ======================================================
   LAYOUT HELPERS
   ====================================================== */
.container {
  width:         100%;
  max-width:     var(--max-w);
  margin-left:   auto !important;
  margin-right:  auto !important;
  padding-left:  1.5rem;
  padding-right: 1.5rem;
}
@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);
}
.bg-alt { background: var(--bg-alt); }

.section-header {
  text-align:    center;
  margin-bottom: 3rem;
}
.section-eyebrow {
  font-family:     var(--font-body);
  font-size:       1.0625rem;
  font-weight:     600;
  text-transform:  uppercase;
  letter-spacing:  0.1em;
  color:           var(--accent);
  margin-bottom:   0.5rem;
  display:         block;
}
.section-title {
  font-family:   var(--font-heading);
  font-size:     clamp(2rem, 4vw, 2.75rem);
  font-weight:   700;
  color:         var(--text);
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-size:  1.0625rem;
  color:      var(--text-muted);
  max-width:  52rem;
  margin:     0 auto;
}

/* ======================================================
   NAV SENTINEL (visually hidden, for IntersectionObserver)
   ====================================================== */
.nav-sentinel {
  position:       absolute;
  top:            0;
  left:           0;
  width:          1px;
  height:         1px;
  pointer-events: none;
  opacity:        0;
  visibility:     hidden;
}

/* ======================================================
   NAVBAR
   ====================================================== */
.navbar {
  position:   fixed;
  top:        0;
  left:       0;
  right:      0;
  height:     var(--navbar-h);
  z-index:    1000;
  background: transparent;
  transition: background 0.25s, box-shadow 0.25s;
}
.navbar.scrolled {
  background:       rgba(255, 255, 255, 0.97);
  box-shadow:       0 2px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter:  blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@media (max-width: 900px) {
  .navbar {
    background:      rgba(255, 255, 255, 0.97) !important;
    box-shadow:      0 1px 0 var(--border);
  }
  .navbar-links a,
  .hamburger span { color: var(--text); }
  .hamburger-bar   { background: var(--text) !important; }
}

.navbar-inner {
  display:         flex;
  align-items:     center;
  height:          var(--navbar-h);
  width:           100%;
  padding-left:    125px;
  padding-right:   125px;
  gap:             1rem;
}

@media (max-width: 900px) {
  .navbar-inner {
    padding-left:  1rem;
    padding-right: 1rem;
  }
}
.navbar-logo {
  display:     flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-navbar {
  height:      var(--navbar-h);
  width:       auto;
  object-fit:  contain;
  display:     block;
}

.navbar-links {
  display:      flex;
  align-items:  center;
  gap:          2rem;
  margin:       0;
  padding:      0;
  list-style:   none;
}
.navbar-links a {
  font-size:       1.0625rem;
  font-weight:     600;
  color:           rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition:      color 0.2s;
}
.navbar-links a:hover { color: #fff; }

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

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

@media (max-width: 900px) {
  .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;
}
@media (max-width: 900px) {
  .hamburger { display: flex; }
}
.hamburger-bar {
  display:       block;
  width:         22px;
  height:        2px;
  background:    var(--text);
  border-radius: 2px;
  transition:    transform 0.2s, opacity 0.2s;
}

/* ======================================================
   MOBILE MENU
   ====================================================== */
.mobile-menu {
  display:       none;
  position:      fixed;
  top:           var(--navbar-h);
  left:          0;
  right:         0;
  max-height:    calc(100vh - var(--navbar-h) - 2rem);
  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:       999;
  border-bottom-left-radius:  var(--btn-radius);
  border-bottom-right-radius: var(--btn-radius);
  flex-direction: column;
}
.mobile-menu.open { display: flex; }

.mobile-menu-close {
  align-self:      flex-end;
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  width:           36px;
  height:          36px;
  background:      transparent;
  border:          none;
  font-size:       1.5rem;
  cursor:          pointer;
  color:           var(--text-muted);
  line-height:     1;
  margin-bottom:   0.5rem;
  border-radius:   50%;
  transition:      background 0.2s;
}
.mobile-menu-close:hover { background: var(--bg-alt); }

.mobile-nav-links {
  display:        flex;
  flex-direction: column;
  gap:            0;
  list-style:     none;
  padding:        0;
  margin:         0;
}
.mobile-nav-links li a {
  display:         block;
  padding:         0.75rem 0;
  font-size:       1.0625rem;
  font-weight:     600;
  color:           var(--text);
  border-bottom:   1px solid var(--border);
  text-decoration: none;
  transition:      color 0.2s;
}
.mobile-nav-links li:last-child a { border-bottom: none; }
.mobile-nav-links li a:hover { color: var(--accent); }
.mobile-cta-link {
  color:         var(--accent) !important;
  font-weight:   700 !important;
}

.mobile-menu-backdrop {
  display:         none;
  position:        fixed;
  inset:           0;
  top:             var(--navbar-h);
  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;
  min-height:  100vh;
  display:     flex;
  align-items: flex-start;
  padding-top: clamp(6rem, 14vh, 10rem);
  overflow:    hidden;
}
.hero-img {
  position:    absolute;
  inset:       0;
  width:       100%;
  height:      100%;
  object-fit:  cover;
  z-index:     0;
}
.hero-gradient {
  position:   absolute;
  inset:      0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.20) 60%, rgba(0,0,0,0.10) 100%);
  z-index:    1;
}
@media (max-width: 900px) {
  .hero-gradient {
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 70%, rgba(0,0,0,0.15) 100%);
  }
}
.hero-content {
  position:  relative;
  z-index:   2;
  max-width: 760px;
}
.hero-title {
  font-family:   var(--font-heading);
  font-size:     clamp(2.25rem, 5vw, 3.75rem);
  font-weight:   700;
  color:         #fff;
  margin-bottom: 0.75rem;
  line-height:   1.1;
}
.hero-tagline {
  font-size:     1.125rem;
  color:         rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  max-width:     520px;
}
.hero-cta-row {
  display:    flex;
  gap:        1rem;
  flex-wrap:  wrap;
}

/* ======================================================
   BUTTONS
   ====================================================== */
.btn {
  display:       inline-flex;
  align-items:   center;
  padding:       0.875rem 1.75rem;
  border-radius: var(--btn-radius);
  font-family:   var(--font-body);
  font-size:     1rem;
  font-weight:   700;
  cursor:        pointer;
  transition:    background 0.2s, color 0.2s, border-color 0.2s;
  border:        2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color:      #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background:   var(--accent-hover);
  border-color: var(--accent-hover);
  color:        #fff;
}
.btn-outline {
  background:   transparent;
  color:        #fff;
  border-color: rgba(255, 255, 255, 0.75);
}
.btn-outline:hover {
  background:   rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color:        #fff;
}
.btn-submit {
  display:       inline-flex;
  align-items:   center;
  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;
}
.btn-submit:hover { background: var(--accent-hover); }

/* ======================================================
   ABOUT SECTION
   ====================================================== */
.about-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   4rem;
  align-items:           center;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap:                   2rem;
  }
  .about-image-col { order: -1; }
}
.about-text .section-eyebrow { text-align: left; }
.about-text .section-title   { text-align: left; }
.about-text p {
  color:         var(--text-muted);
  font-size:     1.0625rem;
  margin-bottom: 1rem;
  line-height:   1.7;
}
.about-img {
  width:         100%;
  border-radius: var(--img-radius);
  object-fit:    cover;
  aspect-ratio:  4 / 3;
}

/* ======================================================
   ROOMS SECTION
   ====================================================== */
.villas-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   2.5rem;
}
@media (max-width: 900px) {
  .villas-grid { grid-template-columns: 1fr; }
}

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

/* ======================================================
   CAROUSEL
   ====================================================== */
.carousel {
  position:  relative;
  overflow:  hidden;
  flex-shrink: 0;
}
.carousel-track {
  display:    flex;
  transition: transform 0.35s ease;
  width:      100%;
}
.carousel-slide {
  flex:       0 0 100%;
  width:      100%;
}
.carousel-slide img {
  width:        100%;
  aspect-ratio: 4 / 3;
  object-fit:   cover;
  display:      block;
}
.carousel-btn {
  position:    absolute;
  top:         50%;
  transform:   translateY(-50%);
  background:  rgba(0, 0, 0, 0.45);
  border:      none;
  color:       #fff;
  width:       40px;
  height:      40px;
  border-radius: 50%;
  display:     flex;
  align-items: center;
  justify-content: center;
  font-size:   1.375rem;
  cursor:      pointer;
  z-index:     10;
  opacity:     1;
  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.65); }
.carousel-btn.prev  { left:  0.625rem; }
.carousel-btn.next  { right: 0.625rem; }
@media (max-width: 768px) {
  .carousel-btn.prev { left:  0.5rem; }
  .carousel-btn.next { right: 0.5rem; }
}
.carousel-dots {
  display:         flex;
  justify-content: center;
  gap:             0.4rem;
  padding:         0.625rem 0 0.25rem;
}
.carousel-dot {
  width:         9px;
  height:        9px;
  border-radius: 50%;
  background:    var(--border);
  border:        none;
  padding:       0;
  cursor:        pointer;
  transition:    background 0.2s;
}
.carousel-dot.active,
.carousel-dot:hover { background: var(--accent); }

/* ======================================================
   VILLA CARD BODY
   ====================================================== */
.villa-view-link {
  display:       inline-flex;
  align-items:   center;
  justify-content: center;
  padding:       0.75rem 1.125rem;
  font-size:     0.9375rem;
  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;
  font-family:   var(--font-body);
  text-decoration: none;
}
.villa-view-link:hover {
  background: var(--accent);
  color:      #fff;
}

.villa-info {
  display:        flex;
  flex-direction: column;
  flex:           1;
  padding:        0 1.25rem 1.5rem;
}
.villa-name {
  font-family:   var(--font-heading);
  font-size:     1.375rem;
  font-weight:   700;
  margin-bottom: 0.5rem;
  color:         var(--text);
}
.villa-desc {
  font-size:     1.0625rem;
  color:         var(--text-muted);
  margin-bottom: 1rem;
  line-height:   1.65;
  flex:          1;
}
.villa-specs {
  list-style:    none;
  padding:       0;
  margin:        0 0 1.25rem;
  display:       flex;
  flex-wrap:     wrap;
  gap:           0.5rem 1.25rem;
}
.villa-specs li {
  font-size:   0.9375rem;
  color:       var(--text-muted);
  display:     flex;
  align-items: center;
  gap:         0.4rem;
}
.villa-specs li i { color: var(--accent); font-size: 0.875rem; }

.btn-room-cta {
  margin-top:    auto;
  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;
}
.btn-room-cta:hover { background: var(--accent-hover); }

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

.modal-backdrop {
  position:   absolute;
  inset:      0;
  background: rgba(0, 0, 0, 0.6);
  cursor:     pointer;
}
.modal-dialog {
  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-dialog h3 {
  font-size:     1.375rem;
  margin-bottom: 0.75rem;
  padding-right: 2rem;
}
.modal-dialog p {
  font-size:     1.0625rem;
  color:         var(--text-muted);
  margin-bottom: 1.25rem;
  line-height:   1.65;
}
.modal-specs {
  list-style:    none;
  padding:       0;
  margin:        0 0 1.5rem;
}
.modal-specs li {
  font-size:     1.0625rem;
  color:         var(--text-muted);
  padding:       0.375rem 0;
  display:       flex;
  align-items:   flex-start;
  gap:           0.6rem;
  border-bottom: 1px solid var(--border);
}
.modal-specs li:last-child { border-bottom: none; }
.modal-specs li i { color: var(--accent); margin-top: 0.2rem; flex-shrink: 0; }
.modal-cta {
  display:    inline-flex;
  margin-top: 0.25rem;
}
.modal-close {
  position:     absolute;
  top:          1rem;
  right:        1rem;
  background:   none;
  border:       none;
  font-size:    1.75rem;
  cursor:       pointer;
  line-height:  1;
  color:        var(--text-muted);
  padding:      0;
  transition:   color 0.2s;
}
.modal-close:hover { color: var(--text); }

/* ======================================================
   ACTIVITIES SECTION
   ====================================================== */
.activities-banner {
  width:      100%;
  overflow:   hidden;
  max-height: 420px;
  margin-bottom: 0;
}
.activities-banner img {
  width:       100%;
  height:      420px;
  object-fit:  cover;
  object-position: center;
  display:     block;
}

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

/* Core activity cards */
.activity-cards-grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   1.5rem;
  margin-bottom:         3.5rem;
}
@media (max-width: 1024px) {
  .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:        1px solid var(--border);
  border-radius: var(--img-radius);
  overflow:      hidden;
  display:       flex;
  flex-direction: column;
}
.activity-card img {
  width:        100%;
  aspect-ratio: 4 / 3;
  object-fit:   cover;
}
.activity-card-body {
  padding: 1.25rem;
  flex:    1;
}
.activity-card-body h3 {
  font-family:   var(--font-heading);
  font-size:     1.1875rem;
  font-weight:   700;
  margin-bottom: 0.625rem;
  color:         var(--text);
  display:       flex;
  align-items:   center;
  gap:           0.5rem;
}
.activity-card-body h3 i {
  color:      var(--accent);
  font-size:  1.125rem;
}
.activity-card-body p {
  font-size:  1.0625rem;
  color:      var(--text-muted);
  line-height: 1.6;
  margin:     0;
}

/* On-site activities */
.onsite-section {
  margin-bottom: 3.5rem;
  padding:       2rem;
  background:    var(--bg-alt);
  border-radius: var(--img-radius);
  border:        1px solid var(--border);
}
.onsite-heading {
  font-family:   var(--font-heading);
  font-size:     1.375rem;
  font-weight:   700;
  margin-bottom: 1.25rem;
  color:         var(--text);
}
.onsite-list {
  display:               grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap:                   0.75rem;
  list-style:            none;
  padding:               0;
  margin:                0;
}
.onsite-item {
  display:     flex;
  align-items: center;
  gap:         0.625rem;
  font-size:   1.0625rem;
  color:       var(--text-muted);
  font-weight: 500;
}
.onsite-item i { color: var(--accent); width: 1.25rem; text-align: center; }

/* Tour blocks */
.tour-block {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   3.5rem;
  align-items:           center;
  margin-bottom:         4rem;
  padding-bottom:        4rem;
  border-bottom:         1px solid var(--border);
}
.tour-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.tour-block-reverse .tour-image-col { order: 2; }
.tour-block-reverse .tour-text-col  { order: 1; }

@media (max-width: 900px) {
  .tour-block {
    grid-template-columns: 1fr;
    gap:                   1.75rem;
  }
  .tour-block-reverse .tour-image-col { order: -1; }
  .tour-block-reverse .tour-text-col  { order: 0; }
}

.tour-image-col img {
  width:         100%;
  border-radius: var(--img-radius);
  aspect-ratio:  4 / 3;
  object-fit:    cover;
}
.tour-text-col h3 {
  font-family:   var(--font-heading);
  font-size:     1.4375rem;
  font-weight:   700;
  margin-bottom: 0.875rem;
  color:         var(--text);
}
.tour-text-col p {
  font-size:     1.0625rem;
  color:         var(--text-muted);
  line-height:   1.7;
  margin-bottom: 1.25rem;
}
.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);
  padding:     0.3rem 0;
}
.tour-highlights li i {
  color:      var(--accent);
  font-size:  1rem;
  width:      1rem;
  flex-shrink: 0;
  text-align: center;
  transform:  translateY(0.15em);
}

/* ======================================================
   MEALS SECTION
   ====================================================== */
.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-image-col img {
  width:         100%;
  border-radius: var(--img-radius);
  aspect-ratio:  4 / 3;
  object-fit:    cover;
}
.meals-text-col .section-eyebrow { text-align: left; }
.meals-text-col .section-title   { text-align: left; }
.meals-text-col > p {
  font-size:     1.0625rem;
  color:         var(--text-muted);
  margin-bottom: 1.5rem;
  line-height:   1.7;
}

.meals-table-wrap {
  margin-bottom: 2rem;
  overflow-x:    auto;
}
.meals-table {
  width:           100%;
  border-collapse: collapse;
  font-size:       1rem;
}
.meals-table th {
  text-align:  left;
  padding:     0.625rem 0.875rem;
  font-weight: 700;
  color:       var(--text);
  background:  var(--bg-alt);
  border-bottom: 2px solid var(--border);
  font-family: var(--font-body);
  font-size:   1rem;
}
.meals-table td {
  padding:       0.625rem 0.875rem;
  color:         var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-size:     1rem;
  vertical-align: middle;
}
.meals-table td i { color: var(--accent); margin-right: 0.375rem; }
.meals-table td .fa-circle-check { color: var(--accent); }

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

.cuisine-grid {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   1.25rem;
  margin-bottom:         2rem;
}
.cuisine-item h4 {
  font-family:   var(--font-heading);
  font-size:     1.0625rem;
  font-weight:   700;
  margin-bottom: 0.375rem;
  color:         var(--text);
}
.cuisine-item p {
  font-size:  1.0625rem;
  color:      var(--text-muted);
  margin:     0;
  line-height: 1.6;
}

.meals-bbq-box {
  background:    var(--accent-light);
  border-left:   4px solid var(--accent);
  border-radius: 0 var(--btn-radius) var(--btn-radius) 0;
  padding:       1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.meals-bbq-box h4 {
  font-family:   var(--font-heading);
  font-size:     1.0625rem;
  font-weight:   700;
  margin-bottom: 0.5rem;
  color:         var(--text);
}
.meals-bbq-box h4 i { color: var(--accent); margin-right: 0.375rem; }
.meals-bbq-box p {
  font-size:  1.0625rem;
  color:      var(--text-muted);
  margin:     0;
  line-height: 1.6;
}

.dietary-note p {
  font-size:  1rem;
  color:      var(--text-muted);
  margin:     0;
  line-height: 1.6;
}

/* ======================================================
   GETTING HERE SECTION
   ====================================================== */
.getting-here-layout {
  display:               grid;
  grid-template-columns: 1fr 340px;
  gap:                   3.5rem;
  align-items:           start;
}
@media (max-width: 1024px) {
  .getting-here-layout { grid-template-columns: 1fr; }
}

.gh-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.gh-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.gh-block h3 {
  font-family:   var(--font-heading);
  font-size:     1.25rem;
  font-weight:   700;
  margin-bottom: 0.75rem;
  color:         var(--text);
  display:       flex;
  align-items:   center;
  gap:           0.5rem;
}
.gh-block h3 i { color: var(--accent); }
.gh-block > p {
  font-size:     1.0625rem;
  color:         var(--text-muted);
  line-height:   1.7;
  margin-bottom: 0.875rem;
}

.gh-list {
  list-style: none;
  padding:    0;
  margin:     0;
}
.gh-list li {
  display:     flex;
  align-items: flex-start;
  gap:         0.625rem;
  font-size:   1.0625rem;
  color:       var(--text-muted);
  padding:     0.25rem 0;
  line-height: 1.55;
}
.gh-list li i {
  color:      var(--accent);
  margin-top: 0.25rem;
  font-size:  0.625rem;
  flex-shrink: 0;
}

/* Sidebar */
.getting-here-sidebar {
  display:        flex;
  flex-direction: column;
  gap:            1.25rem;
  position:       sticky;
  top:            calc(var(--navbar-h) + 1.5rem);
}
@media (max-width: 1024px) {
  .getting-here-sidebar { position: static; }
}
.sidebar-card {
  background:    var(--bg);
  border:        1px solid var(--border);
  border-radius: var(--img-radius);
  overflow:      hidden;
}
.sidebar-image-card img {
  width:       100%;
  aspect-ratio: 4 / 3;
  object-fit:  cover;
  display:     block;
}
.sidebar-map-card {
  overflow: hidden;
  padding:  0;
}
.sidebar-map-card iframe {
  display: block;
  width:   100%;
  border:  0;
}
.maps-btn {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             0.5rem;
  padding:         0.875rem 1.25rem;
  background:      var(--accent);
  color:           #fff;
  font-size:       1rem;
  font-weight:     600;
  text-decoration: none;
  border-radius:   var(--btn-radius);
  transition:      background 0.2s;
  margin:          1rem;
}
.maps-btn:hover { background: var(--accent-hover); color: #fff; }

.travel-tips-card {
  padding: 1.5rem;
}
.travel-tips-card h4 {
  font-family:   var(--font-heading);
  font-size:     1.125rem;
  font-weight:   700;
  margin-bottom: 1rem;
  color:         var(--text);
  display:       flex;
  align-items:   center;
  gap:           0.5rem;
}
.travel-tips-card h4 i { color: var(--accent); }
.travel-tips-list {
  list-style: none;
  padding:    0;
  margin:     0;
}
.travel-tips-list li {
  display:     flex;
  align-items: flex-start;
  gap:         0.75rem;
  font-size:   1rem;
  color:       var(--text-muted);
  padding:     0.5rem 0;
  border-bottom: 1px solid var(--border);
  line-height:   1.55;
}
.travel-tips-list li:last-child { border-bottom: none; }
.travel-tips-list li i {
  color:      var(--accent);
  width:      1.125rem;
  text-align: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ======================================================
   CONTACT SECTION
   ====================================================== */
.contact-layout {
  display:               grid;
  grid-template-columns: 1fr 360px;
  gap:                   3.5rem;
  align-items:           start;
}
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-form-col {}
.contact-sidebar-col {
  display:        flex;
  flex-direction: column;
  gap:            1.25rem;
}

/* Form styles */
.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: 600px) {
  .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-group input,
.form-group select,
.form-group textarea {
  padding:       0.75rem 0.875rem;
  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;
  width:         100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow:   0 0 0 3px var(--accent-light);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.field-error { border-color: #dc2626 !important; }

.required-asterisk {
  color:       var(--accent);
  margin-left: 0.2rem;
  font-weight: 700;
}
.form-reassurance {
  font-size:  1rem;
  color:      var(--text-muted);
  margin:     0;
}

.form-success {
  background:    #f0fdf4;
  border-left:   4px solid var(--accent);
  color:         #14532d;
  padding:       1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: var(--btn-radius);
}
.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; }

/* Sidebar info cards */
.info-card {
  padding: 1.5rem;
}
.info-card-title {
  font-family:   var(--font-heading);
  font-size:     1.125rem;
  font-weight:   700;
  margin-bottom: 0.75rem;
  color:         var(--text);
  display:       flex;
  align-items:   center;
  gap:           0.5rem;
}
.info-card-title i { color: var(--accent); }
.info-card p {
  font-size:     1rem;
  color:         var(--text-muted);
  margin-bottom: 0.75rem;
  line-height:   1.6;
}
.info-card-link {
  display:         inline-flex;
  align-items:     center;
  gap:             0.375rem;
  font-size:       1rem;
  font-weight:     600;
  color:           var(--accent);
  text-decoration: none;
  transition:      color 0.2s;
}
.info-card-link:hover { color: var(--accent-hover); }

.boat-schedule { margin-bottom: 0.75rem; }
.schedule-row {
  display:         flex;
  align-items:     center;
  padding:         0.375rem 0;
  border-bottom:   1px solid var(--border);
  font-size:       1rem;
}
.schedule-row:last-child { border-bottom: none; }
.schedule-label { font-weight: 600; color: var(--text); }
.schedule-times { color: var(--text-muted); }
.info-card-note {
  font-size:  0.9375rem;
  color:      var(--text-muted);
  margin:     0.5rem 0 0;
  font-style: italic;
}

.quick-facts-list {
  list-style: none;
  padding:    0;
  margin:     0;
}
.quick-facts-list li {
  display:     flex;
  align-items: flex-start;
  gap:         0.625rem;
  font-size:   1rem;
  color:       var(--text-muted);
  padding:     0.4rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.quick-facts-list li:last-child { border-bottom: none; }
.quick-facts-list li i { color: var(--accent); flex-shrink: 0; margin-top: 0.2rem; }

/* ======================================================
   REVIEWS SECTION
   ====================================================== */
.reviews-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1.5rem;
  margin-bottom:         2.5rem;
}
@media (max-width: 1024px) {
  .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(--img-radius);
  padding:       1.75rem;
  display:       flex;
  flex-direction: column;
  opacity:       0;
  transform:     translateY(16px);
  transition:    opacity 0.4s ease, transform 0.4s ease;
}
.review-card.visible { opacity: 1; transform: translateY(0); }

.review-stars {
  color:         #f59e0b;
  font-size:     1.125rem;
  margin-bottom: 0.875rem;
  display:       flex;
  gap:           0.2rem;
}
.review-body {
  font-size:   1.0625rem;
  color:       var(--text-muted);
  line-height: 1.7;
  flex:        1;
  margin-bottom: 1rem;
}
.review-author {
  display:     flex;
  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);
}
.review-country::before {
  content: "· ";
  color:   var(--text-muted);
}

.reviews-cta {
  text-align: center;
  margin-top: 0.75rem;
}

/* ======================================================
   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.5rem;
}
.footer-location-line {
  font-size:   0.9375rem;
  color:       var(--footer-text);
  display:     flex;
  align-items: center;
  gap:         0.375rem;
  margin-top:  0.5rem;
}
.footer-location-line i { color: var(--footer-text); }

.footer-col-heading {
  font-family:     var(--font-body);
  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; color: var(--footer-head); }

.footer-enquiry {
  display:         inline-flex;
  align-items:     center;
  gap:             0.4rem;
  color:           var(--footer-head);
  font-size:       1rem;
  font-weight:     700;
  text-decoration: none;
  margin-bottom:   1.25rem;
  transition:      opacity 0.2s;
}
.footer-enquiry:hover { opacity: 0.7; color: var(--footer-head); }

.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:       0.875rem;
  transition:      background 0.2s;
}
.footer-social a:hover { background: var(--footer-chip-h); color: var(--footer-head); }

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

/* ======================================================
   UTILITY
   ====================================================== */
.fa-circle-small { font-size: 0.4rem !important; margin-top: 0.45rem; }

/* ======================================================
   RESPONSIVE GLOBAL ADJUSTMENTS
   ====================================================== */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  .hero { min-height: 90vh; }
  .hero-title { font-size: clamp(1.875rem, 7vw, 2.5rem); }
  .section-title { font-size: clamp(1.625rem, 5vw, 2.25rem); }
  .about-text .section-title,
  .meals-text-col .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .tour-block { gap: 1.5rem; }
  .gh-block h3 { font-size: 1.125rem; }
}
@media (max-width: 480px) {
  body { font-size: 1rem; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .btn { padding: 0.75rem 1.375rem; font-size: 0.9375rem; }
}

/* ========= AUDIT FIXES ========= */

/* Logo */
.logo-navbar {
  height: 80px !important;
  padding: 0 !important; margin: 0 !important;
  filter: brightness(0) invert(1);
  transition: filter 0.25s;
}
.navbar.scrolled .logo-navbar { filter: none; }
@media (max-width: 900px) { .logo-navbar { filter: none; } }
.navbar-logo { margin-right: auto; }

/* Hero content positioning */
.hero { margin-top: calc(-1 * var(--nav-h, 80px)); }
.hero-content { padding-top: 33.33vh; padding-bottom: 4rem; margin-left: max(100px, 6vw); margin-right: 200px; text-align: left; max-width: none; }
@media (max-width: 900px) { .hero-content { margin-left: 1.5rem; margin-right: 1.5rem; } }
@media (min-width: 901px) { .hero-title { white-space: nowrap; } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.15) 100%); z-index: 1; }
@media (max-width: 900px) { .hero-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.60) 100%); } }

/* Nav sentinel */
.nav-sentinel { height: var(--nav-h, 80px); opacity: 0; pointer-events: none; }

/* Language switcher */
.lang-switcher-desktop { flex-shrink: 0; }
.lang-switcher-x13 { display: flex; align-items: center; margin-left: 18px; border: 1px solid rgba(6,95,70,0.5); border-radius: 20px; overflow: hidden; }
.lang-switcher-x13 a { font-size: 0.875rem; padding: 0.25rem 0.75rem; color: rgba(255,255,255,0.7); text-decoration: none; }
.lang-switcher-x13 .lang-active { color: #fff; background: rgba(6,95,70,0.15); }
.navbar.scrolled .lang-switcher-x13 { border-color: rgba(6,95,70,0.3); }
.navbar.scrolled .lang-switcher-x13 a { color: var(--text-muted, #6b7280); }
.navbar.scrolled .lang-switcher-x13 .lang-active { color: var(--text, #1a1a1a); background: rgba(6,95,70,0.08); }

.lang-switcher-x21 { display: flex; align-items: center; gap: 0.5rem; margin-left: 18px; flex-shrink: 0; font-size: 0.9375rem; }
.lang-switcher-x21 a { color: rgba(255,255,255,0.7); text-decoration: none; }
.lang-switcher-x21 .lang-active { color: #fff; }
.lang-switcher-x21 .lang-divider { color: rgba(255,255,255,0.3); }
.navbar.scrolled .lang-switcher-x21 a { color: var(--text-muted, #6b7280); }
.navbar.scrolled .lang-switcher-x21 .lang-active { color: var(--text, #1a1a1a); }
.navbar.scrolled .lang-switcher-x21 .lang-divider { color: var(--border, #e5e7eb); }

.lang-switcher-x22 { display: flex; align-items: center; margin-left: 18px; background: rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden; }
.lang-switcher-x22 a { font-size: 0.875rem; padding: 0.25rem 0.75rem; color: rgba(255,255,255,0.7); text-decoration: none; }
.lang-switcher-x22 .lang-active { color: #fff; background: rgba(255,255,255,0.15); }
.navbar.scrolled .lang-switcher-x22 { background: rgba(0,0,0,0.05); }
.navbar.scrolled .lang-switcher-x22 a { color: var(--text-muted, #6b7280); }
.navbar.scrolled .lang-switcher-x22 .lang-active { color: var(--text, #1a1a1a); background: rgba(0,0,0,0.08); }

.lang-switcher-xm11,.lang-switcher-xm12,.lang-switcher-xm14 { display: flex; gap: 0.375rem; font-size: 0.6875rem; }
.lang-switcher-xm11 a,.lang-switcher-xm12 a,.lang-switcher-xm14 a { color: rgba(255,255,255,0.6); text-decoration: none; }
.lang-switcher-xm11 .lang-active,.lang-switcher-xm12 .lang-active,.lang-switcher-xm14 .lang-active { color: #fff; }
.navbar.scrolled .lang-switcher-xm11 a,.navbar.scrolled .lang-switcher-xm12 a,.navbar.scrolled .lang-switcher-xm14 a { color: var(--text-muted, #6b7280); }
.navbar.scrolled .lang-switcher-xm11 .lang-active,.navbar.scrolled .lang-switcher-xm12 .lang-active,.navbar.scrolled .lang-switcher-xm14 .lang-active { color: var(--text, #1a1a1a); }
@media (max-width: 900px) { .lang-switcher-xm11 a,.lang-switcher-xm14 a { color: var(--text-muted, #6b7280); } .lang-switcher-xm11 .lang-active,.lang-switcher-xm14 .lang-active { color: var(--text, #1a1a1a); } }

.navbar-right-mobile { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
@media (max-width: 1023px) { .navbar-right-mobile { display: flex; } .navbar-links { display: none !important; } .lang-switcher-desktop { display: none !important; } }
@media (min-width: 1024px) { .lang-switcher-mobile { display: none !important; } }

/* Footer lang/flags */
.footer-lang { display: flex; gap: 0.75rem; align-items: center; margin-top: 1.25rem; }
.footer-flag { display: inline-flex; align-items: center; opacity: 0.75; transition: opacity 0.2s; text-decoration: none; }
.footer-flag:hover, .footer-flag.lang-active { opacity: 1; }
.flag-svg { display: block; width: 28px; height: 18px; object-fit: cover; }

/* Contact card aliases */
.contact-card { background: var(--bg-alt, #f9fafb); border: 1px solid var(--border, #e5e7eb); border-radius: 10px; padding: 1.25rem 1.375rem; margin-bottom: 1rem; }
.contact-card h4 { font-size: 1.0625rem; margin-bottom: 0.625rem; display: flex; align-items: center; gap: 0.5rem; margin-top: 0; }
.contact-card h4 i { color: var(--accent); }
.contact-card p, .contact-card address { font-size: 1rem; color: var(--text-muted, #6b7280); margin: 0; font-style: normal; line-height: 1.55; }
.quick-facts-sidebar { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.quick-facts-sidebar li { display: flex; align-items: center; gap: 0.625rem; font-size: 1rem; color: var(--text-muted, #6b7280); }
.quick-facts-sidebar li i { color: var(--accent); width: 1.25rem; text-align: center; flex-shrink: 0; }

/* Form field aliases */
.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row--2 { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 1rem; font-weight: 600; }
.form-field input,.form-field select,.form-field textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border, #e5e7eb); border-radius: 6px; font-size: 1rem; font-family: var(--font-body); }
.form-field input:focus,.form-field select:focus,.form-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(6,95,70,0.12); }
.form-field textarea { resize: vertical; min-height: 110px; }
.optional-label { font-size: 0.9375rem; font-weight: 400; color: var(--text-muted, #6b7280); }

/* On-site activities */
.onsite-section { margin-top: 3rem; margin-bottom: 3rem; }
.onsite-heading { font-size: 1.5rem; margin-bottom: 1.25rem; }
.onsite-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 0.75rem; list-style: none; padding: 0; margin: 0; }
.onsite-item { display: flex; align-items: center; gap: 0.625rem; font-size: 1rem; padding: 0.625rem 0.875rem; background: var(--bg-alt, #f9fafb); border: 1px solid var(--border, #e5e7eb); border-radius: 6px; }
.onsite-item i { color: var(--accent); flex-shrink: 0; }

/* Villa actions */
.villa-actions { display: flex; gap: 0.75rem; margin-top: auto; align-items: stretch; }
.villa-actions .btn-room-cta { flex: 1; display: inline-flex; align-items: center; justify-content: center; }

/* Mobile CTA */
.mobile-cta a { display: block; margin-top: 1.25rem; padding: 0.875rem; background: var(--accent); color: #fff !important; text-align: center; border-radius: 6px; font-weight: 600; text-decoration: none; }

/* Footer social fix */
.footer-social a i { font-size: 1rem; }

/* ========= MOBILE FONT FLOOR OVERRIDES ========= */
@media (max-width: 768px) {
  /* Items at 0.9375rem that need bumping to 1rem on mobile */
  .villa-view-link { font-size: 1rem; }
  .villa-specs li { font-size: 1rem; }
  .villa-specs li i { font-size: 1rem; }
  .info-card-note { font-size: 1rem; }
  .footer-location, .footer-location-line { font-size: 1rem; }
  .optional-label { font-size: 1rem; }
  .cuisine-item h4 { font-size: 1rem; }
  .cuisine-item p { font-size: 1rem; }
  .activity-card-body p { font-size: 1rem; }
  .tour-card-body p { font-size: 1rem; }
  .tour-highlight li { font-size: 1rem; }
  .gh-list li { font-size: 1rem; }
  .gh-list li i { font-size: 0.75rem; }
  .meals-table td { font-size: 1rem; }
  .meals-table th { font-size: 1rem; }
  .dietary-note p { font-size: 1rem; }
  .btn { font-size: 1rem; }
  .section-eyebrow { font-size: 1rem; }
  .review-body { font-size: 1rem; }
  .review-name { font-size: 1rem; }
  .sidebar-card p { font-size: 1rem; }
  .info-card-link { font-size: 1rem; }
  .schedule-label, .schedule-times { font-size: 1rem; }
  .travel-tips-list li { font-size: 1rem; }
  .quick-facts-list li { font-size: 1rem; }
  .modal-dialog p { font-size: 1rem; }
  .modal-dialog li { font-size: 1rem; }

  /* Allowed to stay at 0.9375rem on mobile */
  .footer-copyright { font-size: 0.9375rem; }
  .form-reassurance { font-size: 0.9375rem; }
  .review-country { font-size: 0.9375rem; }
  .sipadan-table td { font-size: 0.9375rem; }
}
