:root {
  --navy: #0c1a2b;
  --navy-2: #12253d;
  --navy-3: #1b3252;
  --blue: #2f5fa8;
  --blue-dark: #234a87;
  --blue-light: #7fa8d9;
  --cream: #f7f4ee;
  --cream-2: #efe9dd;
  --white: #ffffff;
  --ink: #1c2430;
  --gray-500: #5c6672;
  --gray-300: #c9cdd3;
  --line: #e4e1d8;
  --shadow: 0 14px 34px rgba(12, 26, 43, 0.14);
  --shadow-sm: 0 4px 14px rgba(12, 26, 43, 0.08);
  --radius: 6px;
  --radius-lg: 14px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
svg { flex-shrink: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: 0.3px;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.05;
}

h1 { font-size: clamp(2.6rem, 5.4vw, 4rem); }
h2.section-title { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: 0; }
h4 { font-size: 1.05rem; font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: 0; }

p { margin: 0 0 16px; }
.lede { font-size: 1.08rem; color: var(--gray-500); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
  font-size: 0.76rem;
  color: var(--blue);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--blue);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.center { text-align: center; }
.section-sub {
  max-width: 640px;
  color: var(--gray-500);
}
.section-sub.center { margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 44px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.94rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(47, 95, 168, 0.32);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-outline-dark:hover { border-color: var(--navy); }
.btn-block { width: 100%; border: none; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* Top bar */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--white); text-decoration: none; font-weight: 700; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 13px; height: 13px; }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: auto;
}
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
}
.brand-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: 0.6px;
  line-height: 1;
}
.brand-text span { display: block; font-size: 0.62rem; color: var(--blue); letter-spacing: 2.6px; font-weight: 600; }

.main-nav {
  display: flex;
  gap: 30px;
}
.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--blue); border-color: var(--blue); }

.nav-cta { white-space: nowrap; padding: 10px 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); display: block; }

/* Breadcrumbs */
.breadcrumbs {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 12px 0;
  color: var(--gray-500);
}
.breadcrumbs a { color: var(--gray-500); text-decoration: none; }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--gray-300); }
.breadcrumbs li[aria-current="page"] { color: var(--ink); font-weight: 600; }

/* Hero (home) */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(9,17,29,0.94) 24%, rgba(9,17,29,0.62) 58%, rgba(9,17,29,0.32) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-top: 56px;
  padding-bottom: 56px;
  max-width: 720px;
}
.hero-content h1 { color: var(--white); }
.hero .eyebrow { color: var(--blue-light); }
.hero .eyebrow::before { background: var(--blue-light); }
.hero-sub { font-size: 1.12rem; color: rgba(255,255,255,0.88); max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.hero-badges li { display: flex; align-items: center; gap: 7px; }
.hero-badges svg { width: 15px; height: 15px; color: var(--blue-light); }

/* Est. badge (brand emblem, mirrors the logo) */
.est-badge {
  position: absolute;
  right: 48px;
  bottom: 48px;
  z-index: 1;
  width: 108px;
  height: 108px;
  color: var(--white);
  opacity: 0.9;
}

/* Page hero (interior pages) */
.page-hero {
  background: var(--navy);
  background-image: radial-gradient(circle at 15% 20%, rgba(47,95,168,0.35), transparent 45%);
  color: var(--white);
  padding: 56px 0 48px;
}
.page-hero .eyebrow { color: var(--blue-light); }
.page-hero .eyebrow::before { background: var(--blue-light); }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.4vw, 3.1rem); }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 620px; margin-bottom: 0; }

/* Stat strip */
.strip { background: var(--navy-2); color: var(--white); }
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 30px 24px;
  text-align: center;
}
.strip-item strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.1rem;
  color: var(--blue-light);
}
.strip-item span { font-size: 0.82rem; color: rgba(255,255,255,0.72); }

/* Stripe motif divider, echoes "sharp lines" */
.stripe-divider {
  height: 10px;
  background: repeating-linear-gradient(
    -35deg,
    var(--blue) 0, var(--blue) 22px,
    var(--blue-dark) 22px, var(--blue-dark) 44px
  );
}

/* Sections */
.section { padding: 88px 0; }
.section.tight { padding: 64px 0; }
.section.alt { background: var(--cream); }
.section.dark { background: var(--navy); color: var(--white); }
.section.dark h2, .section.dark h3 { color: var(--white); }
.section.dark .section-sub { color: rgba(255,255,255,0.7); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card p { color: var(--gray-500); margin-bottom: 14px; font-size: 0.95rem; }
.service-price {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-dark);
  background: var(--cream);
  padding: 5px 12px;
  border-radius: 4px;
}
.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-more {
  text-align: center;
  margin-top: 40px;
}

/* Service detail rows (services page) */
.service-detail {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: none; }
.service-detail .service-icon { margin-bottom: 0; }
.service-detail h3 { margin-bottom: 6px; }
.service-detail p { color: var(--gray-500); margin-bottom: 0; max-width: 60ch; }
.service-detail .service-price { white-space: nowrap; align-self: center; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.checklist { list-style: none; padding: 0; margin: 0 0 28px; }
.checklist li { padding-left: 30px; position: relative; margin-bottom: 12px; color: var(--ink); }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background: var(--blue);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* Timeline (about page) */
.timeline { border-left: 2px solid var(--line); padding-left: 28px; margin: 0; }
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--cream);
}
.timeline-item strong { display: block; color: var(--blue-dark); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.gallery-item { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-preview { margin-bottom: 40px; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.review-source svg { width: 14px; height: 14px; }
.review-author { font-weight: 700; color: var(--navy); }
.placeholder-note { margin-top: 28px; font-size: 0.85rem; }

/* Areas served */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.area-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.area-card h3 { margin-bottom: 8px; }
.area-card p { color: var(--gray-500); font-size: 0.92rem; margin-bottom: 0; }
.area-card .area-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-dark);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* FAQ accordion */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
}
.faq-question .plus {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq-question .plus::before, .faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--blue);
  transition: transform 0.2s ease;
}
.faq-question .plus::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-question .plus::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-item[data-open="true"] .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}
.faq-item[data-open="true"] .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 4px 22px; color: var(--gray-500); margin-bottom: 0; }

/* Contact */
.cta-section { background: var(--navy); color: var(--white); }
.cta-section .eyebrow { color: var(--blue-light); }
.cta-section .eyebrow::before { background: var(--blue-light); }
.cta-section .section-title { color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-details { list-style: none; padding: 0; margin-top: 24px; }
.contact-details li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 1rem; }
.contact-details svg { width: 18px; height: 18px; color: var(--blue-light); flex-shrink: 0; }
.contact-details a { color: var(--white); text-decoration: none; font-weight: 600; }
.contact-details a:hover { text-decoration: underline; }

.contact-form { background: var(--white); padding: 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow); color: var(--ink); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-note { margin-top: 14px; font-weight: 600; color: var(--blue); min-height: 20px; }
.form-note-success { color: #1a7a3d; }
.form-note-error { color: #b3261e; }

/* CTA band (interior pages) */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 540px; margin: 0 auto 26px; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding-top: 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 8px; }
.footer-brand p { margin: 0; font-weight: 700; color: var(--white); font-size: 1.05rem; }
.footer-col h4 { color: var(--white); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }
.footer-col .footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); max-width: 32ch; }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 15px; height: 15px; color: var(--blue-light); flex-shrink: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* Floating CTA (mobile) */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
  z-index: 200;
}

.placeholder-text {
  color: #b5820a !important;
  border-bottom: 1px dashed #b5820a;
  padding-bottom: 1px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid, .areas-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .est-badge { display: none; }
}

@media (max-width: 780px) {
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    gap: 16px;
    border-bottom: 1px solid var(--line);
  }
  .services-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 48px 1fr; }
  .service-detail .service-price { grid-column: 2; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gallery-item { height: 260px; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-cta { display: block; }
  .section { padding: 60px 0; }
  .page-hero { padding: 40px 0 36px; }
}
