:root {
  --blue-900: #063b78;
  --blue-800: #0757ad;
  --blue-600: #0e78d6;
  --blue-500: #1197ec;
  --teal-600: #0794a8;
  --teal-500: #08b5c9;
  --ink: #101827;
  --ink-soft: #263548;
  --muted: #5d6978;
  --line: #dbe5ee;
  --surface: #f4f8fb;
  --surface-strong: #eaf2f7;
  --white: #ffffff;
  --dark: #071522;
  --radius: 8px;
  --shadow: 0 18px 44px rgba(15, 32, 51, 0.13);
  --shadow-soft: 0 10px 28px rgba(15, 32, 51, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10001;
  transform: translateY(-180%);
  background: var(--blue-800);
  color: var(--white);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.05rem, 4.6vw, 3.55rem);
  font-weight: 850;
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 820;
}

h3 {
  font-size: clamp(1.12rem, 2.1vw, 1.42rem);
  font-weight: 800;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(17, 151, 236, 0.11);
  color: var(--blue-800);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

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

.btn-sm {
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-size: 0.93rem;
}

.btn-solid {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(7, 87, 173, 0.22);
}

.btn-solid:hover {
  background: var(--blue-800);
}

.btn-outline {
  color: var(--blue-800);
  border-color: rgba(7, 87, 173, 0.3);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--blue-800);
  color: var(--blue-900);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--blue-900);
}

.btn-light {
  color: var(--blue-900);
  background: var(--white);
}

.site-header {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: rgba(16, 24, 39, 0.08);
  box-shadow: 0 12px 28px rgba(16, 24, 39, 0.08);
  backdrop-filter: blur(12px);
}

.nav-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--white);
}

.brand span {
  color: currentColor;
  font-size: 1.08rem;
  font-weight: 850;
  white-space: nowrap;
}

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

.site-nav > a,
.menu-trigger {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.6rem;
  border: 0;
  background: transparent;
  color: currentColor;
  border-radius: var(--radius);
  font-size: 0.96rem;
  font-weight: 650;
  cursor: pointer;
}

.site-nav > a:hover,
.menu-trigger:hover,
.site-nav > a.active {
  background: rgba(17, 151, 236, 0.12);
  color: var(--blue-500);
}

.site-header.scrolled .site-nav > a:hover,
.site-header.scrolled .menu-trigger:hover,
.site-header.scrolled .site-nav > a.active,
.site-header.menu-open .site-nav > a:hover,
.site-header.menu-open .menu-trigger:hover,
.site-header.menu-open .site-nav > a.active {
  color: var(--blue-800);
}

.nav-phone {
  white-space: nowrap;
}

.menu-group {
  position: relative;
}

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

.menu-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 300px;
  display: grid;
  gap: 0.25rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.menu-group:hover .menu-dropdown,
.menu-group:focus-within .menu-dropdown,
.menu-group.open .menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-dropdown a {
  padding: 0.72rem 0.8rem;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-weight: 750;
}

.menu-dropdown a:hover,
.menu-dropdown a.active {
  background: var(--surface);
  color: var(--blue-800);
}

.mobile-toggle {
  display: none;
  min-height: 42px;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background: transparent;
  color: currentColor;
  font-weight: 850;
}

.site-header.scrolled .mobile-toggle,
.site-header.menu-open .mobile-toggle {
  border-color: rgba(16, 24, 39, 0.18);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
}

.page-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding-top: 78px;
}

.hero-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 21, 34, 0.86), rgba(7, 21, 34, 0.62) 44%, rgba(7, 21, 34, 0.72)),
    rgba(0, 0, 0, 0.18);
}

.hero-content,
.page-hero-content {
  position: relative;
  padding: 6rem 0 2.8rem;
  color: var(--white);
}

.hero-content {
  max-width: 980px;
  text-align: center;
  margin: 0 auto;
}

.page-hero-content {
  max-width: 820px;
}

.hero h1,
.page-hero h1,
.hero p,
.page-hero p,
.hero .pill,
.page-hero .pill {
  color: var(--white);
}

.hero .pill,
.page-hero .pill {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-content > p:not(.pill),
.page-hero-content > p:not(.pill) {
  margin-top: 0.9rem;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-content > p:not(.pill) {
  margin-right: auto;
  margin-left: auto;
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-content .hero-actions {
  justify-content: center;
}

.hero-stats {
  width: min(680px, 100%);
  margin: 1.55rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stat {
  text-align: center;
  padding: 0 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-stat:first-child {
  border-left: 0;
}

.hero-stat strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.75rem, 3.4vw, 2.65rem);
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

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

.contact-strip {
  background: var(--blue-900);
  color: var(--white);
}

.contact-strip-inner {
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  font-weight: 800;
}

.contact-strip-inner > * + * {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-alt {
  background: var(--surface);
}

.section-head {
  max-width: 800px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.section-head p:not(.pill) {
  margin-top: 1rem;
  font-size: 1.08rem;
}

.split,
.standards-grid,
.areas-grid,
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split p + p,
.standards-grid p + p {
  margin-top: 1rem;
}

.split .btn {
  margin-top: 1.5rem;
}

.photo-frame,
.photo-stack {
  position: relative;
}

.photo-frame img,
.photo-main,
.photo-secondary {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.photo-frame img,
.photo-main {
  aspect-ratio: 1.22 / 1;
}

.photo-stack {
  min-height: 470px;
}

.photo-main {
  height: 390px;
}

.photo-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 220px;
  border: 8px solid var(--white);
}

.photo-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-width: 150px;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.photo-badge strong,
.photo-badge span {
  display: block;
}

.photo-badge strong {
  color: var(--blue-800);
  font-size: 1.2rem;
}

.photo-badge span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.value-list,
.feature-grid,
.services-grid,
.process-grid,
.three-up,
.gallery {
  display: grid;
  gap: 1.25rem;
}

.value-list {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.value-list article {
  padding-left: 1rem;
  border-left: 3px solid var(--teal-500);
}

.value-list h3 + p {
  margin-top: 0.4rem;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.feature-grid article,
.process-card,
.three-up article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  background: var(--surface-strong);
}

.service-body {
  padding: 1.25rem;
}

.service-body h3 + p {
  margin-top: 0.7rem;
}

.service-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--blue-800);
  font-weight: 850;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feature-grid article,
.three-up article,
.process-card {
  padding: 1.2rem;
}

.feature-grid h3 + p,
.three-up h3 + p,
.process-card h3 + p {
  margin-top: 0.65rem;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--blue-800);
  color: var(--white);
  font-weight: 850;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.check-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.8rem;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--ink-soft);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal-500);
}

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

.gallery img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.review-embed {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.review-embed iframe {
  min-height: 420px;
}

.center-actions {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
}

.areas-grid {
  align-items: start;
}

.area-chips,
.service-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.area-chips {
  margin-top: 1.2rem;
}

.area-chips span,
.area-chip,
.service-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 800;
}

.area-chip {
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(15, 32, 51, 0.06);
}

.area-chip:hover {
  border-color: rgba(7, 87, 173, 0.45);
  color: var(--blue-800);
  background: rgba(17, 151, 236, 0.08);
}

.service-map-card {
  height: 310px;
  margin-top: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.service-map-card iframe,
.map-modal-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.service-cloud {
  justify-content: center;
}

.faq-wrap {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 62px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--blue-800);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item.open button::after {
  content: "-";
}

.faq-item div {
  display: none;
  padding: 0 1.15rem 1rem;
}

.faq-item.open div {
  display: block;
}

.quote-section {
  background:
    linear-gradient(135deg, rgba(7, 87, 173, 0.08), rgba(8, 181, 201, 0.08)),
    var(--white);
}

.quote-grid {
  align-items: start;
}

.form-embed {
  height: 920px;
  margin-top: 1.5rem;
}

.embed-shell,
.contact-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.embed-shell {
  border: 1px solid var(--line);
}

.contact-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-card h3 + p {
  margin-top: 0.75rem;
}

.contact-points {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.85rem;
}

.contact-points li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-points li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-points strong {
  color: var(--ink);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-points a {
  color: var(--blue-800);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(6, 59, 120, 0.95), rgba(7, 87, 173, 0.92), rgba(7, 148, 168, 0.94)),
    var(--blue-900);
  color: var(--white);
  text-align: center;
}

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

.cta-band p {
  max-width: 720px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.84);
}

.cta-inner .hero-actions,
.cta-band .hero-actions {
  justify-content: center;
}

.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 1.5rem;
}

.map-modal[hidden] {
  display: none;
}

.map-modal {
  position: fixed;
  z-index: 10050;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.map-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 34, 0.68);
  backdrop-filter: blur(5px);
}

.map-modal-panel {
  position: relative;
  width: min(940px, 100%);
  max-height: min(780px, calc(100vh - 2rem));
  display: grid;
  grid-template-rows: auto auto minmax(320px, 1fr);
  gap: 0.75rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(7, 21, 34, 0.32);
}

.map-modal-panel h2 {
  padding-right: 5rem;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.map-modal-panel p {
  padding-right: 5rem;
}

.map-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 40px;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.map-modal-close:hover {
  color: var(--blue-800);
  border-color: rgba(7, 87, 173, 0.35);
}

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

.site-footer h3 {
  color: var(--white);
  font-size: 1.08rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-brand p {
  margin-top: 1rem;
}

.footer-logo img {
  width: 52px;
  height: 52px;
}

.footer-map-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--teal-500) !important;
  font-weight: 850;
}

.footer-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}

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

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 0.2rem;
  }

  .nav-phone {
    display: none !important;
  }

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

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

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

@media (max-width: 820px) {
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    max-height: calc(100vh - 78px);
    display: none;
    overflow: auto;
    padding: 1rem 4vw 1.4rem;
    border-top: 1px solid rgba(16, 24, 39, 0.08);
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 18px 34px rgba(16, 24, 39, 0.1);
  }

  .site-header.menu-open .site-nav {
    display: grid;
    gap: 0.35rem;
  }

  .site-nav > a,
  .menu-trigger {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding: 0.75rem;
  }

  .menu-dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-color: var(--line);
    margin: 0.2rem 0 0.5rem;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-content,
  .page-hero-content {
    padding: 6.2rem 0 3rem;
  }

  .hero-stats,
  .contact-strip-inner,
  .split,
  .standards-grid,
  .areas-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .contact-strip-inner {
    padding: 0.9rem 0;
  }

  .contact-strip-inner > * + * {
    border-left: 0;
  }

  .photo-stack {
    min-height: auto;
  }

  .photo-main {
    height: auto;
  }

  .photo-secondary {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 1rem;
    border: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 2rem, 1180px);
  }

  .brand span {
    font-size: 0.98rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero-actions,
  .hero-content .hero-actions {
    display: grid;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .hero-stat {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0 0.4rem;
  }

  .hero-stat:first-child {
    border-left: 0;
  }

  .hero-stat strong {
    font-size: 1.55rem;
  }

  .hero-stat span {
    font-size: 0.62rem;
  }

  .services-grid,
  .feature-grid,
  .feature-grid.compact,
  .process-grid,
  .three-up,
  .gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .photo-badge {
    position: static;
    margin-top: 0.9rem;
  }

  .form-embed,
  .review-embed,
  .review-embed iframe {
    min-height: 620px;
  }

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