:root {
  color-scheme: light;
  --ink: #0b2030;
  --muted: #526671;
  --line: #d9e5ea;
  --paper: #ffffff;
  --soft: #e8f4f8;
  --navy: #12324a;
  --teal: #1b6a89;
  --brass: #d6a33e;
  --brass-dark: #9c6b22;
  --shadow: 0 18px 45px rgba(13, 38, 54, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #f7fbfc;
  line-height: 1.55;
}

a { color: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 5;
}

.skip-link:focus { top: 1rem; }

.utility {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem clamp(1rem, 4vw, 3rem);
  background: var(--navy);
  color: white;
  font-size: 0.92rem;
}

.utility a { color: #ffe7a8; font-weight: 700; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 3;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.7rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand img { display: block; width: min(260px, 50vw); height: auto; }

nav { display: flex; align-items: center; gap: 1.15rem; flex-wrap: wrap; }

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

nav a:hover { color: var(--teal); }

.call-pill,
.button,
form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 5px;
  padding: 0 1.1rem;
  border: 0;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.call-pill,
.button.primary,
form button {
  background: var(--brass);
  color: #10253a;
  box-shadow: 0 10px 22px rgba(156, 107, 34, 0.22);
}

.button.secondary {
  background: white;
  color: var(--navy);
  border: 1px solid rgba(18, 50, 74, 0.18);
}

.button.text {
  background: rgba(255,255,255,0.13);
  color: white;
  border: 1px solid rgba(255,255,255,0.26);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 128px);
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
  background:
    linear-gradient(110deg, rgba(18, 50, 74, 0.96) 0%, rgba(18, 50, 74, 0.92) 50%, rgba(27, 106, 137, 0.9) 100%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 22px);
  color: white;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--brass);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.65rem, 7vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 { margin: 0 0 0.6rem; font-size: 1.22rem; letter-spacing: 0; }

.lead {
  max-width: 760px;
  margin: 1.25rem 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 1.18rem;
}

.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin: 1.5rem 0; }

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
  color: rgba(255,255,255,0.84);
}

.trust-list li::before {
  content: "";
  display: inline-block;
  width: 0.58rem;
  height: 0.58rem;
  margin-right: 0.55rem;
  background: var(--brass);
  transform: rotate(45deg);
}

.hero-visual {
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  padding: clamp(0.8rem, 2vw, 1.4rem);
  box-shadow: var(--shadow);
}

.hero-visual svg { display: block; width: 100%; height: auto; }

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-strip div {
  min-height: 116px;
  padding: 1.4rem;
  background: white;
}

.quick-strip strong { display: block; font-size: 1.4rem; }
.quick-strip span { color: var(--muted); }

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

.split,
.security-band,
.areas,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.split p,
.security-band p,
.areas p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading { margin-bottom: 1.6rem; }

.services { background: white; }

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

.service-grid article,
.why-grid article,
.review-grid blockquote,
.area-card,
.contact-card,
form {
  margin: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 10px 28px rgba(13, 38, 54, 0.06);
}

.service-grid article p,
.why-grid article p,
.review-grid blockquote,
.area-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  background: var(--soft);
  color: var(--teal);
  border-radius: 7px;
  font-size: 1.35rem;
  font-weight: 900;
}

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

.security-band p { color: rgba(255,255,255,0.78); }

.security-band ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.security-band li {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 7px;
  padding: 1rem;
  font-weight: 800;
}

.why,
.reviews { background: #f4f9fb; }

.areas {
  background:
    linear-gradient(90deg, rgba(232,244,248,0.9), rgba(255,255,255,0.96)),
    repeating-linear-gradient(45deg, rgba(18,50,74,0.07) 0 1px, transparent 1px 24px);
}

.contact form {
  display: grid;
  gap: 0.85rem;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-card {
  display: grid;
  gap: 0.85rem;
}

.contact-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 64px;
  padding: 1rem;
  border-radius: 7px;
  background: var(--navy);
  color: white;
  text-decoration: none;
}

.contact-action span {
  color: #ffe2a3;
  font-weight: 900;
  font-size: 1.15rem;
}

.contact-card address {
  display: grid;
  gap: 0.25rem;
  margin: 0;
  padding: 1rem;
  border-radius: 7px;
  background: var(--soft);
  font-style: normal;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #b9cbd3;
  border-radius: 5px;
  padding: 0.85rem;
  font: inherit;
  color: var(--ink);
  background: white;
}

textarea { resize: vertical; }

footer {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  background: #071927;
  color: white;
}

footer img { width: 240px; max-width: 100%; filter: brightness(1.4); }
footer p { color: rgba(255,255,255,0.72); margin: 0; }

footer nav a { color: rgba(255,255,255,0.78); }

.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    linear-gradient(110deg, rgba(18, 50, 74, 0.96), rgba(27, 106, 137, 0.9)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 22px);
}

.status-panel {
  width: min(820px, 100%);
  padding: clamp(1.5rem, 5vw, 3rem);
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.status-panel img {
  width: min(320px, 100%);
  margin-bottom: 1.5rem;
}

.status-panel h1 {
  color: var(--navy);
  font-size: clamp(2.2rem, 6vw, 4.4rem);
}

.status-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  .hero,
  .split,
  .security-band,
  .areas,
  .contact { grid-template-columns: 1fr; }
  .service-grid,
  .why-grid,
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  footer { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .utility { flex-direction: column; }
  .brand img { width: min(300px, 92vw); }
  nav { gap: 0.8rem; }
  h1 { font-size: 2.55rem; }
  .quick-strip,
  .service-grid,
  .why-grid,
  .review-grid,
  .security-band ul,
  .trust-list { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
}
