:root {
  --navy: #172a3a;
  --slate: #233743;
  --blue: #2889c9;
  --blue-dark: #247fb3;
  --aqua: #64c4d8;
  --gold: #f4b942;
  --text: #44535c;
  --muted: #6f7d85;
  --line: #dce6ea;
  --soft: #f3f8fa;
  --soft-2: #eef5f7;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(23, 42, 58, 0.12);
  --radius: 8px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
svg { width: 1.1em; height: 1.1em; stroke-width: 1.8; }
:focus-visible { outline: 3px solid rgba(40, 137, 201, 0.42); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: 20px;
  top: -80px;
  z-index: 1000;
  background: var(--navy);
  color: white;
  padding: 12px 16px;
}
.skip-link:focus { top: 12px; }
.container {
  width: min(var(--container), calc(100% - 96px));
  margin: 0 auto;
}
.section { padding: 110px 0; }
.section-white { background: var(--white); }
.section-blue { background: var(--soft); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 2px; background: var(--blue); }
h1, h2, h3 {
  margin: 0;
  color: var(--navy);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}
h1 { font-size: clamp(3rem, 6vw, 4.35rem); max-width: 790px; }
h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); max-width: 780px; }
h3 { font-size: 1.45rem; line-height: 1.22; }
p { margin: 18px 0 0; }
.lead { font-size: 1.13rem; max-width: 670px; color: #4a5962; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  color: white;
  font-weight: 750;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--blue-dark); box-shadow: 0 14px 28px rgba(40, 137, 201, .22); }
.button:hover svg, .text-link:hover svg, .service-card a:hover svg { transform: translateX(4px); }
.button svg, .text-link svg, .service-card a svg { transition: transform .2s ease; }
.button.secondary { background: white; color: var(--navy); border-color: #b8cbd4; }
.button.light { background: white; border-color: white; color: var(--navy); }
.button-small { min-height: 46px; padding: 12px 18px; }
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--navy);
}

.utility-bar { background: var(--navy); color: rgba(255,255,255,.88); font-size: 13px; }
.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.utility-inner span, .utility-inner a { display: inline-flex; align-items: center; gap: 8px; }
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(220,230,234,.8);
  backdrop-filter: blur(14px);
  transition: box-shadow .22s ease;
}
.main-nav.is-stuck { box-shadow: 0 14px 32px rgba(23, 42, 58, 0.1); }
.nav-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); }
.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 16px rgba(23,42,58,.12));
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  font-weight: 900;
  font-family: Manrope, sans-serif;
}
.brand strong { display: block; font-size: 1rem; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: .78rem; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 26px; color: var(--slate); font-size: 15px; font-weight: 650; }
.nav-links > a:not(.button):hover { color: var(--blue-dark); }
.nav-actions, .menu-toggle, .phone-only { display: none; }
.mobile-menu { display: none; }

.hero { padding: 82px 0 72px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1fr);
  align-items: center;
  gap: 70px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  color: var(--slate);
  font-weight: 700;
}
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-media {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 42px -18px 42px 58px;
  background: var(--soft-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  z-index: -1;
}
.hero-media::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 12px;
  width: 260px;
  height: 260px;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .8;
  z-index: -2;
}
.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #d8e9ef;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-main { width: min(100%, 640px); height: 620px; margin-left: auto; }

.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfdfe;
}
.trust-grid {
  min-height: 124px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  align-items: center;
}
.trust-grid div { display: flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 750; }
.trust-grid i { color: var(--blue); font-size: 1.35rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 74px;
  align-items: center;
}
.image-stack { position: relative; min-height: 620px; }
.primary-photo, .secondary-photo {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.primary-photo { width: 76%; aspect-ratio: 1; left: 0; top: 0; }
.secondary-photo { width: 46%; aspect-ratio: 1.05; right: 0; bottom: 36px; border: 8px solid white; }
.image-stack::before {
  content: "";
  position: absolute;
  left: 52px;
  bottom: 0;
  width: 70%;
  height: 74%;
  background: var(--soft-2);
  border-radius: var(--radius);
  z-index: -1;
}
.section-copy p { max-width: 660px; }
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
  color: var(--navy);
  font-weight: 700;
}
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list i {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 50%;
  background: #dff4f8;
  color: var(--blue-dark);
}
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-dark); font-weight: 800; }

.section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
  margin: 0 auto 46px;
}
.section-heading p:not(.eyebrow) { max-width: 700px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 36px rgba(23,42,58,.08);
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card > img { width: 100%; height: 205px; object-fit: cover; transition: transform .22s ease; }
.service-card:hover > img { transform: scale(1.035); }
.service-card > div { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.service-card div > i { color: var(--blue); width: 36px; height: 36px; margin-bottom: 16px; }
.service-card p { font-size: .98rem; }
.service-card a { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--blue-dark); font-weight: 800; }

.dual-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.image-panel {
  min-height: 480px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  background-image: linear-gradient(180deg, rgba(23,42,58,.14), rgba(23,42,58,.86)), var(--panel-img);
  background-size: cover;
  background-position: center;
  color: white;
}
.image-panel div { padding: 42px; }
.image-panel h2 { color: white; font-size: clamp(2rem, 3.4vw, 2.8rem); }
.image-panel p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.86); }
.image-panel .eyebrow { color: #d9f8ff; }
.image-panel .button { margin-top: 24px; }

.compare {
  position: relative;
  max-width: 920px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ddebf0;
  box-shadow: var(--shadow);
}
.compare img { width: 100%; height: 100%; object-fit: cover; }
.compare-before, .compare-after { position: absolute; inset: 0; }
.compare-after { width: 52%; overflow: hidden; border-right: 3px solid white; }
.compare-after img { width: 920px; max-width: none; }
.compare input {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  cursor: ew-resize;
}
.compare-handle {
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  box-shadow: 0 12px 30px rgba(0,0,0,.24);
  pointer-events: none;
}
.compare-label {
  position: absolute;
  top: 18px;
  padding: 7px 12px;
  border-radius: var(--radius);
  background: rgba(23,42,58,.86);
  color: white;
  font-size: .82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.compare-label.before { left: 18px; }
.compare-label.after { right: 18px; }
.before-after-static {
  max-width: 850px;
  margin: 0 auto;
}
.before-after-static img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: white;
}
.before-after-static figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: .92rem;
  text-align: center;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
}
.timeline li { position: relative; background: white; padding-top: 82px; }
.timeline span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-weight: 900;
}
.timeline i { color: var(--blue-dark); }
.timeline p { font-size: .98rem; max-width: 260px; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); background: white; }
.feature {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature:nth-child(2n) { border-right: 0; }
.feature:nth-last-child(-n+2) { border-bottom: 0; }
.feature i { color: var(--blue); width: 34px; height: 34px; margin-bottom: 18px; }
.feature p { font-size: .98rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 245px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--soft-2);
  color: white;
}
.gallery-item.large { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item span {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(23,42,58,.84));
  font-weight: 850;
}
.center-action { display: flex; justify-content: center; margin-top: 34px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}
.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 36px rgba(23,42,58,.08);
}
.video-card iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  background: var(--soft-2);
}
.video-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  color: var(--blue-dark);
  font-weight: 850;
}

.testimonial-shell {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 18px;
}
.testimonial-track {
  min-height: 325px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 46px;
  opacity: 0;
  transform: translateX(22px);
  transition: opacity .28s ease, transform .28s ease;
}
.testimonial.active { opacity: 1; transform: translateX(0); }
.stars { color: var(--gold); font-size: 1.25rem; letter-spacing: .08em; }
.testimonial p { font-size: clamp(1.25rem, 2vw, 1.55rem); color: var(--navy); max-width: 720px; }
.testimonial h3 { margin-top: 24px; font-size: 1.1rem; }
.testimonial span { color: var(--muted); }
.dots {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #b9cbd4;
  padding: 0;
}
.dots button.active { background: var(--blue); }

.map-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f8f7f3, #e7f4f7);
}
.real-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-open {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: white;
  color: var(--blue-dark);
  font-size: .9rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(23,42,58,.16);
}
.real-map::before,
.real-map .map-region,
.real-map .pin,
.real-map strong {
  display: none;
}
.map-card::before {
  content: "";
  position: absolute;
  inset: 46px;
  border: 1px solid rgba(35,55,67,.14);
  background-image: linear-gradient(rgba(35,55,67,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(35,55,67,.08) 1px, transparent 1px);
  background-size: 42px 42px;
}
.map-card.real-map::before {
  display: none;
}
.map-region {
  position: absolute;
  left: 24%;
  top: 18%;
  width: 52%;
  height: 58%;
  border-radius: 48% 42% 54% 46%;
  background: rgba(40,137,201,.28);
  border: 2px solid var(--blue);
}
.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--navy);
  transform: rotate(-45deg);
}
.pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: white;
}
.pin-one { left: 46%; top: 42%; }
.pin-two { left: 58%; top: 32%; }
.pin-three { left: 38%; top: 58%; }
.map-card strong {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: var(--navy);
  font-size: 2.2rem;
}
.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.area-list li { display: inline-flex; align-items: center; gap: 9px; color: var(--navy); font-weight: 750; }
.area-list i { color: var(--blue); }

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.35fr;
  gap: 70px;
  align-items: start;
}
.accordion { border-top: 1px solid #cadde5; }
.accordion button {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-bottom: 1px solid #cadde5;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font-size: 1.12rem;
  font-weight: 800;
}
.accordion button[aria-expanded="true"] i { transform: rotate(45deg); }
.accordion button i { flex: 0 0 auto; transition: transform .2s ease; }
.accordion div { padding: 0 0 24px; border-bottom: 1px solid #cadde5; }
.accordion p { max-width: 780px; margin-top: 0; }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background: var(--navy);
  color: rgba(255,255,255,.86);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}
.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 70px;
  align-items: center;
}
.cta-copy h2 { color: white; }
.cta-copy .eyebrow { color: var(--aqua); }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
}
.quote-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: var(--radius);
  background: white;
  color: var(--text);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.cta-card {
  padding: 38px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.cta-card > i {
  width: 44px;
  height: 44px;
  color: var(--aqua);
  margin-bottom: 18px;
}
.cta-card h3 {
  color: white;
  font-size: 1.7rem;
}
.cta-card p {
  color: rgba(255,255,255,.82);
  max-width: 560px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 7px; color: var(--navy); font-size: .93rem; font-weight: 800; }
input, textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid #cddde4;
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--navy);
  background: #fbfdfe;
}
textarea { resize: vertical; }
fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  grid-column: 1 / -1;
  color: var(--navy);
  font-size: .93rem;
  font-weight: 800;
  margin-bottom: 4px;
}
fieldset label { display: block; }
fieldset input { position: absolute; opacity: 0; }
fieldset span {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #cddde4;
  border-radius: var(--radius);
  padding: 12px;
  background: #fbfdfe;
}
fieldset input:checked + span { border-color: var(--blue); background: #e9f6fb; box-shadow: inset 0 0 0 1px var(--blue); }
.upload-zone input { position: absolute; opacity: 0; pointer-events: none; }
.upload-zone span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  border: 1px dashed #a9c2ce;
  border-radius: var(--radius);
  background: #f8fbfc;
  color: var(--blue-dark);
}
.form-note, .form-status { margin: 0; font-size: .88rem; color: var(--muted); }
.form-status.success { color: #186044; font-weight: 800; }

.site-footer { background: #102230; color: rgba(255,255,255,.74); padding: 76px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 44px;
}
.footer-brand { color: white; }
.footer-brand .brand-logo {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.24));
}
.site-footer p { max-width: 350px; }
.site-footer h3 { color: white; font-size: 1rem; margin-bottom: 14px; }
.site-footer a:not(.brand) { display: block; margin-top: 9px; color: rgba(255,255,255,.74); }
.site-footer a:hover { color: white; text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 72px 88px;
  background: rgba(7,18,26,.9);
  color: white;
}
.lightbox.open { display: grid; }
.lightbox img {
  max-height: 76vh;
  width: min(900px, 100%);
  object-fit: contain;
  border-radius: var(--radius);
  background: #0b1b27;
}
.lightbox p { margin: 16px 0 0; color: rgba(255,255,255,.82); font-weight: 750; }
.lightbox .icon-button { position: absolute; background: white; }
.lightbox-close { right: 28px; top: 24px; }
.lightbox-prev { left: 28px; top: 50%; }
.lightbox-next { right: 28px; top: 50%; }
.mobile-sticky { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1100px) {
  .container { width: min(var(--container), calc(100% - 64px)); }
  .nav-links { display: none; }
  .nav-actions, .menu-toggle, .phone-only { display: flex; gap: 10px; }
  .mobile-menu {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 160;
    width: min(420px, 100%);
    transform: translateX(105%);
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 84px 32px 32px;
    background: white;
    box-shadow: -20px 0 60px rgba(0,0,0,.18);
    transition: transform .25s ease;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a { font-size: 1.35rem; font-weight: 800; color: var(--navy); }
  .mobile-menu .button { color: white; font-size: 1rem; }
  .mobile-phone { display: inline-flex; align-items: center; gap: 10px; }
  .close-menu { position: absolute; right: 26px; top: 24px; }
  .hero-grid, .split, .faq-grid, .cta-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 34px; }
  .hero-media { min-height: auto; max-width: 650px; }
  .hero-image-main { height: 500px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); padding: 24px 0; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 16px; padding-bottom: 74px; }
  .container { width: calc(100% - 44px); }
  .section { padding: 68px 0; }
  .hide-small, .utility-inner span:nth-child(1) { display: none; }
  .utility-inner { justify-content: center; }
  .nav-inner { min-height: 74px; }
  .brand small { display: none; }
  .brand-logo { width: 54px; height: 54px; }
  h1 { font-size: clamp(2.25rem, 10vw, 2.85rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 2.3rem); }
  .hero { padding-top: 34px; }
  .hero-grid { display: flex; flex-direction: column; }
  .hero-media { order: -1; width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-media { min-height: auto; }
  .hero-media::before { inset: 40px 0 40px 28px; }
  .hero-image-main { width: 100%; height: 300px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .image-stack { min-height: 480px; }
  .primary-photo { width: 86%; }
  .secondary-photo { width: 52%; bottom: 24px; }
  .service-grid, .dual-panels, .timeline, .feature-grid, .gallery-grid, .video-grid, .area-list, .form-row, fieldset, .footer-grid { grid-template-columns: 1fr; }
  .image-panel { min-height: 390px; }
  .image-panel div { padding: 28px; }
  .feature, .feature:nth-child(2n), .feature:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature:last-child { border-bottom: 0; }
  .gallery-grid { grid-auto-rows: 280px; }
  .gallery-item.large { grid-row: span 1; }
  .testimonial-shell { grid-template-columns: 1fr; }
  .testimonial-prev, .testimonial-next { display: none; }
  .testimonial { padding: 28px; }
  .map-card { min-height: 330px; }
  .video-card iframe { height: 520px; }
  .quote-form { padding: 22px; }
  .cta-card { padding: 24px; }
  .cta-actions .button { width: 100%; }
  .footer-bottom { flex-direction: column; }
  .lightbox { padding: 84px 22px; }
  .lightbox-prev, .lightbox-next { top: auto; bottom: 22px; }
  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 130;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10px max(12px, env(safe-area-inset-left)) max(10px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-right));
    gap: 10px;
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }
  .mobile-sticky a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius);
    background: var(--navy);
    color: white;
    font-weight: 850;
  }
  .mobile-sticky a:nth-child(2) { background: var(--blue); }
}
