:root {
  --navy: #071c44;
  --royal: #0f3f8d;
  --royal-2: #1658b5;
  --steel: #64748b;
  --slate: #172033;
  --muted: #667085;
  --line: #d8dee8;
  --surface: #f4f7fb;
  --surface-2: #eef2f7;
  --white: #ffffff;
  --wood: #a06a32;
  --shadow: 0 16px 45px rgba(7, 28, 68, 0.14);
  --h1-glow: 0 0 16px rgba(22, 88, 181, 0.8), 0 0 34px rgba(100, 116, 139, 0.44), 0 4px 0 rgba(7, 28, 68, 0.22);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Aptos, "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(850px, calc(100% - 32px)); }
.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;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 10000;
  transform: translateY(-140%);
  background: var(--royal);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  transition: background 180ms ease, box-shadow 180ms ease;
  color: white;
}
.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 35px rgba(7, 28, 68, 0.12);
  color: var(--navy);
  backdrop-filter: blur(14px);
}
.nav-shell {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  padding: 6px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(7, 28, 68, 0.12);
}
.brand img { width: 76px; height: auto; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.9rem;
  font-weight: 700;
}
.desktop-nav > a,
.nav-dropdown > button {
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius);
}
.desktop-nav > a:hover,
.nav-dropdown > button:hover {
  background: rgba(255, 255, 255, 0.12);
}
.site-header.is-scrolled .desktop-nav > a:hover,
.site-header.is-scrolled .nav-dropdown > button:hover {
  background: var(--surface);
}
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 285px;
  padding: 8px;
  background: white;
  color: var(--slate);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 150ms ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--slate);
  font-size: 0.9rem;
}
.nav-dropdown-menu a:hover { background: var(--surface); color: var(--royal); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.93rem;
}
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 10px;
  cursor: pointer;
}
.mobile-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}
.mobile-menu {
  display: none;
  background: white;
  color: var(--slate);
  border-top: 1px solid var(--line);
  padding: 10px 16px 18px;
}
.mobile-menu a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid var(--surface-2);
  font-weight: 750;
}
.mobile-menu .mobile-call {
  margin-top: 12px;
  color: white;
  background: var(--royal);
  text-align: center;
  border-radius: var(--radius);
  border: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 850;
  border: 2px solid transparent;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 40px; padding: 9px 14px; font-size: 0.92rem; }
.btn-primary { background: var(--royal-2); color: white; box-shadow: 0 12px 25px rgba(15, 63, 141, 0.22); }
.btn-primary:hover { background: var(--royal); }
.btn-ghost { border-color: white; color: white; }
.btn-ghost:hover { background: white; color: var(--navy); }
.btn-light { background: white; color: var(--royal); }
.btn-outline-light { border-color: white; color: white; }
.btn-outline-light:hover { background: white; color: var(--royal); }
.icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.check-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--royal-2);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.home-hero,
.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}
.page-hero {
  min-height: 430px;
  padding-top: 90px;
}
.hero-media,
.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media video,
.hero-media img { object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 28, 68, 0.82), rgba(7, 28, 68, 0.48)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.1));
}
.home-hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 150px 0 76px;
}
.page-hero-content { padding: 70px 0 76px; }
.home-hero h1,
.page-hero h1 {
  max-width: 900px;
  margin: 16px 0 0;
  font-family: Aptos, "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: var(--h1-glow);
}
.page-hero h1 {
  max-width: 850px;
  font-size: clamp(1.95rem, 3.8vw, 3.25rem);
}
.home-hero p,
.page-hero p {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin: 22px 0 0;
}
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin-top: 54px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-stats div {
  padding: 20px 18px;
  background: rgba(7, 28, 68, 0.32);
  backdrop-filter: blur(12px);
}
.hero-stats strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}
.hero-stats span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 850;
  color: rgba(255, 255, 255, 0.78);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}
.breadcrumbs a:hover { color: white; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(22, 88, 181, 0.1);
  color: var(--royal);
  padding: 7px 13px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.73rem;
  font-weight: 900;
}
.eyebrow.light {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  backdrop-filter: blur(8px);
}
.info-bar {
  background: var(--royal);
  color: white;
}
.info-bar-inner {
  min-height: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  font-weight: 800;
  font-size: 0.95rem;
}
.info-bar-inner span,
.info-bar-inner a {
  position: relative;
}
.info-bar-inner span:not(:last-child)::after,
.info-bar-inner a::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%);
}
.section { padding: 88px 0; }
.section:nth-of-type(even) { background: var(--surface); }
.section-heading { margin-bottom: 34px; }
.section-heading-center {
  text-align: center;
  max-width: 790px;
  margin: 0 auto 44px;
}
.section-heading h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3.1vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: 0;
}
.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.body-copy {
  color: var(--muted);
  font-size: 1.05rem;
}
.split-grid,
.feature-grid,
.area-grid,
.quote-grid,
.contact-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}
.proof-list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}
.proof-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 800;
}
.image-stack {
  position: relative;
  min-height: 490px;
}
.image-stack img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.stack-main {
  width: 88%;
  aspect-ratio: 16 / 10;
  height: auto;
}
.stack-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  aspect-ratio: 16 / 10;
  height: auto;
  border: 8px solid white;
}
.rounded-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card,
.related-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  align-self: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(7, 28, 68, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.service-card:hover,
.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 88, 181, 0.45);
  box-shadow: var(--shadow);
}
.service-card img,
.related-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.service-card div,
.related-card {
  padding: 18px;
}
.service-card h3,
.related-card h3,
.value-grid h3,
.mini-card-grid h3,
.process-card h3,
.contact-card h3,
.service-area-card h3,
.area-card-grid h3,
.site-footer h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.25;
  letter-spacing: 0;
}
.service-card p {
  color: var(--muted);
  margin: 10px 0 18px;
  font-size: 0.96rem;
}
.service-card span,
.related-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--royal);
  font-weight: 900;
}
.feature-band { background: var(--surface-2); }
.feature-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mini-card-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mini-card-grid div,
.value-grid div,
.process-card,
.service-area-card,
.contact-card,
.area-card-grid div {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(7, 28, 68, 0.06);
}
.mini-card-grid p,
.value-grid p,
.process-card p,
.area-card-grid p,
.service-area-card p,
.contact-card p {
  margin: 10px 0 0;
  color: var(--muted);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.process-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--royal);
  color: white;
  font-weight: 900;
  margin-bottom: 18px;
}
.area-grid { align-items: stretch; }
.area-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}
.area-chip-grid span {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.92rem;
}
.map-frame {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  aspect-ratio: 16 / 10;
  min-height: 0;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 200ms ease;
}
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 12px 12px;
  color: white;
  font-size: 0.74rem;
  font-weight: 800;
  background: linear-gradient(transparent, rgba(7, 28, 68, 0.82));
}
.reviews-section {
  background:
    linear-gradient(180deg, rgba(244, 247, 251, 0.92), rgba(255, 255, 255, 0.98));
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 36px rgba(7, 28, 68, 0.08);
}
.stars {
  display: inline-flex;
  color: var(--royal-2);
  background: rgba(22, 88, 181, 0.08);
  border-radius: 999px;
  padding: 5px 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.review-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.25;
}
.review-card p {
  margin: 12px 0 18px;
  color: var(--muted);
}
.review-card span {
  display: inline-flex;
  color: var(--royal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.detail-point-grid {
  display: grid;
  gap: 14px;
}
.detail-point-grid div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(7, 28, 68, 0.05);
  color: var(--slate);
  font-weight: 760;
}
.faq-section { background: white; }
.faq-list {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(7, 28, 68, 0.06);
}
.faq-list details + details { border-top: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--navy);
  font-weight: 900;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary { color: var(--royal); }
.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}
.cta-section {
  background:
    linear-gradient(135deg, rgba(7, 28, 68, 0.96), rgba(15, 63, 141, 0.95)),
    var(--navy);
  color: white;
}
.cta-inner {
  text-align: center;
}
.cta-inner h2 {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
}
.cta-inner p {
  max-width: 700px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}
.cta-actions { justify-content: center; }
.quote-section { background: var(--surface); }
.quote-grid { align-items: start; grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.8fr); }
.quote-form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow);
  min-height: 700px;
}
.contact-card {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 16px;
}
.contact-card a,
.contact-card div {
  display: grid;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-weight: 850;
}
.contact-card span,
.contact-card p {
  color: var(--muted);
  font-weight: 500;
}
.include-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.include-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.related-card h3 { margin-top: 16px; }
.related-card span { margin-top: 14px; }
.large-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.large-contact-list a,
.large-contact-list div {
  display: grid;
  gap: 5px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 28px rgba(7, 28, 68, 0.06);
}
.large-contact-list strong { color: var(--navy); }
.large-contact-list span { color: var(--muted); overflow-wrap: anywhere; }
.area-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.site-footer {
  background: #071629;
  color: rgba(255, 255, 255, 0.78);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 60px 0;
}
.footer-brand {
  display: inline-flex;
  background: white;
  border-radius: var(--radius);
  padding: 6px;
}
.footer-brand img { width: 120px; height: auto; }
.site-footer h3 {
  color: white;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}
.site-footer a:hover { color: white; }
.footer-areas { font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 18px 16px;
  font-size: 0.82rem;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .nav-actions { display: none; }
  .mobile-toggle { display: block; }
  .site-header.menu-open .mobile-menu { display: block; }
  .service-grid,
  .area-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid,
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .home-hero { min-height: 760px; }
  .home-hero-content,
  .page-hero-content { padding-top: 130px; }
  .split-grid,
  .feature-grid,
  .area-grid,
  .quote-grid,
  .contact-detail-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .value-grid,
  .mini-card-grid,
  .related-grid,
  .review-grid,
  .large-contact-list { grid-template-columns: 1fr; }
  .image-stack { min-height: auto; }
  .stack-main,
  .stack-small {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border: 0;
    margin-top: 12px;
  }
  .contact-card { position: static; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1180px); }
  .brand img { width: 72px; }
  .nav-shell { height: 72px; }
  .home-hero h1,
  .page-hero h1 { font-size: clamp(2rem, 11vw, 3rem); }
  .hero-actions,
  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .service-grid,
  .process-grid,
  .gallery-grid,
  .area-card-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .info-bar-inner { justify-content: flex-start; padding: 10px 0; }
  .info-bar-inner span::after,
  .info-bar-inner a::after { display: none; }
  .quote-form-card { min-height: 720px; padding: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .home-hero video { display: none; }
}
