/* ==========================================================================
   GroupStay - design system
   ========================================================================== */

:root {
  --navy: #1d3a5f;
  --navy-2: #24497a;
  --ink: #1e2a22;
  --muted: #66705f;
  --line: #e4dfd2;
  --bg: #f6f3ec;
  --card: #ffffff;
  --primary: #29578e;
  --primary-dark: #1e4169;
  --primary-soft: #e6edf7;
  --accent: #f0a028;
  --accent-dark: #c67c05;
  --accent-soft: #fbf0dc;
  --success: #1b8a4c;
  --success-soft: #e2f3e6;
  --warn: #b45309;
  --warn-soft: #fdf3e2;
  --danger: #d92d20;
  --danger-soft: #fdeceb;
  --star: #f2b01e;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(24, 46, 36, .06), 0 8px 24px rgba(24, 46, 36, .08);
  --shadow-lg: 0 4px 12px rgba(15, 53, 39, .10), 0 24px 60px rgba(15, 53, 39, .16);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-head: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 15.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.18; margin: 0 0 .5em; letter-spacing: -.015em; }
h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; }
h2 { font-size: clamp(1.45rem, 2.6vw, 2rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: 10px 16px; z-index: 300; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid #8db4f5; outline-offset: 2px; border-radius: 4px; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.container--narrow { width: min(880px, calc(100% - 40px)); }

/* ---------- gradient media tiles (no external images) ---------- */
.grad { position: relative; overflow: hidden; background: linear-gradient(135deg, #35618e, #16324f); }
.grad::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.14) 1.1px, transparent 1.3px); background-size: 22px 22px; opacity: .5; }
.grad-0 { background: linear-gradient(135deg, #e8a13a, #b4552d); }
.grad-1 { background: linear-gradient(135deg, #8fb56e, #41603a); }
.grad-2 { background: linear-gradient(135deg, #3fae9f, #17607a); }
.grad-3 { background: linear-gradient(135deg, #f2c879, #c97c2d); }
.grad-4 { background: linear-gradient(135deg, #74a9db, #2e5f8c); }
.grad-5 { background: linear-gradient(135deg, #97b294, #4c6549); }
.grad-6 { background: linear-gradient(135deg, #db7a6a, #8f3d2f); }
.grad-7 { background: linear-gradient(135deg, #6b7794, #303a57); }
.grad-8 { background: linear-gradient(135deg, #ddb558, #8c6f2e); }
.grad-9 { background: linear-gradient(135deg, #c99a6b, #7a5232); }
.grad .monogram {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; color: rgba(255,255,255,.9);
  font-size: clamp(2rem, 6vw, 3.4rem); letter-spacing: .06em; text-transform: uppercase;
}
.grad .grad-tag {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  background: rgba(8, 22, 40, .55); color: #fff; font-size: .72rem; font-weight: 600;
  padding: 4px 10px; border-radius: 999px; backdrop-filter: blur(4px);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 600 .95rem var(--font); border: 0; cursor: pointer; text-decoration: none;
  padding: 12px 22px; border-radius: 10px; transition: background .15s, transform .05s, box-shadow .15s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 6px 16px rgba(27, 91, 215, .28); }
.btn--primary:hover { background: var(--primary-dark); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 6px 16px rgba(255, 122, 26, .30); }
.btn--accent:hover { background: var(--accent-dark); }
.btn--ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--lg { padding: 15px 30px; font-size: 1.02rem; border-radius: 12px; }
.btn--sm { padding: 8px 14px; font-size: .84rem; border-radius: 8px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.btn--link { background: none; box-shadow: none; color: var(--primary); padding: 8px 10px; }
.btn--link:hover { text-decoration: underline; }

/* ---------- top utility bar ---------- */
.topbar { background: var(--navy); color: #cfe0f5; font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 36px; }
.topbar a { color: #eaf2fc; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: #fff; }
.topbar__phone svg { width: 14px; height: 14px; }
.topbar__left a, .topbar__right a { display: inline-flex; align-items: center; gap: 6px; }
.topbar__left a svg, .topbar__right a svg { width: 14px; height: 14px; }
.topbar .divider { width: 1px; height: 14px; background: rgba(255,255,255,.25); }
.topbar__note { color: #9fb8d8; }

/* ---------- header ---------- */
.header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 120; }
.header__inner { display: flex; align-items: center; gap: 22px; min-height: 66px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.28rem; color: var(--navy); }
.logo:hover { text-decoration: none; }
.logo__mark {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--navy-2)); color: #fff; flex: none;
}
.logo__mark svg { width: 20px; height: 20px; }
.logo small { display: block; font-size: .62rem; font-weight: 600; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; line-height: 1; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav > .nav__item { position: relative; }
.nav a.nav__link, .nav button.nav__link {
  display: inline-flex; align-items: center; gap: 5px; padding: 10px 13px; border-radius: 9px;
  color: var(--ink); font: 600 .93rem var(--font); background: none; border: 0; cursor: pointer;
}
.nav a.nav__link:hover, .nav button.nav__link:hover { background: var(--primary-soft); color: var(--primary-dark); text-decoration: none; }
.nav .caret { width: 12px; height: 12px; transition: transform .15s; }
.nav__item.open .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .15s; z-index: 50;
}
.nav__item.open .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a { display: flex; gap: 11px; padding: 10px 12px; border-radius: 9px; color: var(--ink); align-items: flex-start; }
.dropdown a:hover { background: var(--primary-soft); text-decoration: none; }
.dropdown a svg { width: 18px; height: 18px; color: var(--primary); margin-top: 2px; flex: none; }
.dropdown strong { display: block; font-size: .9rem; color: var(--navy); }
.dropdown span { font-size: .78rem; color: var(--muted); }
.header__cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.header__signin { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .9rem; color: var(--navy); }
.header__signin svg { width: 15px; height: 15px; }
.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger svg { width: 26px; height: 26px; color: var(--navy); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(10, 25, 45, .5); opacity: 0; transition: opacity .2s; }
.drawer.open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(340px, 88vw); background: #fff;
  transform: translateX(100%); transition: transform .22s; padding: 18px; overflow-y: auto;
}
.drawer.open .drawer__panel { transform: none; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.drawer__close { background: none; border: 0; cursor: pointer; padding: 6px; }
.drawer__close svg { width: 22px; height: 22px; }
.drawer__panel nav a { display: block; padding: 12px 10px; border-radius: 9px; color: var(--ink); font-weight: 600; }
.drawer__panel nav a:hover { background: var(--primary-soft); text-decoration: none; }
.drawer__panel .drawer__phone { margin: 16px 10px; color: var(--muted); font-size: .88rem; }
.drawer__panel .drawer__phone a { display: inline-flex; align-items: center; gap: 7px; }
.drawer__panel .drawer__phone svg { width: 15px; height: 15px; }

/* ---------- hero ---------- */
.hero { background: linear-gradient(150deg, var(--navy) 15%, var(--navy-2) 60%, #3a6aa5); color: #fff; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.16) 1.2px, transparent 1.4px); background-size: 26px 26px;
}
.hero::after {
  content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 160, 40, .28), transparent 65%); top: -220px; right: -140px;
}
.hero__inner { position: relative; z-index: 2; padding: 58px 0 64px; }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: #f8dfaf; font-size: .8rem; font-weight: 700; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.hero h1 { color: #fff; max-width: 720px; }
.hero h1 em { font-style: normal; color: #f2b84b; }
.hero p.sub { color: #c4d5ea; font-size: 1.08rem; max-width: 620px; margin-bottom: 28px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 12px 34px; margin-top: 26px; color: #c4d5ea; font-size: .88rem; }
.hero__stats b { color: #fff; font-family: var(--font-head); font-size: 1.05rem; display: block; }

/* ---------- search widget ---------- */
.searchbox { background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); padding: 10px 12px 14px; max-width: 980px; }
.searchbox__tabs { display: flex; gap: 4px; flex-wrap: wrap; padding: 4px; }
.searchbox__tabs button {
  display: inline-flex; align-items: center; gap: 7px; border: 0; background: none; cursor: pointer;
  font: 700 .88rem var(--font); color: var(--muted); padding: 10px 16px; border-radius: 10px;
}
.searchbox__tabs button svg { width: 16px; height: 16px; }
.searchbox__tabs button.active { background: var(--primary-soft); color: var(--primary-dark); }
.searchbox__body { padding: 6px 4px 4px; }
.searchgrid { display: grid; grid-template-columns: 1.5fr 1fr 1fr .8fr auto; gap: 10px; align-items: end; }
.searchgrid--rooms { grid-template-columns: 1.5fr 1fr 1fr auto; }
.searchbox .field label { display: block; font-size: .72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin: 0 0 5px 4px; }
.searchbox .field input, .searchbox .field select {
  width: 100%; padding: 13px 13px; border: 1.5px solid var(--line); border-radius: 10px; font: 500 .95rem var(--font); color: var(--ink); background: #fbfcfe;
}
.searchbox .field input:focus, .searchbox .field select:focus { border-color: var(--primary); background: #fff; outline: none; box-shadow: 0 0 0 3px rgba(27,91,215,.15); }
.searchbox__hint { font-size: .78rem; color: var(--muted); padding: 10px 6px 0; }
.searchbox__hint a { font-weight: 700; }
.search-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; padding: 12px 4px 0; }

/* autocomplete */
.ac { position: relative; }
.ac__list {
  position: absolute; z-index: 60; top: calc(100% + 6px); left: 0; right: 0; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg); overflow: hidden; max-height: 300px; overflow-y: auto;
}
.ac__list[hidden] { display: none; }
.ac__list button { display: flex; width: 100%; text-align: left; gap: 10px; background: none; border: 0; cursor: pointer; padding: 10px 14px; font: 500 .92rem var(--font); color: var(--ink); align-items: center; }
.ac__list button:hover, .ac__list button.active { background: var(--primary-soft); }
.ac__list svg { width: 16px; height: 16px; color: var(--muted); flex: none; }
.ac__list .ac__sub { color: var(--muted); font-size: .78rem; margin-left: auto; }

/* stepper */
.stepper { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 10px; background: #fbfcfe; overflow: hidden; }
.stepper button { width: 40px; height: 44px; border: 0; background: none; cursor: pointer; font-size: 1.15rem; font-weight: 700; color: var(--primary); }
.stepper button:hover { background: var(--primary-soft); }
.stepper span { flex: 1; text-align: center; font-weight: 700; color: var(--navy); }
.stepper small { display: block; font-weight: 600; font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

/* ---------- generic sections ---------- */
.section { padding: 64px 0; }
.section--tint { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.section__head p { color: var(--muted); margin: 6px 0 0; max-width: 640px; }
.eyebrow-label { color: var(--accent-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; margin-bottom: 8px; font-family: var(--font-head); }

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

/* ---------- cards ---------- */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.card__pad { padding: 24px; }
.icon-bullet { display: flex; gap: 14px; align-items: flex-start; }
.icon-bullet .ic {
  width: 46px; height: 46px; border-radius: 12px; background: var(--primary-soft); color: var(--primary-dark);
  display: grid; place-items: center; flex: none;
}
.icon-bullet .ic svg { width: 22px; height: 22px; }
.icon-bullet h3 { margin-bottom: 4px; }
.icon-bullet p { color: var(--muted); font-size: .92rem; margin: 0; }

/* feature triplet on tinted background */
.triplet { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; padding: 26px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.step__num {
  counter-increment: step; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff;
  font-family: var(--font-head); font-weight: 800; display: grid; place-items: center; font-size: 1.1rem; margin-bottom: 16px;
}
.step__num::before { content: counter(step); }

/* guarantee band */
.band { background: linear-gradient(120deg, var(--navy), #2d5a94); color: #fff; border-radius: 20px; padding: 34px 38px; display: flex; gap: 26px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.band h2 { color: #fff; margin-bottom: 6px; }
.band p { color: #c4d5ea; margin: 0; max-width: 560px; }
.band .pill { background: var(--success); color: #fff; font-weight: 800; font-size: .82rem; padding: 8px 14px; border-radius: 999px; display: inline-flex; align-items: center; gap: 7px; margin-bottom: 10px; }

/* deal cards */
.deal-card { position: relative; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s; }
.deal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.deal-card .grad { height: 150px; }
.deal-card__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.deal-card .off { position: absolute; top: 12px; right: 12px; background: var(--accent); color: #fff; font-weight: 800; font-size: .8rem; padding: 5px 11px; border-radius: 999px; z-index: 2; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 8px; }
.price-row .now { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--navy); }
.price-row .was { color: var(--muted); text-decoration: line-through; font-size: .9rem; }
.price-row .per { color: var(--muted); font-size: .78rem; }

/* destination tiles */
.dest-tile { position: relative; border-radius: var(--radius); overflow: hidden; height: 210px; box-shadow: var(--shadow); display: block; transition: transform .15s; }
.dest-tile:hover { transform: translateY(-3px); text-decoration: none; }
.dest-tile__label { position: absolute; inset: auto 0 0 0; padding: 40px 18px 16px; background: linear-gradient(transparent, rgba(6, 18, 34, .82)); color: #fff; }
.dest-tile__label b { font-family: var(--font-head); font-size: 1.15rem; display: block; }
.dest-tile__label span { font-size: .8rem; color: #dbe6f3; }

/* segment chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--line);
  border-radius: 999px; padding: 9px 18px; font-weight: 600; font-size: .9rem; color: var(--navy); transition: all .15s;
}
.chip:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.chip svg { width: 15px; height: 15px; color: var(--primary); }

/* testimonials */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.quote-card .stars-sm { color: var(--star); letter-spacing: 2px; font-size: .9rem; }
.quote-card blockquote { margin: 12px 0 16px; font-size: .98rem; color: var(--ink); }
.quote-card .who { display: flex; gap: 12px; align-items: center; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--navy-2)); color: #fff; display: grid; place-items: center; font-weight: 800; font-family: var(--font-head); flex: none; }
.avatar--2 { background: linear-gradient(135deg, #db7a6a, #8f3d2f); }
.avatar--3 { background: linear-gradient(135deg, #3fae9f, #17607a); }
.quote-card .who b { display: block; font-size: .9rem; color: var(--navy); }
.quote-card .who span { font-size: .78rem; color: var(--muted); }

.press-row { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: center; color: #8ba0b5; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; letter-spacing: .02em; }

/* trust stats */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-strip b { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--navy); }
.stat-strip span { color: var(--muted); font-size: .88rem; }

/* ---------- forms (generic) ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .span-2 { grid-column: span 2; }
.field { margin-bottom: 0; }
.field label { display: block; font-weight: 700; font-size: .86rem; color: var(--navy); margin-bottom: 7px; }
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 13px; border: 1.5px solid var(--line); border-radius: 10px;
  font: 500 .95rem var(--font); color: var(--ink); background: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,91,215,.15); }
.field .hint { font-size: .78rem; color: var(--muted); margin-top: 5px; }
.field .err { font-size: .8rem; color: var(--danger); margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field.invalid .err { display: block; }
.checkline { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--ink); }
.checkline input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--primary); flex: none; }
fieldset.checkset { border: 0; padding: 0; margin: 0; }
fieldset.checkset legend { font-weight: 700; font-size: .86rem; color: var(--navy); margin-bottom: 8px; padding: 0; }
.checkset .checkline { margin-bottom: 8px; }

/* radio pills (star rating) */
.pill-radios { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-radios label { border: 1.5px solid var(--line); border-radius: 999px; padding: 8px 16px; cursor: pointer; font-weight: 600; font-size: .88rem; color: var(--ink); background: #fff; }
.pill-radios input { display: none; }
.pill-radios label:has(input:checked) { border-color: var(--primary); background: var(--primary-soft); color: var(--primary-dark); }
.pill-radios label:hover { border-color: var(--primary); }

/* ---------- page hero (interior pages) ---------- */
.page-hero { background: linear-gradient(150deg, var(--navy) 20%, #3a6aa5); color: #fff; padding: 46px 0 54px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(240,160,40,.25), transparent 65%); top: -180px; right: -80px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #c4d5ea; max-width: 640px; font-size: 1.05rem; }
.page-hero .crumb { color: #9fb8d8; font-size: .82rem; margin-bottom: 14px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.page-hero .crumb a { color: #cfe0f5; }

/* ---------- results page ---------- */
.results-layout { display: grid; grid-template-columns: 268px 1fr; gap: 24px; align-items: start; padding: 26px 0 60px; }
.filters { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); position: sticky; top: 86px; max-height: calc(100vh - 106px); overflow-y: auto; }
.filters__group { padding: 16px 18px; border-bottom: 1px solid var(--line); }
.filters__group:last-child { border-bottom: 0; }
.filters__group h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 10px; }
.filters__group .checkline { margin-bottom: 7px; font-size: .88rem; }
.filters__group .checkline .count { color: var(--muted); font-size: .78rem; margin-left: auto; }
.filters input[type="number"] { width: 100%; padding: 9px 10px; border: 1.5px solid var(--line); border-radius: 8px; font: 500 .9rem var(--font); }
.results-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.results-top h2 { font-size: 1.2rem; margin: 0; }
.results-top .count b { color: var(--navy); }
.sortsel { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--muted); }
.sortsel select { padding: 9px 34px 9px 12px; border: 1.5px solid var(--line); border-radius: 9px; font: 600 .9rem var(--font); color: var(--navy); background: #fff; }

/* hotel result card */
.hotel-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); display: grid; grid-template-columns: 240px 1fr 218px; overflow: hidden; margin-bottom: 16px; transition: box-shadow .15s, transform .15s; }
.hotel-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.hotel-card .grad { min-height: 178px; }
.hotel-card__body { padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.hotel-card__body .type { font-size: .76rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }
.hotel-card__body h3 { margin: 0; font-size: 1.14rem; }
.hotel-card__body h3 a { color: var(--navy); }
.loc { display: flex; gap: 6px; align-items: center; color: var(--muted); font-size: .84rem; }
.loc svg { width: 13px; height: 13px; flex: none; }
.rating-badge { display: inline-flex; align-items: center; gap: 7px; }
.rating-badge b { background: var(--navy); color: #fff; border-radius: 7px 7px 7px 1px; padding: 4px 8px; font-size: .84rem; }
.rating-badge span { color: var(--muted); font-size: .8rem; }
.amen-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.amen-chip { background: var(--bg); border: 1px solid var(--line); color: var(--muted); border-radius: 7px; font-size: .75rem; font-weight: 600; padding: 3px 9px; display: inline-flex; gap: 5px; align-items: center; }
.amen-chip svg { width: 12px; height: 12px; }
.hotel-card__cta { border-left: 1px solid var(--line); padding: 18px; display: flex; flex-direction: column; align-items: flex-end; text-align: right; gap: 4px; }
.hotel-card__cta .price-note { color: var(--muted); font-size: .74rem; }
.hotel-card__cta .now { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--navy); }
.hotel-card__cta .was { color: var(--muted); text-decoration: line-through; font-size: .85rem; }
.hotel-card__cta .btn { margin-top: auto; }

/* group/extended quote band inside result card */
.quote-band { grid-column: 1 / -1; border-top: 1px dashed var(--line); padding: 13px 20px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: .88rem; }
.quote-band--group { background: linear-gradient(90deg, var(--success-soft), #fff 70%); }
.quote-band--stay { background: linear-gradient(90deg, var(--primary-soft), #fff 70%); }
.quote-band b { color: var(--navy); }
.quote-band .tag { font-weight: 800; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; padding: 4px 10px; border-radius: 999px; }
.quote-band--group .tag { background: var(--success); color: #fff; }
.quote-band--stay .tag { background: var(--primary); color: #fff; }
.quote-band .spacer { flex: 1; }

/* stars display */
.stars { color: var(--star); letter-spacing: 2px; font-size: .82rem; }

/* ---------- hotel detail ---------- */
.galley { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 150px 150px; gap: 10px; margin-top: -40px; position: relative; z-index: 3; }
.galley .grad:first-child { grid-row: span 2; border-radius: var(--radius) 0 0 var(--radius); }
.galley .grad { border-radius: 0; }
.galley .grad:last-child { border-radius: 0 var(--radius) 0 0; }
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 26px; align-items: start; padding: 30px 0 70px; }
.detail-side { position: sticky; top: 86px; display: flex; flex-direction: column; gap: 16px; }
.room-row { display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; flex-wrap: wrap; }
.room-row:last-child { border-bottom: 0; }
.room-row .specs { display: flex; gap: 14px; color: var(--muted); font-size: .82rem; flex-wrap: wrap; margin-top: 3px; }
.room-row .specs svg { width: 13px; height: 13px; vertical-align: -2px; margin-right: 3px; }
.cap-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.cap-table th, .cap-table td { text-align: center; padding: 9px 8px; border-bottom: 1px solid var(--line); }
.cap-table th { color: var(--muted); font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; }
.cap-table td:first-child, .cap-table th:first-child { text-align: left; font-weight: 600; color: var(--navy); }
.review { border-bottom: 1px solid var(--line); padding: 16px 0; }
.review:last-child { border-bottom: 0; }

/* ---------- wizard ---------- */
.wizard { max-width: 760px; margin: 0 auto; }
.wizard__steps { display: flex; gap: 0; margin-bottom: 26px; counter-reset: wstep; }
.wizard__steps .wstep { flex: 1; text-align: center; position: relative; font-size: .78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.wizard__steps .wstep::before {
  counter-increment: wstep; content: counter(wstep); display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 2px solid var(--line); color: var(--muted);
  margin: 0 auto 8px; font-size: .88rem; position: relative; z-index: 2;
}
.wizard__steps .wstep:not(:first-child)::after { content: ""; position: absolute; top: 17px; left: calc(-50% + 20px); right: calc(50% + 20px); height: 2px; background: var(--line); }
.wizard__steps .wstep.active { color: var(--primary-dark); }
.wizard__steps .wstep.active::before { border-color: var(--primary); background: var(--primary); color: #fff; }
.wizard__steps .wstep.done { color: var(--success); }
.wizard__steps .wstep.done::before { border-color: var(--success); background: var(--success); color: #fff; content: "✓"; }
.wizard__panel { display: none; }
.wizard__panel.active { display: block; animation: fadein .25s; }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.wizard__nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 26px; }

/* success panel */
.success-hero { text-align: center; padding: 30px 20px 10px; }
.success-hero .big-check { width: 74px; height: 74px; border-radius: 50%; background: var(--success-soft); color: var(--success); display: grid; place-items: center; margin: 0 auto 18px; }
.success-hero .big-check svg { width: 36px; height: 36px; }
.ref-pill { display: inline-block; background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 800; letter-spacing: .06em; padding: 10px 20px; border-radius: 10px; font-size: 1.05rem; }

/* planner card */
.planner-card { display: flex; gap: 14px; align-items: center; background: var(--primary-soft); border: 1px solid #cdddf8; border-radius: 12px; padding: 14px 16px; }
.planner-card .avatar { width: 48px; height: 48px; }
.planner-card b { display: block; color: var(--navy); }
.planner-card span { font-size: .82rem; color: var(--muted); }

/* ---------- tables ---------- */
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; background: #fff; font-size: .9rem; }
.table th { text-align: left; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding: 12px 14px; border-bottom: 2px solid var(--line); background: #fbfcfe; }
.table td { padding: 13px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.table tr:last-child td { border-bottom: 0; }
.table .best { background: var(--success-soft); }

/* ---------- accordion ---------- */
.acc { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.acc__item + .acc__item { border-top: 1px solid var(--line); }
.acc__btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px; background: none; border: 0; cursor: pointer; padding: 17px 20px; font: 700 .98rem var(--font); color: var(--navy); text-align: left; }
.acc__btn svg { width: 17px; height: 17px; flex: none; transition: transform .2s; color: var(--muted); }
.acc__item.open .acc__btn svg { transform: rotate(180deg); }
.acc__body { display: none; padding: 0 20px 18px; color: var(--muted); font-size: .93rem; }
.acc__item.open .acc__body { display: block; }

/* ---------- badges & misc ---------- */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 800; padding: 4px 11px; border-radius: 999px; }
.badge--success { background: var(--success-soft); color: var(--success); }
.badge--warn { background: var(--warn-soft); color: var(--warn); }
.badge--blue { background: var(--primary-soft); color: var(--primary-dark); }
.badge--accent { background: var(--accent-soft); color: var(--accent-dark); }
.callout { border-left: 4px solid var(--primary); background: var(--primary-soft); border-radius: 0 12px 12px 0; padding: 16px 20px; font-size: .93rem; }
.callout--accent { border-color: var(--accent); background: var(--accent-soft); }
.callout b { color: var(--navy); }

.empty-state { text-align: center; padding: 70px 24px; color: var(--muted); }
.empty-state svg { width: 54px; height: 54px; color: #b9c7d6; margin: 0 auto 16px; }

/* toast */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 20px); z-index: 260;
  background: var(--navy); color: #fff; padding: 13px 22px; border-radius: 12px; box-shadow: var(--shadow-lg);
  font-weight: 600; font-size: .92rem; opacity: 0; pointer-events: none; transition: all .25s; max-width: min(480px, calc(100vw - 40px));
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- modal ---------- */
.modal-scrim {
  position: fixed; inset: 0; z-index: 250; background: rgba(15, 30, 48, .55);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-scrim[hidden] { display: none; }
.modal {
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); width: min(480px, 100%);
  max-height: calc(100vh - 40px); overflow-y: auto; padding: 26px 28px; position: relative;
  animation: modalin .2s ease-out;
}
@keyframes modalin { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.modal h3 { font-size: 1.2rem; margin-bottom: 2px; }
.modal .modal-sub { color: var(--muted); font-size: .88rem; margin: 0 0 16px; }
.modal__close {
  position: absolute; top: 14px; right: 14px; border: 0; background: var(--bg); color: var(--ink);
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer; display: grid; place-items: center;
}
.modal__close:hover { background: var(--line); }
.modal__close svg { width: 16px; height: 16px; }
.modal .callout { margin-top: 14px; font-size: .84rem; }

/* ---------- chat widget ---------- */
.chat-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 240; border: 0; cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--navy-2)); color: #fff; border-radius: 999px;
  padding: 13px 20px 13px 15px; display: flex; align-items: center; gap: 9px; font: 700 .92rem var(--font);
  box-shadow: var(--shadow-lg);
}
.chat-fab svg { width: 20px; height: 20px; }
.chat-fab .dot { width: 9px; height: 9px; border-radius: 50%; background: #37d67a; box-shadow: 0 0 0 3px rgba(55, 214, 122, .25); }
.wa-fab {
  position: fixed; right: 22px; bottom: 84px; z-index: 239; border: 0; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-lg); text-decoration: none;
}
.wa-fab:hover { background: #1fb857; }
.wa-fab svg { width: 27px; height: 27px; }
@media (max-width: 680px) {
  .wa-fab { bottom: 96px; }
}

/* kitenge-inspired accent strip */
.kitenge {
  height: 8px;
  background: repeating-linear-gradient(115deg,
    #29578e 0 18px, #f0a028 18px 36px, #c0272d 36px 54px, #232323 54px 72px);
}

/* payment method badges (footer) */
.pay-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.pay-badge {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #fff;
  font-weight: 800; font-size: .7rem; letter-spacing: .06em; padding: 6px 12px; border-radius: 8px;
}
.chat-panel {
  position: fixed; right: 22px; bottom: 88px; z-index: 240; width: min(380px, calc(100vw - 32px)); height: min(540px, calc(100vh - 130px));
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  display: flex; flex-direction: column; overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(14px) scale(.98); transition: all .2s;
}
.chat-panel.open { opacity: 1; visibility: visible; transform: none; }
.chat-panel__head { background: linear-gradient(120deg, var(--navy), var(--navy-2)); color: #fff; padding: 15px 18px; display: flex; gap: 12px; align-items: center; }
.chat-panel__head .avatar { background: rgba(255,255,255,.15); }
.chat-panel__head b { display: block; font-size: .95rem; }
.chat-panel__head span { font-size: .76rem; color: #a9c3e2; display: flex; align-items: center; gap: 6px; }
.chat-panel__head span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #37d67a; }
.chat-panel__close { margin-left: auto; background: none; border: 0; color: #fff; cursor: pointer; padding: 4px; }
.chat-panel__close svg { width: 19px; height: 19px; }
.chat-panel__msgs { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 10px; background: var(--bg); }
.msg { max-width: 84%; padding: 11px 14px; border-radius: 14px; font-size: .9rem; line-height: 1.45; }
.msg--bot { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg--user { background: var(--primary); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.msg a { font-weight: 700; }
.msg-typing { align-self: flex-start; color: var(--muted); font-size: .8rem; padding: 4px 8px; }
.chat-panel__chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 10px 14px; background: #fff; border-top: 1px solid var(--line); }
.chat-panel__chips button { border: 1.5px solid var(--line); background: #fff; border-radius: 999px; padding: 7px 13px; font: 600 .8rem var(--font); color: var(--navy); cursor: pointer; }
.chat-panel__chips button:hover { border-color: var(--primary); color: var(--primary); }
.chat-panel__input { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--line); background: #fff; }
.chat-panel__input input { flex: 1; border: 1.5px solid var(--line); border-radius: 10px; padding: 10px 12px; font: 500 .9rem var(--font); }
.chat-panel__input button { border: 0; background: var(--primary); color: #fff; border-radius: 10px; width: 42px; cursor: pointer; display: grid; place-items: center; }
.chat-panel__input button svg { width: 17px; height: 17px; }

/* ---------- footer ---------- */
.footer { background: var(--navy); color: #b7c9de; margin-top: 70px; font-size: .9rem; }
.footer__cta { background: linear-gradient(120deg, var(--accent), #e05e00); color: #fff; }
.footer__cta .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; flex-wrap: wrap; }
.footer__cta h3 { color: #fff; margin: 0; font-size: 1.35rem; }
.footer__cta p { margin: 3px 0 0; color: #ffe3cd; }
.footer__main { padding: 54px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 34px; }
.footer h4 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 9px; }
.footer a { color: #b7c9de; }
.footer a:hover { color: #fff; }
.footer .logo { color: #fff; margin-bottom: 14px; }
.footer .logo small { color: #8ba4c4; }
.footer__phone { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #fff; font-weight: 800; padding: 10px 16px; border-radius: 10px; margin: 14px 0; }
.footer__phone svg { width: 16px; height: 16px; }
.footer .disclaimer { font-size: .74rem; color: #7f97b4; margin-top: 22px; line-height: 1.6; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .8rem; color: #8ba4c4; }
.footer__bottom a { color: #b7c9de; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .nav { display: none; }
  .hamburger { display: block; }
  .header__cta .btn { display: none; }
  .searchgrid, .searchgrid--rooms { grid-template-columns: 1fr 1fr; }
  .searchgrid .span-2 { grid-column: span 2; }
  .triplet, .steps, .grid--3 { grid-template-columns: 1fr 1fr; }
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .hotel-card { grid-template-columns: 200px 1fr; }
  .hotel-card__cta { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); flex-direction: row; align-items: center; text-align: left; }
  .hotel-card__cta .btn { margin-left: auto; }
  .results-layout { grid-template-columns: 1fr; }
  .filters { position: static; max-height: none; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-side { position: static; }
  .galley { grid-template-columns: 1fr 1fr; grid-template-rows: 130px 130px; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 15px; }
  .container { width: calc(100% - 32px); }
  .triplet, .steps, .grid--3, .grid--4, .grid--2, .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: span 1; }
  .searchgrid, .searchgrid--rooms { grid-template-columns: 1fr; }
  .searchgrid .span-2 { grid-column: span 1; }
  .hotel-card { grid-template-columns: 1fr; }
  .hotel-card .grad { min-height: 150px; }
  .galley { grid-template-columns: 1fr; grid-template-rows: 160px; }
  .galley .grad:first-child { grid-row: span 1; border-radius: var(--radius) var(--radius) 0 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__inner { padding: 40px 0 48px; }
  .topbar__note, .topbar__left .divider, .topbar__left a.hide-sm { display: none; }
  .wizard__steps { font-size: .68rem; }
  .wizard__steps .wstep::before { width: 28px; height: 28px; }
  .wizard__steps .wstep:not(:first-child)::after { top: 14px; }
  .section { padding: 44px 0; }
}
