:root {
  --dark: #181715;
  --ink: #181715;
  --body: #3f3b35;
  --muted: #6d675f;
  --border: #e2dfdb;
  --line: #e2dfdb;
  --off: #f6f5f3;
  --soft: #f6f5f3;
  --white: #fff;
  --blue: #1a56db;
  --blue-dark: #1344b8;
  --blue-bg: #eef3fd;
  --orange: #a86418;
  --red: #1a56db;
  --green: #14803c;
  --amber: #b7791f;
  --shadow: 0 8px 24px rgba(24, 23, 21, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  z-index: 1000;
}
.skip-link:focus { top: 12px; }
.top-strip {
  display: none;
  background: var(--blue);
  color: rgba(255,255,255,.86);
  font-size: 13px;
}
.top-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.top-strip a { color: #fff; font-weight: 800; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}
.brand img { width: 178px; height: 80px; object-fit: contain; object-position: left center; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links > a, .nav-service-link {
  padding: 7px 13px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.nav-links > a:hover, .nav-links > a[aria-current="page"], .nav-service-link:hover, .nav-service-link[aria-current="page"] { background: var(--off); color: var(--ink); }
.nav-item { position: relative; }
.nav-service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-chevron {
  width: 13px;
  height: 13px;
}
.services-dropdown {
  position: fixed;
  left: 50vw;
  top: 104px;
  width: min(940px, calc(100vw - 56px));
  max-height: calc(100vh - 148px);
  overflow-y: auto;
  transform: translateX(-50%);
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(24, 23, 21, .12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .14s ease, visibility .14s ease;
}
.services-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -15px;
  height: 15px;
}
.nav-services:hover .services-dropdown,
.nav-services:focus-within .services-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.services-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 22px;
}
.services-dropdown-section strong,
.mobile-service-group strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.services-dropdown-section a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  border-top: 1px solid transparent;
  border-bottom: 1px solid var(--line);
  color: var(--body);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 650;
}
.services-dropdown-section a:hover {
  color: var(--blue);
}
.nav-actions { display: flex; align-items: center; gap: 8px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.menu-toggle span { position: relative; }
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 10px 24px 20px;
}
.mobile-menu.open {
  display: grid;
  max-height: calc(100vh - 94px);
  overflow-y: auto;
}
.mobile-menu a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
  color: var(--ink);
}
.mobile-service-group {
  display: grid;
  gap: 14px;
  padding: 14px 0 16px;
  border-bottom: 1px solid var(--line);
}
.mobile-service-group a {
  padding: 0;
  border-bottom: 0;
}
.mobile-service-group strong { margin-bottom: 7px; }
.mobile-service-section {
  display: grid;
  gap: 8px;
}
.mobile-service-section a {
  color: var(--body);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
}
.btn svg { flex: 0 0 auto; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(26, 86, 219, .18); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { background: var(--off); border-color: rgba(26,86,219,.3); color: var(--ink); }
.btn-light { background: #fff; color: var(--blue); }
.btn-dark { background: var(--ink); color: #fff; }
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  min-height: auto;
  padding: 76px 56px 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .78fr);
  gap: 52px;
  align-items: center;
}
.hero-inner.compact { padding-top: 58px; padding-bottom: 58px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--off);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
}
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  margin: 16px 0 16px;
  color: var(--ink);
  font-size: clamp(36px, 4.7vw, 62px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.hero-copy {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.62;
}
.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  min-width: 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 30px;
}
.trust-pill {
  min-height: 74px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--off);
}
.trust-pill strong { display: block; color: var(--ink); font-size: 14px; margin-bottom: 3px; }
.trust-pill span { color: var(--muted); font-size: 12px; line-height: 1.35; }
.hero-right { display: flex; align-items: center; justify-content: center; }
.hero-stats-card {
  width: min(100%, 430px);
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.hero-stats-card .card-title { font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.hero-stats-card .card-sub { font-size: 13px; color: var(--body); margin-bottom: 20px; line-height: 1.5; }
.stats-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.stats-2x2 .sp {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  min-height: 88px;
}
.stats-2x2 .sp .v { font-size: 27px; font-weight: 900; color: var(--ink); line-height: 1; margin-bottom: 6px; }
.stats-2x2 .sp .l { font-size: 12px; color: var(--body); line-height: 1.35; }
.hero-stats-card .book-btn { width: 100%; }
.hero-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  border: 1px solid var(--line);
}
.hero-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display: grid;
  gap: 2px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.8);
}
.media-badge strong { color: var(--ink); font-size: 14px; }
.media-badge span { color: var(--muted); font-size: 12px; }
.section {
  padding: 76px 56px;
  border-bottom: 1px solid var(--line);
}
.section-alt { background: var(--soft); }
.section-dark { background: var(--dark); color: #fff; }
.section-inner { max-width: 1300px; margin: 0 auto; }
.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}
.section-kicker {
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  margin-bottom: 8px;
}
h2 {
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head p, .lead {
  color: var(--body);
  font-size: 17px;
  line-height: 1.65;
}
.section-dark p { color: rgba(255,255,255,.76); }
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}
.card h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.card p { color: var(--body); line-height: 1.6; margin-bottom: 0; }
.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-bg);
  color: var(--blue);
  margin-bottom: 14px;
}
.card-red .card-icon, .card-orange .card-icon { background: var(--blue-bg); color: var(--blue); }
.link-card {
  display: flex;
  flex-direction: column;
  min-height: 182px;
}
.link-card a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 900;
  font-size: 14px;
}
.feature-list, .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.feature-list li, .check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  line-height: 1.55;
}
.feature-list svg, .check-list svg { color: var(--green); margin-top: 2px; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: 36px;
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(320px, .82fr) minmax(0, 1fr); }
.split-media {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  background: #fff;
}
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.cta-band {
  background: var(--blue);
  color: #fff;
  padding: 42px 24px;
}
.cta-band-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band h2 { color: #fff; font-size: clamp(26px, 3vw, 38px); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.86); margin-bottom: 0; line-height: 1.6; }
.cta-band .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.cta-band .btn-light { background: #fff; color: var(--blue); border-color: #fff; }
.quote-panel, .form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--off);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  overflow: hidden;
}
.quote-head {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.quote-head h2, .quote-head h3 { color: var(--ink); font-size: 19px; line-height: 1.25; margin-bottom: 5px; }
.quote-head p { color: var(--muted); margin-bottom: 0; line-height: 1.5; }
.quote-form {
  padding: 18px 20px 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { margin-bottom: 12px; }
.fg label {
  display: block;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 5px;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
}
.fg textarea { min-height: 104px; resize: vertical; }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.11);
}
.quote-form .btn { width: 100%; }
.form-note { color: var(--muted); font-size: 12px; line-height: 1.45; margin: 10px 0 0; text-align: center; }
.hidden-field { display: none; }
.faq-list {
  display: grid;
  gap: 10px;
}
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0;
}
summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}
details p {
  margin: 0;
  padding: 0 20px 18px;
  line-height: 1.65;
}
.pricing-callout {
  border-left: 4px solid var(--orange);
  background: #fff8ed;
  border-radius: 8px;
  padding: 18px 20px;
  margin: 20px 0;
}
.pricing-callout strong { color: var(--ink); }
.reviews-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.stars { color: var(--amber); letter-spacing: 0; font-size: 15px; }
.reviews-head { text-align: center; max-width: 760px; margin: 0 auto 30px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.rev-card, .review-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
}
.rev-card p, .review-card p { color: var(--ink); font-size: 13px; line-height: 1.62; margin-bottom: 14px; }
.review-label { color: var(--blue); font-size: 10px; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; }
.review-name { color: var(--ink); font-size: 13px; font-weight: 900; }
.review-meta { color: var(--muted); font-size: 11px; margin-top: 3px; }
.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-links a {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 750;
  font-size: 13px;
}
.service-group-card {
  padding: 26px;
}
.service-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}
.service-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
}
.service-link-list a:hover {
  color: var(--blue);
}
.service-link-list svg {
  flex: 0 0 auto;
  color: var(--muted);
}
.booking-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.booking-placeholder {
  min-height: 460px;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
  background: var(--soft);
}
.booking-frame {
  width: 100%;
  min-height: 680px;
  border: 0;
  display: block;
}
.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}
.map-placeholder {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
}
.map-placeholder strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  margin-bottom: 6px;
}
.map-placeholder p { margin-bottom: 16px; }
.service-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 720px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #111827;
  box-shadow: var(--shadow);
}
.media-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin-top: 10px;
}
.footer {
  background: var(--dark);
  color: #fff;
  padding: 56px 56px 90px;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { width: 192px; height: 78px; object-fit: contain; object-position: left center; margin-bottom: 10px; }
.footer p { color: rgba(255,255,255,.82); line-height: 1.62; font-size: 13px; }
.footer h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11px;
  margin: 0 0 12px;
}
.footer a {
  display: block;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 8px;
}
.footer a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}
.sticky-mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 9px 12px;
  gap: 8px;
}
.sticky-mobile-cta .btn { flex: 1; min-height: 42px; }
@media (max-width: 1040px) {
  .nav-links, .nav-actions .btn-outline { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-inner, .split, .split.reverse { grid-template-columns: 1fr; }
  .trust-row, .grid-4, .reviews-row, .reviews-grid, .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-media { max-width: 620px; }
}
@media (max-width: 720px) {
  .top-strip-inner { display: grid; justify-content: stretch; gap: 4px; padding: 7px 16px; }
  .nav { padding: 0 16px; min-height: 94px; }
  .brand img { width: 154px; height: 70px; }
  .nav-actions .btn-primary { display: none; }
  .hero-inner { min-height: auto; padding: 40px 16px 34px; gap: 24px; }
  h1 { font-size: 32px; line-height: 1.08; }
  .hero-copy, .section-head p, .lead { font-size: 15px; line-height: 1.62; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; padding-left: 12px; padding-right: 12px; }
  .trust-row, .grid-2, .grid-3, .grid-4, .reviews-row, .reviews-grid, .footer-top, .form-row { grid-template-columns: 1fr; }
  .service-link-list { grid-template-columns: 1fr; }
  .service-group-card { padding: 20px; }
  .section { padding: 50px 16px; }
  .photo-grid { grid-template-columns: 1fr; }
  .cta-band-inner { display: grid; }
  .cta-band { padding: 34px 16px; }
  .footer { padding: 42px 16px 88px; }
  .footer-bottom { display: grid; }
  .sticky-mobile-cta { display: flex; }
}
