:root {
  --navy: #071c2f;
  --navy-2: #0c2d46;
  --blue: #1f7fbf;
  --sky: #8fd0f5;
  --teal: #1f9a9a;
  --ink: #182431;
  --muted: #5d6d7d;
  --line: #dce6ee;
  --soft: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 28, 47, 0.13);
  --radius: 8px;
  --header-h: 78px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--white);
  padding-bottom: 0;
}

.container-xl {
  margin-inline: auto;
  max-width: 1140px;
  padding-inline: 1rem;
  width: 100%;
}

.fixed-top {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1030;
}

.d-flex {
  display: flex;
}

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

.gap-2 {
  gap: 0.5rem;
}

.d-none {
  display: none;
}

.w-100 {
  width: 100%;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.py-5 {
  padding-block: 3rem;
}

.d-inline-block {
  display: inline-block;
}

a {
  color: var(--blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  background: var(--white);
  color: var(--navy);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 230, 238, 0.82);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(7, 28, 47, 0.12);
}

.navbar {
  align-items: center;
  display: flex;
  min-height: var(--header-h);
}

.navbar > .container-xl {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.brand-mark {
  color: var(--navy);
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark span {
  color: var(--blue);
}

.navbar-nav {
  display: flex;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
}

.collapse:not(.show) {
  display: none;
}

.nav-link {
  color: var(--navy);
  display: block;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--blue);
}

.nav-quote,
.nav-phone {
  color: var(--blue);
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 800;
  gap: 0.5rem;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-lg {
  min-height: 52px;
  padding: 0.75rem 1.2rem;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  --bs-btn-bg: var(--blue);
  --bs-btn-border-color: var(--blue);
  --bs-btn-hover-bg: #176da8;
  --bs-btn-hover-border-color: #176da8;
  --bs-btn-active-bg: #145d90;
  --bs-btn-active-border-color: #145d90;
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(31, 127, 191, 0.28);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #176da8;
  border-color: #176da8;
  color: var(--white);
}

.btn-call {
  --bs-btn-color: var(--navy);
  --bs-btn-bg: #e9f6fd;
  --bs-btn-border-color: #bfe4f8;
  --bs-btn-hover-color: var(--navy);
  --bs-btn-hover-bg: #d7effc;
  --bs-btn-hover-border-color: #98d3f3;
  background: #e9f6fd;
  border-color: #bfe4f8;
  color: var(--navy);
}

.btn-outline-light {
  --bs-btn-hover-color: var(--navy);
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: var(--white);
  color: var(--navy);
}

.btn-link-light {
  color: var(--white);
  text-decoration: none;
}

.btn-link-light:hover {
  color: var(--sky);
}

.hero {
  min-height: 94vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  padding: calc(var(--header-h) + 5rem) 0 5rem;
}

.hero-media,
.hero-overlay {
  inset: 0;
  height: 100%;
  position: absolute;
  width: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 18% 48%, rgba(7, 28, 47, 0.78) 0%, rgba(7, 28, 47, 0.62) 34%, rgba(7, 28, 47, 0.18) 72%),
    linear-gradient(90deg, rgba(7, 28, 47, 0.86) 0%, rgba(7, 28, 47, 0.56) 42%, rgba(7, 28, 47, 0.1) 100%),
    linear-gradient(0deg, rgba(7, 28, 47, 0.32), rgba(7, 28, 47, 0.06));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: max(calc((100vw - 1140px) / 2), 0px);
}

.eyebrow {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sky);
}

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 8vw, 5.7rem);
  max-width: 11ch;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 1.8vw, 1.3rem);
  margin: 1.6rem 0 2rem;
  max-width: 660px;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  box-shadow: var(--shadow);
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid rgba(220, 230, 238, 0.8);
  border-radius: var(--radius);
}

.trust-grid div {
  padding: 1.15rem;
  border-right: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.15;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 0.25rem;
}

.section {
  padding: 6rem 0;
}

.section-light {
  background: var(--soft);
}

.section-heading {
  margin-bottom: 3rem;
  max-width: 760px;
}

.section-heading h2,
.specialty-layout h2,
.pricing-card h2,
.coverage-layout h2,
.about-layout h2,
.quote-copy h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-heading p,
.specialty-layout p,
.pricing-card p,
.coverage-layout p,
.about-layout p,
.quote-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  text-wrap: pretty;
}

.services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.credential {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover,
.credential:hover {
  border-color: rgba(31, 127, 191, 0.35);
  box-shadow: 0 16px 38px rgba(7, 28, 47, 0.09);
  transform: translateY(-3px);
}

.service-card i {
  color: var(--blue);
  font-size: 1.65rem;
}

.service-card h3,
.credential h3 {
  font-size: 1.18rem;
  margin: 1rem 0 0.6rem;
}

.service-card p,
.credential p {
  color: var(--muted);
  margin-bottom: 0;
}

.specialty-section,
.experience-section,
.quote-section {
  background:
    linear-gradient(135deg, rgba(7, 28, 47, 0.97), rgba(12, 45, 70, 0.96)),
    var(--navy);
  color: var(--white);
}

.specialty-section h2,
.experience-section h2,
.quote-section h2 {
  color: var(--white);
}

.specialty-section p,
.experience-section .section-heading p,
.quote-section p {
  color: rgba(255, 255, 255, 0.78);
}

.specialty-layout,
.coverage-layout,
.about-layout,
.quote-layout,
.experience-layout {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.specialty-panel {
  display: grid;
  gap: 0.8rem;
}

.specialty-media-stack {
  display: grid;
  gap: 1rem;
}

.specialty-panel div {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  display: flex;
  font-size: 1.1rem;
  font-weight: 800;
  gap: 1rem;
  padding: 1.1rem;
}

.specialty-panel span {
  color: var(--sky);
  font-size: 0.84rem;
}

.disclaimer {
  border-left: 3px solid var(--sky);
  padding-left: 1rem;
}

.boundary-example {
  align-items: center;
  aspect-ratio: 16 / 9;
  background: #061827;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  margin: 0;
  overflow: hidden;
}

.boundary-example img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.video-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1rem;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  display: grid;
  place-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
  background: var(--navy);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.video-placeholder::before {
  background:
    radial-gradient(circle at center, rgba(7, 28, 47, 0.12), rgba(7, 28, 47, 0.34)),
    linear-gradient(180deg, rgba(7, 28, 47, 0.08), rgba(7, 28, 47, 0.46));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.video-placeholder:hover,
.video-placeholder:focus-visible {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.video-thumbnail {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 550ms ease;
  width: 100%;
}

.video-placeholder:hover .video-thumbnail,
.video-placeholder:focus-visible .video-thumbnail {
  transform: scale(1.035);
}

.play-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  font-size: 2rem;
  height: 4rem;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  width: 4rem;
  z-index: 2;
}

.youtube-frame {
  border: 0;
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 16 / 9;
}

.photo-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  background: var(--white);
  border-radius: var(--radius);
  margin: 0;
  overflow: hidden;
}

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

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-large img {
  aspect-ratio: 1 / 1;
}

.work-social-cta {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  justify-content: center;
  margin: clamp(2.5rem, 5vw, 4rem) auto clamp(1.25rem, 3vw, 2rem);
  max-width: 880px;
  text-align: center;
}

.work-social-cta h3 {
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  margin: 0 0 0.35rem;
}

.work-social-cta p {
  color: var(--muted);
  margin: 0;
  max-width: 58ch;
}

.work-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.experience-layout {
  align-items: start;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.credential-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.credential {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.credential h3,
.credential p {
  color: var(--white);
}

.credential p {
  color: rgba(255, 255, 255, 0.74);
}

.pricing-section {
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.pricing-card {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.pricing-actions {
  display: grid;
  gap: 0.9rem;
  min-width: 230px;
}

.coverage-map {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
  padding: clamp(0.65rem, 1.5vw, 1rem);
}

.coverage-map img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}

.reviews-section {
  background: var(--white);
}

.review-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(7, 28, 47, 0.07);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: space-between;
  margin: 0;
  padding: 1.35rem;
}

.review-card-featured {
  background: linear-gradient(135deg, #ffffff, #e9f6fd);
  border-color: #bfe4f8;
  grid-column: span 2;
}

.review-card blockquote {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.62;
  margin: 0;
  text-wrap: pretty;
}

.review-card-featured blockquote {
  color: var(--navy);
  font-size: clamp(1.12rem, 1.6vw, 1.32rem);
  font-weight: 700;
  line-height: 1.5;
}

.review-card figcaption {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.12rem;
  padding-top: 0.9rem;
}

.review-card figcaption strong {
  color: var(--navy);
  font-size: 1rem;
}

.review-card figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
}

.about-section {
  background: var(--soft);
}

.about-photo {
  aspect-ratio: 2 / 3;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0;
  min-height: 360px;
  overflow: hidden;
}

.about-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: clamp(1.25rem, 4vw, 2rem);
}

.form-label {
  color: var(--navy);
  display: inline-block;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.form-control {
  background: var(--white);
  border-color: #c8d6e2;
  border-radius: var(--radius);
  border-style: solid;
  border-width: 1px;
  display: block;
  min-height: 48px;
  padding: 0.65rem 0.8rem;
  width: 100%;
}

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 0.25rem rgba(31, 127, 191, 0.18);
}

.quote-status {
  margin-top: 1rem;
}

.invalid-feedback {
  color: #8a1f11;
  display: none;
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.was-validated .form-control:invalid {
  border-color: #c33c2e;
}

.was-validated .form-control:invalid ~ .invalid-feedback {
  display: block;
}

.form-alert {
  border-radius: var(--radius);
  margin: 0;
  padding: 1rem;
}

.form-alert-success {
  background: #e7f8f1;
  border: 1px solid #a8e4cd;
  color: #0d5d43;
}

.form-alert-error {
  background: #fff0ef;
  border: 1px solid #ffc8c0;
  color: #8a1f11;
}

.direct-call {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  display: grid;
  gap: 0.35rem;
  margin-top: 1.5rem;
  padding: 1rem;
}

.direct-call span {
  color: rgba(255, 255, 255, 0.7);
}

.direct-call a {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 850;
  text-decoration: none;
}

.honeypot {
  left: -10000px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  background: #061827;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 6rem;
}

.site-footer a,
.site-footer h2,
.footer-brand {
  color: var(--white);
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 0.6fr 1fr;
}

.footer-grid nav {
  display: grid;
  gap: 0.4rem;
}

.footer-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social-links a {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 0;
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 2.1rem;
  height: 48px;
  justify-content: center;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
  width: 48px;
}

.footer-social-links a:visited {
  color: var(--white);
  text-decoration: none;
}

.footer-social-links a::before,
.footer-social-links a::after {
  content: none;
}

.footer-social-links a:hover,
.footer-social-links a:focus {
  color: var(--sky);
  opacity: 0.92;
  text-decoration: none;
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 580ms ease, transform 580ms ease;
}

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

.simple-page {
  background: var(--soft);
}

.privacy-content {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 780px;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.privacy-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .d-sm-inline-flex {
    display: inline-flex;
  }

  .d-sm-none {
    display: none;
  }
}

@media (max-width: 575px) {
  .d-sm-none {
    display: block;
  }
}

@media (min-width: 768px) {
  .d-md-inline-flex {
    display: inline-flex;
  }

  .d-md-none {
    display: none;
  }
}

@media (max-width: 767px) {
  .d-md-none {
    display: block;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex;
    flex-basis: auto;
  }

  .ms-lg-auto {
    margin-left: auto;
  }

  .mb-lg-0 {
    margin-bottom: 0;
  }

  .order-lg-2 {
    order: 2;
  }
}

@media (max-width: 1199px) {
  .hero-content {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  :root {
    --header-h: 70px;
  }

  .navbar > .container-xl {
    justify-content: space-between;
  }

  .navbar-toggler {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: inline-flex;
    height: 44px;
    justify-content: center;
    padding: 0;
    width: 48px;
  }

  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    background: var(--navy);
    content: "";
    display: block;
    height: 2px;
    width: 22px;
  }

  .navbar-toggler-icon {
    position: relative;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    left: 0;
    position: absolute;
  }

  .navbar-toggler-icon::before {
    top: -7px;
  }

  .navbar-toggler-icon::after {
    top: 7px;
  }

  .navbar-collapse {
    border-top: 1px solid var(--line);
    margin-top: 0.8rem;
    padding-top: 0.8rem;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    transform: translateY(-24%);
  }

  .trust-grid div:nth-child(3n) {
    border-right: 0;
  }

  .services-grid,
  .credential-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card-featured {
    grid-column: span 2;
  }

  .specialty-layout,
  .coverage-layout,
  .about-layout,
  .quote-layout,
  .experience-layout,
  .pricing-card {
    grid-template-columns: 1fr;
  }

  .pricing-actions {
    min-width: 0;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 70px;
  }

  .section {
    padding: 4.25rem 0;
  }

  .hero {
    min-height: 88vh;
    padding-bottom: 4rem;
  }

  .hero-media {
    object-position: 58% center;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10vw, 2.85rem);
    max-width: 100%;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .work-social-cta {
    align-items: center;
  }

  .work-social-links {
    justify-content: center;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    transform: translateY(0);
    margin: -2rem 0 0;
  }

  .trust-grid div {
    border-bottom: 1px solid var(--line);
  }

  .trust-grid div:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .trust-grid div:nth-child(2n) {
    border-right: 0;
  }

  .trust-grid div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .services-grid,
  .video-grid,
  .credential-grid,
  .review-grid,
  .photo-gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-column: auto;
    grid-row: auto;
  }

  .review-card-featured {
    grid-column: auto;
  }

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

  .mobile-cta {
    background: var(--white);
    border-top: 1px solid var(--line);
    bottom: 0;
    box-shadow: 0 -10px 30px rgba(7, 28, 47, 0.13);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    left: 0;
    padding: 0.55rem;
    position: fixed;
    right: 0;
    z-index: 1040;
  }

  .mobile-cta a {
    align-items: center;
    border-radius: var(--radius);
    color: var(--navy);
    display: inline-flex;
    font-weight: 850;
    gap: 0.45rem;
    justify-content: center;
    min-height: 48px;
    text-decoration: none;
  }

  .mobile-cta a:first-child {
    background: #e9f6fd;
  }

  .mobile-cta a:last-child {
    background: var(--blue);
    color: var(--white);
  }
}

@media (max-width: 420px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div,
  .trust-grid div:nth-child(2n),
  .trust-grid div:nth-child(3n) {
    border-right: 0;
  }

  .trust-grid div:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .btn:hover,
  .service-card:hover,
  .credential:hover,
  .video-placeholder:hover,
  .video-placeholder:focus-visible,
  .gallery-item:hover img {
    transform: none;
  }
}
