/* =========================================================
   Sunbelt Commercial Asset Maintenance production stylesheet
   Design system: "Commercial Ops Command" (client-selected)
   Palette: charcoal / white / gold, pulled from the source flyer
   ========================================================= */

:root {
  --charcoal: #26343d;
  --charcoal-deep: #101820;
  --navy: #202b32;
  --gold: #d98a00;
  --gold-dark: #9b6200;
  --gold-button: #7f4e00;
  --gold-bright: #f2a51a;
  --mist: #eef2f1;
  --paper: #fffdf9;
  --ink: #18242c;
  --muted: #5f6c73;
  --line: rgba(45, 57, 66, 0.17);
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.15);
  --shadow-soft: 0 14px 40px rgba(16, 24, 32, 0.1);
  --radius: 12px;
  --radius-lg: 16px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html { scroll-padding-top: 86px; }

body {
  margin: 0;
  color: var(--ink);
  background: #f7f8f4;
  min-width: 320px;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

button, input, select, textarea { font: inherit; }

a, button, input, select, textarea, summary { transition: 180ms var(--ease-out); }

a { color: inherit; }
a:hover { text-decoration-thickness: 2px; text-underline-offset: 4px; }

::selection {
  color: #fff;
  background: var(--gold-dark);
}

html {
  scrollbar-color: var(--gold-dark) #e4e9e8;
  scrollbar-width: thin;
}

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: #e4e9e8; }
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border: 3px solid #e4e9e8;
  border-radius: 999px;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  z-index: 100;
  top: -60px;
  left: 12px;
  padding: 12px 18px;
  color: #fff;
  font-weight: 800;
  background: var(--navy);
  border-radius: var(--radius);
  transition: top 160ms ease;
}

.skip-link:focus { top: 12px; }

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

h1, h2 {
  margin: 12px 0 18px;
  color: var(--charcoal-deep);
  font-size: clamp(2.15rem, 4.2vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  line-height: 1.1;
}

.eyebrow, .tagline {
  margin: 0;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

/* =====================
   Header / navigation
   ===================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  padding: 10px clamp(16px, 3vw, 42px);
  color: #fff;
  background: rgba(32, 43, 50, 0.99);
  border-bottom: 1px solid rgba(217, 138, 0, 0.7);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.18);
}

.brand-mini, .brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mini img {
  width: 48px;
  height: 48px;
  padding: 5px;
  object-fit: contain;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 10px;
  transition: transform 180ms var(--ease-out), filter 180ms var(--ease-out);
}

.brand-mini span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand-lockup span {
  display: none;
}

.brand-mini strong, .brand-lockup strong {
  display: block;
  color: #fff;
  font-weight: 900;
  font-size: 0.78rem;
  line-height: 0.95;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mini small, .brand-lockup small {
  display: block;
  color: var(--gold-bright);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-lockup { margin-bottom: 20px; }
.brand-lockup img {
  width: min(252px, 70vw);
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 16px 28px rgba(16, 24, 32, 0.08));
  transition: transform 180ms var(--ease-out), filter 180ms var(--ease-out);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 1.6vw, 20px);
}

.primary-nav a {
  position: relative;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease-out);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.primary-nav .nav-phone { color: var(--gold-bright); }

.primary-nav .nav-cta {
  padding: 9px 14px;
  border: 1px solid #fff;
  border-radius: var(--radius);
}

.primary-nav .nav-cta:hover { color: var(--navy); background: #fff; transform: translateY(-1px); }

/* =====================
   Buttons
   ===================== */
.btn {
  display: inline-block;
  padding: 13px 22px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: var(--gold-button);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.btn:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn:active { transform: translateY(0); box-shadow: none; }

.btn-ghost {
  color: #fff;
  background: transparent;
  border: 1px solid var(--line-dark);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

/* =====================
   Home hero
   ===================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 26px clamp(16px, 3vw, 42px) 48px;
  background:
    linear-gradient(112deg, rgba(238, 242, 241, 0.99) 0 56%, rgba(32, 43, 50, 0.72)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0)),
    #e7ecea;
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 6vw, 96px);
  bottom: 0;
  width: min(360px, 36vw);
  height: 5px;
  background: var(--gold);
  box-shadow: -64px 0 0 rgba(217, 138, 0, 0.38);
}

.hero-label {
  width: min(1240px, 100%);
  margin: 0 auto 18px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-grid {
  width: min(1240px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: 14px;
  margin: 0 auto;
  align-items: start;
}

.hero-copy {
  position: relative;
  padding: clamp(26px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(217, 138, 0, 0.34);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy h1 {
  max-width: 16.5em;
  font-size: clamp(1.85rem, 3.15vw, 2.85rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.018em;
  overflow-wrap: break-word;
}
.hero-summary { max-width: 720px; color: #4f5a61; font-size: 1.05rem; line-height: 1.6; }

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-strip span {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 7px;
  padding: 12px;
  color: var(--charcoal);
  font-weight: 800;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-strip span:hover {
  color: var(--charcoal-deep);
  background: #fffaf0;
}

.service-strip b { color: var(--gold-dark); font-size: 0.7rem; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  background: #aeb8bd;
}

.stat-strip span {
  min-height: 64px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 11px;
  color: #48545c;
  font-size: 0.74rem;
  background: var(--mist);
}

.stat-strip b { color: var(--charcoal-deep); font-size: 0.68rem; }

/* =====================
   Lead form
   ===================== */
.lead-form {
  padding: 22px;
  color: var(--ink);
  background:
    linear-gradient(var(--gold), var(--gold)) top / 100% 7px no-repeat,
    var(--paper);
  border: 1px solid rgba(217, 138, 0, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(18, 29, 35, 0.28);
}

.lead-form h3 { color: var(--charcoal-deep); }

.lead-form label {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  color: var(--charcoal);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--charcoal);
  background: #f7f9f8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-transform: none;
}

.lead-form input:hover, .lead-form select:hover, .lead-form textarea:hover {
  border-color: rgba(217, 138, 0, 0.5);
}

.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 138, 0, 0.12);
}

.lead-form textarea { resize: vertical; }

.lead-form button {
  width: 100%;
  min-height: 49px;
  margin-top: 14px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--gold-button);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.lead-form button:hover { background: var(--gold-dark); }
.lead-form button:active { transform: translateY(1px); }
.lead-form button:disabled,
.lead-form button:disabled:hover {
  cursor: wait;
  opacity: 0.7;
  background: var(--gold-button);
  transform: none;
}

.lead-form > p, .lead-form .form-note { margin: 12px 0 0; color: var(--muted); font-size: 0.78rem; line-height: 1.45; }
.lead-form .form-note a { color: var(--gold-dark); font-weight: 700; }
.form-status { min-height: 1.2em; font-weight: 800; }
.form-status[data-state="error"] { color: #9a2f2f; }
.form-status[data-state="success"] { color: #1f6a3d; }

/* =====================
   Inner-page hero band
   ===================== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 7vw, 84px) clamp(18px, 5vw, 76px) clamp(48px, 6vw, 72px);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(16, 24, 32, 0.98), rgba(32, 43, 50, 0.92)),
    linear-gradient(0deg, rgba(217, 138, 0, 0.1), rgba(217, 138, 0, 0)),
    var(--navy);
  border-bottom: 1px solid rgba(217, 138, 0, 0.72);
}

.page-hero::after {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 76px);
  bottom: 0;
  width: min(420px, 72vw);
  height: 5px;
  background: var(--gold);
}

.page-hero-inner { width: min(1180px, 100%); margin: 0 auto; }
.page-hero .eyebrow { color: var(--gold-bright); }
.page-hero h1 { color: #fff; max-width: 900px; font-size: clamp(2.25rem, 5vw, 4.55rem); }
.page-hero .lede { color: #cdd6d9; max-width: 780px; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: #aeb8bd;
  font-size: 0.76rem;
  font-weight: 700;
}

.breadcrumbs a { color: #dfe4e6; text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-bright); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 6px; color: #6d7880; }
.breadcrumbs li[aria-current="page"] { color: #8a949a; }

/* =====================
   Shared section rhythm
   ===================== */
.full-section {
  padding: clamp(50px, 6.4vw, 88px) clamp(20px, 5vw, 76px);
  color: var(--ink);
  background: var(--paper);
}

#approach.full-section {
  padding-block: clamp(46px, 5.5vw, 76px);
}

.muted-section { background: var(--mist); }
.dark-section { color: #fff; background: var(--charcoal-deep); }
.dark-section .eyebrow { color: var(--gold-bright); }
.dark-section h2 { color: #fff; }
.dark-section p:not(.eyebrow) { color: #c6cfd3; }

.section-inner { width: min(1180px, 100%); margin: 0 auto; }
.section-inner > h2 { max-width: 860px; }
.section-inner > p:last-child .text-link { margin-top: 6px; }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }
.section-head .text-link { margin-bottom: 10px; }

.text-link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  max-width: 100%;
}

.text-link:hover { text-decoration: underline; }
.dark-section .text-link, .muted-on-dark .text-link { color: var(--gold-bright); }

/* Service grid (home teaser + services page) */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service-detail-grid article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(217, 138, 0, 0.08), rgba(217, 138, 0, 0) 38%) top / 100% 0 no-repeat,
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.02);
}

.service-detail-grid article:hover {
  background-size: 100% 100%, auto;
  border-color: rgba(217, 138, 0, 0.42);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.service-number { display: block; margin-bottom: 18px; color: var(--gold-dark); font-size: 0.72rem; font-weight: 900; }
.service-detail-grid article h3 { color: var(--charcoal); }
.service-detail-grid article h2,
.service-detail-grid article h3 {
  max-width: 14ch;
  margin: 0 0 12px;
  color: var(--charcoal-deep);
  font-size: clamp(1.35rem, 1.7vw, 1.95rem);
  line-height: 1.08;
  overflow-wrap: normal;
}
.service-detail-grid article p { color: var(--muted); line-height: 1.55; }

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--gold-dark);
  background: var(--mist);
  border-radius: var(--radius);
}

.service-icon svg { width: 24px; height: 24px; }

.service-detail-grid article:hover .service-icon {
  color: #fff;
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.service-full.service-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-full article {
  min-height: 0;
  padding: clamp(24px, 3vw, 34px);
}

.service-full article h2 {
  max-width: 18ch;
  font-size: clamp(1.55rem, 2.1vw, 2.4rem);
}

.service-includes {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-includes li { position: relative; padding-left: 18px; margin-top: 6px; }
.service-includes li::before { content: "\2013"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 900; }

/* Split / mission section */
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.split-section h2 { font-size: clamp(1.9rem, 3vw, 3.1rem); line-height: 1.08; }
.split-section > div > p { color: var(--muted); line-height: 1.6; }
.split-section .split-lead {
  margin: 0;
  color: var(--charcoal-deep);
  font-size: clamp(1.35rem, 2.15vw, 2.2rem);
  font-weight: 800;
  line-height: 1.24;
}

.pillar-list { display: grid; gap: 22px; margin-top: 30px; }
.pillar-list article { padding-left: 18px; border-left: 1px solid var(--gold); }
.pillar-list h3 { margin-bottom: 6px; color: var(--charcoal-deep); font-size: 1.08rem; }
.pillar-list p { margin: 0; color: var(--muted); line-height: 1.55; }

.operations-panel {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 3.2vw, 38px);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(255, 253, 249, 0.76)),
    var(--paper);
  border: 1px solid rgba(45, 57, 66, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(45, 57, 66, 0.14);
  border-radius: var(--radius);
}

.standard-grid span {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  background: #fff;
}

.standard-grid b {
  display: block;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
  padding: 0;
  list-style: none;
}

.process-steps li {
  position: relative;
  padding: 26px 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.process-steps .step-number {
  display: block;
  margin-bottom: 30px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.process-steps h3 { font-size: 1.05rem; }
.process-steps p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

.dark-section .process-steps { background: transparent; border-color: transparent; }
.dark-section .process-steps li { background: #1c262d; }
.dark-section .process-steps h3 { color: #fff; }
.dark-section .process-steps p { color: #b7c1c5; }

/* Property types */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.chip {
  padding: 9px 16px;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.chip:hover {
  border-color: rgba(217, 138, 0, 0.45);
  transform: translateY(-2px);
}

.dark-section .chip { color: #fff; background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.24); }

/* Area chips (service area page) */
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }

.area-chips li {
  padding: 10px 16px;
  color: var(--charcoal);
  font-weight: 800;
  font-size: 0.88rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 1px solid var(--gold);
}

.area-note {
  margin-top: 20px;
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  background: var(--paper);
  border: 1px dashed var(--line);
}

/* FAQ */
.faq-list { display: grid; gap: 1px; margin-top: 30px; background: var(--line); border: 1px solid var(--line); }

.faq-list details { background: #fff; }
.faq-list details[open] { background: #fffaf0; }

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--charcoal-deep);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--gold-dark);
  font-size: 1.2rem;
  font-weight: 900;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), color 180ms var(--ease-out);
}

.faq-list details[open] summary::after { content: "\2212"; color: #fff; background: var(--gold-dark); transform: rotate(180deg); }

.faq-list p { margin: 0; padding: 0 22px 22px; color: var(--muted); line-height: 1.6; }

.dark-section .faq-list { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.14); }
.dark-section .faq-list details { background: #1c262d; }
.dark-section .faq-list summary { color: #fff; }
.dark-section .faq-list p { color: #b7c1c5; }

/* CTA band */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(34px, 5vw, 54px) clamp(20px, 5vw, 76px);
  color: #fff;
  background:
    linear-gradient(115deg, var(--charcoal-deep), #26343d);
  border-top: 1px solid rgba(217, 138, 0, 0.8);
}

.cta-band h2 { margin: 6px 0 0; color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.cta-band .eyebrow { color: var(--gold-bright); }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.cta-band .nav-phone { color: var(--gold-bright); font-weight: 800; text-decoration: none; font-size: 1.05rem; }

/* =====================
   Footer
   ===================== */
.site-footer { color: #fff; background: var(--charcoal); }

.footer-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 36px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 76px) 36px;
}

.footer-grid h2 { margin: 0 0 16px; color: var(--gold-bright); font-size: 0.76rem; font-weight: 900; text-transform: uppercase; }

.footer-brand p { margin: 14px 0 0; color: #c3ccd0; font-size: 0.92rem; line-height: 1.55; }

.footer-grid nav { display: grid; gap: 10px; }
.footer-grid nav a { color: #dfe4e6; font-size: 0.9rem; text-decoration: none; }
.footer-grid nav a:hover { color: var(--gold-bright); }

.footer-contact p { margin: 0 0 8px; color: #dfe4e6; font-size: 0.9rem; }
.footer-contact a { display: block; margin-bottom: 8px; color: #dfe4e6; font-size: 0.9rem; text-decoration: none; }
.footer-contact a:hover { color: var(--gold-bright); }
.footer-contact b { color: var(--gold); }

.footer-bottom {
  width: min(1180px, 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  margin: 0 auto;
  padding: 18px clamp(20px, 5vw, 76px) 30px;
  color: #9aa5aa;
  font-size: 0.78rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom a { color: #9aa5aa; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-bright); }

/* =====================
   404
   ===================== */
.not-found {
  display: grid;
  place-items: center;
  min-height: 60vh;
  padding: 80px 24px;
  text-align: center;
  background: var(--mist);
}

.not-found .eyebrow { display: block; }
.not-found h1 { font-size: clamp(3rem, 8vw, 6rem); }
.not-found p { max-width: 520px; margin: 0 auto 26px; color: var(--muted); font-size: 1.05rem; line-height: 1.55; }
.not-found-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

@media (hover: hover) and (pointer: fine) {
  .brand-mini:hover img, .brand-lockup:hover img {
    transform: translateY(-1px);
    filter: drop-shadow(0 10px 18px rgba(16, 24, 32, 0.16));
  }

  .primary-nav .nav-cta:hover,
  .btn:hover,
  .service-detail-grid article:hover,
  .chip:hover {
    will-change: transform;
  }
}

@media (hover: none) {
  .service-detail-grid article:hover,
  .chip:hover,
  .btn:hover,
  .primary-nav .nav-cta:hover,
  .brand-mini:hover img,
  .brand-lockup:hover img {
    transform: none;
  }
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    order: 3;
    padding-top: 14px;
    margin-top: 10px;
    border-top: 1px solid var(--line-dark);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { width: 100%; padding: 10px 2px; }
  .primary-nav .nav-cta { width: 100%; text-align: center; margin-top: 6px; }
  .topbar { align-items: center; }
}

@media (max-width: 800px) {
  .service-strip, .service-detail-grid, .stat-strip { grid-template-columns: 1fr 1fr; }
  .service-full.service-detail-grid { grid-template-columns: 1fr; }
  .standard-grid { grid-template-columns: 1fr; }
  .standard-grid span { min-height: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  h1, h2 { font-size: clamp(2rem, 10vw, 3.1rem); }
  .page-hero h1 { font-size: clamp(2.15rem, 11vw, 3.45rem); }
  .hero-copy h1 { font-size: clamp(1.7rem, 7.2vw, 2.25rem); }
  .primary-nav a { font-size: 0.72rem; }
  .brand-mini strong { font-size: 0.7rem; }
  .brand-mini small { font-size: 0.56rem; letter-spacing: 0.1em; }
  .brand-mini img { width: 42px; height: 42px; padding: 4px; }
  .brand-lockup img { width: min(220px, 78vw); }
  .topbar { padding: 8px max(14px, env(safe-area-inset-left)) 8px max(14px, env(safe-area-inset-right)); }
  .hero { padding: 18px 14px 34px; }
  .full-section { padding: 42px 18px; }
  #approach.full-section { padding-block: 40px; }
  .hero-summary, .lede, .split-section > div > p { font-size: 0.98rem; line-height: 1.55; }
  .operations-panel { padding: 20px; }
  .standard-grid span { padding: 14px; }
  .footer-grid { padding-inline: 18px; }
  .form-row, .service-strip, .stat-strip, .service-detail-grid, .process-steps { grid-template-columns: 1fr; }
  .hero-copy { padding: 22px 18px; }
  .breadcrumbs { font-size: 0.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  a, button, input, select, textarea, summary { transition: none; }
  *, *::before, *::after { animation-duration: 1ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
