/* ==========================================================================
   Homes for Holiday — Crystalline Bento (light)
   Brand-navy glassmorphic bento rebuild
   ========================================================================== */

:root {
  /* Brand blues (exact navy from the "home for holiday" wordmark) */
  --navy: #122248;
  --navy-deep: #0b1730;
  --primary: #24379b;
  --primary-bright: #3f5fd6;
  --sky: #5aa0e6;

  /* Accents */
  --aqua: #0f9e94;
  --aqua-light: #6ff0e6;
  --amber: #b26a00;
  --amber-bright: #e0951f;

  /* Ink */
  --ink: #16203a;
  --muted: #5b6478;
  --outline-variant: #b9c0d0;

  /* Surfaces (airy, cool white) */
  --surface: #f6f8fc;
  --pearl: #ffffff;
  --container-low: #eef2f9;
  --container: #e7edf7;

  /* Lines & glass */
  --line: rgba(26, 32, 58, 0.09);
  --hairline: rgba(26, 32, 58, 0.07);
  --glass-bg: rgba(255, 255, 255, 0.66);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-blur: 16px;

  /* Shadows (soft, navy-tinted) */
  --shadow-soft: 0 14px 34px -20px rgba(26, 42, 108, 0.28);
  --shadow-lift: 0 34px 70px -34px rgba(26, 42, 108, 0.36);
  --glow: 0 20px 50px -24px rgba(36, 55, 155, 0.4);

  /* Type */
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-label: "Geist", "Hanken Grotesk", sans-serif;

  /* Layout */
  --container-max: 1220px;
  --gutter: 40px;
  --r-sm: 8px;
  --r: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Header height */
  --header-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Luminous mesh canvas */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60vw 60vw at 8% -5%, rgba(90, 160, 230, 0.12), transparent 60%),
    radial-gradient(50vw 50vw at 100% 0%, rgba(111, 240, 230, 0.10), transparent 55%),
    radial-gradient(60vw 55vw at 90% 100%, rgba(63, 95, 214, 0.08), transparent 60%);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-body); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.01em; }
p { color: var(--muted); }

.label-caps {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(60px, 9vw, 120px) 0; }
.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .label-caps { display: block; margin-bottom: 16px; }
.section-head p { margin-top: 16px; font-size: 1.08rem; }

.eyebrow-rule { display: inline-flex; align-items: center; gap: 12px; }
.eyebrow-rule::after { content: ""; width: 40px; height: 2px; border-radius: 2px; background: var(--aqua); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 14px 26px; border-radius: var(--r-pill);
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-bright)); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--glow); }
.btn-amber { background: linear-gradient(135deg, var(--amber), var(--amber-bright)); color: #fff; }
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -20px rgba(224, 149, 31, 0.7); }
.btn-ghost { background: var(--glass-bg); color: var(--primary); border-color: rgba(36, 55, 155, 0.28); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: #fff; border-color: var(--primary); transform: translateY(-2px); }
.btn-glass { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.5); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,0.24); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   Header / Navigation (transparent overlay, glass on scroll)
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  --nav-ink: #ffffff;
  transition: box-shadow .3s ease;
}
/* Blur lives on a pseudo-element so the header does NOT create a containing
   block for the fixed mobile menu (backdrop-filter on the header itself would). */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(246, 248, 252, 0.82);
  backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--hairline);
  opacity: 0; transition: opacity .3s ease;
}
/* Top scrim keeps the white overlay nav legible over bright hero imagery */
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 150px; z-index: -1;
  background: linear-gradient(180deg, rgba(19, 31, 82, 0.55), rgba(19, 31, 82, 0));
  pointer-events: none; opacity: 1; transition: opacity .3s ease;
}
.site-header.scrolled { --nav-ink: var(--ink); box-shadow: var(--shadow-soft); }
.site-header.scrolled::before { opacity: 1; }
.site-header.scrolled::after { opacity: 0; }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 24px;
}
.brand { display: flex; align-items: center; line-height: 1; flex-shrink: 0; }
/* Inline traced wordmark; recolours to the current nav ink via currentColor */
.brand-logo {
  display: block; height: 54px; width: auto;
  color: var(--nav-ink); fill: currentColor; transition: color .3s ease;
}
.brand-logo use, .brand-logo path { fill: currentColor; }

.nav-menu { display: flex; align-items: center; gap: 26px; flex-wrap: nowrap; }
.nav-menu-logo { display: none; }
.nav-menu a {
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.01em; white-space: nowrap;
  color: var(--nav-ink); position: relative; padding: 6px 0; transition: color .3s ease, opacity .2s;
}
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; border-radius: 2px;
  background: var(--aqua); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a.active { opacity: 1; }
.site-header.scrolled .nav-menu a.active { color: var(--primary); }

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 95; }
.nav-toggle span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--nav-ink); margin: 5px 0; transition: .3s; }
.nav-toggle.open span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero (full-bleed behind nav)
   ========================================================================== */
.hero {
  position: relative; min-height: 82vh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(85% 95% at 20% 76%,
      rgba(9, 18, 40, 0.52) 0%,
      rgba(9, 18, 40, 0.30) 30%,
      rgba(9, 18, 40, 0.12) 54%,
      rgba(9, 18, 40, 0.03) 72%,
      rgba(9, 18, 40, 0) 88%),
    linear-gradient(180deg, rgba(11, 23, 48, 0.10) 0%, rgba(11, 23, 48, 0) 28%, rgba(11, 23, 48, 0) 66%, rgba(11, 23, 48, 0.22) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: 64px; padding-top: calc(var(--header-h) + 36px); }
.hero .label-caps { color: var(--aqua-light); text-shadow: 0 1px 3px rgba(8,15,35,0.6); }
.hero h1 {
  color: #fff; font-size: clamp(2.5rem, 6.2vw, 4.8rem); font-weight: 800;
  margin: 18px 0 20px; max-width: 16ch; letter-spacing: -0.03em; line-height: 1.02;
  text-shadow: 0 2px 8px rgba(8,15,35,0.5);
}
.hero p { color: #fff; font-size: 1.15rem; max-width: 52ch; font-weight: 500; text-shadow: 0 1px 5px rgba(8,15,35,0.6); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-hint { margin-top: 24px; font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.9); }

/* Glass quick-select bar */
.quickbar { position: relative; z-index: 3; margin: -42px auto 0; max-width: 1000px; }
.quickbar-inner {
  background: var(--glass-strong); backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift); padding: 14px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.quickbar-label { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding: 0 12px; font-weight: 600; }
.quickbar a {
  flex: 1 1 auto; text-align: center; min-width: 120px;
  padding: 13px 16px; border-radius: var(--r); font-size: 0.88rem; font-weight: 600; color: var(--ink);
  background: rgba(255,255,255,0.6); border: 1px solid transparent; transition: .25s;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.quickbar a svg { width: 16px; height: 16px; color: var(--primary); }
.quickbar a:hover { background: linear-gradient(135deg, var(--primary), var(--primary-bright)); color: #fff; }
.quickbar a:hover svg { color: var(--aqua-light); }

/* ==========================================================================
   USP strip (bento chips)
   ========================================================================== */
.usp-strip { padding: clamp(48px, 7vw, 84px) 0; }
.usp-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.usp {
  padding: 30px 22px; text-align: center; border-radius: var(--r-lg);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur)); box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}
.usp:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.usp-ico {
  width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(36,55,155,0.12), rgba(90,160,230,0.14)); color: var(--primary);
}
.usp-ico svg { width: 26px; height: 26px; stroke-width: 1.7; }
.usp h4 { font-size: 0.94rem; font-weight: 700; letter-spacing: -0.01em; }

/* ==========================================================================
   Destinations bento
   ========================================================================== */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 18px; }
.dest-card {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  box-shadow: var(--shadow-soft); display: block; color: #fff; border: 1px solid var(--glass-border);
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.dest-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(19,31,82,0) 30%, rgba(19,31,82,0.82) 100%); }
.dest-card:hover img { transform: scale(1.07); }
.dest-card .dest-body { position: absolute; z-index: 2; left: 0; bottom: 0; padding: 26px; width: 100%; }
.dest-card .dest-count { font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--aqua-light); font-weight: 600; }
.dest-card h3 { color: #fff; font-size: 1.5rem; margin-top: 6px; }
.dest-card .dest-go { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; font-size: 0.82rem; font-weight: 700; opacity: 0; transform: translateY(6px); transition: .3s; }
.dest-card:hover .dest-go { opacity: 1; transform: translateY(0); }
.dest-card.tall { grid-row: span 2; }
.dest-card.wide { grid-column: span 2; }

/* ==========================================================================
   Editorial split
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(36px, 6vw, 84px); }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lift); border: 1px solid var(--glass-border); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.split-media .float-badge {
  position: absolute; right: 20px; bottom: 20px;
  background: var(--glass-strong); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border); border-radius: var(--r-md); padding: 18px 22px; text-align: center;
  box-shadow: var(--shadow-soft);
}
.float-badge .fb-num { font-weight: 800; font-size: 1.7rem; color: var(--primary); line-height: 1; letter-spacing: -0.02em; }
.float-badge .fb-txt { font-family: var(--font-label); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.split-body h2 { margin-bottom: 20px; }
.split-body p { font-size: 1.06rem; margin-bottom: 16px; }
.tick-list { margin: 24px 0; display: grid; gap: 13px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.tick-list svg { width: 20px; height: 20px; color: var(--aqua); flex-shrink: 0; margin-top: 3px; }
.tick-list strong { color: var(--ink); font-weight: 700; }

/* ==========================================================================
   How it works — bento tiles
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  position: relative; padding: 28px 24px 26px; border-radius: var(--r-lg);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur)); box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.step-num { font-family: var(--font-label); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; color: var(--primary-bright); }
.step-ico { width: 30px; height: 30px; color: var(--primary); margin: 16px 0 14px; stroke-width: 1.7; }
.step h4 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.step p { font-size: 0.94rem; }

/* ==========================================================================
   Listing hero (inner pages)
   ========================================================================== */
.listing-hero {
  position: relative; color: #fff; min-height: 58vh; display: flex; align-items: flex-end; overflow: hidden;
}
.listing-hero .hero-bg::after {
  background:
    radial-gradient(90% 120% at 20% 82%,
      rgba(9,18,40,0.52) 0%,
      rgba(9,18,40,0.30) 32%,
      rgba(9,18,40,0.12) 56%,
      rgba(9,18,40,0.03) 74%,
      rgba(9,18,40,0) 90%),
    linear-gradient(180deg, rgba(11,23,48,0.14) 0%, rgba(11,23,48,0) 44%, rgba(11,23,48,0.30) 100%);
}
.listing-hero-inner { position: relative; z-index: 2; padding-top: calc(var(--header-h) + 30px); padding-bottom: 56px; }
.listing-hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.6rem); margin: 14px 0 16px; letter-spacing: -0.03em; text-shadow: 0 2px 8px rgba(8,15,35,0.5); }
.listing-hero p { color: #fff; max-width: 58ch; font-weight: 500; text-shadow: 0 1px 5px rgba(8,15,35,0.6); }
.listing-hero .label-caps { color: var(--aqua-light); text-shadow: 0 1px 3px rgba(8,15,35,0.6); }

.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--muted); padding: 22px 0; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--outline-variant, #b9c0d0); }

.region-group { padding-top: 20px; }
.region-group + .region-group { padding-top: 58px; }
.region-group-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 26px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.region-group-head h2 { font-size: 1.7rem; }
.region-group-head .count { font-family: var(--font-label); font-size: 0.82rem; color: var(--muted); }

.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.prop-card {
  background: var(--pearl); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-soft); transition: transform .3s ease, box-shadow .3s ease;
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--glow); }
.prop-media { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.prop-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.prop-card:hover .prop-media img { transform: scale(1.06); }
.prop-pool {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--glass-strong); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border); color: var(--ink);
  font-family: var(--font-label); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill); display: inline-flex; align-items: center; gap: 6px;
}
.prop-pool svg { width: 13px; height: 13px; color: var(--aqua); }
.prop-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.prop-sub { font-family: var(--font-label); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.prop-card h3 { font-size: 1.22rem; line-height: 1.22; margin-bottom: 6px; }
.prop-type { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.prop-meta { display: flex; gap: 18px; padding: 14px 0; margin-top: auto; border-top: 1px solid var(--line); }
.prop-meta span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.85rem; color: var(--ink); font-weight: 600; }
.prop-meta svg { width: 17px; height: 17px; color: var(--primary); }
.prop-card .prop-soft { margin-top: 16px; text-align: center; font-size: 0.82rem; color: var(--muted); padding: 13px; background: var(--container-low); border-radius: var(--r); }
/* Whole card is the link; the CTA is a calm text affordance, not a button wall */
a.prop-card { cursor: pointer; color: inherit; }
.prop-cta { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.92rem; color: var(--primary); }
.prop-cta svg { width: 16px; height: 16px; transition: transform .25s ease; }
.prop-card:hover .prop-cta { color: var(--primary-bright); }
.prop-card:hover .prop-cta svg { transform: translate(3px, -3px); }

/* ==========================================================================
   Filter bar (region listing pages)
   ========================================================================== */
.filter-bar { margin-bottom: 36px; }
.filter-bar-inner {
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
  background: var(--glass-strong); backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft); padding: 16px 18px;
}
.filter-search {
  display: flex; align-items: center; gap: 10px; flex: 1 1 240px; min-width: 200px;
  background: var(--pearl); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 11px 18px; transition: border-color .25s ease, box-shadow .25s ease;
}
.filter-search:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(36,55,155,0.1); }
.filter-search svg { width: 17px; height: 17px; color: var(--muted); flex-shrink: 0; }
.filter-search input { border: 0; outline: none; font-family: var(--font-body); font-size: 0.94rem; color: var(--ink); background: none; width: 100%; }
.filter-search input::placeholder { color: var(--muted); }
.filter-select { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.filter-select span { font-family: var(--font-label); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.filter-select select {
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; color: var(--ink);
  background: var(--pearl); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 9px 34px 9px 16px; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235b6478' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  transition: border-color .25s ease;
}
.filter-select select:focus { outline: none; border-color: var(--primary); }
.filter-toggle { display: flex; align-items: center; gap: 9px; flex-shrink: 0; cursor: pointer; user-select: none; }
.filter-toggle input { accent-color: var(--primary); width: 17px; height: 17px; cursor: pointer; }
.filter-toggle span { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.filter-toggle svg { width: 15px; height: 15px; color: var(--aqua); }
.filter-clear {
  font-family: var(--font-body); font-size: 0.84rem; font-weight: 700; color: var(--primary);
  background: none; border: 0; cursor: pointer; padding: 8px 4px; margin-left: auto; flex-shrink: 0;
  transition: color .2s ease;
}
.filter-clear:hover { color: var(--primary-bright); text-decoration: underline; }
.filter-empty {
  display: none; margin-top: 14px; padding: 16px 20px; text-align: center;
  background: var(--container-low); border-radius: var(--r); color: var(--muted); font-size: 0.92rem;
}
.filter-empty.show { display: block; }
.filter-empty .filter-empty-clear { color: var(--primary); font-weight: 700; background: none; border: 0; cursor: pointer; padding: 0; text-decoration: underline; }
.prop-card.is-filtered-out { display: none; }
.region-group.is-empty { display: none; }
@media (max-width: 620px) {
  .filter-bar-inner { padding: 14px; }
  .filter-clear { margin-left: 0; width: 100%; text-align: center; border-top: 1px solid var(--line); padding-top: 12px; }
}

/* ==========================================================================
   Region hub cards (destinations page)
   ========================================================================== */
.hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.hub-card {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  min-height: 340px; display: flex; align-items: flex-end; color: #fff;
  box-shadow: var(--shadow-soft); border: 1px solid var(--glass-border);
}
.hub-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.hub-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(19,31,82,0.1) 24%, rgba(19,31,82,0.86) 100%); }
.hub-card:hover img { transform: scale(1.06); }
.hub-body { position: relative; z-index: 2; padding: 32px; width: 100%; }
.hub-body .hub-count { font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--aqua-light); font-weight: 600; }
.hub-body h3 { color: #fff; font-size: 1.8rem; margin: 8px 0 10px; }
.hub-body p { color: rgba(255,255,255,0.86); font-size: 0.95rem; margin-bottom: 16px; max-width: 42ch; }
.hub-body .hub-go { display: inline-flex; align-items: center; gap: 8px; font-size: 0.84rem; font-weight: 700; color: var(--aqua-light); }
.hub-card.feature { grid-column: span 2; min-height: 420px; }

/* ==========================================================================
   CTA band (navy gradient — lighter than charcoal)
   ========================================================================== */
.cta-band { position: relative; text-align: center; color: #fff; overflow: hidden;
  background: linear-gradient(130deg, var(--navy-deep) 0%, var(--primary) 60%, var(--primary-bright) 120%); }
.cta-band::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(40vw 40vw at 15% 20%, rgba(111,240,230,0.16), transparent 60%),
              radial-gradient(40vw 40vw at 90% 90%, rgba(90,160,230,0.2), transparent 55%); }
.cta-band .container { position: relative; z-index: 1; }
.cta-band .label-caps { color: var(--aqua-light); }
.cta-band h2 { color: #fff; margin: 16px auto 18px; max-width: 20ch; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 54ch; margin: 0 auto 30px; font-size: 1.08rem; }
.cta-band .hero-actions { justify-content: center; }

/* Owners feature */
.owners-feature { background: linear-gradient(160deg, #fff7ea, #fdf2f7); }
.owners-price { font-weight: 800; font-size: 2.3rem; color: var(--amber); letter-spacing: -0.02em; }
.owners-price span { font-size: 0.95rem; font-weight: 600; color: var(--muted); }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: var(--pearl); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-family: var(--font-label); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(36,55,155,0.1); background: #fff; }

.contact-tiles { display: grid; gap: 14px; }
.contact-tile { display: flex; gap: 15px; align-items: center; padding: 18px 20px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--r-lg); transition: .25s; }
.contact-tile:hover { transform: translateX(4px); box-shadow: var(--shadow-soft); }
.contact-tile svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; }
.contact-tile .ct-label { font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.contact-tile .ct-val { font-weight: 700; color: var(--ink); }

/* ==========================================================================
   Prose
   ========================================================================== */
.prose { max-width: 760px; }
.prose h1 { font-size: clamp(2.1rem, 5vw, 3rem); letter-spacing: -0.03em; }
.prose h2 { margin: 38px 0 16px; }
.prose h3 { margin: 28px 0 12px; }
.prose p { margin-bottom: 16px; font-size: 1.05rem; }
.prose ul.dotted { margin: 16px 0; display: grid; gap: 11px; }
.prose ul.dotted li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.prose ul.dotted svg { width: 18px; height: 18px; color: var(--aqua); flex-shrink: 0; margin-top: 4px; }

/* Resource links */
.res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.res-col h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.res-col h3 svg { width: 22px; height: 22px; color: var(--aqua); }
.res-list { display: grid; gap: 10px; }
.res-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--r); font-weight: 600; transition: .25s;
}
.res-list a:hover { border-color: var(--aqua); transform: translateX(4px); box-shadow: var(--shadow-soft); }
.res-list a svg { width: 16px; height: 16px; color: var(--muted); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: #eaeefb; padding: 76px 0 0; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(40vw 30vw at 90% 0%, rgba(63,95,214,0.28), transparent 60%),
              radial-gradient(30vw 30vw at 5% 100%, rgba(15,158,148,0.18), transparent 60%); }
.site-footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 56px; }
.footer-brand .brand-logo { height: 74px; color: #fff; margin-bottom: 6px; }
.footer-brand .brand-sub { font-family: var(--font-label); font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--aqua-light); margin-top: 6px; display: block; }
.footer-brand p { color: rgba(234,238,251,0.62); margin-top: 16px; font-size: 0.95rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--aqua-light); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: rgba(234,238,251,0.72); font-size: 0.92rem; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col .with-ico { display: flex; gap: 10px; align-items: flex-start; }
.footer-col .with-ico svg { width: 16px; height: 16px; color: var(--aqua-light); flex-shrink: 0; margin-top: 3px; }
.footer-col .with-ico a[href^="mailto:"] { white-space: nowrap; }
.footer-bottom { border-top: 1px solid rgba(234,238,251,0.14); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(234,238,251,0.5); font-size: 0.84rem; }
.footer-bottom .fb-links { display: flex; gap: 22px; }
.footer-bottom a { color: rgba(234,238,251,0.5); font-size: 0.84rem; }
.footer-bottom a:hover { color: var(--aqua-light); }

/* ==========================================================================
   Back-to-top (mobile)
   ========================================================================== */
.to-top {
  position: fixed; right: 16px; bottom: 16px; z-index: 70;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--primary-bright)); color: #fff;
  align-items: center; justify-content: center; box-shadow: var(--shadow-lift);
  display: none; opacity: 0; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
}
.to-top svg { width: 22px; height: 22px; }
.to-top.show { opacity: 1; transform: none; }
@media (max-width: 860px) {
  .to-top { display: flex; }
}

/* ==========================================================================
   Reveal animation (JS-gated so no-JS always shows content)
   ========================================================================== */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  :root { --gutter: 28px; }
  .usp-grid { grid-template-columns: repeat(3, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .prop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    background: var(--pearl); padding: 22px 32px 40px; gap: 4px;
    transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1);
    box-shadow: var(--shadow-lift); z-index: 90; overflow-y: auto;
  }
  .nav-menu-logo { display: block; margin: 0 0 20px; }
  .nav-menu-logo .brand-logo { height: 52px; color: var(--navy); }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { color: var(--ink); font-size: 1.05rem; font-weight: 600; padding: 15px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-menu a::after { display: none; }
  .nav-menu a.active { color: var(--primary); }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(19,31,82,0.4); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: .3s; z-index: 80; }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media img { aspect-ratio: 16/10; }
  .hub-grid { grid-template-columns: 1fr; }
  .hub-card.feature { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  :root { --gutter: 18px; --header-h: 62px; }
  body { font-size: 16px; }
  .brand-logo { height: 46px; width: auto; }
  .hero { min-height: 80vh; }
  .hero-inner { padding-bottom: 46px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid > .usp:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 260px; margin: 0 auto; }
  .filter-search { flex-basis: 100%; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .dest-card.wide, .dest-card.tall { grid-column: auto; grid-row: auto; }
  .steps { grid-template-columns: 1fr 1fr; gap: 12px; }
  .step { padding: 22px 18px; }
  .prop-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .res-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .quickbar-inner { flex-direction: column; align-items: stretch; }
  .quickbar a { min-width: 0; }
  .quickbar-label { text-align: center; padding-bottom: 4px; }
}
@media (max-width: 380px) {
  .steps { grid-template-columns: 1fr; }
}
