:root {
  --navy: #001f45;
  --navy-2: #082b55;
  --red: #b20d22;
  --red-2: #8e0919;
  --steel: #68717a;
  --ink: #172131;
  --muted: #596675;
  --surface: #f5f7fa;
  --surface-2: #eef2f6;
  --border: #dfe5ec;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(0, 31, 69, 0.13);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

h1 {
  font-size: 44px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 20px;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 10000;
  transform: translateY(-140%);
  background: var(--red);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

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

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px rgba(0, 31, 69, 0.12);
}

.nav-container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
}

.brand span {
  display: none;
}

.brand img {
  width: 138px;
  height: auto;
  max-height: 78px;
  object-fit: contain;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0;
  box-shadow: 0 8px 22px rgba(0, 31, 69, 0.16);
}

.site-header.is-scrolled .brand,
.site-header.menu-active .brand {
  color: var(--navy);
}

.desktop-nav,
.desktop-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav > a,
.nav-dropdown > button,
.phone-link {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.site-header.is-scrolled .desktop-nav > a,
.site-header.is-scrolled .nav-dropdown > button,
.site-header.is-scrolled .phone-link {
  color: var(--ink);
}

.desktop-nav > a:hover,
.nav-dropdown > button:hover,
.phone-link:hover {
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .desktop-nav > a:hover,
.site-header.is-scrolled .nav-dropdown > button:hover,
.site-header.is-scrolled .phone-link:hover {
  background: var(--surface);
  color: var(--red);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .icon {
  width: 15px;
  height: 15px;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.dropdown-panel a:hover {
  background: var(--surface);
  color: var(--red);
}

.phone-link {
  gap: 8px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 13px 20px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border 160ms ease;
}

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

.btn-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 14px;
}

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

.btn-primary:hover {
  background: var(--red-2);
  border-color: var(--red-2);
}

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

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.86);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.center .button-row,
.cta-content .button-row {
  justify-content: center;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.site-header.is-scrolled .mobile-toggle,
.site-header.menu-active .mobile-toggle {
  color: var(--navy);
  background: var(--surface);
}

.menu-close,
body.menu-open .menu-open {
  display: none;
}

body.menu-open .menu-close {
  display: block;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
}

.home-hero {
  min-height: 86svh;
  padding: 124px 0 72px;
}

.sub-hero {
  min-height: 430px;
  padding: 136px 0 70px;
}

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

.hero-image img {
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 31, 69, 0.88), rgba(0, 31, 69, 0.68));
}

.home-hero .hero-overlay {
  background: rgba(0, 18, 41, 0.68);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-content.center {
  text-align: center;
  margin-inline: auto;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-badge {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 16px;
}

.eyebrow {
  color: var(--red);
  background: rgba(178, 13, 34, 0.08);
  margin-bottom: 14px;
}

.hero h1 {
  color: var(--white);
  font-size: 52px;
  max-width: 930px;
  margin-inline: auto;
}

.sub-hero h1 {
  margin-inline: 0;
}

.hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  max-width: 720px;
  margin: 20px auto 0;
}

.sub-hero p {
  margin-left: 0;
}

.hero .button-row {
  margin-top: 32px;
}

.hero-stats {
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 650px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.hero-stats div {
  padding: 18px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

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

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 21px;
}

.hero-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-bottom: 16px;
}

.breadcrumb a:hover {
  color: var(--white);
}

.info-bar {
  background: var(--red);
  color: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 13px 0;
  font-weight: 800;
  font-size: 14px;
}

.info-grid div,
.info-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.section {
  padding: 88px 0;
}

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

.section-intro {
  margin-bottom: 34px;
}

.section-intro.center {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 44px;
}

.section-intro p {
  margin-top: 16px;
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 58px;
  align-items: center;
}

.split.reverse > :first-child {
  order: 2;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}

.check-list div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.check-list .icon {
  color: var(--red);
}

.photo-stack {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 14px;
  align-items: end;
}

.photo-stack figure,
.image-panel,
.service-image,
.gallery-grid figure,
.gallery-mini img {
  overflow: hidden;
  border-radius: var(--radius);
  margin: 0;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.photo-stack figure:first-child {
  aspect-ratio: 1 / 1;
  padding: 18px;
  background: var(--white);
}

.photo-stack figure:last-child {
  aspect-ratio: 4 / 5;
}

.photo-stack img,
.image-panel img,
.service-image img,
.gallery-grid img,
.gallery-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-stack figure:first-child img,
.image-panel img[src*="logo"] {
  object-fit: contain;
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

.service-card,
.feature-grid article,
.process-card,
.contact-card,
.faq-list,
.related-link {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

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

.service-image {
  aspect-ratio: 5 / 3.4;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

.service-card-body {
  padding: 24px;
}

.service-card-body p {
  margin: 14px 0 20px;
}

.text-link {
  color: var(--red);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.text-link .icon {
  width: 17px;
  height: 17px;
}

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

.feature-grid article,
.feature-card {
  padding: 24px;
}

.feature-grid article > div,
.feature-card > div {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--red);
  background: rgba(178, 13, 34, 0.08);
  margin-bottom: 18px;
}

.feature-grid article p,
.feature-card p,
.process-card p {
  margin: 12px 0 0;
  font-size: 15px;
}

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

.process-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}

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

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

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

.gallery-grid figure {
  aspect-ratio: 4 / 3;
  position: relative;
  box-shadow: none;
  border: 1px solid var(--border);
}

.gallery-grid figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: var(--radius);
  background: rgba(0, 31, 69, 0.84);
  color: var(--white);
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 800;
}

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

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

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

.faq-item button {
  width: 100%;
  border: 0;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-weight: 900;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-item button .icon {
  transition: transform 160ms ease;
}

.faq-item.open button .icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
}

.cta-band {
  background: var(--navy);
  color: var(--white);
}

.cta-content {
  text-align: center;
  max-width: 850px;
}

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

.cta-content p {
  font-size: 19px;
  margin: 18px auto 28px;
  max-width: 680px;
}

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

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.quote-frame {
  min-height: 1250px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: visible;
}

.quote-frame iframe {
  display: block;
  width: 100%;
  height: 1250px !important;
  min-height: 1250px;
}

.contact-card {
  padding: 26px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-list a,
.contact-list div,
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-list .icon {
  color: var(--red);
  margin-top: 2px;
}

.contact-list strong,
.contact-list small {
  display: block;
}

.contact-list small {
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

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

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

.gallery-mini img:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

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

.areas-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.45fr);
  gap: 28px;
  align-items: stretch;
}

.area-list {
  display: grid;
  gap: 12px;
}

.area-button {
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 16px;
  cursor: pointer;
  transition: border 160ms ease, background 160ms ease, transform 160ms ease;
}

.area-button:hover,
.area-button.active {
  border-color: var(--red);
  background: rgba(178, 13, 34, 0.06);
  transform: translateY(-1px);
}

.area-button strong,
.area-button span {
  display: block;
}

.area-button strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.22;
}

.area-button span {
  color: var(--muted);
  margin-top: 5px;
  font-size: 14px;
}

.map-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-heading {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.map-heading p {
  margin: 6px 0 0;
  font-size: 14px;
}

.map-panel iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
}

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

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 26px;
  box-shadow: var(--shadow);
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--red);
  margin-bottom: 16px;
}

.stars .icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.65;
}

.review-author {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.review-author span,
.review-author small {
  display: block;
}

.review-author span {
  color: var(--ink);
  font-weight: 900;
}

.review-author small {
  color: var(--muted);
  font-weight: 800;
  margin-top: 3px;
}

.contact-wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 36px;
  align-items: start;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.related-link {
  padding: 22px;
  display: block;
}

.related-link strong,
.related-link span {
  display: block;
}

.related-link strong {
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 18px;
}

.related-link span {
  color: var(--muted);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.15fr;
  gap: 36px;
  padding: 58px 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 900;
}

.footer-brand span {
  display: none;
}

.footer-brand img {
  width: 210px;
  height: auto;
  border-radius: 4px;
  background: var(--white);
  padding: 0;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer h3 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 18px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 1060px) {
  .desktop-nav,
  .desktop-actions {
    display: none;
  }

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

  .mobile-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    display: none;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 16px;
    max-height: calc(100svh - 82px);
    overflow: auto;
  }

  body.menu-open .mobile-nav {
    display: grid;
  }

  .mobile-nav a,
  .mobile-nav span {
    padding: 13px 16px;
    border-radius: var(--radius);
    color: var(--ink);
    font-weight: 900;
  }

  .mobile-nav span {
    color: var(--red);
    background: rgba(178, 13, 34, 0.08);
  }

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

  .split,
  .split.reverse,
  .quote-layout,
  .contact-wide,
  .areas-layout {
    grid-template-columns: 1fr;
  }

  .split.reverse > :first-child {
    order: initial;
  }

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

@media (max-width: 720px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 18px;
  }

  .container {
    width: min(100% - 24px, var(--max));
  }

  .nav-container {
    min-height: 74px;
  }

  .brand img {
    width: 112px;
    height: auto;
    max-height: 63px;
  }

  .mobile-nav {
    inset: 74px 0 auto 0;
  }

  .home-hero {
    min-height: 88svh;
    padding: 112px 0 48px;
  }

  .sub-hero {
    min-height: 390px;
    padding: 116px 0 54px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 18px;
  }

  .button-row,
  .center .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
  }

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

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

  .hero-stats strong {
    font-size: 16px;
  }

  .hero-stats span {
    font-size: 11px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section {
    padding: 64px 0;
  }

  .service-grid,
  .feature-grid,
  .process-grid,
  .gallery-grid,
  .gallery-grid.small,
  .review-grid,
  .related-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .map-panel iframe {
    min-height: 340px;
  }

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

  .quote-frame {
    min-height: 1420px;
  }

  .quote-frame iframe {
    height: 1420px !important;
    min-height: 1420px;
  }

  .footer-grid {
    gap: 28px;
  }
}
