/* Djai Island Tours — Brand Styles */
:root {
  --blue: #0E4B8F;
  --blue-deep: #0a3a70;
  --blue-soft: rgba(14, 75, 143, 0.1);
  --sand: #F7C600;
  --sand-dark: #d4a800;
  --sand-glow: rgba(247, 198, 0, 0.35);
  --white: #ffffff;
  --ink: #2D3748;
  --ink-soft: #4a5568;
  --muted: #718096;
  --bg: #f7fafc;
  --bg-warm: #eef4fb;
  --surface: #ffffff;
  --line: rgba(14, 75, 143, 0.12);
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 28px rgba(14, 75, 143, 0.12);
  --transition: 0.25s ease;
  --accent: var(--sand);
  --accent-dark: var(--sand-dark);
  --accent-glow: var(--sand-glow);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(14, 75, 143, 0.15);
  touch-action: manipulation;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

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

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

a:hover {
  color: var(--blue-deep);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.text-blue {
  color: var(--blue);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  min-height: 48px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--sand);
  color: var(--ink);
  border-color: var(--sand);
}

.btn--primary:hover {
  background: var(--sand-dark);
  border-color: var(--sand-dark);
  color: var(--ink);
  box-shadow: 0 8px 24px var(--sand-glow);
  transform: translateY(-2px);
}

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

.btn--outline:hover {
  background: var(--white);
  color: var(--blue);
}

.btn--outline-dark {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn--outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}

.btn--whatsapp {
  background: #25D366;
  background: linear-gradient(180deg, #2fe574 0%, #25D366 55%, #1fc45c 100%);
  color: #ffffff;
  border-color: #1ebe57;
  box-shadow: 0 2px 0 #128C7E, 0 6px 16px rgba(37, 211, 102, 0.45);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.btn--whatsapp:hover {
  background: linear-gradient(180deg, #45ea84 0%, #2fe574 50%, #25D366 100%);
  border-color: #25D366;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 3px 0 #128C7E, 0 10px 22px rgba(37, 211, 102, 0.55);
}

.btn--whatsapp svg {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.15));
}

.header__cta.btn--whatsapp {
  padding: 0.65rem 1.15rem;
  min-height: 44px;
  font-size: 0.9rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* Top bar */
.top-bar {
  background: var(--blue);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 0;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar__badge {
  background: var(--sand);
  color: var(--ink);
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.top-bar__phone {
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
}

.top-bar__phone:hover {
  color: var(--sand);
}

/* Header */
.header-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}

.header-bar.scrolled {
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 1.25rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--ink);
  flex-shrink: 0;
}

.logo:hover {
  color: var(--ink);
}

.logo img,
.logo__badge {
  width: auto;
  height: 58px;
  max-width: min(220px, 42vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  display: block;
}

.footer__logo {
  width: auto;
  height: 72px;
  border-radius: 0;
  margin-bottom: 1rem;
}

.header__nav {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 0.35rem 1.1rem;
  flex-wrap: wrap;
  min-width: 0;
}

.header__nav a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.2rem 0;
  white-space: nowrap;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sand);
  transition: width var(--transition);
}

.header__nav a:hover {
  color: var(--blue);
}

.header__nav a:hover::after {
  width: 100%;
}

.nav {
  display: none;
}

#nav.nav {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  visibility: hidden;
}

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

.nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  height: 100dvh;
  background: var(--white);
  border-left: 1px solid var(--line);
  padding: calc(1.25rem + env(safe-area-inset-top)) 1.5rem calc(1.5rem + env(safe-area-inset-bottom));
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 0;
}

#nav.nav.open .nav__panel {
  transform: translateX(0);
}

.nav__close {
  align-self: flex-end;
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
  border: none;
  background: transparent;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

#nav .nav__panel a {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem 0;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
}

#nav .nav__panel a:hover,
#nav .nav__panel a:active {
  color: var(--blue);
}

.header__cta {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.6s ease, transform 11s ease;
  z-index: 0;
}

.hero__img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(8, 28, 55, 0.22) 0%,
    rgba(8, 28, 55, 0.28) 45%,
    rgba(6, 22, 45, 0.78) 100%
  );
}

.hero__controls {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.55rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(8, 24, 48, 0.35);
}

.hero__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.hero__dot.is-active {
  width: 1.35rem;
  background: var(--sand);
}

.hero__content {
  position: relative;
  z-index: 4;
  padding: 5rem 1.5rem 4.5rem;
  max-width: 720px;
  animation: heroIn 0.9s ease both;
}

.hero__copy {
  min-height: 7.5rem;
}

.hero__copy.is-leaving .hero__eyebrow,
.hero__copy.is-leaving .hero__title,
.hero__copy.is-leaving .hero__subtitle {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(2px);
}

.hero__copy.is-entering .hero__eyebrow,
.hero__copy.is-entering .hero__title,
.hero__copy.is-entering .hero__subtitle {
  animation: heroCopyIn 0.65s ease both;
}

.hero__copy.is-entering .hero__title {
  animation-delay: 0.08s;
}

.hero__copy.is-entering .hero__subtitle {
  animation-delay: 0.16s;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.hero__brand em {
  font-style: normal;
  color: var(--sand);
  display: block;
}

.hero__eyebrow {
  display: block;
  margin: 0 0 0.45rem;
  color: var(--sand);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.hero__subtitle {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--bg-warm);
}

.section--blue {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-label {
  display: inline-block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
}

.section--blue .section-label {
  color: var(--sand);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ink);
}

.section--blue .section-title {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
}

.section--blue .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* Why choose */
.section--why {
  padding: 3.25rem 0 3.5rem;
}

.section-header--compact {
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.section-header--compact .section-title {
  margin-bottom: 0.55rem;
}

.section-header--compact .section-desc {
  font-size: 0.98rem;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.why__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  text-align: left;
  padding: 1.15rem 1.1rem 1.15rem 0;
  border-bottom: 1px solid var(--line);
  animation: fadeUp 0.7s ease both;
}

.why__item:nth-child(3n) {
  padding-right: 0;
}

.why__item:nth-child(3n + 2) {
  padding-left: 1.1rem;
  padding-right: 1.1rem;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.why__item:nth-child(2) { animation-delay: 0.06s; }
.why__item:nth-child(3) { animation-delay: 0.12s; }
.why__item:nth-child(4) { animation-delay: 0.18s; }
.why__item:nth-child(5) { animation-delay: 0.24s; }
.why__item:nth-child(6) { animation-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.why__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin: 0;
  flex-shrink: 0;
}

.why__body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 650;
  margin: 0 0 0.3rem;
  color: var(--ink);
  line-height: 1.25;
}

.why__body p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0;
}

/* Meet Djai */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.about__text {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about__list {
  list-style: none;
  margin-top: 1.5rem;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  color: var(--ink-soft);
}

.about__list svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.about__visual {
  position: relative;
}

.about__stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
  min-height: 420px;
  background: var(--blue-deep);
}

.about__photo {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.about__flag {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  width: 96px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  z-index: 2;
}

.about__quote {
  margin-top: 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--sand);
  color: var(--ink-soft);
  font-style: italic;
}

.about__chip {
  position: absolute;
  bottom: 1.15rem;
  left: 1.15rem;
  right: 1.15rem;
  width: fit-content;
  max-width: calc(100% - 2.3rem);
  background: var(--sand);
  color: var(--ink);
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: var(--shadow);
  z-index: 2;
  margin: 0;
}

/* Identity — flag, island, transfers */
.identity {
  padding: 3.25rem 0 4rem;
  background: var(--white);
}

.identity__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.identity__item {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-width: 0;
}

.identity__item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue);
  margin: 0.85rem 0 0.3rem;
  line-height: 1.25;
}

.identity__item p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.5;
}

.identity__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  width: 100%;
  background: #0a3a70;
  display: block;
  box-shadow: 0 4px 14px rgba(14, 75, 143, 0.1);
}

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

.identity__media--map {
  background: #003964;
  position: relative;
}

.identity__media--map img {
  object-fit: contain;
  object-position: center;
}

.identity__map-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  text-align: left;
  border-radius: var(--radius);
}

.identity__map-trigger:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 3px;
}

.identity__map-hint {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  left: auto;
  bottom: auto;
  z-index: 1;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(14, 75, 143, 0.92);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.map-lightbox[hidden] {
  display: none !important;
}

.map-lightbox {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 0.75rem;
}

.map-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
}

.map-lightbox__figure {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: min(520px, calc(100vw - 1.5rem));
  max-height: 92vh;
  margin: 0;
  line-height: 0;
}

.map-lightbox__figure img {
  width: auto;
  height: auto;
  max-width: min(520px, calc(100vw - 1.5rem));
  max-height: 92vh;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.map-lightbox__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 24, 48, 0.78);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.map-lightbox__close:hover {
  background: rgba(8, 24, 48, 0.92);
}

.top-bar__pride {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.top-bar__flag {
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* Services */
.services {
  padding: 3.5rem 0;
}

.services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
}

.services__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8, 30, 60, 0.94) 0%, rgba(10, 50, 95, 0.88) 55%, rgba(10, 58, 110, 0.78) 100%);
}

.services__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.25rem;
  align-items: center;
}

.section-header--left {
  text-align: left;
  margin: 0 0 1.5rem;
  max-width: none;
}

.section-header--left .section-title {
  margin-bottom: 0.45rem;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.95rem 1rem 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.service-item:nth-child(even) {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.service-item:nth-last-child(-n+2) {
  border-bottom: none;
  padding-bottom: 0.25rem;
}

.service-item__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  margin-bottom: 0.25rem;
}

.service-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0;
}

.services__cta {
  margin-top: 1.35rem;
}

.services__aside {
  position: relative;
}

.services__aside img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.services__aside p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.services__aside strong {
  color: var(--sand);
  font-weight: 700;
}

/* Tours */
.section--tours {
  padding: 3.25rem 0 3.5rem;
}

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

.tour-place {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
}

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

.tour-place:hover img {
  transform: scale(1.04);
}

.tour-place__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.35rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(8, 30, 60, 0.88));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.05rem;
  z-index: 1;
}

.tour-place__label span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.2rem;
}

/* Reviews */
.section--reviews {
  padding: 3.25rem 0 3.5rem;
}

.reviews__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.reviews__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reviews__visual p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.review {
  padding: 0.95rem 0 0.95rem 1rem;
  border-left: 3px solid var(--sand);
  border-bottom: 1px solid var(--line);
}

.review:last-child {
  border-bottom: none;
  padding-bottom: 0.25rem;
}

.review blockquote {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 0.65rem;
  position: relative;
  padding: 0;
}

.review blockquote::before {
  display: none;
}

.review cite {
  font-style: normal;
  font-weight: 650;
  font-family: var(--font-display);
  color: var(--blue);
  font-size: 0.9rem;
}

.review cite span {
  display: inline;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
  margin-left: 0.45rem;
}

.review cite span::before {
  content: '·';
  margin-right: 0.45rem;
}

/* Gallery — Sal locations carousel */
.gallery {
  display: grid;
  gap: 0.9rem;
}

.gallery__stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: clamp(280px, 48vw, 520px);
  background: #0a2748;
}

.gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.gallery__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 1.5rem 1.25rem;
  background: linear-gradient(transparent, rgba(8, 24, 48, 0.82));
  color: var(--white);
  display: grid;
  gap: 0.2rem;
}

.gallery__slide figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gallery__slide figcaption span {
  font-size: 0.95rem;
  opacity: 0.9;
}

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.55rem;
}

.gallery__thumb {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78);
  transition: filter 0.25s ease, transform 0.35s ease;
}

.gallery__thumb span {
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  bottom: 0.4rem;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

.gallery__thumb:hover img,
.gallery__thumb.is-active img {
  filter: brightness(1);
  transform: scale(1.03);
}

.gallery__thumb.is-active {
  outline-color: var(--sand);
}

.gallery__thumb:focus-visible {
  outline-color: var(--blue);
}

/* FAQ */
.faq__list {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
}

.faq__item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--blue-deep);
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  float: right;
  color: var(--sand-dark);
  font-weight: 700;
}

.faq__item[open] summary::after {
  content: '–';
}

.faq__item p {
  margin-top: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.faq__item a {
  color: var(--blue);
  font-weight: 600;
}

/* Contact / booking desk */
.contact {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(247, 198, 0, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(14, 75, 143, 0.12), transparent 50%),
    linear-gradient(165deg, #e8f1fb 0%, #f4f8fc 45%, #eef4fb 100%);
}

.contact__wash {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 75, 143, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 75, 143, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
  pointer-events: none;
}

.contact__wrap {
  position: relative;
  z-index: 1;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.18fr;
  gap: 2.75rem;
  align-items: start;
}

.contact__text {
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  max-width: 34rem;
}

.contact__steps {
  list-style: none;
  display: grid;
  gap: 0.95rem;
  margin-bottom: 2rem;
}

.contact__steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.contact__step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact__steps strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--blue-deep);
  margin-bottom: 0.15rem;
}

.contact__steps span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.contact__quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

.contact__call {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact__call:hover {
  color: var(--blue-deep);
}

.booking-desk {
  background: var(--surface);
  border: 1px solid rgba(14, 75, 143, 0.14);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow:
    0 18px 50px rgba(14, 75, 143, 0.14),
    0 2px 0 rgba(247, 198, 0, 0.55) inset;
  overflow: hidden;
}

.booking-desk__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: linear-gradient(120deg, var(--blue-deep), var(--blue));
  color: var(--white);
}

.booking-desk__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.2rem;
}

.booking-desk__head h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: var(--white);
}

.booking-desk__status {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: var(--sand);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.booking-desk__body {
  padding: 0.25rem 0 0.35rem;
}

.booking-desk__block {
  margin: 0;
  padding: 1.15rem 1.4rem 0.25rem;
  border-top: 1px solid var(--line);
}

.booking-desk__block:first-child {
  border-top: 0;
}

.booking-desk__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 0.75rem;
}

.booking-desk__actions {
  padding: 0.85rem 1.4rem 1.35rem;
}

.booking-desk__actions .btn {
  width: 100%;
}

.booking-desk__actions .form-note {
  margin-top: 0.75rem;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.service-pill {
  position: relative;
  cursor: pointer;
  display: inline-flex;
}

.service-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}

.service-pill span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service-pill input:checked + span {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.service-pill:hover span {
  border-color: rgba(14, 75, 143, 0.35);
}

.trip-route {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
  margin-bottom: 0.35rem;
}

.trip-route__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.55rem 0 1.15rem;
}

.trip-route__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: var(--white);
  flex-shrink: 0;
}

.trip-route__dot--to {
  background: var(--sand);
  border-color: var(--sand-dark);
}

.trip-route__line {
  width: 2px;
  flex: 1;
  margin: 0.35rem 0;
  background: linear-gradient(var(--blue), var(--sand));
  border-radius: 2px;
  min-height: 1.5rem;
}

.trip-route__fields {
  min-width: 0;
}

.trip-route__fields .form-group:last-child {
  margin-bottom: 0.35rem;
}

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

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

.form-group {
  margin-bottom: 1rem;
  min-width: 0;
}

.form-group--last {
  margin-bottom: 0.35rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: #f8fbfe;
  min-height: 46px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--blue-soft);
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}

.form-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.form-success svg {
  color: var(--blue);
  margin: 0 auto 1rem;
}

.form-success h3 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--muted);
}

/* Footer */
.footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 3.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer__brand img,
.footer__logo {
  width: auto;
  height: 72px;
  border-radius: 0;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.95rem;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.75);
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-display);
  color: var(--sand);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__links a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

.footer__links a:hover {
  color: var(--sand);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

a.footer__contact-item:hover {
  color: var(--sand);
}

.footer__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  flex-shrink: 0;
  color: var(--sand);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}

.footer__bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.footer__copyright {
  margin: 0;
  justify-self: start;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-visitors {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  justify-self: end;
}

.footer-visitors svg {
  color: var(--sand);
  opacity: 0.9;
}

.footer-visitors__count {
  font-weight: 700;
  color: var(--sand);
  font-family: var(--font-display);
}

/* FAB */
.fab {
  display: none;
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom));
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 99;
  animation: pulse 2.4s infinite;
}

.fab:hover {
  color: var(--white);
  transform: scale(1.08);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.65); }
}

.nav-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(8, 30, 60, 0.55);
  z-index: 350;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  visibility: hidden;
}

.nav-overlay.visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/* Pitch page helpers (shared tokens) */
.pitch {
  min-height: 100vh;
  padding: 3rem 0 5rem;
  background: var(--bg-warm);
}

.pitch__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pitch__header img {
  width: min(280px, 80%);
  height: auto;
  margin: 0 auto 1.25rem;
  border-radius: 0;
}

.pitch__header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.pitch__header p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.pitch__story {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.pitch__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pitch__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.pitch__card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pitch__card ul {
  list-style: none;
}

.pitch__card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.45rem 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

.pitch__soft {
  background: linear-gradient(135deg, rgba(14, 75, 143, 0.08), rgba(247, 198, 0, 0.12));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.pitch__soft h3 {
  font-family: var(--font-display);
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.pitch__soft p {
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 1.25rem;
}

.pitch__cta {
  text-align: center;
}

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

.pitch__back {
  text-align: center;
  margin-top: 2rem;
}

.pitch__back a {
  color: var(--muted);
  font-size: 0.9rem;
}

.pitch__footer-note {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 992px) {
  .header__nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    z-index: 101;
  }

  .why__grid,
  .tours__grid {
    grid-template-columns: 1fr 1fr;
  }

  .why__item,
  .why__item:nth-child(3n),
  .why__item:nth-child(3n + 2) {
    padding: 1rem 0.85rem 1rem 0;
    border-left: 0;
    border-right: 0;
  }

  .why__item:nth-child(even) {
    padding-left: 0.85rem;
    border-left: 1px solid var(--line);
  }

  .about__grid,
  .contact__grid,
  .pitch__grid,
  .identity__grid,
  .reviews__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reviews__visual {
    max-width: 480px;
  }

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

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

  .service-item,
  .service-item:nth-child(even),
  .service-item:nth-last-child(-n+2) {
    padding: 0.9rem 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-item:last-child {
    border-bottom: none;
  }

  .services__aside {
    order: -1;
    max-width: 420px;
  }

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

  .gallery__stage {
    min-height: 240px;
  }

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

  .footer__bottom-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__copyright,
  .footer-visitors {
    justify-self: center;
    text-align: center;
  }
}

@media (min-width: 993px) {
  .header__nav {
    display: flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 88vh;
    align-items: flex-end;
  }

  .hero__content {
    padding: 3.5rem 1.25rem 3rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .why__grid,
  .tours__grid,
  .form-row,
  .form-row--3 {
    grid-template-columns: 1fr;
  }

  .booking-desk__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .service-pill span {
    width: 100%;
    justify-content: center;
  }

  .why__item,
  .why__item:nth-child(even) {
    padding: 0.95rem 0;
    border-left: 0;
    border-right: 0;
  }

  .section--why {
    padding: 2.75rem 0 3rem;
  }

  .fab {
    display: flex;
  }

  .top-bar__text {
    display: none;
  }

  .logo img,
  .logo__badge {
    height: 64px;
    max-width: 150px;
  }

  .pitch__actions {
    flex-direction: column;
  }

  .pitch__actions .btn {
    width: 100%;
  }
}
