:root {
  --blue: #0976f8;
  --blue-dark: #0455b8;
  --aqua: #27baf5;
  --ink: #071629;
  --text: #182536;
  --muted: #5d6b7a;
  --line: #dce7f2;
  --surface: #f3f8fd;
  --surface-strong: #e7f2fc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(7, 22, 41, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

img {
  height: auto;
}

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

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

h1 {
  font-size: 3.7rem;
  font-weight: 700;
}

h2 {
  font-size: 2.55rem;
  font-weight: 700;
}

h3 {
  font-size: 1.12rem;
  font-weight: 700;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 30px rgba(7, 22, 41, 0.1);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  font-size: 1.25rem;
}

.brand img,
.footer-brand img {
  width: 112px;
  height: auto;
  border-radius: 8px;
}

.desktop-nav,
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.desktop-nav a,
.desktop-nav button,
.phone-link {
  color: inherit;
  font: inherit;
  font-weight: 750;
  background: transparent;
  border: 0;
  padding: 0.35rem 0;
  cursor: pointer;
}

.desktop-nav .current {
  color: var(--aqua);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  padding: 0.6rem;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, top 160ms ease;
}

.dropdown-panel a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 6px;
}

.dropdown-panel a:hover,
.dropdown-panel a:focus {
  background: var(--surface);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  top: calc(100% + 10px);
  opacity: 1;
  pointer-events: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.25rem;
  border-radius: 8px;
  border: 2px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  font-weight: 850;
  line-height: 1.1;
  box-shadow: 0 12px 26px rgba(9, 118, 248, 0.22);
}

.btn:hover,
.btn:focus {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-small {
  min-height: 42px;
  padding: 0.65rem 1rem;
}

.btn-outline,
.btn-outline-white,
.btn-white {
  box-shadow: none;
}

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

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

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

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

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

.btn-white:hover,
.btn-white:focus {
  background: var(--surface);
  color: var(--blue-dark);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 0;
}

.site-header.scrolled .mobile-toggle,
.site-header.menu-open .mobile-toggle {
  border-color: var(--line);
  background: var(--surface);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-menu {
  display: none;
  padding: 0.5rem 20px 1.2rem;
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.mobile-menu .btn {
  margin-top: 0.9rem;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 8.5rem 0 5rem;
}

.hero-media,
.subhero {
  background-size: cover;
  background-position: center;
}

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

.hero-overlay,
.subhero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 28, 0.66);
}

.hero-content,
.subhero-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 880px;
}

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

.hero h1 {
  margin-top: 1.2rem;
}

.hero h1,
.subhero h1 {
  text-shadow: 0 0 18px rgba(39, 186, 245, 0.42), 0 12px 34px rgba(0, 0, 0, 0.38);
}

.hero-content > p:not(.hero-eyebrow),
.subhero-content > p:not(.breadcrumb):not(.hero-eyebrow) {
  max-width: 720px;
  margin-inline: auto;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-eyebrow {
  padding: 0.52rem 0.85rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.section-eyebrow {
  color: var(--blue);
}

.hero-actions,
.button-row,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

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

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

.hero-stats div {
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 2.05rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 850;
}

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

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 0;
  font-weight: 850;
}

.strip-grid span,
.strip-grid a {
  display: flex;
  justify-content: center;
  text-align: center;
}

.section {
  padding: 5.5rem 0;
}

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

.section-head {
  max-width: 760px;
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head p {
  font-size: 1.05rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 3rem;
}

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

.image-panel {
  position: relative;
}

.image-panel > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.owner-photo > img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: var(--surface);
}

.owner-photo .image-note {
  position: static;
  margin-top: 0.85rem;
}

.image-note {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(7, 22, 41, 0.12);
}

.image-note strong,
.image-note span {
  display: block;
}

.image-note span {
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-list div,
.value-grid article,
.process-step,
.expertise-grid article,
.contact-card,
.service-card,
.related-card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.feature-list div {
  padding: 1rem;
}

.feature-list h3,
.value-grid h3,
.process-step h3,
.expertise-grid h3 {
  margin-bottom: 0.35rem;
}

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

.service-card {
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(7, 22, 41, 0.08);
}

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

.service-card div {
  padding: 1.2rem;
}

.service-card a {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--blue);
  font-weight: 900;
}

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

.gallery-mini img,
.gallery-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.service-card img[src*="c2clean-window-cleaning"],
.service-card img[src*="real-c2clean-work-20260724"],
.gallery-mini img[src*="c2clean-carter-and-owner"],
.gallery-mini img[src*="c2clean-window-cleaning"],
.gallery-mini img[src*="c2clean-owner-house-washing"],
.gallery-mini img[src*="c2clean-carter-house-washing"],
.gallery-mini img[src*="real-c2clean-work-20260724"],
.gallery-grid img[src*="c2clean-carter-and-owner"],
.gallery-grid img[src*="c2clean-window-cleaning"],
.gallery-grid img[src*="c2clean-owner-house-washing"],
.gallery-grid img[src*="c2clean-carter-house-washing"],
.gallery-grid img[src*="real-c2clean-work-20260724"] {
  object-fit: contain;
  object-position: center;
  background: var(--surface);
}

.gallery-mini img {
  aspect-ratio: 4 / 3;
}

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

.gallery-grid img {
  aspect-ratio: 4 / 3;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.check-grid span {
  padding: 0.8rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  color: var(--ink);
}

.process-grid,
.value-grid,
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.value-grid,
.expertise-grid {
  grid-template-columns: repeat(2, 1fr);
}

.process-step,
.value-grid article,
.expertise-grid article {
  padding: 1.2rem;
}

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

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

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 2rem;
  align-items: start;
}

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

.review-widget-stack {
  display: grid;
  gap: 1rem;
}

.review-card {
  min-height: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 22, 41, 0.08);
}

.review-topline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.google-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: conic-gradient(from 45deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  color: var(--white);
  font-weight: 900;
}

.review-topline strong,
.review-topline span {
  display: block;
}

.review-topline span {
  color: var(--muted);
  font-size: 0.88rem;
}

.stars {
  color: #fbbc05;
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 0.8rem;
}

.review-card p {
  color: var(--text);
}

.review-card a {
  display: inline-block;
  color: var(--blue);
  font-weight: 850;
}

.live-review-widget {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(7, 22, 41, 0.08);
  overflow: hidden;
}

.live-review-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.live-review-widget-head strong {
  color: var(--ink);
  font-size: 1rem;
}

.live-review-widget-head span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.live-review-widget iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

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

.service-area h2,
.service-area p,
.service-area .section-eyebrow {
  color: var(--white);
}

.service-area p {
  color: rgba(255, 255, 255, 0.78);
}

.service-area-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.area-map-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 1rem;
}

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

.area-button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font: inherit;
  font-weight: 820;
  cursor: pointer;
}

.area-button:hover,
.area-button:focus,
.area-button.active {
  background: var(--white);
  color: var(--blue);
}

.area-map-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin: 1rem 0 0.8rem;
}

.area-map-heading h3 {
  margin: 0;
  color: var(--white);
}

.area-map-heading a {
  color: var(--white);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.area-map-frame {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.area-map-frame iframe {
  width: 100%;
  height: 330px;
  border: 0;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0.8rem 0 0;
}

.cta-band {
  padding: 4rem 0;
  color: var(--white);
  background: var(--blue);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

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

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.contact-stack a,
.contact-stack span {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  color: var(--text);
}

.form-frame {
  min-height: 930px;
  height: auto;
  overflow: visible;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-frame iframe {
  min-height: 930px;
}

.subhero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 4rem;
  overflow: hidden;
}

.subhero-content {
  max-width: 820px;
}

.breadcrumb {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumb a {
  color: var(--white);
  font-weight: 850;
}

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

.dark-section h2,
.dark-section p,
.dark-section .section-eyebrow {
  color: var(--white);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.78);
}

.included-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.included-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.included-list li {
  padding: 0.9rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 850;
}

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

.related-card {
  overflow: hidden;
}

.related-card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.related-card span {
  display: block;
  padding: 1rem;
  font-weight: 900;
  color: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 2rem;
  align-items: start;
}

.contact-card {
  position: sticky;
  top: 100px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.contact-card a,
.contact-card div {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-card a:last-child {
  border-bottom: 0;
}

.contact-card strong {
  color: var(--ink);
}

.contact-card span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

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

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #06101f;
  padding: 4rem 0 1.5rem;
}

.site-footer h3,
.site-footer .motto {
  color: var(--white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.85fr 0.95fr;
  gap: 2rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 0.45rem 0;
}

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

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .site-header.menu-open .mobile-menu {
    display: block;
  }

  .hero {
    min-height: 760px;
  }

  .two-col,
  .quote-grid,
  .service-area-grid,
  .included-grid,
  .contact-layout,
  .review-layout {
    grid-template-columns: 1fr;
  }

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

  .contact-card {
    position: static;
  }

  .reverse-mobile .gallery-mini {
    order: 2;
  }
}

@media (max-width: 720px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 96px;
  }

  .hero {
    min-height: 700px;
    padding-top: 7.5rem;
  }

  .hero-content > p:not(.hero-eyebrow),
  .subhero-content > p:not(.breadcrumb):not(.hero-eyebrow) {
    font-size: 1.02rem;
  }

  .hero-actions,
  .button-row,
  .cta-actions {
    flex-direction: column;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    padding-bottom: 1rem;
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .strip-grid,
  .service-grid,
  .process-grid,
  .value-grid,
  .expertise-grid,
  .gallery-grid,
  .footer-grid,
  .footer-bottom,
  .related-grid,
  .included-list,
  .check-grid,
  .review-grid,
  .area-buttons {
    grid-template-columns: 1fr;
  }

  .area-map-heading {
    display: block;
  }

  .area-map-heading a {
    display: inline-block;
    margin-top: 0.5rem;
  }

  .live-review-widget-head {
    display: block;
  }

  .live-review-widget-head span {
    display: block;
    margin-top: 0.25rem;
  }

  .strip-grid {
    gap: 0.35rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-head {
    text-align: left;
  }

  .gallery-mini {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    display: block;
  }

  .subhero {
    min-height: 410px;
    padding-top: 7.5rem;
  }

  .form-frame {
    min-height: 1020px;
  }

  .form-frame iframe {
    min-height: 1020px;
  }
}
