﻿:root {
  --primary-50: #ffe9ea;
  --primary-100: #ffd2d4;
  --primary-200: #ffadb2;
  --primary-400: #f24a57;
  --primary-500: #dd1d2b;
  --primary-600: #c10f1b;
  --primary-700: #970a14;
  --foreground: #0f1115;
  --foreground-light: #374151;
  --muted: #6b7280;
  --border: #e5e7eb;
  --surface: #f8fafc;
  --surface-dark: #f1f5f9;
  --background: #ffffff;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 10px 25px rgba(0, 0, 0, 0.09), 0 4px 10px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: none;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

h1 {
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: 1.12;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.3;
}

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

ul {
  margin: 0;
  padding: 0;
}

.pill,
.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary-600);
  padding: 0.35rem 0.95rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: var(--radius-lg);
  min-height: 46px;
  padding: 0.65rem 1.5rem;
  border: 2px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
}

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

.btn-solid {
  background: var(--primary-600);
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14);
}

.btn-solid:hover {
  background: var(--primary-700);
}

.btn-outline {
  border-color: var(--foreground);
  color: var(--foreground);
  background: transparent;
}

.btn-outline:hover {
  background: var(--foreground);
  color: #fff;
}

.btn-ghost {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  background: #fff;
  color: var(--foreground);
}

.btn-light {
  background: #fff;
  color: var(--primary-600);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-700);
}

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

.topbar {
  display: block;
  background: rgba(15, 17, 21, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar-list {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-item {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 500;
  padding-inline: 0.65rem;
}

.topbar-item + .topbar-item {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}

.site-header.scrolled {
  background: rgba(15, 17, 21, 0.95);
  backdrop-filter: blur(8px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

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

.brand span {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 290px;
}

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

.site-nav > a,
.menu-trigger {
  padding: 0.45rem 0.7rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  border: 0;
  background: transparent;
  font-family: inherit;
}

.menu-trigger {
  cursor: pointer;
}

.menu-group {
  position: relative;
}

.menu-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-card-hover);
  padding: 0.45rem;
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.18s 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 {
  border-radius: 0.65rem;
  color: var(--foreground-light);
  font-size: 0.88rem;
  padding: 0.58rem 0.75rem;
}

.menu-dropdown a:hover {
  background: var(--surface);
  color: var(--primary-500);
}

.mobile-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
  border-radius: 0.6rem;
  padding: 0.42rem 0.75rem;
  font-weight: 600;
}

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

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

.hero-video,
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 8.1rem 0 6rem;
  text-align: center;
}

.hero-content h1,
.hero-content p,
.hero-content .pill {
  color: #fff;
}

.hero-content .pill {
  background: rgba(255, 255, 255, 0.1);
}

.hero-content p {
  margin-top: 1.1rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.hero-stats {
  margin: 2.8rem auto 0;
  max-width: 560px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.hero-stat strong {
  display: block;
  color: #fff;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1;
}

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

.contact-strip {
  background: var(--primary-600);
  color: #fff;
}

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

.contact-item {
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-item + .contact-item {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.page-hero {
  display: flex;
  align-items: center;
  min-height: 380px;
  padding-top: 80px;
  background: linear-gradient(140deg, #161a2b 0%, #252d43 100%);
}

.page-hero .hero-overlay {
  background: linear-gradient(to right, rgba(26, 26, 46, 0.82), rgba(26, 26, 46, 0.62));
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.page-hero h1,
.page-hero p,
.page-hero .pill,
.crumbs {
  color: #fff;
}

.page-hero p {
  margin-top: 1rem;
  max-width: 760px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
}

.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
}

.section {
  padding-block: 4rem;
}

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

.section-dark {
  background: var(--foreground);
  color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark .pill,
.section-dark .eyebrow {
  color: #fff;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head p {
  margin: 0.95rem auto 0;
  max-width: 760px;
  font-size: 1.12rem;
}

.about-grid,
.split,
.standards-grid,
.quote-grid,
.areas-grid,
.footer-grid,
.services-grid,
.process-grid,
.testimonials-grid,
.service-feature-grid,
.gallery,
.three-up {
  display: grid;
  gap: 1.5rem;
}

.about-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-grid p,
.standards-grid p,
.split p {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-points,
.service-checks,
.checklist,
.contact-points,
.areas-list,
.footer-list,
.standards-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.about-points li,
.service-checks li,
.checklist li,
.standards-list li {
  list-style: none;
  position: relative;
  padding-left: 1.55rem;
  color: var(--foreground-light);
}

.about-points li::before,
.service-checks li::before,
.checklist li::before,
.standards-list li::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.65rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--primary-500);
}

.about-points strong {
  color: var(--foreground);
}

.photo-frame,
.feature-photo img,
.service-feature-image,
.gallery img,
.service-card,
.process-card,
.testimonial-card,
.faq-list,
.contact-card,
.areas-panel,
.map-shell,
.three-up article,
.timeline article,
.service-feature-grid article {
  border-radius: var(--radius-2xl);
}

.photo-frame,
.feature-photo img,
.service-feature-image,
.gallery img,
.service-card,
.process-card,
.testimonial-card,
.faq-list,
.contact-card,
.three-up article,
.timeline article,
.service-feature-grid article {
  border: 1px solid var(--border);
  background: #fff;
}

.photo-frame {
  position: relative;
  overflow: hidden;
}

.photo-frame img,
.feature-photo img,
.service-feature-image {
  width: 100%;
  object-fit: cover;
}

.photo-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  padding: 0.65rem 0.8rem;
}

.photo-badge strong {
  color: var(--primary-500);
  font-size: 1.5rem;
  line-height: 1;
}

.photo-badge span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--foreground-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), #ff6a74);
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.service-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  padding: 1.2rem 1.25rem 1.35rem;
}

.service-kicker {
  margin: 0;
  font-size: 0.73rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-600);
}

.service-body p {
  margin-top: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.service-body h3 {
  min-height: 2.65em;
}

.service-link {
  margin-top: auto;
  padding-top: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-weight: 700;
  color: var(--primary-500);
  transition: color 0.2s ease, gap 0.2s ease;
}

.service-link:hover {
  color: var(--primary-700);
  gap: 0.55rem;
}

.standards-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

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

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

.process-card {
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.process-step {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-500);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.process-card p {
  margin-top: 0.5rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.process-cta,
.service-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

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

.testimonial-card {
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: #fbbf24;
  letter-spacing: 0.08em;
}

.testimonial-card p {
  margin-top: 0.8rem;
  font-size: 1rem;
  line-height: 1.75;
}

.testimonial-meta {
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
}

.testimonial-meta strong {
  display: block;
  color: var(--foreground);
}

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

.gallery a {
  display: block;
}

.gallery img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
  background: var(--surface-dark);
}

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

.faq-list {
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

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

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.faq-item button:hover {
  color: var(--primary-600);
}

.faq-item button::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--muted);
}

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

.faq-item > div {
  display: none;
  padding: 0 1.2rem 1.2rem;
}

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

.faq-item p {
  font-size: 0.98rem;
  line-height: 1.65;
}

.areas-section {
  background: var(--primary-700);
  color: #fff;
}

.areas-section .section-head h2,
.areas-section .section-head p,
.areas-section .pill,
.areas-section h3,
.areas-section p {
  color: #fff;
}

.areas-section .pill {
  background: rgba(255, 255, 255, 0.1);
}

.areas-grid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.areas-panel,
.map-shell {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.areas-panel {
  padding: 1.5rem;
  backdrop-filter: blur(5px);
}

.areas-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.1rem;
}

.areas-list li {
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.8rem;
  padding: 0.5rem 0.7rem;
  font-size: 0.97rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.map-shell {
  overflow: hidden;
  min-height: 360px;
}

.map-shell iframe {
  width: 100%;
  min-height: 360px;
  height: 100%;
  border: 0;
}

.quote-grid {
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: stretch;
}

.embed-shell {
  border-radius: var(--radius-xl);
  border: 2px dashed var(--border);
  background: var(--surface);
  overflow: hidden;
  height: auto;
  min-height: 760px;
}

.embed-shell iframe[data-form-id] {
  width: 100%;
  height: 760px;
  min-height: 760px;
  border: 0;
}

.contact-card {
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.contact-card > p {
  margin-top: 0.55rem;
}

.contact-points li,
.contact-list li {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: var(--surface);
  padding: 0.65rem 0.75rem;
}

.contact-points strong {
  display: block;
  color: var(--foreground-light);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.1rem 0 1.5rem;
}

.cta-band {
  background: var(--primary-600);
  color: #fff;
}

.cta-band .container {
  text-align: center;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  margin: 1rem auto 0;
  max-width: 760px;
  font-size: 1.1rem;
}

.site-footer {
  background: var(--foreground);
  color: #fff;
  padding-top: 4rem;
}

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

.footer-grid h3 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 86px;
  height: 86px;
  margin-bottom: 0.8rem;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.footer-list {
  gap: 0.55rem;
}

.map-link {
  margin-top: 0.8rem;
  display: inline-block;
  color: #fff;
  font-weight: 600;
}

.footer-service-areas {
  margin-top: 0.8rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding: 1.4rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

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

.service-feature-grid article,
.three-up article,
.timeline article {
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

.service-feature-grid article p,
.three-up article p,
.timeline article p,
.process-card p,
.contact-card p {
  margin-top: 0.65rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .section {
    padding-block: 6rem;
  }
}

@media (max-width: 1090px) {
  .about-grid,
  .split,
  .standards-grid,
  .areas-grid,
  .quote-grid,
  .process-grid,
  .testimonials-grid,
  .gallery,
  .footer-grid,
  .service-feature-grid,
  .three-up {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

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

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

  .areas-list,
  .standards-list {
    grid-template-columns: 1fr;
  }

  .embed-shell {
    min-height: 920px;
  }

  .embed-shell iframe[data-form-id] {
    height: 920px;
    min-height: 920px;
  }

  .contact-strip-inner {
    grid-template-columns: 1fr;
    padding: 0.7rem 0;
  }

  .contact-item + .contact-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 0.5rem;
  }

  .topbar-list {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.35rem;
    padding: 0.45rem 0;
  }

  .topbar-item + .topbar-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 0.35rem;
  }
}

@media (max-width: 920px) {
  .topbar {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 4vw;
    right: 4vw;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: #fff;
    box-shadow: var(--shadow-card-hover);
    padding: 0.95rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a,
  .menu-trigger {
    color: var(--foreground);
    width: 100%;
    padding: 0.5rem 0.35rem;
    text-align: left;
  }

  .menu-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: 100%;
    display: none;
  }

  .menu-group.open .menu-dropdown {
    display: grid;
  }

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

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

@media (max-width: 620px) {
  .container {
    width: min(1280px, 94vw);
  }

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

  .brand span {
    display: none;
  }

  .hero-content {
    padding: 7.4rem 0 5rem;
  }

  .hero-content p {
    font-size: 1.02rem;
  }

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

  .embed-shell {
    min-height: 1020px;
  }

  .embed-shell iframe[data-form-id] {
    height: 1020px;
    min-height: 1020px;
  }

  .service-body h3 {
    min-height: auto;
  }

  .gallery img {
    min-height: 180px;
  }
}
