:root {
  --font-geist: "Segoe UI";
  --navy: #041627;
  --navy-soft: #1a2b3c;
  --brand: #92060f;
  --brand-dark: #6d030a;
  --brand-pale: #f2dddf;
  --ink: #191c1d;
  --muted: #64696e;
  --surface: #f8f9fa;
  --surface-low: #f0f2f3;
  --surface-high: #e6e8e9;
  --white: #ffffff;
  --line: rgba(4, 22, 39, 0.12);
  --shadow-sm: 0 10px 30px rgba(4, 22, 39, 0.08);
  --shadow-lg: 0 24px 70px rgba(4, 22, 39, 0.16);
	--bg-page: #f8f9fa;
	--bg-section: #f0f2f3;
	--bg-card: #ffffff;
	--bg-control: #f8fafb;
	--text-heading: #041627;
	--text-body: #191c1d;
	--text-muted: #64696e;
	--border-subtle: rgba(4, 22, 39, 0.12);
	--accent-text: #92060f;
	--accent-info: #0b389f;
	--accent-info-soft: #eaf5fa;
	--whatsapp: #25d366;
	--hero-overlay-left: linear-gradient(90deg, rgba(4, 22, 39, 0.98) 0%, rgba(4, 22, 39, 0.92) 33%, rgba(4, 22, 39, 0.42) 58%, rgba(4, 22, 39, 0.08) 100%), linear-gradient(0deg, rgba(4, 22, 39, 0.36), transparent 50%);
	--hero-overlay-right: linear-gradient(270deg, rgba(4, 22, 39, 0.98) 0%, rgba(4, 22, 39, 0.91) 33%, rgba(4, 22, 39, 0.36) 59%, rgba(4, 22, 39, 0.08) 100%), linear-gradient(0deg, rgba(4, 22, 39, 0.42), transparent 50%);
	--media-overlay: linear-gradient(180deg, transparent 42%, rgba(4, 22, 39, 0.88));
  --ease: cubic-bezier(0.2, 0.75, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #edf3f7;
  --muted: #a8b5bf;
  --surface: #071522;
  --surface-low: #0b1b29;
  --surface-high: #102536;
  --line: rgba(255, 255, 255, 0.13);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.38);
	--bg-page: #071522;
	--bg-section: #0b1b29;
	--bg-card: #0d2131;
	--bg-control: #071725;
	--text-heading: #f3f7fa;
	--text-body: #dce6ed;
	--text-muted: #a8b5bf;
	--border-subtle: rgba(255, 255, 255, 0.13);
	--accent-text: #ff8d95;
	--accent-info: #7fb4ff;
	--accent-info-soft: rgba(79, 143, 255, 0.14);
	--hero-overlay-left: linear-gradient(90deg, rgba(1, 10, 18, 0.99) 0%, rgba(1, 12, 22, 0.94) 35%, rgba(2, 18, 31, 0.5) 62%, rgba(1, 10, 18, 0.14) 100%), linear-gradient(0deg, rgba(1, 10, 18, 0.55), transparent 54%);
	--hero-overlay-right: linear-gradient(270deg, rgba(1, 10, 18, 0.99) 0%, rgba(1, 12, 22, 0.94) 35%, rgba(2, 18, 31, 0.5) 62%, rgba(1, 10, 18, 0.14) 100%), linear-gradient(0deg, rgba(1, 10, 18, 0.55), transparent 54%);
	--media-overlay: linear-gradient(180deg, transparent 38%, rgba(1, 12, 22, 0.94));
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Be Vietnam Pro", var(--font-geist), "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: "Be Vietnam Pro", var(--font-geist), "Segoe UI", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
strong,
b {
  font-family: "Manrope", var(--font-geist), "Segoe UI", sans-serif;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--brand);
  color: var(--white);
}

.container {
  width: min(calc(100% - 6rem), 1280px);
  margin-inline: auto;
}

.section-space {
  padding-block: clamp(5.5rem, 8vw, 8rem);
}

.section-space-sm {
  padding-block: clamp(4rem, 6vw, 6rem);
}

.surface-muted {
  background: var(--surface-low);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(to bottom, rgba(4, 22, 39, 0.42), transparent);
  transition: background 300ms ease, color 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(4, 22, 39, 0.09);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 6rem), 1280px);
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.35vw, 1.5rem);
  transition: min-height 300ms ease;
}

.is-scrolled .nav-shell {
  min-height: 68px;
}

.brand {
  min-width: 225px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
  transition: width 300ms ease, height 300ms ease;
}

.is-scrolled .brand img {
  width: 46px;
  height: 46px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 0.35rem;
  color: currentColor;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.68;
}

.desktop-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 2.2vw, 2.35rem);
}

.desktop-nav a {
  position: relative;
  padding: 1.15rem 0;
  font-family: "Manrope", var(--font-geist), sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  opacity: 0.78;
  transition: opacity 250ms ease;
	white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  opacity: 1;
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.75rem;
  height: 2px;
  background: var(--brand);
}

.nav-cta {
  min-width: 190px;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--navy);
  background: var(--white);
  font-family: "Manrope", var(--font-geist), sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
	white-space: nowrap;
}

.is-scrolled .nav-cta {
  color: var(--white);
  background: var(--brand);
}

.nav-cta:hover {
  transform: translateY(-2px);
}

.nav-cta i {
  font-style: normal;
}

.theme-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(4, 22, 39, 0.14);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.theme-toggle:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.theme-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.is-scrolled .theme-toggle {
  border-color: var(--line);
  color: var(--navy);
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(4, 22, 39, 0.06);
}

.theme-icon {
  position: absolute;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: opacity 180ms ease, transform 220ms ease;
}

.theme-icon-moon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.theme-icon-sun {
  opacity: 0;
  transform: scale(0.65) rotate(-35deg);
}

html[data-theme="dark"] .theme-icon-moon {
  opacity: 0;
  transform: scale(0.65) rotate(35deg);
}

html[data-theme="dark"] .theme-icon-sun {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

html[data-theme="dark"] .site-header.is-scrolled {
  color: #f3f7fa;
  background: rgba(5, 18, 29, 0.94);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .is-scrolled .nav-cta {
  color: var(--white);
  background: var(--brand);
}

html[data-theme="dark"] .is-scrolled .theme-toggle {
  border-color: rgba(255, 255, 255, 0.17);
  color: #f3f7fa;
  background: rgba(10, 29, 44, 0.94);
}

.language-switcher {
  position: relative;
  z-index: 4;
  flex: 0 0 auto;
}

.language-trigger {
  min-width: 78px;
  min-height: 44px;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.is-scrolled .language-trigger {
  border-color: var(--line);
  color: var(--navy);
  background: var(--surface);
}

.language-trigger:hover,
.language-trigger[aria-expanded="true"] {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.18);
}

.is-scrolled .language-trigger:hover,
.is-scrolled .language-trigger[aria-expanded="true"] {
  border-color: rgba(146, 6, 15, 0.3);
  background: var(--brand-pale);
}

.language-trigger .language-flag {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(4, 22, 39, 0.15);
}

.language-trigger strong {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.language-trigger i {
  margin-top: -0.15rem;
  font-size: 0.75rem;
  font-style: normal;
  transition: transform 200ms ease;
}

.language-trigger[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  width: 220px;
  padding: 0.45rem;
  border: 1px solid rgba(4, 22, 39, 0.1);
  border-radius: 0.85rem;
  display: grid;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 50px rgba(4, 22, 39, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-7px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.language-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu > button {
  width: 100%;
  padding: 0.72rem;
  border: 0;
  border-radius: 0.6rem;
  display: grid;
  grid-template-columns: 30px 1fr 18px;
  align-items: center;
  gap: 0.6rem;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.language-menu > button:hover,
.language-menu > button.active {
  background: #f6e9ea;
}

.language-menu > button > img {
  width: 28px;
  height: 19px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(4, 22, 39, 0.12);
}

.language-menu > button > span:nth-child(2) {
  display: grid;
}

.language-menu strong {
  font-size: 0.68rem;
}

.language-menu small {
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.58rem;
}

.language-menu i {
  color: var(--brand);
  font-size: 0.7rem;
  font-style: normal;
}

.menu-toggle,
.mobile-panel {
  display: none;
}

/* Common */
.eyebrow,
.hero-kicker,
.overline,
.story-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--brand);
  font-family: "Manrope", var(--font-geist), sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span,
.hero-kicker span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 680px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.section-row h2,
.package-note h2,
.itinerary-head h2,
.overview-grid h2,
.includes-copy h2,
.contact-details h2,
.map-shell h2,
.related-section h2,
.related-stories h2 {
  margin: 0.85rem 0 1rem;
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-heading > p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.section-heading.center > p {
  margin-inline: auto;
}

.section-row {
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}

.section-row .arrow-link {
  flex: 0 0 auto;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--navy);
  font-family: "Manrope", var(--font-geist), sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.arrow-link i {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brand);
  font-style: normal;
  transition: transform 220ms ease, color 220ms ease, background 220ms ease;
}

.arrow-link:hover i {
  color: var(--white);
  background: var(--brand);
  transform: translateX(3px);
}

.arrow-link.light {
  color: var(--white);
}

.arrow-link.light i {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.section-action {
  margin-top: 2.7rem;
  display: flex;
  justify-content: center;
}

.primary-button {
  min-height: 50px;
  padding: 0.8rem 1.35rem;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--white);
  background: var(--brand);
  font-family: "Manrope", var(--font-geist), sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.primary-button i {
  font-style: normal;
}

/* Homepage hero */
.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  height: min(880px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  touch-action: pan-y;
}

.hero-slides,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 900ms ease, visibility 900ms;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--hero-position);
  transform: scale(1.015);
}

.hero-slide.is-active img {
  animation: hero-drift 9s ease-out both;
}

.hero-shade {
  z-index: -1;
  background: var(--hero-overlay-left);
}

.hero-align-right .hero-shade {
  background: var(--hero-overlay-right);
}

@keyframes hero-drift {
  from { transform: scale(1.08); }
  to { transform: scale(1.015); }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-shell {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
  padding-bottom: 6rem;
}

.hero-copy {
  max-width: 690px;
  animation: hero-copy-in 650ms var(--ease) both;
}

.hero-align-right .hero-copy {
  margin-left: auto;
}

.hero-kicker {
  width: fit-content;
  margin-bottom: 1.3rem;
  padding: 0.46rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(146, 6, 15, 0.25);
}

.bff-hero-widget .hero-copy h1 {
  margin: 0 0 1.35rem;
  max-width: 680px;
  font-size: clamp(2.9rem, 4.5vw, 4.35rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.bff-hero-widget .hero-copy > p {
  max-width: 585px;
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.65;
}

html:lang(ms-MY) .bff-hero-widget .hero-copy h1,
html:lang(zh-CN) .bff-hero-widget .hero-copy h1 {
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-actions a {
  min-height: 52px;
  padding: 0.8rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.hero-actions a:first-child {
  border-color: var(--brand);
  background: var(--brand);
}

.hero-actions a:last-child {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-actions a:hover {
  transform: translateY(-2px);
}

.hero-actions a:last-child:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.16);
}

.hero-actions span {
  font-size: 1rem;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: clamp(1.5rem, 4vw, 3rem);
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  pointer-events: none;
}

.hero-pagination,
.hero-arrows {
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.hero-pagination {
  gap: 0.75rem;
}

.hero-pagination button {
  min-width: 44px;
  padding: 0.55rem 0;
  border: 0;
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  font-family: "Manrope", sans-serif;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 220ms ease;
}

.hero-pagination button i {
  position: relative;
  width: 44px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.hero-pagination button i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-pagination button.is-active {
  color: var(--white);
}

.hero-pagination button.is-active i::after {
  animation: hero-progress 7s linear both;
}

.home-hero.is-paused .hero-pagination button.is-active i::after {
  animation-play-state: paused;
}

.hero-arrows {
  gap: 0.6rem;
}

.hero-arrows button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(4, 22, 39, 0.18);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.hero-arrows button:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.hero-pagination button:focus-visible,
.hero-arrows button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.hero-search-bar {
  width: min(100%, 1010px);
  min-height: 88px;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px);
}

.search-field {
  min-width: 0;
  padding: 0.5rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-right: 1px solid rgba(4, 22, 39, 0.11);
}

.search-field > span {
  color: var(--brand);
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.search-field p {
  min-width: 0;
  margin: 0;
  display: grid;
}

.search-field small {
  margin-bottom: 0.15rem;
  color: #80878c;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-field strong {
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-search-bar > a {
  min-height: 68px;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 220ms ease, transform 220ms ease;
}

.hero-search-bar > a:hover {
  background: var(--brand-dark);
  transform: scale(0.98);
}

/* Curated cards */
.curated-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.curated-card {
  position: relative;
  min-height: 0;
  height: 260px;
  grid-column: auto;
  border-radius: 0.85rem;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.curated-card:nth-child(1),
.curated-card:nth-child(4) {
  grid-column: span 3;
}

.curated-card:nth-child(2),
.curated-card:nth-child(3) {
  grid-column: span 2;
}

.curated-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.curated-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 22, 39, 0.86), transparent 60%);
}

.curated-card:hover img {
  transform: scale(1.045);
}

.curated-card > div {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem;
}

.curated-card > div > span {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--brand);
  font-family: "Manrope", sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.curated-card h3 {
  margin: 0 0 0.3rem;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: -0.035em;
}

.curated-card p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
}

/* Package cards */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.home-package-grid {
  margin-top: 3rem;
}

.package-card {
  min-width: 0;
  border: 1px solid rgba(4, 22, 39, 0.12);
  border-radius: 0.85rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(4, 22, 39, 0.06);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.package-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.package-image {
  position: relative;
  height: 210px;
  display: block;
  overflow: hidden;
  background: var(--surface-high);
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.package-card:hover .package-image img {
  transform: scale(1.04);
}

.package-image-category {
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  color: var(--white);
  background: #0b389f;
  font-family: "Manrope", sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
}

.package-copy {
  min-height: 300px;
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-copy h3 {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.package-location {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.38rem;
  color: var(--muted);
  font-size: 0.68rem;
}

.package-location span {
  color: var(--navy);
  font-size: 0.85rem;
}

.package-summary {
  margin-bottom: 0.85rem;
  color: #454c51;
  font-size: 0.78rem;
  line-height: 1.55;
}

.package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.package-tags span {
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  color: #08378d;
  background: #eaf5fa;
  font-size: 0.6rem;
  font-weight: 600;
}

.package-card-footer {
  padding-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.package-card-footer strong {
  color: #0b389f;
  font-size: 0.84rem;
}

.package-card-footer > a {
  min-height: 40px;
  padding: 0.65rem 0.95rem;
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--brand);
  font-family: "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  transition: background 200ms ease, transform 200ms ease;
}

.package-card-footer > a:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

/* Features and planning */
.feature-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem 2.5rem;
}

.feature-grid article {
  text-align: center;
}

.feature-grid i {
  width: 66px;
  height: 66px;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(146, 6, 15, 0.16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: rgba(146, 6, 15, 0.07);
  box-shadow: 0 12px 30px rgba(146, 6, 15, 0.08);
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
  font-style: normal;
}

.feature-grid h3 {
  margin-bottom: 0.65rem;
  color: var(--navy);
  font-size: 1.02rem;
}

.feature-grid p {
  max-width: 330px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.8rem;
}

.planning-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 1.25rem;
}

.planning-visual {
  position: relative;
  min-height: 610px;
  padding: clamp(2rem, 4vw, 3.75rem);
  border-radius: 1.15rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(3, 29, 56, 0.28), rgba(3, 29, 56, 0.9)),
    url("../images/product-scuba.webp") 58% center / cover no-repeat;
  box-shadow: 0 24px 60px rgba(4, 22, 39, 0.14);
}

.planning-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.planning-visual-copy,
.planning-assurance {
  position: relative;
  z-index: 1;
}

.planning-visual h2 {
  max-width: 540px;
  margin: 1rem 0 1.15rem;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.planning-visual-copy > p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.planning-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.planning-assurance span {
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(4, 22, 39, 0.35);
  font-family: "Manrope", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.planning-assurance b {
  margin-right: 0.45rem;
  color: #ffabb1;
}

.planning-list {
  display: grid;
  gap: 0.85rem;
}

.planning-list article {
  position: relative;
  min-height: 145px;
  padding: 1.4rem 1.5rem 1.45rem 5.4rem;
  border: 1px solid rgba(4, 22, 39, 0.09);
  border-radius: 0.9rem;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(4, 22, 39, 0.04);
  transition: transform 250ms var(--ease), border-color 250ms ease, box-shadow 250ms ease;
}

.planning-list article:hover {
  border-color: rgba(146, 6, 15, 0.26);
  box-shadow: 0 18px 42px rgba(4, 22, 39, 0.08);
  transform: translateX(5px);
}

.planning-question-top > b {
  position: absolute;
  left: 1.4rem;
  top: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
}

.planning-question-top > span {
  color: var(--brand);
  font-family: "Manrope", sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.planning-list h3 {
  margin: 0.35rem 0 0.45rem;
  color: var(--navy);
  font-size: 1.08rem;
}

.planning-list article p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.planning-help {
  min-height: 122px;
  padding: 1.4rem 1.5rem;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--white);
  background: var(--navy);
}

.planning-help p {
  max-width: 250px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
}

.planning-help .arrow-link {
  flex: 0 0 auto;
  color: var(--white);
}

/* Journal */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--white);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  position: relative;
  height: 245px;
  display: block;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.blog-card:hover .blog-image img {
  transform: scale(1.04);
}

.blog-image > span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.38rem 0.66rem;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  font-family: "Manrope", sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.blog-copy {
  padding: 1.5rem;
}

.blog-meta,
.article-meta {
  margin-bottom: 0.75rem;
  color: var(--brand);
  font-family: "Manrope", sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-copy h3 {
  margin-bottom: 0.75rem;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.35;
}

.blog-copy > p:not(.blog-meta) {
  color: var(--muted);
  font-size: 0.8rem;
}

/* CTA and footer */
.cta-band {
  position: relative;
  min-height: 570px;
  padding-block: clamp(5.5rem, 8vw, 8rem);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 42, 99, 0.97) 0%, rgba(4, 68, 139, 0.88) 48%, rgba(5, 104, 183, 0.68) 100%),
    url("../images/product-scuba.webp") center 48% / cover no-repeat;
}

.cta-band-grid {
  position: relative;
  z-index: 1;
  min-height: 330px;
  display: flex;
  align-items: center;
}

.cta-band .eyebrow {
  color: #71e9ff;
}

.cta-band h2 {
  max-width: 720px;
  margin: 1rem 0 0;
  font-size: clamp(2.1rem, 3.3vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.cta-band-copy > p {
  max-width: 610px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.cta-band-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-band-actions a {
  min-width: 180px;
  min-height: 54px;
  padding: 0.85rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.cta-band-actions a:first-child {
  border-color: var(--brand);
  background: var(--brand);
}

.cta-band-actions a:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.site-footer {
  padding: 5.5rem 0 1.7rem;
  color: var(--white);
  background: var(--navy);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 5rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.24);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.footer-brand p,
.footer-newsletter p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.79rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.7fr 0.8fr 1.4fr;
  gap: 2rem;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.footer-links span {
  margin-bottom: 0.55rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  transition: color 200ms ease, transform 200ms ease;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-newsletter > a {
  margin-top: 0.4rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.55rem;
}

.footer-newsletter i {
  margin-left: 0.5rem;
  font-style: normal;
}

.footer-bottom {
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.66rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 50;
  right: 2rem;
  bottom: 2rem;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--whatsapp);
	box-shadow: 0 16px 38px rgba(20, 113, 59, 0.34);
  transition: transform 220ms ease;
}

.floating-whatsapp:hover {
  transform: scale(1.06);
}

.floating-whatsapp i {
  font-size: 1.35rem;
  font-style: normal;
}

.floating-whatsapp > svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.floating-whatsapp span {
  position: absolute;
  right: 76px;
  width: max-content;
  padding: 0.55rem 0.8rem;
  border-radius: 0.45rem;
  color: var(--white);
  background: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.floating-whatsapp:hover span {
  opacity: 1;
  transform: translateX(0);
}

/* Inner page hero */
.inner-hero,
.package-detail-hero,
.article-header {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.inner-hero::before,
.package-detail-hero::before,
.article-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(146, 6, 15, 0.38), transparent 34%),
    linear-gradient(135deg, var(--navy), #102d40);
}

.inner-hero {
  min-height: 620px;
  padding: 10.5rem 0 5.5rem;
  display: flex;
  align-items: center;
}

.inner-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  align-items: center;
  gap: 5rem;
}

.inner-hero-copy h1 {
  max-width: 780px;
  margin: 1rem 0 1.2rem;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.inner-hero-copy > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.inner-hero-image {
  position: relative;
  height: 390px;
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.inner-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero-mark {
  color: rgba(255, 255, 255, 0.08);
  font-family: "Manrope", sans-serif;
  font-size: clamp(6rem, 15vw, 13rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;
  text-align: right;
}

/* About */
.about-story-grid {
  display: grid;
  grid-template-columns: 0.3fr 1.7fr;
  gap: 4rem;
}

.story-main h2 {
  max-width: 950px;
  margin-bottom: 2.7rem;
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

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

.story-columns p,
.crew-copy > p {
  color: var(--muted);
  font-size: 0.9rem;
}

.collage-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, 290px);
  gap: 1.5rem;
}

.collage-photo,
.collage-quote {
  border-radius: 0.85rem;
  overflow: hidden;
}

.collage-photo.tall {
  grid-row: span 2;
}

.collage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-quote {
  padding: 2rem;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--brand);
}

.collage-quote span {
  font-family: "Manrope", sans-serif;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collage-quote p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.values-section {
  background: var(--surface-low);
}

.values-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.values-grid article {
  min-height: 300px;
  padding: 1.8rem;
  border-radius: 0.85rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.values-grid b {
  display: block;
  margin-bottom: 4rem;
  color: var(--brand);
  font-size: 0.7rem;
}

.values-grid h3 {
  color: var(--navy);
  font-size: 1.05rem;
}

.values-grid p {
  color: var(--muted);
  font-size: 0.78rem;
}

.crew-grid,
.includes-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.crew-image,
.includes-image {
  height: 610px;
  border-radius: 0.85rem;
  overflow: hidden;
}

.crew-image img,
.includes-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crew-copy dl,
.contact-details dl {
  margin: 2.2rem 0 0;
}

.crew-copy dl > div,
.contact-details dl > div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1rem;
}

.crew-copy dt,
.contact-details dt {
  color: var(--muted);
  font-size: 0.7rem;
}

.crew-copy dd,
.contact-details dd {
  margin: 0;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

/* Listing pages */
.listing-toolbar {
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.filter-pills span {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
}

.filter-pills span.active {
  color: var(--white);
  border-color: var(--brand);
  background: var(--brand);
}

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

.listing-grid .package-image {
  height: 210px;
}

.listing-grid .package-copy {
  min-height: 300px;
}

.package-note {
  color: var(--white);
  background: var(--navy-soft);
}

.package-note-grid {
  display: grid;
  grid-template-columns: 0.4fr 1.2fr 0.8fr;
  align-items: start;
  gap: 3rem;
}

.package-note span {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-note h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.package-note p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

/* Package detail */
.package-detail-hero {
  min-height: 790px;
  padding: 8.6rem 0 4.5rem;
}

.detail-breadcrumb,
.package-detail-grid,
.detail-facts {
  position: relative;
  z-index: 2;
}

.detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
}

.package-detail-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 5rem;
}

.detail-copy h1 {
  margin: 1rem 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.detail-copy > p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.88rem;
}

.detail-copy .detail-tagline {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.detail-copy .primary-button {
  margin-top: 1.1rem;
  color: var(--navy);
  background: var(--white);
}

.detail-image {
  position: relative;
  height: 500px;
  border-radius: 0.85rem;
  overflow: hidden;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-image span {
  position: absolute;
  right: 1.5rem;
  bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Manrope", sans-serif;
  font-size: 5rem;
  font-weight: 800;
}

.detail-facts {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.detail-facts > div {
  padding: 1.2rem 1rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
}

.detail-facts small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.detail-facts strong {
  margin-top: 0.25rem;
  font-size: 0.8rem;
}

.overview-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
}

.highlight-list,
.itinerary-list,
.includes-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.highlight-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
}

.highlight-list b {
  color: var(--brand);
  font-size: 0.68rem;
}

.highlight-list span {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.itinerary-section {
  background: var(--surface-low);
}

.itinerary-head {
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 5rem;
}

.itinerary-head > p {
  color: var(--muted);
  font-size: 0.82rem;
}

.itinerary-list li {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 120px 1fr;
  gap: 1.5rem;
}

.itinerary-list > li > span {
  color: var(--brand);
  font-family: "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
}

.itinerary-list > li > b {
  color: var(--navy);
  font-size: 0.75rem;
}

.itinerary-list h3 {
  margin-bottom: 0.4rem;
  color: var(--navy);
  font-size: 1rem;
}

.itinerary-list p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.includes-copy ul {
  margin: 2rem 0;
}

.includes-copy li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 0.85rem;
  color: var(--navy);
  font-size: 0.82rem;
}

.includes-copy li span {
  color: var(--brand);
}

.fine-print {
  color: var(--muted);
  font-size: 0.72rem;
}

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

/* Blog pages */
.blog-page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-header {
  min-height: 690px;
  padding: 10rem 0 5rem;
  display: flex;
  align-items: center;
}

.article-head-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 5rem;
}

.article-title h1 {
  margin: 1rem 0 1.2rem;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.article-title > p:not(.article-meta) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.article-cover {
  position: relative;
  height: 455px;
  border-radius: 0.85rem;
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-cover span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
}

.article-body-grid {
  padding-block: clamp(5rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: center;
  gap: 5rem;
}

.article-aside {
  position: sticky;
  top: 110px;
  height: fit-content;
  display: grid;
  gap: 0.6rem;
}

.article-aside span {
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-aside a {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
}

.article-body {
  color: #41474b;
}

.article-intro {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
}

.article-body section {
  margin-top: 3.5rem;
}

.article-body h2 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.article-body p,
.article-body li {
  font-size: 0.92rem;
  line-height: 1.8;
}

.article-body li::marker {
  color: var(--brand);
}

.article-note {
  margin: 3.5rem 0 2.5rem;
  padding: 1.6rem;
  border-left: 3px solid var(--brand);
  background: var(--surface-low);
}

.article-note span {
  color: var(--brand);
  font-family: "Manrope", sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-note p {
  margin: 0.7rem 0 0;
}

.related-stories {
  background: var(--surface-low);
}

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

/* Contact */
.contact-grid {
  align-items: start;
}

.contact-details > p:not(.overline) {
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-whatsapp {
  margin-top: 1.5rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  display: inline-flex;
  gap: 0.8rem;
  color: var(--white);
  background: var(--brand);
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.contact-whatsapp i {
  font-style: normal;
}

.contact-form-shell {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-header {
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.form-header span {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.form-header small {
  color: var(--muted);
  font-size: 0.62rem;
}

.contact-form,
.contact-form label {
  display: grid;
  gap: 0.65rem;
}

.contact-form {
  gap: 1rem;
}

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

.contact-form label > span {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 0.67rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  outline: 0;
  background: var(--surface);
  font-size: 0.78rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(146, 6, 15, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.form-success {
  margin: 0;
  padding: 0.8rem;
  color: #225c43;
  background: #e4f3eb;
  font-size: 0.72rem;
}

.contact-map {
  padding-block: 5rem;
  color: var(--white);
  background: var(--navy-soft);
}

.map-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 5rem;
}

.map-shell h2 {
  color: var(--white);
}

.map-art {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.85rem;
  overflow: hidden;
  background:
    linear-gradient(30deg, transparent 49%, rgba(255,255,255,.06) 50%, transparent 51%) 0 0 / 80px 80px,
    linear-gradient(120deg, transparent 49%, rgba(255,255,255,.05) 50%, transparent 51%) 0 0 / 110px 110px,
    #112d3e;
}

.map-art i {
  position: absolute;
  left: 52%;
  top: 45%;
  color: var(--brand);
  font-size: 2.2rem;
  font-style: normal;
}

.map-art b,
.map-art small {
  position: absolute;
  left: calc(52% + 2.2rem);
}

.map-art b {
  top: 47%;
  font-size: 0.78rem;
}

.map-art small {
  top: 54%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
}

/* Cohesive inner-page system */
.desktop-nav {
  gap: clamp(0.7rem, 1.25vw, 1.35rem);
}

.desktop-nav a {
  font-size: 0.7rem;
}

.nav-cta {
  min-width: 176px;
}

.inner-hero {
  min-height: 580px;
  padding: 8.5rem 0 4.2rem;
}

.inner-hero::before,
.package-detail-hero::before,
.article-header::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(146, 6, 15, 0.28), transparent 31%),
    linear-gradient(135deg, #041627 0%, #0a2d45 100%);
}

.inner-hero-grid {
  grid-template-columns: 0.94fr 1.06fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.inner-hero-copy h1 {
  max-width: 690px;
  margin: 0.9rem 0 1.15rem;
  font-size: clamp(2.55rem, 4.15vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.inner-hero-copy > p {
  max-width: 560px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.inner-hero-image {
  height: 365px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.15rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.inner-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 22, 39, 0.38));
  pointer-events: none;
}

.story-main h2 {
  max-width: 900px;
  font-size: clamp(2.1rem, 3.4vw, 3.45rem);
}

.collage-photo,
.collage-quote,
.crew-image,
.includes-image {
  border-radius: 1.1rem;
}

.collage-photo img,
.crew-image img,
.includes-image img {
  transition: transform 600ms var(--ease);
}

.collage-photo:hover img,
.crew-image:hover img,
.includes-image:hover img {
  transform: scale(1.035);
}

.values-grid article {
  min-height: 270px;
  border: 1px solid rgba(4, 22, 39, 0.08);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(4, 22, 39, 0.045);
}

.values-grid b {
  width: 42px;
  height: 42px;
  margin-bottom: 3.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand);
}

.crew-image,
.includes-image {
  height: 540px;
}

.listing-toolbar {
  margin-bottom: 2.6rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.filter-pills span {
  padding: 0.62rem 0.85rem;
  background: transparent;
}

.package-note {
  position: relative;
  background: linear-gradient(120deg, var(--navy), #123a55);
}

.package-note::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--brand);
}

.package-note h2 {
  font-size: clamp(1.9rem, 3vw, 2.85rem);
}

.package-detail-hero {
  min-height: 720px;
  padding: 8.2rem 0 4rem;
}

.package-detail-grid {
  margin-top: 1.6rem;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.detail-copy h1 {
  font-size: clamp(2.6rem, 4.25vw, 4.35rem);
  line-height: 1.04;
}

.detail-image {
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.15rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.detail-facts {
  margin-top: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.85rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.detail-facts > div {
  padding: 1rem 1.2rem;
}

.overview-grid,
.includes-grid,
.contact-grid {
  gap: clamp(3rem, 6vw, 6rem);
}

.highlight-list li,
.itinerary-list li {
  transition: background 220ms ease, padding 220ms ease;
}

.highlight-list li:hover,
.itinerary-list li:hover {
  padding-inline: 1rem;
  background: rgba(146, 6, 15, 0.035);
}

.article-header {
  min-height: 650px;
  padding: 8.8rem 0 4.5rem;
}

.article-head-grid {
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.article-title h1 {
  font-size: clamp(2.45rem, 4vw, 4.15rem);
  line-height: 1.06;
}

.article-cover {
  height: 415px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.15rem;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.22);
}

.article-intro {
  font-size: 1.15rem;
}

.article-body h2 {
  font-size: 1.5rem;
}

.blog-card {
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(4, 22, 39, 0.045);
}

.blog-image {
  height: 220px;
}

.blog-copy {
  min-height: 315px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.blog-copy .arrow-link {
  margin-top: auto;
}

.contact-section {
  background: linear-gradient(180deg, var(--surface) 0%, #eef3f5 100%);
}

.contact-details h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.contact-whatsapp {
  border-radius: 0.55rem;
}

.contact-form-shell {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 1.1rem;
  box-shadow: 0 22px 55px rgba(4, 22, 39, 0.1);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 50px;
  border-radius: 0.65rem;
  background: #f8fafb;
}

.contact-map {
  background: linear-gradient(120deg, var(--navy), #123d58);
}

.map-art {
  border-radius: 1.1rem;
}

/* Gallery */
.gallery-section {
  background: #f4f6f7;
}

.gallery-intro,
.events-toolbar {
  margin-bottom: 3rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}

.gallery-count {
  flex: 0 0 auto;
  display: grid;
  text-align: right;
}

.gallery-count strong {
  color: var(--brand);
  font-size: 2.4rem;
  line-height: 1;
}

.gallery-count span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 12px 34px rgba(4, 22, 39, 0.08);
}

.gallery-item.gallery-wide {
  grid-column: span 7;
}

.gallery-item.gallery-standard {
  grid-column: span 5;
}

.gallery-item.gallery-tall {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item:nth-child(6),
.gallery-item:nth-child(7) {
  grid-column: span 4;
}

.gallery-item:nth-child(8) {
  grid-column: span 8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease), opacity 350ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
	background: var(--media-overlay);
}

.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 1.25rem 1.15rem;
  display: grid;
  color: var(--white);
}

.gallery-item figcaption span {
  margin-bottom: 0.25rem;
  color: #ffb3b8;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-item figcaption strong {
  font-size: 1rem;
}

.gallery-item:hover img {
  opacity: 0.9;
  transform: scale(1.045);
}

/* Upcoming events */
.events-section {
  background: #f6f7f8;
}

.event-legend {
  max-width: 330px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 0.75rem;
  color: var(--muted);
  font-size: 0.62rem;
}

.event-legend span,
.event-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.event-legend i {
  margin-left: 0.45rem;
  background: #c49318;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.event-card {
  min-width: 0;
  border: 1px solid rgba(4, 22, 39, 0.1);
  border-top: 4px solid #174e84;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(4, 22, 39, 0.055);
  transition: transform 280ms var(--ease), box-shadow 280ms ease;
}

.event-card:hover {
  box-shadow: 0 22px 52px rgba(4, 22, 39, 0.11);
  transform: translateY(-6px);
}

.event-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.event-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 22, 39, 0.04), rgba(4, 22, 39, 0.35));
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-date {
  position: absolute;
  z-index: 2;
  left: 1rem;
  top: 1rem;
  width: 64px;
  height: 68px;
  border-radius: 0.65rem;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(4, 22, 39, 0.18);
}

.event-date strong {
  font-size: 1.45rem;
  line-height: 1;
}

.event-date span {
  margin-top: 0.2rem;
  color: var(--brand);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.event-status {
  position: absolute;
  z-index: 2;
  right: 1rem;
  top: 1rem;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--brand);
  font-size: 0.58rem;
  font-weight: 800;
}

.event-status.soon {
  color: #3d2c00;
  background: #f1c75b;
}

.event-copy {
  padding: 1.35rem;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.event-category {
  margin-bottom: 0.55rem;
  color: #174e84;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-copy h3 {
  margin-bottom: 0.65rem;
  color: var(--navy);
  font-size: 1.12rem;
}

.event-summary {
  color: var(--muted);
  font-size: 0.76rem;
}

.event-meta {
  margin: 0.5rem 0 0;
  padding: 0.8rem 0;
  border-top: 1px dashed rgba(4, 22, 39, 0.18);
  border-bottom: 1px dashed rgba(4, 22, 39, 0.18);
}

.event-meta div {
  padding: 0.25rem 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0.5rem;
}

.event-meta dt {
  color: var(--muted);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.event-meta dd {
  margin: 0;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 600;
}

.event-footer {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.event-footer > span {
  color: var(--muted);
  font-size: 0.62rem;
}

.event-footer a {
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--brand);
  border-radius: 0.5rem;
  color: var(--brand);
  font-size: 0.65rem;
  font-weight: 800;
}

.event-footer a:hover {
  color: var(--white);
  background: var(--brand);
}

.event-note {
  margin-top: 3rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 1rem;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 4rem;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy), #154967);
  box-shadow: 0 22px 55px rgba(4, 22, 39, 0.14);
}

.event-note span {
  color: #ffabb1;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-note h2 {
  max-width: 720px;
  margin: 0.7rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
}

.event-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

/* Dark theme */
html[data-theme="dark"] body {
  background: var(--surface);
  color: var(--ink);
}

html[data-theme="dark"] body.elementor-default {
  --e-global-color-primary: var(--text-heading);
  --e-global-color-secondary: var(--text-muted);
  --e-global-color-text: var(--text-body);
  --e-global-color-accent: var(--accent-text);
}

html[data-theme="dark"] .section-heading h2,
html[data-theme="dark"] .section-row h2,
html[data-theme="dark"] .package-copy h3,
html[data-theme="dark"] .blog-copy h3,
html[data-theme="dark"] .event-copy h3,
html[data-theme="dark"] .contact-details h2,
html[data-theme="dark"] .story-main h2,
html[data-theme="dark"] .values-grid h3,
html[data-theme="dark"] .planning-list h3,
html[data-theme="dark"] .crew-copy dd,
html[data-theme="dark"] .contact-details dd,
html[data-theme="dark"] .article-aside a,
html[data-theme="dark"] .article-intro,
html[data-theme="dark"] .article-body h2,
html[data-theme="dark"] .form-header span,
html[data-theme="dark"] .contact-form label > span,
html[data-theme="dark"] .event-meta dd,
html[data-theme="dark"] .arrow-link:not(.light) {
  color: var(--text-heading);
}

html[data-theme="dark"] .site-main,
html[data-theme="dark"] .article-body,
html[data-theme="dark"] .package-summary,
html[data-theme="dark"] .includes-copy li,
html[data-theme="dark"] .highlight-list span {
  color: var(--text-body);
}

html[data-theme="dark"] .home-hero,
html[data-theme="dark"] .inner-hero,
html[data-theme="dark"] .package-detail-hero,
html[data-theme="dark"] .article-header,
html[data-theme="dark"] .planning-visual,
html[data-theme="dark"] .planning-help,
html[data-theme="dark"] .cta-band,
html[data-theme="dark"] .package-note,
html[data-theme="dark"] .contact-map,
html[data-theme="dark"] .event-note,
html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .collage-quote,
html[data-theme="dark"] .gallery-item {
  color: var(--white);
}

html[data-theme="dark"] .home-hero h1,
html[data-theme="dark"] .inner-hero h1,
html[data-theme="dark"] .inner-hero h2,
html[data-theme="dark"] .package-detail-hero h1,
html[data-theme="dark"] .article-header h1,
html[data-theme="dark"] .planning-visual h2,
html[data-theme="dark"] .cta-band h2,
html[data-theme="dark"] .package-note h2,
html[data-theme="dark"] .contact-map h2,
html[data-theme="dark"] .event-note h2,
html[data-theme="dark"] .site-footer h2,
html[data-theme="dark"] .site-footer h3,
html[data-theme="dark"] .collage-quote h2,
html[data-theme="dark"] .gallery-item h3 {
  color: var(--white);
}

html[data-theme="dark"] .surface-muted,
html[data-theme="dark"] .related-section,
html[data-theme="dark"] .related-stories,
html[data-theme="dark"] .gallery-section,
html[data-theme="dark"] .events-section,
html[data-theme="dark"] .values-section {
  background: var(--surface-low);
}

html[data-theme="dark"] .curated-section,
html[data-theme="dark"] .why-section,
html[data-theme="dark"] .journal-preview,
html[data-theme="dark"] .about-story,
html[data-theme="dark"] .about-collage,
html[data-theme="dark"] .crew-section,
html[data-theme="dark"] .blog-listing,
html[data-theme="dark"] .package-listing,
html[data-theme="dark"] .experience-overview,
html[data-theme="dark"] .itinerary-section,
html[data-theme="dark"] .includes-section {
  background: var(--bg-page);
}

html[data-theme="dark"] .contact-section {
  background: linear-gradient(180deg, var(--bg-page), var(--bg-section));
}

html[data-theme="dark"] .package-card,
html[data-theme="dark"] .blog-card,
html[data-theme="dark"] .event-card,
html[data-theme="dark"] .planning-list article,
html[data-theme="dark"] .values-grid article,
html[data-theme="dark"] .contact-form-shell,
html[data-theme="dark"] .filter-pills span,
html[data-theme="dark"] .event-date {
  border-color: var(--line);
  color: var(--ink);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

html[data-theme="dark"] .package-location span,
html[data-theme="dark"] .package-card-footer strong,
html[data-theme="dark"] .event-category,
html[data-theme="dark"] .blog-meta,
html[data-theme="dark"] .article-meta,
html[data-theme="dark"] .planning-question-top > span,
html[data-theme="dark"] .gallery-count strong {
  color: var(--accent-text);
}

html[data-theme="dark"] .package-tags span {
  color: var(--accent-info);
  background: var(--accent-info-soft);
}

html[data-theme="dark"] .event-meta {
  border-color: var(--border-subtle);
}

html[data-theme="dark"] .feature-grid i,
html[data-theme="dark"] .map-art i {
  border-color: var(--border-subtle);
  color: var(--accent-text);
  background: var(--accent-info-soft);
}

html[data-theme="dark"] .curated-card::after,
html[data-theme="dark"] .planning-visual::after,
html[data-theme="dark"] .inner-hero-image::after,
html[data-theme="dark"] .event-image::after {
  background: var(--media-overlay);
}

html[data-theme="dark"] .curated-card h3,
html[data-theme="dark"] .curated-card p,
html[data-theme="dark"] .gallery-item figcaption,
html[data-theme="dark"] .event-image,
html[data-theme="dark"] .planning-help .arrow-link,
html[data-theme="dark"] .cta-band .arrow-link {
  color: var(--white);
}

html[data-theme="dark"] .article-note,
html[data-theme="dark"] .bff-empty-state,
html[data-theme="dark"] .bff-empty {
  border-color: var(--border-subtle);
  color: var(--text-body);
  background: var(--bg-card);
}

html[data-theme="dark"] .package-card:hover,
html[data-theme="dark"] .blog-card:hover,
html[data-theme="dark"] .event-card:hover,
html[data-theme="dark"] .planning-list article:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-lg);
}

html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form select,
html[data-theme="dark"] .contact-form textarea {
  border-color: var(--line);
  color: var(--ink);
  background: var(--bg-control);
}

html[data-theme="dark"] .contact-form input::placeholder,
html[data-theme="dark"] .contact-form textarea::placeholder {
  color: #71818e;
}

html[data-theme="dark"] .mobile-panel {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #0a1d2c;
}

html[data-theme="dark"] .mobile-panel a {
  border-color: var(--line);
}

html[data-theme="dark"] .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .floating-whatsapp {
  background: var(--whatsapp);
  box-shadow: 0 16px 38px rgba(20, 113, 59, 0.38);
}

@media (max-height: 760px) and (min-width: 861px) {
  .home-hero {
    min-height: 680px;
  }

  .hero-shell {
    padding-top: 6.25rem;
    padding-bottom: 5.25rem;
  }

  .bff-hero-widget .hero-copy h1 {
    font-size: clamp(2.7rem, 4vw, 3.85rem);
  }
}

/* Responsive */
@media (max-width: 1120px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 3rem), 1280px);
  }

  .brand {
    min-width: 72px;
  }

  .brand-copy {
    display: none;
  }

  .desktop-nav {
    gap: 0.72rem;
  }

  .nav-cta {
    min-width: 148px;
    padding-inline: 0.9rem;
  }

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

  .home-package-grid .package-card:last-child,
  .blog-grid .blog-card:last-child {
    grid-column: span 2;
  }

  .home-package-grid .package-card:last-child .package-image {
    height: 210px;
  }

  .blog-grid .blog-card:last-child .blog-image {
    height: 330px;
  }

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

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

  .curated-card:nth-child(1),
  .curated-card:nth-child(2),
  .curated-card:nth-child(3),
  .curated-card:nth-child(4) {
    grid-column: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 2rem), 1280px);
  }

  .site-header {
    background: rgba(4, 22, 39, 0.52);
    backdrop-filter: blur(16px);
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand img,
  .is-scrolled .brand img {
    width: 48px;
    height: 48px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .language-switcher {
    margin-left: auto;
  }

  .theme-toggle {
    width: 42px;
    height: 42px;
  }

  .language-trigger {
    min-width: 74px;
    min-height: 42px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    display: grid;
    place-content: center;
    gap: 6px;
    color: inherit;
    background: transparent;
  }

  .is-scrolled .menu-toggle {
    border-color: var(--line);
  }

  .menu-toggle span {
    width: 18px;
    height: 1.5px;
    display: block;
    background: currentColor;
    transition: transform 200ms ease;
  }

  .menu-toggle.open span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-toggle.open span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-panel {
    position: absolute;
    inset: 100% 1rem auto;
    padding: 0;
    border-radius: 0.75rem;
    display: grid;
    color: var(--navy);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .mobile-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-panel nav {
    padding: 0.8rem;
    display: grid;
  }

  .mobile-panel a {
    padding: 0.9rem 0.7rem;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
  }

  .mobile-panel a:last-child {
    border-bottom: 0;
    color: var(--brand);
  }

  .mobile-panel small {
    color: var(--muted);
    font-size: 0.6rem;
  }

  .mobile-panel span {
    font-family: "Manrope", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
  }

  .home-hero {
    min-height: 680px;
  }

  .hero-align-right .hero-copy {
    margin-left: 0;
  }

  .hero-align-right .hero-shade {
		background: var(--hero-overlay-left);
  }

  .bff-hero-widget .hero-copy h1 {
    max-width: 650px;
  }

  .section-row,
  .listing-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .filter-pills {
    justify-content: flex-start;
  }

  .curated-card {
    min-height: 0;
    height: 260px;
    grid-column: auto;
  }

  .planning-layout {
    grid-template-columns: 1fr;
  }

  .planning-visual {
    min-height: 520px;
  }

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

  .footer-newsletter {
    grid-column: span 2;
  }

  .inner-hero-grid,
  .package-detail-grid,
  .article-head-grid,
  .overview-grid,
  .crew-grid,
  .includes-grid,
  .contact-grid,
  .map-shell {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .inner-hero {
    min-height: 0;
    padding: 7.5rem 0 4.5rem;
  }

  .inner-hero-image,
  .detail-image,
  .article-cover {
    height: 380px;
  }

  .inner-hero-mark {
    display: none;
  }

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

  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 380px 270px;
  }

  .collage-photo.tall {
    grid-row: auto;
  }

  .collage-quote {
    grid-row: auto;
  }

  .package-note-grid,
  .itinerary-head {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .package-detail-hero {
    min-height: 0;
  }

  .article-header {
    min-height: 0;
  }

  .article-body-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .article-aside {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .article-aside span {
    width: 100%;
  }

  .gallery-intro,
  .events-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .gallery-count {
    text-align: left;
  }

  .event-legend {
    justify-content: flex-start;
  }

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

  .event-card:last-child {
    grid-column: span 2;
  }

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

@media (max-width: 620px) {
  .section-space {
    padding-block: 4.8rem;
  }

  .home-hero {
    min-height: 720px;
  }

  .hero-slide img {
    object-position: var(--hero-mobile-position);
  }

  .hero-shade,
  .hero-align-right .hero-shade {
		background: var(--hero-overlay-left);
  }

  .hero-shell {
    padding-top: 5.5rem;
    padding-bottom: 7.5rem;
  }

  .bff-hero-widget .hero-copy h1 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
  }

  .bff-hero-widget .hero-copy > p {
    margin-bottom: 2rem;
    font-size: 0.9rem;
  }

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

  .hero-actions a {
    justify-content: center;
  }

  .hero-controls {
    bottom: 1.15rem;
    gap: 1rem;
  }

  .hero-pagination {
    gap: 0.4rem;
  }

  .hero-pagination button {
    min-width: 32px;
    font-size: 0.58rem;
  }

  .hero-pagination button i {
    width: 32px;
  }

  .hero-arrows {
    gap: 0.4rem;
  }

  .hero-arrows button {
    width: 40px;
    height: 40px;
  }

  .section-heading h2,
  .section-row h2 {
    font-size: 2.1rem;
  }

  .curated-grid,
  .package-grid,
  .blog-grid,
  .feature-grid,
  .values-grid,
  .listing-grid,
  .related-grid,
  .related-blog-grid {
    grid-template-columns: 1fr;
  }

  .curated-card {
    min-height: 0;
    height: 250px;
    grid-column: auto;
  }

  .home-package-grid .package-card:last-child,
  .blog-grid .blog-card:last-child,
  .footer-newsletter {
    grid-column: auto;
  }

  .home-package-grid .package-card:last-child .package-image,
  .blog-grid .blog-card:last-child .blog-image,
  .package-image,
  .listing-grid .package-image {
    height: 255px;
  }

  .package-copy {
    min-height: 290px;
  }

  .feature-grid {
    gap: 3rem;
  }

  .planning-visual {
    min-height: 460px;
    padding: 1.6rem;
  }

  .cta-band-grid {
    min-height: 300px;
  }

  .cta-band {
    min-height: 0;
  }

  .cta-band-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-band-actions a {
    width: 100%;
  }

  .planning-list article {
    min-height: 0;
    padding: 1.35rem 1.3rem 1.4rem 4.85rem;
  }

  .planning-question-top > b {
    left: 1.2rem;
    top: 1.3rem;
    width: 44px;
    height: 44px;
  }

  .planning-help {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .inner-hero {
    min-height: 650px;
    padding-top: 8rem;
  }

  .inner-hero-copy h1,
  .detail-copy h1,
  .article-title h1 {
    font-size: 2.75rem;
  }

  .inner-hero-image,
  .detail-image,
  .article-cover,
  .crew-image,
  .includes-image {
    height: 320px;
  }

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

  .collage-grid {
    grid-template-rows: repeat(4, 300px);
  }

  .crew-copy dl > div,
  .contact-details dl > div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .package-detail-hero,
  .article-header {
    min-height: auto;
  }

  .detail-facts {
    grid-template-columns: 1fr;
  }

  .detail-facts > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .itinerary-list li {
    grid-template-columns: 45px 1fr;
  }

  .itinerary-list li > div {
    grid-column: 2;
  }

  .article-body-grid {
    padding-block: 4rem;
  }

  .contact-form-shell {
    padding: 1.25rem;
  }

  .form-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-art {
    min-height: 300px;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-item.gallery-wide,
  .gallery-item.gallery-standard,
  .gallery-item.gallery-tall,
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7),
  .gallery-item:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
  }

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

  .event-card:last-child {
    grid-column: auto;
  }

  .event-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-footer a {
    width: 100%;
    text-align: center;
  }
}

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

/* WordPress and Elementor integration */
.site-main {
  min-height: 55vh;
}

.bff-page-content {
  margin: 0;
}

.bff-page-content:not(:has(.elementor)) {
  width: min(calc(100% - 6rem), 920px);
  margin-inline: auto;
  padding-block: 10rem 7rem;
}

.bff-fallback-content {
  padding-top: 10rem;
}

.bff-fallback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.bff-empty-state {
  grid-column: 1 / -1;
  padding: 3rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  text-align: center;
}

.admin-bar .site-header {
  top: 32px;
}

.elementor-page .site-main {
  overflow: hidden;
}

.elementor-widget-bff-hero-slider,
.elementor-widget-bff-hero-slider > .elementor-widget-container {
  height: 100%;
}

.elementor-widget-bff-page-sections,
.elementor-widget-bff-page-sections > .elementor-widget-container {
  width: 100%;
}

/*
 * Elementor's global image rule sets height back to auto. These widgets use
 * fixed-ratio media frames, so keep their images filling the frame exactly as
 * they do in the original React site.
 */
.elementor-widget-bff-hero-slider .hero-slide img,
.elementor-widget-bff-page-sections .curated-card img,
.elementor-widget-bff-page-sections .package-image img,
.elementor-widget-bff-page-sections .blog-image img,
.elementor-widget-bff-page-sections .inner-hero-image img,
.elementor-widget-bff-page-sections .collage-photo img,
.elementor-widget-bff-page-sections .crew-image img,
.elementor-widget-bff-page-sections .includes-image img,
.elementor-widget-bff-page-sections .detail-image img,
.elementor-widget-bff-page-sections .article-cover img,
.elementor-widget-bff-page-sections .gallery-item img,
.elementor-widget-bff-page-sections .event-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.elementor-default,
body.elementor-default .elementor-widget-text-editor,
body.elementor-default .elementor-widget-text-editor p {
  font-family: "Be Vietnam Pro", var(--font-geist), "Segoe UI", sans-serif;
}

body.elementor-default .elementor-heading-title {
  font-family: "Manrope", var(--font-geist), "Segoe UI", sans-serif !important;
}

@media (max-width: 980px) {
  .bff-fallback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 620px) {
  .bff-page-content:not(:has(.elementor)) {
    width: min(calc(100% - 2rem), 920px);
  }

  .bff-fallback-grid {
    grid-template-columns: 1fr;
  }
}
