/* =========================================================
   VennAIR — site styles. No external dependencies.
   ========================================================= */

:root {
  --navy: #0E2A47;
  --navy-2: #0A1F36;
  --navy-deep: #061425;
  --navy-tint: #173A5E;
  --blue: #1E8BE0;
  --blue-bright: #34A8FF;
  --blue-soft: #E8F3FD;
  --blue-soft-2: #D4E8F9;
  --ink: #0E2A47;
  --ink-2: #3D4D63;
  --muted: #6B7A8F;
  --line: #E3E8EF;
  --line-strong: #C9D2DF;
  --bg: #FFFFFF;
  --bg-2: #F4F8FC;
  --bg-3: #EAF1F8;
  --accent-warm: #F4A93C;
  --ok: #14a37f;
  --shadow-sm: 0 1px 2px rgba(14, 42, 71, .05);
  --shadow-md: 0 8px 24px rgba(14, 42, 71, .08);
  --shadow-lg: 0 20px 50px rgba(14, 42, 71, .12);
  --radius: 6px;
  --radius-lg: 12px;
  --container: 1180px;
  --pad: clamp(20px, 4vw, 36px);
  --header-h: 96px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
  font-family: Georgia, "Iowan Old Style", "Apple Garamond", "Times New Roman", serif;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; font-family: inherit; text-transform: uppercase; letter-spacing: .12em; color: var(--blue); font-weight: 600; }

p { margin: 0 0 1em; }
strong { color: var(--ink); font-weight: 600; }

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

/* ----------- Eyebrow / labels ----------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--blue);
}
.eyebrow.on-dark { color: #7FB7E8; }
.eyebrow.on-dark::before { background: #7FB7E8; }

/* ----------- Buttons ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .96rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-2); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--blue); color: #fff; }
.btn-accent:hover { background: #1576C2; color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-ghost-light {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.btn-ghost-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1FB955; color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 18px 28px; font-size: 1rem; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ----------- Header / Nav (DARK NAVY) ----------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-2);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  height: 66px;
  width: auto;
  display: block;
}

/* nav-collapsible wraps links + CTAs; inline on desktop, full overlay on mobile */
.nav-collapsible {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #DBE5F1;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 6px 0;
  position: relative;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--blue-bright);
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 12px 18px; font-size: .9rem; }
.nav-call { display: none; } /* visible only inside mobile overlay */
.nav-meta { display: none; } /* visible only inside mobile overlay */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
  z-index: 51;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------- HERO ----------- */
.hero {
  position: relative;
  background: var(--navy-2);
  color: #DDE7F2;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0 clamp(60px, 9vw, 120px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(52,168,255,.25), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(30,139,224,.18), transparent 60%);
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .22;
  filter: saturate(.85);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,31,54,.65) 0%, rgba(10,31,54,.85) 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.hero-city {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  color: #fff;
}
.hero-city .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(20,163,127,.22);
}
.hero-city.hq { background: rgba(52,168,255,.18); border-color: rgba(52,168,255,.4); }

.hero h1 {
  color: #fff;
  max-width: 16ch;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--blue-bright); }
.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: #C5D3E5;
  max-width: 56ch;
  margin: 0 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-visual {
  position: relative;
}
.hero-visual .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  aspect-ratio: 4/5;
  border: 1px solid rgba(255,255,255,.1);
}
.hero-visual .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-visual .stat-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.hero-visual .stat-card .ico {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
}
.hero-visual .stat-card .ico svg { width: 22px; height: 22px; }
.hero-visual .stat-card .txt {
  font-size: .82rem;
  color: var(--ink);
  font-weight: 600;
}
.hero-visual .stat-card .txt small {
  display: block;
  font-weight: 400;
  font-size: .74rem;
  color: var(--muted);
  margin-top: 2px;
}
.hero-visual .stat-1 { top: 24px; left: -18px; }
.hero-visual .stat-2 { bottom: 26px; right: -18px; }

/* Booking card */
.book-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 560px;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,.1);
}
.book-card .label {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 4px;
}
.book-card .price-line {
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
}
.book-card .price-line .amt {
  font-family: Georgia, serif;
  color: var(--navy);
  font-size: 1.4rem;
  margin-right: 8px;
}
.book-card .price-line small {
  display: block;
  font-weight: 400;
  font-size: .82rem;
  color: var(--muted);
  margin-top: 2px;
}

.hero-cta-row {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-meta .item .num {
  font-family: Georgia, serif;
  font-size: 1.85rem;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-meta .item .lbl {
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #A4B7CE;
}

/* ----------- Section frame ----------- */
section { padding: 84px 0; }
section.tight { padding: 60px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.section-head h2 { margin: 0; }
.section-head p { margin: 0; color: var(--ink-2); font-size: 1.05rem; }
.section-head.on-dark h2 { color: #fff; }
.section-head.on-dark p { color: #B6C5D6; }

.bg-soft { background: var(--bg-2); }
.bg-soft-2 { background: var(--bg-3); }
.bg-dark { background: var(--navy-2); color: #C5D3E5; }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }

/* ----------- Trust strip ----------- */
.trust {
  padding: 26px 0;
  background: var(--navy);
  color: #C5D3E5;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: .88rem;
}
.trust-row .item {
  display: flex; align-items: center; gap: 10px;
}
.trust-row .ico {
  width: 22px; height: 22px;
  flex: 0 0 22px;
  color: var(--blue-bright);
}

/* ----------- Cities (locations) ----------- */
.cities-wrap { padding: 88px 0; background: var(--bg-2); }
.cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.city-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.city-card .city-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.city-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,31,54,.2) 0%, rgba(10,31,54,.92) 75%);
  z-index: -1;
}
.city-card .content {
  padding: 28px;
}
.city-card .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
  background: rgba(20,163,127,.2);
  color: #5BD3A8;
  margin-bottom: 12px;
}
.city-card .pill.hq { background: rgba(52,168,255,.2); color: var(--blue-bright); }
.city-card .pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(255,255,255,.06);
}
.city-card h3 {
  font-size: 1.7rem;
  color: #fff;
  margin: 0 0 4px;
  font-family: Georgia, serif;
}
.city-card .sub {
  color: #C5D3E5;
  font-size: .92rem;
  margin: 0 0 16px;
}
.city-card .city-cta {
  font-size: .88rem;
  color: var(--blue-bright);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.city-card a.city-cta:hover { color: #fff; }

/* ----------- 3-step / How it works ----------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.step:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-family: Georgia, serif;
  font-weight: 700;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 10px; font-family: inherit; font-size: 1.1rem; }
.step p { margin: 0; font-size: .96rem; }

/* On dark variant */
.bg-dark .step {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  color: #C5D3E5;
}
.bg-dark .step h3 { color: #fff; }
.bg-dark .step .num {
  background: rgba(52,168,255,.18);
  color: var(--blue-bright);
}

/* ----------- Feature grid ----------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature {
  background: #fff;
  padding: 36px 32px;
}
.feature h3 {
  font-family: inherit;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.feature p { margin: 0; font-size: .95rem; color: var(--ink-2); }
.feature .ico {
  width: 36px; height: 36px;
  color: var(--blue);
  margin-bottom: 18px;
}

/* ----------- Split / two-up ----------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split .media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 5/4;
}
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.split ul { padding: 0; margin: 16px 0 0; list-style: none; }
.split li {
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink-2);
}
.split li:last-child { border-bottom: 0; }
.split li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 18px; height: 2px;
  background: var(--blue);
}
.bg-dark .split li { color: #C5D3E5; border-bottom-color: rgba(255,255,255,.1); }
.bg-dark .split li::before { background: var(--blue-bright); }

/* ----------- Image strip (gallery) ----------- */
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-strip .g {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  min-height: 200px;
}
.gallery-strip .g img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-strip .g:hover img { transform: scale(1.04); }
.gallery-strip .g.big { grid-row: 1 / span 2; min-height: 410px; }

/* ----------- Pricing cards ----------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.plan:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.plan.is-featured {
  border-color: var(--navy);
  background: linear-gradient(180deg, #0E2A47 0%, #0A1F36 100%);
  color: #DDE7F2;
}
.plan.is-featured h3,
.plan.is-featured .price .amount { color: #fff; }
.plan.is-featured .plan-includes li::before { background: var(--blue-bright); }
.plan.is-featured .price small { color: #B6C5D6; }
.plan.is-featured .btn { background: var(--blue-bright); color: #fff; }
.plan.is-featured .btn:hover { background: #fff; color: var(--navy); }
.plan .tag {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--blue);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.plan h3 {
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.plan .price {
  font-family: Georgia, serif;
  margin: 8px 0 22px;
  line-height: 1;
}
.plan .price .amount {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--navy);
}
.plan .price small {
  display: block;
  margin-top: 6px;
  font-family: inherit;
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.plan-includes {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
  flex: 1;
}
.plan-includes li {
  padding: 10px 0 10px 26px;
  position: relative;
  font-size: .94rem;
  border-bottom: 1px dashed rgba(0,0,0,.06);
}
.plan.is-featured .plan-includes li { border-bottom-color: rgba(255,255,255,.1); }
.plan-includes li:last-child { border-bottom: 0; }
.plan-includes li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 14px; height: 2px;
  background: var(--blue);
}

/* ----------- Price table (responsive: cards on mobile) ----------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 16px 20px;
  font-size: .96rem;
}
.price-table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.price-table tbody tr + tr td { border-top: 1px solid var(--line); }
.price-table tbody tr:hover td { background: var(--bg-2); }
.price-table td.price-cell {
  font-family: Georgia, serif;
  color: var(--navy);
  font-weight: 600;
  white-space: nowrap;
}

/* ----------- CTA banner ----------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #DDE7F2;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52,168,255,.28), transparent 60%);
}
.cta-banner h2 { color: #fff; margin: 0 0 8px; }
.cta-banner p { color: #B6C5D6; margin: 0; }
.cta-banner .cta-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

/* ----------- Towns (chip list) ----------- */
.towns {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.town-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.town {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .96rem;
  color: var(--ink);
}
.town:nth-child(2n) { border-right: 0; }
.town .pill {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 600;
}
.town .pill.live { background: rgba(20,163,127,.12); color: var(--ok); }
.town .pill.soon { background: var(--blue-soft); color: var(--blue); }

/* ----------- FAQ ----------- */
.faq { display: grid; gap: 8px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 24px;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--blue);
  font-weight: 400;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  padding: 0 0 22px;
  color: var(--ink-2);
  margin: 0;
  font-size: .96rem;
}

/* ----------- Footer ----------- */
.site-footer {
  background: var(--navy-deep);
  color: #A7B6C9;
  padding: 72px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand img {
  height: 52px;
  margin-bottom: 14px;
}
.footer-brand p { color: #8E9FB3; font-size: .94rem; max-width: 340px; }
.footer-col h5 {
  color: #fff;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #A7B6C9; font-size: .94rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: #6F7F94;
}

/* ----------- Contact page ----------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: start;
}
.contact-info { padding-right: 8px; }
.contact-blocks { margin-top: 32px; display: grid; gap: 14px; }
.contact-block {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
a.contact-block:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}
.contact-block .ico {
  width: 28px; height: 28px;
  color: var(--blue);
  flex: 0 0 28px;
}
.contact-block h4 {
  font-family: inherit;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin: 0 0 4px;
}
.contact-block a, .contact-block p {
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  font-size: 1rem;
}
.contact-block a:hover { color: var(--blue); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-card h3 { font-family: inherit; font-size: 1.15rem; margin-bottom: 6px; }
.form-card .form-note { color: var(--muted); font-size: .92rem; margin-bottom: 24px; }
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,139,224,.15);
}
textarea { resize: vertical; min-height: 120px; }

/* ----------- Page heading ----------- */
.page-head {
  padding: 80px 0 64px;
  background: var(--navy-2);
  color: #C5D3E5;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 360px at 100% 0%, rgba(52,168,255,.22), transparent 60%),
    radial-gradient(500px 280px at 0% 100%, rgba(30,139,224,.14), transparent 60%);
}
.page-head .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: end;
}
.page-head h1 { color: #fff; margin: 6px 0 0; }
.page-head p { margin: 14px 0 0; color: #B6C5D6; max-width: 540px; font-size: 1.08rem; }

/* ----------- Mobile sticky CTA bar ----------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--navy-2);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 30px rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.06);
}
.sticky-cta .row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sticky-cta .btn { width: 100%; padding: 13px 14px; font-size: .9rem; }
.sticky-cta .btn-wa { gap: 8px; }

/* ----------- Plan card icon ----------- */
.plan .plan-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.plan.is-featured .plan-ico {
  background: rgba(52,168,255,.18);
  color: var(--blue-bright);
}
.plan .plan-ico svg { width: 24px; height: 24px; }

/* ----------- Page-head with image accent ----------- */
.page-head.with-image {
  padding: 0;
}
.page-head.with-image .head-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 0;
  align-items: stretch;
}
.page-head.with-image .head-text {
  padding: 80px var(--pad) 80px 0;
  position: relative;
  z-index: 1;
}
.page-head.with-image .head-media {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}
.page-head.with-image .head-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-head.with-image .head-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy-2) 0%, transparent 30%);
}

/* ----------- Service Associates section ----------- */
.associates {
  background: var(--navy);
  color: #C5D3E5;
  position: relative;
  overflow: hidden;
  padding: 84px 0;
}
.associates::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 380px at 100% 0%, rgba(52,168,255,.22), transparent 60%),
    radial-gradient(560px 320px at 0% 100%, rgba(30,139,224,.16), transparent 60%);
  pointer-events: none;
}
.associates .container { position: relative; z-index: 1; }
.associates-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: start;
}
.associates h2 { color: #fff; }
.associates .lead { color: #C5D3E5; }
.associate-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}
.associate-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: .82rem;
  color: #DBE5F1;
}
.associate-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.associate-stats .item .num {
  font-family: Georgia, serif;
  font-size: 1.9rem;
  color: var(--blue-bright);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}
.associate-stats .item .lbl {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #A4B7CE;
}
.associates ul { padding: 0; margin: 16px 0 0; list-style: none; }
.associates li {
  padding: 11px 0 11px 30px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  color: #C5D3E5;
  font-size: .96rem;
}
.associates li:last-child { border-bottom: 0; }
.associates li::before {
  content: "";
  position: absolute;
  left: 0; top: 19px;
  width: 18px; height: 2px;
  background: var(--blue-bright);
}
.associate-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.associate-form h3 { font-family: inherit; font-size: 1.15rem; margin-bottom: 6px; }
.associate-form .form-note { color: var(--muted); font-size: .92rem; margin-bottom: 22px; }

/* ----------- Inline icons (svg sizing) ----------- */
.svg-i { display: inline-block; vertical-align: -.15em; }

/* ----------- Utility ----------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.lead { font-size: 1.1rem; color: var(--ink-2); }

/* ----------- Responsive ----------- */
@media (max-width: 980px) {
  .nav { height: 78px; }
  :root { --header-h: 78px; }
  .brand img { height: 54px; }
  .nav-toggle { display: block; }

  /* Full-screen overlay menu — slides in from right */
  .nav-collapsible {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-2);
    background-image:
      radial-gradient(900px 500px at 100% 0%, rgba(52,168,255,.18), transparent 60%),
      radial-gradient(700px 400px at 0% 100%, rgba(30,139,224,.14), transparent 60%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: calc(78px + 24px) 28px 36px;
    overflow-y: auto;
    z-index: 49;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    visibility: hidden;
  }
  .nav-collapsible.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  body.nav-open { overflow: hidden; }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin: 0 0 28px;
    align-items: stretch;
  }
  .nav-links a {
    width: 100%;
    padding: 22px 4px;
    font-size: 1.7rem;
    font-family: Georgia, "Iowan Old Style", serif;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.08);
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-links a::after {
    content: "→";
    color: rgba(255,255,255,.3);
    font-size: 1.1rem;
    font-family: inherit;
  }
  .nav-links a.active { color: var(--blue-bright); }
  .nav-links a.active::after { color: var(--blue-bright); }
  .nav-links a:last-child { border-bottom: 0; }

  .nav-cta {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-cta .btn {
    display: flex;
    width: 100%;
    padding: 17px 18px;
    font-size: 1rem;
    justify-content: center;
  }
  .nav-call { display: flex; }
  .nav-meta {
    display: block;
    margin-top: 24px;
    color: #8FA2BB;
    font-size: .82rem;
    line-height: 1.7;
    text-align: center;
  }
  .nav-meta strong { color: #fff; font-weight: 600; display: block; margin-bottom: 4px; }

  .page-head.with-image .head-grid { grid-template-columns: 1fr; }
  .page-head.with-image .head-text { padding: 64px var(--pad); }
  .page-head.with-image .head-media { min-height: 240px; order: -1; }
  .page-head.with-image .head-media::after { background: linear-gradient(180deg, transparent 0%, var(--navy-2) 100%); }

  .associates { padding: 64px 0; }
  .associates-grid { grid-template-columns: 1fr; gap: 40px; }
  .associate-form { padding: 28px; }
  .associate-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .associate-stats .item .num { font-size: 1.4rem; }

  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; }
  .hero-visual .frame { aspect-ratio: 5/4; max-width: 540px; margin: 0 auto; }
  .hero-visual .stat-1 { left: -8px; top: 16px; }
  .hero-visual .stat-2 { right: -8px; bottom: 16px; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .book-card { grid-template-columns: 1fr; max-width: none; }
  .book-card .btn { width: 100%; }

  section { padding: 64px 0; }
  .section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 36px; }
  .steps, .features, .plans, .cities { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; direction: ltr; }
  .split.reverse { direction: ltr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .gallery-strip .g.big { grid-row: auto; min-height: 220px; grid-column: 1 / -1; }
  .cta-banner { grid-template-columns: 1fr; padding: 36px; }
  .cta-banner .cta-actions { justify-content: flex-start; }
  .towns { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .page-head .container { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }

  /* ---- Responsive price tables (cards on mobile) ---- */
  .price-table {
    border: 0;
    background: transparent;
    border-radius: 0;
  }
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td {
    display: block;
    width: 100%;
  }
  .price-table tr {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    padding: 6px 4px 10px;
    box-shadow: var(--shadow-sm);
  }
  .price-table tr:hover td { background: transparent; }
  .price-table td {
    padding: 8px 16px;
    border: 0 !important;
    font-size: .96rem;
  }
  .price-table td::before {
    content: attr(data-label);
    display: block;
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
    font-weight: 600;
  }
  .price-table td.price-cell {
    background: var(--bg-2);
    border-radius: var(--radius);
    margin: 6px 12px 0;
    padding: 10px 14px;
    font-size: 1.05rem;
  }

  /* sticky mobile CTA */
  .sticky-cta { display: block; }
  body { padding-bottom: 84px; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .hero-meta .item .num { font-size: 1.5rem; }
  .town-list { grid-template-columns: 1fr; }
  .town { border-right: 0; }
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip .g { min-height: 180px; }
}
