/* ============================================================
   LUXE NOOSA — Stylesheet
   ✏️ Key design variables are at the top under :root
   ============================================================ */

/* ============================================================
   CSS VARIABLES — Edit these to change colours/fonts sitewide
   ============================================================ */
:root {
  /* Colours */
  --color-dark:       #0e1a16;      /* Deep dark green-black (navs, dark sections) */
  --color-dark-mid:   #1b2e26;      /* Slightly lighter dark */
  --color-gold:       #c4922a;      /* Warm gold accent */
  --color-gold-light: #d9ac56;      /* Lighter gold for hover states */
  --color-cream:      #f7f3ec;      /* Warm off-white background */
  --color-cream-dark: #ede7db;      /* Slightly darker cream */
  --color-body:       #2a2e28;      /* Main body text */
  --color-muted:      #6b7c72;      /* Secondary/muted text */
  --color-white:      #ffffff;
  --color-border:     rgba(196,146,42,0.2); /* Subtle gold border */

  /* Typography */
  --font-display:     'Cormorant Garamond', Georgia, serif;
  --font-body:        'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-gap:      5.5rem;
  --container-max:    1200px;
  --container-pad:    clamp(1.25rem, 5vw, 2.5rem);

  /* Transitions */
  --ease-out:         cubic-bezier(0.22, 1, 0.36, 1);
  --transition:       0.35s var(--ease-out);
}

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-body);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-gap) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--color-dark);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-top: 1rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9em 2.4em;
  border-radius: 0;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
}

.btn-outline {
  background: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
}
.btn-outline:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn-nav {
  background: var(--color-gold);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
  font-size: 0.65rem;
  padding: 0.7em 1.6em;
}
.btn-nav:hover {
  background: var(--color-gold-light);
}

.btn-large {
  font-size: 0.78rem;
  padding: 1.1em 3em;
}

.btn-sm {
  font-size: 0.65rem;
  padding: 0.7em 1.6em;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.45s ease, padding 0.45s ease, backdrop-filter 0.45s ease;
}

.navbar.scrolled {
  background: rgba(14, 26, 22, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.9rem 0;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.12em;
  margin-right: auto;
}
.logo-luxe {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.22em;
}
.logo-noosa {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--color-white);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-white);
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--color-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-close {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 1.25rem;
  transition: color 0.25s;
}
.mobile-close:hover { color: var(--color-white); }

.mobile-menu ul {
  text-align: center;
}
.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.25rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0;
  transition: color 0.25s;
  letter-spacing: 0.04em;
}
.mobile-link:hover {
  color: var(--color-white);
}
.mobile-book {
  color: var(--color-gold) !important;
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  margin-top: 1.5rem;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 18, 14, 0.35) 0%,
    rgba(10, 18, 14, 0.55) 60%,
    rgba(10, 18, 14, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: var(--container-pad);
  max-width: 900px;
  animation: heroFadeUp 1.1s 0.3s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin: 0 auto 2rem;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}
.hero-rating .stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.hero-rating .rating-num {
  font-weight: 500;
}
.hero-rating .rating-badge {
  background: rgba(196,146,42,0.25);
  border: 1px solid rgba(196,146,42,0.6);
  padding: 0.2em 0.7em;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.rating-sep { opacity: 0.5; }

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 2;
  animation: heroFadeUp 1.5s 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--color-dark);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: var(--color-white);
}
.stat-item:last-child {
  border-right: none;
}

.stat-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 0.25rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-white);
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--color-cream);
}

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

.about-text .section-title {
  margin-bottom: 2rem;
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-body);
  margin-bottom: 1.25rem;
}

.about-body {
  font-size: 1.0rem;
  line-height: 1.85;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

.about-text .btn {
  margin-top: 1.5rem;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  grid-template-rows: 1fr 0.45fr;
  gap: 0.75rem;
  height: 520px;
}

.about-img-main {
  grid-row: 1 / 3;
  overflow: hidden;
  border-radius: 2px;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-secondary {
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  border-radius: 2px;
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.about-img-secondary:hover img { transform: scale(1.04); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--color-dark);
  padding-bottom: 5rem;
}
.gallery .section-header {
  margin-bottom: 2.5rem;
}
.gallery .section-eyebrow { color: var(--color-gold); }
.gallery .section-title   { color: var(--color-white); }

/* Airbnb-style grid: big left + 2×2 right */
.gallery-airbnb {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 500px;
  gap: 8px;
  padding: 0 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.ga-main {
  cursor: pointer;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}
.ga-main img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.6s ease; display: block;
}
.ga-main:hover img { transform: scale(1.03); }

.ga-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}

.ga-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}
.ga-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.6s ease; display: block;
}
.ga-item:hover img { transform: scale(1.05); }

/* "Explore All Photos" last tile */
.ga-explore img { filter: brightness(0.6); transition: filter 0.4s, transform 0.6s ease; }
.ga-explore:hover img { filter: brightness(0.45); transform: scale(1.05); }
.ga-explore-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.6rem; color: #fff; pointer-events: none;
}
.ga-explore-overlay svg {
  width: 28px; height: 28px; fill: #fff; opacity: 0.95;
}
.ga-explore-overlay span {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
}

/* Mobile */
@media (max-width: 900px) {
  .gallery-airbnb {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 6px;
  }
  .ga-main { height: 300px; }
  .ga-grid { grid-template-rows: 160px 160px; }
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities {
  background: var(--color-cream);
}

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

.amenity-card {
  background: var(--color-white);
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  border-radius: 2px;
}
.amenity-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
  border-color: rgba(196,146,42,0.45);
}

.amenity-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.85rem;
}
.amenity-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.amenity-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--color-muted);
}

/* ============================================================
   BEDROOMS
   ============================================================ */
.bedrooms {
  background: var(--color-dark);
}
.bedrooms .section-eyebrow {
  color: var(--color-gold);
}
.bedrooms .section-title {
  color: var(--color-white);
}
.bedrooms .section-subtitle {
  color: rgba(255,255,255,0.55);
}

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

.bedroom-card {
  background: var(--color-dark-mid);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: border-color 0.3s;
  border-radius: 2px;
}
.bedroom-card:hover {
  border-color: rgba(196,146,42,0.4);
}

.bedroom-img {
  height: 220px;
  overflow: hidden;
}
.bedroom-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.bedroom-card:hover .bedroom-img img {
  transform: scale(1.05);
}

.bedroom-info {
  padding: 1.5rem;
  position: relative;
}

.bedroom-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(196,146,42,0.15);
  line-height: 1;
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
}

.bedroom-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 0.3rem;
}

.bedroom-bed {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.bedroom-info p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--color-white);
}

.reviews-rating-bar {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 700px;
  margin: 0 auto 4.5rem;
  padding: 3rem;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 2px;
}

.overall-rating {
  text-align: center;
  border-right: 1px solid var(--color-border);
  padding-right: 3rem;
}

.big-rating {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-dark);
  display: block;
}

.stars-large {
  color: var(--color-gold);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  margin: 0.5rem 0;
}

.review-summary-label {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 400;
  margin-top: 0.5rem;
}

.review-summary-sub {
  font-size: 0.8rem;
  color: var(--color-gold);
  margin-top: 0.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rating-cat {
  font-size: 0.88rem;
  color: var(--color-body);
  min-width: 110px;
}

.rating-bar-wrap {
  flex: 1;
  height: 3px;
  background: var(--color-cream-dark);
  border-radius: 2px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--color-gold);
  border-radius: 2px;
  transition: width 1.2s var(--ease-out);
}

.rating-val {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-dark);
  min-width: 2.5ch;
  text-align: right;
}

/* ── Reviews Carousel ──────────────────────────────────────── */
.reviews-carousel {
  position: relative;
  margin-bottom: 3rem;
  overflow: hidden;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(6, calc(33.333% - 1rem));
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-card {
  border: 1px solid var(--color-border);
  padding: 2rem;
  background: var(--color-cream);
  transition: box-shadow 0.3s, transform 0.3s;
  border-radius: 2px;
  min-width: 0;
}
.review-card:hover {
  box-shadow: 0 6px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* Nav row */
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.reviews-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.reviews-btn:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
}
.reviews-btn:hover svg { stroke: #fff; }
.reviews-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-body);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reviews-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.reviews-dots {
  display: flex;
  gap: 0.5rem;
}
.reviews-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.reviews-dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .reviews-track {
    grid-template-columns: repeat(6, calc(50% - 0.75rem));
  }
}
@media (max-width: 600px) {
  .reviews-track {
    grid-template-columns: repeat(6, 100%);
    gap: 1rem;
  }
}

.review-stars {
  color: var(--color-gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-body);
  margin-bottom: 1.5rem;
  quotes: none;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1.1rem;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  flex-shrink: 0;
}

.review-author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
}
.review-author-info span {
  font-size: 0.82rem;
  color: var(--color-muted);
}

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

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  background: var(--color-cream);
}

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

.location-text p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.location-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--color-border);
}
.location-item:last-child {
  border-bottom: none;
}

.loc-time {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-gold);
  min-width: 60px;
  flex-shrink: 0;
}

.loc-desc {
  font-size: 0.98rem;
  color: var(--color-body);
}

.location-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.location-map-frame {
  width: 100%;
  height: 470px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  position: relative;
}



.location-map-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--color-dark);
  color: #fff;
  padding: 1.1rem 1.4rem;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}
.location-map-badge:hover {
  background: #1a2e27;
}

.location-map-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-map-badge strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.2rem;
}

.location-map-badge span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}



@media (max-width: 768px) {
  .location-map-frame { height: 300px; }
}

/* ============================================================
   BOOK CTA
   ============================================================ */
.book-cta {
  position: relative;
  padding: 9rem 0;
  text-align: center;
  overflow: hidden;
}

.book-cta-bg {
  position: absolute;
  inset: 0;
}
.book-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.book-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,18,14,0.88) 0%, rgba(10,18,14,0.72) 100%);
}

.book-cta .container {
  position: relative;
  z-index: 2;
}

.book-cta-content {
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-white);
}

.cta-eyebrow {
  color: var(--color-gold) !important;
  margin-bottom: 1rem;
}

.book-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.book-cta-content > p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.75rem;
}

.book-cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Platform booking buttons grid */
.book-platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.book-platform-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.25rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.book-platform-btn:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.book-platform-primary {
  background: var(--color-gold) !important;
  border-color: var(--color-gold) !important;
  color: #fff !important;
}

.book-platform-primary:hover {
  background: #b5841f !important;
  border-color: #b5841f !important;
}

.book-platform-direct {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(196,146,42,0.6) !important;
  color: var(--color-gold) !important;
}

.book-platform-direct:hover {
  background: rgba(196,146,42,0.2) !important;
  border-color: var(--color-gold) !important;
  transform: translateY(-2px);
}

.book-platform-direct .platform-name {
  color: var(--color-gold) !important;
}

.platform-name {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.platform-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  opacity: 0.75;
  letter-spacing: 0.02em;
}

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

.book-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.book-trust [data-rating="trust-overall"] {
  color: var(--color-gold);
  font-weight: 600;
}
.trust-sep { opacity: 0.4; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark);
  padding: 5rem 0 2.5rem;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.75;
}

.footer-links h4, .footer-book h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: start;
}
.footer-links a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s;
  white-space: nowrap;
}
.footer-links a:hover {
  color: var(--color-white);
}

.footer-book p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-book strong {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.footer-book .btn-outline {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
  margin-bottom: 1.25rem;
}
.footer-book .btn-outline:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.footer-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.badge {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4em 0.8em;
  border: 1px solid rgba(196,146,42,0.4);
  color: var(--color-gold);
  border-radius: 2px;
  text-align: center;
}

.footer-book-btn {
  display: block;
  text-align: center;
  width: 100%;
}

.footer-bottom {
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.footer-seo {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
}
.footer-seo a {
  color: rgba(255,255,255,0.3);
  transition: color 0.25s;
}
.footer-seo a:hover {
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
[data-animate="fade-right"] {
  transform: translateX(-28px);
}
[data-animate="fade-left"] {
  transform: translateX(28px);
}
[data-animate].in-view {
  opacity: 1;
  transform: translate(0);
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-gap: 4rem; }

  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .bedrooms-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid   { grid-template-rows: 260px 220px; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-gap: 3rem; }

  /* Nav */
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-cta { flex-direction: column; }
  .hero-scroll { display: none; }

  /* Stats — 3 cols x 2 rows */
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4),
  .stat-item:nth-child(5),
  .stat-item:nth-child(6) { border-top: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(6) { border-right: none; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-images { height: 320px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px 180px;
  }
  .gallery-item.gallery-large {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  /* Amenities */
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  /* Bedrooms */
  .bedrooms-grid { grid-template-columns: 1fr 1fr; }

  /* Reviews */
  .reviews-rating-bar {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .overall-rating {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-right: 0;
    padding-bottom: 2rem;
  }
  

  /* Location */
  .location-grid { grid-template-columns: 1fr; gap: 3rem; }

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

/* ============================================================
   RESPONSIVE — Small Mobile (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .bedrooms-grid  { grid-template-columns: 1fr; }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item { border-right: 1px solid rgba(255,255,255,0.08) !important; border-top: none !important; }
  .stat-item:nth-child(even) { border-right: none !important; }
  .stat-item { border-top: 1px solid rgba(255,255,255,0.08) !important; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-top: none !important; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 180px 180px 180px 180px;
  }
  .gallery-item.gallery-large { grid-column: 1; grid-row: 1; }

  .rating-cat { min-width: 80px; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .navbar, .hero-scroll, .mobile-menu, .book-cta { display: none; }
  .hero { height: auto; padding: 3rem 0; }
  .hero-content { color: #000; }
  .section { break-inside: avoid; }
}


/* ============================================================
   BATHROOM FEATURE
   ============================================================ */
.bath-feature {
  background: var(--color-white);
}

.bath-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.bath-images {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bath-img-main {
  overflow: hidden;
  border-radius: 2px;
  height: 420px;
}
.bath-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.bath-img-main:hover img { transform: scale(1.04); }

.bath-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.bath-img-sm {
  overflow: hidden;
  border-radius: 2px;
  height: 200px;
}
.bath-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease-out);
}
.bath-img-sm:hover img { transform: scale(1.05); }

.bath-text .section-title {
  margin-bottom: 1.75rem;
}

.bath-amenities {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.bath-amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--color-body);
}
.bath-amenity-item span {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.97rem;
}

/* ============================================================
   GAMES ROOM
   ============================================================ */
.games {
  background: var(--color-cream);
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.games-images {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  height: 520px;
  align-items: stretch;
}

.games-img-main {
  flex: 2 1 0;
  overflow: hidden;
  border-radius: 12px;
}
.games-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.games-img-main:hover img { transform: scale(1.02); }

.games-img-sm {
  flex: 1 1 0;
  overflow: hidden;
  border-radius: 12px;
}
.games-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.games-img-sm:hover img { transform: scale(1.05); }

.games-text .section-title {
  margin-bottom: 1.5rem;
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1024px) {
  .gallery-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-2 .gallery-item { height: 200px; }
  .bath-grid { grid-template-columns: 1fr; gap: 3rem; }
  .games-grid { grid-template-columns: 1fr; gap: 3rem; }
  .games-images { height: 360px; }
}

@media (max-width: 768px) {
  .gallery-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .bath-img-main { height: 300px; }
  .bath-img-sm { height: 150px; }
  .games-images {
    grid-template-columns: 1fr;
    height: auto;
  }
  .games-img-main { height: 280px; }
  .games-img-sm { height: 200px; }
}

/* ============================================================
   OUTDOOR ENTERTAINING
   ============================================================ */
.outdoor {
  background: var(--color-dark);
  padding-bottom: 5rem;
}
.outdoor .section-header {
  padding-bottom: 1rem;
}
.outdoor .section-eyebrow { color: var(--color-gold); }
.outdoor .section-title { color: var(--color-white); }

.outdoor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 360px 360px;
  gap: 8px;
  padding: 0 1rem;
  max-width: 1400px;
  margin: 2rem auto 0;
}

.outdoor-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.outdoor-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-out);
  display: block;
}
.outdoor-item:hover img { transform: scale(1.04); }
.outdoor-item.outdoor-tall { grid-row: auto; }
.outdoor-right { display: contents; }
.outdoor-right .outdoor-item { border-radius: 14px; }
.outdoor-caption { display: none; }

@media (max-width: 900px) {
  .outdoor-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 6px;
  }
  .outdoor-item { height: 260px; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact {
  background: var(--color-dark);
}
.contact .section-eyebrow { color: var(--color-gold); }
.contact .section-title   { color: var(--color-white); }
.contact .about-body      { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }

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

/* Left column details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.96rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
.contact-detail-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact .btn-outline {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}
.contact .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}

/* Form card */
.contact-form-wrap {
  background: var(--color-cream);
  padding: 2.75rem;
  border-radius: 2px;
}

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

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

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

.form-group label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-body);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--color-body);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 0.85em 1.1em;
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(42,46,40,0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(196,146,42,0.12);
}

/* Date input styling */
.form-group input[type="date"] {
  cursor: pointer;
  color: var(--color-body);
}
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
}

/* Select arrow */
.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 d='M1 1l5 5 5-5' stroke='%23c4922a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1em center;
  padding-right: 2.5em;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

/* Submit button */
.btn-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--color-gold);
  color: var(--color-white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.1em 2.5em;
  width: 100%;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 0.5rem;
}
.btn-form-submit svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-form-submit:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
}
.btn-form-submit:active {
  transform: translateY(0);
}

/* Honeypot — always hidden */
.hidden-field {
  display: none !important;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

/* Success message */
.form-success {
  display: none;
  align-items: center;
  gap: 1rem;
  background: rgba(196,146,42,0.1);
  border: 1px solid rgba(196,146,42,0.4);
  padding: 1.25rem 1.5rem;
  border-radius: 2px;
  margin-top: 0.5rem;
}
.form-success.visible {
  display: flex;
}
.form-success svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.form-success strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-dark);
  margin-bottom: 0.2rem;
}
.form-success p {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.75rem; }
}

/* ============================================================
   HERO VIDEO
   ============================================================ */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Transparent overlay that blocks all clicks on the video */
.hero-video-blocker {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: default;
}

/* Fallback image — always visible as base layer, video fades in on top */
.hero-img-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 1;
}

/* Video plays on all screen sizes */

/* Smooth fade-in when video loads */
.hero-video.loaded {
  animation: videoFadeIn 1.2s ease forwards;
}
@keyframes videoFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  background: var(--color-cream);
}

/* ── Explore / Things To Do ───────────────────────────────── */
.explore {
  background: #ffffff;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
  text-align: center;
}

.explore-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 2.5rem 0 2rem;
}

.explore-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  border: 1px solid var(--color-border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.explore-tab svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.explore-tab:hover { border-color: var(--color-dark); color: var(--color-dark); }
.explore-tab.active { background: var(--color-dark); border-color: var(--color-dark); color: #fff; }
.explore-tab.active svg { stroke: var(--color-gold); }

.explore-panel {
  border: 1px solid var(--color-border);
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
}

.explore-pane {
  display: flex;
  min-height: 340px;
}
.explore-pane[hidden] { display: none; }

/* ── Sidebar ── */
.explore-sidebar {
  width: 230px;
  flex-shrink: 0;
  background: #0e1a16;
  background-image: radial-gradient(ellipse at bottom right, rgba(196,146,42,0.18) 0%, transparent 65%);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(196,146,42,0.12);
}

.explore-count {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
  margin-bottom: 1.5rem;
}

.explore-icon-wrap {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(196,146,42,0.15);
  border: 1px solid rgba(196,146,42,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.explore-icon-wrap svg {
  width: 20px; height: 20px;
  stroke: var(--color-gold); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.explore-sidebar h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}
.explore-sidebar p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.48);
  margin: 0 0 auto;
}

.explore-sidebar-line {
  width: 32px;
  height: 1px;
  background: rgba(196,146,42,0.4);
  margin-top: 2rem;
}

/* ── List ── */
.explore-list {
  flex: 1;
  list-style: none;
  margin: 0; padding: 0;
  background: var(--color-cream);
}
.explore-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.05rem 2rem;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.15s;
}
.explore-list li:last-child { border-bottom: none; }
.explore-list li:hover { background: var(--color-cream); }

.explore-place { display: flex; flex-direction: column; gap: 0.18rem; }
.explore-place strong { font-size: 0.9rem; font-weight: 500; color: var(--color-dark); }
.explore-place span { font-size: 0.78rem; color: var(--color-muted); }

.explore-dist {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .explore-pane { flex-direction: column; }
  .explore-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 1rem;
    padding: 1.25rem 1.5rem;
    background-image: none;
  }
  .explore-count { display: none; }
  .explore-icon-wrap { margin: 0; width: 36px; height: 36px; }
  .explore-icon-wrap svg { width: 16px; height: 16px; }
  .explore-sidebar h3 { font-size: 1.1rem; margin: 0; flex: 1; }
  .explore-sidebar p, .explore-sidebar-line { display: none; }
  .explore-list li { padding: 0.85rem 1.25rem; gap: 0.75rem; }
  .explore-tabs { gap: 0.35rem; }
  .explore-tab { font-size: 0.7rem; padding: 0.4rem 0.75rem; }
}

.faq-grid {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:nth-child(odd) {
  border-right: 1px solid var(--color-border);
  padding-right: 2rem;
}
.faq-item:nth-child(even) {
  padding-left: 2rem;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-family: var(--font-body);
  font-size: 1.0rem;
  font-weight: 500;
  color: var(--color-dark);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--color-gold); }

.faq-icon {
  width: 18px;
  height: 18px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 3px;
  transition: transform 0.3s var(--ease-out);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-answer.open {
  max-height: 300px;
}
.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-item:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
  .faq-item:nth-child(even) {
    padding-left: 0;
  }
}

/* ============================================================
   ABOUT — CLEAN REDESIGN
   ============================================================ */
.about {
  background: var(--color-cream);
}

.about-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 4rem;
  gap: 5rem;
  align-items: center;
}

/* Left text column */
.about-panel {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.about-panel .section-eyebrow {
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}
.about-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-gold);
}

.about-panel .about-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-body);
  font-weight: 300;
}
.about-panel .about-body {
  font-size: 1.0rem;
  line-height: 1.75;
  color: var(--color-muted);
  font-weight: 300;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 2em;
  border-radius: 2px;
  align-self: flex-start;
  margin-top: 0.5rem;
  transition: background 0.3s, transform 0.2s;
}
.btn-gold:hover {
  background: var(--color-gold);
  transform: translateY(-1px);
}

/* Right image pair — one tall, one square stacked */
.about-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 300px 200px;
  gap: 12px;
}

.mosaic-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-out);
  display: block;
}
.mosaic-item:hover img {
  transform: scale(1.04);
}
.mosaic-tall {
  grid-row: 1 / 3;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-editorial { padding: 4rem 2.5rem; gap: 3rem; }
}
@media (max-width: 768px) {
  .about-editorial {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem;
    gap: 2.5rem;
  }
  .about-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 150px;
    gap: 8px;
  }
  .mosaic-tall { grid-row: 1 / 3; }
}



/* ============================================================
   LOGO WORDMARK
   ============================================================ */
.logo-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
  text-decoration: none;
}
.logo-luxe {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.28em;
  line-height: 1;
}
.logo-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.55;
  margin: 3px 0;
}
.logo-noosa {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  line-height: 1;
}
/* Footer variant — slightly larger */
.logo-wordmark-footer .logo-luxe  { font-size: 1.9rem; }
.logo-wordmark-footer .logo-noosa { font-size: 0.6rem; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,16,12,0.97);
  cursor: zoom-out;
}
.lightbox-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 88vw;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  display: block;
}
.lightbox-counter {
  margin-top: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  border-radius: 50%;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.18); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
  width: 20px; height: 20px;
  stroke: #fff; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.lightbox-thumbs {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  gap: 5px;
  padding: 1rem 2rem 1.25rem;
  overflow-x: auto;
  justify-content: center;
  background: linear-gradient(transparent, rgba(8,16,12,0.85));
  scrollbar-width: none;
}
.lightbox-thumbs::-webkit-scrollbar { display: none; }
.lightbox-thumb {
  width: 62px; height: 46px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.4;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}
.lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lightbox-thumb.active,
.lightbox-thumb:hover { opacity: 1; border-color: var(--color-gold); }
@media (max-width: 600px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; }
  .lightbox-thumb { width: 48px; height: 36px; }
}

/* Footer links — 2 columns */
.footer-links-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1.5rem;
  list-style: none;
  padding: 0; margin: 0;
}

/* Games room — stacked pair of small images */
.games-img-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.games-img-double img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 4px;
  display: block;
}

/* ============================================================
   MOBILE OVERHAUL — Comprehensive fixes ≤ 768px
   ============================================================ */
@media (max-width: 768px) {

  /* ── General alignment ── */
  .section-header { text-align: center; }
  .section-title  { text-align: center; }
  .section-eyebrow { text-align: center; }
  .section-subtitle { text-align: center; }

  /* ── Location / Map ── */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .location-text { text-align: left; }
  .location-map-frame { height: 320px; }
  .location-map-wrap { width: 100%; }
  #luxeMap { height: 320px !important; }

  /* ── Explore / Things To Do ── */
  .explore-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    margin: 1.5rem 0 1.25rem;
  }
  .explore-tab {
    justify-content: center;
    font-size: 0.7rem;
    padding: 0.5rem 0.5rem;
    border-radius: 8px;
  }
  .explore-tab svg { display: none; }

  .explore-pane {
    flex-direction: column;
  }
  .explore-sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
  }
  .explore-count { display: none; }
  .explore-icon-wrap { width: 36px; height: 36px; flex-shrink: 0; margin: 0; }
  .explore-icon-wrap svg { width: 16px; height: 16px; }
  .explore-sidebar h3 { font-size: 1rem; margin: 0; flex: 1; }
  .explore-sidebar p { display: none; }

  .explore-list li {
    padding: 0.85rem 1rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .explore-place strong { font-size: 0.85rem; }
  .explore-place span   { font-size: 0.75rem; }
  .explore-dist { font-size: 0.68rem; }

  /* ── Recreation / Games ── */
  .games-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .games-images {
    flex-direction: column;
    height: auto;
    gap: 0.75rem;
  }
  .games-img-main { height: 260px; flex: none; }
  .games-img-sm   { height: 200px; flex: none; }

  /* ── Reviews carousel ── */
  .reviews-rating-bar {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .overall-rating {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-right: 0;
    padding-bottom: 2rem;
    text-align: center;
  }

  /* ── Book platforms ── */
  .book-platforms { grid-template-columns: 1fr 1fr !important; gap: 0.75rem !important; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links-2col { grid-template-columns: 1fr; }
}

/* ── Extra small ≤ 480px ── */
@media (max-width: 480px) {
  .explore-tabs { grid-template-columns: 1fr 1fr; }
  .book-platforms { grid-template-columns: 1fr !important; }
  .location-map-frame { height: 260px; }
  #luxeMap { height: 260px !important; }
  .games-img-main { height: 220px; }
  .games-img-sm   { height: 160px; }
}

/* ── Map: Leaflet on desktop, static image on mobile ── */
.map-mobile-static { display: none; }
.map-desktop       { display: block; }

@media (max-width: 768px) {
  .map-desktop       { display: none !important; }
  .map-mobile-static { display: block; width: 100%; height: 100%; }
  .map-mobile-static img { filter: grayscale(0.3); }
}

@media (max-width: 768px) {
  /* Explore tabs — visible on cream bg */
  .explore-tab {
    border-color: rgba(14,26,22,0.2);
    color: var(--color-dark);
    background: rgba(14,26,22,0.04);
  }
  .explore-tab.active {
    background: var(--color-dark);
    color: #fff;
    border-color: var(--color-dark);
  }
  /* Explore list bg on mobile */
  .explore-list { background: var(--color-cream); }
}

/* ── Mobile map card ── */
.map-mobile-static {
  display: none;
  text-decoration: none;
}
.map-mobile-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  background: var(--color-dark);
  border: 1px solid rgba(196,146,42,0.3);
  border-radius: 2px;
  height: 100%;
  min-height: 120px;
  transition: background 0.2s;
}
.map-mobile-card:hover { background: #1a2e27; }
.map-mobile-card svg {
  width: 32px; height: 32px; flex-shrink: 0;
  stroke: var(--color-gold); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.map-mobile-card-text { flex: 1; }
.map-mobile-card-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.3rem;
}
.map-mobile-card-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.map-mobile-card-arrow {
  font-size: 1.2rem;
  color: var(--color-gold);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .map-desktop       { display: none !important; }
  .map-mobile-static { display: block; width: 100%; }
  .location-map-frame { height: auto; min-height: 120px; }
}

@media (max-width: 768px) {
  .location-map-badge { display: none; }
  .map-mobile-static { display: block; width: 100%; }
  .map-mobile-static img { height: 280px; object-fit: cover; border-radius: 2px; }
  .location-map-frame { height: auto; }
}

/* ── FAQ CTA ── */
.faq-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem 2rem;
}
.faq-cta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
.faq-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}
.faq-cta-sub {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.75rem;
}

/* ── Footer phone ── */
.footer-contact-info {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}
.footer-contact-info a {
  color: var(--color-gold);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.footer-contact-info a:hover { text-decoration: underline; }

/* ── Journal CTA Strip ─────────────────────── */
.journal-cta-strip {
  background: var(--color-dark);
  padding: 3.5rem 0;
}
.journal-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.journal-cta-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
.journal-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.journal-cta-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.7;
}
.journal-cta-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 0.85em 2em;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}
.journal-cta-btn:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}
@media (max-width: 768px) {
  .journal-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .journal-cta-btn { align-self: flex-start; }
}

.footer-instagram {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--color-gold);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.footer-instagram:hover { opacity: 0.75; }
.footer-instagram svg { flex-shrink: 0; }

.footer-journal-link {
  color: var(--color-gold) !important;
  font-style: italic;
}
.footer-journal-link:hover { opacity: 0.8; }

/* ── Skip link (accessibility + SEO) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--color-gold);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 0 0 4px 4px;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

