/* ============================================================
   COCO SEAWEED RESORT — style.css
   round 5.9.1 | Clash Display + DM Sans | Burnt Orange #c2410c
   ============================================================ */

/* ─── 1. CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --accent:        #c2410c;
  --accent-dark:   #9a3412;
  --accent-light:  #fef3ee;
  --accent-mid:    #ea580c;

  --text:          #1f2937;
  --text-light:    #4b5563;
  --text-muted:    #6b7280;
  --border:        #e5e7eb;
  --bg-alt:        #f8f6f3;
  --white:         #ffffff;

  --footer-bg:     #1d0901;
  --footer-text:   rgba(255,255,255,0.72);
  --footer-heading:#ffffff;

  --font-heading:  'Cabinet Grotesk', system-ui, sans-serif;
  --font-body:     'DM Sans', sans-serif;

  --navbar-h:      70px;
  --container-max: 1220px;
  --gap:           clamp(1.5rem, 4vw, 2.5rem);
  --radius:        10px;
  --radius-lg:     16px;
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.14);
  --transition:    0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--accent-dark);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ─── 3. TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  color: var(--text);
  font-weight: 600;
}

/* ─── 4. LAYOUT UTILITIES ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background: var(--white);
}

.section-alt {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background: var(--bg-alt);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--text);
  margin-bottom: 1.1rem;
}

.section-intro {
  max-width: 720px;
  color: var(--text-light);
  font-size: 1.03rem;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

/* ─── 5. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.72rem 1.65rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(194,65,12,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.72);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255,255,255,0.14);
  border-color: var(--white);
  color: var(--white);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  margin-top: 0.25rem;
}

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

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 14px rgba(0,0,0,0.09);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
  gap: 1.5rem;
}

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

.logo-navbar {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.65rem;
  list-style: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition);
}

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

.nav-links a:hover {
  color: rgba(255,255,255,0.75);
}

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

.nav-links .nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.48rem 1.1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav-links .nav-cta:hover {
  background: var(--accent-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 3px 10px rgba(194,65,12,0.32);
}

/* ─── 7. HAMBURGER ───────────────────────────────────────────── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 6px;
  border-radius: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}

.hamburger:hover {
  background: rgba(255,255,255,0.14);
}

.navbar.scrolled .hamburger:hover {
  background: rgba(0,0,0,0.06);
}

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

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

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

/* ─── 8. NAV SENTINEL ────────────────────────────────────────── */
.nav-sentinel {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

/* ─── 9. MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: min(320px, 86vw);
  height: 100%;
  background: var(--white);
  padding: 1.5rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -4px 0 28px rgba(0,0,0,0.14);
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-end;
  font-size: 1.35rem;
  line-height: 1;
  padding: 0.3rem 0.45rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 1.4rem;
  transition: color var(--transition);
}

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

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

.mobile-nav-links li a {
  display: block;
  padding: 0.82rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color var(--transition);
}

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

.mobile-nav-links .mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.8rem 1.5rem;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: none;
  text-decoration: none;
  transition: background var(--transition);
}

.mobile-nav-links .mobile-nav-cta:hover {
  background: var(--accent-dark);
  color: var(--white) !important;
}

/* ─── 10. MENU BACKDROP ──────────────────────────────────────── */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-backdrop.visible {
  visibility: visible;
  opacity: 1;
}

/* ─── 11. HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

@media (min-width: 768px) {
  .hero-bg {
    filter: brightness(0.82);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.44) 0%,
    rgba(0,0,0,0.26) 50%,
    rgba(0,0,0,0.58) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--navbar-h) + 2rem);
  padding-bottom: 4rem;
  max-width: 680px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ─── 12. ABOUT ──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  align-items: center;
}

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

.about-text .section-title {
  max-width: 520px;
}

.about-text > p {
  font-size: 1.02rem;
  line-height: 1.78;
}

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

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s ease;
}

.about-image img:hover {
  transform: scale(1.025);
}

/* ─── 13. FACILITY CHIPS ─────────────────────────────────────── */
.facilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.facility-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.38rem 0.88rem;
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
  white-space: nowrap;
}

.facility-chip i {
  font-size: 0.78rem;
  color: var(--accent);
}

/* ─── 14. VILLAS / ROOMS ─────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 680px) {
  .rooms-grid {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  }
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
}

.room-card:hover {
  box-shadow: var(--shadow-lg);
}

/* ─── 15. CAROUSEL ───────────────────────────────────────────── */
.carousel {
  position: relative;
  overflow: hidden;
  background: #d1d5db;
  aspect-ratio: 4 / 3;
}

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

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

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  color: var(--text);
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.carousel-btn:hover {
  background: var(--white);
  color: var(--accent);
  box-shadow: var(--shadow-md);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

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

.carousel-dot.active,
.carousel-dot:hover {
  background: var(--white);
  transform: scale(1.25);
}

/* ─── 16. ROOM CARD BODY ─────────────────────────────────────── */
.room-view-details-row {
  padding: 0.6rem 1.2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
}

.villa-view-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  transition: color var(--transition);
}

.villa-view-link:hover {
  color: var(--accent-dark);
}

.room-info {
  padding: 1.2rem 1.25rem 0.75rem;
  flex: 1;
}

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

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

.room-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  margin-bottom: 0.9rem;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.87rem;
  color: var(--text-light);
}

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

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

.room-footer {
  padding: 0.9rem 1.25rem 1.2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
}

.btn-room-cta {
  width: 100%;
  justify-content: center;
}

/* ─── 17. MODAL ──────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  pointer-events: none;
}

.modal.open {
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.56);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: min(600px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.24);
  padding: 2rem;
}

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

.modal-close:hover {
  background: var(--accent-light);
  color: var(--accent);
}

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

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

.modal-room-desc {
  font-size: 0.96rem;
  color: var(--text-light);
  line-height: 1.72;
  margin-bottom: 1.2rem;
}

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

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

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

.modal-room-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* ─── 18. MEALS ──────────────────────────────────────────────── */
.meals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  align-items: center;
}

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

.meals-image {
  order: -1;
}

@media (min-width: 900px) {
  .meals-image {
    order: 0;
  }
}

.meals-text .section-title {
  max-width: 480px;
}

.meals-text > p {
  font-size: 1.01rem;
  line-height: 1.78;
  margin-bottom: 1.4rem;
}

.meal-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 1.4rem;
}

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

.meal-item > i {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meal-item h4 {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.22rem;
}

.meal-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.64;
  margin-bottom: 0;
}

.meal-notes {
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.85rem 1.1rem;
}

.meal-notes p {
  font-size: 0.87rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.meal-notes p:last-child {
  margin-bottom: 0;
}

.meals-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.meals-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s ease;
}

.meals-image img:hover {
  transform: scale(1.025);
}

/* ─── 19. ACTIVITIES ─────────────────────────────────────────── */
.activities-banner {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.25rem;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 6;
}

@media (max-width: 600px) {
  .activities-banner {
    aspect-ratio: 16 / 9;
  }
}

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

.activities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 600px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .activities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.activity-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.activity-card > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  display: block;
}

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

.activity-card-body h3 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

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

.activity-card-body p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.64;
  margin-bottom: 0;
}

/* ─── 20. TOUR BLOCKS ────────────────────────────────────────── */
.tour-blocks {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
  margin-bottom: 3.5rem;
}

.tour-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  align-items: center;
}

@media (min-width: 768px) {
  .tour-block {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .tour-block-reverse .tour-block-image {
    order: 2;
  }

  .tour-block-reverse .tour-block-body {
    order: 1;
  }
}

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

.tour-block-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

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

.tour-block-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.tour-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.28rem 0.78rem;
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tour-block-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.4vw, 1.42rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin: 0;
}

.tour-block-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.72;
  margin-bottom: 0;
}

.tour-block-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  padding-top: 0.2rem;
}

.tour-block-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.58rem;
  font-size: 0.89rem;
  color: var(--text-light);
  line-height: 1.5;
}

.tour-block-highlights li i {
  color: var(--accent);
  font-size: 0.78rem;
  margin-top: 0.22rem;
  flex-shrink: 0;
}

/* ─── 21. ON-SITE BLOCK ──────────────────────────────────────── */
.onsite-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

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

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

.onsite-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.onsite-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.48rem 1rem;
  background: var(--bg-alt);
  border-radius: 50px;
  font-size: 0.87rem;
  color: var(--text-light);
  font-weight: 500;
}

.onsite-item i {
  color: var(--accent);
  font-size: 0.83rem;
}

/* ─── 22. GETTING HERE ───────────────────────────────────────── */
.getting-here-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  align-items: start;
}

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

.getting-here-content h3 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1.6rem;
  margin-bottom: 0.55rem;
}

.getting-here-content h3:first-child {
  margin-top: 0;
}

.getting-here-content p {
  font-size: 0.96rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.travel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
  margin-top: 0.5rem;
  padding-left: 0.25rem;
}

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

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

/* ─── 23. GETTING HERE SIDEBAR ───────────────────────────────── */
.getting-here-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.location-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-sm);
  display: block;
}

.maps-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  padding: 0.68rem 1.1rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.maps-btn:hover {
  background: var(--accent-dark);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(194,65,12,0.32);
}

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

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

.travel-tips {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.05rem 1.1rem;
}

.travel-tips h4 {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.85rem;
}

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

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

.travel-tips-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.6;
}

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

/* ─── 24. REVIEWS ────────────────────────────────────────────── */
.reviews-section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background: var(--bg-alt);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.4rem;
  margin-top: 1.75rem;
}

.reviews-empty {
  grid-template-columns: 1fr;
}

.reviews-none {
  color: var(--text-muted);
  font-size: 0.93rem;
  font-style: italic;
  padding: 1.5rem 0;
  margin-bottom: 0;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.88rem;
}

.review-text {
  font-size: 0.91rem;
  color: var(--text-light);
  line-height: 1.64;
  font-style: italic;
  margin-bottom: 0;
}

.review-author {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}

.review-source {
  font-size: 0.77rem;
  color: var(--text-muted);
}

/* ─── 25. CONTACT SECTION ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  align-items: start;
}

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

/* ─── 26. FORM BANNERS ───────────────────────────────────────── */
.form-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.4rem;
  font-size: 0.91rem;
}

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

.form-banner strong {
  display: block;
  margin-bottom: 0.18rem;
}

.form-banner p {
  margin-bottom: 0;
  font-size: 0.87rem;
}

.form-banner-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #15803d;
}

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

.form-banner-error {
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #9a3412;
}

.form-banner-error i {
  color: var(--accent);
}

/* ─── 27. BOOKING FORM ───────────────────────────────────────── */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

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

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

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

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

.required-asterisk {
  color: var(--accent);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.62rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.94rem;
  color: var(--text);
  background: var(--white);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

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

.form-group input.has-error,
.form-group select.has-error,
.form-group textarea.has-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.62;
}

.form-reassurance {
  font-size: 0.81rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.2rem;
  margin-bottom: 0;
}

/* ─── 28. CONTACT INFO COLUMN ────────────────────────────────── */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 899px) {
  .contact-info-col {
    order: -1;
  }
}

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

.info-card-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.38rem;
  margin-bottom: 0.65rem;
}

.info-card-body p {
  font-size: 0.91rem;
  color: var(--text-light);
  line-height: 1.62;
  margin-bottom: 0.38rem;
}

.info-card-body p:last-child {
  margin-bottom: 0;
}

.info-card-meta {
  font-size: 0.81rem;
  color: var(--text-muted);
  font-style: italic;
}

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

.quick-facts-list li {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  font-size: 0.89rem;
  color: var(--text-light);
}

.quick-facts-list li i {
  color: var(--accent);
  width: 14px;
  text-align: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ─── 29. FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.footer-description {
  font-size: 0.88rem;
  color: var(--footer-text);
  line-height: 1.72;
  max-width: 320px;
  margin-bottom: 0.75rem;
}

.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}

.footer-location i {
  color: var(--accent);
  font-size: 0.78rem;
}

.footer-col-heading {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--footer-heading);
  margin-bottom: 1rem;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--footer-text);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
}

.footer-enquiry {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 1.4rem;
  transition: color var(--transition), gap var(--transition);
}

.footer-enquiry:hover {
  color: var(--accent-mid);
  gap: 0.65rem;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
}

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

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  text-align: center;
  margin-bottom: 0;
}

/* ─── 30. MOBILE OVERRIDES (< 768px) ─────────────────────────── */
@media (max-width: 767px) {
  .hero-content {
    max-width: 100%;
    padding-bottom: 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .tour-block-image img {
    aspect-ratio: 4 / 3;
  }

  .modal-box {
    padding: 1.5rem 1.25rem;
  }

  .modal-room-title {
    font-size: 1.3rem;
  }

  .onsite-block {
    padding: 1.25rem;
  }

  .travel-tips {
    padding: 0.9rem;
  }
}

/* ─── 31. SMALL MOBILE (< 480px) ────────────────────────────── */
@media (max-width: 479px) {
  .facilities-grid {
    gap: 0.4rem;
  }

  .facility-chip {
    font-size: 0.79rem;
    padding: 0.32rem 0.72rem;
  }

  .room-info {
    padding: 0.95rem 1rem 0.6rem;
  }

  .room-footer {
    padding: 0.75rem 1rem 1rem;
  }

  .room-view-details-row {
    padding: 0.5rem 1rem;
  }

  .info-card {
    padding: 0.85rem 0.95rem;
  }

  .modal-box {
    padding: 1.25rem 1rem;
    border-radius: var(--radius);
  }

  .btn {
    padding: 0.65rem 1.35rem;
    font-size: 0.91rem;
  }
}

/* ─── 32. TABLET ADJUSTMENTS (768–1023px) ────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-block {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .getting-here-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "img   img"
      "btn   map"
      "tips  tips";
    gap: 0.9rem;
  }

  .location-image  { grid-area: img; }
  .maps-btn        { grid-area: btn; align-self: start; }
  .map-embed-wrap  { grid-area: map; height: 100%; min-height: 160px; }
  .travel-tips     { grid-area: tips; }
}

/* ─── 33. FOCUS STYLES ────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── 34. SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* ─── 35. PRINT ───────────────────────────────────────────────── */
@media print {
  .navbar,
  .hamburger,
  .mobile-menu,
  .menu-backdrop,
  .carousel-btn,
  .modal,
  .form-banner,
  .booking-form,
  .footer-social {
    display: none !important;
  }

  .hero {
    min-height: 38vh;
    page-break-after: always;
  }

  .section,
  .section-alt {
    padding-block: 1.75rem;
    page-break-inside: avoid;
  }

  body {
    font-size: 12pt;
    color: #000;
  }
}

/* V25 AUDIT FIXES */
.logo-navbar { height: 80px; width: auto; padding: 0 !important; margin: 0 !important; object-fit: contain; }
.navbar:not(.scrolled) .logo-navbar { filter: brightness(0) invert(1); }
.navbar.scrolled .logo-navbar { filter: none !important; }

/* Lang switcher */
.x13-lang{display:flex;align-items:center;gap:0;margin-left:18px;background:rgba(255,255,255,.12);border-radius:999px;padding:.15rem;border:1px solid rgba(194,65,12,.5);flex-shrink:0}.x13-t{display:flex;align-items:center;justify-content:center;padding:.2rem .55rem;font-size:.875rem;font-weight:700;color:rgba(255,255,255,.7);text-decoration:none;border-radius:999px;transition:color .2s,background .2s;line-height:1}.x13-t:hover{color:#fff}.x13-t.x13-active{color:#fff;background:rgba(255,255,255,.22)}.navbar.scrolled .x13-lang{background:var(--bg-alt);border-color:rgba(194,65,12,.3)}.navbar.scrolled .x13-t{color:var(--text-muted)}.navbar.scrolled .x13-t:hover{color:var(--accent)}.navbar.scrolled .x13-t.x13-active{color:var(--text);background:rgba(194,65,12,.08)}@media(max-width:1023px){.x13-lang{display:none}}
.x21-lang{display:flex;align-items:center;gap:.25rem;margin-left:18px;flex-shrink:0}.x21-t{font-size:.9375rem;font-weight:700;text-decoration:none;color:rgba(255,255,255,.45);transition:color .2s;line-height:1}.x21-t:hover{color:rgba(255,255,255,.85)}.x21-t.x21-active{color:#fff}.x21-div{width:1px;height:12px;background:rgba(255,255,255,.3)}.navbar.scrolled .x21-t{color:var(--text-muted)}.navbar.scrolled .x21-t:hover{color:var(--accent)}.navbar.scrolled .x21-t.x21-active{color:var(--text)}.navbar.scrolled .x21-div{background:var(--border)}@media(max-width:1023px){.x21-lang{display:none}}
.x22-lang{display:flex;align-items:center;gap:.1rem;margin-left:18px;background:rgba(255,255,255,.1);border-radius:999px;padding:.15rem .25rem;flex-shrink:0}.x22-t{display:flex;align-items:center;justify-content:center;padding:.2rem .5rem;font-size:.875rem;font-weight:700;color:rgba(255,255,255,.45);text-decoration:none;border-radius:999px;transition:color .2s,background .2s;line-height:1}.x22-t:hover{color:rgba(255,255,255,.85)}.x22-t.x22-active{color:#fff;background:rgba(255,255,255,.2)}.navbar.scrolled .x22-lang{background:var(--bg-alt)}.navbar.scrolled .x22-t{color:var(--text-muted)}.navbar.scrolled .x22-t:hover{color:var(--accent)}.navbar.scrolled .x22-t.x22-active{color:var(--text);background:rgba(194,65,12,.08)}@media(max-width:1023px){.x22-lang{display:none}}
.xm11-lang{display:none;align-items:center;justify-content:center;gap:.15rem;margin-top:.15rem}.xm11-t{font-size:.6875rem;font-weight:700;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)}

/* 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:var(--text)!important}
  .nav-links{display:none!important}
  .hamburger{display:flex!important}
}

html{scroll-padding-top:calc(80px + 1rem)}
.carousel-dot{border:none;padding:0}

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

/* V25: Navbar minimum 125px padding */
.navbar, #navbar {
  padding-left: 125px !important;
  padding-right: 125px !important;
}
@media (max-width: 1023px) {
  .navbar, #navbar {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

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

/* V25: Font sizes */
.section-eyebrow, .info-card-eyebrow { font-size: 1.0625rem !important; }
.footer-brand { font-size: 2rem !important; }

/* V25: Tour blocks */
.tour-block { grid-template-columns: 1fr 1.4fr !important; }
.tour-block-image img { height: auto !important; aspect-ratio: unset !important; }
@media(max-width:768px){ .tour-block { grid-template-columns: 1fr !important; } }

/* V25: Desktop font floor 0.9375rem + mobile floor 1rem */
.section-eyebrow { font-size: 1.0625rem !important; }
.nav-links a { font-size: 1.0625rem !important; }
.facility-chip { font-size: 0.9375rem !important; }
.villa-view-link { font-size: 0.9375rem !important; }
.room-meta { font-size: 0.9375rem !important; }
.room-features li { font-size: 0.9375rem !important; }
.room-desc { font-size: 1rem !important; }
.modal-room-meta { font-size: 0.9375rem !important; }
.modal-room-specs li { font-size: 1rem !important; }
.meal-item p { font-size: 1rem !important; }
.meal-notes p { font-size: 1rem !important; }
.activity-card-body p { font-size: 1rem !important; }
.tour-badge { font-size: 0.9375rem !important; }
.tour-block-highlights li { font-size: 1rem !important; }
.onsite-intro { font-size: 1rem !important; }
.onsite-item { font-size: 1rem !important; }
.travel-list li { font-size: 1rem !important; }
.maps-btn { font-size: 1rem !important; }
.travel-tips h4 { font-size: 1rem !important; }
.travel-tips-list li { font-size: 1rem !important; }
.review-text { font-size: 1rem !important; }
.review-author { font-size: 0.9375rem !important; }
.review-source { font-size: 0.9375rem !important; }
.review-stars { font-size: 1rem !important; }
.form-banner { font-size: 1rem !important; }
.form-banner p { font-size: 1rem !important; }
.form-group label { font-size: 1rem !important; }
.form-reassurance { font-size: 0.9375rem !important; }
.info-card-eyebrow { font-size: 1.0625rem !important; }
.info-card-body p { font-size: 1rem !important; }
.info-card-meta { font-size: 0.9375rem !important; }
.quick-facts-list li { font-size: 1rem !important; }
.footer-description { font-size: 1rem !important; }
.footer-location { font-size: 0.9375rem !important; }
.footer-col-heading { font-size: 1.125rem !important; }
.footer-links a { font-size: 1rem !important; }
.footer-social a { font-size: 1rem !important; }
.footer-copyright { font-size: 0.9375rem !important; }
.footer-brand { font-size: 2rem !important; }

/* Mobile comprehensive floor */
@media (max-width: 767px) {
  body { font-size: 1rem !important; }
  p, li, td, th, dd, dt,
  label, input, select, textarea,
  .section-intro, .section-eyebrow,
  .villa-desc, .room-desc, .villa-view-link,
  .room-features li, .room-meta,
  .modal-room-specs li, .modal-room-meta,
  .activity-card-body p, .onsite-item,
  .tour-block-highlights li, .tour-badge,
  .meal-item p, .meal-notes p,
  .travel-list li, .travel-tips-list li, .maps-btn,
  .review-text, .review-author, .review-stars,
  .form-banner, .form-banner p, .form-group label,
  .info-card-body p, .info-card-meta,
  .quick-facts-list li,
  .footer-description, .footer-location,
  .footer-links a, .footer-col-heading,
  .footer-social a, .btn {
    font-size: 1rem !important;
  }
  .footer-copyright, .review-source, .form-reassurance {
    font-size: 0.9375rem !important;
  }
}

/* Fix: Activities banner original size centered */
.activities-banner img {
  width: auto !important;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Fix: Travel tips 3-column full width */
.travel-tips-full { margin-top: 2rem; }
.travel-tips-full .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-full .travel-tips-list { grid-template-columns: 1fr; }
}

/* Fix: Footer divider + copyright full width centered */
.footer-divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--footer-line, rgba(255,255,255,0.15));
  margin: 2rem 0 1rem;
}
.footer-copyright {
  text-align: center !important;
  width: 100%;
}

/* Fix: Form rows always 2-column */
.form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1.25rem !important;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr !important; }
}

/* Fix: Activities banner left-aligned, original size */
.activities-banner {
  text-align: left !important;
}
.activities-banner img {
  width: auto !important;
  max-width: 100%;
  margin: 0 !important;
}

/* Fix: Travel tips same width as section (inside container) */
.travel-tips-full {
  max-width: var(--max-w, 1200px);
  margin-left: auto;
  margin-right: auto;
}

/* Fix: Mobile font floor — stronger selectors */
@media (max-width: 480px) {
  body, p, li, td, th, dd, dt,
  label, input, select, textarea,
  .section-intro, .section-eyebrow,
  .villa-desc, .room-desc, .villa-view-link,
  .room-features li, .room-meta,
  .modal-room-specs li,
  .activity-card-body p, .onsite-item,
  .tour-block-highlights li,
  .meal-item p, .meal-notes p,
  .travel-list li, .travel-tips-list li,
  .review-text, .review-author,
  .form-banner, .form-banner p, .form-group label,
  .info-card-body p, .info-card-meta,
  .quick-facts-list li,
  .footer-description, .footer-location,
  .footer-links a, .footer-col-heading,
  .btn, .nav-cta, .mobile-nav-cta {
    font-size: 1rem !important;
  }
}

/* Single room: horizontal layout — carousel left, info right */
.room-card-horizontal {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2rem;
  align-items: start;
}
.room-card-left {
  display: flex;
  flex-direction: column;
}
.room-card-left .carousel {
  border-radius: var(--radius, 12px);
  overflow: hidden;
}
.room-card-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.room-card-right .room-footer {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .room-card-horizontal {
    grid-template-columns: 1fr !important;
  }
}

/* OVERRIDE: Room card horizontal — full section width */
.room-card-horizontal {
  grid-template-columns: 1fr 1fr !important;
  max-width: 100% !important;
  width: 100% !important;
}
.room-card-left .carousel {
  width: 100%;
  aspect-ratio: 4/3;
}
.room-card-left .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.villas-grid {
  display: block !important;
}
.room-card-horizontal .room-card-right .room-info {
  padding: 0;
}
.room-card-horizontal .room-features li {
  white-space: nowrap;
}

/* NUCLEAR MOBILE FONT FLOOR: 1rem minimum for ALL text */
@media (max-width: 767px) {
  * {
    font-size: revert;
  }
  body,
  p, li, td, th, dd, dt, span, a, label,
  input, select, textarea, button,
  h4, h5, h6,
  .section-intro, .section-eyebrow,
  .room-title, .room-meta, .room-desc,
  .room-features li, .villa-view-link,
  .facility-chip,
  .modal-room-meta, .modal-room-specs li, .modal-room-desc,
  .activity-card-body p, .activity-icon,
  .onsite-item, .onsite-intro,
  .tour-badge, .tour-block-desc, .tour-block-highlights li,
  .meal-item p, .meal-notes p,
  .travel-list li, .travel-tips-list li, .travel-tips h4,
  .maps-btn,
  .review-text, .review-author, .review-stars, .review-source, .reviews-none,
  .form-banner, .form-banner p, .form-group label,
  .form-reassurance,
  .info-card-eyebrow, .info-card-body p, .info-card-meta,
  .quick-facts-list li,
  .footer-description, .footer-location,
  .footer-col-heading, .footer-links a,
  .footer-social a, .footer-enquiry,
  .nav-cta, .mobile-nav-cta, .btn,
  .room-card-right *, .room-card-left *:not(i) {
    font-size: 1rem !important;
  }
  /* Exceptions at 0.9375rem per audit */
  .footer-copyright {
    font-size: 0.9375rem !important;
  }
  /* Headings keep their size */
  h1 { font-size: clamp(1.75rem, 7vw, 2.5rem) !important; }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem) !important; }
  h3 { font-size: 1.25rem !important; }
  /* Icons keep small size */
  i.fas, i.fa-solid, i.fa-regular, i.fa-brands, i.fab {
    font-size: inherit !important;
  }
}

/* OVERRIDE: rooms-grid — single room uses full container width */
.rooms-grid {
  display: block !important;
  max-width: 100% !important;
}
.room-card-horizontal {
  width: 100% !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2rem !important;
}
@media (max-width: 768px) {
  .room-card-horizontal {
    grid-template-columns: 1fr !important;
  }
}

/* Fix: Room card right column — padding top + remove border above button */
.room-card-right {
  padding-top: 1.5rem !important;
}
.room-card-right .room-footer {
  border-top: none !important;
  padding-top: 0 !important;
}

/* Fix: Mobile room card — padding left/right for text */
@media (max-width: 768px) {
  .room-card-right {
    padding: 0 1.25rem 1.25rem !important;
  }
  .room-card-right .room-info,
  .room-card-right .room-footer {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Fix: Mobile lang switcher — keep audit size 0.6875rem, not 1rem */
@media (max-width: 767px) {
  .xm11-t, .xm12-t, .xm14-t {
    font-size: 0.6875rem !important;
  }
}
