:root {
  --ink: #1c2430;
  --ink-soft: #5b6573;
  --teal: #147a84;
  --teal-deep: #0e5c64;
  --teal-bright: #1b93a0;
  --sky: #e8f4f6;
  --paper: #ffffff;
  --mist: #f4f7f8;
  --line: #dce4e7;
  --shadow: 0 14px 36px rgba(20, 122, 132, 0.14);
  --sans: "Manrope", "Segoe UI", sans-serif;
  --display: "Outfit", "Segoe UI", sans-serif;
  --max: 1160px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }
a:hover { color: var(--teal-deep); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--paper);
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}
.brand img { width: 52px; height: auto; }
.brand-name {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.brand-place {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 650;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 650;
  font-size: 0.95rem;
}

.nav a[aria-current="page"] { color: var(--teal); }

.nav-group { position: relative; }
.nav-group summary {
  list-style: none;
  cursor: pointer;
  font-weight: 650;
  font-size: 0.95rem;
}
.nav-group summary::-webkit-details-marker { display: none; }
.nav-group[open] .submenu,
.nav-group:hover .submenu { display: grid; }
.submenu {
  display: none;
  position: absolute;
  top: 1.6rem;
  left: 0;
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.55rem;
  z-index: 20;
}
.submenu a {
  padding: 0.5rem 0.65rem;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 50px;
  padding: 0.85rem 1.45rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 22px rgba(20, 122, 132, 0.28);
}
.btn-primary:hover { background: var(--teal-deep); color: #fff; }
.btn-ghost {
  background: #fff;
  color: var(--teal-deep);
  border-color: #fff;
}
.btn-ghost:hover { background: var(--sky); color: var(--teal-deep); }
.btn-outline {
  border-color: var(--teal);
  color: var(--teal-deep);
  background: transparent;
}
.btn-outline:hover { background: var(--sky); color: var(--teal-deep); }
.btn-phone {
  background: var(--teal-bright);
  color: #fff;
  min-height: 46px;
  padding: 0.7rem 1.05rem;
  box-shadow: none;
}
.btn-phone:hover { background: var(--teal-deep); color: #fff; }

.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(84vh, 780px);
  color: #fff;
  display: grid;
  align-items: center;
  overflow: hidden;
  text-align: center;
}
.hero-video,
.hero-fallback,
.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-fallback { display: none; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 28, 36, 0.28) 0%, rgba(12, 28, 36, 0.52) 100%);
}
.hero .wrap {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}
.hero-copy {
  padding: 6.2rem 0 4.2rem;
  max-width: 46rem;
  margin-inline: auto;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 750;
  color: #dff3f5;
}
h1, h2, h3, .serif { font-family: var(--display); letter-spacing: -0.03em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.3rem); line-height: 1.05; margin: 0.4rem 0 0.85rem; font-weight: 650; }
h2 { font-size: clamp(1.85rem, 3vw, 2.65rem); line-height: 1.15; margin: 0 0 0.8rem; font-weight: 650; }
h3 { font-size: 1.32rem; margin: 0 0 0.4rem; font-weight: 650; }
.lede { font-size: 1.16rem; max-width: 40rem; color: inherit; }
.hero .lede { color: #eef6f7; margin-inline: auto; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.55rem;
}
.hero .cta-row { justify-content: center; }

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--mist);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.facts div {
  padding: 1.25rem 1.4rem;
  border-right: 1px solid var(--line);
}
.facts strong { display: block; font-family: var(--display); font-size: 1.15rem; color: var(--teal-deep); }
.facts span { color: var(--ink-soft); font-size: 0.92rem; }

.section { padding: 4.6rem 0; }
.section-tight { padding: 3rem 0; }
.bg-paper { background: var(--paper); }
.bg-mist { background: var(--mist); }
.bg-spruce,
.bg-teal {
  background: var(--teal);
  color: #fff;
}
.bg-teal a { color: #e8fbff; }

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  color: var(--teal);
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.service-list {
  display: grid;
  gap: 1rem;
}
.service-row {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
}
.service-row:hover { border-color: #b7d5d8; box-shadow: var(--shadow); }
.service-row img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}
.service-row h3 { margin: 0 0 0.25rem; }
.service-row p { margin: 0; color: var(--ink-soft); }
.service-row .go {
  font-weight: 750;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.photo-break {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.split img { width: 100%; height: 100%; object-fit: cover; }
.split-copy { padding: 3.4rem; display: flex; flex-direction: column; justify-content: center; }

.towns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.towns span {
  border: 1px solid var(--line);
  padding: 0.45rem 0.8rem;
  background: var(--mist);
  border-radius: 999px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-weight: 750;
  font-size: 1.05rem;
  min-height: 44px;
}
.faq p { color: var(--ink-soft); }

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.4rem;
  border-radius: 12px;
}
.card time { color: var(--ink-soft); font-size: 0.88rem; }

.form {
  display: grid;
  gap: 0.85rem;
  max-width: 640px;
}
label { font-weight: 700; display: grid; gap: 0.35rem; }
input, textarea, select {
  font: inherit;
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 48px;
  border-radius: 8px;
}
textarea { min-height: 140px; resize: vertical; }
.form-note { color: var(--ink-soft); font-size: 0.92rem; }
.form-status[hidden] { display: none; }
.form-status { color: var(--teal-deep); font-weight: 700; }

.prose { max-width: 46rem; }
.prose p { color: var(--ink-soft); }
.prose ul { color: var(--ink-soft); padding-left: 1.15rem; }

.page-hero {
  padding: 4.2rem 0 2.2rem;
  background: var(--mist);
}
.crumbs { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0.8rem; }
.crumbs a { color: inherit; }

.site-footer {
  background: #12343a;
  color: #d5e6e8;
  padding: 3rem 0 1.6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
.site-footer a { color: #eef8f9; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer h2 { font-size: 1.05rem; color: #fff; }
.legal {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #9fb4b8;
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    display: none;
    position: absolute;
    inset: 80px 0 auto 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.4rem;
    border-bottom: 1px solid var(--line);
    gap: 0.7rem;
  }
  body.nav-open .nav { display: flex; }
  .submenu { position: static; box-shadow: none; border: 0; padding-left: 0.4rem; }
  .facts, .intro-grid, .service-row, .split, .cards, .footer-grid {
    grid-template-columns: 1fr;
  }
  .service-row img { height: 200px; }
  .split-copy { padding: 2rem 1.25rem; }
  .facts div { border-right: 0; border-bottom: 1px solid var(--line); }
  .btn-phone { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-fallback { display: block; }
  .btn { transition: none; }
  .btn:hover { transform: none; }
}
