﻿:root {
  --navy: #0d3158;
  --navy-deep: #071c33;
  --blue: #1f7fe5;
  --sky: #e8f5ff;
  --yellow: #ffcb3d;
  --yellow-deep: #f2ab00;
  --white: #ffffff;
  --ink: #16314e;
  --muted: #5b7289;
  --line: rgba(13, 49, 88, 0.12);
  --shadow: 0 24px 60px rgba(6, 28, 52, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --wrap: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(31, 127, 229, 0.11), transparent 28%),
    linear-gradient(180deg, #f9fcff 0%, #ffffff 22%, #f7fbff 100%);
  line-height: 1.6;
}

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

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

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

.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;
}

.container {
  width: min(calc(100% - 2rem), var(--wrap));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(13, 49, 88, 0.08);
  box-shadow: 0 8px 22px rgba(6, 28, 52, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: clamp(180px, 23vw, 320px);
  height: auto;
  background: transparent;
}

.brand-copy {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.site-nav {
  position: absolute;
  inset: calc(100% + 1px) 1rem auto;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 49, 88, 0.08);
  display: none;
}

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

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.site-nav li {
  position: relative;
}

.site-nav a {
  font-weight: 700;
  color: var(--navy);
}

.nav-link,
.submenu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0;
  font-weight: 700;
  color: var(--navy);
}

.submenu-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
}

.submenu-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.has-submenu.is-open .submenu-toggle svg {
  transform: rotate(180deg);
}

.submenu {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: none !important;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  gap: 0;
  border: 1px solid rgba(13, 49, 88, 0.12);
  background: #f9fbfe;
  overflow: hidden;
}

.has-submenu.is-open .submenu {
  display: grid !important;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.submenu a {
  display: block;
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  text-align: left;
  background: #ffffff;
  color: var(--navy);
  border-bottom: 1px solid rgba(13, 49, 88, 0.12);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.submenu li:last-child a {
  border-bottom: none;
}

.submenu a:hover,
.submenu a:focus-visible {
  background: var(--blue);
  color: var(--white);
}

.header-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--yellow) 0%, #ffd96c 100%);
  color: var(--navy-deep);
  box-shadow: 0 14px 28px rgba(255, 203, 61, 0.35);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--blue) 0%, #3f97f5 100%);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(31, 127, 229, 0.25);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(7, 28, 51, 0.93) 0%, rgba(13, 49, 88, 0.85) 43%, rgba(31, 127, 229, 0.42) 100%),
    url("../images/hero-house.png") center/cover no-repeat;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(10px);
}

.hero::before {
  width: 240px;
  height: 240px;
  top: -80px;
  right: -70px;
}

.hero::after {
  width: 170px;
  height: 170px;
  left: -50px;
  bottom: 80px;
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding: 4rem 0 3.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f5fbff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  line-height: 1.05;
  color: var(--navy-deep);
}

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

h1 {
  font-size: clamp(2.4rem, 7vw, 4.7rem);
}

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

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

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

.hero-copy p,
.page-hero p,
.hero-list li,
.metric-card p,
.cta-band p,
.footer-top p {
  color: rgba(255, 255, 255, 0.88);
}

.hero-copy {
  max-width: 680px;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0 1.25rem;
}

.hero-list,
.check-list,
.mini-list {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.hero-list li,
.check-list li,
.mini-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.hero-list li::before,
.check-list li::before,
.mini-list li::before {
  content: "•";
  color: var(--yellow);
  font-weight: 900;
}

.glass-card,
.card,
.metric-card,
.trust-badge,
.faq-item,
.process-step,
.service-link-card,
.location-card,
.contact-card,
.spotlight-card,
.review-card {
  border: 1px solid rgba(13, 49, 88, 0.09);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.14) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
  color: var(--white);
}

.quote-card {
  padding: 1.4rem;
}

.quote-card h2 {
  font-size: 1.8rem;
  color: var(--white);
}

.quote-card p {
  color: rgba(255, 255, 255, 0.82);
}

.quote-form,
.contact-form {
  display: grid;
  gap: 0.95rem;
}

.form-grid {
  display: grid;
  gap: 0.95rem;
}

.input-group {
  display: grid;
  gap: 0.35rem;
}

.input-group label {
  font-size: 0.95rem;
  font-weight: 800;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(13, 49, 88, 0.18);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

.quote-card .input-group input,
.quote-card .input-group select,
.quote-card .input-group textarea {
  background: rgba(255, 255, 255, 0.98);
}

.input-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.stack {
  padding: 4.6rem 0;
}

.stack-tight {
  padding: 3.6rem 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metrics-grid,
.services-grid,
.benefits-grid,
.why-grid,
.spotlight-grid,
.links-grid,
.areas-grid,
.contact-grid,
.faq-grid,
.process-grid,
.footer-grid {
  display: grid;
  gap: 1.15rem;
}

.metric-card,
.card,
.trust-badge,
.spotlight-card,
.review-card,
.service-link-card,
.location-card,
.contact-card,
.process-step {
  padding: 1.35rem;
}

.metric-card strong,
.card strong,
.trust-badge strong,
.contact-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--navy-deep);
  font-size: 1.05rem;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(31, 127, 229, 0.12), rgba(255, 203, 61, 0.26));
  color: var(--navy);
  font-weight: 900;
}

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

.review-summary {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #f4b400;
  font-size: 1.45rem;
  letter-spacing: 0.05em;
}

.review-badge {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 49, 88, 0.09);
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: var(--shadow);
}

.review-badge strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--navy-deep);
  font-size: 1.1rem;
}

.trust-row {
  display: grid;
  gap: 0.85rem;
}

.trust-badge {
  background: linear-gradient(180deg, #fffef9 0%, #ffffff 100%);
}

.service-link-card,
.location-card {
  position: relative;
  overflow: hidden;
}

.service-link-card::after,
.location-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -50px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(31, 127, 229, 0.08);
}

.service-link-card p,
.location-card p,
.spotlight-card p {
  position: relative;
  z-index: 1;
}

.service-link-card a,
.location-card a {
  color: var(--blue);
  font-weight: 800;
}

.photo-grid {
  display: grid;
  gap: 1.15rem;
}

.photo-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 49, 88, 0.09);
  background: var(--white);
  box-shadow: var(--shadow);
}

.photo-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.photo-content {
  padding: 1.2rem 1.25rem 1.3rem;
}

.photo-content strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy-deep);
  font-size: 1.08rem;
}

.photo-content p {
  margin-bottom: 0;
}

.service-page-hero .page-hero-inner {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.service-page-hero .page-hero-inner > div {
  max-width: 720px;
}

.service-page-hero .hero-actions {
  margin-top: 1.4rem;
}

.service-content-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
  margin-bottom: 1.35rem;
}

.service-content-grid .section-head {
  max-width: 640px;
}

.service-content-grid .section-head h2 {
  font-size: clamp(1.65rem, 3.8vw, 2.5rem);
  line-height: 0.98;
}

.service-content-grid .section-head p {
  max-width: 58ch;
}

.service-help-card {
  margin: 0;
  padding: 1.15rem 1.2rem;
}

.service-final-cta {
  color: var(--white);
  background: linear-gradient(135deg, #0a2746 0%, #123860 55%, #1a5589 100%);
}

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

.dark-section {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 203, 61, 0.12), transparent 22%),
    linear-gradient(135deg, #0a2746 0%, #102f51 50%, #1a5589 100%);
}

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

.cta-band {
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: auto 10% -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.35rem;
  border: none;
  background: transparent;
  text-align: left;
  font-weight: 800;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-answer {
  padding: 0 1.35rem 1.3rem;
}

.faq-item[open] .faq-question {
  color: var(--blue);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(130deg, rgba(7, 28, 51, 0.95) 0%, rgba(13, 49, 88, 0.88) 45%, rgba(31, 127, 229, 0.48) 100%),
    url("../images/hero-house.png") center/cover no-repeat;
}

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

.breadcrumb a {
  color: rgba(255, 255, 255, 0.96);
}

.page-layout {
  display: grid;
  gap: 1.25rem;
}

.sidebar-card {
  padding: 1.35rem;
  border-radius: 24px;
  background: #f7fbff;
  border: 1px solid var(--line);
}

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

.service-hero-note {
  max-width: 760px;
}

.contact-form-wrap {
  padding: 1.4rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.8);
  background: #06192e;
}

.footer-top {
  padding: 3.4rem 0 1.8rem;
}

.footer-logo-plaque {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(2, 13, 27, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

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

.footer-grid h3,
.footer-grid h4,
.footer-cta strong {
  color: var(--white);
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--yellow);
}

.footer-bottom {
  padding: 1rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(47, 132, 236, 0.16);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(74, 152, 245, 0.18);
  font-weight: 800;
  font-size: 0.92rem;
}

.accent-link {
  color: var(--blue);
  font-weight: 800;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--navy-deep);
  z-index: 100;
}

.home-frame {
  width: min(calc(100% - 1.25rem), 1240px);
  margin: 1.25rem auto;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(8, 32, 56, 0.12);
  border: 1px solid rgba(13, 49, 88, 0.08);
}

.home-header {
  position: sticky;
  top: 0;
}

.home-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #2a6bc2;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-kicker.light {
  color: rgba(255, 255, 255, 0.72);
}

.home-heading,
.home-hero-copy h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-heading {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 0.98;
}

.home-heading.light {
  color: #ffffff;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.12) 68%),
    url("../images/hero-house.png") center/cover no-repeat;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 58, 103, 0.08), rgba(21, 58, 103, 0.18));
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  padding: 2.25rem 0 1.8rem;
}

.home-hero-copy {
  max-width: 520px;
  padding: 0.5rem 0;
}

.home-hero-copy h1 {
  margin-bottom: 0.8rem;
  color: #19396b;
  font-size: clamp(2.6rem, 6.4vw, 4.3rem);
  line-height: 0.92;
}

.home-subhead {
  margin-bottom: 1rem;
  color: #203f71;
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  font-weight: 500;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.home-phone-link {
  color: #2e7b42;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  font-weight: 800;
}

.home-quote-card {
  padding: 1.35rem;
  border-radius: 18px;
  background: rgba(18, 52, 95, 0.83);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 44px rgba(10, 38, 70, 0.24);
  color: #ffffff;
}

.home-quote-card h2 {
  margin-bottom: 0.9rem;
  color: #ffffff;
  font-size: 1.45rem;
}

.home-quote-card .input-group label,
.home-quote-card .form-note {
  color: rgba(255, 255, 255, 0.86);
}

.home-quote-card .input-group input,
.home-quote-card .input-group select,
.home-quote-card .input-group textarea {
  border-radius: 10px;
  border-color: rgba(255, 255, 255, 0.12);
}

.home-review-ribbon {
  background: linear-gradient(180deg, #184578 0%, #12345d 100%);
  color: #ffffff;
}

.home-review-ribbon-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1rem 0;
}

.ribbon-item,
.ribbon-stars {
  font-weight: 700;
}

.ribbon-stars {
  color: #ffd348;
}

.ribbon-stars span {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.home-section {
  padding: 3.2rem 0;
}

.intro-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.intro-copy {
  max-width: 620px;
}

.intro-media {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(9, 32, 57, 0.16);
  aspect-ratio: 1.16 / 1;
  align-self: center;
}

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

.service-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.service-area-pills span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: #eef4fb;
  color: #15345d;
  font-weight: 700;
}

.reviews-section {
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fd 100%);
}

.reviews-layout {
  display: grid;
  gap: 1rem;
}

.review-list-card {
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(13, 49, 88, 0.08);
  box-shadow: 0 14px 34px rgba(7, 31, 57, 0.08);
}

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

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #6ba63e;
  color: #ffffff;
  font-weight: 800;
}

.review-avatar-teal {
  background: #0b8a84;
}

.review-avatar-blue {
  background: #2d6fcb;
}

.review-avatar-pink {
  background: #d6518f;
}

.review-avatar-photo {
  background: #7b6343;
}

.review-meta {
  color: #6f7f92;
  font-size: 0.9rem;
}

.review-stars-line {
  margin-bottom: 0.55rem;
  color: #f5be2f;
  letter-spacing: 0.12em;
}

.services-panel {
  background:
    linear-gradient(180deg, rgba(245, 248, 252, 0.96), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at top left, rgba(34, 85, 149, 0.07), transparent 30%);
}

.services-panel-grid {
  display: grid;
  gap: 0.9rem;
}

.service-panel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 218px;
  padding: 1.9rem 1.05rem 0.95rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(13, 49, 88, 0.16);
  box-shadow: 0 12px 24px rgba(9, 31, 57, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-panel-card:hover,
.service-panel-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(13, 49, 88, 0.22);
  box-shadow: 0 18px 32px rgba(9, 31, 57, 0.12);
}

.service-panel-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0.9rem;
  left: 1.05rem;
  color: var(--navy);
}

.service-panel-icon svg {
  width: 38px;
  height: 38px;
}

.service-panel-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  padding-left: 2.65rem;
  color: #0f2f57;
  font-size: 1.05rem;
  line-height: 1.2;
}

.service-panel-card p {
  margin: 0 0 0.75rem;
  font-size: 0.93rem;
  line-height: 1.55;
}

.service-panel-card a {
  color: #123a68;
  font-weight: 800;
  margin-top: auto;
  font-size: 0.92rem;
}

.dark-band {
  background: linear-gradient(180deg, #1a4d82 0%, #123860 100%);
  color: #ffffff;
}

.benefit-band-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card {
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: #16314e;
}

.benefit-card strong {
  display: block;
  margin-bottom: 0.4rem;
}

.clean-card-grid {
  display: grid;
  gap: 1rem;
}

.clean-card {
  padding: 1.2rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(13, 49, 88, 0.08);
  box-shadow: 0 12px 30px rgba(9, 31, 57, 0.08);
}

.clean-card a {
  color: #2a6bc2;
  font-weight: 800;
}

.cta-cloud {
  color: #ffffff;
  padding: 2.7rem 0;
  background:
    linear-gradient(180deg, rgba(22, 69, 119, 0.84), rgba(17, 56, 96, 0.88)),
    url("../images/hero-house.png") center/cover no-repeat;
}

.cta-cloud-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.cta-cloud p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-cloud-copy {
  display: grid;
  align-content: start;
}

.cta-cloud-copy .home-heading {
  margin-bottom: 1.25rem;
  font-size: clamp(1.85rem, 4.1vw, 3rem);
}

.cta-cloud-copy p {
  max-width: 54ch;
}

.cta-cloud-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
}

.cta-phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  min-height: 60px;
  padding: 0.95rem 1.8rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #1f7fe5 0%, #145fb0 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 38px rgba(7, 35, 68, 0.28);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
}

.cta-phone-note {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-home {
  background: #fbfdff;
}

.gallery-section {
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fd 100%);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(13, 49, 88, 0.08);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(7, 31, 57, 0.08);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.03);
}

@media (max-width: 767.98px) {
  .header-cta {
    display: inline-flex;
    min-height: 40px;
    padding: 0.7rem 0.95rem;
    font-size: 0;
    line-height: 1;
    white-space: nowrap;
  }

  .header-cta::after {
    content: "Quote";
    font-size: 0.88rem;
    font-weight: 800;
  }

  .home-phone-link {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0.15rem 0;
    color: #ffffff;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(7, 28, 51, 0.45);
  }
}

@media (min-width: 720px) {
  .home-hero-grid,
  .intro-grid,
  .cta-cloud-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  }

  .cta-cloud-inner {
    gap: 2.4rem;
  }

  .cta-cloud-action {
    justify-content: center;
  }

  .intro-grid {
    gap: 2.8rem;
  }

  .reviews-layout,
  .clean-card-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .metrics-grid,
  .trust-row,
  .benefits-grid,
  .why-grid,
  .spotlight-grid,
  .links-grid,
  .areas-grid,
  .faq-grid,
  .contact-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .review-summary {
    grid-template-columns: 340px minmax(0, 1fr);
    align-items: center;
  }

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

@media (min-width: 960px) {
  .services-panel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .site-nav > ul {
    display: flex;
    align-items: center;
    gap: 1.1rem;
  }

  .site-nav a,
  .submenu-toggle {
    font-size: 0.96rem;
  }

  .header-cta {
    display: inline-flex;
  }

  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(13, 49, 88, 0.08);
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(6, 28, 52, 0.18);
    z-index: 9999;
  }

  .has-submenu.is-open .submenu {
    display: grid !important;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .hero-inner,
  .page-hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: center;
    padding: 5.6rem 0 5rem;
  }

  .service-page-hero .page-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-content-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: start;
  }

  .service-help-card {
    margin-top: 24px;
  }

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

  .benefits-grid,
  .why-grid,
  .spotlight-grid,
  .areas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .page-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  }
}

