:root {
  --ink: #1b1d26;
  --muted: #5d6376;
  --navy: #17324d;
  --navy-strong: #0f2338;
  --rust: #d3532b;
  --sand: #efe6d8;
  --cream: #fbf7f1;
  --card: rgba(255, 255, 255, 0.92);
  --line: rgba(23, 50, 77, 0.12);
  --shadow: 0 24px 60px rgba(15, 35, 56, 0.14);
  --radius: 26px;
  --pill: 999px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(211, 83, 43, 0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(23, 50, 77, 0.16), transparent 24%),
    linear-gradient(180deg, #f3ece2 0%, #fffdf9 25%, #f7f1e8 100%);
}
img { display: block; max-width: 100%; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--rust); }
iframe { border: 0; }
.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }

.topbar {
  background: linear-gradient(135deg, var(--navy), var(--navy-strong));
  color: #fff;
}
.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.topbar-inner p { margin: 0; font-size: 0.95rem; font-weight: 800; }
.topbar-actions, .cta-row, .hero-points, .hero-links, .inline-links, .chip-list { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn {
  min-height: 50px;
  padding: 0.82rem 1.35rem;
  border-radius: var(--pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid {
  background: linear-gradient(135deg, #e16337, var(--rust));
  color: #fff;
  box-shadow: 0 18px 36px rgba(211, 83, 43, 0.24);
}
.btn-solid:hover { color: #fff; }
.btn-outline {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-shell {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.9rem; color: var(--ink); }
.brand img { width: 60px; height: 60px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; }
.brand strong,
.hero-copy h1,
.page-hero-copy h1,
.section-head h2,
.feature-panel h2 { font-family: "Sora", sans-serif; }
.brand small { color: var(--muted); font-size: 0.82rem; }
.site-nav { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.site-nav a { position: relative; font-weight: 800; color: var(--navy-strong); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 3px;
  border-radius: var(--pill);
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span { width: 20px; height: 2px; border-radius: var(--pill); background: var(--navy); }

.hero, .page-hero { padding: 3.4rem 0 2rem; }
.hero-grid, .page-hero-grid, .split-section, .contact-layout, .map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.5rem;
  align-items: center;
}
.hero-copy, .page-hero-copy, .hero-card, .info-panel, .zone-panel, .page-panel, .map-card, .contact-card-large, .feature-panel, .coverage-card, .service-list article, .trust-grid article, .district-card, .faq-list details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy, .page-hero-copy, .info-panel, .zone-panel, .page-panel, .contact-card-large, .feature-panel { padding: 2rem; }
.hero-copy h1, .page-hero-copy h1 {
  margin: 0.45rem 0 1rem;
  font-size: clamp(2.05rem, 5vw, 4rem);
  line-height: 1.02;
  color: var(--navy-strong);
}
.lead, .hero-caption p, .section p, .page-hero-copy p, .service-list p, .coverage-card p, .district-card p, .contact-card-large p, .feature-panel p, .page-panel p, .site-footer p { color: var(--muted); }
.eyebrow, .section-kicker, .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--rust);
}
.hero-points span, .chip-list span {
  padding: 0.65rem 0.9rem;
  border-radius: var(--pill);
  background: var(--sand);
  color: var(--navy-strong);
  font-weight: 700;
}
.hero-links a, .inline-links a { font-weight: 800; }
.hero-card {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(23, 50, 77, 0.08), rgba(211, 83, 43, 0.08));
}
.slider {
  position: relative;
  min-height: 440px;
  border-radius: 18px;
  overflow: hidden;
  background: #e8dfd4;
}
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.45s ease; }
.slide.is-active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-caption { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-end; padding: 1rem 0.3rem 0.25rem; }

.trust-strip { padding-bottom: 0.8rem; }
.trust-grid, .service-list, .coverage-grid, .contact-grid-dual, .district-grid, .contact-cards, .faq-list { display: grid; gap: 1rem; }
.trust-grid, .service-list, .coverage-grid, .district-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trust-grid article, .district-card, .coverage-card, .service-list article { padding: 1.4rem; }

.section { padding: 1rem 0 2.2rem; }
.alt { background: linear-gradient(180deg, rgba(23, 50, 77, 0.04), rgba(23, 50, 77, 0.01)); }
.section-head { max-width: 760px; margin-bottom: 1.5rem; }
.section-head h2, .feature-panel h2 { margin: 0.4rem 0 0.75rem; font-size: clamp(1.7rem, 3vw, 2.75rem); color: var(--navy-strong); }
.breadcrumb { margin-bottom: 1rem; }
.breadcrumb span { color: var(--muted); }
.check-list, .simple-list, .site-footer ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.check-list li, .simple-list li, .site-footer li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.7rem;
}
.check-list li::before, .simple-list li::before, .site-footer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rust);
}
.page-panel { background: linear-gradient(180deg, rgba(23, 50, 77, 0.05), rgba(211, 83, 43, 0.05)); }
.duo-highlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.dark-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-strong));
  color: #fff;
}
.dark-card h2, .dark-card p, .dark-card .section-kicker, .dark-card a { color: #fff; }
.map-band {
  background: linear-gradient(135deg, rgba(23, 50, 77, 0.05), rgba(211, 83, 43, 0.06));
}
.contact-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 1.25rem; }
.contact-cards article {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(23, 50, 77, 0.05);
}
.map-card { overflow: hidden; min-height: 420px; }
.map-card iframe { width: 100%; height: 100%; min-height: 420px; }
.contact-grid-dual { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.faq-shell { max-width: 920px; }
.faq-list details { padding: 1rem 1.15rem; }
.faq-list summary { cursor: pointer; font-weight: 800; color: var(--navy-strong); }

.site-footer {
  margin-top: 1rem;
  background: linear-gradient(135deg, #101d2c, #16314b);
  color: #fff;
  padding: 3rem 0 1rem;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 1.5rem; }
.footer-brand { color: #fff; margin-bottom: 1rem; }
.footer-brand small, .site-footer p, .site-footer a { color: rgba(255, 255, 255, 0.82); }
.site-footer h3 { margin-top: 0; color: #fff; }
.footer-bottom { padding-top: 1rem; margin-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.12); }

.validation-shell { padding-top: 2rem; }
.validation-shell table { width: 100%; border-collapse: collapse; margin: 1rem 0 2rem; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.validation-shell th, .validation-shell td { padding: 0.8rem; border-bottom: 1px solid rgba(23, 50, 77, 0.08); text-align: left; font-size: 0.95rem; vertical-align: top; }
.validation-shell th { background: rgba(23, 50, 77, 0.08); color: var(--navy-strong); }

@media (max-width: 1024px) {
  .hero-grid, .page-hero-grid, .split-section, .contact-layout, .map-layout, .footer-grid, .duo-highlight { grid-template-columns: 1fr; }
  .trust-grid, .service-list, .coverage-grid, .district-grid, .contact-cards, .contact-grid-dual { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    width: min(320px, calc(100vw - 2rem));
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .topbar-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 1.2rem)); }
  .hero, .page-hero { padding-top: 2rem; }
  .hero-copy, .page-hero-copy, .info-panel, .zone-panel, .page-panel, .contact-card-large, .feature-panel { padding: 1.35rem; }
  .trust-grid, .service-list, .coverage-grid, .district-grid, .contact-cards, .contact-grid-dual { grid-template-columns: 1fr; }
  .slider, .map-card iframe { min-height: 300px; }
  .btn, .topbar-actions .btn, .cta-row .btn { width: 100%; }
}
