:root {
  --navy: #0b3a6b;
  --navy2: #082c52;
  --sky: #1e8ad2;
  --ice: #e8f3fb;
  --paper: #f4f7fb;
  --cream: #f7f1e8;
  --ink: #102033;
  --muted: #5b6b7c;
  --line: #d5e0ec;
  --white: #fff;
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;
  --s6: 80px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 28px rgba(11, 58, 107, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 88px; }
body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: none; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; }
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
h1, h2, h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sky);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.kicker::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background-color 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
}
.btn.sky { background: var(--sky); color: #fff; }
.btn.navy { background: var(--navy); color: #fff; }
.btn.ghost { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); }
.btn:active { transform: scale(0.98); box-shadow: none; }
:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }

.mast {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition: background-color 280ms var(--ease), box-shadow 280ms var(--ease);
}
.topbar {
  background: var(--navy2);
  color: #d7e6f5;
  font-size: 13px;
  max-height: 48px;
  overflow: hidden;
  transition: max-height 280ms var(--ease), opacity 280ms var(--ease);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s2);
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar span { display: inline-flex; align-items: center; gap: 6px; }
.topbar svg { flex-shrink: 0; opacity: .85; }

.site {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 280ms var(--ease), border-color 280ms var(--ease), box-shadow 280ms var(--ease);
}
.mast.is-scrolled,
.mast.is-open {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(11, 58, 107, 0.08);
}
.mast.is-scrolled .site,
.mast.is-open .site {
  border-bottom-color: var(--line);
}
.mast.is-scrolled .topbar {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.mast.is-scrolled .topbar .wrap { padding: 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img, .addr img { width: auto; height: 48px; object-fit: contain; max-width: 200px; }
.addr img { height: 54px; }
.links { display: flex; gap: 22px; font-size: 14px; font-weight: 600; color: var(--navy); }
.links a {
  position: relative;
  transition: color 200ms var(--ease);
}
.links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease);
}
.brand { transition: transform 280ms var(--ease); }
.nav-cta { display: flex; gap: 8px; }
.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: #fff;
  color: var(--navy);
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(11, 58, 107, 0.14);
}
.mobile-links { display: none; }

/* —— Hero: full-viewport paper type + edge-to-edge house —— */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--white);
  padding: 0 0 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: var(--grain);
  z-index: 1;
}
.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  z-index: 0;
  overflow: hidden;
}
.hero-media img {
  position: absolute;
  inset: 0;
  object-position: 42% 46%;
  filter: brightness(1.08) saturate(1.1) contrast(1.04);
  animation: heroSettle 1.4s var(--ease) both;
}
.hero-seam {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 42%;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.82) 38%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.hero-stage {
  position: relative;
  z-index: 2;
  padding: 120px 0 36px;
  flex: 1;
  display: flex;
  align-items: center;
}
.hero-copy { max-width: 760px; }
.hero h1 {
  font-size: clamp(40px, 4.8vw, 64px);
  color: var(--navy);
  margin: 0 0 22px;
  line-height: 0.94;
  letter-spacing: -0.03em;
}
.hero h1 .h1-line { white-space: nowrap; }
.hero .lead {
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.55;
}
.lead { font-size: 17px; color: var(--muted); max-width: 52ch; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero .btn { min-height: 52px; padding: 14px 26px; }
.hero .btn svg { flex-shrink: 0; }
.proof-rail {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding-bottom: 8px;
}
.proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.proof article {
  background: var(--white);
  border: 0;
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 18px 44px rgba(11, 58, 107, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 108px;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.proof .ico {
  width: 52px; height: 52px; border-radius: 0;
  background: transparent;
  border: 0;
  color: var(--sky);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 280ms var(--ease);
}
.proof .ico svg { width: 48px; height: 48px; }
.proof article > div { min-width: 0; }
.proof b { display: block; font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 2px; line-height: 1.25; }
.proof span { font-size: 12px; color: var(--muted); line-height: 1.4; }

.section { padding: 96px 0; position: relative; }
.section.paper { background: var(--paper); }
.section.cream { background: var(--cream); }
.section.paper::after,
.section.cream::after,
.offers::after,
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: var(--grain);
}
.sec-head { max-width: 720px; margin-bottom: var(--s5); }
.sec-head.center { text-align: center; margin-inline: auto; }
.sec-head.center .kicker { justify-content: center; }
.sec-head.center .kicker::before,
.sec-head.center .kicker::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}
.sec-head h2 { font-size: clamp(34px, 4.2vw, 52px); color: var(--navy); margin-bottom: 12px; }
.sec-head em {
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: -0.02em;
  font-size: 0.62em;
}
.sec-head p { color: var(--muted); }

.services-head { position: relative; max-width: 820px; }
.head-wave {
  position: absolute;
  right: 0;
  top: 8px;
  width: 120px;
  height: 28px;
  color: var(--sky);
  opacity: 0.55;
}

#services { padding-top: 88px; }
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: minmax(280px, 34vh) minmax(280px, 34vh);
  gap: 16px;
}
.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
  min-width: 0;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.card.tall { grid-row: 1 / span 2; }
.card img {
  position: absolute;
  inset: 0;
  transition: transform 700ms var(--ease);
}
.card .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,58,107,.0) 28%, rgba(8,32,64,.82) 100%);
  transition: background 400ms var(--ease);
}
.card .body {
  position: relative;
  z-index: 2;
  padding: 22px 24px;
  transition: transform 320ms var(--ease);
}
.mark {
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; color: var(--navy);
  display: grid; place-items: center;
  margin-bottom: 12px;
  box-shadow: 0 8px 18px rgba(8, 24, 48, 0.18);
}
.mark svg { width: 22px; height: 22px; }
.card h3 { font-size: 24px; margin: 0 0 6px; line-height: 1.05; }
.card p { font-size: 13.5px; color: #e4eef8; line-height: 1.35; }
.card.tall h3 { font-size: 42px; }
.card.tall .body { padding: 32px; }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.person {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.person .ph {
  position: relative;
  height: 420px;
  background: #d9e3ee;
  overflow: hidden;
}
.person .ph img {
  position: absolute;
  inset: 0;
  object-position: center 12%;
  transition: transform 700ms var(--ease);
}
.plate {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  transition: transform 320ms var(--ease);
}
.plate b {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  letter-spacing: -0.02em;
}
.plate span { display: block; font-size: 15px; font-weight: 700; }
.plate small { display: block; opacity: .75; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.person .meta { padding: 22px 24px 26px; }
.person p { color: var(--muted); font-size: 15px; }

.offers {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 56px 0 72px;
}
.offers-nap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s2);
  flex-wrap: wrap;
  font-weight: 700;
  margin-bottom: 36px;
  padding: 0 4px 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 15px;
}
.offers-nap span,
.offers-nap a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.offers-nap svg { flex-shrink: 0; opacity: .85; }
.offers-nap a:hover { color: #9fd0f5; }
.coupon-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.ticket {
  position: relative;
  background: transparent;
  border: 1.5px dashed rgba(255,255,255,.42);
  border-radius: 18px;
  padding: 40px 20px 28px;
  text-align: center;
  transition: transform 320ms var(--ease), border-color 280ms var(--ease), box-shadow 320ms var(--ease), background-color 280ms var(--ease);
}
.ticket b {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(44px, 4.8vw, 64px);
  color: #fff;
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.ticket strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 10px 0 14px;
}
.ticket span { color: #9fd0f5; font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.offers-note {
  margin-top: 28px;
  text-align: center;
  color: #9fb4c9;
  font-size: 13px;
}

.rev-widget {
  margin-top: 8px;
  background: #e8eef4;
  border-radius: 16px;
  padding: 8px 8px 18px;
  box-shadow: var(--shadow);
}
.rev-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px 14px;
}
.rev-head-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--navy);
}
.rev-head-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}
.rev-head-btn { flex-shrink: 0; }
.rev-body { position: relative; padding: 0 44px; }
.rev-viewport { overflow: hidden; }
.rev-track {
  display: flex;
  gap: 16px;
  transition: transform 450ms var(--ease);
}
.rev-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
  background: #fff;
  border-radius: 12px;
  padding: 20px 18px 18px;
  box-shadow: 0 1px 2px rgba(11, 58, 107, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 250px;
}
.rev-card.summary { background: linear-gradient(180deg, #dceaf6 0%, #f3f8fc 100%); }
.rev-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  min-width: 0;
}
.rev-av {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.rev-av.c1 { background: var(--navy); }
.rev-av.c2 { background: var(--sky); }
.rev-av.c3 { background: #2b4a6b; }
.rev-av.c4 { background: #0a2f58; }
.rev-av.c5 { background: #3d5a73; }
.rev-faces { display: flex; padding-right: 8px; }
.rev-faces .rev-av { margin-right: -10px; border: 2px solid #dceaf6; }
.rev-name {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--navy);
}
.rev-date { font-size: 12px; color: var(--muted); margin-top: 2px; }
.stars { display: inline-flex; gap: 2px; margin: 2px 0 10px; }
.stars i {
  width: 14px; height: 14px; background: #fbbc04;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.rev-head-meta .stars { margin: 0; }
.rev-text {
  color: #3b4450;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rev-card.is-open .rev-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.rev-more {
  margin-top: auto;
  padding-top: 10px;
  border: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.rev-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(11, 58, 107, 0.16);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rev-nav.prev { left: 6px; }
.rev-nav.next { right: 6px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: #fff; border: 1px solid var(--line); padding: 8px 14px;
  border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--navy);
  transition: background-color 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
}
.areas-split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 28px;
  align-items: stretch;
}
.areas-copy .sec-head { max-width: none; margin-bottom: 28px; }
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: var(--s3);
}
.areas-map {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d5e0ec;
  box-shadow: var(--shadow);
}
.areas-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.city-tile {
  position: relative;
  min-height: 168px;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.city-tile img {
  position: absolute;
  inset: 0;
  transition: transform 700ms var(--ease);
}
.city-tile .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8,24,48,.82));
  transition: background 400ms var(--ease);
}
.city-tile span {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700; font-size: 20px; letter-spacing: -0.02em;
  transition: transform 320ms var(--ease);
}

.faq-wrap { display: grid; grid-template-columns: minmax(0, 280px) minmax(0, 1fr); gap: 48px; align-items: start; }
.faq-wrap .sec-head { margin-bottom: 0; position: sticky; top: 108px; }
.faq-wrap .sec-head h2 { font-size: clamp(32px, 3.6vw, 46px); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}
.faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
details.qa {
  background: #fff;
  border-radius: 16px;
  padding: 0 8px 0 18px;
  border: 1px solid var(--line);
  overflow: visible;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), background-color 220ms var(--ease);
}
details.qa[open] {
  background: #f3f8fc;
  border-color: #c5d9ea;
  padding-bottom: 16px;
}
.qa .num {
  flex: 0 0 auto;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: 0.04em;
  line-height: 1;
  width: 1.6em;
}
details.qa summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  display: flex;
  gap: 10px;
  min-height: 56px;
  align-items: center;
}
details.qa summary .q { flex: 1; min-width: 0; }
details.qa summary::-webkit-details-marker,
details.qa summary::marker { display: none; content: none; }
.qa-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--sky);
  background: #fff;
  border: 1px solid var(--line);
}
.qa-icon svg {
  width: 16px;
  height: 16px;
  transition: transform 220ms var(--ease);
}
details.qa[open] .qa-icon {
  background: var(--sky);
  border-color: var(--sky);
  color: #fff;
}
details.qa[open] .qa-icon svg { transform: rotate(180deg); }
.qa-body {
  display: none;
  padding: 0 40px 2px 42px;
}
details.qa[open] > .qa-body { display: block; }
.qa-body p { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.55; }

.contact {
  position: relative;
  background: var(--navy2);
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 12px, transparent 12px 28px);
  color: #fff;
  padding: var(--s6) 0;
}
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 20px; position: relative; z-index: 1; }
.addr, .form-card { border-radius: 24px; padding: 36px; }
.addr { background: var(--navy); }
.addr .brand-on-dark {
  width: 168px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
}
.addr .chip { background: var(--sky); color: #fff; border: 0; }
.form-card { background: #fff; color: var(--ink); }
.addr h2, .form-card h2 { font-size: clamp(28px, 3vw, 38px); margin: 6px 0 18px; }
.addr p { color: #c5d5e6; margin-bottom: 12px; }
.meta-line {
  display: flex;
  align-items: center;
  gap: 10px;
}
.meta-line svg { flex-shrink: 0; color: #9fd0f5; }
.phone-xl {
  display: inline-block;
  font-size: 40px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 8px 0 16px;
  transition: color 200ms var(--ease), transform 200ms var(--ease);
}
.form-card .lead { font-size: 15px; margin-bottom: 8px; }
.addr .chips { margin-top: 20px; }
.form-card form { display: grid; gap: 12px; }
label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.field { position: relative; }
.field svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--sky);
  pointer-events: none;
}
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; font: inherit; background: #fff; color: var(--ink);
}
.field input { padding-left: 44px; min-height: 50px; }
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--sky);
  outline-offset: 0;
  border-color: var(--sky);
  background: #fff;
}
textarea { min-height: 96px; resize: vertical; }
.form-cta { margin-top: 20px; }
.form-cta .btn { width: 100%; min-height: 52px; }
.form-done { margin-top: 16px; color: var(--muted); }
.form-done:focus { outline: none; }

footer {
  background: #061e38;
  color: #c5d5e6;
  padding: 22px 0;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  flex-wrap: wrap;
}
.foot img { height: 36px; width: auto; object-fit: contain; }
.foot-phone {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  transition: color 200ms var(--ease);
}
.foot a:hover, .foot-phone:hover { color: #9fd0f5; }
.dock {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 30;
  min-height: 48px; border-radius: 999px; background: var(--navy); color: #fff;
  font-weight: 800; align-items: center; justify-content: center;
}

html.js .reveal {
  opacity: 0;
  translate: 0 22px;
}
html.js .reveal.is-in {
  opacity: 1;
  translate: 0 0;
  transition: opacity 560ms var(--ease) var(--d, 0ms), translate 560ms var(--ease) var(--d, 0ms);
}
html.js .hero-copy.reveal { opacity: 1; translate: 0; }
html.js .hero-copy:not(.is-in) h1,
html.js .hero-copy:not(.is-in) .lead,
html.js .hero-copy:not(.is-in) .actions { opacity: 0; }
html.js .hero-copy.is-in h1,
html.js .hero-copy.is-in .lead,
html.js .hero-copy.is-in .actions {
  animation: riseIn 600ms var(--ease) both;
}
html.js .hero-copy.is-in .lead { animation-delay: 90ms; }
html.js .hero-copy.is-in .actions { animation-delay: 160ms; }

@keyframes heroSettle {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes softFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}
.hero-copy .actions .btn.sky {
  animation: softFloat 3.2s var(--ease) 900ms alternate;
  animation-iteration-count: 2;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(11, 58, 107, 0.18); }
  .btn.sky:hover { background: #1878c4; }
  .btn.navy:hover { background: #0a2f58; }
  .btn.ghost:hover { background: var(--navy); color: #fff; }
  .links a:hover { color: var(--sky); }
  .links a:hover::after { transform: scaleX(1); }
  .brand:hover { transform: translateY(-1px); }
  .proof article:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(11, 58, 107, 0.14);
  }
  .proof article:hover .ico { transform: scale(1.06); }
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(11, 58, 107, 0.2);
  }
  .card:hover img { transform: scale(1.08); }
  .card:hover .veil {
    background: linear-gradient(180deg, rgba(11,58,107,.08) 20%, rgba(8,32,64,.9) 100%);
  }
  .card:hover .body { transform: translateY(-6px); }
  .person:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(11, 58, 107, 0.16);
  }
  .person:hover .ph img { transform: scale(1.06); }
  .person:hover .plate { transform: translateY(-4px); }
  .ticket:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,.75);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
    background: rgba(8, 44, 82, 0.45);
  }
  .rev-more:hover { text-decoration: underline; color: var(--navy); }
  .rev-nav:hover { background: var(--ice); }
  .chip:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    transform: translateY(-2px);
  }
  .addr .chip:hover { background: #1878c4; color: #fff; transform: translateY(-2px); }
  .city-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(11, 58, 107, 0.18);
  }
  .city-tile:hover img { transform: scale(1.1); }
  .city-tile:hover span { transform: translateY(-2px); }
  details.qa:hover {
    border-color: #b7d3ea;
    box-shadow: var(--shadow);
  }
  .phone-xl:hover { color: #9fd0f5; transform: translateX(2px); }
  .dock:hover { background: var(--sky); }
}

@media (max-width: 1100px) {
  .hero h1 { font-size: clamp(44px, 5.4vw, 68px); }
  .hero-media { width: 54%; }
  .head-wave { display: none; }
}

@media (max-width: 1024px) {
  .hero-media { width: 52%; }
  .hero-stage { padding: 108px 0 28px; }
  .mosaic, .contact-grid, .faq-grid, .coupon-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .rev-card { flex-basis: calc((100% - 16px) / 2); }
  .proof { grid-template-columns: 1fr 1fr; }
  .areas-split { grid-template-columns: 1fr; }
  .areas-map { height: 320px; min-height: 320px; }
  .city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card.tall { grid-row: auto; min-height: 360px; }
  .mosaic { grid-template-rows: none; }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-wrap .sec-head { position: static; }
  .person .ph { height: 340px; }
}

@media (max-width: 900px) {
  .wrap { width: calc(100% - 32px); }
  .topbar { display: none; }
  .links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site.is-open .mobile-links {
    display: flex; flex-direction: column; padding: 8px 16px 16px; gap: 4px;
  }
  .mobile-links a { padding: 12px 4px; min-height: 44px; display: flex; align-items: center; font-weight: 600; color: var(--navy); }
  .mobile-links .btn { width: 100%; margin-top: 8px; justify-content: center; }
  .mosaic, .contact-grid, .faq-grid, .coupon-grid, .team-grid { grid-template-columns: 1fr; }
  .faq-col { display: contents; }
  .qa-01 { order: 1; }
  .qa-02 { order: 2; }
  .qa-03 { order: 3; }
  .qa-04 { order: 4; }
  .qa-05 { order: 5; }
  .qa-06 { order: 6; }
  .qa-07 { order: 7; }
  .qa-08 { order: 8; }
  .rev-head { flex-direction: column; align-items: flex-start; padding: 14px 12px 10px; }
  .rev-head-btn { width: 100%; }
  .rev-body { padding: 0 38px; }
  .rev-card { flex-basis: 100%; min-height: 220px; }
  .rev-name { white-space: normal; }
  .proof, .city-grid { grid-template-columns: 1fr 1fr; }
  .hero {
    min-height: 100svh;
    padding: 72px 0 88px;
    justify-content: flex-start;
  }
  .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
  }
  .hero-seam {
    width: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,.1) 8%, rgba(255,255,255,.72) 46%, #fff 66%);
  }
  .hero-stage {
    padding: 28px 0 12px;
    align-items: flex-end;
    min-height: 0;
    flex: 1;
  }
  .hero h1 { font-size: 36px; margin-bottom: 12px; }
  .hero h1 .h1-line { white-space: normal; }
  .hero .lead { font-size: 15px; margin-bottom: 14px; max-width: none; }
  .hero-copy { max-width: none; }
  .proof-rail { margin-top: 0; position: relative; z-index: 3; }
  .actions { flex-direction: column; }
  .actions .btn, .form-cta .btn { width: 100%; }
  .hero .actions .btn { min-height: 44px; }
  .hero-copy .actions .btn.sky { animation: none; }
  .proof { margin: 0; gap: 8px; }
  .proof article { min-height: 0; padding: 10px 8px; gap: 8px; }
  .proof span { display: none; }
  .proof .ico { width: 32px; height: 32px; }
  .proof .ico svg { width: 32px; height: 32px; }
  .section { padding: 56px 0; }
  #services { padding-top: 56px; }
  .contact { padding: 56px 0 88px; }
  .form-card { padding-bottom: 96px; }
  .form-cta, #contact { scroll-margin-bottom: 88px; }
  .offers { padding: 48px 0; }
  .person .ph { min-height: 280px; height: 280px; }
  .mosaic { grid-template-rows: 240px; }
  .card.tall h3 { font-size: 32px; }
  .dock { display: flex; }
  footer { padding-bottom: 104px; }
  .foot { justify-content: center; text-align: center; }
  .foot .brand { width: 100%; justify-content: center; }
  input, textarea, select { font-size: 16px; min-height: 44px; }
  .qa-body { padding-left: 0; padding-right: 0; }
  .city-tile { min-height: 140px; }
  .ticket b { font-size: 48px; }
}
@media (max-width: 480px) {
  .city-grid { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal,
  html.js .hero-copy:not(.is-in) h1,
  html.js .hero-copy:not(.is-in) .lead,
  html.js .hero-copy:not(.is-in) .actions {
    opacity: 1;
    translate: 0;
  }
  .hero-media img,
  .hero-copy .actions .btn.sky,
  html.js .hero-copy.is-in h1,
  html.js .hero-copy.is-in .lead,
  html.js .hero-copy.is-in .actions {
    animation: none;
  }
  .rev-track { transition: none; }
  .reveal, .card, .btn, .person, .ticket, .chip, .city-tile, details.qa, .proof article, .proof .ico, .plate {
    transition: none;
  }
  .card:hover, .btn:hover, .person:hover, .ticket:hover, .city-tile:hover {
    transform: none;
    box-shadow: none;
  }
}
