:root {
  --black: #000000;
  --white: #ffffff;
  --sky: #8ecae6;
  --teal: #219ebc;
  --navy: #023047;
  --gold: #ffb703;
  --orange: #fb8500;
  --page-width: 1360px;
  --page-gutter: 32px;
  --page-gutter-mobile: 32px;
  --ink: var(--black);
  --muted: rgba(0, 0, 0, 0.72);
  --muted-strong: rgba(0, 0, 0, 0.86);
  --line: rgba(2, 48, 71, 0.14);
  --line-strong: rgba(2, 48, 71, 0.24);
  --soft-sky: rgba(142, 202, 230, 0.16);
  --soft-teal: rgba(33, 158, 188, 0.1);
  --soft-navy: rgba(2, 48, 71, 0.04);
  --card-line: rgba(248, 251, 253, 0.96);
  --card-line-accent: rgba(142, 202, 230, 0.14);
  --card-surface: var(--white);
  --card-surface-soft: rgba(142, 202, 230, 0.12);
  --section-space: 72px;
  --section-space-mobile: 54px;
  --layout-gap: 32px;
  --section-heading-gap: 30px;
  --section-heading-gap-compact: 24px;
  --card-padding: 24px;
  --card-gap: 16px;
  --body-copy-size: 0.93rem;
  --body-copy-size-lg: 0.95rem;
  --small-copy-size: 0.86rem;
  --copy-line-height: 1.72;
  --home-feature-heading-size: clamp(1.72rem, 3.3vw, 2.5rem);
  --home-feature-heading-size-mobile: clamp(1.48rem, 6.5vw, 1.95rem);
  --radius: 26px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(142, 202, 230, 0.18) 0, rgba(142, 202, 230, 0) 220px),
    var(--white);
  color: var(--ink);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 15.5px;
  line-height: 1.68;
}

body.mobile-nav-open {
  overflow: hidden;
}

.contact-page {
  background: var(--navy);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  appearance: none;
  border: 0;
  cursor: pointer;
}

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

.container {
  width: min(var(--page-width), calc(100vw - var(--page-gutter)));
  margin: 0 auto;
}

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

.header-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: clamp(116px, 10.2vw, 142px);
  gap: 18px;
  padding: 10px 0;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  max-width: min(258px, 100%);
}

.brand-wordmark img {
  width: 100%;
  height: auto;
}

.brand-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-seal {
  justify-self: center;
}

.brand-seal img {
  width: min(104px, 100%);
  height: auto;
}

.header-seal img {
  width: clamp(142px, 12vw, 182px);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  justify-self: end;
  max-width: 100%;
  min-height: 58px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.call-button {
  min-width: 110px;
  padding: 10px 17px;
  background: var(--gold);
  color: var(--black);
}

.call-button:hover {
  background: var(--teal);
  color: var(--white);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--black);
}

.menu-button-icon,
.menu-button-icon::before,
.menu-button-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.menu-button-icon {
  position: relative;
}

.menu-button-icon::before,
.menu-button-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-button-icon::before {
  top: -6px;
}

.menu-button-icon::after {
  top: 6px;
}

.menu-button[aria-expanded="true"] .menu-button-icon {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-button-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav-contact {
  display: none;
}

@media (min-width: 861px) {
  .primary-nav .mobile-nav-contact {
    display: none !important;
  }
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  min-height: 48px;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 500;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  border-bottom: 2px solid transparent;
}

.primary-nav a:hover {
  color: #2a9fbc;
}

.primary-nav a[aria-current="page"] {
  color: #2a9fbc;
  font-weight: 600;
}

.primary-nav a[aria-current="page"]::after {
  border-bottom-color: #2a9fbc;
}

.page-main {
  padding: 32px 0 0;
}

.page-main.contact-main {
  padding-top: 0;
  flex: 1;
  display: flex;
}

.faq-main {
  padding-top: 44px;
}

.services-main {
  padding-top: 44px;
}

.section-shell {
  padding: 0 0 var(--section-space);
}

.faq-intro {
  padding-bottom: 44px;
}

.services-intro .section-heading {
  margin-bottom: 44px;
}

.faq-list-section {
  padding-bottom: 44px;
}

.hero-home-grid,
.service-area-grid,
.story-grid,
.pricing-layout,
.contact-shell {
  display: grid;
  gap: var(--layout-gap);
}

.hero-home-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: center;
}

.hero-copy {
  display: grid;
  align-self: stretch;
  align-content: center;
  gap: 28px;
  max-width: 44rem;
}

.service-area-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.story-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
}

.pricing-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-photo,
.map-card,
.gallery-item,
.team-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
}

.hero-photo,
.gallery-item {
  position: relative;
}

.gallery-item {
  cursor: pointer;
}

.map-card {
  width: min(100%, 460px);
  justify-self: start;
}

.service-area-feature {
  display: grid;
  gap: 0;
  align-content: start;
  min-height: 100%;
  border: 1px solid var(--card-line-accent);
  border-radius: var(--radius-sm);
  background: var(--card-surface-soft);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-area-feature .map-card {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.74);
  justify-self: stretch;
}

.service-area-feature .map-card img {
  aspect-ratio: 4 / 2.4;
  object-position: center 54%;
}

.service-area-work-van .map-card img {
  object-fit: cover;
  object-position: center 58%;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 2.4;
  object-fit: cover;
  display: block;
}

.map-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 14px 12px;
  background: linear-gradient(180deg, rgba(2, 48, 71, 0) 0%, rgba(2, 48, 71, 0.88) 100%);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.03);
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--black);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--sky);
}

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

.center-text.eyebrow {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.page-intro.center-text {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy h1,
.page-heading,
.story-copy h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2.15rem, 4.7vw, 3.85rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.hero-copy h1,
.story-copy h1,
.page-heading {
  font-size: var(--home-feature-heading-size);
}

.hero-copy h1 {
  white-space: nowrap;
}

.hero-copy p,
.story-copy p,
.service-area-copy p,
.pricing-copy p,
.team-card p,
.review-card p,
.page-intro {
  color: var(--muted);
  line-height: var(--copy-line-height);
}

.hero-copy p,
.story-copy p {
  max-width: 39rem;
}

.hero-copy p {
  max-width: 44rem;
  margin: 0;
  font-size: var(--body-copy-size-lg);
}

.hero-copy h1 + p {
  margin-top: 0;
}

.page-intro {
  margin: 12px 0 0;
  max-width: 44rem;
  font-size: var(--body-copy-size);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.btn {
  padding: 12px 20px;
  border: 1px solid transparent;
}

.btn-sky {
  background: var(--white);
  border-color: var(--line-strong);
  color: var(--black);
}

.btn-sky:hover {
  border-color: var(--black);
  color: var(--black);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-orange:hover {
  background: var(--navy);
}

.btn-teal {
  background: var(--navy);
  color: var(--white);
}

.btn-teal:hover {
  background: var(--teal);
}

.section-heading {
  margin-bottom: var(--section-heading-gap);
}

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

.section-heading.compact {
  margin-bottom: var(--section-heading-gap-compact);
}

#reviews .section-heading {
  margin-bottom: 34px;
}

.section-heading h2,
.service-area-copy h2,
.pricing-copy h2 {
  margin: 0;
  color: var(--black);
  font-size: var(--home-feature-heading-size);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.accent-line {
  margin: 12px 0 0;
  color: var(--black);
  font-size: var(--body-copy-size-lg);
  font-weight: 600;
}

.card-grid,
.reviews-grid,
.team-grid,
.gallery-grid,
.faq-list,
.pricing-table,
.pricing-pairs,
.contact-form {
  display: grid;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.proof-grid {
  align-items: stretch;
}

.proof-grid .info-card {
  grid-template-rows: auto auto 1fr;
  align-content: start;
  background: var(--card-surface-soft);
  border-color: var(--card-line-accent);
}

.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.team-profile {
  display: grid;
  gap: 9px;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.team-profile .team-photo {
  width: min(100%, 224px);
  border: 0;
  border-radius: 28px;
  background: transparent;
}

.team-profile .team-photo img {
  border-radius: inherit;
  aspect-ratio: 1 / 1.04;
}

.team-profile-copy {
  display: grid;
  gap: 1px;
  justify-items: center;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

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

.services-gallery .gallery-grid {
  gap: 18px;
}

.faq-list {
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
}

.pricing-table,
.pricing-pairs,
.contact-form {
  gap: 12px;
}

.info-card,
.service-card,
.review-card,
.team-card {
  display: grid;
  gap: var(--card-gap);
  min-height: 100%;
  padding: var(--card-padding);
  border: 1px solid var(--card-line);
  border-radius: var(--radius-sm);
  background: var(--card-surface);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card {
  text-align: center;
  border-color: var(--card-line-accent);
}

.info-card::before,
.service-card::before,
.review-card::before,
.team-card::before {
  content: none;
}

.review-card {
  background: var(--card-surface-soft);
  border-color: var(--card-line-accent);
}

.service-card {
  grid-template-rows: auto auto 1fr;
  align-content: start;
  background: var(--card-surface-soft);
  border-color: var(--card-line-accent);
}

@media (min-width: 1500px) {
  .proof-grid {
    align-items: start;
  }

  .proof-grid .info-card {
    min-height: auto;
    align-self: start;
  }

  .service-area-grid {
    align-items: start;
  }

  .service-area-feature {
    min-height: auto;
    align-self: start;
  }
}

@media (hover: hover) {
  .info-card:hover,
  .service-card:hover,
  .review-card:hover,
  .team-card:hover,
  .service-area-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(2, 48, 71, 0.07);
  }
}

.info-card h3,
.service-card h2,
.service-card h3,
.team-card h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.card-divider {
  width: 64px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--sky);
}

.info-card p {
  margin: 0;
  font-size: var(--body-copy-size);
}

.cta-banner {
  width: min(var(--page-width), calc(100vw - var(--page-gutter)));
  min-height: 182px;
  margin: 0 auto;
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(36, 43, 48, 0.78), rgba(36, 43, 48, 0.64)),
    url("other/IMG_0181.jpeg") center / cover no-repeat;
}

.cta-banner-inner {
  display: grid;
  place-items: center;
  min-height: 182px;
  padding: 12px 24px 0;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  margin: 0;
  font-size: var(--home-feature-heading-size);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cta-banner a {
  display: inline-flex;
  margin-top: 4px;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 600;
}

.cta-banner a:hover {
  background: var(--teal);
  color: var(--white);
}

.service-area-copy {
  display: grid;
  gap: 12px;
  padding: var(--card-padding) var(--card-padding) 18px;
  text-align: left;
}

.service-area-copy h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.service-area-copy p {
  margin: 0;
  max-width: none;
  color: var(--muted-strong);
  font-size: var(--body-copy-size);
  line-height: var(--copy-line-height);
}

.service-area-feature .card-divider {
  margin: 0;
}

.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
  align-content: start;
}

.service-card li {
  margin-bottom: 0;
  padding-left: 0;
  color: rgba(0, 0, 0, 0.86);
  font-size: var(--body-copy-size);
  line-height: var(--copy-line-height);
}

.service-card li::before {
  content: none;
}

.service-card li:last-child {
  margin-bottom: 0;
}

.service-note {
  margin: 16px 0 0;
  max-width: none;
  text-align: left;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
  white-space: nowrap;
}

.pricing-copy {
  display: grid;
  gap: 8px;
  align-self: center;
  align-content: center;
  justify-items: start;
  text-align: left;
  padding: 24px 18px;
  max-width: 40rem;
  margin: 0;
}

.pricing-copy h2 {
  margin-bottom: 16px;
}

.pricing-copy p {
  margin: 0;
  max-width: 40rem;
  color: var(--black);
  font-size: var(--body-copy-size);
}

.pricing-copy-line {
  display: block;
  margin-top: 7px;
}

.pricing-table {
  width: 100%;
  margin: 0;
  gap: 0;
}

.pricing-line {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 18px 24px 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.pricing-line + .pricing-line {
  border-top: 0;
}

.pricing-line + .pricing-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-top: 1px solid var(--line);
}

.pricing-label {
  display: grid;
  gap: 8px;
  align-content: center;
  justify-items: start;
  text-align: left;
}

.pricing-label h3 {
  margin: 0;
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.pricing-label p {
  margin: 0;
  color: var(--black);
  font-size: var(--small-copy-size);
  font-style: italic;
}

.pricing-pairs {
  gap: 0;
  align-content: center;
}

.pricing-pairs div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: baseline;
  padding: 6px 0;
  border-top: 0;
}

.pricing-pairs div:first-child {
  padding-top: 0;
}

.pricing-pairs div:last-child {
  padding-bottom: 0;
}

.pricing-pairs span {
  color: var(--black);
  font-size: var(--body-copy-size);
  line-height: var(--copy-line-height);
}

.pricing-pairs strong {
  color: var(--black);
  font-size: 0.96rem;
  font-weight: 700;
  justify-self: end;
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.gallery-grid:not(.is-expanded) [data-gallery-extra] {
  display: none;
}

.gallery-actions {
  margin-top: 18px;
  text-align: center;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 48, 71, 0.96);
}

.gallery-lightbox-shell {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 64px));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.gallery-lightbox-figure {
  margin: 0;
  position: relative;
  display: grid;
  gap: 14px;
  justify-items: center;
  touch-action: pan-y;
}

.gallery-lightbox-figure.is-loading::before {
  content: "";
  width: min(100%, 920px);
  aspect-ratio: 4 / 3;
  min-height: clamp(220px, 44vh, 440px);
  max-height: min(74vh, 820px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.14) 50%, rgba(255, 255, 255, 0.05) 100%),
    rgba(255, 255, 255, 0.04);
  background-size: 220% 100%;
  animation: gallery-lightbox-shimmer 1.15s linear infinite;
}

.gallery-lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(74vh, 820px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.04);
  transition: opacity 0.16s ease;
}

.gallery-lightbox-figure.is-transitioning .gallery-lightbox-image,
.gallery-lightbox-figure.is-loading .gallery-lightbox-image {
  opacity: 0;
}

.gallery-lightbox-caption {
  max-width: 52rem;
  min-height: 1.5em;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.gallery-lightbox-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  line-height: 1;
}

.gallery-lightbox-nav {
  width: 52px;
  height: 52px;
  font-size: 2rem;
  line-height: 1;
}

@keyframes gallery-lightbox-shimmer {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -20% 0;
  }
}

.story-copy p {
  margin: 18px 0 0;
  max-width: 43rem;
  font-size: var(--body-copy-size-lg);
}

.story-copy h1 + p {
  margin-top: 24px;
}

.team-card h3,
.team-profile h3 {
  margin: 0;
  color: #2a9fbc;
  font-size: 1.18rem;
}

.team-role {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.62;
}

.team-bio {
  margin: 0;
  font-size: var(--body-copy-size);
}

.review-card {
  grid-template-rows: auto 1fr auto;
  padding: var(--card-padding);
}

.review-stars {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
}

.review-card p {
  margin: 0;
  font-size: var(--body-copy-size);
  line-height: var(--copy-line-height);
  align-self: start;
}

.review-author {
  margin-top: 14px;
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 400;
  align-self: end;
}

.faq-item {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
  padding: 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item[open] {
  border-color: var(--line-strong);
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 20px 36px 20px 0;
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.48;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  color: var(--black);
  font-size: 1.18rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--black);
  font-size: var(--body-copy-size);
  line-height: var(--copy-line-height);
}

.contact-section {
  padding: 0;
  background: var(--navy);
}

.contact-section.standalone {
  margin-top: 0;
  flex: 1;
}

.contact-section.standalone .contact-shell {
  min-height: 100%;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
}

.contact-section.standalone .contact-copy {
  grid-column: 1;
  grid-row: 1;
}

.contact-section.standalone .contact-form {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.contact-section.standalone .footer-bottom {
  grid-row: 3;
  margin-top: 0;
  align-self: end;
}

.contact-shell {
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 26px;
  align-items: start;
  padding: 34px 0 0;
  color: var(--white);
  border-radius: 0;
  background: transparent;
}

.contact-copy {
  max-width: 22rem;
  justify-self: start;
}

.contact-copy h2 {
  margin: 0 0 28px;
  color: var(--white);
  font-size: var(--home-feature-heading-size);
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.contact-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  min-height: 34px;
  margin-top: 0;
}

.contact-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-item-body {
  display: grid;
  gap: 2px;
}

.contact-item a,
.contact-item strong {
  display: inline-block;
  color: var(--white);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.35;
}

.contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.35;
}

.contact-form {
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

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

.form-row-contact-top {
  grid-template-columns: minmax(0, 1.75fr) minmax(0, 1.75fr) minmax(0, 1.5fr) minmax(0, 3.4fr);
}

.form-row-model-address {
  --rv-model-width: calc(((100% - (var(--form-row-gap) * 3)) * 5 / 12) + var(--form-row-gap));
  --service-address-width: calc(((100% - (var(--form-row-gap) * 3)) * 7 / 12) + var(--form-row-gap));
  grid-template-columns: minmax(0, var(--rv-model-width)) minmax(0, var(--service-address-width));
}

.contact-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  font-weight: 600;
}

.contact-form-address-field {
  position: relative;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  padding: 9px 12px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: var(--white);
}

.contact-form input:autofill,
.contact-form textarea:autofill,
.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill,
.contact-form textarea:-webkit-autofill:hover,
.contact-form textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--black);
  caret-color: var(--black);
  box-shadow: 0 0 0 1000px rgba(232, 237, 241, 0.96) inset;
  -webkit-box-shadow: 0 0 0 1000px rgba(232, 237, 241, 0.96) inset;
  transition: background-color 9999s ease-out 0s;
}

.contact-form input:disabled,
.contact-form textarea:disabled,
.contact-form select:disabled {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(213, 220, 225, 0.94);
  color: rgba(24, 35, 46, 0.72);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.contact-form input:disabled::placeholder,
.contact-form textarea:disabled::placeholder {
  color: rgba(24, 35, 46, 0.46);
}

.contact-form input:disabled:autofill,
.contact-form textarea:disabled:autofill,
.contact-form input:disabled:-webkit-autofill,
.contact-form input:disabled:-webkit-autofill:hover,
.contact-form input:disabled:-webkit-autofill:focus,
.contact-form textarea:disabled:-webkit-autofill,
.contact-form textarea:disabled:-webkit-autofill:hover,
.contact-form textarea:disabled:-webkit-autofill:focus,
.contact-form select:disabled:-webkit-autofill {
  -webkit-text-fill-color: rgba(24, 35, 46, 0.72);
  caret-color: transparent;
  box-shadow: 0 0 0 1000px rgba(213, 220, 225, 0.94) inset;
  -webkit-box-shadow: 0 0 0 1000px rgba(213, 220, 225, 0.94) inset;
}

.contact-form input[data-invalid="true"],
.contact-form textarea[data-invalid="true"],
.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #ff7c7c;
  background: rgba(255, 244, 244, 0.98);
  box-shadow: 0 0 0 3px rgba(255, 124, 124, 0.18);
}

.contact-form input[data-invalid="true"]:focus,
.contact-form textarea[data-invalid="true"]:focus,
.contact-form input[aria-invalid="true"]:focus,
.contact-form textarea[aria-invalid="true"]:focus {
  border-color: #ff7c7c;
  box-shadow: 0 0 0 3px rgba(255, 124, 124, 0.22);
}

.contact-form textarea {
  min-height: 82px;
  resize: vertical;
}

.address-autocomplete-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 24;
  max-height: 260px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 44px rgba(7, 21, 29, 0.28);
  backdrop-filter: blur(12px);
}

.address-autocomplete-options[hidden] {
  display: none !important;
}

.address-option {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
  background: transparent;
  color: var(--black);
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.address-option:last-child {
  border-bottom: 0;
}

.address-option:hover,
.address-option.is-active {
  background: rgba(18, 188, 209, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
}

.form-submit-spinner {
  display: none;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: currentColor;
  border-radius: 999px;
  animation: form-submit-spin 0.8s linear infinite;
}

.form-submit[data-state="loading"] {
  cursor: progress;
  background: var(--gold);
  color: var(--black);
}

.form-submit[data-state="loading"]:hover,
.form-submit[data-state="loading"]:active {
  background: var(--gold);
  color: var(--black);
}

.form-submit[data-state="loading"] .form-submit-spinner {
  display: inline-flex;
}

.form-submit[data-state="success"] {
  background: var(--gold);
  color: var(--black);
}

.form-submit:disabled {
  cursor: not-allowed;
}

.form-submit[data-state="success"]:hover,
.form-submit[data-state="success"]:active {
  background: var(--gold);
  color: var(--black);
}

.form-submit:hover,
.form-submit:active {
  background: var(--gold);
  color: var(--black);
}

.form-status {
  min-height: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="error"] {
  display: block;
  color: #ffbcbc;
}

@keyframes form-submit-spin {
  to {
    transform: rotate(360deg);
  }
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-home-grid,
  .service-area-grid,
  .story-grid,
  .pricing-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    max-width: none;
  }

  .pricing-copy {
    max-width: none;
    padding: 22px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .proof-grid .info-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: min(100%, calc((100% - 20px) / 2));
    justify-self: center;
  }

  .hero-copy h1 {
    white-space: normal;
  }

  .service-note {
    white-space: normal;
  }

  .contact-section.standalone .contact-shell {
    grid-template-rows: auto auto 1fr auto;
  }

  .contact-section.standalone .contact-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .contact-section.standalone .contact-form {
    grid-column: 1;
    grid-row: 2;
  }

  .contact-section.standalone .footer-bottom {
    grid-column: 1;
    grid-row: 4;
  }
}

@media (max-width: 860px) {
  .hero-copy {
    display: contents;
  }

  .hero-home-grid {
    gap: 12px;
  }

  .hero-home-grid .hero-copy h1 {
    order: 1;
  }

  .hero-home-grid .hero-photo {
    order: 2;
  }

  .hero-home-grid .hero-copy p:first-of-type {
    order: 3;
  }

  .hero-home-grid .hero-copy p:nth-of-type(2) {
    order: 4;
  }

  .hero-home-grid .hero-copy p {
    line-height: 1.56;
  }

  .hero-home-grid .intro-actions {
    order: 5;
  }
  body {
    background: var(--white);
  }

  .contact-page {
    background: var(--white);
  }

  body.mobile-nav-open .header-seal {
    opacity: 0;
    visibility: hidden;
  }

  .site-header {
    transition: transform 0.28s ease;
    will-change: transform;
  }

  .site-header.is-hidden-mobile {
    transform: translateY(calc(-100% - 8px));
  }

  .container,
  .cta-banner {
    width: min(var(--page-width), calc(100vw - var(--page-gutter-mobile)));
  }

  .cta-banner {
    min-height: 180px;
    background:
      linear-gradient(115deg, rgba(36, 43, 48, 0.78), rgba(36, 43, 48, 0.64)),
      url("other/IMG_0181.jpeg") 62% 58% / 210% auto no-repeat;
  }

  .cta-banner-inner {
    min-height: 180px;
  }

  .cta-banner h2 {
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .cta-banner a {
    margin-top: 14px;
  }

  .header-top {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    position: relative;
    align-items: center;
    justify-items: stretch;
    text-align: left;
    column-gap: 0;
    row-gap: 0;
    min-height: 0;
    padding: 16px 0 12px;
  }

  .brand-wordmark {
    display: none;
  }

  .header-seal {
    grid-column: 2;
    justify-self: center;
  }

  .header-seal img {
    width: min(198px, 56vw);
  }

  .header-actions {
    display: contents;
  }

  .header-cta {
    position: absolute;
    top: 4px;
    right: 10px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    z-index: 230;
  }

  .header-cta .call-button {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-self: start;
    width: 52px;
    height: 52px;
    border: 0;
    outline: none;
    background: transparent;
    box-shadow: none;
  }

  .menu-button-icon,
  .menu-button-icon::before,
  .menu-button-icon::after {
    width: 30px;
    height: 3px;
    background: var(--black);
  }

  .menu-button-icon::before {
    top: -9px;
  }

  .menu-button-icon::after {
    top: 9px;
  }

  .menu-button[aria-expanded="true"] .menu-button-icon {
    background: transparent;
  }

  .menu-button[aria-expanded="true"] .menu-button-icon::before,
  .menu-button[aria-expanded="true"] .menu-button-icon::after {
    background: var(--black);
  }

  .menu-button[aria-expanded="true"] {
    position: fixed;
    top: 4px;
    right: calc((var(--page-gutter-mobile) / 2) + 10px);
    z-index: 231;
  }

  .menu-button[aria-expanded="true"] .menu-button-icon::before {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-button-icon::after {
    transform: translateY(-9px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    width: 100vw;
    height: 100dvh;
    padding: 0 var(--page-gutter-mobile);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    transition: opacity 0.22s ease, visibility 0s linear 0.22s;
    background: var(--white);
    border: 0;
    box-shadow: none;
    z-index: 220;
  }

  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .primary-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0;
    color: var(--black);
    font-size: clamp(1.35rem, 6vw, 1.85rem);
    font-weight: 500;
    line-height: 1.18;
    text-align: center;
  }

  .primary-nav a[aria-current="page"] {
    display: inline-flex;
    color: #2a9fbc;
    font-weight: 600;
  }

  .primary-nav a::after {
    display: none;
  }

  .mobile-nav-contact {
    display: inline-flex !important;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }

  .footer-former-name {
    display: block;
  }
}

@media (max-width: 700px) {
  .page-main,
  .page-main {
    padding-top: 22px;
  }

  .page-main.contact-main {
    padding-top: 0;
  }

  .faq-main {
    padding-top: 30px;
  }

  .services-main {
    padding-top: 30px;
  }

  .section-shell {
    padding-bottom: var(--section-space-mobile);
  }

  .faq-intro {
    padding-bottom: 30px;
  }

  .services-intro {
    padding-bottom: 32px;
  }

  .services-intro .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .service-note {
    margin: 16px 0 0;
    text-align: left;
  }

  .faq-item {
    margin: 0 18px;
  }

  .faq-item summary {
    padding: 20px 36px 20px 0;
  }

  .faq-item summary::after {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
  }

  .faq-item p {
    padding: 0 0 20px;
  }

  .services-intro .page-heading span {
    display: block;
  }

  .faq-list-section {
    padding-bottom: 30px;
  }

  .contact-section {
    padding-bottom: 0;
  }

  #reviews {
    margin-top: 0;
  }

  .hero-copy h1,
  .page-heading,
  .story-copy h1 {
    font-size: clamp(1.85rem, 9vw, 2.75rem);
  }

  .hero-copy h1,
  .page-heading,
  .story-copy h1,
  .section-heading h2,
  .service-area-copy h2,
  .pricing-copy h2,
  .cta-banner h2,
  .contact-copy h2 {
    font-size: var(--home-feature-heading-size-mobile);
  }

  .intro-actions {
    flex-direction: column;
    align-items: stretch;
  }

  #reviews .section-heading h2 span {
    display: block;
  }

  .trust-row span,
  .btn,
  .call-button {
    width: 100%;
  }

  .header-cta .call-button,
  .header-cta .menu-button {
    width: auto;
  }

  .card-grid,
  .reviews-grid,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .proof-grid .info-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

  .pricing-line {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 18px;
  }

  .pricing-copy-line {
    display: inline;
    margin-top: 0;
  }

  .pricing-line + .pricing-line::before {
    left: 18px;
    right: 18px;
  }

  .pricing-label {
    margin-bottom: 8px;
  }

  .pricing-pairs div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 0;
  }

  .pricing-pairs span {
    max-width: 70%;
  }

  .pricing-pairs strong {
    flex-shrink: 0;
  }

  .contact-shell {
    padding: 24px 0 0;
  }

  .contact-copy h2 {
    margin-left: 8px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-form textarea {
    resize: none;
    overflow-y: hidden;
  }

  .contact-form {
    padding: 0;
  }

  .gallery-lightbox {
    padding: 18px;
  }

  .gallery-lightbox-shell {
    width: min(100vw - 36px, 760px);
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-lightbox-close {
    position: fixed;
    top: calc((var(--page-gutter-mobile) / 2) + 10px);
    right: calc((var(--page-gutter-mobile) / 2) + 10px);
    width: 52px;
    height: 52px;
  }

  .gallery-lightbox-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 46px;
    height: 46px;
  }

  .gallery-lightbox-prev {
    left: 8px;
  }

  .gallery-lightbox-next {
    right: 8px;
  }

  .gallery-lightbox-image {
    max-height: 64vh;
  }

  .gallery-lightbox-caption {
    font-size: 0.9rem;
  }
}
