.dharavandhoo-hero {
  min-height: 680px;
  display: flex;
  align-items: end;
  padding: 120px 0 90px;
  border: 0;
  background:
    linear-gradient(90deg, rgba(9, 34, 52, 0.88) 0%, rgba(9, 34, 52, 0.62) 54%, rgba(9, 34, 52, 0.24) 100%),
    url("../images/dharavandhoo-aerial.jpg") center 55% / cover no-repeat;
  color: var(--paper);
}

.dharavandhoo-hero::after {
  display: none;
}

.dharavandhoo-hero .tag {
  color: var(--bright);
}

.dharavandhoo-hero h1 {
  max-width: 13ch;
  color: var(--paper);
  text-shadow: 0 2px 16px rgba(5, 24, 38, 0.38);
}

.dharavandhoo-hero p {
  max-width: 68ch;
  color: rgba(242, 248, 252, 0.9);
  text-shadow: 0 1px 10px rgba(5, 24, 38, 0.45);
}

.dharavandhoo-hero .btn {
  margin-top: 30px;
  border-color: var(--paper);
  background: var(--paper);
  color: var(--navy);
}

.island-introduction {
  background: var(--paper);
}

.island-introduction-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 60px;
  align-items: center;
}

.island-introduction-copy h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.island-introduction-copy p {
  max-width: 58ch;
  margin-top: 18px;
  color: var(--soft);
}

.island-gallery {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 7px;
  background: var(--navy);
  box-shadow: 0 18px 42px rgba(20, 50, 74, 0.15);
}

.island-gallery:focus-visible {
  outline: 3px solid var(--bright);
  outline-offset: 4px;
}

.island-gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.island-gallery-track::-webkit-scrollbar {
  display: none;
}

.island-gallery-slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.island-gallery-expand {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--navy);
  line-height: 0;
  cursor: zoom-in;
}

.island-gallery-expand:focus-visible {
  outline: 3px solid var(--bright);
  outline-offset: -4px;
}

.island-gallery-expand img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.island-gallery-slide figcaption {
  padding: 11px 14px;
  color: rgba(242, 248, 252, 0.76);
  font: 500 0.68rem/1.4 "IBM Plex Mono", monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.island-gallery-arrow {
  position: absolute;
  z-index: 2;
  top: calc(50% - 38px);
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(10, 31, 47, 0.76);
  color: #fff;
  font: 500 1.25rem/1 Arial, sans-serif;
  cursor: pointer;
  transform: translateY(-50%);
}

.island-gallery-arrow--previous {
  left: 14px;
}

.island-gallery-arrow--next {
  right: 14px;
}

.island-gallery-arrow:hover,
.island-gallery-arrow:focus-visible {
  border-color: #fff;
  background: rgba(10, 31, 47, 0.94);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.island-gallery-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(242, 248, 252, 0.75);
  font: 500 0.64rem/1.4 "IBM Plex Mono", monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.island-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.island-gallery-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.island-gallery-dots button[aria-current="true"] {
  background: var(--bright);
  border-color: var(--bright);
}

.island-gallery-lightbox {
  width: min(96vw, 1500px);
  max-width: none;
  max-height: 94vh;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(5, 20, 31, 0.98);
  color: var(--paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.island-gallery-lightbox::backdrop {
  background: rgba(3, 14, 23, 0.9);
  backdrop-filter: blur(4px);
}

.island-gallery-lightbox figure {
  display: grid;
  place-items: center;
  max-height: 94vh;
  margin: 0;
}

.island-gallery-lightbox img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(94vh - 56px);
  object-fit: contain;
}

.island-gallery-lightbox figcaption {
  width: 100%;
  min-height: 56px;
  padding: 17px 72px 15px;
  color: var(--paper);
  font: 400 0.72rem/1.5 "IBM Plex Mono", monospace;
  text-align: center;
}

.island-gallery-lightbox-close,
.island-gallery-lightbox-arrow {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(5, 20, 31, 0.78);
  color: #fff;
  cursor: pointer;
}

.island-gallery-lightbox-close {
  top: 8px;
  right: 9px;
  font: 300 2rem/1 Arial, sans-serif;
}

.island-gallery-lightbox-arrow {
  top: 50%;
  font: 500 1.25rem/1 Arial, sans-serif;
  transform: translateY(-50%);
}

.island-gallery-lightbox-arrow--previous {
  left: 12px;
}

.island-gallery-lightbox-arrow--next {
  right: 12px;
}

.island-gallery-lightbox-close:hover,
.island-gallery-lightbox-close:focus-visible,
.island-gallery-lightbox-arrow:hover,
.island-gallery-lightbox-arrow:focus-visible {
  border-color: #fff;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.experiences {
  background: var(--tint);
}

.experiences-heading {
  max-width: 820px;
}

.adventure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.adventure-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(20, 50, 74, 0.06);
}

.adventure-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.adventure-card:hover img {
  transform: scale(1.025);
}

.adventure-copy {
  padding: 22px;
}

.adventure-copy > span {
  display: block;
  margin-bottom: 10px;
  color: var(--deep);
  font: 600 0.66rem/1.4 "IBM Plex Mono", monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.adventure-copy h3 {
  color: var(--navy);
  font-size: 1.2rem;
}

.adventure-copy p {
  margin-top: 11px;
  color: var(--soft);
  font-size: 0.9rem;
}

.visit-cta {
  background: var(--navy);
  color: var(--paper);
}

.visit-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.visit-cta .tag {
  color: var(--bright);
}

.visit-cta h2 {
  max-width: 19ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.visit-cta p {
  max-width: 68ch;
  margin-top: 16px;
  color: rgba(242, 248, 252, 0.76);
}

.visit-cta .btn {
  flex: 0 0 auto;
  border-color: var(--paper);
  background: var(--paper);
  color: var(--navy);
}

@media (max-width: 900px) {
  .island-introduction-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .visit-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .dharavandhoo-hero {
    min-height: 600px;
    padding: 90px 0 64px;
    background-position: 62% center;
  }

  .dharavandhoo-hero .btn,
  .visit-cta .btn {
    display: block;
    width: 100%;
    text-align: center;
  }

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

  .adventure-copy {
    padding: 20px;
  }

  .island-gallery-arrow {
    top: calc(50% - 48px);
    width: 40px;
    height: 40px;
  }

  .island-gallery-arrow--previous {
    left: 9px;
  }

  .island-gallery-arrow--next {
    right: 9px;
  }

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

  .island-gallery-hint {
    display: none;
  }

  .island-gallery-lightbox {
    width: 96vw;
    max-height: 92vh;
  }

  .island-gallery-lightbox figure {
    max-height: 92vh;
  }

  .island-gallery-lightbox img {
    max-height: calc(92vh - 70px);
  }

  .island-gallery-lightbox figcaption {
    min-height: 70px;
    padding: 14px 58px;
    font-size: 0.64rem;
  }

  .island-gallery-lightbox-arrow {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .adventure-card img,
  .island-gallery-expand img {
    transition: none;
  }

  .island-gallery-track {
    scroll-behavior: auto;
  }
}
