/* Bambu | Langkawi Retreat — Design System & Global Styles */
/* ======================================================== */

/* ——— CSS RESET ——— */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.card__thumb,
.segment-card__image,
.activity-card__image,
.room-card__image,
.gallery-item {
  background: linear-gradient(90deg, var(--color-dark) 25%, var(--color-sand) 50%, var(--color-dark) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.8s ease infinite;
}

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

a:not(.btn):not(.navbar__logo):not(.footer__logo):not(.card):not(.room-card):not(.segment-card):not(.fab-airbnb) {
  text-underline-offset: 0.25em;
  text-decoration-thickness: 1px;
}

a:not(.btn):not(.navbar__logo):not(.footer__logo):not(.card):not(.room-card):not(.segment-card):not(.fab-airbnb):hover {
  color: var(--color-accent);
  text-decoration: underline;
}

a:not(.btn):not(.navbar__logo):not(.footer__logo):not(.card):not(.room-card):not(.segment-card):not(.fab-airbnb):focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  text-decoration: underline;
}

a.btn:focus-visible,
a.card:focus-visible,
a.room-card:focus-visible,
button.btn:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ——— ACCESSIBILITY HELPERS ——— */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-dark);
  font-weight: 700;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}

.skip-nav:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— CSS CUSTOM PROPERTIES ——— */
:root {
  --color-primary:       #0f1f18;
  --color-primary-light: #1a3328;
  --color-accent:        #C9A84C;
  --color-accent-hover:  #d4b85a;
  --color-accent-glow:   rgba(201, 168, 76, 0.4);
  --color-accent-subtle: rgba(201, 168, 76, 0.12);
  --color-cream:         #F5EFE0;
  --color-sand:          #242a26;
  --color-dark:          #0a0e0c;
  --color-text:          #e8e6e3;
  --color-text-light:    #F5EFE0;
  --color-muted:         #8a938d;
  --color-border:        rgba(201, 168, 76, 0.2);
  --color-card-bg:       rgba(15, 31, 24, 0.6);
  --color-glass:         rgba(10, 14, 12, 0.92);
  --radius-sm:           4px;
  --radius-md:           8px;
  --radius-lg:           16px;
  --shadow-sm:           0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md:           0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg:           0 16px 48px rgba(0, 0, 0, 0.4);
  --transition-base:     0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-bounce:   0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ——— TYPOGRAPHY ——— */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes page-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body {
  animation: page-fade-in 0.5s ease-out both;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-light);
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); line-height: 1.1; }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p { max-width: 65ch; }

.label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.text-cream { color: var(--color-cream); }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-muted); }

/* ——— BUTTONS ——— */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  min-height: 44px;
  min-width: 44px;
}

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

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--color-accent-glow);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background-color: var(--color-accent-subtle);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--color-accent-glow);
}

.btn--white {
  background-color: var(--color-cream);
  color: var(--color-dark);
  border-color: var(--color-cream);
}

.btn--white:hover,
.btn--white:focus-visible {
  background-color: #fff;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.08s;
}

.btn--full { width: 100%; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ——— LAYOUT ——— */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

.section {
  padding: 5rem 1.5rem;
}

.section--dark {
  background: var(--color-dark);
}

.section--primary {
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.section--primary > * {
  position: relative;
  z-index: 1;
}

@keyframes section-primary-svg-drift {
  0%, 100% {
    background-position:
      3% 0,
      94% 15%,
      50% 85%;
  }
  50% {
    background-position:
      5% 3%,
      91% 12%,
      53% 82%;
  }
}

@keyframes section-primary-svg-drift-mirror {
  0%, 100% {
    background-position:
      97% 0,
      6% 75%,
      55% 10%;
  }
  50% {
    background-position:
      95% 3%,
      9% 72%,
      52% 13%;
  }
}

@keyframes section-primary-svg-drift-alt {
  0%, 100% {
    background-position:
      8% 0,
      88% 60%,
      40% 20%;
  }
  50% {
    background-position:
      6% 4%,
      91% 57%,
      43% 23%;
  }
}

.section--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='280' fill='none' stroke='%23C9A84C' stroke-width='1.3'%3E%3Cpath d='M40 280V0'/%3E%3Ccircle cx='40' cy='45' r='2.5'/%3E%3Ccircle cx='40' cy='95' r='2.5'/%3E%3Ccircle cx='40' cy='145' r='2.5'/%3E%3Ccircle cx='40' cy='195' r='2.5'/%3E%3Cpath d='M40 35c-14-5-24-18-24-18s14 10 24 10'/%3E%3Cpath d='M40 55c16-4 26-20 26-20s-14 10-26 12'/%3E%3Cpath d='M40 85c-18-3-28-22-28-22s16 12 28 14'/%3E%3Cpath d='M40 105c20-4 30-24 30-24s-16 14-30 16'/%3E%3Cpath d='M40 135c-16-6-26-24-26-24s14 14 26 16'/%3E%3Cpath d='M40 155c18-2 28-18 28-18s-14 10-28 10'/%3E%3Cpath d='M40 185c-20-4-32-26-32-26s18 14 32 18'/%3E%3Cpath d='M40 205c22-4 34-28 34-28s-18 16-34 20'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' fill='none' stroke='%23C9A84C' stroke-width='0.7'%3E%3Cpath d='M80 150c-6-40-38-68-68-78'/%3E%3Cpath d='M80 150c2-44 30-74 68-82'/%3E%3Cpath d='M80 150c-16-34-50-52-70-48'/%3E%3Cpath d='M80 150c12-38 42-58 66-52'/%3E%3Cpath d='M80 150c-24-26-56-34-66-24'/%3E%3Cpath d='M80 150c20-30 50-42 62-32'/%3E%3Cpath d='M80 150c-30-18-60-18-66-6'/%3E%3Cpath d='M80 150V20'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' fill='none' stroke='%23C9A84C' stroke-width='0.6'%3E%3Cpath d='M100 180C70 150 30 134 8 136c28 2 56 22 72 40'/%3E%3Cpath d='M100 180c-2-48 22-92 46-110-20 30-30 68-24 96'/%3E%3Cpath d='M100 180C78 142 40 120 16 122c30 4 58 26 68 46'/%3E%3Cpath d='M100 180c4-42 32-76 58-88-22 24-38 54-36 78'/%3E%3Cellipse cx='64' cy='118' rx='38' ry='20' transform='rotate(-35 64 118)' stroke-dasharray='4 6'/%3E%3Cpath d='M64 118L100 180'/%3E%3C/svg%3E");
  background-position:
    3% 0,
    94% 15%,
    50% 85%;
  background-size:
    80px 280px,
    160px 160px,
    200px 200px;
  background-repeat:
    repeat-y,
    no-repeat,
    no-repeat;
  animation: section-primary-svg-drift 85s ease-in-out infinite;
  will-change: background-position;
}

.section--primary:nth-of-type(even)::after {
  background-position:
    97% 0,
    6% 75%,
    55% 10%;
  transform: scaleX(-1);
  animation-name: section-primary-svg-drift-mirror;
  animation-duration: 95s;
}

.section--primary:nth-child(4n+3)::after {
  background-position:
    8% 0,
    88% 60%,
    40% 20%;
  animation-name: section-primary-svg-drift-alt;
  animation-duration: 72s;
}

@media (prefers-reduced-motion: reduce) {
  .section--primary::after {
    opacity: 0.025;
    animation: none;
    will-change: auto;
  }
}

.section--cream {
  background: var(--color-cream);
  color: var(--color-dark);
}

.section--cream h2,
.section--cream h3,
.section--cream h4 {
  color: var(--color-primary);
}

.section--cream .label {
  color: var(--color-primary-light);
}

.section--cream .text-muted {
  color: #5a6b5e;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
  width: 100%;
  opacity: 0.6;
}

/* ——— GRIDS ——— */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

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

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

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

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

/* ——— NAVBAR ——— */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar--scrolled {
  background: var(--color-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.08), 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 0.875rem 2rem;
}

/* Home: readable nav over bright hero without darkening the whole viewport */
body.page-home .navbar:not(.navbar--scrolled) {
  background: linear-gradient(180deg, rgba(6, 10, 8, 0.58) 0%, rgba(6, 10, 8, 0.22) 65%, transparent 100%);
  backdrop-filter: blur(10px) saturate(115%);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
}

body.page-home .navbar:not(.navbar--scrolled) .navbar__links a:not(.btn) {
  color: #fff;
  font-weight: 500;
  opacity: 1;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 0 18px rgba(0, 0, 0, 0.45);
}

body.page-home .navbar:not(.navbar--scrolled) .navbar__hamburger {
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.75));
}

body.page-home .navbar:not(.navbar--scrolled) .navbar__links .btn--ghost {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.navbar__logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.7rem;
  background: linear-gradient(180deg, #fff 0%, #f5f2ec 100%);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 11px;
  box-shadow:
    0 2px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.navbar__logo:hover {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow:
    0 4px 22px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.navbar__logo:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.navbar__logo img {
  height: 40px;
  width: auto;
}

.navbar__links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar__links a:not(.btn) {
  color: var(--color-text-light);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.9;
  transition: color 0.25s ease, opacity 0.25s ease;
  padding: 0.5rem 0;
}

.navbar__links .btn {
  padding: 0.75rem 1.75rem;
  flex-shrink: 0;
}

.navbar__links a:not(.btn):hover,
.navbar__links a:not(.btn):focus-visible {
  color: var(--color-accent);
  opacity: 1;
}

.navbar__links a:not(.btn):focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.navbar__links a.active:not(.btn) {
  color: var(--color-accent);
  opacity: 1;
}

.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text-light);
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.navbar__hamburger-svg {
  width: 24px;
  height: 24px;
  display: block;
}

.navbar__hamburger-bar {
  transform-origin: 12px 12px;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;
}

.navbar__hamburger[aria-expanded="true"] .navbar__hamburger-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.navbar__hamburger[aria-expanded="true"] .navbar__hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__hamburger[aria-expanded="true"] .navbar__hamburger-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.navbar__hamburger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ——— NAV DROPDOWN ——— */
.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.navbar__dropdown-toggle .navbar__chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.navbar__dropdown.is-open .navbar__chevron {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--color-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1rem 0 0.75rem;
  padding-top: 1.25rem;
  list-style: none;
  z-index: 110;
  opacity: 0;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.navbar__dropdown.is-open .navbar__dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-menu li {
  margin: 0;
  padding: 0;
}

.navbar__dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--color-text-light);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.navbar__dropdown-menu a:hover,
.navbar__dropdown-menu a:focus-visible {
  background: rgba(201, 168, 76, 0.12);
  color: var(--color-accent);
}

.navbar__dropdown-menu a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.navbar__dropdown-menu a.active {
  color: var(--color-accent);
}

/* ——— HERO / PHOTO BLOCKS ——— */
.photo-block {
  background: var(--color-dark);
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photo-block img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
}

.photo-block > picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.photo-block picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
}

.photo-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 11, 9, 0.42) 0%, rgba(8, 11, 9, 0.55) 45%, rgba(8, 11, 9, 0.88) 100%);
  pointer-events: none;
  z-index: 1;
}

.photo-block--hero {
  min-height: 100vh;
  min-height: 100dvh;
}

/* ——— VIDEO HERO ———
   Stack: video (0) → poster fade (1) → gradient ::before (2) → grain (3) → content (4)
   Without this, ::before sat above the iframe and the hero looked empty after poster fade. */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* YT.Player sets inline iframe dimensions — override so video covers hero (16:9 cover) */
.hero-video #hero-yt-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video #hero-yt-player > div {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.photo-block--video .hero-video iframe {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 100vw !important;
  height: 56.25vw !important;
  min-width: 177.78vh !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  max-width: none !important;
  border: 0 !important;
  transform: translate(-50%, -50%) !important;
  transform-origin: center center !important;
}

.photo-block--video::before {
  z-index: 2;
}

.photo-block--video.grain-overlay::after {
  z-index: 3;
}

.photo-block--video > .hero-content {
  z-index: 4;
}

.photo-block--video .hero-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 1.2s ease;
}

.photo-block--video .hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-block--video.video-playing .hero-poster {
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .photo-block--video .hero-poster {
    opacity: 1 !important;
  }
}

.photo-block--hero::before {
  background:
    radial-gradient(ellipse 95% 60% at 50% 40%, rgba(8, 11, 9, 0.28) 0%, rgba(8, 11, 9, 0.08) 55%, transparent 72%),
    linear-gradient(180deg, rgba(8, 11, 9, 0.28) 0%, rgba(8, 11, 9, 0.08) 38%, rgba(8, 11, 9, 0.18) 72%, rgba(8, 11, 9, 0.42) 100%);
}

.photo-block--tall::before,
.photo-block--medium::before {
  background: linear-gradient(180deg, rgba(5, 8, 6, 0.55) 0%, rgba(5, 8, 6, 0.4) 40%, rgba(5, 8, 6, 0.82) 100%);
}

.photo-block--tall {
  min-height: 60vh;
}

.photo-block--medium {
  min-height: 50vh;
}

.photo-block > .hero-content,
.photo-block > *:not(img):not(picture):not(.hero-video) {
  position: relative;
  z-index: 3;
}

.photo-block > img {
  z-index: 0;
}

.grain-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='1'/></svg>");
}

/* Parallax wrapper */
.parallax-container {
  overflow: hidden;
  position: relative;
}

.parallax-bg {
  position: absolute;
  inset: -20% 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  will-change: transform;
}

/* ——— HERO CONTENT ——— */
.hero-content {
  text-align: center;
  padding: 2rem;
  max-width: 850px;
}

/* Main home hero: neutral frosted glass — light blur, low tint, no saturate (keeps video colors true) */
.photo-block--hero .hero-content {
  padding: clamp(1.75rem, 4.5vw, 2.75rem) clamp(1.5rem, 4vw, 2.75rem);
  max-width: 900px;
  background: rgba(0, 0, 0, 0.09);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-content .label {
  display: block;
  margin-bottom: 1rem;
}

.hero-content h1 {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
}

.photo-block .hero-content h1 {
  color: #faf9f6;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 1),
    0 1px 3px rgba(0, 0, 0, 0.95),
    0 6px 32px rgba(0, 0, 0, 0.55);
}

.photo-block--hero .hero-content h1 {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.65),
    0 4px 20px rgba(0, 0, 0, 0.35);
}

.photo-block .hero-content .label {
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(0, 0, 0, 0.65);
}

.photo-block--hero .hero-content .label {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.photo-block .hero-content p,
.photo-block .hero-content .hero-subhead {
  color: rgba(255, 255, 255, 0.97);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.95),
    0 4px 24px rgba(0, 0, 0, 0.5);
}

.photo-block--hero .hero-content p,
.photo-block--hero .hero-content .hero-subhead {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.hero-content .hero-subhead {
  color: rgba(245, 239, 224, 0.9);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}

.scroll-arrow {
  color: var(--color-text-light);
  opacity: 0.7;
  animation: bounce 2.5s infinite;
  margin-top: 1rem;
}

.photo-block .scroll-arrow {
  color: #fff;
  opacity: 0.92;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
}

.photo-block .hero-content .btn--primary {
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.35),
    0 8px 28px rgba(0, 0, 0, 0.4);
}

.photo-block .hero-content .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(5, 8, 6, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.photo-block--hero .hero-content .btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.photo-block .hero-content .btn--ghost:hover,
.photo-block .hero-content .btn--ghost:focus-visible {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

.photo-block--hero .hero-content .btn--ghost:hover,
.photo-block--hero .hero-content .btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.scroll-arrow svg {
  width: 28px;
  height: 28px;
  display: block;
  margin: 0 auto;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(10px); }
  60% { transform: translateY(5px); }
}

/* Hero fade-in */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label   { animation: fadeUp 0.7s ease 0.1s both; }
.hero-heading { animation: fadeUp 0.7s ease 0.3s both; }
.hero-subhead { animation: fadeUp 0.7s ease 0.5s both; }
.hero-buttons { animation: fadeUp 0.7s ease 0.7s both; }
.scroll-arrow { animation: fadeUp 0.7s ease 0.9s both, bounce 2.5s 1.6s infinite; }

/* ——— SCROLL REVEAL ANIMATIONS ——— */
.reveal-hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition-base), transform 0.8s var(--transition-base);
}

.reveal-hidden.reveal {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--transition-base), transform 0.8s var(--transition-base);
}

.reveal-left.reveal {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--transition-base), transform 0.8s var(--transition-base);
}

.reveal-right.reveal {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--transition-base), transform 0.8s var(--transition-base);
}

.reveal-scale.reveal {
  opacity: 1;
  transform: scale(1);
}

.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-clip.reveal {
  clip-path: inset(0 0 0 0);
}

/* Stagger support */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ——— REDUCED MOTION ——— */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-hidden,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-clip {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }

  .parallax-bg {
    transform: none !important;
  }
}

/* ——— CARDS ——— */
.card {
  background: var(--color-sand);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-bounce), box-shadow 0.4s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--color-border);
}

.card--dark {
  background: var(--color-card-bg);
  color: var(--color-text-light);
}

.card--flat {
  border-left: none;
  border: 1px solid var(--color-border);
}

.card--flat:hover {
  border-color: var(--color-accent);
}

.card__thumb {
  margin: -2rem -2rem 1.5rem -2rem;
  min-height: 200px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  position: relative;
}

.card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.card:hover .card__thumb img {
  transform: scale(1.05);
}

.card--with-img {
  padding-top: 0;
  overflow: hidden;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  margin-bottom: 1rem;
  opacity: 0.95;
}

/* ——— SEGMENT CARDS (Experience page) ——— */
.segment-card {
  display: block;
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition-bounce), box-shadow 0.4s ease, border-color 0.3s ease;
  text-decoration: none;
}

.segment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.segment-card__image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.segment-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.segment-card:hover .segment-card__image img {
  transform: scale(1.08);
}

.segment-card__body {
  padding: 1.5rem;
}

.segment-card__body h3 {
  margin-bottom: 0.5rem;
}

.segment-card__body p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* ——— ROOM CARDS (Accommodation) ——— */
.room-card {
  display: block;
  background: var(--color-sand);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition-bounce), box-shadow 0.4s ease;
  text-decoration: none;
  color: inherit;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.room-card__image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-card__image img {
  transform: scale(1.05);
}

.room-card__body {
  padding: 1.5rem;
}

.room-card__body h3 {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.room-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.room-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.room-card__specs span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.room-card__specs svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.room-card__desc {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* ——— STAY BENTO (home accommodation) ——— */
.stay-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(min-content, auto);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.65rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.08) 0%, transparent 42%, rgba(15, 31, 24, 0.4) 100%);
  border: 1px solid rgba(201, 168, 76, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stay-bento .room-card--bento {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.stay-bento .room-card--bento:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(201, 168, 76, 0.25);
}

.stay-bento .room-card__image {
  position: relative;
  flex: 1 1 auto;
  min-height: 150px;
  height: auto;
}

.stay-bento .stay-bento__cell--feature .room-card__image {
  min-height: clamp(200px, 32vw, 340px);
}

.stay-bento .stay-bento__cell--tall .room-card__image {
  min-height: clamp(140px, 22vw, 200px);
}

.stay-bento .stay-bento__cell--compact .room-card__image {
  min-height: 130px;
}

.stay-bento .stay-bento__cell--wide .room-card__image {
  min-height: 160px;
}

@media (min-width: 901px) {
  .stay-bento__cell--feature {
    grid-column: 1 / span 7;
    grid-row: 1 / span 2;
  }

  .stay-bento > .stay-bento__cell--tall:nth-of-type(2) {
    grid-column: 8 / -1;
    grid-row: 1;
  }

  .stay-bento > .stay-bento__cell--tall:nth-of-type(3) {
    grid-column: 8 / -1;
    grid-row: 2;
  }

  .stay-bento__cell--compact {
    grid-column: 1 / span 3;
    grid-row: 3;
  }

  .stay-bento__cell--wide {
    grid-column: 4 / -1;
    grid-row: 3;
  }

  .stay-bento .stay-bento__cell--feature .room-card__body h3 {
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  }
}

.stay-bento__badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4em 0.85em;
  border-radius: 999px;
  background: rgba(8, 11, 9, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-accent);
  border: 1px solid rgba(201, 168, 76, 0.35);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .stay-bento .room-card--bento:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .stay-bento {
    grid-template-columns: 1fr;
    padding: 0.35rem;
  }

  .stay-bento > .room-card--bento {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
  }

  .stay-bento .room-card__image {
    min-height: 200px !important;
  }
}

/* ——— ROOM DETAIL SECTION ——— */
.room-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.room-detail:last-child {
  border-bottom: none;
}

.room-detail__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.room-detail__gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-dark);
  position: relative;
  cursor: pointer;
}

.room-detail__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.room-detail__gallery-item:hover img {
  transform: scale(1.05);
}

.room-detail__amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.room-detail__amenities li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.room-detail__amenities svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ——— STATS SECTION ——— */
.stats-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 1.5rem;
}

.stat-block {
  text-align: center;
  max-width: 220px;
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-block:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: var(--shadow-md);
}

.stat-block .stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  color: var(--color-accent);
}

.stat-block .stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.25rem;
}

.stat-block .stat-label {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.stat-block .stat-desc {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ——— TRUST BAR ——— */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 1.5rem;
  background: var(--color-primary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-bar__item {
  text-align: center;
  min-width: 120px;
  transition: transform 0.3s ease;
}

.trust-bar__item:hover {
  transform: scale(1.08);
}

.trust-bar__number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--color-accent);
  display: block;
}

.trust-bar__label {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ——— TESTIMONIALS ——— */
.testimonials {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 2rem;
  text-align: center;
}

.testimonial-slide blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.testimonial-slide cite {
  display: block;
  font-size: 0.9rem;
  color: var(--color-muted);
  font-style: normal;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: inherit;
}

.testimonial-dot.active,
.testimonial-dot:hover {
  background: var(--color-accent);
}

/* ——— VIDEO EMBED ——— */
.video-embed {
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  background: var(--color-dark);
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ——— IMAGE MOSAIC ——— */
.image-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  max-width: 1200px;
  margin: 0 auto;
}

.image-mosaic__cell {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-dark);
}

.image-mosaic__cell--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.image-mosaic__cell > img,
.image-mosaic__cell picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.image-mosaic__cell:hover img {
  transform: scale(1.05);
}

.image-mosaic__cell picture {
  position: absolute;
  inset: 0;
  display: block;
}

/* ——— GALLERY PAGE ——— */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gallery-filter-btn {
  padding: 0.5rem 1.25rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-light);
  background: transparent;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-height: 44px;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-subtle);
}

.gallery-filter-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-dark);
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 12, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  background: rgba(10, 14, 12, 0.25);
}

.gallery-item::before {
  content: '\2922';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.3s var(--transition-bounce);
  pointer-events: none;
}

.gallery-item:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform 0.35s var(--transition-base), opacity 0.3s ease;
  transform: scale(0.92);
  opacity: 0;
}

.lightbox.active .lightbox__img {
  transform: scale(1);
  opacity: 1;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lightbox__close:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

/* ——— ACCOMMODATION GALLERY ——— */
.accom-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.accom-gallery__shot {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-dark);
  position: relative;
}

.accom-gallery__shot img,
.accom-gallery__shot picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.accom-gallery__shot picture {
  position: absolute;
  inset: 0;
}

.accom-gallery__shot picture img {
  position: absolute;
  inset: 0;
}

/* ——— CTA BANNER ——— */
.cta-banner {
  background: var(--color-primary);
  color: var(--color-text-light);
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  margin: 0 auto 2rem;
  color: var(--color-muted);
  position: relative;
}

.cta-banner .btn-group {
  position: relative;
}

/* ——— PRICING ——— */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-dark);
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.pricing-table th:nth-child(2),
.pricing-table th:nth-child(3),
.pricing-table td:nth-child(2),
.pricing-table td:nth-child(3) {
  text-align: right;
}

.pricing-table th {
  background: var(--color-primary);
  color: var(--color-accent);
  font-weight: 700;
}

.pricing-table td {
  color: var(--color-text-light);
}

.pricing-table td:first-child {
  min-width: 7.5rem;
  padding-right: 1.5rem;
}

.pricing-table tbody tr {
  transition: background 0.2s ease;
}

.pricing-table tbody tr:nth-child(even) {
  background: rgba(27, 58, 45, 0.3);
}

.pricing-table tbody tr:hover {
  background: rgba(201, 168, 76, 0.05);
}

.table-scroll {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

/* Pricing tier toggle */
.pricing-tier {
  position: relative;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.pricing-tier__label {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pricing-tier__toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.pricing-tier__btn {
  flex: 1 1 auto;
  min-width: min(100%, 140px);
  max-width: 220px;
  padding: 0.75rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-light);
  background: rgba(27, 58, 45, 0.5);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  min-height: 44px;
}

.pricing-tier__btn:hover {
  border-color: rgba(201, 168, 76, 0.55);
  background: rgba(27, 58, 45, 0.75);
}

.pricing-tier__btn.is-active {
  border-color: var(--color-accent);
  background: var(--color-accent-subtle);
  color: var(--color-accent);
}

.pricing-tier__btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Do not set display on .js-price / .js-daily — they are <td>s; inline-block breaks table columns */
.pricing-table .js-price,
.pricing-table .js-daily {
  transition: opacity 0.2s ease;
  white-space: nowrap;
  vertical-align: middle;
}

.pricing-table .js-price {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.pricing-table .js-daily {
  padding-left: 1.75rem;
}

.pricing-table .js-price.updating,
.pricing-table .js-daily.updating {
  opacity: 0;
}

.pricing-tier__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  text-align: center;
}

.pricing-tier__hint {
  margin: 0;
  max-width: 52ch;
  font-size: 0.9rem;
  text-align: center;
  color: var(--color-muted);
}

.pricing-tier__hint p {
  margin: 0;
}

.pricing-tier__live {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-accent);
  min-height: 1.35em;
}

/* Comparison cards */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 2px solid var(--color-border);
  transition: border-color 0.3s ease;
}

.comparison-card--featured {
  border-color: var(--color-accent);
  position: relative;
}

.comparison-card--featured::before {
  content: 'Recommended';
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-card h3 {
  margin-bottom: 0.5rem;
}

.comparison-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.comparison-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.comparison-card li {
  padding: 0.4rem 0;
  color: var(--color-text);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.comparison-card li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ——— FAQ ——— */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  text-align: left;
  background: none;
  border: none;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
  min-height: 44px;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.faq-item--open .faq-question::after {
  content: '\2212';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 1.25rem 0;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ——— TIMELINE ——— */
.timeline {
  max-width: 600px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-left: 2px solid var(--color-accent);
  margin-left: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 1.75rem;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--color-accent-glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover::before {
  transform: scale(1.3);
  box-shadow: 0 0 24px var(--color-accent-glow);
}

.timeline-time {
  font-weight: 700;
  color: var(--color-accent);
  min-width: 70px;
  font-size: 0.95rem;
}

.timeline-desc {
  color: var(--color-text);
}

.timeline-desc strong {
  color: var(--color-text-light);
}

/* ——— FORMS ——— */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  border: 2px solid var(--color-sand);
  border-radius: var(--radius-md);
  background: var(--color-sand);
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px;
}

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

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A84C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-error {
  display: block;
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.form-success {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
}

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

/* ——— CHECKLIST / INCLUDES ——— */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.includes-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.includes-item span {
  font-size: 0.95rem;
}

/* ——— ACTIVITY GRID ——— */
.activity-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--color-border);
  border-color: var(--color-accent);
}

.activity-card__image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.activity-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.activity-card:hover .activity-card__image img {
  transform: scale(1.08);
}

.activity-card__body {
  padding: 1.25rem;
}

.activity-card__body h4 {
  margin-bottom: 0.35rem;
}

.activity-card__body p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* ——— INFO BOX ——— */
.info-box {
  background: var(--color-card-bg);
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}

.info-box h4 {
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

/* ——— BREADCRUMBS ——— */
.breadcrumbs {
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  background: var(--color-dark);
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumbs a {
  color: var(--color-muted);
}

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

.breadcrumbs span {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* ——— FOOTER ——— */
.footer {
  background: var(--color-dark);
  color: var(--color-text-light);
  padding: 4rem 1.5rem 2rem;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--color-accent), transparent) 1;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.35rem 0.6rem;
  background: linear-gradient(180deg, #fff 0%, #f5f2ec 100%);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 10px;
  box-shadow:
    0 2px 14px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer__logo:hover {
  border-color: rgba(201, 168, 76, 0.42);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.footer__logo:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.footer__logo img {
  height: 36px;
  width: auto;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.5;
}

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

.footer__nav-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
  font-weight: 700;
}

.footer__nav-col a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--color-muted);
  transition: color 0.2s ease, padding-left 0.25s ease;
}

.footer__nav-col a:hover {
  color: var(--color-accent);
  padding-left: 0.35rem;
}

.footer__nav-col a[href*='getting-here'] {
  text-align: center;
  line-height: 1.35;
}

.footer__nav-col a[href*='getting-here']:hover {
  padding-left: 0;
}

.heading-subline {
  font-weight: 600;
  letter-spacing: 0.06em;
}

.footer__contact {
  text-align: right;
}

.footer__contact p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
  max-width: none;
}

.footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1rem;
}

.footer__social a {
  color: var(--color-text-light);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

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

.footer__social a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.footer__social svg {
  width: 22px;
  height: 22px;
}

.footer__bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
}

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

/* ——— UTILITIES ——— */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-narrow { max-width: 600px; }
.max-w-medium { max-width: 800px; }
.max-w-wide { max-width: 1100px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }

/* ——— RESPONSIVE ——— */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .navbar__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 102;
    position: relative;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(300px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--color-dark);
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none;
    z-index: 101;
  }

  .navbar__links--open {
    transform: translateX(0);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
  }

  .navbar__links::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
    z-index: -1;
  }

  .navbar__links--open::before {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: all;
  }

  .navbar__links li {
    width: 100%;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  }

  .navbar__links a:not(.btn) {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
  }

  .navbar__links .btn {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 1rem 1.5rem;
    margin-top: 0.75rem;
    text-align: center;
    box-sizing: border-box;
  }

  .navbar__dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0.25rem 1rem;
    min-width: 0;
    opacity: 1;
  }

  .navbar__dropdown.is-open .navbar__dropdown-menu {
    transform: none;
  }

  .navbar__dropdown-menu a {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--color-muted);
  }

  .navbar__dropdown-menu a:hover,
  .navbar__dropdown-menu a:focus-visible {
    background: transparent;
    color: var(--color-accent);
  }

  .navbar__dropdown > .navbar__dropdown-toggle {
    justify-content: space-between;
    width: 100%;
  }

  .grid-2,
  .grid-3,
  .grid-2x2 {
    grid-template-columns: 1fr;
  }

  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-section {
    flex-direction: column;
    align-items: center;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .image-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-mosaic__cell--wide {
    grid-column: span 2;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer__contact {
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section {
    padding: 3.5rem 1.5rem;
  }

  .room-detail__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .grid-5 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-mosaic {
    grid-template-columns: 1fr;
  }

  .image-mosaic__cell--wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .room-detail__gallery {
    grid-template-columns: 1fr;
  }

  .room-detail__amenities {
    grid-template-columns: 1fr;
  }

  .footer__nav-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-bar {
    gap: 1.5rem;
  }

  .accom-gallery {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-group .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-content h1 {
    font-size: clamp(1.875rem, 6vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2.5rem 1rem;
  }

  .navbar {
    padding: 1rem;
  }

  .navbar--scrolled {
    padding: 0.75rem 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— ISLAND STATS (enhanced animated version) ——— */
.island-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.island-stat {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.island-stat:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 168, 76, 0.08);
}

.island-stat__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--color-accent);
  opacity: 0.9;
}

.island-stat__number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-accent);
  display: block;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.island-stat__label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 0.25rem;
}

.island-stat__desc {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.island-stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.island-stat:hover::after {
  opacity: 1;
}

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

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

/* ——— WIDE IMAGE SHOWCASE ——— */
.image-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  min-height: 450px;
}

.image-showcase__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-dark);
}

.image-showcase__item:first-child {
  grid-row: 1 / -1;
}

.image-showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.image-showcase__item:hover img {
  transform: scale(1.05);
}

.image-showcase__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(0deg, rgba(10, 14, 12, 0.85) 0%, transparent 100%);
  z-index: 1;
}

.image-showcase__caption h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .image-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .image-showcase__item {
    aspect-ratio: 4 / 3;
  }

  .image-showcase__item:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }
}

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

  .image-showcase__item:first-child {
    grid-column: auto;
  }
}

/* ——— QUOTE BREAK / PARALLAX DIVIDER ——— */
.quote-break {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-break__bg {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  z-index: 0;
  transition: transform 12s ease-out;
}

.quote-break:hover .quote-break__bg {
  transform: scale(1.04);
}

.quote-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 12, 0.7);
  z-index: 1;
}

.quote-break__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.quote-break__content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.quote-break__content cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* ——— FLOATING AIRBNB BUTTON ——— */
.fab-airbnb {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: #FF5A5F;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 90, 95, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.fab-airbnb:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 30px rgba(255, 90, 95, 0.5), 0 4px 12px rgba(0, 0, 0, 0.25);
  color: #0f1f18;
  text-decoration: none;
}

.fab-airbnb:active {
  transform: translateY(-1px) scale(0.98);
  transition-duration: 0.1s;
}

.fab-airbnb:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.fab-airbnb svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.fab-airbnb__text {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .fab-airbnb {
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
    bottom: 1rem;
    right: 1rem;
  }

  .fab-airbnb svg {
    width: 20px;
    height: 20px;
  }
}

/* ——— BACK-TO-TOP BUTTON ——— */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--color-accent);
  color: var(--color-dark);
  border-color: var(--color-accent);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 480px) {
  .back-to-top {
    bottom: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
  }
}
