/* ==========================================================================
   Duaa Al Madinah — Main Stylesheet
   --------------------------------------------------------------------------
   01 Tokens          07 Hero               13 Inner pages
   02 Reset & base    08 Search panel       14 Forms
   03 Typography      09 Cards              15 Dialog, toast, floating UI
   04 Layout          10 Sliders            16 Footer
   05 Buttons         11 Home sections      17 Utilities & motion
   06 Header & nav    12 Page hero          18 Responsive
   ========================================================================== */

/* 01 — Tokens ------------------------------------------------------------- */
:root {
  --navy-950: #071B33;
  --navy-900: #0A2540;
  --navy-800: #0E3462;
  --blue-700: #12468A;
  --blue-600: #1A57A6;
  --blue-500: #2A6CC0;
  --blue-100: #DCE8F6;
  --blue-50:  #F0F5FB;
  --gold-700: #8A6A2B;
  --gold-600: #A9843F;
  --gold-500: #C4A05A;
  --gold-200: #EADBB8;
  --gold-100: #F6EEDD;
  --cream:    #FBF8F2;
  --white:    #FFFFFF;

  --ink:    var(--navy-900);
  --text:   #475470;
  --muted:  #647089;
  --border: #E4E9F0;
  --border-strong: #CFD8E4;
  --star:    #EFA52B;
  --success: #1B7F52;
  --danger:  #B93A2E;
  --whatsapp: #25D366;

  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(10, 37, 64, .06);
  --shadow-sm: 0 2px 10px rgba(10, 37, 64, .06), 0 1px 2px rgba(10, 37, 64, .04);
  --shadow:    0 14px 34px -14px rgba(10, 37, 64, .20);
  --shadow-lg: 0 28px 64px -24px rgba(10, 37, 64, .30);

  --ease: cubic-bezier(.2, .7, .2, 1);
  --header-h: 76px;
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: clamp(56px, 8vw, 96px);
}

/* 02 — Reset & base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: var(--blue-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--blue-700); }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--blue-100); color: var(--navy-900); }
body.no-scroll { overflow: hidden; }
[hidden] { display: none !important; }

.icon {
  width: 1.25em; height: 1.25em; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 1000;
  background: var(--navy-900); color: var(--white); padding: 10px 16px; border-radius: var(--radius-sm);
}
.skip-link:focus { top: 12px; color: var(--white); }

/* 03 — Typography --------------------------------------------------------- */
h1, h2, h3, h4, h5 { color: var(--ink); line-height: 1.2; font-weight: 700; }
h1, h2, .serif { font-family: var(--font-serif); letter-spacing: -.01em; }
h1 { font-size: clamp(2.25rem, 1.35rem + 3.6vw, 3.6rem); line-height: 1.12; }
h2 { font-size: clamp(1.7rem, 1.2rem + 1.9vw, 2.45rem); }
h3 { font-size: clamp(1.1rem, 1rem + .35vw, 1.25rem); }
h4 { font-size: 1.05rem; }
p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-700); margin-bottom: .75rem;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 22px; height: 1px; background: var(--gold-500); }
.eyebrow--left::before, .eyebrow--left::after { display: none; }
.lead { font-size: clamp(1rem, .95rem + .25vw, 1.125rem); color: var(--text); }
.text-accent { color: var(--blue-600); }

/* 04 — Layout ------------------------------------------------------------- */
.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: calc(880px + var(--gutter) * 2); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: calc(var(--section-y) * .65); }
.section--soft { background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%); }
.section--cream { background: var(--cream); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto clamp(32px, 5vw, 48px); }
.section-head p { margin-top: .75rem; color: var(--muted); }
.section-head--split {
  max-width: none; display: grid; grid-template-columns: 1fr minmax(0, 680px) 1fr; align-items: end; gap: 16px;
}
.section-head--split > div:first-child { grid-column: 2; }
.section-head--split .slider-nav { grid-column: 3; justify-self: end; }

.grid { display: grid; gap: clamp(16px, 2.4vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.features-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(20px, 3vw, 32px); }

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 6vw, 72px); align-items: center; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.split h2 { margin-bottom: 1rem; }
.split p + p { margin-top: 1rem; }

/* 05 — Buttons ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--blue-700); --btn-fg: var(--white); --btn-bd: var(--blue-700);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .7rem 1.4rem;
  font-size: .925rem; font-weight: 600; line-height: 1.2; text-align: center;
  color: var(--btn-fg); background: var(--btn-bg); border: 1.5px solid var(--btn-bd);
  border-radius: var(--radius-sm);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn .icon { width: 1.05em; height: 1.05em; transition: transform .2s var(--ease); }
.btn:hover { color: var(--btn-fg); box-shadow: 0 10px 22px -12px rgba(18, 70, 138, .7); }
.btn:hover .icon--arrow { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn-primary:hover { --btn-bg: var(--navy-800); --btn-bd: var(--navy-800); }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--blue-700); --btn-bd: var(--border-strong); }
.btn-outline:hover { --btn-bg: var(--blue-700); --btn-fg: var(--white); --btn-bd: var(--blue-700); }
.btn-gold { --btn-bg: var(--gold-500); --btn-fg: var(--navy-950); --btn-bd: var(--gold-500); }
.btn-gold:hover { --btn-bg: var(--gold-600); --btn-bd: var(--gold-600); --btn-fg: var(--white); box-shadow: 0 10px 22px -12px rgba(138, 106, 43, .7); }
.btn-light { --btn-bg: var(--white); --btn-fg: var(--navy-900); --btn-bd: var(--white); }
.btn-light:hover { --btn-bg: var(--gold-100); --btn-bd: var(--gold-100); --btn-fg: var(--navy-900); }
.btn-whatsapp { --btn-bg: var(--whatsapp); --btn-fg: #06361C; --btn-bd: var(--whatsapp); }
.btn-whatsapp:hover { --btn-bg: #1EBE5A; --btn-bd: #1EBE5A; --btn-fg: #06361C; box-shadow: 0 10px 22px -12px rgba(30, 190, 90, .8); }
.btn-sm { min-height: 40px; padding: .5rem 1rem; font-size: .85rem; }
.btn-lg { min-height: 54px; padding: .85rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .925rem; }
.link-arrow .icon { width: 1em; height: 1em; transition: transform .2s var(--ease); }
.link-arrow:hover .icon { transform: translateX(3px); }

/* 06 — Header & navigation ------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
/* keep the drawer (inside the header) above the page overlay */
body.nav-open .site-header { z-index: 130; }
.site-header.is-scrolled { border-bottom-color: var(--border); box-shadow: 0 6px 24px -16px rgba(10, 37, 64, .35); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); flex-shrink: 0; }
.brand:hover { color: var(--ink); }
.brand__mark { width: 44px; height: 44px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--navy-900); white-space: nowrap; }
.brand__tag { font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-700); margin-top: 3px; white-space: nowrap; }

.nav { display: flex; align-items: center; }
.nav__head { display: none; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; }
.nav__item { position: relative; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: .3rem;
  padding: .6rem .8rem; font-size: .9rem; font-weight: 500; color: var(--navy-900); border-radius: var(--radius-sm);
}
.nav__link .icon { width: 1em; height: 1em; transition: transform .2s var(--ease); }
.nav__link:hover, .nav__link[aria-expanded="true"] { color: var(--blue-600); }
.nav__link[aria-current="page"], .nav__item.is-current > .nav__link { color: var(--blue-600); font-weight: 600; }
.nav__link[aria-current="page"]::after, .nav__item.is-current > .nav__link::after {
  content: ""; position: absolute; left: 50%; bottom: 2px; width: 18px; height: 2px; border-radius: 2px;
  background: var(--gold-500); transform: translateX(-50%);
}
.nav__link[aria-expanded="true"] .icon { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; min-width: 290px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; list-style: none;
  opacity: 0; visibility: hidden; transform: translate(-50%, 6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.nav__item.is-open > .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
@media (hover: hover) and (min-width: 992px) {
  .nav__item--has-dropdown:hover > .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
}
.dropdown__link { display: flex; gap: .8rem; align-items: flex-start; padding: .7rem .8rem; border-radius: var(--radius-sm); color: var(--navy-900); }
.dropdown__link:hover { background: var(--blue-50); color: var(--navy-900); }
.dropdown__link[aria-current="page"] { background: var(--blue-50); }
.dropdown__icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: var(--gold-100); color: var(--gold-700); flex-shrink: 0; }
.dropdown__title { display: block; font-weight: 600; font-size: .9rem; line-height: 1.3; }
.dropdown__desc { display: block; font-size: .78rem; color: var(--muted); line-height: 1.4; margin-top: 2px; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle, .nav-close {
  display: none; place-items: center; width: 46px; height: 46px; border-radius: var(--radius-sm);
  color: var(--navy-900); border: 1px solid var(--border);
}
.nav-toggle .icon, .nav-close .icon { width: 24px; height: 24px; }
.nav__cta-mobile { display: none; }
.nav-overlay { display: none; }

/* 07 — Hero --------------------------------------------------------------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: center;
  min-height: clamp(560px, 80vh, 720px);
  padding-block: clamp(48px, 7vw, 80px) clamp(130px, 14vw, 170px);
  background: var(--cream);
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 75% center; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(0deg, var(--white) 0%, rgba(255, 255, 255, 0) 26%),
    linear-gradient(90deg, rgba(251, 248, 242, .98) 0%, rgba(251, 248, 242, .95) 36%, rgba(251, 248, 242, .6) 52%, rgba(251, 248, 242, 0) 70%);
}
.hero .container { position: relative; }
.hero__content { max-width: 580px; }
.hero__title { margin-bottom: 1.1rem; }
.hero__title span { display: block; color: var(--blue-700); }
.hero .lead { max-width: 500px; }
.hero__features { display: flex; flex-wrap: wrap; gap: 14px 28px; margin: 1.75rem 0 2rem; list-style: none; padding: 0; }
.hero__feature { display: flex; flex-direction: column; gap: .4rem; font-size: .8rem; font-weight: 600; color: var(--navy-900); }
.hero__feature .icon { width: 26px; height: 26px; color: var(--blue-700); }
.hero__badge {
  position: absolute; right: var(--gutter); bottom: -40px;
  display: flex; align-items: center; gap: .8rem;
  padding: .9rem 1.1rem; max-width: 250px;
  background: rgba(255, 255, 255, .95); border: 1px solid rgba(196, 160, 90, .35);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero__badge img { width: 44px; height: 44px; }
.hero__badge strong { display: block; color: var(--navy-900); font-size: .9rem; line-height: 1.3; }
.hero__badge span { font-size: .78rem; color: var(--muted); }

/* 08 — Search panel ------------------------------------------------------- */
.search-panel { position: relative; z-index: 5; margin-top: clamp(-120px, -10vw, -96px); }
.search-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border); overflow: hidden; }
.tabs__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); background: #F4F7FB; border-bottom: 1px solid var(--border); }
.tabs__tab {
  position: relative; display: flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 58px; padding: .75rem 1rem;
  font-size: .9rem; font-weight: 600; color: var(--muted);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.tabs__tab .icon { width: 20px; height: 20px; }
.tabs__tab:hover { color: var(--navy-900); }
.tabs__tab[aria-selected="true"] { background: var(--white); color: var(--navy-900); }
.tabs__tab[aria-selected="true"]::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--blue-700); }
.tabs__tab[aria-selected="true"] .icon { color: var(--blue-700); }
.tabs__panel { padding: clamp(18px, 3vw, 28px); }
.search-form { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)) auto; gap: 14px; align-items: end; }
.search-form .btn { min-width: 132px; }

/* 09 — Cards -------------------------------------------------------------- */
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.card__media { position: relative; overflow: hidden; background: var(--blue-50); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card--hover:hover .card__media img { transform: scale(1.04); }

/* Category card */
.cat-card { display: flex; flex-direction: column; text-align: center; height: 100%; }
.cat-card .card__media { aspect-ratio: 16 / 10; }
.cat-card__icon {
  position: relative; z-index: 1; display: grid; place-items: center;
  width: 68px; height: 68px; margin: -34px auto 0; border-radius: 50%;
  background: var(--white); color: var(--blue-700); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.cat-card__icon .icon { width: 30px; height: 30px; stroke-width: 1.5; }
.cat-card__body { display: flex; flex-direction: column; flex: 1; padding: 14px clamp(18px, 2.5vw, 28px) clamp(20px, 2.5vw, 28px); }
.cat-card__body h3 { margin-bottom: .5rem; }
.cat-card__body > p { font-size: .9rem; color: var(--muted); max-width: 300px; margin-inline: auto; }
.cat-card .check-list { margin: 1.1rem auto 1.5rem; text-align: left; }
.cat-card .btn { margin-top: auto; }

.check-list { list-style: none; padding: 0; display: grid; gap: .55rem; }
.check-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--text); }
.check-list .icon { width: 18px; height: 18px; color: var(--blue-700); margin-top: 2px; stroke-width: 2.25; }
.check-list--gold .icon { color: var(--gold-600); }
.cross-list .icon { color: var(--danger); }

/* Package card */
.pkg-card { position: relative; display: flex; flex-direction: column; height: 100%; }
.pkg-card .card__media { aspect-ratio: 16 / 10; margin: 10px 10px 0; border-radius: var(--radius); }
.pkg-card__badge {
  position: absolute; top: 12px; right: 12px;
  padding: .3rem .8rem; border-radius: var(--radius-pill);
  font-size: .75rem; font-weight: 700; color: var(--white); background: var(--navy-800);
  box-shadow: 0 4px 10px rgba(7, 27, 51, .3);
}
.pkg-card__badge--family { background: var(--blue-600); }
.pkg-card__badge--gold { background: var(--gold-700); }
.pkg-card__body { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 20px; }
.pkg-card__days { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 600; color: var(--muted); }
.pkg-card__days .icon { width: 15px; height: 15px; }
.pkg-card__title { margin-top: .3rem; font-size: 1.1rem; }
.pkg-card__title a { color: inherit; }
.pkg-card__title a::after { content: ""; position: absolute; inset: 0; }
.pkg-card__title a:focus-visible { outline: none; }
.pkg-card:focus-within { outline: 3px solid var(--gold-500); outline-offset: 2px; }
.pkg-card__sub { font-size: .85rem; color: var(--muted); margin-top: .15rem; }
.pkg-card__stays { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; margin: .9rem 0; list-style: none; padding: 0; }
.pkg-card__stays li { display: inline-flex; align-items: center; gap: .35rem; font-size: .82rem; font-weight: 600; color: var(--navy-900); }
.pkg-card__stays .icon { width: 16px; height: 16px; color: var(--gold-600); }
.pkg-card__foot { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px dashed var(--border); }
.pkg-card__foot .btn { position: relative; z-index: 1; }
.price { display: flex; flex-direction: column; line-height: 1.25; }
.price small { font-size: .75rem; color: var(--muted); }
.price strong { font-size: 1.15rem; color: var(--navy-900); font-weight: 800; }
.price em { font-style: normal; font-size: .72rem; color: var(--muted); }

/* Hotel card */
.hotel-card { position: relative; display: flex; flex-direction: column; height: 100%; }
.hotel-card .card__media { aspect-ratio: 4 / 3; }
.hotel-card__city {
  position: absolute; left: 10px; top: 10px; padding: .25rem .65rem; border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .94); color: var(--navy-900); font-size: .72rem; font-weight: 700;
}
.hotel-card__body { display: flex; flex-direction: column; flex: 1; gap: .35rem; padding: 14px 16px 16px; }
.hotel-card__body h3 { font-size: 1rem; }
.hotel-card__loc { display: flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--muted); }
.hotel-card__loc .icon { width: 15px; height: 15px; color: var(--gold-600); }
.hotel-card__price { margin-top: auto; padding-top: .5rem; font-size: .9rem; font-weight: 700; color: var(--navy-900); }
.hotel-card__price span { font-weight: 500; color: var(--muted); font-size: .8rem; }
.hotel-card__amenities { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin-top: .25rem; }
.hotel-card__amenities li { font-size: .72rem; font-weight: 600; color: var(--blue-700); background: var(--blue-50); padding: .2rem .55rem; border-radius: var(--radius-pill); }
.hotel-card__actions { display: flex; gap: 8px; margin-top: .75rem; }
.hotel-card__actions .btn { flex: 1; }

.stars { display: inline-flex; gap: 2px; color: var(--star); }
.stars .icon { width: 15px; height: 15px; }
.stars .icon--empty { color: #D9DEE6; }

/* Feature item */
.feature { text-align: center; padding: 8px; }
.feature__icon {
  position: relative; display: grid; place-items: center;
  width: 76px; height: 76px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--gold-100); color: var(--gold-700);
}
.feature__icon::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1px dashed var(--gold-200); }
.feature__icon .icon { width: 32px; height: 32px; stroke-width: 1.5; }
.feature h3 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: .35rem; }
.feature p { font-size: .88rem; color: var(--muted); max-width: 220px; margin-inline: auto; }

/* Review card */
.review-card { position: relative; display: flex; flex-direction: column; gap: 1rem; padding: clamp(20px, 2.5vw, 28px); height: 100%; }
.review-card__head { display: flex; align-items: center; gap: .9rem; padding-right: 36px; }
.review-card__avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--gold-100); }
.review-card__name { font-weight: 700; color: var(--navy-900); font-size: .95rem; line-height: 1.3; }
.review-card__meta { font-size: .78rem; color: var(--muted); }
.review-card blockquote { font-size: .92rem; color: var(--text); flex: 1; }
.review-card__quote { position: absolute; right: 22px; top: 22px; width: 30px; height: 30px; color: var(--gold-200); }
.review-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.tag { display: inline-flex; align-items: center; gap: .35rem; padding: .25rem .7rem; border-radius: var(--radius-pill); font-size: .74rem; font-weight: 600; background: var(--blue-50); color: var(--blue-700); }
.tag--gold { background: var(--gold-100); color: var(--gold-700); }

/* Info card */
.info-card { padding: clamp(20px, 2.6vw, 30px); height: 100%; }
.info-card__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--blue-50); color: var(--blue-700); margin-bottom: 1rem; flex-shrink: 0; }
.info-card__icon .icon { width: 26px; height: 26px; }
.info-card__icon--gold { background: var(--gold-100); color: var(--gold-700); }
.info-card h3 { margin-bottom: .4rem; }
.info-card p, .info-card li { font-size: .92rem; }
.info-card a { font-weight: 600; }

/* Team card */
.team-card { text-align: center; }
.team-card .card__media { aspect-ratio: 7 / 8; }
.team-card__body { padding: 16px; }
.team-card__body h3 { font-size: 1.05rem; }
.team-card__body p { font-size: .85rem; color: var(--gold-700); font-weight: 600; }

/* 10 — Sliders ------------------------------------------------------------ */
.slider { --per-view: 3; --gap: clamp(16px, 2.2vw, 24px); position: relative; min-width: 0; }
.slider__track {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: calc((100% - var(--gap) * (var(--per-view) - 1)) / var(--per-view));
  gap: var(--gap);
  overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 6px 2px 18px; margin: -6px -2px -18px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  list-style: none;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__track > * { scroll-snap-align: start; min-width: 0; }
.slider-nav { display: flex; gap: 10px; }
.slider-btn {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); color: var(--navy-900); border: 1px solid var(--border); box-shadow: var(--shadow-xs);
  transition: background-color .2s var(--ease), color .2s var(--ease), opacity .2s var(--ease), border-color .2s var(--ease);
}
.slider-btn .icon { width: 20px; height: 20px; }
.slider-btn:hover:not(:disabled) { background: var(--blue-700); border-color: var(--blue-700); color: var(--white); }
.slider-btn:disabled { opacity: .4; cursor: default; }
.slider-dots { display: none; justify-content: center; gap: 4px; margin-top: 18px; }
.slider-dots button { position: relative; width: 24px; height: 24px; }
.slider-dots button::before { content: ""; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; border-radius: var(--radius-pill); background: var(--border-strong); transform: translate(-50%, -50%); transition: width .25s var(--ease), background-color .25s var(--ease); }
.slider-dots button[aria-current="true"]::before { width: 20px; background: var(--blue-700); }

/* 11 — Home sections ------------------------------------------------------ */
.hotels-band {
  position: relative; overflow: hidden;
  background: linear-gradient(115deg, var(--cream) 0%, var(--blue-50) 60%, #E9F0F8 100%);
}
.hotels-band::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: radial-gradient(rgba(196, 160, 90, .22) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 45%); mask-image: linear-gradient(90deg, #000 0%, transparent 45%);
}
.hotels-band__grid { position: relative; display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(28px, 4vw, 56px); align-items: center; }
.hotels-band__intro h2 { margin-bottom: 1rem; }
.hotels-band__intro p { margin-bottom: 1.75rem; }

.cta { padding-block: var(--section-y) 0; }
.cta__grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.cta__main {
  position: relative; isolation: isolate; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 48px); min-height: 320px;
}
.cta__main > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta__main::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(255, 255, 255, .92) 0%, rgba(251, 248, 242, .86) 100%); }
.cta__main h2 { margin-bottom: .6rem; }
.cta__main p { margin-bottom: 1.6rem; max-width: 460px; }
.cta__verse {
  position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  padding: clamp(40px, 4vw, 56px) clamp(28px, 3vw, 44px);
  background: linear-gradient(160deg, var(--gold-100) 0%, #EFE1C2 100%); color: var(--navy-900);
}
.cta__verse::before {
  content: ""; position: absolute; inset: 18px; border: 1.5px solid rgba(138, 106, 43, .35);
  border-radius: 200px 200px 12px 12px; pointer-events: none;
}
.cta__verse p { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.2rem, 1rem + .8vw, 1.5rem); line-height: 1.45; max-width: 280px; }
.cta__verse cite { margin-top: 1rem; font-style: normal; font-size: .8rem; font-weight: 700; letter-spacing: .12em; color: var(--gold-700); }

.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.stat { text-align: center; padding: 22px 12px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border); }
.stat strong { display: block; font-family: var(--font-serif); font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.6rem); color: var(--blue-700); line-height: 1.1; }
.stat span { font-size: .85rem; font-weight: 600; color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2.5vw, 28px); counter-reset: step; list-style: none; padding: 0; }
.step { position: relative; text-align: center; padding: 0 8px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: relative; z-index: 1; display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%;
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; color: var(--white); background: var(--blue-700);
  box-shadow: 0 0 0 6px var(--blue-100);
}
.step:not(:last-child)::after { content: ""; position: absolute; top: 28px; left: calc(50% + 42px); right: calc(-50% + 42px); border-top: 2px dashed var(--border-strong); }
.step h3 { font-size: 1.02rem; margin-bottom: .35rem; }
.step p { font-size: .88rem; color: var(--muted); }

/* 12 — Page hero ---------------------------------------------------------- */
.page-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--cream); padding-block: clamp(48px, 8vw, 96px); }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(251, 248, 242, .98) 0%, rgba(251, 248, 242, .94) 42%, rgba(251, 248, 242, .55) 64%, rgba(251, 248, 242, .15) 100%);
}
.page-hero__content { max-width: 640px; }
.page-hero h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); margin-bottom: .75rem; }
.page-hero p { max-width: 560px; }
.breadcrumb { margin-bottom: 1rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; list-style: none; padding: 0; font-size: .82rem; }
.breadcrumb li { display: inline-flex; align-items: center; gap: .35rem; color: var(--muted); }
.breadcrumb li + li::before { content: "/"; color: var(--border-strong); }
.breadcrumb a { color: var(--muted); font-weight: 500; }
.breadcrumb a:hover { color: var(--blue-600); }
.breadcrumb [aria-current="page"] { color: var(--navy-900); font-weight: 600; }

/* 13 — Inner pages -------------------------------------------------------- */
.toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 16px; margin-bottom: clamp(24px, 3vw, 32px);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-xs);
}
.toolbar__group { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; min-width: 0; }
.toolbar__label { font-size: .82rem; font-weight: 600; color: var(--muted); margin-right: 4px; }
.toolbar__count { font-size: .85rem; color: var(--muted); }
.toolbar .control { min-height: 40px; width: auto; min-width: 190px; padding-block: .4rem; font-size: .88rem; }
.chip {
  display: inline-flex; align-items: center; gap: .35rem; min-height: 38px; padding: .4rem .95rem;
  border-radius: var(--radius-pill); border: 1px solid var(--border-strong); background: var(--white);
  font-size: .85rem; font-weight: 600; color: var(--navy-900); white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.chip:hover { border-color: var(--blue-600); color: var(--blue-600); }
.chip[aria-pressed="true"] { background: var(--blue-700); border-color: var(--blue-700); color: var(--white); }
.empty-state { display: none; text-align: center; padding: 48px 16px; color: var(--muted); }
.empty-state.is-visible { display: block; }
.is-hidden { display: none !important; }

.table-wrap { position: relative; overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); -webkit-overflow-scrolling: touch; }
.table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: .9rem; }
.table th, .table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.table thead th { background: var(--blue-50); color: var(--navy-900); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.table tbody tr:last-child td { border-bottom: 0; }
.table td:first-child { font-weight: 600; color: var(--navy-900); }

/* Package detail */
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(24px, 4vw, 48px); align-items: start; }
.detail-gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 10px; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16 / 9; }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; }
.detail-gallery img:first-child { grid-row: span 2; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.5rem 0 1rem; list-style: none; padding: 0; }
.detail-meta li { display: inline-flex; align-items: center; gap: .45rem; padding: .45rem .9rem; border-radius: var(--radius-pill); background: var(--blue-50); color: var(--navy-900); font-size: .85rem; font-weight: 600; }
.detail-meta .icon { width: 17px; height: 17px; color: var(--blue-700); }
.detail-title { font-size: clamp(1.8rem, 1.3rem + 2vw, 2.6rem); }
.detail-block { padding-block: clamp(24px, 3vw, 32px); border-top: 1px solid var(--border); }
.detail-block:first-of-type { border-top: 0; }
.detail-block h2 { font-size: clamp(1.35rem, 1.1rem + .8vw, 1.7rem); margin-bottom: 1rem; }
.detail-hotels { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.mini-hotel { display: flex; gap: 14px; align-items: center; padding: 12px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.mini-hotel img { width: 88px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.mini-hotel strong { display: block; color: var(--navy-900); font-size: .95rem; line-height: 1.3; }
.mini-hotel span { font-size: .8rem; color: var(--muted); display: block; }
.mini-hotel .stars { display: inline-flex; margin: 2px 0; }

.booking-card { position: sticky; top: calc(var(--header-h) + 20px); padding: 24px; }
.booking-card .price strong { font-size: 1.7rem; }
.booking-card__form { display: grid; gap: 14px; margin-top: 18px; }
.booking-card__note { display: flex; gap: .5rem; font-size: .8rem; color: var(--muted); margin-top: 14px; }
.booking-card__note .icon { width: 16px; height: 16px; color: var(--success); margin-top: 2px; }

.accordion { display: grid; gap: 12px; }
.accordion details { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.accordion details[open] { border-color: var(--blue-100); box-shadow: var(--shadow-sm); }
.accordion summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; cursor: pointer; list-style: none;
  font-weight: 600; color: var(--navy-900); border-radius: var(--radius);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .icon { width: 20px; height: 20px; color: var(--blue-700); transition: transform .25s var(--ease); }
.accordion details[open] summary .icon { transform: rotate(180deg); }
.accordion__day { display: inline-grid; place-items: center; min-width: 64px; padding: .2rem .6rem; margin-right: .75rem; border-radius: var(--radius-pill); background: var(--gold-100); color: var(--gold-700); font-size: .75rem; font-weight: 700; }
.accordion__title { display: flex; align-items: center; flex-wrap: wrap; row-gap: 6px; }
.accordion__body { padding: 0 20px 18px; font-size: .93rem; }

/* Reviews summary */
.rating-summary { display: grid; grid-template-columns: 260px minmax(0, 1fr) 240px; gap: clamp(20px, 4vw, 48px); align-items: center; padding: clamp(20px, 3vw, 32px); }
.rating-summary__score { text-align: center; }
.rating-summary__score strong { display: block; font-family: var(--font-serif); font-size: 3.6rem; line-height: 1; color: var(--navy-900); }
.rating-summary__score .stars { margin-top: .5rem; }
.rating-summary__score .stars .icon { width: 22px; height: 22px; }
.rating-summary__score p { font-size: .88rem; color: var(--muted); margin-top: .35rem; }
.rating-summary__cta { text-align: center; }
.rating-summary__cta p { font-size: .9rem; margin-bottom: .9rem; }
.rating-bars { display: grid; gap: 10px; list-style: none; padding: 0; }
.rating-bars li { display: grid; grid-template-columns: 56px minmax(0, 1fr) 44px; align-items: center; gap: 12px; font-size: .85rem; font-weight: 600; color: var(--navy-900); }
.rating-bars__track { height: 8px; border-radius: var(--radius-pill); background: var(--blue-50); overflow: hidden; }
.rating-bars__fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold-500), var(--star)); }
.rating-bars li > span:last-child { color: var(--muted); text-align: right; }

.star-input { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.star-input input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.star-input label { cursor: pointer; color: #D9DEE6; transition: color .15s var(--ease); }
.star-input label .icon { width: 30px; height: 30px; }
.star-input input:checked ~ label, .star-input label:hover, .star-input label:hover ~ label { color: var(--star); }
.star-input input:focus-visible + label { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 4px; }

/* Legal */
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.toc { position: sticky; top: calc(var(--header-h) + 20px); padding: 20px; }
.toc h2 { font-family: var(--font-sans); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .75rem; }
.toc ol { list-style: none; padding: 0; display: grid; gap: 2px; }
.toc a { display: block; padding: .4rem .7rem; border-radius: 6px; font-size: .88rem; color: var(--text); border-left: 2px solid transparent; }
.toc a:hover { background: var(--blue-50); color: var(--navy-900); }
.toc a.is-active { color: var(--blue-700); font-weight: 600; background: var(--blue-50); border-left-color: var(--gold-500); }
.prose { color: var(--text); max-width: 760px; min-width: 0; }
.prose > * + * { margin-top: 1rem; }
.prose h2 { font-size: clamp(1.35rem, 1.1rem + .8vw, 1.65rem); margin-top: 2.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.5rem; }
.prose ul { padding-left: 1.2rem; display: grid; gap: .4rem; }
.prose li::marker { color: var(--gold-600); }
.prose strong { color: var(--navy-900); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.notice { display: flex; gap: .8rem; padding: 16px 18px; border-radius: var(--radius); background: var(--blue-50); border: 1px solid var(--blue-100); font-size: .9rem; color: var(--navy-900); }
.notice .icon { color: var(--blue-700); margin-top: 2px; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(24px, 4vw, 48px); align-items: start; }
.form-card { padding: clamp(20px, 3.5vw, 40px); }
.form-card h2 { font-size: clamp(1.45rem, 1.2rem + .9vw, 1.9rem); margin-bottom: .35rem; }
.form-card > p { color: var(--muted); margin-bottom: 1.5rem; }
.contact-side { display: grid; gap: 16px; }
.contact-line { display: flex; gap: 14px; align-items: flex-start; padding: 18px; }
.contact-line .info-card__icon { margin: 0; width: 46px; height: 46px; }
.contact-line h3 { font-size: .95rem; margin-bottom: .15rem; }
.contact-line p { font-size: .9rem; overflow-wrap: anywhere; }
.map-embed { position: relative; display: grid; place-items: center; min-height: 300px; padding: 24px; text-align: center; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: linear-gradient(135deg, var(--blue-50), var(--cream)); }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-embed .icon { width: 40px; height: 40px; color: var(--blue-700); margin: 0 auto .75rem; }
.hours { list-style: none; padding: 0; display: grid; gap: 6px; }
.hours li { display: flex; justify-content: space-between; gap: 12px; font-size: .88rem; }
.hours li span:last-child { font-weight: 600; color: var(--navy-900); text-align: right; }

/* Custom package builder */
.builder-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(24px, 4vw, 40px); align-items: start; }
.fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.fieldset + .fieldset { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border); }
.fieldset legend { display: flex; align-items: center; gap: .7rem; font-size: 1.05rem; font-weight: 700; color: var(--navy-900); margin-bottom: 16px; padding: 0; }
.fieldset legend span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--blue-700); color: var(--white); font-size: .82rem; flex-shrink: 0; }
.fieldset__sub { font-size: .82rem; font-weight: 600; color: var(--navy-900); margin: 18px 0 10px; }
.summary-card { position: sticky; top: calc(var(--header-h) + 20px); padding: 22px; }
.summary-card h3 { margin-bottom: 1rem; }
.summary-list { list-style: none; padding: 0; display: grid; gap: 10px; margin-bottom: 1.25rem; }
.summary-list li { display: flex; justify-content: space-between; gap: 12px; font-size: .88rem; padding-bottom: 10px; border-bottom: 1px dashed var(--border); }
.summary-list li span:first-child { color: var(--muted); flex-shrink: 0; }
.summary-list li span:last-child { font-weight: 600; color: var(--navy-900); text-align: right; }

/* 14 — Forms -------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form-grid .span-full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label, .field__label { font-size: .8rem; font-weight: 600; color: var(--navy-900); }
.req { color: var(--danger); }
.control {
  width: 100%; min-height: 48px; padding: .65rem .9rem;
  font-size: .92rem; color: var(--navy-900);
  background-color: var(--white); border: 1px solid var(--border-strong); border-radius: 10px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.control::placeholder { color: #8C96A8; }
.control:hover { border-color: #B6C2D2; }
.control:focus { outline: none; border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(26, 87, 166, .14); }
textarea.control { min-height: 130px; resize: vertical; line-height: 1.55; }
select.control {
  padding-right: 2.4rem; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%230A2540' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center;
}
input[type="date"].control { min-width: 0; display: flex; align-items: center; }
input[type="date"].control::-webkit-calendar-picker-indicator { opacity: .6; cursor: pointer; }
.control-wrap { position: relative; }
.control-wrap > .icon { position: absolute; left: .85rem; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); pointer-events: none; }
.control-wrap .control { padding-left: 2.5rem; }
.field.is-invalid .control, .field.is-invalid .stepper { border-color: var(--danger); }
.field.is-invalid .control:focus { box-shadow: 0 0 0 4px rgba(185, 58, 46, .14); }
.field__error { display: none; font-size: .76rem; color: var(--danger); font-weight: 500; }
.field.is-invalid .field__error { display: block; }
.field__hint { font-size: .76rem; color: var(--muted); }

.option-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.option-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.option { position: relative; display: block; cursor: pointer; }
.option input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.option span {
  display: flex; flex-direction: column; gap: 2px; height: 100%;
  padding: 12px 14px; border: 1.5px solid var(--border-strong); border-radius: 10px;
  font-size: .9rem; font-weight: 600; color: var(--navy-900); background: var(--white);
  transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
}
.option small { font-size: .76rem; font-weight: 500; color: var(--muted); }
.option:hover span { border-color: var(--blue-600); }
.option input:checked + span { border-color: var(--blue-700); background: var(--blue-50); box-shadow: inset 0 0 0 1px var(--blue-700); }
.option input:focus-visible + span { outline: 3px solid var(--gold-500); outline-offset: 2px; }

.checkbox { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; cursor: pointer; }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--blue-700); flex-shrink: 0; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px; }

.stepper { display: flex; align-items: stretch; border: 1px solid var(--border-strong); border-radius: 10px; overflow: hidden; min-height: 48px; background: var(--white); }
.stepper button { display: grid; place-items: center; width: 46px; flex-shrink: 0; color: var(--blue-700); background: var(--blue-50); }
.stepper button:hover { background: var(--blue-100); }
.stepper button .icon { width: 18px; height: 18px; }
.stepper input { flex: 1; min-width: 0; text-align: center; border: 0; font-weight: 700; color: var(--navy-900); background: var(--white); -moz-appearance: textfield; }
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stepper input:focus { outline: none; }
.stepper:focus-within { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(26, 87, 166, .14); }

.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; align-items: center; }
.form-note { font-size: .8rem; color: var(--muted); }
.form-success { display: none; gap: .8rem; padding: 16px 18px; margin-top: 18px; border-radius: var(--radius); background: #E9F6EF; border: 1px solid #BFE3CF; color: #0F5132; font-size: .92rem; }
.form-success.is-visible { display: flex; }
.form-success .icon { color: var(--success); margin-top: 2px; }

.newsletter { display: flex; gap: 8px; }
.newsletter .control { min-height: 44px; background-color: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .18); color: var(--white); }
.newsletter .control::placeholder { color: rgba(255, 255, 255, .55); }
.newsletter .control:focus { border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(196, 160, 90, .2); }
.newsletter .btn { min-height: 44px; }

/* 15 — Dialog, toast, floating UI ----------------------------------------- */
.modal {
  width: min(560px, calc(100% - 32px)); max-height: calc(100dvh - 32px); padding: 0; margin: auto;
  border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); color: var(--text);
}
.modal::backdrop { background: rgba(7, 27, 51, .55); backdrop-filter: blur(3px); }
.modal[open] { animation: modal-in .28s var(--ease); }
@keyframes modal-in { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 22px 24px 0; }
.modal__head h2 { font-size: 1.45rem; }
.modal__head p { font-size: .88rem; color: var(--muted); margin-top: .2rem; }
.modal__close { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: var(--navy-900); background: var(--blue-50); flex-shrink: 0; }
.modal__close:hover { background: var(--blue-100); }
.modal__close .icon { width: 20px; height: 20px; }
.modal__body { padding: 20px 24px 24px; }

.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 300;
  display: flex; align-items: center; gap: .6rem; width: max-content; max-width: calc(100% - 32px);
  padding: 12px 18px; border-radius: var(--radius); background: var(--navy-900); color: var(--white);
  font-size: .9rem; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translate(-50%, 16px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast .icon { color: var(--gold-500); }

.float-actions { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column-reverse; gap: 10px; align-items: center; }
.float-btn { display: grid; place-items: center; border-radius: 50%; box-shadow: 0 10px 24px -8px rgba(7, 27, 51, .45); transition: transform .2s var(--ease), opacity .25s var(--ease), visibility .25s; }
.float-btn:hover { transform: translateY(-2px); }
.float-btn--wa { width: 56px; height: 56px; background: var(--whatsapp); color: var(--white); }
.float-btn--wa:hover { color: var(--white); }
.float-btn--wa .icon { width: 30px; height: 30px; }
.float-btn--top { width: 44px; height: 44px; background: var(--white); color: var(--navy-900); border: 1px solid var(--border); opacity: 0; visibility: hidden; }
.float-btn--top.is-visible { opacity: 1; visibility: visible; }
.float-btn--top .icon { width: 20px; height: 20px; }

/* 16 — Footer ------------------------------------------------------------- */
.site-footer { position: relative; background: var(--navy-950); color: rgba(255, 255, 255, .72); margin-top: var(--section-y); }
.site-footer::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--gold-600), var(--gold-500), var(--gold-600)); }
.footer-top { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 56px); padding-block: clamp(48px, 7vw, 72px); }
.site-footer .brand__name { color: var(--white); }
.site-footer .brand__tag { color: var(--gold-500); }
.site-footer .brand__mark { background: var(--cream); border-radius: 10px; padding: 4px; }
.footer-about p { margin: 1.1rem 0 1.25rem; font-size: .9rem; max-width: 340px; }
.footer-col h3 { font-family: var(--font-sans); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.footer-col > p { font-size: .88rem; margin-bottom: .9rem; }
.footer-links { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer-links a { color: rgba(255, 255, 255, .72); font-size: .9rem; }
.footer-links a:hover { color: var(--gold-500); }
.footer-contact { list-style: none; padding: 0; display: grid; gap: .8rem; }
.footer-contact li { display: flex; gap: .65rem; font-size: .9rem; }
.footer-contact .icon { width: 18px; height: 18px; color: var(--gold-500); margin-top: 3px; }
.footer-contact a { color: rgba(255, 255, 255, .85); overflow-wrap: anywhere; }
.footer-contact a:hover { color: var(--gold-500); }
.socials { display: flex; gap: 10px; list-style: none; padding: 0; }
.socials a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .07); color: var(--white); border: 1px solid rgba(255, 255, 255, .1); transition: background-color .2s var(--ease), color .2s var(--ease); }
.socials a:hover { background: var(--gold-500); color: var(--navy-950); border-color: var(--gold-500); }
.socials .icon { width: 18px; height: 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; padding-block: 20px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .82rem; }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; padding: 0; }
.footer-bottom a { color: rgba(255, 255, 255, .72); }
.footer-bottom a:hover { color: var(--gold-500); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(10px, 1.6vw, 18px); list-style: none; padding: 0; }
.gallery li { border-radius: var(--radius); overflow: hidden; background: var(--blue-50); }
.gallery img { width: 100%; aspect-ratio: 9 / 7; object-fit: cover; transition: transform .6s var(--ease); }
.gallery li:hover img { transform: scale(1.04); }

/* 17 — Utilities & motion ------------------------------------------------- */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.pt-0 { padding-top: 0; }
.mt-lg { margin-top: clamp(32px, 5vw, 48px); }
.mt-md { margin-top: 24px; }
.mt-sm { margin-top: 12px; }
.lead--wide { max-width: 760px; margin-top: .5rem; }
.btn-group--center { justify-content: center; }
.features-grid, .grid[role="list"], .stats { list-style: none; padding: 0; }
.stretched-link { color: inherit; }
.stretched-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.stretched-link:hover { color: var(--blue-600); }
.stretched-link:focus-visible { outline: none; }
.hotel-card:focus-within { outline: 3px solid var(--gold-500); outline-offset: 2px; }
.field .checkbox { font-size: .88rem; font-weight: 400; color: var(--text); }
.center-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: clamp(28px, 4vw, 40px); }

.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .slider__track { scroll-behavior: auto; }
}

/* 18 — Responsive --------------------------------------------------------- */
@media (max-width: 1199.98px) {
  .nav__link { padding-inline: .55rem; font-size: .86rem; }
  .brand__name { font-size: 1.15rem; }
  .hotels-band__grid { grid-template-columns: 1fr; }
  .hotels-band__intro { max-width: 620px; }
  .footer-top { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-about { grid-column: 1 / -1; }
  .search-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .search-form .btn { grid-column: 1 / -1; }
  .features-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rating-summary { grid-template-columns: 220px minmax(0, 1fr); }
  .rating-summary__cta { grid-column: 1 / -1; }
}

@media (max-width: 991.98px) {
  :root { --header-h: 68px; }
  .nav-toggle, .nav-close { display: grid; }
  .header-actions .btn { display: none; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 120;
    width: min(360px, 88vw); flex-direction: column; align-items: stretch;
    padding: 14px 18px 28px; background: var(--white); box-shadow: var(--shadow-lg);
    overflow-y: auto; overscroll-behavior: contain;
    /* clip-path (not transform) keeps the closed drawer from widening the page on touch devices */
    clip-path: inset(0 0 0 100%); visibility: hidden;
    transition: clip-path .32s var(--ease), visibility .32s;
  }
  .nav.is-open { clip-path: inset(0 0 0 0); visibility: visible; }
  .nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { width: 100%; justify-content: space-between; padding: .85rem .75rem; font-size: 1rem; }
  .nav__link[aria-current="page"]::after, .nav__item.is-current > .nav__link::after { left: 0; bottom: auto; top: 50%; width: 3px; height: 20px; transform: translateY(-50%); }
  .dropdown {
    position: static; min-width: 0; transform: none; box-shadow: none; border: 0; padding: 0 0 6px 8px;
    opacity: 1; visibility: visible; display: none;
  }
  .nav__item.is-open > .dropdown { display: block; transform: none; }
  .dropdown::before { display: none; }
  .nav__cta-mobile { display: grid; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
  .nav-overlay { display: block; position: fixed; inset: 0; z-index: 110; background: rgba(7, 27, 51, .45); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
  .nav-overlay.is-visible { opacity: 1; visibility: visible; }

  .grid-4, .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
  .slider { --per-view: 2; }
  .hotels-band .slider { --per-view: 2.3; }
  .hero__badge { display: none; }
  .cta__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
  .step::after { display: none; }
  .detail-layout, .builder-layout, .contact-layout, .legal-layout { grid-template-columns: 1fr; }
  .booking-card, .summary-card, .toc { position: static; }
  .rating-summary { grid-template-columns: 1fr; }
  .option-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
  .hero { min-height: 0; padding-top: 40px; }
  .hero::before {
    background:
      linear-gradient(0deg, var(--white) 0%, rgba(255, 255, 255, 0) 22%),
      linear-gradient(180deg, rgba(251, 248, 242, .95) 0%, rgba(251, 248, 242, .9) 60%, rgba(251, 248, 242, .74) 100%);
  }
  .hero__features { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 16px; }
  .hero__feature { flex-direction: row; align-items: center; gap: .5rem; }
  .hero__feature .icon { width: 22px; height: 22px; }
  .page-hero::before { background: linear-gradient(180deg, rgba(251, 248, 242, .95), rgba(251, 248, 242, .88)); }
  .section-head--split { grid-template-columns: 1fr; justify-items: center; }
  .section-head--split > div:first-child { grid-column: 1; }
  .section-head--split .slider-nav { display: none; }
  .slider { --per-view: 1.12; }
  .hotels-band .slider { --per-view: 1.35; }
  .slider-dots { display: flex; }
  .tabs__tab { flex-direction: column; gap: .3rem; min-height: 66px; padding: .6rem .35rem; font-size: .74rem; line-height: 1.2; text-align: center; }
  .form-grid, .form-grid--3, .checkbox-grid { grid-template-columns: 1fr; }
  .option-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-hotels { grid-template-columns: 1fr; }
  .detail-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; aspect-ratio: auto; }
  .detail-gallery img:first-child { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16 / 10; }
  .detail-gallery img:not(:first-child) { aspect-ratio: 4 / 3; }
  .toolbar { flex-direction: column; flex-wrap: nowrap; align-items: stretch; }
  .toolbar__group--chips { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-inline: -16px; padding: 2px 16px; }
  .toolbar__group--chips::-webkit-scrollbar { display: none; }
  .chip { flex-shrink: 0; }
  .toolbar .control { width: 100%; }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { flex-direction: column; }
  .hotels-band .slider-nav { display: none; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .search-form { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; }
  .features-grid .feature:last-child { grid-column: 1 / -1; }
  .steps { grid-template-columns: 1fr; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__name { font-size: 1.08rem; }
  .brand__tag { font-size: .56rem; letter-spacing: .16em; }
  .footer-top { grid-template-columns: 1fr; }
  .btn-group .btn { flex: 1 1 100%; }
  .hotel-card__actions { flex-direction: column; }
  .newsletter { flex-direction: column; }
  .modal__head, .modal__body { padding-inline: 18px; }
  .stats { gap: 10px; }
  .option-grid--4 { grid-template-columns: 1fr 1fr; }
}

/* PHP version additions ---------------------------------------------------- */
.review-card__avatar--initials { display: grid; place-items: center; background: var(--blue-50); color: var(--blue-700); font-weight: 700; font-size: 1rem; }
.h3 { font-family: var(--font-sans); font-size: clamp(1.1rem, 1rem + .35vw, 1.25rem); margin-bottom: .4rem; }
.rating-summary--empty .rating-summary__score .stars .icon { color: var(--gold-200); }
.form-error { display: none; gap: .8rem; padding: 14px 16px; margin-top: 14px; border-radius: var(--radius); background: #FCEDEB; border: 1px solid #F2C4BE; color: var(--danger); font-size: .9rem; }
.form-error.is-visible { display: flex; }
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
button[aria-busy="true"] { opacity: .7; pointer-events: none; }

/* CMS additions ------------------------------------------------------------ */
.brand__mark { width: auto; height: 44px; max-width: 220px; object-fit: contain; }
.brand__mark--badge { background: var(--cream); border-radius: 10px; padding: 4px; }
.site-footer .brand__mark { background: none; padding: 0; }
.site-footer .brand__mark--badge { background: var(--cream); padding: 4px; }
.hero__badge img { width: auto; max-width: 64px; object-fit: contain; }
.icon--img { object-fit: contain; }
.price--on-demand strong { font-size: 1.02rem; color: var(--gold-700); }
.booking-card .price--on-demand strong { font-size: 1.35rem; }
.hotel-card__price--on-demand { color: var(--gold-700); }
.prose-sm > * + * { margin-top: 1rem; }
.prose-sm ul { padding-left: 1.1rem; display: grid; gap: .35rem; }
.prose-sm li::marker { color: var(--gold-600); }
.prose-sm strong { color: var(--navy-900); }
.info-card .prose-sm { font-size: .92rem; }
.accordion__body > * + * { margin-top: .75rem; }
.accordion__body ul { padding-left: 1.1rem; }
.cta__grid--single { grid-template-columns: 1fr; }
.features-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.features-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.features-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.features-grid--1 { grid-template-columns: 1fr; }
.detail-gallery--1 { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.detail-gallery--1 img:first-child { grid-row: auto; }
.detail-gallery--2 { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr; }
.detail-gallery--2 img:first-child { grid-row: auto; }
.map-embed--live { padding: 0; min-height: 380px; }
@media (max-width: 1199.98px) {
  .features-grid--4, .features-grid--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 767.98px) {
  .detail-gallery--1 img:first-child, .detail-gallery--2 img:first-child { grid-column: 1 / -1; }
  .brand__mark { max-width: 160px; }
}
@media (max-width: 575.98px) {
  .features-grid--4, .features-grid--5, .features-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand__mark { height: 38px; }
}
