/* ==========================================================================
   Dhanam Holidays - Core stylesheet
   Design tokens are sampled directly from the brand logo
   (navy #021863 / gold #DBA522). Breakpoint rules live in responsive.css.
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand - taken from logo.jpeg */
  --navy-900: #000A2B;
  --navy-800: #01103F;
  --navy-700: #021863;
  --navy-600: #0A2472;
  --navy-500: #12358F;
  --navy-400: #2C55C0;
  --navy-300: #5C7FD8;

  --gold-700: #96690F;
  --gold-600: #B9871A;
  --gold-500: #DBA522;
  --gold-400: #EFC65C;
  --gold-300: #F7E4A8;
  --gold-100: #FBF3DC;

  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;

  /* Neutrals */
  --ink: #0D1426;
  --ink-soft: #414B63;
  --muted: #6B7489;
  --line: #E3E8F1;
  --line-soft: #EEF2F8;
  --surface: #FFFFFF;
  --surface-2: #F6F8FC;
  --surface-3: #EDF2FA;

  /* Typography */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --fs-hero: clamp(2.6rem, 1.35rem + 5.1vw, 5.4rem);
  --fs-h1: clamp(2.1rem, 1.35rem + 3vw, 3.6rem);
  --fs-h2: clamp(1.8rem, 1.25rem + 2.2vw, 2.9rem);
  --fs-h3: clamp(1.25rem, 1.08rem + 0.75vw, 1.6rem);
  --fs-lead: clamp(1.02rem, 0.97rem + 0.28vw, 1.19rem);
  --fs-body: 1rem;
  --fs-sm: 0.9rem;
  --fs-xs: 0.79rem;

  /* Space + shape */
  --container: 1240px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --section-y: clamp(3.75rem, 7vw, 7.5rem);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(2, 24, 99, .06);
  --shadow-sm: 0 4px 14px rgba(2, 24, 99, .07);
  --shadow-md: 0 14px 38px rgba(2, 24, 99, .11);
  --shadow-lg: 0 28px 70px rgba(2, 24, 99, .17);
  --shadow-gold: 0 14px 34px rgba(219, 165, 34, .34);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, .84, .44, 1);
  --t-fast: .2s;
  --t-med: .42s;
  --t-slow: .85s;

  --header-h: 84px;
}

/* ---------- 2. Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.68;
  color: var(--ink-soft);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  color: var(--navy-700);
  letter-spacing: -.015em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--navy-500);
  text-decoration: none;
  transition: color var(--t-fast) ease;
}
a:hover { color: var(--gold-600); }

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

ul, ol { margin: 0 0 1.15rem; padding-left: 1.25rem; }
li { margin-bottom: .45rem; }
strong { color: var(--navy-700); font-weight: 600; }
svg { flex-shrink: 0; }

/* Accessible focus - visible on every interactive element */
:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 2000;
  padding: .85rem 1.5rem;
  background: var(--navy-700);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: top var(--t-fast) ease;
}
.skip-link:focus { top: 0; color: #fff; }


/* ---------- 3. Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }

.section { padding-block: var(--section-y); position: relative; }
.section--tint { background: var(--surface-2); }
.section--flush-top { padding-top: 0; }
.section--deep {
  background: radial-gradient(120% 130% at 15% 0%, var(--navy-600) 0%, var(--navy-700) 42%, var(--navy-900) 100%);
  color: rgba(255, 255, 255, .8);
}
.section--deep h2,
.section--deep h3 { color: #fff; }

.section__head {
  max-width: 720px;
  margin-bottom: clamp(2.2rem, 4vw, 3.6rem);
}
.section__head--center { margin-inline: auto; text-align: center; }
.section__head p { font-size: var(--fs-lead); }
.section__head h2 { margin-bottom: .55rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), rgba(219, 165, 34, .15));
  border-radius: 2px;
}
.section__head--center .eyebrow::after {
  content: "";
  width: 30px;
  height: 2px;
  background: linear-gradient(270deg, var(--gold-500), rgba(219, 165, 34, .15));
  border-radius: 2px;
}
.section--deep .eyebrow { color: var(--gold-400); }

.lead { font-size: var(--fs-lead); color: var(--ink-soft); }
.section--deep .lead { color: rgba(255, 255, 255, .82); }


/* ---------- 4. Buttons ---------- */
.btn {
  --btn-bg: var(--gold-500);
  --btn-fg: var(--navy-900);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.85rem;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .02em;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease),
    background-color var(--t-fast) ease, color var(--t-fast) ease, border-color var(--t-fast) ease;
}
.btn svg { width: 18px; height: 18px; }

/* Sheen sweep micro-interaction */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .55) 50%, transparent 70%);
  transform: translateX(-115%);
  transition: transform .75s var(--ease);
}
.btn:hover::after,
.btn:focus-visible::after { transform: translateX(115%); }

.btn--primary { box-shadow: var(--shadow-gold); }
.btn--primary:hover {
  background: var(--gold-400);
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(219, 165, 34, .44);
}

.btn--navy {
  --btn-bg: var(--navy-700);
  --btn-fg: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--navy:hover {
  background: var(--navy-500);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn--whatsapp {
  --btn-bg: var(--whatsapp);
  --btn-fg: #04301B;
}
.btn--whatsapp:hover {
  background: #2FF07A;
  color: #04301B;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(37, 211, 102, .42);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy-700);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--gold-500);
  background: var(--gold-100);
  transform: translateY(-3px);
}

.btn--glass {
  --btn-bg: rgba(255, 255, 255, .12);
  --btn-fg: #fff;
  border: 1.5px solid rgba(255, 255, 255, .45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.btn--glass:hover {
  --btn-bg: rgba(255, 255, 255, .95);
  --btn-fg: var(--navy-700);
  transform: translateY(-3px);
  border-color: #fff;
}

.btn--sm { padding: .7rem 1.3rem; font-size: var(--fs-xs); }
.btn--block { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: .85rem; }

/* Text link with animated arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--navy-600);
}
.link-arrow svg {
  width: 17px;
  height: 17px;
  transition: transform var(--t-med) var(--ease);
}
.link-arrow:hover { color: var(--gold-600); }
.link-arrow:hover svg { transform: translateX(6px); }
.section--deep .link-arrow { color: var(--gold-400); }

/* ---------- 5. Header & navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  transition: background-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease),
    border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 34px rgba(2, 24, 99, .1);
}
.site-header.is-hidden { transform: translateY(-100%); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-h);
  transition: min-height var(--t-med) var(--ease);
}
.site-header.is-scrolled .header__inner { min-height: 70px; }

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  width: auto;
  height: 54px;
  transition: height var(--t-med) var(--ease);
}
.site-header.is-scrolled .brand img { height: 46px; }

.nav { display: flex; align-items: center; gap: clamp(.2rem, 1.1vw, 1.1rem); }

.nav__link {
  position: relative;
  padding: .55rem .28rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: .18rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-med) var(--ease);
}
.nav__link:hover { color: var(--navy-700); }
.nav__link:hover::after,
.nav__link:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { color: var(--navy-700); font-weight: 600; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.header__cta {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}

/* Animated hamburger */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color var(--t-fast) ease, background-color var(--t-fast) ease;
}
.nav-toggle:hover { border-color: var(--gold-500); }
.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 19px;
  height: 2px;
  margin-left: -9.5px;
  background: var(--navy-700);
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease), opacity .2s ease, width var(--t-med) var(--ease);
}
.nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.nav-toggle span:nth-child(2) { transform: translateY(0); width: 13px; }
.nav-toggle span:nth-child(3) { transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 19px; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(400px, 88vw);
  z-index: 1100;
  padding: calc(var(--header-h) + 1.4rem) clamp(1.4rem, 5vw, 2.2rem) 2.2rem;
  background: linear-gradient(165deg, var(--navy-700) 0%, var(--navy-900) 100%);
  color: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .52s var(--ease), visibility 0s linear .52s;
}
.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform .52s var(--ease), visibility 0s linear 0s;
}

.mobile-nav__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
.mobile-nav__list li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  opacity: 0;
  transform: translateX(26px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.mobile-nav.is-open .mobile-nav__list li { opacity: 1; transform: none; }
.mobile-nav.is-open .mobile-nav__list li:nth-child(1) { transition-delay: .10s; }
.mobile-nav.is-open .mobile-nav__list li:nth-child(2) { transition-delay: .15s; }
.mobile-nav.is-open .mobile-nav__list li:nth-child(3) { transition-delay: .20s; }
.mobile-nav.is-open .mobile-nav__list li:nth-child(4) { transition-delay: .25s; }
.mobile-nav.is-open .mobile-nav__list li:nth-child(5) { transition-delay: .30s; }
.mobile-nav.is-open .mobile-nav__list li:nth-child(6) { transition-delay: .35s; }
.mobile-nav.is-open .mobile-nav__list li:nth-child(7) { transition-delay: .40s; }

.mobile-nav__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.02rem .2rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: #fff;
}
.mobile-nav__list a::after {
  content: "\2192";
  color: var(--gold-400);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--t-fast) ease, transform var(--t-med) var(--ease);
}
.mobile-nav__list a:hover { color: var(--gold-400); }
.mobile-nav__list a:hover::after { opacity: 1; transform: none; }
.mobile-nav__list a[aria-current="page"] { color: var(--gold-400); }

.mobile-nav__contact {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .72);
}
.mobile-nav__contact a {
  display: inline-block;
  padding-block: .25rem;
  color: #fff;
  font-weight: 600;
}
.mobile-nav__contact a:hover { color: var(--gold-400); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0, 10, 43, .55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) ease, visibility 0s linear var(--t-med);
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--t-med) ease, visibility 0s linear 0s;
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(94vh, 880px);
  min-height: min(94svh, 880px);
  padding-top: calc(var(--header-h) + clamp(2.4rem, 6vw, 5rem));
  padding-bottom: clamp(3.4rem, 7vw, 6rem);
  overflow: hidden;
  background: var(--navy-900);
}
.hero__media {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  will-change: transform;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 10, 43, .72) 0%, rgba(0, 10, 43, .42) 38%, rgba(0, 10, 43, .86) 100%),
    linear-gradient(94deg, rgba(2, 24, 99, .82) 0%, rgba(2, 24, 99, .34) 52%, transparent 78%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__content {
  max-width: 760px;
  color: rgba(255, 255, 255, .88);
}

.hero .eyebrow { color: var(--gold-400); }
.hero .eyebrow::before { background: linear-gradient(90deg, var(--gold-400), rgba(239, 198, 92, .2)); }

.hero h1 {
  font-size: var(--fs-hero);
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 40px rgba(0, 10, 43, .45);
}
.hero h1 em {
  display: block;
  font-style: italic;
  background: linear-gradient(100deg, var(--gold-300) 0%, var(--gold-500) 45%, var(--gold-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  max-width: 58ch;
  margin-bottom: 2.1rem;
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, .84);
}
.hero__actions { margin-bottom: 2.4rem; }

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: var(--fs-xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}
.hero__scroll::before {
  content: "";
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, .45);
  border-radius: var(--r-pill);
  background-image: radial-gradient(circle, var(--gold-400) 3px, transparent 3.5px);
  background-repeat: no-repeat;
  background-position: center 8px;
  animation: scroll-dot 2s var(--ease) infinite;
}
@keyframes scroll-dot {
  0%, 100% { background-position: center 8px; opacity: 1; }
  55% { background-position: center 20px; opacity: .35; }
}

/* Hero entrance - staggered */
.hero__content > * { animation: hero-in 1.05s var(--ease) backwards; }
.hero__content > :nth-child(1) { animation-delay: .12s; }
.hero__content > :nth-child(2) { animation-delay: .24s; }
.hero__content > :nth-child(3) { animation-delay: .36s; }
.hero__content > :nth-child(4) { animation-delay: .48s; }
.hero__content > :nth-child(5) { animation-delay: .60s; }
@keyframes hero-in {
  from { opacity: 0; transform: translateY(34px); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}

/* Trust strip beneath hero */
.trust-strip {
  position: relative;
  z-index: 3;
  background: var(--navy-800);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .08);
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1.5rem clamp(.9rem, 2vw, 1.6rem);
  background: var(--navy-800);
  color: rgba(255, 255, 255, .8);
  font-size: var(--fs-sm);
  transition: background-color var(--t-med) var(--ease);
}
.trust-strip__item:hover { background: var(--navy-700); }
.trust-strip__item svg {
  width: 26px;
  height: 26px;
  color: var(--gold-500);
}
.trust-strip__item strong {
  display: block;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
}
.trust-strip__item span {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, .58);
}

/* ---------- 7. Page banner (inner pages) ---------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: radial-gradient(130% 150% at 12% 0%, var(--navy-600) 0%, var(--navy-700) 45%, var(--navy-900) 100%);
  color: rgba(255, 255, 255, .82);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -45%;
  right: -12%;
  width: 62vw;
  height: 62vw;
  max-width: 760px;
  max-height: 760px;
  background: radial-gradient(circle, rgba(219, 165, 34, .22) 0%, transparent 66%);
  border-radius: 50%;
  animation: float-orb 15s ease-in-out infinite;
}
@keyframes float-orb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-34px, 34px, 0) scale(1.08); }
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.page-hero h1 { color: #fff; margin-bottom: .8rem; }
.page-hero p {
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, .8);
  max-width: 60ch;
}

.breadcrumb { margin-bottom: 1.4rem; font-size: var(--fs-xs); }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .55);
}
.breadcrumb li + li::before { content: "/"; color: rgba(255, 255, 255, .3); }
.breadcrumb a {
  display: inline-block;
  padding-block: .2rem;
  color: rgba(255, 255, 255, .75);
}
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb [aria-current="page"] { color: var(--gold-400); }

/* ---------- 8. Grid helpers ---------- */
.grid { display: grid; gap: clamp(1.1rem, 2.2vw, 1.9rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ---------- 9. Reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
  will-change: opacity, transform;
}
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-38px); }
[data-reveal="right"] { transform: translateX(38px); }
[data-reveal="zoom"] { transform: scale(.93); }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}
[data-delay="1"] { transition-delay: .09s; }
[data-delay="2"] { transition-delay: .18s; }
[data-delay="3"] { transition-delay: .27s; }
[data-delay="4"] { transition-delay: .36s; }
[data-delay="5"] { transition-delay: .45s; }
[data-delay="6"] { transition-delay: .54s; }

/* Image mask reveal */
.img-reveal {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.img-reveal img {
  width: 100%;
  transform: scale(1.12);
  transition: transform 1.5s var(--ease);
}
.img-reveal.is-visible img { transform: scale(1); }
.img-reveal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--navy-700);
  transform-origin: right;
  transition: transform 1.05s var(--ease);
}
.img-reveal.is-visible::before { transform: scaleX(0); }

/* ---------- 10. About / media stack ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split__body { min-width: 0; }
.media-stack { position: relative; }
.media-stack__main { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.media-stack__inset {
  position: absolute;
  right: -6%;
  bottom: -12%;
  width: 46%;
  border: 6px solid #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.media-stack__inset img { width: 100%; }
.media-stack::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -22px;
  width: 58%;
  height: 58%;
  border: 2px solid var(--gold-500);
  border-radius: var(--r-lg);
  z-index: -1;
}

.tick-list { list-style: none; margin: 1.6rem 0; padding: 0; display: grid; gap: .8rem; }
.tick-list li {
  position: relative;
  margin: 0;
  padding-left: 2.1rem;
  font-size: var(--fs-sm);
  color: var(--ink-soft);
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .28rem;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--gold-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B9871A' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.section--deep .tick-list li { color: rgba(255, 255, 255, .8); }
.section--deep .tick-list li::before { background-color: rgba(219, 165, 34, .18); }

/* ---------- 11. Service cards ---------- */
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease),
    border-color var(--t-med) var(--ease);
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.15rem;
  border-radius: var(--r-md);
  background: linear-gradient(145deg, var(--navy-600), var(--navy-800));
  color: var(--gold-400);
  transition: transform var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.svc-card__icon svg { width: 27px; height: 27px; }
.svc-card:hover .svc-card__icon {
  transform: rotate(-7deg) scale(1.07);
  background: linear-gradient(145deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
}
.svc-card :is(h2, h3) { margin-bottom: .45rem; font-size: 1.16rem; }
.svc-card p {
  margin-bottom: 1.2rem;
  font-size: var(--fs-sm);
  color: var(--muted);
}
.svc-card .link-arrow { margin-top: auto; }

/* Alternating detail rows on the services page */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(2rem, 4vw, 3.4rem);
  border-bottom: 1px solid var(--line-soft);
}
.svc-row:last-child { border-bottom: 0; }
.svc-row:nth-child(even) .svc-row__media { order: 2; }
.svc-row__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.svc-row__media img {
  width: 100%;
  transition: transform 1s var(--ease);
}
.svc-row:hover .svc-row__media img { transform: scale(1.05); }
.svc-row__body { min-width: 0; }
.svc-row__index {
  display: inline-block;
  margin-bottom: .7rem;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold-300);
}

/* ---------- 12. Destination cards ---------- */
.dest-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.15s var(--ease);
}
.dest-card:hover img { transform: scale(1.09); }
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 10, 43, 0) 32%, rgba(0, 10, 43, .58) 62%, rgba(0, 10, 43, .93) 100%);
  transition: background var(--t-med) var(--ease);
}
.dest-card:hover::after {
  background: linear-gradient(180deg, rgba(2, 24, 99, .16) 0%, rgba(0, 10, 43, .68) 55%, rgba(0, 10, 43, .96) 100%);
}
.dest-card__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(1.15rem, 2.2vw, 1.7rem);
  color: #fff;
}
.dest-card__tag {
  display: inline-block;
  margin-bottom: .55rem;
  padding: .22rem .7rem;
  border-radius: var(--r-pill);
  background: rgba(219, 165, 34, .92);
  color: var(--navy-900);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.dest-card__body :is(h2, h3) {
  margin-bottom: .3rem;
  color: #fff;
  font-size: 1.34rem;
}
.dest-card__body p {
  margin: 0;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .78);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--t-med) var(--ease), opacity var(--t-med) var(--ease),
    margin var(--t-med) var(--ease);
}
.dest-card:hover .dest-card__body p,
.dest-card:focus-visible .dest-card__body p {
  max-height: 6.5rem;
  opacity: 1;
  margin-top: .35rem;
}
.dest-card__cue {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .8rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.dest-card__cue svg { width: 15px; height: 15px; }

/* ---------- 13. Package cards ---------- */
.pkg-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.pkg-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.pkg-card:hover .pkg-card__media img { transform: scale(1.08); }
.pkg-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: .35rem .85rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .93);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--navy-700);
  font-size: var(--fs-xs);
  font-weight: 600;
}
.pkg-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.3rem, 2.2vw, 1.8rem);
}
.pkg-card__body :is(h2, h3) { margin-bottom: .5rem; font-size: 1.24rem; }
.pkg-card__body > p {
  font-size: var(--fs-sm);
  color: var(--muted);
}
.pkg-card .tick-list {
  margin: 1rem 0 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}
.pkg-card .tick-list li { font-size: var(--fs-xs); }
.pkg-card__foot { margin-top: auto; }

.note-card {
  padding: clamp(1.1rem, 2vw, 1.5rem) clamp(1.2rem, 2.4vw, 1.8rem);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--gold-100);
  font-size: var(--fs-sm);
  color: var(--ink-soft);
}
.note-card strong { display: block; margin-bottom: .2rem; }

/* ---------- 14. Why choose us ---------- */
.feature {
  position: relative;
  padding: clamp(1.5rem, 2.4vw, 2rem);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .11);
  transition: transform var(--t-med) var(--ease), background var(--t-med) var(--ease),
    border-color var(--t-med) var(--ease);
}
.feature:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .09);
  border-color: rgba(219, 165, 34, .5);
}
.feature__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: rgba(219, 165, 34, .16);
  color: var(--gold-400);
  transition: transform var(--t-med) var(--ease);
}
.feature__icon svg { width: 24px; height: 24px; }
.feature:hover .feature__icon { transform: scale(1.1) rotate(6deg); }
.feature :is(h2, h3) { margin-bottom: .4rem; font-size: 1.1rem; }
.feature p {
  margin: 0;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .7);
}

/* ---------- 15. Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-300) 0 8px, transparent 8px 18px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step__num {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold-500);
  color: var(--navy-700);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform var(--t-med) var(--ease), background var(--t-med) var(--ease),
    color var(--t-med) var(--ease);
}
.step:hover .step__num {
  transform: translateY(-6px) scale(1.06);
  background: var(--gold-500);
  color: var(--navy-900);
}
.step h3 { margin-bottom: .35rem; font-size: 1.08rem; }
.step p { margin: 0; font-size: var(--fs-sm); color: var(--muted); }

/* ---------- 16. Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.stat {
  display: grid;
  align-content: center;
  gap: .5rem;
  min-height: 86px;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.2rem + 2.6vw, 3.1rem);
  font-weight: 700;
  line-height: 1;
  color: var(--navy-700);
}
.stat__label {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- 17. Gallery + lightbox ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.8rem, 1.6vw, 1.2rem);
}
.gallery__item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: var(--r-md);
  background: var(--surface-3);
  overflow: hidden;
  cursor: zoom-in;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter var(--t-med) var(--ease);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 24, 99, 0) 45%, rgba(0, 10, 43, .62) 100%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.gallery__item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(0, 6, 28, .94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) ease, visibility 0s linear var(--t-med);
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--t-med) ease, visibility 0s linear 0s;
}
.lightbox__figure {
  margin: 0;
  max-width: min(1100px, 100%);
  transform: scale(.94);
  transition: transform var(--t-med) var(--ease);
}
.lightbox.is-open .lightbox__figure { transform: scale(1); }
.lightbox__img {
  max-height: 78vh;
  width: auto;
  margin-inline: auto;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.lightbox__caption {
  margin-top: 1rem;
  text-align: center;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .72);
}
.lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  transition: background var(--t-fast) ease, transform var(--t-fast) ease;
}
.lightbox__btn:hover { background: var(--gold-500); color: var(--navy-900); transform: scale(1.08); }
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__btn--close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__btn--prev { left: clamp(.6rem, 3vw, 2rem); top: 50%; margin-top: -26px; }
.lightbox__btn--next { right: clamp(.6rem, 3vw, 2rem); top: 50%; margin-top: -26px; }

/* ---------- 18. CTA band ---------- */
.cta-band {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7.5rem);
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(2, 24, 99, .93) 0%, rgba(0, 10, 43, .82) 55%, rgba(2, 24, 99, .9) 100%);
}
.cta-band__inner { position: relative; z-index: 2; }
.cta-band h2 {
  color: #fff;
  max-width: 18ch;
  margin-inline: auto;
}
.cta-band h2 em {
  font-style: italic;
  color: var(--gold-400);
}
.cta-band p {
  max-width: 56ch;
  margin: 0 auto 2rem;
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, .82);
}
.cta-band .btn-group { justify-content: center; }
.cta-band__phones {
  margin-top: 1.8rem;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .68);
}
.cta-band__phones a {
  display: inline-block;
  padding-block: .22rem;
  color: #fff;
  font-weight: 600;
}
.cta-band__phones a:hover { color: var(--gold-400); }

/* ---------- 19. Contact ---------- */
.contact-card {
  display: flex;
  gap: 1.1rem;
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease),
    border-color var(--t-med) var(--ease);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}
.contact-card__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: var(--surface-3);
  color: var(--navy-600);
}
.contact-card__icon svg { width: 23px; height: 23px; }
.contact-card :is(h2, h3) { margin-bottom: .3rem; font-size: 1.05rem; }
.contact-card p { margin: 0; font-size: var(--fs-sm); color: var(--muted); }
.contact-card a {
  display: inline-block;
  padding-block: .22rem;
  font-weight: 600;
  color: var(--navy-600);
}
.contact-card a:hover { color: var(--gold-600); }
.contact-card--wa .contact-card__icon { background: rgba(37, 211, 102, .14); color: var(--whatsapp-dark); }

/* Map: click-to-load facade keeps the third-party iframe off first paint */
.map-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-3);
  border: 1px solid var(--line);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-embed__facade {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: .7rem;
  padding: 1.5rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(2, 24, 99, .9), rgba(0, 10, 43, .78)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' fill='none' stroke='%23ffffff' stroke-opacity='.18'%3E%3Cpath d='M0 30h60M30 0v60'/%3E%3C/svg%3E");
  color: #fff;
  cursor: pointer;
  border: 0;
  width: 100%;
  font-family: inherit;
  transition: opacity var(--t-med) ease;
}
.map-embed__facade svg { width: 32px; height: 32px; }
.map-embed__facade span {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .75);
}
.map-embed__facade strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
}

/* ---------- 20. Enquiry planner form ---------- */
.planner {
  padding: clamp(1.5rem, 3vw, 2.6rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.planner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.3rem;
}
.field { display: flex; flex-direction: column; gap: .42rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy-700);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .82rem 1rem;
  font-family: inherit;
  font-size: var(--fs-sm);
  color: var(--ink);
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast) ease, background var(--t-fast) ease,
    box-shadow var(--t-fast) ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(219, 165, 34, .16);
}
.field input::placeholder,
.field textarea::placeholder { color: #9BA3B5; }
.planner__note {
  margin-top: 1rem;
  font-size: var(--fs-xs);
  color: var(--muted);
}

/* ---------- 21. FAQ (no-JS accordion) ---------- */
.faq { display: grid; gap: .85rem; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
}
.faq__item[open] { border-color: var(--gold-300); box-shadow: var(--shadow-sm); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem clamp(1.1rem, 2vw, 1.6rem);
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--navy-700);
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DBA522' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform var(--t-med) var(--ease);
}
.faq__item[open] summary::after { transform: rotate(135deg); }
.faq__item summary:hover { color: var(--gold-600); }
.faq__body {
  padding: 0 clamp(1.1rem, 2vw, 1.6rem) 1.3rem;
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  animation: faq-in .38s var(--ease);
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* ---------- 22. Prose (about page) ---------- */
.prose h2 { margin-top: 2.4rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8rem; font-size: 1.2rem; }
.prose p { font-size: var(--fs-lead); }

/* ---------- 23. Footer ---------- */
.site-footer {
  position: relative;
  padding-top: clamp(3.2rem, 6vw, 5rem);
  background: linear-gradient(170deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: rgba(255, 255, 255, .68);
  font-size: var(--fs-sm);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-700), var(--gold-500) 45%, var(--gold-300) 55%, var(--navy-700));
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.4rem, 4vw, 3.4rem);
}
.footer__brand { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem; }
.footer__brand img { width: 56px; height: auto; }
.footer__brand-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  letter-spacing: .02em;
}
.footer__brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-300);
  margin-bottom: 1rem;
}
.footer__title {
  margin-bottom: 1.1rem;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
}
.footer__col { min-width: 0; }
.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin-bottom: .15rem; }
.footer__list a {
  display: inline-block;
  padding-block: .3rem;
  color: rgba(255, 255, 255, .68);
  transition: color var(--t-fast) ease, padding-left var(--t-fast) ease;
}
.footer__list a:hover { color: var(--gold-400); padding-left: 4px; }

.footer__contact { list-style: none; margin: 0; padding: 0; }
.footer__contact li {
  display: flex;
  gap: .75rem;
  margin-bottom: .95rem;
}
.footer__contact svg {
  width: 18px;
  height: 18px;
  margin-top: .22rem;
  color: var(--gold-500);
}
.footer__contact a {
  display: inline-block;
  padding-block: .22rem;
  color: #fff;
  font-weight: 600;
}
.footer__contact a:hover { color: var(--gold-400); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, .5);
}
.footer__bottom a {
  display: inline-block;
  padding-block: .25rem;
  color: rgba(255, 255, 255, .72);
}
.footer__bottom a:hover { color: var(--gold-400); }

/* ---------- 24. Floating actions ---------- */
.float-actions {
  position: fixed;
  right: clamp(.9rem, 2.5vw, 1.75rem);
  bottom: clamp(.9rem, 2.5vw, 1.75rem);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  align-items: flex-end;
}
.wa-fab {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .42);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: wa-pulse 2.6s var(--ease) infinite;
}
.wa-fab:hover { transform: scale(1.09); color: #fff; box-shadow: 0 16px 38px rgba(37, 211, 102, .55); }
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .8; }
  70%, 100% { transform: scale(1.6); opacity: 0; }
}

.to-top {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--navy-700);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--t-med) ease, transform var(--t-med) var(--ease),
    visibility 0s linear var(--t-med), background var(--t-fast) ease, color var(--t-fast) ease;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity var(--t-med) ease, transform var(--t-med) var(--ease),
    visibility 0s linear 0s, background var(--t-fast) ease, color var(--t-fast) ease;
}
.to-top:hover { background: var(--navy-700); color: #fff; border-color: var(--navy-700); }
.to-top svg { width: 20px; height: 20px; }

/* Scroll progress line */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  pointer-events: none;
}

/* ---------- 25. 404 ---------- */
.error-page {
  display: grid;
  place-items: center;
  min-height: 78vh;
  padding-top: var(--header-h);
  text-align: center;
}
.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 11rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(100deg, var(--gold-300), var(--gold-500) 50%, var(--gold-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 26. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .img-reveal::before { transform: scaleX(0) !important; }
  .img-reveal img { transform: none !important; }
  .hero__media { transform: none !important; }
  .dest-card__body p { max-height: none; opacity: 1; margin-top: .35rem; }
}

/* ---------- 27. Utilities ---------- */
.u-center { justify-content: center; text-align: center; }
.u-mt-md { margin-top: clamp(1.2rem, 2.4vw, 1.8rem); }
.u-mt-lg { margin-top: clamp(2rem, 3.6vw, 3rem); }
.u-mt-xl { margin-top: clamp(2.6rem, 5vw, 4.2rem); }
.u-note { font-size: var(--fs-xs); color: var(--muted); text-align: center; }
.stat__num--text { font-size: clamp(1.05rem, .85rem + .8vw, 1.5rem); line-height: 1.3; }
.mobile-nav.is-open .mobile-nav__list li:nth-child(8) { transition-delay: .45s; }
