@font-face {
  font-family: "Source Sans 3";
  src: url("assets/source-sans-3-latin.woff2") format("woff2");
  font-display: swap;
  font-weight: 200 900;
}

@font-face {
  font-family: "Archivo";
  src: url("assets/archivo-latin.woff2") format("woff2");
  font-display: swap;
  font-weight: 400 800;
}

:root {
  color-scheme: light;
  --ink: #29343d;
  --muted: #5e6b72;
  --paper: #f5f6f3;
  --paper-2: #edf0ee;
  --mist: #e5eaeb;
  --aqua: #dbe4e7;
  --sea: #4d687d;
  --sea-dark: #344f63;
  --copper: #526f85;
  --line: rgba(41, 52, 61, 0.13);
  --white: #fafbf8;
  --shadow: 0 24px 70px rgba(52, 79, 99, 0.1);
  --radius: 30px;
  --font: "Source Sans 3", "Trebuchet MS", sans-serif;
  --display: "Archivo", "Source Sans 3", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 11%, rgba(82, 111, 133, 0.1), transparent 23rem),
    var(--paper);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 6.8vw, 6.35rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.4vw, 4.15rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

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

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 99px;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 720;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(52, 79, 99, 0.18);
}

.button-copper {
  color: var(--white);
  background: var(--sea);
}

.button-copper:hover {
  background: var(--sea-dark);
}

.button-cream {
  color: var(--ink);
  background: #f4f7ff;
}

.button-white {
  color: var(--ink);
  background: var(--white);
}

.button-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sea);
  font-weight: 750;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.utility-bar {
  color: #edf1f2;
  background: #344f63;
  font-size: 0.84rem;
}

.utility-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
}

.utility-inner a {
  color: var(--white);
  font-weight: 750;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 246, 243, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  min-height: 84px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark,
.footer-mark {
  width: 45px;
  height: 45px;
  border-radius: 15px;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  font-family: var(--display);
  font-size: 1.14rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-lockup small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 36px);
  font-size: 0.93rem;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  border-radius: 2px;
  background: var(--copper);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.mobile-menu {
  display: none;
}

.cp-hero {
  display: grid;
  min-height: 670px;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  padding-block: 58px 78px;
}

.cp-hero-copy {
  position: relative;
  z-index: 2;
}

.cp-hero-copy h1 {
  max-width: 540px;
}

.cp-hero-copy > p:not(.eyebrow) {
  max-width: 465px;
  margin-bottom: 30px;
  font-size: 1.22rem;
}

.soft-phone {
  display: grid;
  font-weight: 800;
  line-height: 1.2;
}

.soft-phone span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-notes {
  display: flex;
  margin: 40px 0 0;
  padding: 0;
  gap: 20px;
  color: var(--muted);
  font-size: 0.85rem;
  list-style: none;
}

.hero-notes li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-notes li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua);
  content: "";
}

.cp-hero-visual {
  position: relative;
  isolation: isolate;
}

.cp-hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -30px;
  right: -40px;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(159, 181, 242, 0.38);
  content: "";
  filter: blur(2px);
}

.cp-hero-visual img {
  width: 100%;
  aspect-ratio: 0.98;
  object-fit: cover;
  border-radius: 46% 46% 28px 28px;
  box-shadow: var(--shadow);
}

.availability-orb {
  position: absolute;
  right: -28px;
  bottom: 36px;
  display: grid;
  width: 142px;
  height: 142px;
  place-content: center;
  transform: rotate(5deg);
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(231, 237, 251, 0.94);
  box-shadow: 0 15px 35px rgba(52, 79, 99, 0.15);
  text-align: center;
  backdrop-filter: blur(14px);
  transition: transform 250ms ease;
}

.cp-hero-visual:hover .availability-orb {
  transform: rotate(0) scale(1.04);
}

.availability-orb span,
.availability-orb strong {
  display: block;
  line-height: 1.1;
}

.availability-orb span {
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability-orb strong {
  margin-top: 5px;
  font-size: 1.22rem;
}

.home-intro {
  display: grid;
  min-height: 440px;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
  padding-block: 80px;
}

.intro-photo {
  width: min(430px, 100%);
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--mist);
  box-shadow: 0 22px 54px rgba(52, 79, 99, 0.11);
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
}

.intro-photo:hover img {
  transform: scale(1.025);
}

.home-intro-copy {
  max-width: 650px;
}

.home-intro-copy > p:not(.eyebrow) {
  max-width: 550px;
  font-size: 1.1rem;
}

.service-board {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  margin-block: 50px 130px;
}

.service-lead {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(34px, 6vw, 68px);
  overflow: hidden;
  border-radius: var(--radius);
  color: #f9fffd;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.14), transparent 13rem),
    var(--sea-dark);
}

.service-lead .eyebrow,
.service-lead p {
  color: #dbe5ff;
}

.service-lead h2 {
  max-width: 560px;
}

.service-lead > p:not(.eyebrow) {
  max-width: 430px;
  margin-bottom: 26px;
}

.service-stack {
  display: grid;
  gap: 14px;
}

.service-stack article {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 20px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  transition: transform 220ms ease, background 220ms ease;
}

.service-stack article:hover {
  transform: translateX(8px);
  background: var(--white);
}

.service-stack article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--sea);
  background: var(--mist);
  font-size: 0.76rem;
  font-weight: 800;
}

.service-stack p {
  margin: 0;
}

.visit-section {
  padding-block: 100px;
  background: var(--paper-2);
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.visit-grid ol {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.visit-grid li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.visit-grid li span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--copper);
  font-weight: 800;
}

.visit-grid li p {
  margin: 0;
}

.visit-grid li strong {
  color: var(--ink);
}

.review-section,
.review-page-stream {
  overflow: hidden;
  padding-block: 118px 95px;
}

.review-section {
  background: var(--paper);
}

.review-heading {
  text-align: center;
}

.review-heading h2 {
  max-width: 720px;
  margin-inline: auto;
}

.sample-note {
  font-size: 0.84rem;
}

.review-platforms {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 28px 0 52px;
}

.review-platform {
  display: flex;
  min-width: 178px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 19px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(52, 79, 99, 0.07);
  font-weight: 800;
  line-height: 1.1;
  cursor: default;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-platform:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(52, 79, 99, 0.13);
}

.review-platform span:not(.yelp-icon),
.review-platform small {
  display: block;
}

.review-platform small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 600;
}

.yelp-icon,
.review-yelp {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d32323;
}

.yelp-icon {
  width: 31px;
  height: 31px;
}

.yelp-icon img,
.review-yelp img {
  filter: brightness(0) invert(1);
}

.review-marquee {
  width: 100%;
  overflow: hidden;
  background: transparent;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.review-marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  background: transparent;
  animation: review-scroll 42s linear infinite;
}

.review-marquee:hover .review-marquee-track {
  animation-play-state: paused;
}

.review-bubble {
  width: min(390px, calc(100vw - 48px));
  min-height: 250px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(52, 79, 99, 0.08);
}

.review-bubble-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.review-yelp {
  width: 26px;
  height: 26px;
}

.stars {
  color: var(--sea);
  font-size: 0.84rem;
  letter-spacing: 0.09em;
}

.review-bubble p {
  min-height: 82px;
  color: var(--ink);
  font-size: 1.05rem;
}

.review-bubble footer {
  display: grid;
  line-height: 1.3;
}

.review-bubble footer span,
.review-feature-grid footer span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}

@keyframes review-scroll {
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.area-pill {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 36px;
  margin-block: 20px 120px;
  padding: 42px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--aqua);
}

.area-pill h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

.area-pill p {
  margin: 0;
  color: #354966;
}

.soft-cta {
  display: flex;
  min-height: 310px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-block: 90px 120px;
  padding: clamp(40px, 7vw, 82px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 87% 18%, rgba(82, 111, 133, 0.1), transparent 13rem),
    var(--mist);
}

.soft-cta h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.inner-hero {
  display: grid;
  min-height: 560px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 16px;
  margin-block: 48px 110px;
  padding: 16px;
  border-radius: 38px;
  background: var(--mist);
}

.inner-hero-flipped {
  grid-template-columns: 1.08fr 0.92fr;
}

.inner-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(34px, 6vw, 68px);
}

.inner-hero-copy h1 {
  font-size: clamp(3rem, 5.4vw, 5.4rem);
}

.inner-hero-copy > p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 28px;
  font-size: 1.12rem;
}

.inner-hero-photo {
  min-height: 480px;
  overflow: hidden;
  border-radius: 26px;
}

.inner-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.inner-hero:hover .inner-hero-photo img {
  transform: scale(1.035);
}

.services-hero {
  padding-top: clamp(70px, 9vw, 112px);
  margin-bottom: 115px;
  text-align: center;
}

.services-hero-copy {
  display: grid;
  max-width: 830px;
  justify-items: center;
  margin-inline: auto;
}

.services-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 6vw, 5.9rem);
}

.services-hero-copy > p:not(.eyebrow) {
  max-width: 550px;
  margin-bottom: 28px;
  font-size: 1.15rem;
}

.services-hero-symbols {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.services-hero-symbols span,
.service-symbol {
  display: grid;
  place-items: center;
  color: var(--sea);
  background: var(--mist);
}

.services-hero-symbols span {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(82, 111, 133, 0.12);
  border-radius: 20px;
}

.services-hero-symbols span:nth-child(2) {
  transform: translateY(12px);
  background: var(--aqua);
}

.services-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  margin-bottom: 120px;
}

.services-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.services-intro h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.service-rows {
  display: grid;
}

.service-rows article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 30px 18px;
  border-bottom: 1px solid var(--line);
  transition: transform 180ms ease;
}

.service-rows article:hover {
  transform: translateX(7px);
}

.service-rows article > span {
  width: 48px;
  height: 48px;
  border-radius: 17px;
}

.service-rows p {
  margin: 0;
}

.process-cloud {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 70px;
  margin-bottom: 120px;
  padding: clamp(38px, 6vw, 70px);
  border-radius: 90px 30px 90px 30px;
  background: var(--paper-2);
}

.process-cloud ol {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.process-cloud li {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: start;
  gap: 15px;
}

.process-cloud li > span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--sea);
  font-weight: 800;
}

.process-cloud p {
  margin: 2px 0 0;
}

.reviews-hero {
  display: grid;
  padding-block: clamp(28px, 3.4vw, 38px);
  text-align: center;
}

.reviews-hero-copy {
  display: grid;
  max-width: 850px;
  justify-items: center;
  margin-inline: auto;
}

.reviews-hero-copy h1 {
  margin-bottom: 16px;
  font-size: clamp(2.85rem, 5vw, 4.8rem);
}

.reviews-hero-copy > p:not(.eyebrow) {
  margin-bottom: 0;
}

.reviews-hero .eyebrow {
  margin-bottom: 10px;
}

.reviews-hero .review-platforms {
  margin: 22px 0 0;
}

.rating-orb {
  display: grid;
  width: 82px;
  height: 82px;
  place-content: center;
  margin-bottom: 18px;
  transform: rotate(-7deg);
  border-radius: 50%;
  color: var(--ink);
  background: var(--aqua);
  text-align: center;
}

.rating-orb strong,
.rating-orb small {
  display: block;
  line-height: 1;
}

.rating-orb strong {
  font-size: 1.8rem;
}

.rating-orb small {
  margin-top: 6px;
  font-size: 0.64rem;
}

.review-page-stream {
  padding-top: 36px;
  background: var(--paper-2);
}

.review-page-stream .review-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.review-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-block: 110px 30px;
}

.review-feature-grid blockquote {
  min-height: 310px;
  margin: 0;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.review-feature-grid blockquote:nth-child(2),
.review-feature-grid blockquote:nth-child(3) {
  background: var(--mist);
}

.review-feature-grid blockquote p {
  margin-block: 28px 38px;
  color: var(--ink);
  font-size: 1.15rem;
}

.review-feature-grid footer {
  display: grid;
}

.map-first-hero {
  margin-block: 48px 110px;
}

.map-first-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px 90px 34px 34px;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.map-first-stage iframe {
  display: block;
  width: 100%;
  min-height: 650px;
  border: 0;
  filter: saturate(0.68) contrast(0.96);
}

.map-first-copy {
  position: absolute;
  bottom: 32px;
  left: 32px;
  max-width: 530px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background: rgba(245, 246, 243, 0.93);
  box-shadow: 0 24px 60px rgba(41, 52, 61, 0.14);
  backdrop-filter: blur(18px);
}

.map-first-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5vw, 5.1rem);
}

.map-first-copy > p:not(.eyebrow) {
  max-width: 410px;
  margin-bottom: 26px;
}

.map-pin {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 17px;
  color: var(--sea);
  background: var(--mist);
}

.location-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 16px;
  margin-bottom: 110px;
}

.city-panel,
.map-card,
.location-route-card {
  border-radius: var(--radius);
}

.city-panel {
  padding: clamp(34px, 5vw, 56px);
  background: var(--mist);
}

.city-panel h2,
.city-panel .eyebrow {
  color: var(--ink);
}

.city-panel p {
  color: var(--muted);
}

.city-list {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.city-list li {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(250, 251, 248, 0.76);
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 510px;
  border: 0;
  filter: saturate(0.68) contrast(0.92);
}

.map-card p {
  margin: 0;
  padding: 16px 22px;
  font-size: 0.82rem;
}

.location-route-card {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 470px;
  padding: clamp(38px, 7vw, 76px);
  border: 1px solid var(--line);
  background: var(--white);
}

.location-route-card > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 19px;
  color: var(--sea);
  background: var(--aqua);
}

.location-route-card h2 {
  max-width: 580px;
  margin-bottom: 0;
}

.location-route-facts {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.location-route-facts div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.location-route-facts svg {
  flex: 0 0 auto;
  color: var(--sea);
}

.local-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 90px;
  padding-block: 45px 80px;
}

.local-note p {
  font-size: 1.08rem;
}

.contact-hero {
  display: grid;
  min-height: 575px;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  margin-block: 48px 120px;
  border-radius: 38px;
  background: var(--ink);
}

.contact-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 6vw, 70px);
  color: var(--white);
}

.contact-hero-copy .eyebrow {
  color: var(--aqua);
}

.contact-hero-copy h1 {
  font-size: clamp(3rem, 5.2vw, 5.3rem);
}

.contact-hero-copy p {
  color: #bfd0d1;
}

.contact-phone {
  display: grid;
  margin-top: 22px;
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 800;
}

.contact-phone span {
  color: var(--aqua);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-hero-copy small {
  margin-top: 8px;
  color: #aabfc1;
}

.contact-intro {
  padding-block: clamp(72px, 9vw, 112px) 68px;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(82, 111, 133, 0.14), transparent 24rem),
    radial-gradient(circle at 86% 88%, rgba(82, 111, 133, 0.08), transparent 28rem),
    var(--paper-2);
  text-align: center;
}

.contact-intro-copy {
  display: grid;
  justify-items: center;
}

.contact-intro .eyebrow {
  color: var(--sea);
}

.contact-intro h1 {
  max-width: 860px;
  font-size: clamp(3.15rem, 6.2vw, 6rem);
}

.contact-intro-copy > p:not(.eyebrow) {
  max-width: 570px;
  color: var(--muted);
  font-size: 1.15rem;
}

.contact-channels {
  display: grid;
  width: min(960px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 44px;
}

.contact-channels > * {
  display: grid;
  min-height: 92px;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(250, 251, 248, 0.78);
  text-align: left;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease;
}

.contact-channels a:hover {
  transform: translateY(-3px);
  background: var(--white);
}

.contact-channels svg {
  color: var(--sea);
}

.contact-channels span,
.contact-channels small {
  display: block;
}

.contact-channels span {
  font-weight: 730;
  line-height: 1.3;
}

.contact-channels small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: start;
  gap: 18px;
  margin-block: 72px 120px;
}

.contact-form,
.contact-aside,
.form-success {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-form {
  padding: clamp(32px, 5vw, 58px);
}

.form-intro {
  margin-bottom: 32px;
}

.form-intro p {
  max-width: 590px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.9rem;
  font-weight: 760;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--paper);
}

.field input,
.field select {
  height: 50px;
  padding: 0 15px;
}

.field textarea {
  min-height: 145px;
  padding: 14px 15px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sea);
  outline: 3px solid rgba(82, 111, 133, 0.14);
}

.field [aria-invalid="true"] {
  border-color: #b64040;
}

.field-error {
  color: #a92f2f;
  font-size: 0.82rem;
}

.field-help {
  color: var(--muted);
  font-size: 0.76rem;
}

.consent-field label {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 450;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.submit-button {
  margin-top: 28px;
}

.contact-aside {
  position: sticky;
  top: 30px;
  padding: 38px;
  background: var(--mist);
}

.contact-aside-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 19px;
  color: var(--sea);
  background: var(--aqua);
}

.contact-aside dl {
  display: grid;
  margin-block: 30px;
  gap: 16px;
}

.contact-aside dl div {
  display: grid;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-aside dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-aside dd {
  margin: 3px 0 0;
  overflow-wrap: anywhere;
  font-weight: 650;
}

.urgent-note {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.urgent-note p {
  margin: 5px 0 0;
  font-size: 0.9rem;
}

.form-success {
  min-height: 500px;
  padding: 60px;
}

.form-success > span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--sea);
  font-size: 1.6rem;
}

.site-footer {
  padding-top: 80px;
  color: #dde5e7;
  background: #344f63;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 70px;
  padding-bottom: 60px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand small,
.site-footer p {
  color: #c4cfd4;
}

.footer-mark {
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--aqua);
  font-family: var(--display);
  font-size: 1.3rem;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #c4cfd4;
  font-size: 0.78rem;
}

@supports (animation-timeline: view()) {
  .home-intro-copy,
  .service-board,
  .visit-grid,
  .review-heading,
  .area-pill,
  .inner-hero,
  .services-hero,
  .services-layout,
  .process-cloud,
  .reviews-hero,
  .review-feature-grid,
  .map-first-hero,
  .location-layout,
  .local-note,
  .contact-intro-copy,
  .contact-layout {
    animation: soft-reveal linear both;
    animation-range: entry 8% cover 30%;
    animation-timeline: view();
  }
}

@keyframes soft-reveal {
  from {
    transform: translateY(24px) scale(0.985);
    clip-path: inset(7% 0 0 0 round 24px);
  }
  to {
    transform: translateY(0);
    clip-path: inset(0 round 0);
  }
}

@media (max-width: 960px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 99px;
    font-weight: 750;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: 240px;
    padding: 14px;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    padding: 10px 12px;
    border-radius: 10px;
  }

  .mobile-menu nav a:hover {
    background: var(--mist);
  }

  .cp-hero,
  .inner-hero,
  .inner-hero-flipped,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .cp-hero {
    padding-top: 70px;
  }

  .cp-hero-copy {
    max-width: 720px;
  }

  .cp-hero-visual img {
    max-height: 640px;
    aspect-ratio: 1.35;
  }

  .home-intro,
  .service-board,
  .visit-grid,
  .services-layout,
  .process-cloud,
  .location-layout,
  .local-note,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .intro-photo {
    width: min(620px, 100%);
  }

  .service-lead {
    min-height: 430px;
  }

  .visit-grid,
  .services-layout,
  .process-cloud {
    gap: 34px;
  }

  .services-intro,
  .contact-aside {
    position: static;
  }

  .area-pill {
    grid-template-columns: 1fr;
  }

  .soft-cta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .inner-hero-flipped .inner-hero-photo {
    order: 2;
  }

  .contact-channels {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.35rem);
  }

  .utility-inner span {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-lockup strong {
    font-size: 1rem;
  }

  .brand-lockup small {
    font-size: 0.6rem;
  }

  .cp-hero {
    min-height: auto;
    gap: 45px;
    padding-block: 55px 80px;
  }

  .cp-hero-copy > p:not(.eyebrow) {
    font-size: 1.08rem;
  }

  .hero-notes {
    display: grid;
    gap: 7px;
    margin-top: 30px;
  }

  .cp-hero-visual img {
    aspect-ratio: 0.95;
    border-radius: 45% 45% 22px 22px;
  }

  .availability-orb {
    right: -4px;
    bottom: -22px;
    width: 112px;
    height: 112px;
    border-width: 6px;
  }

  .availability-orb strong {
    font-size: 1rem;
  }

  .home-intro {
    gap: 42px;
    padding-block: 80px;
  }

  .intro-photo {
    width: 100%;
    border-radius: 26px;
  }

  .service-board {
    margin-bottom: 90px;
  }

  .service-lead {
    min-height: 470px;
    padding: 30px;
  }

  .service-stack article {
    grid-template-columns: 40px 1fr;
    padding: 25px 22px;
  }

  .visit-section,
  .review-section,
  .review-page-stream {
    padding-block: 80px;
  }

  .review-platforms {
    flex-direction: column;
    align-items: center;
  }

  .review-platform {
    width: 210px;
  }

  .area-pill,
  .soft-cta {
    padding: 30px;
  }

  .area-pill {
    margin-bottom: 80px;
  }

  .soft-cta {
    min-height: 340px;
    margin-block: 70px 90px;
  }

  .inner-hero {
    width: calc(100% - 20px);
    min-height: auto;
    margin-block: 20px 80px;
    padding: 10px;
    border-radius: 28px;
  }

  .inner-hero-copy {
    padding: 40px 20px;
  }

  .inner-hero-photo {
    min-height: 350px;
  }

  .services-layout {
    margin-bottom: 80px;
  }

  .services-hero {
    margin-bottom: 82px;
    padding-top: 64px;
  }

  .service-rows article {
    grid-template-columns: 42px 1fr;
    padding-inline: 5px;
  }

  .process-cloud {
    margin-bottom: 80px;
    padding: 38px 26px;
    border-radius: 48px 22px 48px 22px;
  }

  .reviews-hero {
    min-height: auto;
    padding-block: 46px 50px;
  }

  .reviews-hero-copy {
    padding: 0;
  }

  .rating-orb {
    width: 76px;
    height: 76px;
  }

  .review-page-stream {
    padding-top: 56px;
  }

  .review-feature-grid {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .review-feature-grid blockquote {
    min-height: 270px;
  }

  .map-first-hero {
    width: calc(100% - 20px);
    margin-block: 20px 80px;
  }

  .map-first-stage {
    min-height: 650px;
    border-radius: 28px 54px 28px 28px;
  }

  .map-first-stage iframe {
    min-height: 650px;
  }

  .map-first-copy {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 28px 24px;
    border-radius: 22px;
  }

  .contact-intro {
    padding-block: 62px 52px;
  }

  .contact-channels {
    margin-top: 34px;
  }

  .contact-layout {
    margin-top: 54px;
  }

  .contact-hero {
    width: calc(100% - 20px);
    min-height: auto;
    margin-block: 20px 80px;
    border-radius: 28px;
  }

  .contact-hero-copy {
    padding: 46px 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-aside {
    padding: 28px 22px;
  }

  .form-success {
    padding: 34px 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile rhythm and touch-target pass */
@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .shell {
    width: calc(100% - 36px);
  }

  .menu-button,
  .nav-toggle,
  .site-header button {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }

  .utility-bar a,
  .button,
  .primary-nav > a,
  .site-footer a {
    min-height: 44px;
  }

  .button {
    min-height: 48px;
  }

  h1,
  .hero-copy h1,
  .page-hero-copy h1,
  .map-first-copy h1,
  .contact-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 12vw, 3.25rem);
    line-height: .98;
    overflow-wrap: break-word;
  }

  .section,
  .service-section,
  .process-section,
  .review-section,
  .location-section {
    padding-block: 64px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-copy {
    padding-inline: 0;
  }

  .service-card,
  .review-card,
  .contact-form,
  .contact-aside {
    padding: 22px 18px;
  }

  .review-marquee,
  .review-marquee-track {
    max-width: 100vw;
  }

  .image-page-hero,
  .contact-hero {
    margin-bottom: 56px;
  }

  .map-first-stage,
  .map-first-stage iframe {
    min-height: 500px;
  }

  .map-first-copy,
  .contact-hero-copy {
    padding: 24px 20px;
  }

  input:not([type="checkbox"]):not([type="radio"]),
  select,
  textarea,
  button {
    min-height: 48px;
  }

  .services-hero {
    margin-bottom: 36px;
  }

  .services-layout,
  .process-cloud {
    margin-bottom: 56px;
  }

  .soft-cta {
    margin-block: 48px 64px;
  }

  .inner-hero,
  .map-first-hero,
  .contact-hero {
    margin-bottom: 48px;
  }
}
