:root {
  --color-green: #1f7a45;
  --color-green-deep: #0f4f2b;
  --color-red: #d0342c;
  --color-yellow: #f0bf3a;
  --color-purple: #6d49a8;
  --color-gold: #c9a452;
  --color-ink: #121212;
  --color-body: #2c2c2c;
  --color-muted: #6d6d6d;
  --color-surface: #ffffff;
  --color-surface-alt: #f7f7f3;
  --color-line: rgba(18, 18, 18, 0.08);
  --color-logo-blue: #0165d6;
  --shadow-soft: 0 18px 40px rgba(18, 18, 18, 0.08);
  --shadow-card: 0 20px 44px rgba(20, 54, 32, 0.12);
  --radius-large: 28px;
  --radius-medium: 22px;
  --radius-small: 14px;
  --container-width: min(1160px, calc(100vw - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Public Sans", sans-serif;
  color: var(--color-body);
  background:
    radial-gradient(circle at top left, rgba(31, 122, 69, 0.08), transparent 22%),
    radial-gradient(circle at right 12% top 18%, rgba(109, 73, 168, 0.08), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f8f8f5 100%);
}

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

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

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

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--color-ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-logo-blue);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(5, 33, 87, 0.18);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 102px;
}

.brand img {
  width: min(235px, 100%);
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  flex: 1 1 0;
  padding: 0.4rem 0.35rem;
  text-align: center;
  white-space: nowrap;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-green), var(--color-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
}

.phone-link {
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.brand {
  background: transparent;
}

.brand img,
.brand picture,
.brand svg {
  background: transparent;
}

.header-actions .button-primary {
  background: #ffffff;
  color: #121212;
  box-shadow: 0 12px 24px rgba(6, 38, 77, 0.16);
}

.header-actions .button-primary:hover,
.header-actions .button-primary:focus-visible {
  background: #ffffff;
  color: #121212;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-green), var(--color-green-deep));
  box-shadow: 0 16px 30px rgba(31, 122, 69, 0.22);
}

.button-secondary {
  background: #fff;
  color: var(--color-ink);
  border-color: rgba(18, 18, 18, 0.1);
}

.button-block {
  width: 100%;
}

.site-search {
  position: relative;
}

.site-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.site-search-toggle:hover,
.site-search-toggle:focus-visible,
.site-search.is-open .site-search-toggle {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.site-search-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.site-search-panel {
  position: absolute;
  top: calc(100% + 0.9rem);
  right: 0;
  width: min(26rem, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(8, 40, 90, 0.12);
  box-shadow: 0 24px 50px rgba(5, 33, 87, 0.22);
  z-index: 70;
}

.site-search-label {
  display: block;
  margin-bottom: 0.7rem;
  color: #08285a;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-search-field {
  position: relative;
}

.site-search-input {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.95rem 5.2rem 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(8, 40, 90, 0.14);
  background: #ffffff;
  color: var(--color-ink);
  outline: none;
}

.site-search-input:focus {
  border-color: #0f77dc;
  box-shadow: 0 0 0 4px rgba(15, 119, 220, 0.14);
}

.site-search-clear {
  position: absolute;
  top: 50%;
  right: 0.65rem;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #0f77dc;
  font-weight: 700;
  cursor: pointer;
}

.site-search-results {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.65rem;
}

.site-search-result,
.site-search-empty {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(15, 119, 220, 0.1);
}

.site-search-result {
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.site-search-result:hover,
.site-search-result:focus-visible,
.site-search-result[aria-selected="true"] {
  transform: translateY(-1px);
  border-color: rgba(15, 119, 220, 0.32);
  box-shadow: 0 16px 32px rgba(15, 119, 220, 0.12);
}

.site-search-result-title {
  display: block;
  margin-bottom: 0.2rem;
  color: #08285a;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.site-search-result-copy,
.site-search-empty {
  color: #44516a;
  font-size: 0.92rem;
  line-height: 1.45;
}

.site-search-result-tag {
  display: inline-flex;
  margin-top: 0.45rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 119, 220, 0.12);
  color: #0f77dc;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 16px;
  background: #fff;
  padding: 0.8rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-ink);
  margin: 0.22rem 0;
}

.hero {
  padding: 0 0 1rem;
}

.page-hero {
  padding: 4.5rem 0 2rem;
}

.page-hero-inner {
  max-width: 860px;
}

.faq-page-title {
  max-width: none;
  color: #0f77dc;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #0f77dc;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: "Outfit", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-hero-title {
  font-size: clamp(1.95rem, 3.2vw, 3rem);
  margin: 0.35rem 0 1rem;
}

h3 {
  font-size: 1.35rem;
}

.hero-subheading,
.section-heading p,
.about-copy p,
.service-card p,
.quote-copy p,
.mini-card p,
.site-footer p {
  line-height: 1.75;
}

.hero-subheading {
  margin: 1.25rem 0 0;
  font-size: 1.1rem;
  max-width: 62ch;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2310 / 640;
  background: linear-gradient(180deg, #edf3f8 0%, #ffffff 100%);
}

.hero-stage::before {
  content: none;
}

.hero-image-full {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 86%;
}

.m2v-home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at left top, rgba(15, 119, 220, 0.08), transparent 26%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
  padding: 1.25rem 0 2.3rem;
}

.m2v-home-hero .container {
  display: block;
}

.m2v-home-hero__shell {
  position: relative;
  min-height: 700px;
  border-radius: 36px;
  overflow: hidden;
  background: #dfeaf4;
  box-shadow: 0 28px 60px rgba(8, 40, 90, 0.14);
}

.m2v-home-hero__backdrop {
  position: relative;
  width: 100%;
  height: 100%;
}

.m2v-home-hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 28%, rgba(255, 255, 255, 0.36) 54%, rgba(255, 255, 255, 0.08) 70%, rgba(255, 255, 255, 0) 100%);
}

.m2v-home-hero__backdrop img {
  display: block;
  width: 100%;
  min-height: 700px;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.m2v-home-hero__panel {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 1.1rem;
  width: min(100%, 620px);
  padding: 3.4rem 3rem;
}

.m2v-home-hero__eyebrow {
  margin-bottom: 0;
}

.m2v-home-hero__title {
  max-width: 9.8ch;
  margin: 0;
  color: #08285a;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.m2v-home-hero__subheading {
  margin: 0;
  max-width: 30rem;
  color: #344c61;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.68;
}

.m2v-home-hero__feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.m2v-home-hero__feature-item {
  min-height: 0;
  padding: 1rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(8, 40, 90, 0.08);
  box-shadow: 0 16px 30px rgba(8, 40, 90, 0.06);
  backdrop-filter: blur(8px);
}

.m2v-home-hero__feature-item strong {
  display: block;
  color: #08285a;
  font-size: 0.95rem;
  line-height: 1.35;
}

.m2v-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0.2rem;
}

.m2v-home-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0.95rem 1.65rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #1765d4 0%, #0a58c9 100%);
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 18px 30px rgba(10, 88, 201, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.m2v-home-hero__cta:hover,
.m2v-home-hero__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(10, 88, 201, 0.24);
}

.m2v-home-hero__cta-secondary {
  background: #ffffff;
  color: #0a2d67;
  box-shadow: 0 18px 30px rgba(8, 14, 72, 0.14);
}

.m2v-home-hero__cta-secondary:hover,
.m2v-home-hero__cta-secondary:focus-visible {
  background: #ffffff;
  color: #0a2d67;
  box-shadow: 0 20px 34px rgba(8, 14, 72, 0.2);
}

.hero-details {
  max-width: 760px;
  padding: 1.8rem 0 0;
}

.hero-details .hero-subheading {
  color: #18313f;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li,
.about-points span,
.areas-grid span {
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: var(--shadow-soft);
}

.site-footer img {
  width: min(220px, 100%);
  height: auto;
}

.paint-swatches {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.swatch.green { background: var(--color-green); }
.swatch.red { background: var(--color-red); }
.swatch.yellow { background: var(--color-yellow); }
.swatch.purple { background: var(--color-purple); }
.swatch.gold { background: var(--color-gold); }

.visual-points {
  display: grid;
  gap: 1rem;
}

.visual-points div {
  padding: 1rem 1rem 1rem 1.15rem;
  border-left: 4px solid var(--color-green);
  background: var(--color-surface-alt);
  border-radius: 16px;
}

.visual-points strong,
.visual-points span {
  display: block;
}

.visual-points span {
  margin-top: 0.35rem;
  color: var(--color-muted);
}

.section {
  padding: 5.5rem 0;
}

.services-section {
  padding-top: 2.25rem;
}

.intro-strip {
  padding-top: 1rem;
}

.intro-cards,
.services-grid,
.footer-grid {
  display: grid;
  gap: 1.4rem;
}

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

.mini-card,
.service-card,
.quote-form,
.contact-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

.mini-card {
  padding: 1.4rem;
}

.mini-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  max-width: 900px;
  margin: 0 auto;
}

.credential-card {
  padding: 1.75rem;
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 40, 90, 0.12);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.credential-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 7.5rem;
  margin-bottom: 1rem;
  border-radius: 24px;
  background: transparent;
  overflow: hidden;
}

.credential-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.credential-card h2 {
  margin: 0 0 0.55rem;
  color: #08285a;
  font-size: 1.1rem;
}

.credential-card p {
  margin: 0;
  color: var(--color-body);
  font-size: 1.05rem;
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.section-link-row {
  margin-top: 1.6rem;
}

.gallery-overview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
  align-items: center;
}

.gallery-overview-copy,
.gallery-overview-points,
.gallery-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

.gallery-overview-copy {
  padding: 2rem;
}

.gallery-overview-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.gallery-overview-points span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  color: #08285a;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(15, 119, 220, 0.1), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, rgba(31, 122, 69, 0.06), rgba(240, 191, 58, 0.08));
}

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

.gallery-card {
  padding: 1.5rem;
}

.gallery-card__header h2 {
  margin: 0;
}

.gallery-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.35rem 0 1rem;
}

.gallery-panel,
.gallery-photo-placeholder > div {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 22px;
  border: 1px solid rgba(8, 40, 90, 0.1);
}

.gallery-panel {
  background-color: #f5f5f2;
}

.gallery-panel-media {
  cursor: zoom-in;
}

.gallery-panel-media:focus-visible {
  outline: 3px solid rgba(15, 119, 220, 0.38);
  outline-offset: 3px;
}

.gallery-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #08285a;
  background: rgba(255, 255, 255, 0.9);
}

.gallery-panel::before,
.gallery-panel::after {
  content: "";
  position: absolute;
  inset: 0;
}

.gallery-panel::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0 4%, transparent 4% 96%, rgba(255, 255, 255, 0.4) 96% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0 8%, transparent 8% 92%, rgba(0, 0, 0, 0.08) 92% 100%);
}

.gallery-panel::after {
  inset: auto 8% 10% 8%;
  height: 16%;
  border-radius: 999px;
  filter: blur(16px);
  background: rgba(14, 25, 50, 0.12);
}

.gallery-panel-before {
  filter: grayscale(0.2);
}

.gallery-panel-before::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 32%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0 4%, transparent 4% 96%, rgba(255, 255, 255, 0.4) 96% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.46) 0 8%, transparent 8% 92%, rgba(0, 0, 0, 0.1) 92% 100%),
    radial-gradient(circle at 26% 48%, rgba(130, 109, 90, 0.28), transparent 11%),
    radial-gradient(circle at 70% 38%, rgba(130, 109, 90, 0.18), transparent 10%);
}

.gallery-panel-after::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0 4%, transparent 4% 96%, rgba(255, 255, 255, 0.35) 96% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0 8%, transparent 8% 92%, rgba(0, 0, 0, 0.08) 92% 100%);
}

.gallery-scene-interior-before {
  background: linear-gradient(180deg, #dfd6cb 0 66%, #6f6259 66% 100%);
}

.gallery-scene-interior-after {
  background: linear-gradient(180deg, #fdfbf7 0 66%, #355f94 66% 100%);
}

.gallery-scene-exterior-before {
  background: linear-gradient(180deg, #d7d2cc 0 22%, #b7b0a7 22% 66%, #7a7268 66% 100%);
}

.gallery-scene-exterior-after {
  background: linear-gradient(180deg, #d9ebff 0 22%, #fffef9 22% 66%, #1f7a45 66% 100%);
}

.gallery-scene-commercial-before {
  background: linear-gradient(180deg, #d9d5cf 0 20%, #c6c1ba 20% 68%, #605b54 68% 100%);
}

.gallery-scene-commercial-after {
  background: linear-gradient(180deg, #eef6ff 0 20%, #ffffff 20% 68%, #08285a 68% 100%);
}

.gallery-scene-roof-before {
  background: linear-gradient(180deg, #dbe6ef 0 24%, #8c8b88 24% 68%, #514e4b 68% 100%);
}

.gallery-scene-roof-after {
  background: linear-gradient(180deg, #eaf5ff 0 24%, #355f94 24% 68%, #1f2f4d 68% 100%);
}

.gallery-scene-trim-before {
  background: linear-gradient(180deg, #ebe2d7 0 64%, #7c6758 64% 100%);
}

.gallery-scene-trim-after {
  background: linear-gradient(180deg, #ffffff 0 64%, #0f77dc 64% 100%);
}

.gallery-card-featured {
  background:
    linear-gradient(135deg, rgba(10, 45, 103, 0.04), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.92);
}

.gallery-photo-placeholder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.35rem 0 1rem;
}

.gallery-photo-placeholder > div {
  display: grid;
  place-items: center;
  gap: 0.35rem;
  padding: 1.25rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(15, 119, 220, 0.08), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

.gallery-photo-placeholder strong {
  color: #08285a;
  font-size: 1rem;
}

.gallery-photo-placeholder span {
  color: var(--color-muted);
}

.faq-section {
  padding-top: 3.5rem;
}

.faq-layout {
  display: grid;
  gap: 1.5rem;
}

.faq-category {
  padding: 1.5rem;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: var(--shadow-soft);
}

.faq-category-title {
  margin-bottom: 1rem;
  color: #0f77dc;
}

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

.faq-item {
  border-radius: 20px;
  border: 1px solid rgba(8, 40, 90, 0.1);
  background: rgba(248, 250, 255, 0.88);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 3.5rem 1.1rem 1.15rem;
  color: #08285a;
  font-family: "Outfit", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.3;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 119, 220, 0.1);
  color: #0f77dc;
  font-size: 1.4rem;
  font-weight: 700;
}

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

.faq-answer {
  padding: 0 1.15rem 1.15rem;
  color: #4b5563;
  line-height: 1.75;
}

.faq-answer p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.align-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.25rem;
}

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

.service-card {
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
}

.accent-green::before { background: var(--color-green); }
.accent-red::before { background: var(--color-red); }
.accent-yellow::before { background: var(--color-yellow); }
.accent-purple::before { background: var(--color-purple); }
.accent-gold::before { background: var(--color-gold); }

.service-card h3 {
  margin-bottom: 0.65rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.areas-grid span {
  text-align: center;
  font-weight: 600;
}

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

.quote-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.6rem;
  padding: 1.25rem;
}

.contact-panel a {
  font-weight: 700;
  color: var(--color-green-deep);
}

.cta-band {
  padding-top: 2rem;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-large);
  background: #0a2d67;
  color: #fff;
  box-shadow: var(--shadow-card);
}

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

.cta-band-inner .button-primary {
  background: #ffffff;
  color: #0a2d67;
  box-shadow: 0 16px 30px rgba(3, 6, 31, 0.28);
}

.cta-band-inner .button-primary:hover,
.cta-band-inner .button-primary:focus-visible {
  background: #ffffff;
  color: #0a2d67;
}

.cta-band-inner .button-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
}

.cta-band-inner .button-secondary:hover,
.cta-band-inner .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.62);
}

.contact-reference-section {
  padding: 2.25rem 0 4.5rem;
  background: var(--color-surface);
}

.contact-reference-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(350px, 0.74fr);
  gap: 1.8rem;
  align-items: start;
}

.contact-reference-copy {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  color: #08285a;
}

.contact-reference-text-block {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.25rem;
}

.contact-reference-copy .eyebrow {
  color: #0f77dc;
}

.contact-reference-copy h1 {
  color: #08285a;
  max-width: 11ch;
  font-size: clamp(2.8rem, 5vw, 4.55rem);
  line-height: 0.98;
}

.contact-reference-copy .hero-subheading {
  margin: 0;
  max-width: 33rem;
  color: rgba(8, 40, 90, 0.78);
}

.contact-reference-image-card {
  margin-top: 0.2rem;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(8, 40, 90, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(8, 40, 90, 0.08);
}

.contact-reference-image-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.contact-reference-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 0.15rem;
}

.contact-reference-info-card {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(8, 40, 90, 0.14);
  background: #ffffff;
  color: #08285a;
  box-shadow: 0 12px 24px rgba(8, 40, 90, 0.08);
}

.contact-reference-label {
  margin: 0 0 0.6rem;
  color: #0f77dc;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-reference-info-card strong,
.contact-reference-info-card span,
.contact-reference-info-card a {
  display: block;
}

.contact-reference-info-card strong {
  color: #08285a;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
}

.contact-reference-info-card span {
  margin-top: 0.35rem;
  color: rgba(8, 40, 90, 0.72);
  font-size: 0.92rem;
}

.contact-reference-info-card a {
  color: #08285a;
}

.contact-reference-form-column {
  display: grid;
}

.contact-reference-form-card {
  padding: 1.9rem;
  border-radius: 24px;
  border: 1px solid rgba(233, 238, 213, 0.7);
  box-shadow: 0 26px 54px rgba(8, 14, 72, 0.22);
}

.contact-reference-form-card .quote-form-heading p {
  margin-bottom: 0.85rem;
}

.contact-reference-form-card .quote-form-heading h2 {
  max-width: 11ch;
}

.contact-reference-form-card .quote-form-heading p:last-child {
  margin-bottom: 0;
  color: #7a7f85;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.contact-page-section {
  padding-top: 3rem;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.6rem;
  align-items: start;
}

.contact-page-layout--quote {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.quote-intro-column,
.contact-page-sidebar,
.contact-form-column {
  display: grid;
  gap: 1.4rem;
}

.contact-page-layout--quote .contact-form-column {
  width: 100%;
}

.quote-intro-panel {
  padding: 1.6rem 1rem 1.6rem 0;
}

.quote-intro-panel h1 {
  max-width: 9ch;
}

.quote-intro-panel .hero-subheading {
  max-width: 28ch;
  color: #404040;
}

.quote-intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.quote-intro-points span {
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
}

.contact-feature-card,
.contact-form-wrap {
  padding: 1.6rem;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-panel-strong {
  margin-top: 1.2rem;
}

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

.contact-mini-card {
  position: relative;
  overflow: hidden;
}

.accent-green-card::before,
.accent-red-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
}

.accent-green-card::before {
  background: var(--color-green);
}

.accent-red-card::before {
  background: var(--color-red);
}

.accent-panel {
  background:
    linear-gradient(180deg, rgba(31, 122, 69, 0.08), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.96);
}

.contact-form {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-page-layout--quote .contact-form-wrap {
  width: 100%;
}

.quote-form-card {
  background: linear-gradient(180deg, #fcfcf8 0%, #f6f7ef 100%);
}

.quote-form-heading {
  margin-bottom: 1.4rem;
}

.quote-form-heading h2 {
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.04;
}

.quote-form-elecworks {
  display: grid;
  gap: 0.85rem;
}

.quote-field {
  margin-bottom: 0;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  border-radius: 20px;
  border: 1px solid rgba(190, 211, 126, 0.65);
  background: rgba(255, 255, 255, 0.96);
  min-height: 58px;
  padding: 1rem 1.15rem;
  color: #353535;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.quote-field textarea {
  min-height: 140px;
  resize: vertical;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
  color: #9a9a9a;
}

.quote-upload-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(190, 211, 126, 0.65);
  background: rgba(255, 255, 255, 0.96);
  margin-bottom: 0;
  position: relative;
}

.quote-upload-field input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.quote-upload-copy {
  display: grid;
  gap: 0.3rem;
}

.quote-upload-copy strong {
  color: #353535;
  font-size: 1.2rem;
  font-weight: 500;
}

.quote-upload-copy span {
  color: #888;
}

.quote-upload-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(190, 211, 126, 0.26);
  color: #43513d;
}

.quote-upload-icon svg {
  width: 22px;
  height: 22px;
}

.quote-preferred-contact {
  margin: 0.35rem 0 0;
}

.hidden-conditional[hidden] {
  display: none;
}

.quote-submit-button {
  min-height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #a9d24f, #c7e27c);
  color: #516039;
  box-shadow: 0 16px 28px rgba(169, 210, 79, 0.24);
}

.quote-submit-button:hover,
.quote-submit-button:focus-visible {
  color: #44512f;
}

.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

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

.callback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 32, 0.6);
  backdrop-filter: blur(3px);
}

.callback-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  box-shadow: 0 36px 70px rgba(7, 18, 49, 0.32);
}

.callback-modal__close {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(240, 191, 58, 0.45);
  background: rgba(255, 255, 255, 0.98);
  color: #536074;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

.callback-modal__intro {
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.callback-modal__eyebrow {
  margin: 0 0 0.85rem;
  color: #0f77dc;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.callback-modal__intro h2 {
  margin: 0 0 1rem;
  max-width: 11ch;
  font-size: clamp(2.2rem, 3vw, 3.35rem);
  line-height: 1.02;
}

.callback-modal__intro p {
  margin: 0;
  max-width: 38rem;
  color: #69707f;
  line-height: 1.7;
}

.pricing-modal__dialog {
  width: min(100%, 1240px);
  padding: 1.5rem;
}

.pricing-modal__image-wrap {
  overflow: auto;
  border-radius: 22px;
  background: #ffffff;
}

.pricing-modal__image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.gallery-lightbox__dialog {
  width: min(100%, 1240px);
  padding: 1.25rem;
  background: rgba(10, 18, 32, 0.96);
}

.gallery-lightbox__meta {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  z-index: 2;
  display: grid;
  gap: 0.45rem;
  max-width: calc(100% - 10rem);
}

.gallery-lightbox__stage,
.gallery-lightbox__project {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
}

.gallery-lightbox__stage {
  min-height: 36px;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  color: #08285a;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-lightbox__project {
  min-height: 40px;
  padding: 0.45rem 1rem;
  background: rgba(10, 45, 103, 0.88);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 45, 103, 0.82);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox__nav--prev {
  left: 1.25rem;
}

.gallery-lightbox__nav--next {
  right: 1.25rem;
}

.gallery-lightbox__image-wrap {
  overflow: auto;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  padding-top: 4.8rem;
}

.gallery-lightbox__image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  margin: 0 auto;
  border-radius: 18px;
}

.callback-modal__form {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.callback-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}

.callback-form-grid > .quote-field {
  width: 100%;
  grid-column: 1 / -1;
}

.callback-modal .quote-field input,
.callback-modal .quote-field select,
.callback-modal .quote-field textarea {
  border-color: rgba(10, 45, 103, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.callback-modal .quote-field input:focus,
.callback-modal .quote-field select:focus,
.callback-modal .quote-field textarea:focus {
  outline: 3px solid rgba(15, 119, 220, 0.16);
  border-color: #0f77dc;
}

.callback-form-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  grid-column: 1 / -1;
  align-items: end;
}

.callback-form-split label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2f3542;
}

.callback-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 0.45rem;
  grid-column: 1 / -1;
}

.callback-submit-button {
  min-height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a2d67, #016adb);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(10, 45, 103, 0.24);
}

.callback-submit-button:hover,
.callback-submit-button:focus-visible {
  color: #ffffff;
}

.callback-cancel-button {
  min-height: 56px;
  padding-inline: 1.5rem;
  background: #ffffff;
  color: #0a2d67;
  border-color: rgba(10, 45, 103, 0.16);
}

body.modal-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.field-row-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
}

.field-row-split > div {
  display: grid;
  gap: 0.5rem;
}

.quote-form {
  padding: 1.5rem;
}

.field-row {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.field-row label,
.field-row legend {
  font-weight: 700;
  color: var(--color-ink);
}

.field-row input,
.field-row select,
.field-row textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(18, 18, 18, 0.12);
  background: #fff;
  color: var(--color-ink);
}

.field-row input:focus,
.field-row select:focus,
.field-row textarea:focus {
  outline: 3px solid rgba(31, 122, 69, 0.18);
  border-color: var(--color-green);
}

.preferred-contact {
  padding: 0;
  border: 0;
}

.preferred-contact label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-right: 1rem;
  font-weight: 600;
}

.preferred-contact input {
  width: auto;
  margin: 0;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  font-weight: 600;
}

.form-status.success {
  color: var(--color-green-deep);
}

.form-status.error {
  color: var(--color-red);
}

.site-footer {
  padding: 3rem 0 3.5rem;
  background: var(--color-logo-blue);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  align-items: start;
}

.site-footer h2 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li + li {
  margin-top: 0.7rem;
}

.footer-social-list {
  gap: 0.8rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.social-icon svg {
  width: 1rem;
  height: 1rem;
}

.instagram-link .social-icon {
  color: #fff;
  background: linear-gradient(135deg, #6d49a8, #d0342c 52%, #f0bf3a);
  box-shadow: 0 10px 22px rgba(109, 73, 168, 0.24);
}

.facebook-link .social-icon {
  color: #fff;
  background: linear-gradient(135deg, #0f77dc, #08285a);
  box-shadow: 0 10px 22px rgba(8, 40, 90, 0.28);
}

.footer-social-link:hover .social-icon,
.footer-social-link:focus-visible .social-icon {
  transform: translateY(-1px);
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: #fff;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  cursor: pointer;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: #ffffff;
}

@media (max-width: 1100px) {
  .header-inner,
  .split-layout,
  .quote-layout,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }

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

  .intro-cards,
  .credentials-grid,
  .footer-grid,
  .areas-grid,
  .areas-grid-preview,
  .contact-grid,
  .gallery-grid,
  .gallery-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-actions {
    justify-content: flex-start;
  }

  .site-search-panel {
    right: 0;
    width: min(26rem, calc(100vw - 2rem));
  }

  .m2v-home-hero {
    padding-bottom: 2rem;
  }

  .m2v-home-hero__shell {
    min-height: 660px;
  }

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

  .contact-reference-layout {
    grid-template-columns: 1fr;
  }

  .contact-reference-copy h1 {
    max-width: 12ch;
  }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "actions actions";
    padding: 0.9rem 0;
  }

  .brand { grid-area: brand; }
  .nav-toggle {
    display: block;
    grid-area: toggle;
  }

  .site-nav {
    grid-area: nav;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    padding: 1rem 0 0.25rem;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

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

  .site-nav a {
    width: auto;
    flex: initial;
    padding: 0.35rem 0;
    text-align: left;
  }

  .header-actions {
    grid-area: actions;
    flex-wrap: wrap;
    width: 100%;
  }

  .hero-stage {
    aspect-ratio: 2310 / 620;
  }

  .m2v-home-hero {
    padding-top: 1rem;
    padding-bottom: 1.8rem;
  }

  .m2v-home-hero__shell {
    min-height: auto;
    border-radius: 28px;
  }

  .m2v-home-hero__backdrop::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 38%, rgba(255, 255, 255, 0.26) 100%);
  }

  .m2v-home-hero__backdrop img {
    min-height: 720px;
    object-position: 66% center;
  }

  .m2v-home-hero__panel {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    min-height: 720px;
    padding: 2.4rem 2rem;
    text-align: center;
    justify-items: center;
  }

  .m2v-home-hero__title {
    max-width: 11ch;
    font-size: clamp(2.25rem, 7vw, 3.5rem);
  }

  .m2v-home-hero__subheading {
    max-width: 34rem;
  }

  .m2v-home-hero__feature-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .m2v-home-hero__actions {
    justify-content: center;
  }

  .contact-reference-section {
    padding-top: 3rem;
  }

  .contact-reference-copy h1,
  .contact-reference-copy .hero-subheading {
    max-width: none;
  }

  .hero-image-full {
    position: absolute;
    inset: 0;
    height: 100%;
    object-position: center 88%;
  }

  .page-hero {
    padding-top: 3rem;
  }

  h1 {
    max-width: 13ch;
  }

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

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .intro-cards,
  .credentials-grid,
  .services-grid,
  .areas-grid,
  .areas-grid-preview,
  .footer-grid,
  .contact-grid,
  .gallery-grid,
  .gallery-overview,
  .gallery-comparison,
  .gallery-photo-placeholder,
  .gallery-overview-points {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 140px;
  }

  .header-actions {
    gap: 0.65rem;
  }

  .header-actions .button {
    flex: 1 1 auto;
  }

  .site-search {
    flex: 0 0 auto;
  }

  .site-search-panel {
    position: fixed;
    top: 5.35rem;
    left: 1rem;
    right: 1rem;
    width: auto;
  }

  .hero-stage {
    aspect-ratio: 2310 / 600;
  }

  .m2v-home-hero {
    padding: 0.9rem 0 1.6rem;
  }

  .m2v-home-hero__shell {
    border-radius: 22px;
  }

  .m2v-home-hero__backdrop {
    position: absolute;
    inset: 0;
  }

  .m2v-home-hero__backdrop img {
    min-height: 640px;
    object-position: 68% center;
  }

  .m2v-home-hero__panel {
    position: relative;
    z-index: 1;
    min-height: 640px;
    padding: 2rem 1.25rem 1.8rem;
  }

  .m2v-home-hero__panel {
    gap: 0.9rem;
  }

  .m2v-home-hero__eyebrow,
  .m2v-home-hero__title,
  .m2v-home-hero__subheading {
    text-shadow: 0 10px 28px rgba(8, 40, 90, 0.24);
  }

  .m2v-home-hero__feature-item {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
  }

  .m2v-home-hero__title {
    max-width: 12ch;
    font-size: clamp(1.95rem, 9vw, 2.7rem);
    line-height: 1.02;
  }

  .m2v-home-hero__subheading {
    font-size: 1rem;
    line-height: 1.55;
  }

  .m2v-home-hero__feature-item {
    min-height: 0;
    padding: 0.95rem 0.9rem;
  }

  .m2v-home-hero__feature-item strong {
    font-size: 0.95rem;
  }

  .m2v-home-hero__cta {
    width: 100%;
    max-width: 18rem;
  }

  .callback-modal {
    padding: 1rem;
  }

  .callback-modal__dialog {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .callback-form-split {
    grid-template-columns: 1fr;
  }

  .callback-modal__actions .button {
    width: 100%;
  }

  .pricing-modal__dialog {
    padding: 1rem;
  }

  .gallery-lightbox__dialog {
    padding: 1rem;
  }

  .gallery-lightbox__meta {
    left: 1rem;
    top: 1rem;
    max-width: calc(100% - 6.5rem);
  }

  .gallery-lightbox__nav {
    width: 48px;
    height: 48px;
    font-size: 1.75rem;
  }

  .gallery-lightbox__nav--prev {
    left: 0.75rem;
  }

  .gallery-lightbox__nav--next {
    right: 0.75rem;
  }

  .contact-reference-section {
    padding: 2.4rem 0 3.5rem;
  }

  .contact-reference-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3.3rem);
  }

  .contact-reference-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-reference-form-card {
    padding: 1.4rem;
  }

  .phone-link {
    font-size: 0.95rem;
  }
}
