:root {
  --navy: #10243f;
  --deep: #071421;
  --steel: #2f638f;
  --blue: #2f87d3;
  --accent: #e45b2f;
  --paper: #ffffff;
  --soft: #f3f7fb;
  --line: rgba(16, 36, 63, 0.14);
  --ink: #1d2938;
  --muted: #627080;
  --shadow: 0 24px 70px rgba(7, 20, 33, 0.17);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: 0; }
h1 {
  max-width: 12ch;
  margin-bottom: 1.1rem;
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: 0.95;
}
h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.03;
}
h3 { margin-bottom: 0.45rem; }

.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;
}

.demo-bar {
  padding: 0.55rem 1rem;
  color: white;
  background: var(--deep);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem clamp(1rem, 4vw, 4rem);
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(13rem, 25vw, 22rem);
  height: auto;
  max-height: 5.2rem;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.65rem, 1.8vw, 1.25rem);
}

.site-nav a,
.header-cta {
  font-weight: 900;
  text-decoration: none;
}

.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--navy); }

.header-cta {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--accent);
  border-radius: 8px;
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.42fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  min-height: calc(100vh - 7rem);
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  color: white;
  background: var(--deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(105deg, rgba(7,20,33,0.96) 0%, rgba(16,36,63,0.82) 48%, rgba(16,36,63,0.42) 100%),
    url("https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 13rem;
  background: linear-gradient(0deg, rgba(7,20,33,0.72), transparent);
}

.hero-content p {
  max-width: 48rem;
  color: rgba(255,255,255,0.84);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #9dd0ff;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-actions,
.button-row,
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem 1.05rem;
  font: inherit;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.button.primary { color: white; background: var(--accent); border-color: var(--accent); }
.button.light { color: var(--navy); background: white; border-color: white; }
.button.dark { color: white; background: var(--navy); border-color: var(--navy); }
.button.ghost { color: white; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 47rem;
  margin-top: 2rem;
}

.trust-grid span {
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  font-weight: 900;
}

.hero-card {
  display: grid;
  gap: 0.55rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  color: var(--ink);
  background: rgba(255,255,255,0.95);
  border-top: 6px solid var(--accent);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.hero-card p,
.hero-card span { color: var(--muted); }
.hero-card strong { font-size: 1.5rem; }
.hero-card a {
  margin-top: 0.35rem;
  color: var(--steel);
  font-weight: 950;
}

.section {
  padding: clamp(3.8rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.about-section,
.request-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}

.about-section,
.services-section,
.directions-section {
  background: var(--soft);
}

.about-copy p,
.section-heading > p,
.service-grid p,
.request-copy p,
.contact-copy p,
.why-grid div,
.form-status {
  color: var(--muted);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.about-points span {
  padding: 0.9rem 1rem;
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.85fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading .eyebrow,
.section-heading h2 { grid-column: 1; }
.section-heading > p { grid-column: 2; font-size: 1.05rem; }

.service-grid,
.why-grid,
.directions-grid {
  display: grid;
  gap: 1rem;
}

.service-grid { grid-template-columns: repeat(4, 1fr); }
.why-grid { grid-template-columns: repeat(3, 1fr); }
.directions-grid { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }

.service-grid article,
.service-form,
.info-card,
.map-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 42px rgba(7,20,33,0.08);
}

.service-grid article {
  min-height: 16rem;
  padding: 1.2rem;
}

.service-grid span {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 1.1rem;
  place-items: center;
  color: white;
  background: var(--navy);
  border-radius: 8px;
  font-weight: 950;
}

.request-section {
  color: white;
  background:
    linear-gradient(135deg, rgba(16,36,63,0.97), rgba(7,20,33,0.98));
}

.request-section h2,
.contact-section h2 { color: inherit; }
.request-copy p { color: rgba(255,255,255,0.78); }

.service-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  color: var(--ink);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 950;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd9e4;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
}

textarea { resize: vertical; }
.form-status { min-height: 1.4rem; margin: 0; font-weight: 900; }

.website-section {
  background: var(--navy);
  color: white;
}

.website-section h2 { color: white; }
.website-section .eyebrow { color: #9dd0ff; }

.why-grid div {
  min-height: 8rem;
  padding: 1rem;
  color: rgba(255,255,255,0.84);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  font-weight: 950;
}

.info-card {
  display: grid;
  gap: 0.55rem;
  padding: clamp(1rem, 3vw, 2rem);
  border-left: 5px solid var(--accent);
}

.info-card strong { font-size: 1.35rem; }
.info-card a { color: var(--steel); font-weight: 900; }
.button-row { margin-top: 1rem; }

.map-card {
  min-height: 24rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(16,36,63,0.1), rgba(228,91,47,0.07)),
    repeating-linear-gradient(45deg, rgba(47,99,143,0.12) 0 2px, transparent 2px 28px),
    #e9f1f8;
}

.map-card > div {
  width: min(28rem, 100%);
  padding: 1.25rem;
  background: rgba(255,255,255,0.95);
  border-left: 5px solid var(--blue);
  border-radius: 10px;
}

.map-card span {
  color: var(--muted);
  font-weight: 950;
  text-transform: uppercase;
}

.map-card a {
  color: var(--steel);
  font-weight: 950;
}

.contact-section {
  background: white;
}

.contact-form {
  box-shadow: var(--shadow);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.2rem;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 5vw, 5rem);
  color: #cdd8e3;
  background: #06111e;
}

.site-footer strong,
.site-footer a { color: white; }
.site-footer strong,
.site-footer span,
.site-footer a { display: block; }
.footer-logo {
  width: min(18rem, 78vw);
  height: auto;
  margin-bottom: 1rem;
  padding: 0.55rem 0.75rem;
  background: white;
  border-radius: 8px;
}
.site-footer nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.4rem 1rem; }
.footer-disclaimer,
.footer-credit { grid-column: 1 / -1; margin: 0; font-size: 0.92rem; }

@media (max-width: 1120px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .site-header { grid-template-columns: auto auto; }
  .menu-toggle {
    display: inline-grid;
    justify-self: end;
    gap: 0.28rem;
    width: 2.8rem;
    height: 2.8rem;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 1.25rem; height: 2px; background: var(--navy); }
  .site-nav,
  .header-cta { display: none; }
  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
  }
  .site-nav.is-open a { padding: 0.75rem 0; }
  .hero,
  .about-section,
  .request-section,
  .contact-section,
  .directions-grid { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: clamp(2.8rem, 12vw, 5rem); }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .brand img { width: 12rem; }
  .hero { min-height: auto; }
  .trust-grid,
  .service-grid,
  .why-grid,
  .about-points,
  .field-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .site-footer nav { grid-template-columns: 1fr; }
}
