:root {
  --navy: #050505;
  --navy-soft: #161616;
  --evergreen: #0b2734;
  --green: #0d3541;
  --leaf: #126d78;
  --sky: #5fd2dc;
  --sky-deep: #2aaab9;
  --sky-ink: #126d78;
  --logo-navy: #050832;
  --sun: #0d3541;
  --flower: #050832;
  --sun-soft: rgba(5, 8, 50, 0.1);
  --flower-soft: rgba(13, 53, 65, 0.1);
  --evergreen-soft: rgba(23, 60, 43, 0.1);
  --sky-soft: rgba(95, 210, 220, 0.18);
  --sky-line: rgba(42, 170, 185, 0.18);
  --sky-glow: rgba(42, 170, 185, 0.2);
  --paper: #ffffff;
  --cream: #ffffff;
  --stone: #e8e8df;
  --ink: #080808;
  --muted: #3f3f3f;
  --white: #ffffff;
  --line: rgba(0, 0, 0, 0.14);
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.11);
  --shadow-deep: 0 34px 90px rgba(0, 0, 0, 0.2);
  --brand-stripe: linear-gradient(90deg, var(--logo-navy), #0d3541 48%, var(--sky-ink) 100%);
  --brand-dark-gradient: linear-gradient(135deg, var(--logo-navy), #0d3541 52%, var(--evergreen));
  --font-sans: "Instrument Sans", Arial, sans-serif;
  --font-display: "Instrument Sans", Arial, sans-serif;
  --radius: 3px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

section[id],
footer[id] {
  scroll-margin-top: 116px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  font-family: var(--font-sans);
  background:
    linear-gradient(90deg, rgba(95, 210, 220, 0.11), rgba(95, 210, 220, 0) 31%),
    radial-gradient(circle at 16% 0%, rgba(95, 210, 220, 0.14), rgba(95, 210, 220, 0) 33%),
    linear-gradient(180deg, rgba(5, 8, 50, 0.985), rgba(4, 14, 32, 0.96)),
    var(--brand-dark-gradient);
  border-bottom: 1px solid rgba(95, 210, 220, 0.28);
  box-shadow:
    0 18px 48px rgba(5, 8, 50, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background:
    linear-gradient(90deg, rgba(95, 210, 220, 0.11), rgba(95, 210, 220, 0) 31%),
    radial-gradient(circle at 16% 0%, rgba(95, 210, 220, 0.14), rgba(95, 210, 220, 0) 33%),
    linear-gradient(180deg, rgba(5, 8, 50, 0.985), rgba(4, 14, 32, 0.96)),
    var(--brand-dark-gradient);
  border-bottom: 1px solid rgba(95, 210, 220, 0.28);
  box-shadow:
    0 18px 48px rgba(5, 8, 50, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
}

.site-header.is-scrolled .site-nav {
  background:
    linear-gradient(135deg, rgba(95, 210, 220, 0.16), rgba(255, 255, 255, 0.018) 45%),
    rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 42px rgba(0, 0, 0, 0.18);
}

.site-header.is-scrolled .brand img {
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.34));
}

.site-header.is-scrolled .site-nav > a,
.site-header.is-scrolled .nav-trigger {
  color: rgba(255, 255, 255, 0.9);
}

.site-header.is-scrolled .site-nav > a:hover,
.site-header.is-scrolled .nav-trigger:hover,
.site-header.is-scrolled .nav-group.open > .nav-trigger,
.site-header.is-scrolled .nav-group:focus-within > .nav-trigger {
  color: var(--white);
  background: rgba(255, 255, 255, 0.105);
  box-shadow: inset 0 0 0 1px rgba(95, 210, 220, 0.24);
}

.site-header.is-scrolled .menu-toggle {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(95, 210, 220, 0.28);
}

.site-header.is-scrolled .menu-toggle span {
  background: var(--white);
}

.site-header.nav-open {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(5, 8, 50, 0.12);
  box-shadow: 0 14px 42px rgba(5, 8, 50, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(130%);
}

.site-header.nav-open .site-nav > a,
.site-header.nav-open .nav-trigger {
  color: rgba(5, 8, 50, 0.86);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 1.4vw, 20px);
  width: min(1340px, calc(100% - clamp(28px, 6vw, 96px)));
  min-height: 112px;
  margin: 0 auto;
  padding: 12px 0;
}

.brand {
  order: 1;
  display: inline-grid;
  width: clamp(78px, 5.6vw, 92px);
  min-height: 78px;
  place-items: center;
  flex: 0 0 auto;
  margin-right: auto;
}

.brand img {
  width: min(100%, 92px);
  max-height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(5, 8, 50, 0.22));
}

.header-phone {
  order: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 17px;
  color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(135deg, rgba(95, 210, 220, 0.13), rgba(255, 255, 255, 0.025) 55%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 16px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px) saturate(126%);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.header-phone::before {
  margin-right: 9px;
  color: rgba(95, 210, 220, 0.9);
  content: "Call";
}

.header-phone:hover {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(95, 210, 220, 0.18), rgba(255, 255, 255, 0.04) 55%),
    rgba(255, 255, 255, 0.09);
  border-color: rgba(95, 210, 220, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 18px 38px rgba(0, 0, 0, 0.18);
}

.site-nav {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  min-height: 58px;
  padding: 6px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(95, 210, 220, 0.16), rgba(255, 255, 255, 0.018) 45%),
    rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(126%);
}

.site-nav > a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.site-nav > a:focus,
.nav-trigger:focus,
.dropdown-column a:focus,
.dropdown-cta:focus {
  outline: none;
}

.site-nav > a:focus-visible,
.nav-trigger:focus-visible,
.dropdown-column a:focus-visible,
.dropdown-cta:focus-visible {
  outline: 2px solid rgba(42, 170, 185, 0.44);
  outline-offset: 3px;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-trigger:hover,
.nav-group.open > .nav-trigger,
.nav-group:focus-within > .nav-trigger {
  color: var(--white);
  background: rgba(255, 255, 255, 0.115);
  box-shadow:
    inset 0 0 0 1px rgba(95, 210, 220, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-trigger::after {
  width: 7px;
  height: 7px;
  margin-left: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.site-nav > .nav-cta {
  color: var(--logo-navy) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 251, 252, 0.96)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 14px 30px rgba(5, 8, 50, 0.2) !important;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nav-group {
  position: relative;
}

.nav-group::after {
  position: absolute;
  top: 100%;
  right: -8px;
  left: -8px;
  height: 18px;
  content: "";
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 20;
  width: min(620px, calc(100vw - 48px));
  padding: 0;
  overflow: hidden;
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(248, 252, 252, 0.995));
  border: 1px solid rgba(5, 8, 50, 0.18);
  border-radius: var(--radius);
  box-shadow:
    0 36px 96px rgba(5, 8, 50, 0.24),
    0 14px 32px rgba(5, 8, 50, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown::before {
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--logo-navy), #0d3541 52%, var(--sky));
  content: "";
}

.site-nav > .nav-group.nav-group-about .dropdown {
  right: 0;
  left: auto;
}

.about-dropdown {
  width: min(410px, calc(100vw - 48px));
}

.about-dropdown .dropdown-grid {
  grid-template-columns: 1fr;
  padding-top: 16px;
}

.about-dropdown .dropdown-column + .dropdown-column {
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}

@media (max-width: 1320px) and (min-width: 981px) {
  .header-phone {
    min-height: 44px;
    padding-inline: 13px;
    font-size: 0.68rem;
  }

  .header-phone::before {
    margin-right: 7px;
  }

  .dropdown {
    width: min(510px, calc(100vw - 48px));
  }

  .about-dropdown {
    width: min(390px, calc(100vw - 48px));
  }

  .dropdown-grid {
    padding-inline: 22px;
  }

  .dropdown-column + .dropdown-column {
    margin-left: 18px;
    padding-left: 18px;
  }

  .dropdown-column a {
    padding-right: 24px;
    font-size: 0.84rem;
  }
}

@media (max-width: 1160px) and (min-width: 981px) {
  .header-phone {
    display: none;
  }
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown,
.nav-group.open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-intro {
  margin: 0;
  padding: 24px 28px 20px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 8%, rgba(95, 210, 220, 0.18), rgba(95, 210, 220, 0) 35%),
    linear-gradient(135deg, var(--logo-navy), #0d3541 72%, #06141c);
  border-bottom: 1px solid rgba(5, 8, 50, 0.12);
}

.dropdown-intro span,
.dropdown-label,
.local-area-panel > span,
.gallery-card span {
  display: block;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dropdown-intro span {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.dropdown-intro p {
  width: min(470px, 100%);
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.6;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 20px 28px 16px;
}

.dropdown-column {
  display: grid;
  align-content: start;
  gap: 0;
}

.dropdown-column + .dropdown-column {
  margin-left: 24px;
  padding-left: 24px;
  border-left: 1px solid rgba(5, 8, 50, 0.11);
}

.dropdown-label {
  margin-bottom: 12px;
  color: var(--logo-navy);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.dropdown-column a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 30px 0 11px;
  color: rgba(8, 8, 8, 0.82);
  background: transparent;
  border-top: 1px solid rgba(5, 8, 50, 0.075);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 0.89rem;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.28;
  transition: color 160ms ease, padding 160ms ease, background 160ms ease;
}

.dropdown-column a:first-of-type {
  border-top-color: rgba(5, 8, 50, 0.13);
}

.dropdown-column a::after {
  position: absolute;
  right: 2px;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  opacity: 0.36;
  transform: rotate(45deg);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown-column a:hover {
  color: var(--logo-navy);
  padding-left: 16px;
  background:
    linear-gradient(90deg, rgba(95, 210, 220, 0.12), rgba(255, 255, 255, 0));
}

.dropdown-column a[aria-current="page"] {
  color: var(--logo-navy);
  background:
    linear-gradient(90deg, rgba(95, 210, 220, 0.14), rgba(255, 255, 255, 0));
}

.dropdown-column a:hover::after {
  opacity: 0.75;
  transform: translateX(2px) rotate(45deg);
}

.dropdown-cta,
.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dropdown-cta {
  width: 100%;
  min-height: 56px;
  justify-content: space-between;
  margin-top: 4px;
  padding: 0 28px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(95, 210, 220, 0.14), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, var(--logo-navy), #0d3541 80%);
  border-top: 1px solid rgba(5, 8, 50, 0.12);
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.dropdown-cta::after {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  opacity: 0.55;
  transform: rotate(45deg);
}

.menu-toggle,
.mobile-nav-brand,
.mobile-menu-contact {
  display: none;
}

.mobile-nav-brand img {
  max-height: 128px;
  object-fit: contain;
}

.mobile-menu-phone {
  display: inline-flex;
  width: max-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin: 14px auto 0;
  padding: 0 16px;
  color: var(--logo-navy);
  background: linear-gradient(135deg, var(--white), #c5fbfd);
  border: 1px solid rgba(95, 210, 220, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.path-card:hover,
.service-page-card:hover,
.area-card:hover {
  transform: translateY(-3px);
}

.button.primary {
  color: var(--white);
  background: var(--brand-dark-gradient);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 42px rgba(5, 8, 50, 0.28);
}

.button.primary:hover {
  background: linear-gradient(135deg, #071044, #0d3541 62%, #126d78);
  box-shadow: 0 22px 52px rgba(5, 8, 50, 0.34);
}

.button.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(42, 170, 185, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.section,
.service-section,
.area-directory,
.area-content,
.area-answer-section,
.area-details,
.area-faq-section,
.area-nearby,
.area-cta {
  padding: clamp(76px, 9vw, 132px) clamp(22px, 5vw, 76px);
}

.section-heading,
.service-section-heading {
  width: min(860px, 100%);
  margin-right: auto;
  margin-bottom: clamp(34px, 5vw, 58px);
  margin-left: auto;
  text-align: center;
}

.section-heading.centered {
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 5vw, 5.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.1rem);
}

h3 {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.28;
  text-wrap: balance;
}

p {
  color: var(--muted);
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
}

.hero-carousel,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  z-index: -3;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  animation: heroFade 18s infinite;
}

.slide-one {
  background-image: url("assets/optimized/hero-premium-front-entry.jpg");
}

.slide-two {
  background-image: url("assets/optimized/hero-premium-garden-living.jpg");
  animation-delay: 6s;
}

.slide-three {
  background-image: url("assets/optimized/hero-premium-residential-estate.jpg");
  animation-delay: 12s;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 8, 50, 0.5), rgba(5, 8, 50, 0.08) 34%, rgba(5, 8, 50, 0.62)),
    radial-gradient(circle at 49% 42%, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08) 34%, transparent 64%),
    radial-gradient(circle at 76% 68%, rgba(95, 210, 220, 0.1), rgba(95, 210, 220, 0) 34%),
    radial-gradient(circle at 18% 74%, rgba(5, 8, 50, 0.18), rgba(5, 8, 50, 0) 38%);
}

.home-hero-content {
  display: grid;
  justify-items: center;
  width: min(820px, calc(100% - 36px));
  padding-top: 80px;
  text-align: center;
}

.hero-wordmark-frame {
  position: relative;
  width: min(650px, 78vw);
  padding: 8px 10px 4px;
  isolation: isolate;
}

.hero-wordmark-frame::before {
  position: absolute;
  inset: -18px -32px -16px;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08) 45%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(ellipse at center, rgba(95, 210, 220, 0.16), rgba(95, 210, 220, 0) 68%);
  border-radius: var(--radius);
  content: "";
  filter: blur(1px);
}

.hero-wordmark {
  width: 100%;
  filter:
    drop-shadow(1px 0 0 rgba(5, 8, 50, 0.86))
    drop-shadow(-1px 0 0 rgba(5, 8, 50, 0.86))
    drop-shadow(0 1px 0 rgba(5, 8, 50, 0.86))
    drop-shadow(0 -1px 0 rgba(5, 8, 50, 0.68))
    drop-shadow(0 12px 26px rgba(0, 0, 0, 0.32));
}

.home-hero-content p {
  margin: 10px 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.neighborhood-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 74px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(95, 210, 220, 0.12), rgba(95, 210, 220, 0) 32%),
    radial-gradient(circle at 18% 50%, rgba(42, 170, 185, 0.18), rgba(42, 170, 185, 0) 38%),
    linear-gradient(90deg, rgba(5, 8, 50, 0.985), rgba(7, 16, 68, 0.96) 52%, rgba(3, 19, 28, 0.985));
  border-top: 1px solid rgba(95, 210, 220, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 -18px 48px rgba(5, 8, 50, 0.28);
  backdrop-filter: blur(14px) saturate(125%);
}

.neighborhood-strip > span {
  display: grid;
  min-width: 260px;
  height: 100%;
  padding: 0 28px;
  place-items: center;
  color: rgba(255, 255, 255, 0.94);
  background:
    linear-gradient(135deg, rgba(95, 210, 220, 0.2), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
  border-right: 1px solid rgba(95, 210, 220, 0.24);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ticker-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.ticker-row {
  display: flex;
  width: max-content;
  animation: ticker 35s linear infinite;
}

.ticker-row a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 74px;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.ticker-row a:hover {
  color: var(--white);
  background: rgba(95, 210, 220, 0.08);
}

.ticker-row a::after {
  position: absolute;
  right: -2px;
  width: 4px;
  height: 4px;
  background: var(--sky);
  border-radius: 999px;
  content: "";
  box-shadow: 0 0 16px rgba(95, 210, 220, 0.34);
  opacity: 0.62;
}

.path-section {
  position: relative;
  background:
    radial-gradient(circle at 8% 22%, rgba(5, 8, 50, 0.08), rgba(5, 8, 50, 0) 22%),
    radial-gradient(circle at 92% 18%, rgba(95, 210, 220, 0.13), rgba(95, 210, 220, 0) 24%),
    radial-gradient(circle at 50% 100%, rgba(13, 53, 65, 0.08), rgba(13, 53, 65, 0) 38%),
    linear-gradient(180deg, var(--white) 0%, #fbfdf9 48%, #f8fbf4 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.path-section::before {
  position: absolute;
  top: 0;
  right: clamp(22px, 5vw, 76px);
  left: clamp(22px, 5vw, 76px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--logo-navy), #0d3541, var(--sky-ink), transparent);
  content: "";
}

.path-section::after {
  position: absolute;
  right: clamp(22px, 5vw, 76px);
  bottom: 0;
  left: clamp(22px, 5vw, 76px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(5, 8, 50, 0.22), rgba(18, 109, 120, 0.2), transparent);
  content: "";
}

.path-section h1 {
  justify-self: center;
  width: fit-content;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.12rem, 2.85vw, 3.05rem);
  line-height: 1.04;
  text-align: center;
  white-space: nowrap;
}

.path-heading {
  display: grid;
  justify-items: center;
  width: min(1120px, 100%);
  text-align: center;
}

.path-heading p:not(.eyebrow) {
  width: min(610px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
}

.path-heading .eyebrow {
  color: var(--sky-ink);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(525px, 42vw, 590px);
  padding: clamp(248px, 22vw, 292px) 0 0;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0.94) 62%, var(--path-accent-soft) 100%),
    var(--white);
  border: 1px solid var(--path-accent-line);
  border-radius: var(--radius);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.62);
  isolation: isolate;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.path-card::before,
.path-card::after {
  position: absolute;
  content: "";
}

.path-card::before {
  inset: 0 0 auto;
  z-index: -2;
  height: clamp(236px, 21vw, 286px);
  background-image: var(--path-image);
  background-position: var(--path-image-position, center);
  background-size: cover;
  transition: transform 600ms ease;
}

.path-card:hover::before {
  transform: scale(1.04);
}

.path-card::after {
  z-index: -1;
  inset: 0 0 auto;
  height: clamp(236px, 21vw, 286px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.42)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), var(--path-image-wash), rgba(0, 0, 0, 0.12));
}

.path-card:hover {
  border-color: var(--path-accent-hover);
  box-shadow:
    0 30px 86px var(--path-accent-shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.74);
}

.residential-card {
  --path-accent: #0d3541;
  --path-accent-deep: var(--logo-navy);
  --path-accent-soft: rgba(5, 8, 50, 0.055);
  --path-accent-line: rgba(5, 8, 50, 0.17);
  --path-accent-hover: rgba(5, 8, 50, 0.28);
  --path-accent-shadow: rgba(5, 8, 50, 0.14);
  --path-image-wash: rgba(5, 8, 50, 0.18);
  --path-image: url("assets/services/optimized/client-front-foundation-mulch.jpg");
  --path-image-position: center 46%;
}

.commercial-card {
  --path-accent: var(--logo-navy);
  --path-accent-deep: var(--logo-navy);
  --path-accent-soft: rgba(5, 8, 50, 0.06);
  --path-accent-line: rgba(5, 8, 50, 0.18);
  --path-accent-hover: rgba(5, 8, 50, 0.28);
  --path-accent-shadow: rgba(5, 8, 50, 0.14);
  --path-image-wash: rgba(5, 8, 50, 0.18);
  --path-image: url("assets/services/optimized/generated-commercial-property-landscape.jpg");
  --path-image-position: center 52%;
}

.path-card span {
  position: absolute;
  top: clamp(22px, 3vw, 30px);
  left: clamp(22px, 3vw, 30px);
  z-index: 1;
  display: inline-flex;
  width: max-content;
  min-height: 34px;
  align-items: center;
  margin: 0;
  padding: 0 12px;
  color: var(--white);
  background: rgba(5, 8, 50, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path-card strong {
  position: relative;
  display: block;
  width: min(485px, calc(100% - clamp(48px, 8vw, 76px)));
  margin: clamp(26px, 3vw, 34px) auto 22px;
  padding-bottom: 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.58rem, 2.2vw, 2.16rem);
  line-height: 1.12;
}

.path-card strong::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(92px, 32%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--path-accent), transparent);
  content: "";
  transform: translateX(-50%);
}

.path-card ul {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: auto;
  margin: 0 clamp(26px, 4vw, 42px);
  padding: 0;
  color: var(--ink);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
  list-style: none;
}

.path-card li {
  position: relative;
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: 13px 14px 13px 30px;
  background: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: left;
}

.path-card li::before {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 7px;
  height: 7px;
  background: var(--path-accent);
  content: "";
  opacity: 0.9;
  transform: translateY(-50%);
}

.path-card li:nth-child(1),
.path-card li:nth-child(2) {
  border-top: 0;
}

.path-card li:nth-child(even) {
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.path-card li:nth-child(3n + 2)::before {
  background: var(--path-accent);
}

.path-card li:nth-child(3n + 3)::before {
  background: var(--path-accent);
}

.path-card em {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: calc(100% - clamp(48px, 8vw, 76px));
  min-height: 52px;
  margin: auto auto clamp(26px, 4vw, 36px);
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--path-accent-deep), var(--path-accent));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px var(--path-accent-shadow);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-card em::after {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  opacity: 0.62;
  transform: rotate(45deg);
  transition: transform 160ms ease, opacity 160ms ease;
}

.path-card:hover em::after {
  opacity: 1;
  transform: translateX(3px) rotate(45deg);
}

.local-section,
.consultation-section,
.service-intent-split,
.service-material-showcase,
.service-commercial-standard,
.service-craft-detail,
.service-winter-priority,
.service-before-after,
.service-photo-note,
.service-local,
.area-content {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
  justify-content: center;
  justify-items: stretch;
}

.local-section,
.consultation-section {
  grid-template-columns: minmax(0, 520px) minmax(0, 590px);
}

.service-intent-split,
.service-material-showcase,
.service-commercial-standard,
.service-craft-detail,
.service-winter-priority,
.service-before-after,
.service-photo-note,
.service-local,
.area-content {
  grid-template-columns: minmax(0, 530px) minmax(0, 590px);
}

.local-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(5, 8, 50, 0.07), rgba(5, 8, 50, 0) 22%),
    radial-gradient(circle at 88% 18%, rgba(95, 210, 220, 0.12), rgba(95, 210, 220, 0) 28%),
    linear-gradient(90deg, var(--white) 0%, var(--white) 55%, rgba(5, 8, 50, 0.048) 55%, rgba(95, 210, 220, 0.032) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.local-section::before {
  position: absolute;
  top: 0;
  right: clamp(22px, 5vw, 76px);
  left: clamp(22px, 5vw, 76px);
  height: 3px;
  background: var(--brand-stripe);
  content: "";
}

.local-copy {
  width: min(720px, 100%);
  justify-self: center;
}

.local-copy h2 {
  width: min(560px, 100%);
  font-size: clamp(2.1rem, 3vw, 3.45rem);
  line-height: 1.08;
}

.local-copy > p:not(.eyebrow) {
  width: min(640px, 100%);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.about-experience-line {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 18px 0;
  border-top: 3px solid var(--logo-navy);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.about-experience-line strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.05;
}

.about-experience-line span {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.about-simple-list {
  display: grid;
  gap: 0;
  margin-top: clamp(22px, 3vw, 34px);
  padding: 2px 24px;
  background:
    linear-gradient(180deg, var(--white), rgba(95, 210, 220, 0.035)),
    var(--white);
  border: 1px solid rgba(5, 8, 50, 0.12);
  border-top: 3px solid var(--logo-navy);
  box-shadow: 0 18px 52px rgba(5, 8, 50, 0.08);
}

.about-simple-list div {
  display: grid;
  grid-template-columns: minmax(116px, 0.36fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  min-height: 88px;
  padding: 20px 0;
}

.about-simple-list div + div {
  border-top: 1px solid rgba(5, 8, 50, 0.1);
}

.about-simple-list span,
.service-page-card span,
.area-card span,
.service-blueprint-grid span,
.service-flow-grid span,
.service-rhythm-timeline span,
.service-operations-grid span,
.service-season-cards span,
.service-detail-matrix span,
.service-winter-note span,
.area-details span {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 800;
}

.about-simple-list span {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 0;
  color: var(--logo-navy);
  background: transparent;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-simple-list span::before {
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 10px;
  background: var(--sky-deep);
  content: "";
}

.about-simple-list strong {
  color: var(--logo-navy);
  font-weight: 800;
}

.about-simple-list p {
  margin-bottom: 0;
  color: rgba(8, 8, 8, 0.72);
  font-size: 1rem;
  line-height: 1.58;
}

.about-photo-panel {
  display: grid;
  gap: 18px;
  width: min(590px, 100%);
  justify-self: center;
}

.about-photo-frame {
  position: relative;
  min-height: clamp(420px, 42vw, 600px);
  margin: 0;
  overflow: hidden;
  background: #f4f4ef;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.12);
}

.about-photo-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 50, 0), rgba(5, 8, 50, 0.16)),
    linear-gradient(90deg, rgba(5, 8, 50, 0.14), rgba(18, 109, 120, 0.08), rgba(5, 8, 50, 0));
  content: "";
  pointer-events: none;
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 52%;
}

.about-photo-note {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px 0 0;
  border-top: 3px solid var(--logo-navy);
}

.about-photo-note span {
  color: var(--sky-ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-photo-note p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.52;
}

@keyframes facebookReviewShellRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes facebookReviewCardRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes facebookReviewMeterFill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes facebookReviewPanelSweep {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }

  16% {
    opacity: 0.34;
  }

  44%,
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes facebookReviewPhotoDrift {
  0%,
  100% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.1) translate3d(-1.2%, -1%, 0);
  }
}

@keyframes facebookReviewMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.facebook-review-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(70px, 7vw, 108px);
  padding-bottom: clamp(72px, 7vw, 112px);
  background:
    radial-gradient(circle at 8% 10%, rgba(95, 210, 220, 0.12), rgba(95, 210, 220, 0) 22%),
    linear-gradient(180deg, var(--white) 0%, #fbfcfd 64%, rgba(5, 8, 50, 0.06) 100%);
  border-top: 1px solid rgba(5, 8, 50, 0.09);
  border-bottom: 1px solid rgba(5, 8, 50, 0.1);
  isolation: isolate;
}

.facebook-review-section::before {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 32%;
  background:
    linear-gradient(135deg, rgba(5, 8, 50, 0.08), rgba(13, 53, 65, 0.045));
  content: "";
  opacity: 0.64;
  pointer-events: none;
}

.facebook-review-section::after {
  position: absolute;
  right: clamp(-50px, 2vw, 30px);
  bottom: clamp(22px, 5vw, 72px);
  z-index: -1;
  width: clamp(260px, 26vw, 400px);
  aspect-ratio: 1;
  background: url("assets/optimized/mercer-logo.png") center / contain no-repeat;
  content: "";
  opacity: 0.034;
  pointer-events: none;
}

.reviews-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.48fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: end;
  width: min(1120px, 100%);
  margin: 0 auto 28px;
}

.reviews-intro h2 {
  max-width: 660px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 3.2vw, 3.55rem);
}

.reviews-intro p {
  margin-bottom: 0;
  color: var(--muted);
  max-width: 470px;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

.facebook-review-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(260px, 300px) minmax(0, 1fr);
  width: min(1320px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 252, 253, 0.98)),
    var(--white);
  border: 1px solid rgba(5, 8, 50, 0.16);
  border-radius: var(--radius);
  box-shadow:
    0 30px 82px rgba(5, 8, 50, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  animation: facebookReviewShellRise 700ms ease-out both;
}

.facebook-review-shell::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 4px;
  background: linear-gradient(90deg, var(--logo-navy), #0d3541 74%, var(--sky-ink));
  content: "";
}

.facebook-review-shell::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.16) 42%, transparent 72%);
  content: "";
  pointer-events: none;
  animation: facebookReviewPanelSweep 7s 900ms ease-in-out infinite;
}

.facebook-review-photo {
  position: relative;
  width: 100%;
  height: clamp(520px, 46vw, 620px);
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: var(--logo-navy);
  isolation: isolate;
}

.facebook-review-photo::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 8, 50, 0.02), rgba(5, 8, 50, 0.56)),
    linear-gradient(90deg, rgba(5, 8, 50, 0.28), rgba(18, 109, 120, 0.08));
  content: "";
  pointer-events: none;
}

.facebook-review-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 52%;
  animation: facebookReviewPhotoDrift 18s ease-in-out infinite;
}

.facebook-review-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(5, 8, 50, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px) saturate(120%);
}

.facebook-review-photo figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.facebook-review-photo figcaption strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.16rem, 1.5vw, 1.55rem);
  line-height: 1.16;
}

.facebook-review-proof {
  display: contents;
  min-width: 0;
}

.facebook-review-scorecard {
  position: relative;
  display: grid;
  min-height: 100%;
  align-content: start;
  gap: 18px;
  padding: 44px 32px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(95, 210, 220, 0.18), rgba(95, 210, 220, 0) 35%),
    linear-gradient(160deg, #0d3541 0%, var(--logo-navy) 68%, #040626 100%);
}

.facebook-review-scorecard::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  content: "";
  pointer-events: none;
}

.facebook-review-scorecard::after {
  position: absolute;
  right: -74px;
  bottom: -80px;
  width: 230px;
  aspect-ratio: 1;
  background: url("assets/optimized/mercer-logo.png") center / contain no-repeat;
  content: "";
  opacity: 0.055;
  pointer-events: none;
}

.facebook-review-score-top,
.facebook-review-lockup,
.facebook-review-scorecard p,
.facebook-review-scorecard .text-link,
.facebook-review-stars,
.facebook-review-meter {
  position: relative;
  z-index: 1;
}

.facebook-review-score-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.facebook-review-score-top > span:last-child,
.facebook-review-lockup > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.facebook-review-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: #1877f2;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.facebook-review-lockup {
  display: grid;
  gap: 8px;
}

.facebook-review-scorecard strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 3vw, 3.25rem);
  line-height: 0.98;
}

.facebook-review-stars {
  color: var(--sky);
  font-size: 1.02rem;
  letter-spacing: 0.1em;
}

.facebook-review-meter {
  overflow: hidden;
  width: min(100%, 180px);
  height: 4px;
  background: rgba(255, 255, 255, 0.16);
}

.facebook-review-meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--sky), rgba(255, 255, 255, 0.88));
  transform-origin: left;
  animation: facebookReviewMeterFill 900ms 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.facebook-review-scorecard p {
  max-width: 225px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.62;
}

.facebook-review-scorecard .text-link {
  align-self: start;
  margin-top: 10px;
  color: var(--white);
}

.facebook-review-cards {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
}

.facebook-review-marquee {
  width: min(1320px, 100%);
  margin: 14px auto 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, var(--logo-navy), #0d3541 58%, var(--logo-navy)),
    var(--logo-navy);
  border: 1px solid rgba(5, 8, 50, 0.2);
  box-shadow: 0 18px 44px rgba(5, 8, 50, 0.11);
}

.facebook-review-marquee-track {
  display: flex;
  width: max-content;
  animation: facebookReviewMarquee 28s linear infinite;
}

.facebook-review-marquee span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.facebook-review-marquee span::before {
  width: 7px;
  height: 7px;
  margin-right: 18px;
  background: var(--sky);
  content: "";
}

@media (prefers-reduced-motion: reduce) {
  .facebook-review-shell,
  .facebook-review-card,
  .facebook-review-meter span,
  .facebook-review-photo img,
  .facebook-review-marquee-track,
  .facebook-review-shell::after {
    animation: none;
  }
}

.facebook-review-card {
  position: relative;
  display: grid;
  min-height: 0;
  align-content: space-between;
  gap: 16px;
  padding: 28px clamp(26px, 4vw, 42px);
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid rgba(5, 8, 50, 0.1);
  animation: facebookReviewCardRise 700ms ease-out both;
  animation-delay: calc(120ms + (var(--review-index, 0) * 90ms));
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.facebook-review-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(90deg, var(--logo-navy), var(--sky-ink));
  content: "";
  opacity: 0.48;
}

.facebook-review-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: 0 24px 48px rgba(5, 8, 50, 0.12);
  transform: translateY(-5px);
}

.facebook-review-card.is-featured-review {
  grid-row: auto;
  padding-top: 36px;
  padding-bottom: 32px;
}

.facebook-review-card:last-child {
  border-bottom: 0;
}

.facebook-review-card + .facebook-review-card {
  border-left: 0;
}

.facebook-review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.facebook-review-card-top > span {
  padding: 7px 9px;
  color: var(--logo-navy);
  background: rgba(95, 210, 220, 0.09);
  border: 1px solid rgba(42, 170, 185, 0.17);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.facebook-review-card .facebook-review-stars {
  color: var(--sky-ink);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.facebook-review-quote-mark {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: -1;
  color: rgba(5, 8, 50, 0.035);
  font-family: var(--font-display);
  font-size: 5.4rem;
  font-weight: 800;
  line-height: 1;
}

.facebook-review-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(8, 8, 8, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.facebook-review-card.is-featured-review p {
  color: rgba(8, 8, 8, 0.82);
  font-family: var(--font-display);
  font-size: clamp(1.13rem, 1.42vw, 1.34rem);
  font-weight: 700;
  line-height: 1.48;
}

.facebook-review-card.is-supporting-review {
  gap: 14px;
}

.facebook-review-card.is-supporting-review p {
  max-width: 640px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.facebook-review-author {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.facebook-review-author > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 35% 22%, rgba(95, 210, 220, 0.35), rgba(95, 210, 220, 0) 42%),
    var(--logo-navy);
  border: 1px solid rgba(5, 8, 50, 0.18);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
}

.facebook-review-author strong,
.facebook-review-author small {
  display: block;
}

.facebook-review-author strong {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.facebook-review-author small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.local-links,
.area-links,
.service-geo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.local-links a,
.area-links a,
.service-geo-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(42, 170, 185, 0.18);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 800;
}

.local-area-panel .local-links a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.local-area-panel .local-links a:hover {
  color: var(--logo-navy);
  background: var(--sky);
  border-color: transparent;
}

.consultation-section {
  position: relative;
  align-items: start;
  grid-template-columns: minmax(0, 510px) minmax(0, 560px);
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(95, 210, 220, 0.13), rgba(95, 210, 220, 0) 24%),
    radial-gradient(circle at 88% 22%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 76% 74%, rgba(18, 109, 120, 0.16), rgba(18, 109, 120, 0) 34%),
    var(--brand-dark-gradient);
  isolation: isolate;
}

.consultation-section::before {
  position: absolute;
  top: 0;
  right: clamp(22px, 5vw, 76px);
  left: clamp(22px, 5vw, 76px);
  height: 3px;
  background: var(--brand-stripe);
  content: "";
}

.consultation-section h2,
.consultation-section .eyebrow {
  color: var(--white);
}

.consultation-section .consultation-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.consultation-form {
  display: grid;
  gap: 15px;
  width: min(560px, 100%);
  justify-self: center;
  padding: clamp(22px, 4vw, 38px);
  background: var(--white);
  border: 1px solid rgba(95, 210, 220, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(5, 8, 50, 0.22);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(95, 210, 220, 0.2);
  border-color: var(--sky-deep);
}

textarea {
  resize: vertical;
}

.service-hero,
.area-hero {
  position: relative;
  display: grid;
  min-height: clamp(560px, 54vw, 650px);
  padding: 158px clamp(22px, 5vw, 76px) 76px;
  overflow: hidden;
  align-items: end;
  isolation: isolate;
}

.service-hero::before,
.area-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 8, 50, 0.84), rgba(5, 8, 50, 0.36), rgba(5, 8, 50, 0.04)),
    radial-gradient(circle at 64% 42%, rgba(95, 210, 220, 0.16), rgba(95, 210, 220, 0) 40%),
    var(--service-hero-image, url("assets/optimized/hero-premium-front-entry.jpg"));
  background-position: var(--service-hero-position, center);
  background-size: cover;
  content: "";
}

.service-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 8, 50, 0.9) 0%, rgba(5, 8, 50, 0.66) 36%, rgba(5, 8, 50, 0.2) 72%, rgba(5, 8, 50, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 8, 50, 0.18) 0%, rgba(5, 8, 50, 0.1) 42%, rgba(5, 8, 50, 0.78) 100%),
    radial-gradient(circle at 74% 28%, rgba(95, 210, 220, 0.18), rgba(95, 210, 220, 0) 38%),
    var(--service-hero-image, url("assets/optimized/hero-premium-front-entry.jpg"));
  background-position: var(--service-hero-position, center);
  background-size: cover;
}

.service-hero::after {
  position: absolute;
  right: clamp(22px, 5vw, 76px);
  bottom: 0;
  left: clamp(22px, 5vw, 76px);
  z-index: -1;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sky-deep), rgba(255, 255, 255, 0));
  content: "";
}

.area-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 8, 50, 0.84), rgba(5, 8, 50, 0.38), rgba(5, 8, 50, 0.1)),
    radial-gradient(circle at 68% 42%, rgba(95, 210, 220, 0.16), rgba(95, 210, 220, 0) 40%),
    var(--area-hero-image, url("assets/optimized/hero-premium-garden-living.jpg"));
  background-position: var(--area-hero-position, center);
  background-size: cover;
}

.area-hub-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 8, 50, 0.84) 0%, rgba(5, 8, 50, 0.58) 42%, rgba(5, 8, 50, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 8, 50, 0.04), rgba(5, 8, 50, 0.66)),
    radial-gradient(circle at 72% 30%, rgba(95, 210, 220, 0.18), rgba(95, 210, 220, 0) 38%),
    url("assets/services/optimized/landscape-design-installation-hero-v2.jpg");
  background-position: center;
  background-size: cover;
}

.area-hub-hero::after {
  position: absolute;
  right: clamp(22px, 5vw, 76px);
  bottom: 0;
  left: clamp(22px, 5vw, 76px);
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sky-deep), rgba(255, 255, 255, 0));
  content: "";
}

.service-hero-copy,
.area-hero > div {
  width: min(760px, 100%);
}

.service-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 390px);
  gap: clamp(34px, 5vw, 78px);
  align-items: end;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.area-hub-hero > .area-hub-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  width: min(1220px, 100%);
}

.service-hero-copy {
  position: relative;
  max-width: 760px;
  padding: clamp(22px, 2.4vw, 30px) 0 0 clamp(18px, 2.2vw, 28px);
  border-left: 1px solid rgba(95, 210, 220, 0.62);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.service-hero-copy::before {
  position: absolute;
  top: 0;
  left: clamp(18px, 2.2vw, 28px);
  width: min(128px, 32%);
  height: 3px;
  background: linear-gradient(90deg, var(--sky), rgba(95, 210, 220, 0));
  content: "";
}

.service-hero-note {
  align-self: end;
  position: relative;
  overflow: hidden;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    linear-gradient(135deg, rgba(5, 8, 50, 0.86), rgba(7, 24, 37, 0.82));
  border: 1px solid rgba(95, 210, 220, 0.28);
  border-top: 3px solid rgba(95, 210, 220, 0.76);
  border-radius: var(--radius);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(122%);
}

.service-hero-note::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(95, 210, 220, 0.26);
  content: "";
}

.service-hero-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--sky);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-hero-note strong {
  display: block;
  max-width: 270px;
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 1.7vw, 1.62rem);
  font-weight: 650;
  line-height: 1.16;
}

.service-hero-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.58;
}

.service-hero-note ul {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-hero-note li {
  position: relative;
  min-height: 40px;
  padding: 12px 0 12px 18px;
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.service-hero-note li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--sky);
  content: "";
  transform: translateY(-50%);
}

.service-page .eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-page h1,
.service-page h2,
.service-page h3 {
  text-rendering: geometricPrecision;
}

.area-hub-hero-copy {
  position: relative;
  max-width: 780px;
  padding-left: clamp(18px, 2.2vw, 30px);
  border-left: 2px solid rgba(95, 210, 220, 0.76);
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.service-hero h1,
.service-hero p,
.service-hero .eyebrow,
.area-hero h1,
.area-hero p,
.area-hero .eyebrow {
  color: var(--white);
}

.service-hero p,
.area-hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.area-hub-hero h1 {
  max-width: 850px;
  font-size: clamp(3rem, 5.4vw, 5.35rem);
  line-height: 0.98;
  text-wrap: balance;
}

.area-hub-hero p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
}

.service-hero .eyebrow {
  display: inline-flex;
  width: max-content;
  margin-bottom: 16px;
  padding: 0;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.service-hero h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-family: var(--font-sans);
  font-size: clamp(2.85rem, 5vw, 4.75rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

.service-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.2vw, 1.13rem);
  font-weight: 500;
  line-height: 1.72;
}

.service-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: min(650px, 100%);
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.service-hero-meta span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.84);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-hero-meta span:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.area-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.service-hero .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.area-hub-hero .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.area-hub-note {
  padding: 26px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    rgba(5, 8, 50, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px) saturate(120%);
}

.area-hub-note span {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.area-hub-note ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-hub-note li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.48;
}

.area-hub-note li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--sky);
  content: "";
}

.service-section,
.area-directory,
.area-content,
.area-answer-section,
.area-details,
.area-faq-section,
.area-nearby,
.area-cta {
  background: var(--white);
}

.service-section:nth-of-type(even),
.area-content,
.area-answer-section,
.area-faq-section,
.area-nearby {
  background:
    linear-gradient(135deg, rgba(95, 210, 220, 0.08), rgba(255, 255, 255, 0.94) 42%, rgba(107, 179, 74, 0.07)),
    var(--white);
  border-top: 1px solid rgba(42, 170, 185, 0.13);
  border-bottom: 1px solid rgba(47, 107, 63, 0.12);
}

.service-image-panel {
  display: grid;
  min-height: 440px;
  overflow: hidden;
  place-items: end start;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(5, 8, 50, 0.08), rgba(5, 8, 50, 0.68)),
    radial-gradient(circle at 72% 24%, rgba(95, 210, 220, 0.18), rgba(95, 210, 220, 0) 40%),
    var(--service-section-image, url("assets/optimized/hero-premium-front-entry.jpg"));
  background-position: var(--service-section-position, center);
  background-size: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-image-panel span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-blueprint-grid,
.service-page-card-grid,
.service-related-card-grid,
.area-card-grid,
.service-flow-grid,
.service-rhythm-timeline,
.service-operations-grid,
.service-season-cards,
.service-detail-matrix,
.service-winter-note,
.service-faq-grid,
.area-details,
.service-standards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.service-page-card,
.service-related-card,
.area-card,
.service-blueprint-grid article,
.service-flow-grid article,
.service-rhythm-timeline article,
.service-operations-grid article,
.service-season-cards article,
.service-detail-matrix article,
.service-winter-note article,
.area-details article,
.service-standards-grid article {
  min-height: 220px;
  padding: 24px;
  background:
    linear-gradient(180deg, var(--white), rgba(95, 210, 220, 0.035)),
    var(--white);
  border: 1px solid rgba(42, 170, 185, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.06);
}

.service-page-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  padding-top: 232px;
}

.service-page-card::before,
.service-page-card::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 204px;
  content: "";
}

.service-page-card::before {
  top: 0;
  background-image: var(--service-card-image);
  background-position: var(--service-card-position, center);
  background-size: cover;
  transition: transform 600ms ease;
}

.service-page-card::after {
  top: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 50, 0.02), rgba(5, 8, 50, 0.42)),
    linear-gradient(90deg, rgba(18, 109, 120, 0.2), rgba(18, 109, 120, 0));
}

.service-page-card:hover::before {
  transform: scale(1.04);
}

.service-page-card span,
.service-page-card strong,
.service-page-card p,
.service-page-card em {
  position: relative;
  z-index: 1;
}

.service-page-card span,
.service-related-card span,
.area-card span,
.service-blueprint-grid span,
.service-flow-grid span,
.service-rhythm-timeline span,
.service-operations-grid span,
.service-season-cards span,
.service-detail-matrix span,
.service-winter-note span,
.area-details span {
  color: var(--sky-ink);
}

.area-details span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.area-details span::after {
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  background: var(--sky-deep);
  content: "";
}

.service-page-card h3,
.service-page-card strong,
.service-related-card strong,
.area-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.service-proof-row,
.service-geo-panel,
.service-local,
.service-related,
.area-cta {
  display: grid;
  gap: 24px;
  align-items: center;
  justify-content: center;
  width: min(1120px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.service-proof-row,
.service-geo-panel,
.service-local {
  grid-template-columns: minmax(0, 530px) minmax(0, 530px);
}

.service-proof-row ul,
.service-check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-proof-row li,
.service-check-list li {
  padding: 14px 16px;
  background:
    linear-gradient(90deg, rgba(95, 210, 220, 0.08), var(--white) 28%),
    var(--white);
  border: 1px solid rgba(42, 170, 185, 0.15);
  border-radius: var(--radius);
  font-weight: 800;
}

.service-simple-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 42px);
  width: min(1120px, 100%);
  margin-right: auto;
  margin-left: auto;
  background:
    linear-gradient(90deg, rgba(5, 8, 50, 0.035), rgba(5, 8, 50, 0) 30%),
    var(--white);
}

.service-copy-block h2,
.service-local h2,
.service-related h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 2.85vw, 2.95rem);
  font-weight: 600;
  line-height: 1.16;
}

.service-simple-card {
  padding: clamp(26px, 4vw, 44px);
  background: var(--white);
  border: 1px solid rgba(5, 8, 50, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 22px 62px rgba(5, 8, 50, 0.08);
}

.service-simple-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
}

.service-simple-card p {
  margin-bottom: 20px;
}

.service-simple-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-simple-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.5;
}

.service-simple-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--sky-ink);
  content: "";
}

.service-simple-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.service-simple-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--navy);
  background: rgba(95, 210, 220, 0.08);
  border: 1px solid rgba(42, 170, 185, 0.24);
  border-radius: var(--radius);
  font-weight: 800;
}

.service-premium-overview {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(340px, 590px);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 90% 14%, rgba(95, 210, 220, 0.09), rgba(95, 210, 220, 0) 30%),
    var(--white);
}

.service-scope-section {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(320px, 440px);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(5, 8, 50, 0.035), rgba(95, 210, 220, 0.035) 52%, rgba(5, 8, 50, 0.02)),
    var(--white);
  border-top: 1px solid rgba(5, 8, 50, 0.08);
  border-bottom: 1px solid rgba(5, 8, 50, 0.08);
}

.service-scope-panel h2,
.service-fit-panel h2,
.service-faq-heading h2 {
  max-width: 720px;
  font-size: clamp(1.75rem, 2.65vw, 2.75rem);
  font-weight: 600;
  line-height: 1.16;
}

.service-scope-list {
  display: grid;
  margin-top: 28px;
  padding: 2px 24px;
  background:
    linear-gradient(180deg, var(--white), rgba(95, 210, 220, 0.035)),
    var(--white);
  border: 1px solid rgba(5, 8, 50, 0.12);
  border-top: 3px solid var(--logo-navy);
  box-shadow: 0 18px 52px rgba(5, 8, 50, 0.07);
}

.service-scope-list article {
  display: grid;
  grid-template-columns: minmax(112px, 0.34fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  min-height: auto;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(5, 8, 50, 0.12);
  border-radius: 0;
  box-shadow: none;
}

.service-scope-list span {
  grid-row: 1 / span 2;
  color: var(--logo-navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-scope-list span::before {
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 10px;
  background: var(--sky-deep);
  content: "";
}

.service-scope-list h3 {
  grid-column: 2;
  margin-bottom: 6px;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.service-scope-list p {
  grid-column: 2;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
}

.service-fit-panel {
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(180deg, var(--white), rgba(95, 210, 220, 0.035)),
    var(--white);
  border: 1px solid rgba(5, 8, 50, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(5, 8, 50, 0.09);
}

.service-fit-panel ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-fit-panel li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
}

.service-fit-panel li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--sky-ink);
  content: "";
}

.service-section.service-faq-section {
  display: block;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--white) 0%, rgba(248, 252, 253, 0.96) 100%),
    var(--white);
  border-top: 1px solid rgba(5, 8, 50, 0.1);
  border-bottom: 1px solid rgba(5, 8, 50, 0.1);
}

.service-faq-heading {
  position: relative;
  width: min(820px, 100%);
  margin: 0 auto clamp(30px, 4vw, 48px);
  text-align: center;
}

.service-faq-heading::after {
  display: block;
  width: 92px;
  height: 2px;
  margin: 28px auto 0;
  background: linear-gradient(90deg, transparent, var(--sky-ink), transparent);
  content: "";
}

.service-faq-section .eyebrow {
  color: var(--sky-ink);
}

.service-faq-section h2 {
  color: var(--ink);
}

.service-faq-heading p,
.service-faq-cta p {
  color: var(--muted);
}

.service-faq-section .service-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(980px, 100%);
  margin: 0 auto;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.service-faq-item {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 253, 0.96)),
    var(--white);
  border: 1px solid rgba(5, 8, 50, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(5, 8, 50, 0.06);
}

.service-faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 22px clamp(20px, 4vw, 34px);
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.service-faq-item summary::-webkit-details-marker {
  display: none;
}

.service-faq-item summary::after {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--logo-navy), #0d3541),
    var(--logo-navy);
  content: "+";
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.service-faq-item[open] summary::after {
  background: linear-gradient(135deg, var(--logo-navy), var(--sky-ink));
  content: "-";
  transform: rotate(180deg);
}

.service-faq-item summary span {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
}

.service-faq-item p {
  margin: 0;
  padding: 0 clamp(20px, 4vw, 34px) 24px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.service-faq-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  width: min(980px, 100%);
  margin: 24px auto 0;
  padding: 0;
  background: transparent;
  border: 0;
  text-align: center;
}

.service-faq-cta .button.primary {
  color: var(--white);
  background: var(--brand-dark-gradient);
  border-color: rgba(5, 8, 50, 0.18);
  box-shadow: 0 16px 38px rgba(5, 8, 50, 0.18);
}

.service-faq-cta .button.primary:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--logo-navy), #0d3541 62%, var(--sky-ink));
  border-color: rgba(42, 170, 185, 0.34);
}

.service-faq-cta p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.service-related-services {
  background: var(--white);
  scroll-margin-top: 116px;
}

.service-related-heading {
  margin-bottom: clamp(30px, 4vw, 46px);
}

.service-related-heading h2 {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.85rem, 2.9vw, 3rem);
  line-height: 1.12;
}

.service-related-card-grid {
  gap: clamp(18px, 3vw, 28px);
}

.service-related-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: auto;
  overflow: hidden;
  padding: 0 0 26px;
  color: var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 62px rgba(5, 8, 50, 0.12);
}

.service-related-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-bottom: 1px solid rgba(5, 8, 50, 0.1);
}

.service-related-card span,
.service-related-card strong,
.service-related-card p {
  margin-right: 24px;
  margin-left: 24px;
}

.service-related-card span {
  margin-top: 22px;
  margin-bottom: 9px;
  color: var(--sky-ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-related-card strong {
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
  line-height: 1.14;
}

.service-related-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.service-hub-directory {
  background: var(--white);
}

.area-hub-overview,
.area-hub-cta {
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  justify-content: center;
  padding: clamp(76px, 9vw, 120px) clamp(22px, 5vw, 76px);
  background: var(--white);
}

.area-hub-overview {
  grid-template-columns: minmax(300px, 520px) minmax(0, 610px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.area-hub-photo {
  position: relative;
  min-height: clamp(420px, 42vw, 610px);
  margin: 0;
  overflow: hidden;
  background: #f6f7f2;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.12);
}

.area-hub-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 50, 0), rgba(5, 8, 50, 0.3)),
    linear-gradient(90deg, rgba(95, 210, 220, 0.12), rgba(95, 210, 220, 0));
  content: "";
  pointer-events: none;
}

.area-hub-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 54%;
}

.area-hub-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  min-height: 48px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(5, 8, 50, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.area-hub-overview-copy {
  max-width: 720px;
}

.area-hub-overview-copy p:not(.eyebrow) {
  max-width: 640px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.area-hub-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.area-hub-service-list a {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 0 16px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(95, 210, 220, 0.14), rgba(255, 255, 255, 0) 58%),
    var(--white);
  border: 1px solid rgba(42, 170, 185, 0.2);
  border-left: 4px solid var(--sky-deep);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.28;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.area-hub-service-list a:hover,
.area-mini-card:hover {
  border-color: rgba(42, 170, 185, 0.34);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.area-map-section {
  display: grid;
  grid-template-columns: minmax(300px, 440px) minmax(560px, 760px);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  justify-content: center;
  padding: clamp(78px, 8vw, 116px) clamp(22px, 5vw, 76px);
  scroll-margin-top: 118px;
  background:
    radial-gradient(circle at 50% 24%, rgba(95, 210, 220, 0.12), rgba(95, 210, 220, 0) 32%),
    linear-gradient(180deg, var(--white), rgba(5, 8, 50, 0.025) 52%, var(--white)),
    var(--white);
  border-top: 1px solid rgba(5, 8, 50, 0.08);
  border-bottom: 1px solid rgba(5, 8, 50, 0.08);
}

.area-map-copy {
  display: grid;
  justify-items: start;
  width: 100%;
  text-align: left;
}

.area-map-copy h2 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 3.3vw, 3.85rem);
  line-height: 1.03;
  text-wrap: balance;
}

.area-map-copy p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.72;
}

.area-map-highlights {
  display: grid;
  width: min(430px, 100%);
  margin-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(5, 8, 50, 0.12);
}

.area-map-highlights span {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  border-bottom: 1px solid rgba(5, 8, 50, 0.1);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.area-map-highlights span::after {
  width: clamp(34px, 4vw, 58px);
  height: 2px;
  background: linear-gradient(90deg, var(--logo-navy), var(--sky-deep));
  content: "";
}

.area-text-links {
  display: grid;
  gap: 0;
  width: 100%;
  margin-top: clamp(26px, 3vw, 36px);
  padding-top: 4px;
  border-top: 1px solid rgba(5, 8, 50, 0.12);
}

.area-link-group {
  display: grid;
  grid-template-columns: minmax(92px, 0.36fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(5, 8, 50, 0.1);
}

.area-link-group span {
  padding-top: 3px;
  color: var(--sky-deep);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.area-link-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
}

.area-link-group a {
  position: relative;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  font-weight: 780;
  line-height: 1.25;
  text-decoration: none;
  transition: color 160ms ease;
}

.area-link-group a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: left center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.area-link-group a:hover,
.area-link-group a:focus-visible {
  color: var(--sky-deep);
}

.area-link-group a:hover::after,
.area-link-group a:focus-visible::after {
  opacity: 0.55;
  transform: scaleX(1);
}

.area-map-card {
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: clamp(14px, 1.8vw, 20px);
  background:
    radial-gradient(circle at 18% 0%, rgba(95, 210, 220, 0.2), rgba(95, 210, 220, 0) 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02) 42%, rgba(95, 210, 220, 0.08)),
    var(--brand-dark-gradient);
  border: 1px solid rgba(95, 210, 220, 0.18);
  box-shadow:
    0 34px 90px rgba(5, 8, 50, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.area-map-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(95, 210, 220, 0.18), rgba(95, 210, 220, 0.84), rgba(255, 255, 255, 0.2));
  content: "";
}

.area-map-card-top {
  display: flex;
  gap: 22px;
  align-items: end;
  justify-content: space-between;
  padding: 10px 6px clamp(16px, 1.8vw, 22px);
  color: var(--white);
}

.area-map-card-top span {
  display: block;
  margin-bottom: 7px;
  color: rgba(95, 210, 220, 0.82);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.area-map-card-top strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.9vw, 1.88rem);
  font-weight: 850;
  line-height: 1.08;
}

.area-map-card-top p {
  margin: 0 0 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.area-map-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 251, 0.98)),
    #f7fbfc;
  border: 6px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(5, 8, 50, 0.06),
    0 20px 52px rgba(0, 0, 0, 0.18);
}

.area-map-live-frame {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 249, 0.98)),
    #f3f8f9;
}

#mercerCoverageMap {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: #f3f8f9;
}

.area-map-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(5, 8, 50, 0.48);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.area-map-live-frame .leaflet-container {
  z-index: 0;
  background: #f3f8f9;
  font-family: var(--font-sans);
}

.area-map-live-frame .leaflet-tile-pane {
  filter: saturate(0.82) contrast(1.01) brightness(1.03);
}

.area-map-live-frame .leaflet-interactive {
  outline: none;
}

.mercer-map-marker {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  background: var(--logo-navy);
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  box-shadow:
    0 8px 18px rgba(5, 8, 50, 0.28),
    0 0 0 5px rgba(95, 210, 220, 0.16),
    0 0 0 1px rgba(5, 8, 50, 0.18);
}

.mercer-map-marker.is-hub {
  width: 22px;
  height: 22px;
  background: var(--sky-ink);
  border: 4px solid var(--logo-navy);
  box-shadow:
    0 10px 24px rgba(5, 8, 50, 0.34),
    0 0 0 7px rgba(95, 210, 220, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.86);
}

.mercer-map-marker.is-kentucky {
  background: #143f51;
  box-shadow:
    0 8px 18px rgba(5, 8, 50, 0.25),
    0 0 0 5px rgba(95, 210, 220, 0.2),
    0 0 0 1px rgba(5, 8, 50, 0.16);
}

.mercer-map-tooltip {
  padding: 7px 10px;
  color: var(--logo-navy);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(5, 8, 50, 0.14);
  border-radius: 0;
  box-shadow: 0 12px 26px rgba(5, 8, 50, 0.16);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.mercer-map-tooltip.leaflet-tooltip-top::before {
  border-top-color: rgba(255, 255, 255, 0.96);
}

.area-map-frame::after {
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(5, 8, 50, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  content: "";
  pointer-events: none;
}

.area-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 16px 4px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.area-map-legend span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.area-map-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--logo-navy);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.area-map-legend .legend-kentucky {
  background: var(--sky-ink);
}

.area-map-legend .legend-route {
  width: 22px;
  height: 0;
  background: transparent;
  border: 0;
  border-top: 2px dashed rgba(255, 255, 255, 0.76);
}

.area-map-note {
  margin: 12px 4px 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.area-city-directory {
  background:
    linear-gradient(180deg, var(--white), rgba(248, 252, 253, 0.98)),
    var(--white);
}

.area-city-directory .section-heading {
  align-items: center;
  text-align: center;
}

.area-city-directory .section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin-inline: auto;
  color: rgba(8, 8, 8, 0.68);
}

.area-city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  width: min(1180px, 100%);
  margin: clamp(28px, 4vw, 46px) auto 0;
}

.area-city-group {
  position: relative;
  display: grid;
  align-content: start;
  overflow: hidden;
  padding: clamp(22px, 2.4vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 252, 253, 0.96)),
    var(--white);
  border: 1px solid rgba(5, 8, 50, 0.12);
  border-top: 4px solid var(--logo-navy);
  box-shadow:
    0 22px 64px rgba(5, 8, 50, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.area-city-group::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(95, 210, 220, 0.2);
  content: "";
  opacity: 0.72;
}

.area-city-group:hover {
  border-color: rgba(42, 170, 185, 0.28);
  box-shadow:
    0 28px 72px rgba(5, 8, 50, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.area-city-group span {
  color: var(--logo-navy);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.area-city-group p {
  margin: 12px 0 20px;
  color: rgba(8, 8, 8, 0.62);
  font-size: 0.94rem;
  line-height: 1.58;
}

.area-city-links {
  display: grid;
  gap: 8px;
}

.area-city-links a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(248, 252, 253, 0.82)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(5, 8, 50, 0.1);
  font-size: 0.95rem;
  font-weight: 780;
  line-height: 1.2;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.area-city-links a::after {
  color: var(--sky-deep);
  content: "View";
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.area-city-links a:hover,
.area-city-links a:focus-visible {
  color: var(--white);
  background: var(--logo-navy);
  border-color: rgba(5, 8, 50, 0.24);
  transform: translateY(-1px);
}

.area-city-links a:hover::after,
.area-city-links a:focus-visible::after {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 980px) {
  .area-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .area-city-grid {
    grid-template-columns: 1fr;
    width: min(100%, 354px);
  }

  .area-city-group {
    justify-items: center;
    text-align: center;
  }

  .area-map-highlights {
    margin-right: auto;
    margin-left: auto;
  }

  .area-map-highlights span {
    justify-content: center;
    text-align: center;
  }

  .area-map-highlights span::after {
    display: none;
  }

  .area-city-links {
    width: 100%;
  }

  .area-city-links a {
    justify-content: center;
    gap: 12px;
  }
}

.area-hub-directory {
  background:
    linear-gradient(180deg, var(--white), rgba(95, 210, 220, 0.045) 48%, var(--white));
}

.area-hub-directory .section-heading p:not(.eyebrow) {
  width: min(680px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.area-region-grid {
  display: grid;
  gap: 20px;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.area-region {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(42, 170, 185, 0.16);
  border-top: 4px solid var(--sky-deep);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.06);
}

.area-region-heading span {
  display: block;
  margin-bottom: 12px;
  color: var(--sky-ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.area-region-heading p {
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2vw, 1.88rem);
  line-height: 1.14;
}

.area-mini-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.area-mini-card {
  display: grid;
  min-height: 178px;
  padding: 18px;
  align-content: start;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.area-mini-card.featured {
  background:
    linear-gradient(180deg, rgba(95, 210, 220, 0.1), rgba(255, 255, 255, 0.96)),
    var(--white);
  border-color: rgba(42, 170, 185, 0.28);
}

.area-mini-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--sky-ink);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.28;
  text-transform: uppercase;
}

.area-mini-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.12;
}

.area-mini-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.48;
}

.area-hub-cta {
  grid-template-columns: minmax(0, 760px) auto;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(95, 210, 220, 0.16), rgba(255, 255, 255, 0.94) 42%, rgba(95, 210, 220, 0.08)),
    var(--white);
  border-top: 1px solid rgba(42, 170, 185, 0.18);
}

.area-hub-cta > div {
  max-width: 790px;
}

.area-hub-cta h2 {
  max-width: 780px;
  margin-bottom: 12px;
}

.area-hub-cta p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
}

.area-simple-hero {
  min-height: clamp(500px, 48vw, 570px);
}

.area-simple-hero .area-hub-hero-inner {
  grid-template-columns: minmax(0, 900px);
  width: min(1160px, 100%);
}

.area-simple-hero .area-hub-hero-copy {
  max-width: 900px;
}

.area-simple-hero h1 {
  max-width: 900px;
  font-size: clamp(3.15rem, 5.2vw, 5.4rem);
}

.area-refine-intro {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 610px);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  justify-content: center;
  padding: clamp(72px, 8vw, 112px) clamp(22px, 5vw, 76px);
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.area-refine-photo {
  position: relative;
  min-height: clamp(420px, 42vw, 590px);
  margin: 0;
  overflow: hidden;
  background: #f5f7f2;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.12);
}

.area-refine-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 50, 0), rgba(5, 8, 50, 0.28)),
    linear-gradient(90deg, rgba(95, 210, 220, 0.14), rgba(95, 210, 220, 0));
  content: "";
  pointer-events: none;
}

.area-refine-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 54%;
}

.area-refine-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(5, 8, 50, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.area-refine-copy {
  width: min(720px, 100%);
}

.area-refine-copy p:not(.eyebrow) {
  width: min(650px, 100%);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.area-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(180deg, var(--white), rgba(95, 210, 220, 0.035)),
    var(--white);
  border: 1px solid rgba(5, 8, 50, 0.12);
  border-top: 3px solid var(--logo-navy);
  box-shadow: 0 20px 58px rgba(5, 8, 50, 0.07);
}

.area-proof-grid div {
  min-height: 164px;
  padding: 22px 20px;
}

.area-proof-grid div + div {
  border-left: 1px solid rgba(0, 0, 0, 0.11);
}

.area-proof-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--logo-navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.area-proof-grid span::after {
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  background: var(--sky-deep);
  content: "";
}

.area-proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.area-location-section {
  padding: clamp(70px, 8vw, 112px) clamp(22px, 5vw, 76px);
  background:
    linear-gradient(180deg, rgba(95, 210, 220, 0.045), rgba(255, 255, 255, 0.98) 34%, rgba(95, 210, 220, 0.035) 100%),
    var(--white);
}

.area-location-intro {
  width: min(860px, 100%);
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.area-location-intro h2 {
  margin-bottom: 14px;
}

.area-location-intro p:not(.eyebrow) {
  width: min(640px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.location-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(1160px, 100%);
  margin: 0 auto 18px;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(90deg, rgba(95, 210, 220, 0.16), rgba(255, 255, 255, 0.96) 58%),
    var(--white);
  border: 1px solid rgba(42, 170, 185, 0.2);
  border-left: 5px solid var(--sky-deep);
  border-radius: var(--radius);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.07);
}

.location-feature span,
.location-group span,
.also-serving span {
  display: block;
  margin-bottom: 10px;
  color: var(--sky-ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.location-feature strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.location-feature p {
  width: min(680px, 100%);
  margin-bottom: 0;
}

.location-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(1160px, 100%);
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(42, 170, 185, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.06);
}

.location-group {
  min-height: 280px;
  padding: clamp(22px, 2.6vw, 30px);
}

.location-group + .location-group {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.location-link-list {
  display: grid;
  gap: 0;
}

.location-link-list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 18px 0 0;
  color: var(--ink);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.18;
  transition: color 160ms ease, padding 160ms ease;
}

.location-link-list a::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  opacity: 0.36;
  transform: rotate(45deg);
  transition: opacity 160ms ease, transform 160ms ease;
}

.location-link-list a:hover {
  padding-left: 6px;
  color: var(--sky-ink);
}

.location-link-list a:hover::after {
  opacity: 0.72;
  transform: translateX(3px) rotate(45deg);
}

.also-serving {
  width: min(1160px, 100%);
  margin: 22px auto 0;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(95, 210, 220, 0.08), rgba(255, 255, 255, 0.98)),
    var(--white);
  border: 1px solid rgba(42, 170, 185, 0.16);
  border-top: 4px solid var(--sky-deep);
  border-radius: var(--radius);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.055);
}

.also-serving p {
  margin-bottom: 0;
  color: var(--ink);
}

.also-serving h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.7rem);
  line-height: 1.06;
}

.expanded-location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.11);
  border-bottom: 1px solid rgba(0, 0, 0, 0.11);
}

.expanded-location-grid div {
  min-height: 176px;
  padding: 22px 20px;
}

.expanded-location-grid div + div {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.expanded-location-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.14;
}

.expanded-location-grid p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.expanded-location-note {
  width: min(800px, 100%);
  margin-top: 18px;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.area-simple-cta {
  padding-top: clamp(60px, 7vw, 90px);
  padding-bottom: clamp(60px, 7vw, 90px);
  background:
    linear-gradient(90deg, rgba(95, 210, 220, 0.14), rgba(255, 255, 255, 0.96) 50%, rgba(95, 210, 220, 0.09)),
    var(--white);
}

.area-simple-cta h2 {
  max-width: 700px;
  font-size: clamp(2.15rem, 4vw, 4rem);
}

.area-content {
  position: relative;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 88% 18%, rgba(95, 210, 220, 0.11), rgba(95, 210, 220, 0) 28%),
    linear-gradient(90deg, var(--white) 0%, var(--white) 58%, rgba(5, 8, 50, 0.035) 58%, rgba(95, 210, 220, 0.035) 100%),
    var(--white);
}

.area-content::before {
  position: absolute;
  top: clamp(42px, 6vw, 72px);
  bottom: clamp(42px, 6vw, 72px);
  left: 50%;
  z-index: -1;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 50, 0.14), transparent);
  content: "";
}

.area-main-copy {
  position: relative;
  max-width: 560px;
  padding: clamp(8px, 1vw, 14px) 0 clamp(8px, 1vw, 14px) clamp(18px, 2vw, 28px);
}

.area-main-copy::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--logo-navy), var(--sky-deep));
  content: "";
}

.area-main-copy .eyebrow {
  color: var(--sky-deep);
}

.area-main-copy h2 {
  max-width: 540px;
  margin-bottom: 20px;
  font-size: clamp(2.05rem, 3.3vw, 3.65rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.05;
}

.area-main-copy p:not(.eyebrow) {
  max-width: 530px;
  color: rgba(8, 8, 8, 0.72);
  font-size: clamp(1rem, 1.12vw, 1.08rem);
  line-height: 1.78;
}

.area-main-copy p + p {
  margin-top: 18px;
}

.area-answer-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white), rgba(248, 252, 253, 0.98)),
    var(--white);
  border-top: 1px solid rgba(5, 8, 50, 0.08);
  border-bottom: 1px solid rgba(5, 8, 50, 0.08);
}

.area-faq-section {
  position: relative;
  display: grid;
  justify-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white), rgba(248, 252, 253, 0.98)),
    var(--white);
  border-top: 1px solid rgba(5, 8, 50, 0.08);
  border-bottom: 1px solid rgba(5, 8, 50, 0.08);
}

.area-faq-section::before {
  position: absolute;
  top: 0;
  right: clamp(22px, 5vw, 76px);
  left: clamp(22px, 5vw, 76px);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--logo-navy), var(--sky-deep), transparent);
  content: "";
}

.area-faq-heading {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.area-faq-grid {
  width: min(980px, 100%);
}

.area-answer-section::before {
  position: absolute;
  top: 0;
  right: clamp(22px, 5vw, 76px);
  left: clamp(22px, 5vw, 76px);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--logo-navy), var(--sky-deep), transparent);
  content: "";
}

.area-answer-section .section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.area-answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.area-answer-grid article {
  position: relative;
  min-height: 260px;
  padding: clamp(26px, 3vw, 34px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 253, 0.96)),
    var(--white);
  border: 1px solid rgba(5, 8, 50, 0.12);
  border-top: 4px solid var(--logo-navy);
  box-shadow: 0 22px 64px rgba(5, 8, 50, 0.07);
}

.area-answer-grid article::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(42, 170, 185, 0.24);
  content: "";
}

.area-answer-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--sky-deep);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.area-answer-grid span::after {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--logo-navy), var(--sky-deep));
  content: "";
}

.area-answer-grid h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.36rem, 1.8vw, 1.72rem);
  font-weight: 650;
  line-height: 1.12;
}

.area-answer-grid p {
  max-width: 31rem;
  color: rgba(8, 8, 8, 0.68);
  font-size: 0.98rem;
  line-height: 1.68;
}

.area-sidebar {
  position: relative;
  align-self: start;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 252, 0.98)),
    var(--white);
  border: 1px solid rgba(5, 8, 50, 0.14);
  box-shadow:
    0 30px 78px rgba(5, 8, 50, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.area-sidebar::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--logo-navy), var(--sky-deep), rgba(95, 210, 220, 0.72));
  content: "";
}

.area-photo-card {
  margin: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(5, 8, 50, 0.1);
}

.area-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  object-position: var(--area-card-position, center);
}

.area-photo-card figcaption {
  padding: 22px 30px 24px;
}

.area-photo-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--sky-deep);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.area-photo-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 1.6vw, 1.48rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.12;
}

.area-photo-card p {
  margin-top: 10px;
  color: rgba(8, 8, 8, 0.66);
  font-size: 0.93rem;
  line-height: 1.58;
}

.area-sidebar > span {
  display: block;
  margin: 0;
  padding: 30px 30px 23px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(95, 210, 220, 0.16), rgba(95, 210, 220, 0) 42%),
    var(--brand-dark-gradient);
  border-bottom: 1px solid rgba(95, 210, 220, 0.2);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.area-sidebar nav {
  display: grid;
  gap: 0;
  padding: 12px 20px 20px;
}

.area-sidebar a {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 0 44px 0 20px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(5, 8, 50, 0.1);
  font-size: 0.98rem;
  font-weight: 780;
  line-height: 1.22;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, padding-left 160ms ease;
}

.area-sidebar a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--sky-deep);
  content: "";
  opacity: 0.68;
  transform: translateY(-50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.area-sidebar a::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  opacity: 0.34;
  transform: translateY(-50%) rotate(45deg);
  transition: opacity 160ms ease, right 160ms ease;
}

.area-sidebar a:last-child {
  border-bottom: 0;
}

.area-sidebar a:hover,
.area-sidebar a:focus-visible {
  padding-left: 22px;
  color: var(--sky-deep);
  background: linear-gradient(90deg, rgba(95, 210, 220, 0.09), rgba(95, 210, 220, 0));
}

.area-sidebar a:hover::before,
.area-sidebar a:focus-visible::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
}

.area-sidebar a:hover::after,
.area-sidebar a:focus-visible::after {
  right: 12px;
  opacity: 0.76;
}

.area-details {
  gap: 18px;
}

.area-details article {
  position: relative;
  min-height: 292px;
  overflow: hidden;
  padding: clamp(26px, 3vw, 34px);
  background:
    linear-gradient(180deg, var(--white), rgba(248, 252, 253, 0.98)),
    var(--white);
  border: 1px solid rgba(5, 8, 50, 0.13);
  border-top: 4px solid var(--logo-navy);
  box-shadow:
    0 24px 70px rgba(5, 8, 50, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.area-details article::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  background:
    radial-gradient(circle at 100% 0%, rgba(95, 210, 220, 0.16), rgba(95, 210, 220, 0) 44%),
    linear-gradient(180deg, rgba(5, 8, 50, 0.035), rgba(5, 8, 50, 0));
  content: "";
  pointer-events: none;
}

.area-details article::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(42, 170, 185, 0.28);
  content: "";
  opacity: 0.82;
}

.area-details span,
.area-details h3,
.area-details p {
  position: relative;
  z-index: 1;
}

.area-details span {
  color: var(--sky-deep);
  font-weight: 850;
}

.area-details span::after {
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, var(--logo-navy), var(--sky-deep));
}

.area-details h3 {
  margin: 22px 0 14px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.38rem, 1.8vw, 1.72rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.12;
}

.area-details p {
  max-width: 31rem;
  color: rgba(8, 8, 8, 0.68);
  font-size: 0.98rem;
  line-height: 1.68;
}

.area-nearby {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(95, 210, 220, 0.14), rgba(95, 210, 220, 0) 34%),
    linear-gradient(135deg, rgba(5, 8, 50, 0.035), rgba(255, 255, 255, 0.98) 42%, rgba(95, 210, 220, 0.08)),
    var(--white);
  border-top: 1px solid rgba(5, 8, 50, 0.08);
  border-bottom: 1px solid rgba(5, 8, 50, 0.08);
}

.area-nearby::before {
  position: absolute;
  inset: clamp(22px, 4vw, 48px) clamp(18px, 5vw, 76px);
  border: 1px solid rgba(5, 8, 50, 0.08);
  border-left: 3px solid rgba(5, 8, 50, 0.82);
  content: "";
  pointer-events: none;
}

.area-nearby::after {
  position: absolute;
  top: 50%;
  right: clamp(18px, 6vw, 94px);
  width: clamp(160px, 18vw, 260px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(95, 210, 220, 0.2), rgba(95, 210, 220, 0) 66%);
  content: "";
  pointer-events: none;
  transform: translateY(-50%);
}

.area-nearby-copy,
.nearby-area-grid {
  position: relative;
  z-index: 1;
}

.area-nearby-copy {
  max-width: 500px;
  justify-self: center;
  text-align: center;
}

.area-nearby .eyebrow {
  margin-bottom: 12px;
  margin-right: auto;
  margin-left: auto;
  color: var(--sky-deep);
}

.area-nearby h2 {
  max-width: 480px;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.area-nearby-copy p:not(.eyebrow) {
  max-width: 460px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(8, 8, 8, 0.66);
  font-size: clamp(0.98rem, 1.12vw, 1.06rem);
  line-height: 1.68;
}

.area-nearby-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 18px;
  color: var(--white);
  background: var(--brand-dark-gradient);
  border: 1px solid rgba(95, 210, 220, 0.28);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nearby-area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.nearby-area-card {
  position: relative;
  display: grid;
  min-height: 188px;
  align-content: end;
  overflow: hidden;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(5, 8, 50, 0.08), rgba(5, 8, 50, 0.78)),
    var(--nearby-card-image);
  background-position: var(--nearby-card-position, center);
  background-size: cover;
  border: 1px solid rgba(5, 8, 50, 0.14);
  box-shadow: 0 22px 58px rgba(5, 8, 50, 0.12);
  isolation: isolate;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nearby-area-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(95, 210, 220, 0.2), rgba(95, 210, 220, 0) 34%),
    linear-gradient(180deg, rgba(5, 8, 50, 0.02), rgba(5, 8, 50, 0.84));
  content: "";
}

.nearby-area-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nearby-area-card strong {
  max-width: 12rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.24rem, 1.7vw, 1.58rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.08;
}

.nearby-area-card em {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nearby-area-card em::after {
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  opacity: 0.58;
  transform: rotate(45deg);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nearby-area-card:hover,
.nearby-area-card:focus-visible {
  border-color: rgba(95, 210, 220, 0.5);
  box-shadow: 0 28px 70px rgba(5, 8, 50, 0.18);
  transform: translateY(-3px);
}

.nearby-area-card:hover em::after,
.nearby-area-card:focus-visible em::after {
  opacity: 1;
  transform: translateX(3px) rotate(45deg);
}

.area-cta {
  position: relative;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  grid-template-areas:
    "label copy"
    "heading copy"
    "heading action";
  gap: clamp(22px, 4vw, 50px);
  align-items: start;
  justify-items: start;
  width: min(1120px, calc(100% - 44px));
  margin: clamp(28px, 5vw, 64px) auto clamp(76px, 8vw, 120px);
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(95, 210, 220, 0.12), rgba(95, 210, 220, 0) 46%),
    radial-gradient(circle at 90% 20%, rgba(95, 210, 220, 0.18), rgba(95, 210, 220, 0) 34%),
    linear-gradient(135deg, #050832, #071825 62%, #01070d);
  border: 1px solid rgba(95, 210, 220, 0.22);
  border-top: 4px solid var(--sky-deep);
  box-shadow:
    0 30px 90px rgba(5, 8, 50, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.area-cta::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  content: "";
  pointer-events: none;
}

.area-cta::after {
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 240px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(95, 210, 220, 0.2), rgba(95, 210, 220, 0) 64%);
  content: "";
  pointer-events: none;
}

.area-cta h2,
.area-cta p,
.area-cta .eyebrow,
.area-cta .button {
  position: relative;
  z-index: 1;
}

.area-cta h2,
.area-cta p,
.area-cta .eyebrow {
  color: var(--white);
}

.area-cta .eyebrow {
  grid-area: label;
  margin-bottom: 0;
  color: var(--sky);
}

.area-cta p {
  grid-area: copy;
  align-self: end;
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.68;
}

.area-cta h2 {
  grid-area: heading;
  max-width: 640px;
  margin: 0;
  font-size: clamp(2rem, 3.25vw, 3.45rem);
  line-height: 1.02;
}

.area-cta .button {
  grid-area: action;
  justify-self: start;
  align-self: start;
  color: var(--logo-navy);
  background: linear-gradient(135deg, #d4fcff, var(--sky));
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 22px 52px rgba(95, 210, 220, 0.2);
  white-space: nowrap;
}

.area-cta .button:hover,
.area-cta .button:focus-visible {
  background: linear-gradient(135deg, var(--white), #bff8fb);
  box-shadow: 0 26px 64px rgba(95, 210, 220, 0.26);
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(360px, 570px);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  justify-content: center;
  min-height: 650px;
  padding: clamp(148px, 12vw, 184px) clamp(22px, 5vw, 76px) clamp(70px, 7vw, 100px);
  background:
    radial-gradient(circle at 12% 20%, rgba(5, 8, 50, 0.07), rgba(5, 8, 50, 0) 28%),
    radial-gradient(circle at 88% 16%, rgba(95, 210, 220, 0.12), rgba(95, 210, 220, 0) 28%),
    linear-gradient(180deg, var(--white), #fbfdfe);
  border-bottom: 1px solid rgba(5, 8, 50, 0.1);
}

.about-hero::before,
.about-standard-section::before,
.about-cta-section::before {
  position: absolute;
  top: 0;
  right: clamp(22px, 5vw, 76px);
  left: clamp(22px, 5vw, 76px);
  height: 3px;
  background: var(--brand-stripe);
  content: "";
}

.about-hero-copy {
  width: min(540px, 100%);
}

.about-hero h1 {
  max-width: 520px;
  font-size: clamp(2.45rem, 3.75vw, 4.15rem);
  line-height: 1.04;
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(8, 8, 8, 0.7);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.75;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(26px, 4vw, 38px);
}

.about-hero-media {
  display: grid;
  gap: 16px;
  width: min(590px, 100%);
}

.about-hero-frame {
  position: relative;
  height: clamp(420px, 36vw, 560px);
  margin: 0;
  overflow: hidden;
  background: var(--logo-navy);
  border: 1px solid rgba(5, 8, 50, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 28px 76px rgba(5, 8, 50, 0.14);
}

.about-hero-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 50, 0.02), rgba(5, 8, 50, 0.28)),
    linear-gradient(90deg, rgba(18, 109, 120, 0.16), rgba(18, 109, 120, 0));
  content: "";
  pointer-events: none;
}

.about-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-note {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0 0;
  border-top: 3px solid var(--logo-navy);
}

.about-hero-note span,
.about-story-card span,
.about-standard-grid span {
  display: block;
  color: var(--logo-navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.about-story-section {
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  justify-content: center;
  padding: clamp(76px, 8vw, 124px) clamp(22px, 5vw, 76px);
  background: var(--white);
}

.about-story-copy {
  width: min(610px, 100%);
}

.about-story-copy h2 {
  max-width: 610px;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.08;
}

.about-story-copy p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(8, 8, 8, 0.7);
  font-size: 1.08rem;
  line-height: 1.78;
}

.about-story-card {
  padding: clamp(26px, 4vw, 38px);
  background:
    linear-gradient(180deg, var(--white), rgba(95, 210, 220, 0.035)),
    var(--white);
  border: 1px solid rgba(5, 8, 50, 0.12);
  border-top: 3px solid var(--logo-navy);
  border-radius: var(--radius);
  box-shadow: 0 20px 58px rgba(5, 8, 50, 0.08);
}

.about-story-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.about-standard-section {
  position: relative;
  padding: clamp(76px, 8vw, 118px) clamp(22px, 5vw, 76px);
  background:
    linear-gradient(180deg, #fbfdfe, var(--white)),
    var(--white);
  border-top: 1px solid rgba(5, 8, 50, 0.1);
  border-bottom: 1px solid rgba(5, 8, 50, 0.1);
}

.about-standard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.about-standard-grid article {
  min-height: 230px;
  padding: clamp(24px, 3vw, 32px);
  background: var(--white);
  border: 1px solid rgba(5, 8, 50, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(5, 8, 50, 0.07);
}

.about-standard-grid span::after {
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 12px;
  background: var(--sky-deep);
  content: "";
}

.about-standard-grid h3 {
  margin: 24px 0 10px;
  color: var(--logo-navy);
  font-size: clamp(1.25rem, 1.8vw, 1.62rem);
  line-height: 1.12;
}

.about-standard-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.about-cta-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 660px) max-content;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  justify-content: center;
  padding: clamp(72px, 8vw, 112px) clamp(22px, 5vw, 76px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(95, 210, 220, 0.16), rgba(95, 210, 220, 0) 32%),
    linear-gradient(180deg, var(--logo-navy), #03131c);
}

.about-cta-section h2 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.05;
}

.about-cta-section p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.trust-page .about-hero {
  min-height: 610px;
}

.trust-page .about-standard-section {
  background: var(--white);
}

.trust-panel-section {
  padding: clamp(76px, 8vw, 118px) clamp(22px, 5vw, 76px);
  background:
    linear-gradient(180deg, #fbfdfe, var(--white)),
    var(--white);
  border-top: 1px solid rgba(5, 8, 50, 0.1);
}

.trust-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.48fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.trust-panel-copy h2 {
  max-width: 680px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.trust-panel-copy p {
  max-width: 650px;
  font-size: 1.04rem;
  line-height: 1.74;
}

.trust-sidebar-card {
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(180deg, var(--white), rgba(95, 210, 220, 0.04)),
    var(--white);
  border: 1px solid rgba(5, 8, 50, 0.12);
  border-top: 3px solid var(--logo-navy);
  box-shadow: 0 22px 62px rgba(5, 8, 50, 0.08);
}

.trust-sidebar-card span,
.gallery-tile span {
  display: block;
  color: var(--logo-navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.trust-sidebar-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.66;
}

.gallery-page-section {
  padding: clamp(76px, 8vw, 118px) clamp(22px, 5vw, 76px);
  background: var(--white);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.gallery-tile {
  display: grid;
  min-height: 430px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(5, 8, 50, 0.12);
  box-shadow: 0 22px 62px rgba(5, 8, 50, 0.08);
}

.gallery-tile figure {
  height: 285px;
  margin: 0;
  overflow: hidden;
  background: var(--logo-navy);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.045);
}

.gallery-tile-content {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 22px;
}

.gallery-tile h3 {
  margin: 6px 0 0;
  color: var(--navy);
  font-size: 1.22rem;
}

.gallery-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.work-hero {
  padding: clamp(148px, 15vw, 202px) clamp(22px, 5vw, 76px) clamp(58px, 7vw, 90px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), var(--white)),
    radial-gradient(circle at 50% 0, rgba(95, 210, 220, 0.16), rgba(95, 210, 220, 0) 46%);
  border-bottom: 1px solid rgba(5, 8, 50, 0.08);
  text-align: center;
}

.work-hero-inner {
  width: min(860px, 100%);
  margin: 0 auto;
}

.work-hero h1 {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.96;
  text-wrap: balance;
}

.work-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px auto 0;
  color: rgba(8, 8, 8, 0.68);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.78;
}

.work-gallery-section {
  padding: clamp(48px, 6vw, 82px) clamp(18px, 4vw, 62px) clamp(82px, 9vw, 126px);
  background: var(--white);
}

.work-gallery-shell {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.work-feature {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--logo-navy);
  border: 1px solid rgba(5, 8, 50, 0.14);
  box-shadow: 0 28px 72px rgba(5, 8, 50, 0.11);
}

.work-feature img {
  display: block;
  width: 100%;
  height: clamp(420px, 48vw, 620px);
  object-fit: cover;
  object-position: center 54%;
}

.work-feature::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 50, 0) 44%, rgba(5, 8, 50, 0.68)),
    linear-gradient(90deg, rgba(5, 8, 50, 0.16), rgba(5, 8, 50, 0));
  content: "";
  pointer-events: none;
}

.work-feature figcaption {
  position: absolute;
  right: clamp(20px, 4vw, 52px);
  bottom: clamp(20px, 4vw, 48px);
  left: clamp(20px, 4vw, 52px);
  z-index: 1;
  max-width: 680px;
  color: var(--white);
}

.work-feature figcaption span,
.work-card span {
  display: block;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-feature figcaption span {
  color: rgba(95, 210, 220, 0.94);
}

.work-card span {
  color: var(--logo-navy);
}

.work-feature figcaption strong {
  display: block;
  max-width: 620px;
  margin-top: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.7vw, 2.9rem);
  font-weight: 850;
  line-height: 1.03;
  text-wrap: balance;
}

.work-gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(18px, 3vw, 48px);
  margin: clamp(38px, 5vw, 64px) 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(5, 8, 50, 0.1);
}

.work-gallery-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 0.98;
  text-align: right;
}

.work-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.work-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(5, 8, 50, 0.12);
  box-shadow: 0 18px 48px rgba(5, 8, 50, 0.075);
}

.work-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 650ms ease;
}

.work-card:hover img {
  transform: scale(1.035);
}

.work-card div {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 18px 18px 20px;
}

.work-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.12;
}

@media (max-width: 980px) {
  .work-hero {
    padding: 136px 20px 50px;
  }

  .work-hero h1 {
    font-size: clamp(2.55rem, 10vw, 4.3rem);
  }

  .work-feature img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .work-gallery-heading {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .work-gallery-heading h2 {
    text-align: center;
  }

  .work-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .work-gallery-section {
    padding: 36px 18px 72px;
  }

  .work-feature figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .work-gallery-grid {
    grid-template-columns: 1fr;
  }

  .work-card img {
    aspect-ratio: 5 / 4;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(95, 210, 220, 0.11), rgba(95, 210, 220, 0) 34%),
    radial-gradient(circle at 16% 8%, rgba(95, 210, 220, 0.18), rgba(95, 210, 220, 0) 30%),
    radial-gradient(circle at 86% 16%, rgba(18, 109, 120, 0.22), rgba(18, 109, 120, 0) 32%),
    linear-gradient(180deg, #050832 0%, #071825 58%, #020810 100%);
  border-top: 1px solid rgba(95, 210, 220, 0.22);
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: clamp(18px, 5vw, 76px);
  left: clamp(18px, 5vw, 76px);
  height: 3px;
  background: var(--brand-stripe);
  content: "";
}

.site-footer::after {
  content: "";
  display: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(52px, 6vw, 78px) clamp(20px, 4vw, 52px) 0;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.86fr) repeat(2, minmax(160px, 0.52fr)) minmax(128px, 0.4fr) minmax(210px, 0.64fr);
  gap: clamp(18px, 2.5vw, 34px);
  justify-items: center;
  width: 100%;
  padding: 0 0 clamp(34px, 4vw, 50px);
  text-align: center;
}

.footer-brand {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  row-gap: 12px;
  max-width: 280px;
  align-content: start;
  padding-top: 4px;
  text-align: center;
}

.footer-brand img {
  width: 74px;
  align-self: center;
  margin-bottom: 0;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.36));
}

.footer-brand > div {
  align-self: center;
}

.footer-brand strong,
.footer-column span {
  display: block;
  color: var(--white);
  font-weight: 800;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.5vw, 1.65rem);
  letter-spacing: 0;
  line-height: 1.02;
}

.footer-brand > div span,
.footer-brand p,
.footer-column p,
.footer-column a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand > div span {
  display: block;
  margin-top: 8px;
  color: rgba(95, 210, 220, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand-phone {
  display: inline-flex;
  justify-self: center;
  margin-top: 10px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.footer-column {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0;
  padding-top: 4px;
  border-top: 1px solid rgba(95, 210, 220, 0.18);
  text-align: center;
}

.footer-service-column,
.footer-area {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-column span {
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(95, 210, 220, 0.22);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column p {
  margin: -2px 0 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.55;
}

.footer-column a {
  position: relative;
  display: block;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transition: color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.footer-column a::before {
  content: none;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-column a:hover {
  border-color: rgba(95, 210, 220, 0.22);
  transform: none;
}

.footer-area-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px 12px;
  margin: 0 0 10px;
  text-align: center;
}

.footer-area-links a {
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.76);
  border-bottom-color: rgba(255, 255, 255, 0.055);
  font-size: 0.84rem;
  font-weight: 760;
}

.footer-area-all {
  margin-top: 4px;
  color: var(--white) !important;
}

@media (max-width: 640px) {
  .footer-area-links {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: center;
  }
}

.footer-bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(95, 210, 220, 0.2);
  font-size: 0.8rem;
  font-weight: 800;
}

.footer-bottom > a:last-child {
  justify-self: end;
}

.footer-credit {
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer-made {
  justify-self: center;
}

@media (max-width: 1180px) {
  .footer-inner {
    grid-template-columns: minmax(280px, 1fr) repeat(2, minmax(170px, 0.72fr));
  }

  .footer-area {
    grid-column: span 2;
  }
}

.path-section,
.local-section,
.facebook-review-section,
.service-section,
.area-directory,
.area-content,
.area-hub-overview,
.area-hub-directory,
.area-refine-intro,
.area-location-section,
.area-simple-cta {
  background: var(--white);
}

.service-section:nth-of-type(even),
.area-content {
  background:
    linear-gradient(180deg, var(--white), #fbfdfe),
    var(--white);
  border-top: 1px solid rgba(5, 8, 50, 0.08);
  border-bottom: 1px solid rgba(5, 8, 50, 0.08);
}

.path-section {
  border-top: 1px solid rgba(5, 8, 50, 0.08);
}

.path-section::before,
.local-section::before,
.consultation-section::before,
.site-footer::before {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--logo-navy), var(--sky-deep), transparent);
}

.path-section::after,
.facebook-review-section::before,
.facebook-review-section::after {
  display: none;
}

.path-card,
.service-page-card,
.service-related-card,
.area-card,
.service-blueprint-grid article,
.service-flow-grid article,
.service-rhythm-timeline article,
.service-operations-grid article,
.service-season-cards article,
.service-detail-matrix article,
.service-winter-note article,
.area-details article,
.service-standards-grid article,
.service-simple-card,
.service-fit-panel,
.area-region,
.area-mini-card,
.location-feature,
.location-columns,
.also-serving,
.consultation-form {
  background: var(--white);
  border-color: rgba(5, 8, 50, 0.12);
  box-shadow: 0 18px 48px rgba(5, 8, 50, 0.07);
}

.path-card {
  min-height: clamp(500px, 40vw, 560px);
  background: var(--white);
  box-shadow: 0 20px 58px rgba(5, 8, 50, 0.08);
}

.path-card:hover,
.service-page-card:hover,
.area-card:hover,
.area-mini-card:hover {
  box-shadow: 0 26px 68px rgba(5, 8, 50, 0.11);
  transform: translateY(-2px);
}

.path-card::after {
  background:
    linear-gradient(180deg, rgba(5, 8, 50, 0.02), rgba(5, 8, 50, 0.46)),
    linear-gradient(90deg, rgba(5, 8, 50, 0.24), rgba(18, 109, 120, 0.12), rgba(5, 8, 50, 0.16));
}

.path-card span,
.facebook-review-card-top > span {
  color: var(--white);
  background: rgba(5, 8, 50, 0.82);
  border-color: rgba(255, 255, 255, 0.24);
}

.path-card ul,
.expanded-location-grid,
.area-proof-grid {
  border-color: rgba(5, 8, 50, 0.1);
}

.path-card li,
.facebook-review-card,
.expanded-location-grid div,
.area-proof-grid div {
  background: var(--white);
}

.facebook-review-section {
  padding-top: clamp(82px, 8vw, 118px);
  padding-bottom: clamp(82px, 8vw, 118px);
  background:
    radial-gradient(circle at 78% 10%, rgba(95, 210, 220, 0.1), rgba(95, 210, 220, 0) 26%),
    linear-gradient(180deg, var(--white) 0%, #fbfdfe 54%, rgba(5, 8, 50, 0.055) 100%);
}

.reviews-intro {
  align-items: center;
}

.reviews-intro p {
  color: rgba(8, 8, 8, 0.64);
}

.facebook-review-shell {
  width: min(1240px, 100%);
  background: var(--white);
  border-color: rgba(5, 8, 50, 0.12);
  box-shadow: 0 30px 82px rgba(5, 8, 50, 0.14);
}

.facebook-review-scorecard {
  background: linear-gradient(180deg, var(--logo-navy), #03131c);
}

.facebook-review-card:hover {
  box-shadow: inset 3px 0 0 var(--sky-deep);
  transform: none;
}

.local-section {
  border-top: 1px solid rgba(5, 8, 50, 0.1);
  border-bottom: 1px solid rgba(5, 8, 50, 0.1);
}

.about-photo-frame,
.area-hub-photo,
.area-refine-photo,
.service-image-panel {
  box-shadow: 0 22px 62px rgba(5, 8, 50, 0.1);
}

.about-experience-line,
.about-photo-note,
.service-scope-list,
.footer-brand p {
  border-color: rgba(5, 8, 50, 0.14);
}

.consultation-section {
  background:
    linear-gradient(180deg, rgba(5, 8, 50, 0.98), rgba(3, 19, 28, 0.98)),
    var(--logo-navy);
}

.consultation-section {
  grid-template-columns: minmax(0, 480px) minmax(0, 548px);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
  padding-top: clamp(82px, 8vw, 118px);
  padding-bottom: clamp(82px, 8vw, 118px);
  background:
    linear-gradient(90deg, rgba(95, 210, 220, 0.08), rgba(95, 210, 220, 0) 28%),
    radial-gradient(circle at 18% 18%, rgba(95, 210, 220, 0.11), rgba(95, 210, 220, 0) 30%),
    linear-gradient(180deg, rgba(5, 8, 50, 0.985), rgba(3, 19, 28, 0.985)),
    var(--logo-navy);
}

.consultation-section::after {
  position: absolute;
  right: clamp(-72px, 1vw, 28px);
  bottom: clamp(28px, 5vw, 74px);
  z-index: -1;
  width: clamp(250px, 28vw, 430px);
  aspect-ratio: 1;
  background: url("assets/optimized/mercer-logo.png") center / contain no-repeat;
  content: "";
  opacity: 0.035;
  pointer-events: none;
}

.consultation-copy {
  display: grid;
  align-content: center;
}

.consultation-section .eyebrow {
  color: var(--sky);
  letter-spacing: 0.13em;
}

.consultation-copy h2 {
  max-width: 520px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.25rem, 3.65vw, 4rem);
  font-weight: 800;
  line-height: 1.01;
  text-wrap: balance;
}

.consultation-section .consultation-copy p:not(.eyebrow) {
  max-width: 455px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.72;
}

.consultation-proof {
  display: grid;
  gap: 0;
  width: min(100%, 500px);
  margin-top: clamp(26px, 4vw, 42px);
  padding: 2px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(95, 210, 220, 0.22);
  border-top: 3px solid rgba(95, 210, 220, 0.76);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.consultation-proof div {
  display: grid;
  grid-template-columns: minmax(132px, 0.42fr) minmax(0, 1fr);
  column-gap: clamp(16px, 2vw, 26px);
  row-gap: 4px;
  align-items: center;
  min-height: 92px;
  padding: 20px 0;
}

.consultation-proof div + div {
  border-top: 1px solid rgba(95, 210, 220, 0.16);
}

.consultation-proof span {
  grid-row: 1 / span 2;
  color: var(--sky);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.consultation-proof span::before {
  display: block;
  width: 32px;
  height: 2px;
  margin-bottom: 10px;
  background: var(--sky);
  content: "";
}

.consultation-proof strong {
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.25;
}

.consultation-proof p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  line-height: 1.58;
}

.consultation-form {
  position: relative;
  gap: 15px;
  width: min(548px, 100%);
  padding: clamp(24px, 3.4vw, 36px);
  background:
    linear-gradient(180deg, var(--white), #fbfdfe 82%),
    var(--white);
  border: 1px solid rgba(5, 8, 50, 0.12);
  box-shadow:
    0 34px 76px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.consultation-form::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--brand-stripe);
  content: "";
}

.consultation-form-header {
  display: grid;
  gap: 6px;
  margin-bottom: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(5, 8, 50, 0.12);
}

.consultation-form-header span {
  width: max-content;
  padding-bottom: 6px;
  color: var(--sky-ink);
  border-bottom: 2px solid rgba(42, 170, 185, 0.34);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.consultation-form-header strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.1;
}

.consultation-form-header p {
  max-width: 430px;
  margin: 0;
  color: rgba(8, 8, 8, 0.62);
  font-size: 0.92rem;
  line-height: 1.55;
}

.consultation-phone {
  display: inline-flex;
  width: max-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0 14px;
  color: var(--logo-navy);
  background: rgba(95, 210, 220, 0.12);
  border: 1px solid rgba(42, 170, 185, 0.22);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.consultation-phone:hover {
  background: rgba(95, 210, 220, 0.18);
  border-color: rgba(42, 170, 185, 0.34);
}

.consultation-form label {
  gap: 7px;
  color: rgba(5, 8, 50, 0.86);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  min-height: 50px;
  background: #fbfcfd;
  border-color: rgba(5, 8, 50, 0.14);
}

.consultation-form textarea {
  min-height: 124px;
}

.consultation-form .button.primary {
  width: 100%;
  min-height: 56px;
  margin-top: 4px;
  background: var(--brand-dark-gradient);
  box-shadow: 0 18px 42px rgba(5, 8, 50, 0.18);
  letter-spacing: 0.04em;
}

.site-footer {
  background:
    linear-gradient(180deg, #050832, #03131c 78%, #01070d),
    var(--logo-navy);
}

.site-footer::after {
  display: none;
  content: "";
}

@keyframes heroFade {
  0% {
    opacity: 1;
    transform: scale(1.06);
  }

  31% {
    opacity: 1;
  }

  38%,
  100% {
    opacity: 0;
    transform: scale(1.14);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .site-header.nav-open {
    height: 100vh;
    height: 100dvh;
    background:
      radial-gradient(circle at 50% 6%, rgba(95, 210, 220, 0.18), rgba(95, 210, 220, 0) 34%),
      linear-gradient(180deg, rgba(5, 8, 50, 0.99), rgba(13, 53, 65, 0.98));
    border-bottom: 1px solid rgba(95, 210, 220, 0.22);
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    min-height: 86px;
  }

  .header-phone {
    display: none;
  }

  .brand {
    order: 1;
    margin-right: 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 61;
    order: 2;
    display: grid;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    place-items: center;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(42, 170, 185, 0.2);
    border-radius: var(--radius);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: -8px 0;
    background: var(--navy);
    border-radius: 999px;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    grid-auto-rows: min-content;
    align-content: start;
    justify-content: stretch;
    justify-items: center;
    gap: 10px;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    padding: max(30px, env(safe-area-inset-top)) 22px 34px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background:
      radial-gradient(circle at 50% -6%, rgba(95, 210, 220, 0.24), rgba(95, 210, 220, 0) 36%),
      linear-gradient(180deg, rgba(5, 8, 50, 0.99), rgba(13, 53, 65, 0.98));
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.nav-open .site-nav {
    background:
      radial-gradient(circle at 50% -6%, rgba(95, 210, 220, 0.24), rgba(95, 210, 220, 0) 36%),
      linear-gradient(180deg, rgba(5, 8, 50, 0.99), rgba(13, 53, 65, 0.98));
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.nav-open .menu-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(95, 210, 220, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 14px 30px rgba(0, 0, 0, 0.18);
  }

  .site-header.nav-open .menu-toggle span {
    background: var(--white);
  }

  .mobile-nav-brand {
    display: grid;
    place-items: center;
    width: min(100%, 340px);
    margin-bottom: 14px;
  }

  .mobile-nav-brand img {
    width: 128px;
    max-height: 128px;
    object-fit: contain;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
  }

  .mobile-menu-contact {
    display: grid;
    width: min(100%, 340px);
    margin: -2px 0 12px;
    padding: 18px 20px 16px;
    text-align: center;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
      linear-gradient(90deg, rgba(95, 210, 220, 0), rgba(95, 210, 220, 0.08), rgba(95, 210, 220, 0));
    border: 1px solid rgba(95, 210, 220, 0.2);
    border-radius: var(--radius);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.11),
      0 18px 36px rgba(0, 0, 0, 0.14);
  }

  .mobile-menu-contact span {
    color: rgba(95, 210, 220, 0.82);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .mobile-menu-contact strong {
    display: block;
    margin-top: 8px;
    color: var(--white);
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.005em;
    line-height: 1.28;
  }

  .mobile-menu-contact p {
    margin: 8px auto 0;
    max-width: 270px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.45;
  }

  .nav-group {
    width: min(100%, 340px);
  }

  .site-nav > a,
  .nav-trigger,
  .nav-cta {
    width: min(100%, 340px);
    min-height: 54px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(95, 210, 220, 0.22);
    border-radius: var(--radius);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.015em;
  }

  .site-header.nav-open .site-nav > a,
  .site-header.nav-open .nav-trigger {
    color: rgba(255, 255, 255, 0.92);
  }

  .site-header.nav-open .site-nav > a:hover,
  .site-header.nav-open .nav-trigger:hover,
  .site-header.nav-open .nav-group.open > .nav-trigger {
    color: var(--white);
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(95, 210, 220, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 24px rgba(0, 0, 0, 0.16);
  }

  .site-header.nav-open .site-nav > .nav-cta {
    color: var(--logo-navy) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(233, 250, 251, 0.96)) !important;
    border-color: rgba(95, 210, 220, 0.38);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24) !important;
  }

  .site-header.nav-open .site-nav > .nav-cta::after {
    width: 8px;
    height: 8px;
    margin-left: 12px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
    opacity: 0.55;
    transform: rotate(45deg);
  }

  .dropdown {
    position: static;
    display: none;
    width: 100%;
    margin: 8px 0 12px;
    overflow: hidden;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(95, 210, 220, 0.24);
    border-top: 3px solid var(--sky-deep);
    border-radius: var(--radius);
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
  }

  .dropdown::before {
    display: none;
  }

  .dropdown-intro {
    padding: 18px 18px 14px;
    background:
      radial-gradient(circle at 86% 10%, rgba(95, 210, 220, 0.22), rgba(95, 210, 220, 0) 34%),
      linear-gradient(135deg, rgba(5, 8, 50, 0.98), rgba(13, 53, 65, 0.98));
    border-bottom: 1px solid rgba(95, 210, 220, 0.18);
  }

  .dropdown-intro span {
    color: var(--white);
  }

  .dropdown-intro p {
    color: rgba(255, 255, 255, 0.82);
  }

  .dropdown-grid {
    padding: 10px 18px 8px;
  }

  .dropdown-column + .dropdown-column {
    margin: 12px 0 0;
    padding: 12px 0 0;
    border-top: 1px solid rgba(42, 170, 185, 0.14);
    border-left: 0;
  }

  .dropdown-column a {
    min-height: 44px;
    color: rgba(8, 8, 8, 0.84);
    font-size: 0.86rem;
    font-weight: 700;
  }

  .dropdown-cta {
    display: none;
  }

  .nav-group.open .dropdown {
    display: block;
  }

  .dropdown-grid,
  .path-grid,
  .reviews-intro,
  .facebook-review-shell,
  .local-section,
  .consultation-section,
  .service-hero-inner,
  .service-premium-overview,
  .service-scope-section,
  .service-intent-split,
  .service-material-showcase,
  .service-commercial-standard,
  .service-craft-detail,
  .service-winter-priority,
  .service-before-after,
  .service-photo-note,
  .service-local,
  .service-proof-row,
  .service-geo-panel,
  .service-simple-details,
  .area-content,
  .area-hub-hero > .area-hub-hero-inner,
  .area-hub-overview,
  .area-map-section,
  .area-region,
  .area-hub-cta,
  .location-feature,
  .area-refine-intro {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .local-copy,
  .consultation-copy,
  .service-copy-block,
  .service-scope-panel,
  .service-fit-panel,
  .area-hub-overview-copy,
  .area-map-copy,
  .area-refine-copy,
  .area-region-heading,
  .location-feature > div,
  .area-hub-cta > div {
    width: min(680px, 100%);
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .about-experience-line,
  .about-simple-list div,
  .service-scope-list article,
  .service-proof-row,
  .service-geo-panel,
  .service-local,
  .service-simple-details,
  .area-proof-grid div,
  .expanded-location-grid div {
    text-align: center;
  }

  .service-hero-inner,
  .area-hub-hero > .area-hub-hero-inner {
    justify-items: center;
    text-align: center;
  }

  .area-map-copy {
    justify-items: center;
  }

  .area-text-links {
    width: min(620px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .area-link-group div {
    justify-content: center;
  }

  .service-hero-copy,
  .area-hub-hero-copy {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
    text-align: center;
  }

  .service-hero-copy::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .service-hero .eyebrow {
    margin-right: auto;
    margin-left: auto;
  }

  .service-hero-meta {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .service-hero-meta span:first-child {
    padding-left: 18px;
  }

  .service-hero-actions,
  .area-hero-actions,
  .service-simple-links,
  .local-links,
  .area-links,
  .service-geo-links {
    justify-content: center;
  }

  .service-section.service-faq-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "faqs"
      "cta";
  }

  .reviews-intro {
    align-items: start;
    gap: 14px;
    margin-bottom: 24px;
  }

  .facebook-review-shell::after {
    display: none;
  }

  .facebook-review-shell,
  .facebook-review-proof {
    grid-template-columns: 1fr;
  }

  .facebook-review-proof {
    display: grid;
  }

  .facebook-review-photo {
    height: 430px;
    min-height: 430px;
  }

  .facebook-review-photo figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .facebook-review-scorecard {
    min-height: auto;
    padding: 34px 30px;
  }

  .facebook-review-cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .facebook-review-card.is-featured-review {
    grid-row: auto;
  }

  .facebook-review-card + .facebook-review-card {
    border-top: 0;
    border-left: 0;
  }

  .area-hub-note {
    max-width: 620px;
  }

  .area-map-card {
    width: min(620px, 100%);
  }

  .area-mini-card-grid,
  .location-columns,
  .expanded-location-grid,
  .area-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-group:nth-child(odd) {
    border-left: 0;
  }

  .location-group:nth-child(n + 3) {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .expanded-location-grid div:nth-child(odd) {
    border-left: 0;
  }

  .expanded-location-grid div:nth-child(n + 3) {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .area-proof-grid div:nth-child(odd) {
    border-left: 0;
  }

  .area-proof-grid div:nth-child(n + 3) {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .service-blueprint-grid,
  .service-page-card-grid,
  .service-related-card-grid,
  .area-card-grid,
  .service-flow-grid,
  .service-rhythm-timeline,
  .service-operations-grid,
  .service-season-cards,
  .service-detail-matrix,
  .service-winter-note,
  .service-faq-grid,
  .area-answer-grid,
  .area-details,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-area {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
  }

  .service-hero-note {
    max-width: 520px;
  }

  .area-content {
    background:
      linear-gradient(180deg, var(--white), #fbfdfe),
      var(--white);
  }

  .area-content::before {
    display: none;
  }

  .area-main-copy {
    max-width: 680px;
    padding-left: 0;
  }

  .area-main-copy::before {
    top: -20px;
    bottom: auto;
    left: 50%;
    width: 54px;
    height: 3px;
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .section,
  .service-section,
  .area-directory,
  .area-map-section,
  .area-content,
  .area-answer-section,
  .area-details,
  .area-faq-section,
  .area-nearby,
  .area-cta {
    padding: 62px 18px;
  }

  .area-nearby {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center;
    text-align: center;
  }

  .area-nearby::before {
    inset: 18px;
    border-top: 3px solid rgba(5, 8, 50, 0.82);
    border-left: 1px solid rgba(5, 8, 50, 0.08);
  }

  .area-nearby::after {
    display: none;
  }

  .area-nearby .eyebrow {
    margin-right: auto;
    margin-left: auto;
  }

  .area-nearby-copy,
  .area-nearby-copy p:not(.eyebrow) {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
  }

  .area-nearby h2 {
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
    font-size: 2.1rem;
  }

  .area-nearby-all {
    justify-content: center;
  }

  .nearby-area-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 560px;
  }

  .nearby-area-card {
    min-height: 178px;
    text-align: left;
  }

  .area-cta {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "heading"
      "copy"
      "action";
    justify-items: center;
    width: calc(100% - 36px);
    margin: 28px auto 72px;
    padding: 40px 22px;
    text-align: center;
  }

  .area-cta::before {
    inset: 14px;
  }

  .area-cta h2 {
    max-width: 340px;
    font-size: 2.08rem;
  }

  .area-cta p {
    max-width: 330px;
  }

  .area-cta .button {
    justify-self: center;
    width: min(100%, 292px);
    white-space: normal;
  }

  .area-answer-grid {
    grid-template-columns: 1fr;
  }

  .area-answer-grid article {
    min-height: 0;
    text-align: center;
  }

  .area-answer-grid span::after {
    margin-right: auto;
    margin-left: auto;
  }

  .section-heading,
  .path-heading,
  .local-copy,
  .consultation-copy,
  .reviews-intro,
  .service-section-heading,
  .service-faq-heading,
  .service-scope-panel,
  .area-location-intro,
  .area-map-copy,
  .area-hub-overview-copy,
  .area-hub-cta > div,
  .area-refine-intro > div {
    justify-items: center;
    max-width: 354px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .section-heading p,
  .path-heading p:not(.eyebrow),
  .local-copy > p,
  .consultation-copy p,
  .reviews-intro p,
  .service-section-heading p,
  .service-faq-heading p,
  .service-scope-panel > p,
  .area-location-intro p,
  .area-hub-overview-copy p,
  .area-hub-cta p,
  .area-refine-intro p {
    margin-right: auto;
    margin-left: auto;
  }

  .consultation-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .consultation-copy h2 {
    max-width: 342px;
    font-size: 2.08rem;
    line-height: 1.05;
  }

  .consultation-proof {
    max-width: 354px;
  }

  .consultation-proof div {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 18px 10px;
    text-align: center;
  }

  .consultation-proof span {
    grid-row: auto;
  }

  .consultation-proof span::before {
    margin-right: auto;
    margin-left: auto;
  }

  .consultation-proof p {
    grid-column: 1;
  }

  .consultation-form {
    width: min(354px, 100%);
    padding: 26px 20px 22px;
  }

  .consultation-form-header {
    justify-items: center;
    text-align: center;
  }

  .home-hero {
    min-height: 100svh;
  }

  .home-hero-actions,
  .service-hero-actions,
  .area-hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .service-simple-links a {
    width: 100%;
  }

  .neighborhood-strip {
    grid-template-columns: 1fr;
    min-height: 96px;
  }

  .neighborhood-strip > span {
    min-width: 0;
    min-height: 34px;
  }

  .ticker-row a {
    min-height: 62px;
    padding: 0 20px;
  }

  .path-card {
    min-height: auto;
    padding-top: 238px;
  }

  .path-card::before,
  .path-card::after {
    height: 232px;
  }

  .path-card strong {
    margin-top: 0;
    font-size: 1.5rem;
  }

  .path-card ul {
    grid-template-columns: 1fr;
    margin-right: 20px;
    margin-left: 20px;
  }

  .path-card li:nth-child(2) {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .path-card li:nth-child(even) {
    border-left: 0;
  }

  .facebook-review-section::after {
    right: -92px;
    bottom: auto;
    top: 54px;
    opacity: 0.025;
  }

  .reviews-intro h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .facebook-review-shell {
    box-shadow: 0 18px 48px rgba(5, 8, 50, 0.1);
  }

  .facebook-review-photo {
    height: 360px;
    min-height: 360px;
  }

  .facebook-review-photo figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 15px 16px;
  }

  .facebook-review-photo figcaption strong {
    font-size: 1.05rem;
  }

  .facebook-review-proof {
    grid-template-columns: 1fr;
  }

  .facebook-review-scorecard {
    gap: 14px;
    padding: 30px 24px;
    text-align: center;
    justify-items: center;
  }

  .facebook-review-scorecard::before {
    inset: 11px;
  }

  .facebook-review-scorecard strong {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .facebook-review-scorecard p {
    max-width: none;
  }

  .facebook-review-meter {
    margin-right: auto;
    margin-left: auto;
  }

  .facebook-review-card,
  .facebook-review-card.is-featured-review,
  .facebook-review-card.is-supporting-review {
    gap: 18px;
    padding: 24px 22px;
    text-align: center;
    justify-items: center;
  }

  .facebook-review-card-top {
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }

  .facebook-review-card::before {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--sky-ink), transparent);
    opacity: 0.42;
  }

  .facebook-review-card p,
  .facebook-review-card.is-featured-review p,
  .facebook-review-card.is-supporting-review p {
    max-width: none;
    font-size: 1rem;
  }

  .facebook-review-quote-mark {
    top: 54px;
    right: 16px;
    font-size: 6rem;
  }

  .facebook-review-author {
    justify-items: start;
    text-align: left;
  }

  .facebook-review-marquee {
    margin-top: 10px;
  }

  .facebook-review-marquee span {
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.6rem;
  }

  .service-blueprint-grid,
  .service-page-card-grid,
  .service-related-card-grid,
  .area-card-grid,
  .service-flow-grid,
  .service-rhythm-timeline,
  .service-operations-grid,
  .service-season-cards,
  .service-detail-matrix,
  .service-winter-note,
  .service-faq-grid,
  .area-details,
  .form-row,
  .footer-inner,
  .about-simple-list div,
  .service-scope-list article {
    grid-template-columns: 1fr;
  }

  .service-scope-list {
    width: min(354px, 100%);
    padding: 0 20px;
    text-align: left;
  }

  .service-scope-list article {
    justify-items: start;
    gap: 8px;
    min-height: auto;
    padding: 19px 0;
  }

  .service-scope-list span {
    grid-row: auto;
    font-size: 0.68rem;
  }

  .service-scope-list span::before {
    width: 30px;
    margin-bottom: 8px;
  }

  .area-main-copy h2 {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2rem, 11vw, 2.72rem);
  }

  .area-main-copy p:not(.eyebrow) {
    max-width: 344px;
    margin-right: auto;
    margin-left: auto;
  }

  .area-sidebar span {
    padding: 24px 22px 19px;
    text-align: center;
  }

  .area-sidebar nav {
    padding: 8px 18px 18px;
  }

  .area-sidebar a {
    min-height: 55px;
    padding-right: 34px;
    padding-left: 18px;
    text-align: left;
  }

  .area-sidebar a:hover,
  .area-sidebar a:focus-visible {
    padding-left: 20px;
  }

  .area-details {
    gap: 14px;
  }

  .area-details article {
    min-height: auto;
    padding: 26px 22px;
  }

  .area-details article::after {
    right: 18px;
    bottom: 18px;
    width: 30px;
    height: 30px;
  }

  .area-details h3 {
    margin-top: 18px;
  }

  .area-details span::after {
    margin-right: auto;
    margin-left: auto;
  }

  .service-scope-list h3,
  .service-scope-list p {
    grid-column: 1;
  }

  .service-hero,
  .area-hero {
    min-height: 520px;
    padding: 146px 18px 56px;
  }

  .service-hero-copy,
  .area-hero > div {
    max-width: calc(100vw - 36px);
  }

  .service-hero-note {
    display: none;
  }

  .service-hero-meta {
    display: none;
  }

  .service-hero h1,
  .area-hero h1 {
    font-size: 2.05rem;
    line-height: 1.06;
    max-width: 300px;
  }

  .area-hub-hero h1 {
    max-width: 340px;
    font-size: 2.12rem;
  }

  .area-simple-hero h1 {
    max-width: 350px;
    font-size: 2.3rem;
  }

  .service-hero p,
  .area-hero p {
    max-width: 320px;
  }

  .service-faq-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .service-faq-heading::after {
    margin-top: 22px;
  }

  .service-faq-item summary {
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) 34px;
    padding: 19px 18px;
    text-align: left;
  }

  .service-faq-item summary::after {
    width: 32px;
    height: 32px;
  }

  .service-faq-item p {
    padding: 0 18px 21px;
    text-align: left;
  }

  .service-related-card span,
  .service-related-card strong,
  .service-related-card p {
    margin-right: 20px;
    margin-left: 20px;
  }

  .area-hub-note {
    padding: 18px;
  }

  .area-hub-note li {
    font-size: 0.88rem;
  }

  .area-hub-overview,
  .area-map-section,
  .area-hub-cta,
  .area-location-section,
  .area-refine-intro {
    padding: 62px 18px;
  }

  .area-hub-photo,
  .area-refine-photo {
    min-height: 430px;
  }

  .area-hub-service-list,
  .area-mini-card-grid,
  .location-columns,
  .expanded-location-grid,
  .area-proof-grid {
    grid-template-columns: 1fr;
  }

  .area-link-group {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0;
    text-align: center;
  }

  .area-link-group span {
    padding-top: 0;
  }

  .area-link-group div {
    gap: 10px 14px;
  }

  .area-region {
    padding: 20px;
  }

  .area-map-card {
    padding: 8px;
  }

  .area-map-card-top {
    display: grid;
    justify-items: start;
    padding: 12px 10px 14px;
    text-align: left;
  }

  .area-map-card-top strong {
    max-width: 270px;
    font-size: 1.12rem;
  }

  .area-map-card-top p {
    display: none;
  }

  .area-map-frame::after {
    inset: 10px;
  }

  .area-map-legend {
    justify-content: center;
    font-size: 0.6rem;
    text-align: center;
  }

  .location-feature {
    padding: 20px;
  }

  .location-group {
    min-height: auto;
    padding: 22px;
  }

  .location-group + .location-group,
  .location-group:nth-child(n + 3) {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 0;
  }

  .location-link-list a {
    min-height: 44px;
    font-size: 1.08rem;
  }

  .expanded-location-grid div {
    min-height: auto;
    padding: 18px 0;
  }

  .expanded-location-grid div + div,
  .expanded-location-grid div:nth-child(n + 3) {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 0;
  }

  .area-proof-grid div {
    min-height: auto;
    padding: 18px 0;
  }

  .area-proof-grid div + div,
  .area-proof-grid div:nth-child(n + 3) {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 0;
  }

  .section-heading h2,
  .service-section-heading h2 {
    max-width: 300px;
  }

  .service-page-card strong,
  .service-page-card p {
    max-width: calc(100vw - 84px);
  }

  .about-photo-frame {
    min-height: 360px;
  }

  .local-copy h2 {
    max-width: 342px;
    font-size: 2.12rem;
    line-height: 1.06;
  }

  .about-simple-list {
    width: min(354px, 100%);
    padding: 0 20px;
    text-align: left;
  }

  .about-simple-list div {
    justify-items: start;
    gap: 8px;
    min-height: auto;
    padding: 19px 0;
  }

  .about-simple-list span {
    font-size: 0.68rem;
  }

  .about-simple-list span::before {
    width: 30px;
    margin-bottom: 8px;
  }

  .about-simple-list p {
    font-size: 0.95rem;
  }

  .about-photo-note {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .about-experience-line {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  h1 {
    font-size: 2.75rem;
  }

  .path-section h1 {
    width: min(340px, 100%);
    font-size: 2.05rem;
    line-height: 1.08;
    white-space: normal;
  }

  h2 {
    font-size: 2.35rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-right: 0;
    padding-left: 0;
    text-align: center;
  }

  .footer-credit,
  .footer-made,
  .footer-bottom > a:last-child {
    justify-self: center;
  }

  .site-footer::after {
    display: none;
    content: "";
  }

  .footer-shell {
    padding: 40px 18px 0;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    justify-items: center;
    padding: 0 0 28px;
    gap: 22px 18px;
    text-align: center;
  }

  .footer-brand {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    width: 100%;
    max-width: none;
    padding: 6px 0 22px;
    border-bottom: 1px solid rgba(95, 210, 220, 0.18);
    text-align: center;
  }

  .footer-brand img {
    width: 78px;
  }

  .footer-column {
    justify-items: center;
    width: 100%;
    max-width: none;
    padding-top: 14px;
    text-align: center;
  }

  .footer-service-column,
  .footer-area {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    padding: 14px 0 0;
  }

  .footer-column span {
    width: 100%;
  }

  .footer-column a {
    padding: 7px 0;
    font-size: 0.8rem;
    line-height: 1.28;
  }

  .footer-column a::before {
    display: none;
  }

  .footer-column a:hover {
    transform: none;
  }

  .footer-column p {
    max-width: 310px;
    margin-right: auto;
    margin-left: auto;
  }

  .footer-area {
    grid-column: 1 / -1;
  }

  .footer-area-links {
    text-align: center;
  }
}

@media (max-width: 980px) {
  .about-hero,
  .about-story-section,
  .about-cta-section,
  .trust-panel-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about-hero {
    min-height: auto;
    padding-top: 152px;
  }

  .about-hero-copy,
  .about-story-copy,
  .about-story-card,
  .about-cta-section > div,
  .trust-panel-grid {
    width: min(680px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .about-hero-copy > p:not(.eyebrow),
  .about-story-copy p:not(.eyebrow),
  .about-cta-section p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .about-hero-actions {
    justify-content: center;
  }

  .about-hero-media {
    width: min(680px, 100%);
  }

  .about-hero-note {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .about-standard-grid {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
  }

  .trust-panel-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr 1fr;
    width: min(680px, 100%);
  }

  .about-standard-grid span::after {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .about-hero,
  .about-story-section,
  .about-standard-section,
  .about-cta-section,
  .trust-panel-section,
  .gallery-page-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .about-hero {
    padding-top: 138px;
    padding-bottom: 62px;
  }

  .about-hero h1 {
    max-width: 354px;
    font-size: 2.42rem;
    line-height: 1.04;
  }

  .about-hero-copy > p:not(.eyebrow),
  .about-story-copy p:not(.eyebrow),
  .about-cta-section p:not(.eyebrow),
  .trust-panel-copy p {
    max-width: 342px;
    font-size: 0.98rem;
  }

  .about-hero-actions {
    width: min(354px, 100%);
  }

  .about-hero-frame {
    height: 390px;
  }

  .about-hero-note {
    width: min(354px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .about-story-section,
  .about-standard-section,
  .about-cta-section,
  .trust-panel-section,
  .gallery-page-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .about-story-copy h2,
  .about-standard-section h2,
  .about-cta-section h2,
  .trust-panel-copy h2 {
    max-width: 342px;
    font-size: 2.08rem;
    line-height: 1.06;
  }

  .about-story-card,
  .about-standard-grid,
  .trust-sidebar-card {
    width: min(354px, 100%);
  }

  .gallery-page-grid {
    grid-template-columns: 1fr;
    width: min(354px, 100%);
  }

  .gallery-tile {
    min-height: auto;
  }

  .gallery-tile figure {
    height: 310px;
  }

  .about-standard-grid article {
    min-height: auto;
    padding: 24px 20px;
  }

  .about-cta-section .button {
    width: min(354px, 100%);
  }
}

@media (max-width: 640px) {
  .path-section,
  .local-section,
  .facebook-review-section,
  .consultation-section,
  .service-section,
  .area-directory,
  .area-map-section,
  .area-content,
  .area-details,
  .area-faq-section,
  .area-nearby,
  .area-cta,
  .area-hub-overview,
  .area-hub-directory,
  .area-location-section,
  .area-refine-intro,
  .area-simple-cta,
  .about-hero,
  .about-story-section,
  .about-standard-section,
  .about-cta-section,
  .trust-panel-section,
  .gallery-page-section {
    justify-items: center;
    text-align: center;
  }

  .section-heading,
  .path-heading,
  .local-copy,
  .about-photo-panel,
  .about-experience-line,
  .about-simple-list,
  .reviews-intro,
  .facebook-review-shell,
  .facebook-review-proof,
  .facebook-review-cards,
  .facebook-review-card,
  .consultation-copy,
  .consultation-proof,
  .consultation-form,
  .service-hero-copy,
  .service-section-heading,
  .service-copy-block,
  .service-simple-card,
  .service-scope-panel,
  .service-fit-panel,
  .service-scope-list,
  .service-page-card,
  .service-related-card,
  .service-faq-heading,
  .service-faq-grid,
  .service-faq-cta,
  .area-main-copy,
  .area-sidebar,
  .area-map-copy,
  .area-map-card,
  .area-region,
  .area-mini-card,
  .area-hub-overview-copy,
  .area-hub-cta > div,
  .area-location-intro,
  .area-refine-copy,
  .about-hero-copy,
  .about-hero-media,
  .about-story-copy,
  .about-story-card,
  .about-standard-grid,
  .about-cta-section > div,
  .trust-panel-copy,
  .trust-panel-grid,
  .trust-sidebar-card,
  .gallery-page-grid,
  .footer-brand,
  .footer-column {
    width: min(100%, 354px);
    margin-right: auto;
    margin-left: auto;
    justify-items: center;
    text-align: center;
  }

  .path-grid,
  .service-page-card-grid,
  .service-related-card-grid,
  .area-card-grid,
  .area-mini-card-grid,
  .area-region-grid,
  .location-columns,
  .expanded-location-grid,
  .area-proof-grid,
  .footer-inner {
    width: min(100%, 354px);
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    justify-items: center;
  }

  .path-card,
  .area-card,
  .area-details article,
  .service-related-card,
  .service-page-card,
  .service-simple-card,
  .service-faq-item,
  .about-standard-grid article,
  .gallery-tile {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .path-card ul,
  .about-simple-list,
  .service-scope-list,
  .service-check-list,
  .area-sidebar nav {
    width: min(100%, 312px);
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
    text-align: center;
  }

  .path-card li,
  .about-simple-list div,
  .service-scope-list article,
  .consultation-proof div,
  .area-proof-grid div,
  .expanded-location-grid div,
  .location-group,
  .area-sidebar a {
    justify-items: center;
    text-align: center;
  }

  .about-simple-list div,
  .service-scope-list article {
    padding-right: 0;
    padding-left: 0;
  }

  .about-simple-list span::before,
  .service-scope-list span::before,
  .consultation-proof span::before,
  .area-details span::after,
  .area-nearby .eyebrow,
  .footer-column span {
    margin-right: auto;
    margin-left: auto;
  }

  .facebook-review-score-top,
  .facebook-review-card-top,
  .facebook-review-author,
  .about-hero-actions,
  .home-hero-actions,
  .service-hero-actions,
  .area-hero-actions,
  .service-simple-links,
  .local-links,
  .area-links,
  .service-geo-links,
  .area-link-group div,
  .area-map-legend {
    justify-content: center;
  }

  .facebook-review-author {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .facebook-review-author > span {
    margin-right: auto;
    margin-left: auto;
  }

  .facebook-review-scorecard p,
  .facebook-review-card p,
  .local-copy > p,
  .consultation-copy p,
  .service-hero p,
  .area-hero p,
  .area-main-copy p:not(.eyebrow),
  .about-hero-copy > p:not(.eyebrow),
  .about-story-copy p:not(.eyebrow),
  .about-cta-section p:not(.eyebrow),
  .trust-panel-copy p,
  .footer-brand p,
  .footer-column p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .consultation-form label,
  .consultation-form input,
  .consultation-form select,
  .consultation-form textarea,
  .service-faq-item summary,
  .service-faq-item p {
    text-align: left;
  }

  .consultation-form .button,
  .area-cta .button,
  .about-cta-section .button {
    margin-right: auto;
    margin-left: auto;
  }

  .area-map-card-top {
    justify-items: center;
    text-align: center;
  }

  .area-map-card-top strong,
  .area-map-card-top p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .footer-bottom {
    justify-items: center;
    text-align: center;
  }
}

.gallery-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  width: min(1180px, 100%);
  margin: 0 auto 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), #fbfdfe),
    var(--white);
  border: 1px solid rgba(5, 8, 50, 0.14);
  box-shadow: 0 26px 72px rgba(5, 8, 50, 0.1);
}

.gallery-feature-photo {
  position: relative;
  height: 430px;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: var(--logo-navy);
}

.gallery-feature-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 50, 0.02), rgba(5, 8, 50, 0.2)),
    linear-gradient(90deg, rgba(5, 8, 50, 0.2), rgba(5, 8, 50, 0));
  content: "";
}

.gallery-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-feature-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(30px, 4vw, 52px);
  border-left: 1px solid rgba(5, 8, 50, 0.1);
}

.gallery-feature-copy h3 {
  max-width: 480px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.3vw, 2.55rem);
  line-height: 1.05;
  text-wrap: balance;
}

.gallery-feature-copy p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: rgba(8, 8, 8, 0.68);
  line-height: 1.72;
}

.gallery-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  max-width: 470px;
  margin-top: 8px;
}

.gallery-proof-list span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  color: var(--logo-navy);
  background: rgba(95, 210, 220, 0.08);
  border: 1px solid rgba(42, 170, 185, 0.2);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gallery-page-grid {
  gap: 18px;
}

.gallery-tile {
  border-color: rgba(5, 8, 50, 0.14);
  box-shadow: 0 18px 52px rgba(5, 8, 50, 0.08);
}

.gallery-tile-content {
  padding: 24px 24px 26px;
}

.gallery-tile h3 {
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.18;
}

.facebook-review-section {
  background:
    radial-gradient(circle at 18% 8%, rgba(95, 210, 220, 0.08), rgba(95, 210, 220, 0) 27%),
    linear-gradient(180deg, var(--white) 0%, #fbfdfe 56%, rgba(5, 8, 50, 0.055) 100%);
}

.facebook-review-shell {
  grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1.25fr);
  width: min(1220px, 100%);
  overflow: hidden;
  border-color: rgba(5, 8, 50, 0.14);
  box-shadow: 0 28px 76px rgba(5, 8, 50, 0.13);
}

.facebook-review-photo {
  height: 560px;
  min-height: 560px;
}

.facebook-review-proof {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
}

.facebook-review-scorecard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.55fr);
  gap: 12px 24px;
  min-height: auto;
  padding: 32px clamp(28px, 4vw, 42px);
  align-content: start;
  align-items: center;
  background:
    radial-gradient(circle at 6% 0%, rgba(95, 210, 220, 0.18), rgba(95, 210, 220, 0) 34%),
    linear-gradient(145deg, var(--logo-navy) 0%, #071825 62%, #03131c 100%);
}

.facebook-review-score-top {
  grid-column: 1 / -1;
}

.facebook-review-lockup {
  grid-column: 1;
}

.facebook-review-scorecard strong {
  font-size: clamp(1.85rem, 2.3vw, 2.55rem);
  line-height: 1.05;
}

.facebook-review-scorecard p {
  grid-column: 2;
  grid-row: 2 / span 3;
  max-width: 235px;
}

.facebook-review-scorecard .text-link {
  grid-column: 1;
}

.facebook-review-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.facebook-review-card {
  min-height: 268px;
  padding: 28px 24px 26px;
  border-right: 1px solid rgba(5, 8, 50, 0.09);
  border-bottom: 0;
}

.facebook-review-card:last-child {
  border-right: 0;
}

.facebook-review-card::before {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--logo-navy), var(--sky-ink));
  opacity: 0.5;
}

.facebook-review-card:hover {
  box-shadow: inset 0 3px 0 var(--sky-deep), 0 18px 38px rgba(5, 8, 50, 0.08);
}

.facebook-review-card.is-featured-review p,
.facebook-review-card.is-supporting-review p,
.facebook-review-card p {
  color: rgba(8, 8, 8, 0.76);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.58;
}

.facebook-review-quote-mark {
  display: none;
}

.review-theme-footer {
  display: grid;
  gap: 5px;
  align-self: end;
  padding-top: 16px;
  border-top: 1px solid rgba(5, 8, 50, 0.1);
}

.review-theme-footer span {
  color: var(--sky-ink);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.review-theme-footer strong {
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 850;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .gallery-feature-layout,
  .facebook-review-shell {
    grid-template-columns: 1fr;
  }

  .gallery-feature-photo {
    height: 360px;
    min-height: 360px;
  }

  .gallery-feature-copy {
    border-top: 1px solid rgba(5, 8, 50, 0.1);
    border-left: 0;
    justify-items: center;
    text-align: center;
  }

  .gallery-feature-copy p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .gallery-proof-list {
    width: min(470px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .gallery-proof-list span {
    justify-content: center;
  }

  .facebook-review-proof,
  .facebook-review-scorecard {
    grid-template-columns: 1fr;
  }

  .facebook-review-photo {
    height: 390px;
    min-height: 390px;
  }

  .facebook-review-scorecard {
    justify-items: center;
    text-align: center;
  }

  .facebook-review-lockup,
  .facebook-review-scorecard p,
  .facebook-review-scorecard .text-link {
    grid-column: auto;
    grid-row: auto;
  }

  .facebook-review-scorecard p {
    max-width: 520px;
  }

  .facebook-review-cards {
    grid-template-columns: 1fr;
  }

  .facebook-review-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(5, 8, 50, 0.09);
  }
}

@media (max-width: 640px) {
  .gallery-feature-layout,
  .facebook-review-shell {
    width: min(354px, 100%);
  }

  .gallery-feature-photo {
    height: 330px;
    min-height: 330px;
  }

  .gallery-feature-copy {
    padding: 26px 20px;
  }

  .gallery-proof-list {
    grid-template-columns: 1fr;
  }

  .gallery-feature-copy h3 {
    font-size: 1.7rem;
  }

  .facebook-review-photo {
    height: 340px;
    min-height: 340px;
  }

  .facebook-review-scorecard {
    padding: 30px 22px;
  }

  .facebook-review-scorecard strong {
    font-size: 2rem;
  }

  .facebook-review-card,
  .facebook-review-card.is-featured-review,
  .facebook-review-card.is-supporting-review {
    padding: 25px 22px;
  }

  .review-theme-footer {
    justify-items: center;
  }
}

/* Final sitewide alignment pass. Keep readable form fields left aligned. */
.site-nav :where(a, button, span, p, .dropdown-label),
main :where(h1, h2, h3, h4, p, span, strong, small, li, summary, figcaption, a),
.site-footer :where(strong, span, a, p, div, nav) {
  text-align: center;
}

main :where(p, ul, ol) {
  margin-right: auto;
  margin-left: auto;
}

main :where(
  .section-heading,
  .path-heading,
  .local-copy,
  .reviews-intro,
  .facebook-review-shell,
  .facebook-review-proof,
  .facebook-review-cards,
  .facebook-review-card,
  .consultation-copy,
  .consultation-proof,
  .service-hero-copy,
  .service-section-heading,
  .service-copy-block,
  .service-simple-card,
  .service-scope-panel,
  .service-fit-panel,
  .service-scope-list,
  .service-page-card,
  .service-related-card,
  .service-faq-heading,
  .service-faq-grid,
  .service-faq-cta,
  .area-main-copy,
  .area-sidebar,
  .area-map-copy,
  .area-map-card,
  .area-region,
  .area-mini-card,
  .area-hub-overview-copy,
  .area-hub-cta > div,
  .area-location-intro,
  .area-refine-copy,
  .about-hero-copy,
  .about-hero-media,
  .about-story-copy,
  .about-story-card,
  .about-standard-grid,
  .about-cta-section > div,
  .work-hero-inner,
  .work-gallery-heading,
  .work-card
) {
  justify-items: center;
  text-align: center;
}

main :where(
  .path-card li,
  .service-scope-list article,
  .area-sidebar a,
  .area-link-group,
  .area-map-card-top,
  .facebook-review-author,
  .about-simple-list,
  .about-simple-list div,
  .service-faq-item summary,
  .service-faq-item p
) {
  justify-items: center;
  text-align: center;
}

main :where(
  .about-simple-list span::before,
  .service-scope-list span::before,
  .consultation-proof span::before,
  .area-details span::after
) {
  margin-right: auto;
  margin-left: auto;
}

.site-nav :where(.dropdown-column a, .dropdown-cta),
main :where(.button, .text-link, .local-links, .area-links, .service-geo-links, .service-simple-links, .area-hub-service-list a),
.site-footer :where(a) {
  justify-content: center;
}

main :where(.consultation-form, .consultation-form *, input, select, textarea, label) {
  text-align: left;
}

main .consultation-form .button {
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
