@charset "utf-8";
/* ==========================================================================
   KomaniLake.pl — design system
   1. Tokens          6. Cards            11. Booking
   2. Base            7. Sections         12. Forms
   3. Layout          8. Gallery          13. Footer
   4. Navigation      9. FAQ              14. Motion
   5. Hero + search  10. Reviews          15. Responsive
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
  /* brand */
  --lake: #0e4c66;
  --lake-deep: #082f40;
  --lake-soft: #e7f0f4;
  --forest: #1e5245;
  --forest-soft: #e6efea;
  --slate: #0b1f2a;
  --gold: #c9962f;
  --gold-ink: #8a6412;
  --gold-soft: #fbf3e2;
  --sand: #f0eae0;

  /* neutrals */
  --ink: #0b1f2a;
  --body: #33454e;
  --muted: #5b6e77;
  --line: #e3e8ea;
  --line-soft: #eef2f3;
  --mist: #f5f8f8;
  --white: #fff;

  /* type */
  --font-display: "Manrope", "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --t-xs: .75rem;
  --t-sm: .8125rem;
  --t-base: 1rem;
  --t-lg: 1.125rem;
  --t-xl: 1.375rem;
  --t-2xl: clamp(1.5rem, 1.1rem + 1.6vw, 2.125rem);
  --t-3xl: clamp(1.9rem, 1.3rem + 2.6vw, 3rem);
  --t-4xl: clamp(2.4rem, 1.4rem + 4.4vw, 4.5rem);

  /* space */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 2.75rem; --sp-8: 4rem;
  --sp-9: 6rem;    --sp-10: 8rem;

  /* shape */
  --r-sm: 8px;  --r-md: 14px; --r-lg: 22px; --r-xl: 30px; --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(11, 31, 42, .06);
  --shadow-sm: 0 2px 8px rgba(11, 31, 42, .07);
  --shadow-md: 0 10px 28px -12px rgba(11, 31, 42, .22);
  --shadow-lg: 0 26px 60px -24px rgba(11, 31, 42, .34);
  --shadow-glass: 0 18px 48px -18px rgba(8, 47, 64, .38);

  --container: 1240px;
  --nav-h: 74px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* 2. Base ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.022em;
  margin: 0 0 var(--sp-4);
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: var(--t-4xl); letter-spacing: -.032em; }
h2 { font-size: var(--t-3xl); letter-spacing: -.028em; }
h3 { font-size: var(--t-2xl); }
h4 { font-size: var(--t-xl); font-weight: 700; }
h5 { font-size: var(--t-lg); font-weight: 700; }

p  { margin: 0 0 var(--sp-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--lake); text-decoration-color: rgba(14, 76, 102, .3); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

img, svg, video { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.15em; }
li { margin-bottom: var(--sp-2); }
strong { color: var(--ink); font-weight: 650; }
small { font-size: var(--t-sm); }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-6) 0; }

::selection { background: var(--lake); color: #fff; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: var(--sp-4); top: -100px; z-index: 200;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem;
  border-radius: var(--r-sm); font-weight: 600; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: var(--sp-4); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* 3. Layout ---------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-5); }
.container--narrow { max-width: 780px; }
.container--wide { max-width: 1480px; }

.section { padding-block: clamp(3.5rem, 2rem + 6vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--mist { background: var(--mist); }
.section--sand { background: linear-gradient(180deg, #fbf8f3, var(--sand)); }
.section--ink { background: var(--slate); color: #c4d3da; }
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }

.grid { display: grid; gap: var(--sp-5); }
.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)); }

.stack > * + * { margin-top: var(--sp-4); }
.flow > * + * { margin-top: var(--sp-5); }

/* section heading block ---------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display);
  font-size: var(--t-xs); font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-ink); margin-bottom: var(--sp-3);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px;
}
.section--ink .eyebrow { color: var(--gold); }

.section-head { max-width: 640px; margin-bottom: var(--sp-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head p { color: var(--muted); font-size: var(--t-lg); }
.section-head--split {
  max-width: none; display: flex; align-items: flex-end;
  justify-content: space-between; gap: var(--sp-6); flex-wrap: wrap;
}
.section-head--split > div { max-width: 620px; }

.lede { font-size: var(--t-lg); color: var(--muted); }

/* signature: waterline rule ------------------------------------------------ */
.waterline {
  position: relative; height: 1px; background: var(--line);
  margin-block: var(--sp-7);
}
.waterline::after {
  content: ""; position: absolute; left: 0; top: -3px;
  width: 64px; height: 7px; border-radius: 4px;
  background: linear-gradient(90deg, var(--lake), var(--forest));
}

/* buttons ------------------------------------------------------------------ */
.btn {
  --btn-bg: var(--lake); --btn-fg: #fff; --btn-bd: var(--lake);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 50px; padding: .78rem 1.6rem;
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
  letter-spacing: -.01em; line-height: 1;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 1.5px solid var(--btn-bd); border-radius: var(--r-pill);
  text-decoration: none; cursor: pointer; touch-action: manipulation;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn--ghost:hover { --btn-bd: var(--ink); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn--glass {
  --btn-bg: rgba(255, 255, 255, .13); --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .45);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.btn--glass:hover { --btn-bg: rgba(255, 255, 255, .24); }
.btn--gold { --btn-bg: var(--gold); --btn-fg: #21180a; --btn-bd: var(--gold); }
.btn--forest { --btn-bg: var(--forest); --btn-bd: var(--forest); }
.btn--block { width: 100%; }
.btn--lg { min-height: 58px; padding: .95rem 2.1rem; font-size: 1.02rem; }
.btn--sm { min-height: 42px; padding: .55rem 1.1rem; font-size: .85rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-display); font-weight: 700; text-decoration: none;
  color: var(--lake);
}
.link-arrow svg { transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* badges & pills ----------------------------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--font-display); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .04em; padding: .34rem .7rem; border-radius: var(--r-pill);
  background: var(--lake-soft); color: var(--lake-deep);
}
.badge--gold  { background: var(--gold-soft); color: var(--gold-ink); }
.badge--forest{ background: var(--forest-soft); color: var(--forest); }
.badge--float {
  position: absolute; top: var(--sp-3); left: var(--sp-3);
  background: rgba(255, 255, 255, .92); color: var(--ink);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: var(--shadow-xs);
}

/* partner trust line ------------------------------------------------------- */
.partner-note {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--t-sm); color: var(--muted);
}
.partner-note svg { flex: none; color: var(--forest); }
.partner-note a { color: inherit; font-weight: 600; }
.partner-note--light { color: rgba(255, 255, 255, .82); }
.partner-note--light svg { color: var(--gold); }
.partner-note--light a { color: #fff; }

/* 4. Navigation ------------------------------------------------------------ */
.nav-wrap {
  position: fixed; inset: 0 0 auto; z-index: 90;
  padding-top: 14px;
  transition: padding-top .3s var(--ease);
}
.nav {
  display: flex; align-items: center; gap: var(--sp-5);
  max-width: var(--container); margin-inline: auto;
  padding: .5rem .6rem .5rem 1.35rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease),
              border-color .3s var(--ease);
}
.nav-wrap.is-stuck { padding-top: 8px; }
.nav-wrap.is-stuck .nav,
.nav-wrap.is-solid .nav {
  background: rgba(255, 255, 255, .93);
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}

.brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1.06rem;
  letter-spacing: -.03em; color: #fff; text-decoration: none; flex: none;
}
.brand-mark { width: 32px; height: 32px; flex: none; }
.brand span small {
  display: block; font-size: 9px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; opacity: .72; margin-top: 1px;
}
.nav-wrap.is-stuck .brand, .nav-wrap.is-solid .brand { color: var(--ink); }

.nav-links {
  display: flex; align-items: center; gap: .15rem; margin: 0 auto 0 var(--sp-4);
  padding: 0; list-style: none;
}
.nav-links li { margin: 0; }
.nav-links a {
  display: block; padding: .55rem .78rem; border-radius: var(--r-pill);
  font-size: .9rem; font-weight: 550; color: rgba(255, 255, 255, .9);
  text-decoration: none; white-space: nowrap;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.nav-links a:hover { background: rgba(255, 255, 255, .16); color: #fff; }
.nav-links a[aria-current="page"] { color: #fff; background: rgba(255, 255, 255, .2); }
.nav-wrap.is-stuck .nav-links a,
.nav-wrap.is-solid .nav-links a { color: var(--body); }
.nav-wrap.is-stuck .nav-links a:hover,
.nav-wrap.is-solid .nav-links a:hover { background: var(--mist); color: var(--ink); }
.nav-wrap.is-stuck .nav-links a[aria-current="page"],
.nav-wrap.is-solid .nav-links a[aria-current="page"] { color: var(--lake); background: var(--lake-soft); }

.nav-actions { display: flex; align-items: center; gap: .4rem; flex: none; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: transparent; color: inherit; cursor: pointer;
  transition: background-color .18s var(--ease);
}
.icon-btn:hover { background: rgba(255, 255, 255, .16); }
.nav-wrap.is-stuck .icon-btn:hover, .nav-wrap.is-solid .icon-btn:hover { background: var(--mist); }
.icon-btn { color: #fff; }
.nav-wrap.is-stuck .icon-btn, .nav-wrap.is-solid .icon-btn { color: var(--ink); }

.wish-count {
  position: absolute; transform: translate(13px, -13px);
  min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px;
  background: var(--gold); color: #21180a;
  font-size: 11px; font-weight: 800; line-height: 18px; text-align: center;
}
.wish-count[hidden] { display: none; }

.nav-toggle { display: none; }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 100; display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--white); padding: var(--sp-5);
  transform: translateY(-100%); visibility: hidden;
  transition: transform .38s var(--ease), visibility .38s;
  overflow-y: auto;
}
.drawer.is-open { transform: translateY(0); visibility: visible; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-head .brand { color: var(--ink); }
.drawer-nav { list-style: none; margin: var(--sp-6) 0; padding: 0; }
.drawer-nav li { margin: 0; border-bottom: 1px solid var(--line-soft); }
.drawer-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem .25rem; font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 700; color: var(--ink); text-decoration: none;
}
.drawer-nav a[aria-current="page"] { color: var(--lake); }
.drawer-foot { display: grid; gap: var(--sp-3); }

/* 5. Hero + search --------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-top: calc(var(--nav-h) + var(--sp-6));
  padding-bottom: clamp(5rem, 3rem + 8vw, 9rem);
  overflow: hidden; isolation: isolate; color: #fff;
}
.hero--short { min-height: 62svh; align-items: center; padding-bottom: var(--sp-8); }

.hero-media { position: absolute; inset: -8% 0 0; z-index: -2; will-change: transform; }
.hero-media img, .hero-media video {
  width: 100%; height: 116%; object-fit: cover;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 31, 42, .62) 0%, rgba(8, 31, 42, .15) 34%, rgba(8, 31, 42, .82) 100%),
    linear-gradient(90deg, rgba(8, 31, 42, .5), transparent 62%);
}

.hero-inner { position: relative; max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: var(--sp-5); }
.hero p.hero-sub {
  font-size: clamp(1.05rem, .95rem + .55vw, 1.3rem);
  color: rgba(255, 255, 255, .9); max-width: 56ch; margin-bottom: var(--sp-6);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-5); }

.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .9rem .4rem .5rem; margin-bottom: var(--sp-5);
  border-radius: var(--r-pill); background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .26);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  font-size: var(--t-sm); font-weight: 600; color: #fff;
}
.hero-tag .dot {
  width: 22px; height: 22px; border-radius: 50%; background: var(--gold);
  display: grid; place-items: center; color: #21180a;
}

.scroll-hint {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: grid; justify-items: center; gap: .4rem;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255, 255, 255, .7); text-decoration: none;
}
.scroll-hint i {
  display: block; width: 1px; height: 34px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .8));
  animation: dropline 2.2s var(--ease) infinite;
}
@keyframes dropline { 0%, 100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* search dock */
.search-dock {
  position: relative; z-index: 5; margin-top: -3.6rem;
}
.search {
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--r-xl); box-shadow: var(--shadow-glass);
  padding: var(--sp-3);
  display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 0;
  align-items: center;
}
.search-field {
  display: grid; gap: .1rem; padding: .6rem 1.1rem;
  border-right: 1px solid var(--line-soft); min-width: 0;
}
.search-field:nth-child(4) { border-right: 0; }
.search-field label {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.search-field select, .search-field input {
  border: 0; background: transparent; padding: 0; font: inherit;
  font-size: .95rem; font-weight: 550; color: var(--ink);
  width: 100%; min-width: 0; appearance: none; cursor: pointer;
}
.search-field select:focus-visible, .search-field input:focus-visible { outline-offset: 4px; }
.search .btn { margin-left: .5rem; }

/* filter bar (experiences page) */
.filters {
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-3);
  align-items: center; padding-block: var(--sp-4);
  border-block: 1px solid var(--line); margin-bottom: var(--sp-6);
}
.chip {
  display: inline-flex; align-items: center; gap: .4rem; min-height: 44px;
  padding: .5rem 1rem; border: 1.5px solid var(--line); border-radius: var(--r-pill);
  background: #fff; font-family: var(--font-display); font-size: .875rem;
  font-weight: 650; color: var(--body); cursor: pointer;
  transition: border-color .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"] {
  background: var(--slate); border-color: var(--slate); color: #fff;
}
.filters-spacer { margin-left: auto; }
.select-plain {
  min-height: 44px; padding: .5rem 2rem .5rem .9rem; border: 1.5px solid var(--line);
  border-radius: var(--r-pill); background: #fff; font: inherit; font-size: .875rem;
  font-weight: 600; color: var(--body); cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%235b6e77' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center;
}
.result-count { font-size: var(--t-sm); color: var(--muted); }

/* 6. Cards ----------------------------------------------------------------- */
.card-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.xp-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.xp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.xp-card.is-hidden { display: none; }

.xp-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--mist); }
.xp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.xp-card:hover .xp-media img { transform: scale(1.07); }

.xp-body { display: flex; flex-direction: column; flex: 1; padding: var(--sp-5); gap: .7rem; }
.xp-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .45rem .8rem;
  font-size: var(--t-sm); color: var(--muted);
}
.xp-meta .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--line); }
.xp-card h3 { font-size: 1.24rem; margin: 0; letter-spacing: -.02em; }
.xp-card h3 a { color: inherit; text-decoration: none; }
.xp-card h3 a::after { content: ""; position: absolute; inset: 0; }
.xp-desc { font-size: .93rem; color: var(--muted); margin: 0; }

.rating { display: inline-flex; align-items: center; gap: .3rem; font-size: var(--t-sm); font-weight: 650; color: var(--ink); }
.rating svg { color: var(--gold); }
.rating span { font-weight: 400; color: var(--muted); }

.xp-foot {
  margin-top: auto; padding-top: var(--sp-4); border-top: 1px solid var(--line-soft);
  display: flex; align-items: flex-end; justify-content: space-between; gap: var(--sp-3);
}
.price { font-family: var(--font-display); line-height: 1.1; }
.price b { display: block; font-size: 1.4rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.price small { color: var(--muted); font-size: var(--t-xs); }
.price .from { font-size: var(--t-xs); color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }

.wish {
  position: absolute; z-index: 2; top: var(--sp-3); right: var(--sp-3);
  width: 40px; height: 40px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .9); color: var(--ink);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: grid; place-items: center; box-shadow: var(--shadow-xs);
  transition: transform .2s var(--ease), color .2s var(--ease);
}
.wish:hover { transform: scale(1.09); }
.wish[aria-pressed="true"] { color: #d13b3b; }
.wish[aria-pressed="true"] svg { fill: currentColor; }
.wish.is-pop { animation: pop .34s var(--ease); }
@keyframes pop { 40% { transform: scale(1.32); } 100% { transform: scale(1); } }

/* feature / value cards */
.feature {
  padding: var(--sp-5); border-radius: var(--r-md); background: #fff;
  border: 1px solid var(--line-soft); height: 100%;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature h3, .feature h4 { margin-bottom: .4rem; font-size: 1.05rem; font-weight: 700; letter-spacing: -.015em; }
.feature p { font-size: .92rem; color: var(--muted); margin: 0; }
.feature-icon {
  width: 46px; height: 46px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--lake-soft); color: var(--lake); margin-bottom: var(--sp-4);
}
.feature-icon--gold { background: var(--gold-soft); color: var(--gold-ink); }
.feature-icon--forest { background: var(--forest-soft); color: var(--forest); }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
.stat { text-align: left; }
.stat b {
  display: block; font-family: var(--font-display); font-size: clamp(2rem, 1.4rem + 2.4vw, 3.1rem);
  font-weight: 800; letter-spacing: -.04em; color: var(--ink); line-height: 1;
}
.section--ink .stat b { color: #fff; }
.stat span { font-size: var(--t-sm); color: var(--muted); }
.section--ink .stat span { color: #8ea7b2; }

/* split / story blocks */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.split--flip .split-media { order: -1; }
.split-media { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split-media--tall img { aspect-ratio: 3 / 4; }

.float-stat {
  position: absolute; right: -12px; bottom: -12px;
  background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  padding: var(--sp-4) var(--sp-5); max-width: 220px;
}
.float-stat b { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--lake); letter-spacing: -.03em; }
.float-stat span { font-size: var(--t-sm); color: var(--muted); }

/* checklist */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .7rem; margin: 0; font-size: .96rem; }
.checklist svg { flex: none; margin-top: 4px; color: var(--forest); }
.checklist--no svg { color: #b04a4a; }

/* 7. Sections -------------------------------------------------------------- */
.map-panel {
  display: grid; grid-template-columns: 340px 1fr; gap: 0;
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  background: #fff;
}
.map-list { padding: var(--sp-5); display: grid; gap: .25rem; align-content: start; }
.map-pin {
  display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start;
  padding: .85rem; border: 0; border-radius: var(--r-sm); background: transparent;
  text-align: left; font: inherit; cursor: pointer; color: var(--body);
  transition: background-color .2s var(--ease);
}
.map-pin:hover { background: var(--mist); }
.map-pin[aria-pressed="true"] { background: var(--lake-soft); }
.map-pin b { display: block; font-family: var(--font-display); color: var(--ink); font-size: .98rem; }
.map-pin span { font-size: var(--t-sm); color: var(--muted); }
.map-pin i {
  width: 26px; height: 26px; border-radius: 50%; background: var(--lake); color: #fff;
  display: grid; place-items: center; font-style: normal; font-size: 12px; font-weight: 700;
  font-family: var(--font-display);
}
.map-canvas { position: relative; min-height: 420px; background: var(--lake-soft); }
.map-canvas svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-marker { cursor: pointer; transition: transform .3s var(--ease); transform-box: fill-box; transform-origin: center; }
.map-marker.is-active { transform: scale(1.45); }

/* testimonial marquee */
.review-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(360px, 82vw);
  gap: var(--sp-4); overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: var(--sp-4); scrollbar-width: thin;
}
.review-rail > * { scroll-snap-align: start; }

.review {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3);
}
.review-head { display: flex; align-items: center; gap: .8rem; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 800; color: #fff; font-size: .95rem; letter-spacing: -.02em;
}
.review-head b { display: block; font-family: var(--font-display); color: var(--ink); font-size: .96rem; }
.review-head span { font-size: var(--t-xs); color: var(--muted); display: flex; align-items: center; gap: .3rem; }
.verified { color: var(--forest); display: inline-flex; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.review q { font-style: normal; quotes: none; color: var(--body); font-size: .95rem; }
.review footer { font-size: var(--t-xs); color: var(--muted); margin-top: auto; }

/* newsletter */
.newsletter {
  border-radius: var(--r-xl); padding: clamp(2rem, 1rem + 4vw, 4rem);
  background: linear-gradient(135deg, var(--lake-deep), var(--forest) 130%);
  color: #cfe0e6; position: relative; overflow: hidden;
}
.newsletter::before {
  content: ""; position: absolute; inset: auto -10% -60% auto; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, rgba(201, 150, 47, .35), transparent 68%);
}
.newsletter h2 { color: #fff; }
.newsletter-form { display: flex; gap: .6rem; flex-wrap: wrap; max-width: 520px; }
.newsletter-form input {
  flex: 1 1 240px; min-height: 54px; padding: 0 1.2rem;
  border: 1.5px solid rgba(255, 255, 255, .28); border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .1); color: #fff; font: inherit;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, .6); }

/* 8. Gallery --------------------------------------------------------------- */
.masonry { columns: 3; column-gap: var(--sp-4); }
.masonry figure {
  break-inside: avoid; margin: 0 0 var(--sp-4); position: relative;
  border-radius: var(--r-md); overflow: hidden; cursor: zoom-in; background: var(--mist);
}
.masonry img { width: 100%; transition: transform .6s var(--ease); }
.masonry figure:hover img { transform: scale(1.05); }
.masonry figcaption {
  position: absolute; inset: auto 0 0; padding: 2.4rem .9rem .8rem;
  color: #fff; font-size: var(--t-sm); font-weight: 600;
  background: linear-gradient(transparent, rgba(8, 31, 42, .8));
  opacity: 0; transition: opacity .3s var(--ease);
}
.masonry figure:hover figcaption, .masonry figure:focus-within figcaption { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 120; display: grid; place-items: center;
  background: rgba(6, 18, 25, .94); padding: var(--sp-5);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-height: 84svh; width: auto; border-radius: var(--r-md); }
.lightbox-cap { color: #b9cbd3; text-align: center; margin-top: var(--sp-4); font-size: .95rem; }
.lightbox-close { position: absolute; top: var(--sp-5); right: var(--sp-5); color: #fff; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1); color: #fff; display: grid; place-items: center; cursor: pointer;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, .22); }
.lightbox-nav.prev { left: var(--sp-5); }
.lightbox-nav.next { right: var(--sp-5); }

/* 9. FAQ ------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); padding: 1.35rem 0; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-size: 1.06rem; font-weight: 700;
  color: var(--ink); text-align: left; line-height: 1.35;
}
.acc-btn i {
  flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line);
  display: grid; place-items: center; font-style: normal;
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}
.acc-btn[aria-expanded="true"] i { transform: rotate(45deg); background: var(--ink); border-color: var(--ink); color: #fff; }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .34s var(--ease); }
.acc-panel > div { overflow: hidden; }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel p { padding-bottom: 1.35rem; color: var(--muted); max-width: 68ch; }

/* 10. Reviews summary ------------------------------------------------------ */
.rating-summary {
  display: grid; grid-template-columns: auto 1fr; gap: var(--sp-6); align-items: center;
  padding: var(--sp-5); border: 1px solid var(--line); border-radius: var(--r-md);
  margin-bottom: var(--sp-6);
}
.rating-big { text-align: center; }
.rating-big b { font-family: var(--font-display); font-size: 3rem; font-weight: 800; letter-spacing: -.04em; color: var(--ink); display: block; line-height: 1; }
.rating-bars { display: grid; gap: .4rem; }
.rating-bar { display: grid; grid-template-columns: 52px 1fr 40px; gap: .8rem; align-items: center; font-size: var(--t-sm); color: var(--muted); }
.rating-bar i { display: block; height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; }
.rating-bar i b { display: block; height: 100%; background: var(--gold); border-radius: 3px; }

/* 11. Booking / experience detail ------------------------------------------ */
.xp-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: start;
}
.xp-main > section { padding-block: var(--sp-6); border-top: 1px solid var(--line-soft); }
.xp-main > section:first-child { border-top: 0; padding-top: 0; }

.quick-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--sp-4); padding: var(--sp-5); background: var(--mist);
  border-radius: var(--r-md);
}
.quick-fact { display: flex; gap: .7rem; }
.quick-fact svg { flex: none; color: var(--lake); margin-top: 2px; }
.quick-fact b { display: block; font-family: var(--font-display); font-size: .95rem; color: var(--ink); }
.quick-fact span { font-size: var(--t-sm); color: var(--muted); }

.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  position: relative; padding: 0 0 var(--sp-5) var(--sp-6); margin: 0;
  border-left: 2px solid var(--line);
}
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px;
  border-radius: 50%; background: #fff; border: 3px solid var(--lake);
}
.timeline .day {
  font-family: var(--font-display); font-size: var(--t-xs); font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold-ink);
  display: block; margin-bottom: .2rem;
}
.timeline h3, .timeline h4 { margin-bottom: .3rem; font-size: 1.05rem; font-weight: 700; letter-spacing: -.015em; }
.timeline p { font-size: .94rem; color: var(--muted); margin: 0; }

/* sticky booking card */
.booking-card {
  position: sticky; top: calc(var(--nav-h) + 18px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); padding: var(--sp-5); display: grid; gap: var(--sp-4);
}
.booking-price { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--sp-3); }
.booking-price b { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; letter-spacing: -.035em; color: var(--ink); line-height: 1; }
.booking-price span { font-size: var(--t-sm); color: var(--muted); }

.field { display: grid; gap: .35rem; }
.field label { font-family: var(--font-display); font-size: var(--t-sm); font-weight: 700; color: var(--ink); }
.field .hint { font-size: var(--t-xs); color: var(--muted); }
.input, .field select, .field input, .field textarea {
  width: 100%; min-height: 48px; padding: .7rem .9rem; font: inherit; font-size: .95rem;
  color: var(--ink); background: #fff; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.input:focus, .field select:focus, .field input:focus, .field textarea:focus {
  border-color: var(--lake); box-shadow: 0 0 0 3px rgba(14, 76, 102, .12); outline: none;
}
.field.has-error .input, .field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b04a4a; }
.error-msg { font-size: var(--t-xs); color: #91302f; display: none; }
.field.has-error .error-msg { display: block; }

.stepper { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); }
.stepper-btns { display: flex; align-items: center; gap: .3rem; }
.step-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink); font-size: 1.1rem; cursor: pointer; line-height: 1;
  display: grid; place-items: center;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.step-btn:hover:not([disabled]) { border-color: var(--ink); }
.step-btn[disabled] { opacity: .4; cursor: not-allowed; }
.step-val { min-width: 34px; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }

.booking-summary { display: grid; gap: .5rem; padding-top: var(--sp-4); border-top: 1px solid var(--line-soft); font-size: .92rem; }
.booking-summary div { display: flex; justify-content: space-between; gap: var(--sp-3); color: var(--muted); }
.booking-summary .total { padding-top: .5rem; border-top: 1px solid var(--line-soft); color: var(--ink); font-weight: 700; font-size: 1.05rem; }
.booking-summary .total span:last-child { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: -.02em; }

.secure-note { display: flex; align-items: center; gap: .45rem; font-size: var(--t-xs); color: var(--muted); justify-content: center; }
.secure-note svg { color: var(--forest); }

/* mobile sticky bar */
.book-bar {
  position: fixed; inset: auto 0 0; z-index: 80; display: none;
  align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: .75rem var(--sp-5) calc(.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); box-shadow: 0 -8px 30px -18px rgba(11, 31, 42, .4);
}

/* toast */
.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 130;
  transform: translate(-50%, 140%); opacity: 0;
  display: flex; align-items: center; gap: .6rem;
  background: var(--slate); color: #fff; padding: .85rem 1.3rem;
  border-radius: var(--r-pill); box-shadow: var(--shadow-lg); font-size: .92rem;
  transition: transform .34s var(--ease), opacity .34s var(--ease);
  max-width: calc(100vw - 32px);
}
.toast.is-on { transform: translate(-50%, 0); opacity: 1; }
.toast svg { color: var(--gold); flex: none; }

/* breadcrumbs */
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; font-size: var(--t-sm); color: var(--muted); list-style: none; padding: 0; margin: 0 0 var(--sp-4); }
.crumbs li { margin: 0; display: flex; gap: .4rem; align-items: center; }
.crumbs li + li::before { content: "/"; color: var(--line); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--lake); }
.crumbs--light, .crumbs--light a { color: rgba(255, 255, 255, .8); }

/* gallery strip on detail page */
.xp-hero-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 10px; border-radius: var(--r-lg); overflow: hidden; height: min(520px, 62svh);
}
.xp-hero-grid button { padding: 0; border: 0; cursor: zoom-in; background: var(--mist); overflow: hidden; }
.xp-hero-grid button:first-child { grid-row: span 2; }
.xp-hero-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.xp-hero-grid button:hover img { transform: scale(1.05); }

/* article / prose */
.prose { max-width: 72ch; }
.prose h2 { margin-top: var(--sp-7); font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); }
.prose h3 { margin-top: var(--sp-6); font-size: 1.25rem; }
.prose img { border-radius: var(--r-md); margin-block: var(--sp-5); }
.prose blockquote {
  margin: var(--sp-6) 0; padding: var(--sp-4) var(--sp-5); border-left: 3px solid var(--gold);
  background: var(--gold-soft); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 1.05rem; color: var(--ink);
}
.prose blockquote p:last-child { margin: 0; }

.post-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--r-md); overflow: hidden; position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.post-card .body { padding: var(--sp-4) var(--sp-5) var(--sp-5); display: grid; gap: .5rem; }
.post-card h3 { font-size: 1.1rem; margin: 0; }
.sub-head { font-size: 1rem; font-weight: 700; margin-bottom: .6rem; }
.post-card h3 a { color: inherit; text-decoration: none; }
.post-card h3 a::after { content: ""; position: absolute; inset: 0; }
.post-card p { font-size: .9rem; color: var(--muted); margin: 0; }
.post-meta { font-size: var(--t-xs); color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }

/* contact tiles */
.contact-tile {
  display: flex; gap: var(--sp-4); padding: var(--sp-5); border: 1px solid var(--line);
  border-radius: var(--r-md); background: #fff; text-decoration: none; color: inherit;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.contact-tile:hover { border-color: var(--lake); transform: translateY(-3px); }
.contact-tile b { display: block; font-family: var(--font-display); color: var(--ink); }
.contact-tile span { font-size: .92rem; color: var(--muted); }

/* 12. Forms ---------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.form-grid .full { grid-column: 1 / -1; }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: var(--t-sm); color: var(--muted); }
.consent input { width: 20px; height: 20px; min-height: 0; flex: none; margin-top: 2px; accent-color: var(--lake); }

/* 13. Footer --------------------------------------------------------------- */
.footer { background: var(--slate); color: #93a8b2; padding-block: var(--sp-8) var(--sp-5); }
.footer a { color: #c4d3da; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: var(--sp-6); }
.footer .brand { color: #fff; margin-bottom: var(--sp-4); }
.footer h2 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: var(--sp-4); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; font-size: .92rem; }
.footer li { margin: 0; }
.footer-bottom {
  margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; justify-content: space-between;
  font-size: var(--t-sm);
}
.socials { display: flex; gap: .5rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .16);
  display: grid; place-items: center; transition: background-color .2s var(--ease);
}
.socials a:hover { background: rgba(255, 255, 255, .12); }

/* floating whatsapp */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: #1f9d55; color: #fff; box-shadow: var(--shadow-lg);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* 14. Motion --------------------------------------------------------------- */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

.page-fade { animation: pagefade .5s var(--ease) both; }
@keyframes pagefade { from { opacity: 0; transform: translateY(8px); } }

.spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .4); border-top-color: #fff;
  animation: spin .7s linear infinite; display: none;
}
.btn.is-loading .spinner { display: block; }
.btn.is-loading .btn-label { opacity: .75; }
@keyframes spin { to { transform: rotate(360deg); } }

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

/* 15. Responsive ----------------------------------------------------------- */
@media (max-width: 1080px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .xp-layout { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: var(--sp-6); }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav { padding-left: 1.1rem; }
  .search { grid-template-columns: repeat(2, 1fr); gap: .25rem; }
  .search-field:nth-child(2) { border-right: 0; }
  .search .btn { grid-column: 1 / -1; margin: .4rem 0 0; }
  .split { grid-template-columns: 1fr; }
  .split--flip .split-media { order: 0; }
  .map-panel { grid-template-columns: 1fr; }
  .map-canvas { min-height: 320px; order: -1; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .xp-hero-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; height: 46svh; }
  .xp-hero-grid button:first-child { grid-row: span 1; }
  .xp-hero-grid button:nth-child(n+4) { display: none; }
  .book-bar { display: flex; }
  body.has-bookbar { padding-bottom: 82px; }
  .wa-float { bottom: 90px; }
}

@media (max-width: 600px) {
  /* keep the floating nav on one line: brand + primary CTA + menu */
  .nav { padding: .4rem .45rem .4rem 1rem; gap: .5rem; }
  .nav-actions > .icon-btn:not(.nav-toggle) { display: none; }
  .brand span small { display: none; }
  .brand { font-size: 1rem; gap: .45rem; }
  .brand-mark { width: 28px; height: 28px; }
  .nav-actions .btn--sm { padding: .5rem .85rem; min-height: 40px; }
}

@media (max-width: 680px) {
  :root { --nav-h: 66px; }
  .card-grid, .card-grid--2, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: var(--sp-5); }
  .form-grid { grid-template-columns: 1fr; }
  .rating-summary { grid-template-columns: 1fr; text-align: center; }
  .section-head--split { align-items: flex-start; }
  .float-stat { position: static; margin-top: -30px; margin-inline: var(--sp-4); max-width: none; }
  .quick-facts { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 92svh; }
  .search-dock { margin-top: -2rem; }
  .lightbox-nav { width: 44px; height: 44px; }
  .lightbox-nav.prev { left: 8px; } .lightbox-nav.next { right: 8px; }
}

@media print {
  .nav-wrap, .footer, .book-bar, .wa-float, .scroll-hint, .search-dock { display: none !important; }
  body { color: #000; }
  .hero { min-height: auto; color: #000; }
}
