:root {
  --bg: #f6f8fb;
  --bg-deep: #061226;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --surface-dark: #0d2246;
  --text: #081a3a;
  --text-soft: #4f607f;
  --line: rgba(8, 26, 58, 0.1);
  --line-strong: rgba(8, 26, 58, 0.2);
  --primary: #0d1b5e;
  --primary-2: #19357f;
  --accent: #1f891d;
  --accent-deep: #146815;
  --accent-warm: #ffd91f;
  --accent-soft: rgba(31, 137, 29, 0.14);
  --highlight: #fff3a6;
  --shadow: 0 20px 45px rgba(8, 26, 58, 0.12);
  --shadow-strong: 0 28px 70px rgba(8, 26, 58, 0.2);
  --radius: 24px;
  --section-space: 5.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(31, 137, 29, 0.16), transparent 24%),
    radial-gradient(circle at top center, rgba(255, 217, 31, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(13, 27, 94, 0.16), transparent 28%),
    linear-gradient(180deg, #fffef7 0%, #eef4fb 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 4rem;
}

.hero,
.hero.small {
  padding: 0.35rem 0 2.5rem;
}

.alert-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 217, 31, 0.24);
  border-radius: 18px;
  background: linear-gradient(90deg, #07162f 0%, #12346d 100%);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.alert-strip strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.alert-strip span {
  color: rgba(255, 255, 255, 0.92);
}

.alert-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-warm) 0%, #fff27a 100%);
  color: #081a3a;
  font-weight: 900;
  white-space: nowrap;
}

.topbar,
.band-card,
.feature-card,
.process-list article,
.review-card,
.embed-frame-card,
.footer,
.split-card,
.contact-card,
.service-area-card,
.check-card,
.mini-card,
.stats-grid article,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.3rem;
  border-radius: 20px;
  position: sticky;
  top: 1rem;
  z-index: 20;
  backdrop-filter: blur(12px);
}

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

.brand-logo {
  width: 190px;
  height: 72px;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  border: 1px solid rgba(8, 26, 58, 0.12);
  box-shadow: 0 14px 28px rgba(8, 26, 58, 0.14);
  background: #ffd91f;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-text span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: var(--surface-strong);
  color: var(--primary);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-soft);
}

.nav-call,
.hero-phone a {
  color: var(--primary);
  font-weight: 900;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-warm) 0%, #fff27a 100%);
  box-shadow: 0 16px 30px rgba(255, 217, 31, 0.28);
  color: #081a3a;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 1.4rem;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.15rem;
}

.trust-bar span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 217, 31, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.hero-copy,
.hero-visual,
.callout-card {
  min-height: 100%;
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 2.2rem;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(237, 243, 251, 0.96) 100%);
  border: 1px solid rgba(8, 26, 58, 0.08);
  box-shadow: var(--shadow-strong);
}

.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-copy::before {
  width: 14rem;
  height: 14rem;
  right: -3rem;
  top: -3rem;
  background: radial-gradient(circle, rgba(255, 217, 31, 0.24), transparent 70%);
}

.hero-copy::after {
  width: 11rem;
  height: 11rem;
  left: -3rem;
  bottom: -4rem;
  background: radial-gradient(circle, rgba(18, 52, 109, 0.16), transparent 70%);
}

.eyebrow,
.card-label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-warm) 0%, #fff27a 100%);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid rgba(255, 217, 31, 0.24);
  box-shadow: 0 12px 24px rgba(255, 217, 31, 0.22);
}

.hero-copy h1,
.section-heading h2,
.split-copy h2,
.footer h2,
.service-area-card h2,
.band-card h2 {
  margin: 1rem 0 0.8rem;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.95;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 12ch;
}

.lede,
.section-copy,
.footer-copy,
.band-card p,
.split-copy p,
.feature-card p,
.mini-card p,
.review-card p,
.contact-card p,
.service-area-card p,
.process-list p,
.stats-grid span {
  color: var(--text-soft);
}

.hero-points,
.check-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-phone {
  margin: 1rem 0 0;
  font-weight: 800;
  color: var(--text);
}

.hero-inline-trust {
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-weight: 700;
}

.hero-inline-trust span {
  color: var(--accent);
  margin: 0 0.35rem;
}

.hero-points li,
.check-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(8, 26, 58, 0.04);
  border: 1px solid rgba(8, 26, 58, 0.06);
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.hero-points li::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(31, 137, 29, 0.14);
  flex-shrink: 0;
}

.hero-actions,
.footer-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.stats-grid article,
.feature-card,
.mini-card,
.review-card,
.faq-item,
.gallery-card,
.brand-asset-card,
.seo-link-block a,
.band-card,
.footer,
.split-card,
.contact-card,
.service-area-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.stats-grid article:hover,
.feature-card:hover,
.mini-card:hover,
.review-card:hover,
.faq-item:hover,
.gallery-card:hover,
.brand-asset-card:hover,
.seo-link-block a:hover,
.band-card:hover,
.footer:hover,
.split-card:hover,
.contact-card:hover,
.service-area-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(8, 26, 58, 0.16);
  border-color: rgba(18, 52, 109, 0.18);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-warm) 0%, #fff27a 100%);
  color: var(--primary);
  box-shadow: 0 16px 30px rgba(255, 217, 31, 0.28);
}

.button-secondary {
  background: var(--primary);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-trust {
  max-width: 52ch;
  margin-top: 1.3rem;
  color: var(--text-soft);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 100%;
  box-shadow: var(--shadow-strong);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 26, 58, 0.02) 0%, rgba(8, 26, 58, 0.34) 100%);
}

.hero-visual img,
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge,
.service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.1rem;
  border-radius: 18px;
  background: rgba(8, 26, 58, 0.88);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  border: 1px solid rgba(255, 217, 31, 0.26);
}

.section {
  padding: var(--section-space) 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.7vw, 3.7rem);
}

.stats-grid,
.feature-grid,
.mini-grid,
.reviews-grid,
.contact-grid,
.seo-link-grid,
.faq-stack {
  display: grid;
  gap: 1.2rem;
}

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

.authority-strip article {
  padding: 1.2rem 1.25rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(8, 26, 58, 0.98) 0%, rgba(18, 52, 109, 0.96) 100%);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.authority-strip strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.authority-strip span {
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

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

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

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

.faq-stack {
  grid-template-columns: 1fr;
}

.stats-grid article,
.feature-card,
.mini-card,
.review-card,
.contact-card,
.check-card {
  padding: 1.45rem;
  border-radius: 24px;
}

.stats-grid strong,
.feature-card h3,
.mini-card h3,
.contact-card h3,
.review-card strong,
.split-copy h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
}

.intro-band .band-card,
.footer,
.service-area-card,
.split-card {
  padding: 1.8rem;
  border-radius: 28px;
}

.band-card,
.service-area-card,
.footer,
.split-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.split-card {
  align-items: stretch;
}

.split-copy,
.split-image {
  flex: 1 1 0;
}

.split-image {
  overflow: hidden;
  border-radius: 24px;
  min-height: 22rem;
}

.process-list {
  display: grid;
  gap: 1.2rem;
}

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

.process-list article {
  padding: 1.45rem;
  border-radius: 24px;
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 0.9rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-warm) 0%, #fff27a 100%);
  color: var(--primary);
  font-weight: 900;
}

.review-card.featured {
  background:
    linear-gradient(145deg, rgba(8, 26, 58, 0.97) 0%, rgba(18, 52, 109, 0.94) 100%);
  color: #ffffff;
}

.review-card.featured p,
.review-card.featured span {
  color: rgba(255, 255, 255, 0.86);
}

.stars {
  margin-bottom: 0.6rem;
  color: var(--accent);
  letter-spacing: 0.2em;
}

.contact-card.primary {
  background:
    linear-gradient(145deg, rgba(8, 26, 58, 0.98) 0%, rgba(18, 52, 109, 0.94) 100%);
  color: #ffffff;
}

.contact-card.primary p,
.contact-card.primary h3 {
  color: #ffffff;
}

.seo-link-block a,
.faq-item {
  display: block;
  padding: 1.35rem 1.4rem;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-links a {
  font-weight: 800;
  color: var(--primary);
}

.footer-links-inline {
  justify-content: center;
  margin-top: 0;
}

.footer-cta {
  background:
    linear-gradient(145deg, rgba(8, 26, 58, 0.99) 0%, rgba(13, 27, 94, 0.97) 58%, rgba(25, 53, 127, 0.95) 100%);
  border-color: rgba(255, 217, 31, 0.18);
}

.footer-cta h2,
.footer-cta .footer-copy,
.footer-cta .response-note,
.footer-cta .eyebrow {
  color: #ffffff;
}

.footer-cta .eyebrow {
  background: rgba(255, 217, 31, 0.14);
  color: var(--accent-warm);
}

.footer-cta .footer-copy a {
  color: var(--accent-warm);
}

.footer-cta-copy {
  max-width: 44rem;
}

.footer-cta-brand {
  display: flex;
  justify-content: center;
  margin: 1rem 0 0.4rem;
}

.footer-cta-brand img {
  width: min(100%, 460px);
  height: auto;
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
}

.footer-cta-actions {
  margin-top: 1.25rem;
}

.brand-seal-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 0 0 260px;
}

.brand-seal-block img {
  width: min(100%, 220px);
  height: auto;
  border-radius: 999px;
  box-shadow: var(--shadow);
  background: #ffffff;
}

.footer-brand-section {
  padding-top: 2rem;
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-brand img {
  width: min(100%, 520px);
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.seo-link-block a {
  font-weight: 900;
  color: var(--primary);
}

.faq-item h3 {
  margin: 0 0 0.45rem;
}

.map-link {
  margin-top: 1rem;
}

.map-link a {
  color: var(--primary-2);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.embed-frame-card {
  padding: 1rem;
  border-radius: 24px;
}

.embed-frame-card iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 18px;
  background: #ffffff;
}

.lead-capture-card iframe {
  min-height: 920px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 28px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-weight: 800;
  color: var(--primary);
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 26, 58, 0.12);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: #f9fcff;
  color: var(--text);
}

.contact-form button {
  width: fit-content;
}

.mobile-sticky-bar {
  display: none;
}

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

.gallery-card {
  grid-column: span 4;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-card-wide {
  grid-column: span 8;
}

.gallery-card img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.gallery-card-wide img {
  height: 22rem;
}

.gallery-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
  color: var(--text-soft);
  font-weight: 700;
}

.response-note {
  margin: 0.9rem 0 0;
  color: var(--text-soft);
  font-weight: 700;
}

.floating-quote-button {
  position: fixed;
  right: 1.1rem;
  bottom: 1.2rem;
  z-index: 38;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-warm) 0%, #fff27a 100%);
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 20px 45px rgba(255, 217, 31, 0.28);
}

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

@media (max-width: 980px) {
  .hero-grid,
  .split-card,
  .stats-grid,
  .authority-strip,
  .feature-grid,
  .reviews-grid,
  .contact-grid,
  .seo-link-grid,
  .process-list.three {
    grid-template-columns: 1fr;
  }

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

  .gallery-card,
  .gallery-card-wide {
    grid-column: auto;
  }

  .mini-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .band-card,
  .service-area-card,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-seal-block {
    width: 100%;
    align-items: flex-start;
  }

  .footer-cta-brand {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-cta-brand img {
    width: min(100%, 360px);
  }

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

  .brand-logo {
    width: 164px;
    height: 62px;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.8rem;
    border-top: 1px solid var(--line);
  }

  .nav-call {
    display: none;
  }

  .topbar.nav-open {
    flex-wrap: wrap;
  }

  .topbar.nav-open .nav-links {
    display: flex;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100%, calc(100% - 1rem));
    padding-bottom: 6rem;
  }

  :root {
    --section-space: 4.25rem;
  }

  .alert-strip,
  .topbar,
  .hero-copy,
  .intro-band .band-card,
  .footer,
  .service-area-card,
  .split-card,
  .feature-card,
  .review-card,
  .contact-card,
  .process-list article,
  .stats-grid article,
  .contact-form {
    border-radius: 22px;
  }

  .alert-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .gallery-card img,
  .gallery-card-wide img {
    height: 15rem;
  }

  .brand-logo {
    width: 144px;
    height: 56px;
  }

  .hero-badge {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .mobile-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.8rem;
    background: rgba(6, 18, 38, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-sticky-bar .button-secondary {
    display: none;
  }

  .mobile-sticky-bar .button {
    min-height: 3.5rem;
    width: 100%;
    font-size: 0.98rem;
  }

  .floating-quote-button {
    display: none;
  }
}
