:root {
  --navy-950: #0b1d2d;
  --navy-900: #10293d;
  --navy-800: #19324a;
  --navy-700: #2f5b78;
  --ink: #162a36;
  --muted: #5d707a;
  --muted-light: #a9bdc7;
  --paper: #f1f5f6;
  --ice: #dceaf0;
  --surface: #ffffff;
  --orange: #e07a19;
  --orange-light: #f5a04c;
  --line: #cad9df;
  --radius: 20px;
  --shell: 1180px;
  --shadow: 0 22px 60px rgba(12, 32, 47, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body,
button,
input,
textarea {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

.shell {
  width: min(calc(100% - 2.5rem), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  color: var(--navy-950);
  background: var(--orange-light);
  font-size: 0.8rem;
  font-weight: 800;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.preview-ribbon {
  position: relative;
  z-index: 5;
  padding: 0.38rem 1rem;
  color: var(--navy-950);
  background: var(--orange-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 10;
  color: var(--surface);
  background: var(--navy-900);
}

.utility-bar {
  border-bottom: 1px solid rgba(220, 234, 240, 0.16);
  color: var(--muted-light);
  background: var(--navy-950);
  font-size: 0.73rem;
  letter-spacing: 0.02em;
}

.utility-inner {
  display: flex;
  min-height: 2.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-status,
.utility-links,
.utility-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.utility-links {
  gap: 1.15rem;
}

.utility-links a {
  color: var(--surface);
  font-weight: 700;
}

.utility-links a:hover,
.utility-links a:focus-visible {
  color: var(--orange-light);
}

.status-dot,
.label-dot {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange-light);
  box-shadow: 0 0 0 4px rgba(245, 160, 76, 0.13);
}

.nav-wrap {
  display: flex;
  min-height: 5.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  align-content: center;
  justify-items: center;
  flex: 0 0 auto;
  color: var(--navy-950);
  background: var(--orange-light);
  border-radius: 0 13px 0 13px;
  line-height: 1;
}

.brand-mark span {
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.brand-mark small {
  margin-top: 0.19rem;
  font-size: 0.36rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.brand-copy strong {
  overflow: hidden;
  font-size: clamp(0.78rem, 2vw, 0.92rem);
  font-weight: 820;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy span {
  margin-top: 0.22rem;
  color: var(--muted-light);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0;
  color: var(--surface);
  background: transparent;
  border: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-icon {
  display: grid;
  width: 1.7rem;
  gap: 0.32rem;
}

.menu-icon span {
  display: block;
  height: 2px;
  background: var(--orange-light);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-icon span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.menu-open .menu-icon span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.primary-nav {
  display: none;
  width: 100%;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid rgba(220, 234, 240, 0.16);
}

.primary-nav a {
  display: flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-light);
  font-size: 0.82rem;
  font-weight: 750;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--surface);
}

.primary-nav .nav-cta {
  margin-top: 0.55rem;
  padding: 0.7rem 0.9rem;
  color: var(--navy-950);
  background: var(--orange-light);
  border-radius: 0 10px 0 10px;
}

.site-header.menu-open .primary-nav {
  display: grid;
}

.hero {
  position: relative;
  color: var(--surface);
  background: var(--navy-900);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(163, 201, 214, 0.13);
  border-radius: 50%;
}

.hero-glow-one {
  top: -19rem;
  right: -14rem;
  width: 43rem;
  height: 43rem;
}

.hero-glow-two {
  top: -9rem;
  right: -4rem;
  width: 27rem;
  height: 27rem;
  border-color: rgba(224, 122, 25, 0.24);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  padding-top: clamp(4.5rem, 10vw, 7.4rem);
  padding-bottom: 3.7rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 43rem;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
  color: var(--orange-light);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-line {
  width: 2.2rem;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.05rem, 12vw, 7.4rem);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.93;
}

.hero h1 em {
  color: var(--orange-light);
  font-style: normal;
}

.hero-lede {
  max-width: 37rem;
  margin: 2rem 0 0;
  color: #c7d7dd;
  font-size: clamp(1rem, 2.5vw, 1.16rem);
  line-height: 1.7;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.82rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 0 12px 0 12px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy-950);
  background: var(--orange-light);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffc174;
}

.button-quiet {
  color: var(--surface);
  border-color: rgba(220, 234, 240, 0.32);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: var(--orange-light);
}

.button-dark {
  color: var(--surface);
  background: var(--navy-900);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--navy-950);
  background: var(--surface);
}

.button-outline {
  color: var(--navy-800);
  border-color: var(--navy-700);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--surface);
  background: var(--navy-800);
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 40rem;
  margin-top: 3.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(220, 234, 240, 0.18);
}

.hero-note {
  display: grid;
  gap: 0.3rem;
}

.hero-note strong {
  color: var(--orange-light);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.hero-note span {
  color: #d9e5e9;
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: center;
}

.visual-frame {
  position: relative;
  max-width: 39rem;
  margin-inline: auto;
  padding: 0.55rem;
  background: rgba(220, 234, 240, 0.12);
  border: 1px solid rgba(220, 234, 240, 0.25);
  border-radius: 0 30px 0 30px;
}

.visual-frame img {
  width: 100%;
  border-radius: 0 24px 0 24px;
}

.visual-label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.72rem;
  color: var(--surface);
  background: rgba(11, 29, 45, 0.9);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-label-top {
  top: 1.5rem;
  left: -0.85rem;
}

.visual-label-bottom {
  right: -0.7rem;
  bottom: 1.35rem;
  color: var(--navy-950);
  background: var(--orange-light);
}

.visual-caption {
  max-width: 26rem;
  margin: 1.1rem 0 0 auto;
  color: var(--muted-light);
  font-size: 0.75rem;
  line-height: 1.45;
  text-align: right;
}

.hero-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.1rem;
  padding-bottom: 1.2rem;
  border-top: 1px solid rgba(220, 234, 240, 0.18);
}

.hero-foot p {
  max-width: 37rem;
  margin: 0;
  color: var(--muted-light);
  font-size: 0.76rem;
}

.hero-foot a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-foot a:hover,
.hero-foot a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.28rem;
}

.hero-foot a:hover,
.hero-foot a:focus-visible {
  color: var(--surface);
}

.service-rail {
  color: var(--surface);
  background: var(--navy-950);
}

.service-rail-grid {
  display: grid;
}

.rail-item {
  display: flex;
  min-height: 4.4rem;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(220, 234, 240, 0.14);
  color: #c5d4da;
  font-size: 0.77rem;
}

.rail-item:last-child {
  border-bottom: 0;
}

.rail-number,
.service-index,
.fact-number,
.faq-list summary span {
  color: var(--orange-light);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.section {
  padding: clamp(5rem, 11vw, 8.5rem) 0;
}

.services-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3.2rem;
}

.section-kicker {
  color: var(--navy-700);
}

.section-heading h2,
.origin-copy h2,
.area-copy h2,
.guidance-intro h2,
.contact-copy h2,
.emergency-inner h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.35rem, 7vw, 5rem);
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 0.97;
}

.section-heading > p,
.lead-copy,
.guidance-intro > p,
.contact-copy > .lead-copy {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  gap: 0.85rem;
}

.service-card {
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  padding: 1.45rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0 22px 0 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card-featured {
  color: var(--surface);
  background: var(--navy-800);
  border-color: var(--navy-800);
}

.service-card-featured:hover {
  border-color: var(--navy-800);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.service-card-featured .service-index {
  color: var(--orange-light);
}

.service-icon {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  color: var(--navy-800);
  background: var(--ice);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.service-card-featured .service-icon {
  color: var(--navy-950);
  background: var(--orange-light);
}

.service-card h3 {
  margin: 3.1rem 0 0.75rem;
  color: var(--navy-900);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 1;
}

.service-card-featured h3 {
  color: var(--surface);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.service-card-featured p {
  color: #c6d7de;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1.65rem;
  color: var(--navy-700);
  font-size: 0.73rem;
  font-weight: 850;
}

.service-card-featured a {
  color: var(--orange-light);
}

.service-card a:hover,
.service-card a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.27rem;
}

.emergency-band {
  position: relative;
  color: var(--navy-950);
  background: var(--orange);
  overflow: hidden;
}

.emergency-band::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: repeating-linear-gradient(135deg, transparent 0, transparent 16px, rgba(255, 255, 255, 0.08) 16px, rgba(255, 255, 255, 0.08) 17px);
  content: "";
  pointer-events: none;
}

.emergency-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 1.2rem;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.emergency-inner .section-kicker {
  margin-bottom: 0.45rem;
  color: var(--navy-800);
}

.emergency-inner h2 {
  color: var(--navy-950);
  font-size: clamp(2.2rem, 6vw, 4.4rem);
}

.emergency-mark {
  display: flex;
  width: 4.1rem;
  height: 4.1rem;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid rgba(11, 29, 45, 0.32);
  border-radius: 50%;
}

.emergency-mark span {
  width: 0.28rem;
  border-radius: 1rem;
  background: var(--navy-950);
}

.emergency-mark span:first-child {
  height: 1.15rem;
}

.emergency-mark span:nth-child(2) {
  height: 1.8rem;
}

.emergency-mark span:last-child {
  height: 0.8rem;
}

.origin-section {
  background: var(--ice);
}

.origin-grid,
.areas-grid,
.guidance-grid,
.contact-grid {
  display: grid;
  gap: 3rem;
}

.origin-visual {
  display: flex;
  min-height: 27rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.45rem;
  color: var(--surface);
  background: var(--navy-900);
  border-radius: 0 28px 0 28px;
  box-shadow: var(--shadow);
}

.origin-visual-top,
.origin-visual-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted-light);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.origin-visual-bottom {
  align-items: flex-end;
  color: #c6d7de;
}

.origin-seal {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: var(--navy-950);
  background: var(--orange-light);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.origin-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 3rem minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
}

.origin-line {
  position: relative;
  display: block;
  height: 1px;
  background: var(--orange-light);
}

.origin-line::after {
  position: absolute;
  top: -0.23rem;
  right: -0.05rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--orange-light);
  content: "";
  transform: rotate(45deg);
}

.origin-node {
  display: grid;
  gap: 0.55rem;
}

.origin-node strong {
  color: var(--orange-light);
  font-size: clamp(2.35rem, 8vw, 4rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.origin-node span {
  color: #c7d9df;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.35;
}

.origin-node-end {
  text-align: right;
}

.origin-copy h2,
.area-copy h2,
.guidance-intro h2,
.contact-copy h2 {
  margin-bottom: 1.6rem;
}

.fact-list {
  display: grid;
  gap: 0;
  margin-top: 2.3rem;
  border-top: 1px solid rgba(47, 91, 120, 0.25);
}

.fact-item {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.7rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(47, 91, 120, 0.25);
}

.fact-item strong {
  color: var(--navy-900);
  font-size: 0.9rem;
}

.fact-item p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.origin-copy .text-link,
.area-copy .text-link {
  margin-top: 1.75rem;
  color: var(--navy-800);
}

.areas-section {
  background: var(--surface);
}

.area-copy {
  order: 2;
}

.area-visual {
  position: relative;
  order: 1;
  align-self: center;
  padding: 0.45rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px 0 28px 0;
}

.area-visual img {
  width: 100%;
  border-radius: 22px 0 22px 0;
}

.area-visual-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.8rem;
  color: var(--surface);
  background: rgba(16, 41, 61, 0.94);
  border-radius: 0 10px 0 10px;
}

.area-visual-note span:last-child {
  display: grid;
  gap: 0.15rem;
}

.area-visual-note strong {
  font-size: 0.7rem;
}

.area-visual-note small {
  color: var(--muted-light);
  font-size: 0.61rem;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 2rem;
}

.location-list span {
  display: flex;
  min-height: 2.6rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.7rem;
  color: var(--navy-800);
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 750;
}

.location-list span:last-child {
  grid-column: 1 / -1;
}

.location-list i {
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
}

.guidance-section {
  background: var(--paper);
}

.guidance-intro > p {
  margin-bottom: 1.7rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 1.25rem 0;
  color: var(--navy-900);
  font-size: clamp(1rem, 2.5vw, 1.22rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  width: 0.55rem;
  height: 0.55rem;
  align-self: center;
  justify-self: end;
  border-right: 1px solid var(--navy-700);
  border-bottom: 1px solid var(--navy-700);
  content: "";
  transform: rotate(45deg) translateY(-3px);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg) translateY(-3px);
}

.faq-answer {
  max-width: 37rem;
  padding: 0 2rem 1.25rem 2.8rem;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.contact-section {
  color: var(--surface);
  background: var(--navy-800);
}

.contact-copy .section-kicker {
  color: var(--orange-light);
}

.contact-copy h2 {
  color: var(--surface);
}

.contact-copy > .lead-copy {
  color: #c7d9df;
}

.contact-details {
  display: grid;
  gap: 0.65rem;
  margin-top: 2.3rem;
}

.contact-detail {
  position: relative;
  display: grid;
  gap: 0.15rem;
  padding: 0.9rem 2.3rem 0.9rem 0;
  border-top: 1px solid rgba(220, 234, 240, 0.2);
}

a.contact-detail:hover,
a.contact-detail:focus-visible {
  color: var(--orange-light);
}

.detail-label {
  color: var(--muted-light);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail strong {
  color: var(--surface);
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 780;
}

.contact-detail-main strong {
  color: var(--orange-light);
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  letter-spacing: -0.04em;
}

.detail-arrow {
  position: absolute;
  top: 1.4rem;
  right: 0;
  color: var(--orange-light);
  font-size: 1rem;
}

.detail-note {
  color: #c7d9df;
  font-size: 0.76rem;
}

.request-card {
  padding: clamp(1.4rem, 4vw, 2.3rem);
  color: var(--ink);
  background: var(--surface);
  border-radius: 0 28px 0 28px;
  box-shadow: var(--shadow);
}

.request-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.request-label,
.request-status {
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-label {
  color: var(--navy-700);
}

.request-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
}

.request-status .status-dot {
  width: 0.35rem;
  height: 0.35rem;
  background: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(47, 91, 120, 0.12);
}

.request-card h3 {
  max-width: 15ch;
  margin: 1.6rem 0 0.7rem;
  color: var(--navy-900);
  font-size: clamp(1.65rem, 5vw, 2.45rem);
  font-weight: 830;
  letter-spacing: -0.065em;
  line-height: 1;
}

.form-note {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.request-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.field-row {
  display: grid;
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  color: var(--navy-800);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.72rem 0.78rem;
  color: var(--ink);
  background: #f5f8f9;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8da0a8;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(47, 91, 120, 0.14);
}

.form-button {
  width: 100%;
  margin-top: 0.3rem;
  border: 0;
}

.demo-status {
  margin: 0;
  padding: 0.75rem;
  color: var(--navy-800);
  background: var(--ice);
  font-size: 0.75rem;
  line-height: 1.45;
}

.site-footer {
  color: #c7d9df;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  gap: 2.4rem;
  padding-top: 4rem;
  padding-bottom: 3.5rem;
}

.brand-footer .brand-copy strong {
  color: var(--surface);
}

.footer-brand > p {
  max-width: 18rem;
  margin: 1.3rem 0 0;
  color: var(--muted-light);
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-label {
  margin-bottom: 0.45rem;
  color: var(--orange-light);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span:not(.footer-label) {
  color: #c7d9df;
  font-size: 0.76rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--orange-light);
}

.footer-call {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-call a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--surface);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.footer-call a:hover,
.footer-call a:focus-visible {
  color: var(--orange-light);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
  padding-top: 1.2rem;
  padding-bottom: 1.25rem;
  border-top: 1px solid rgba(220, 234, 240, 0.16);
  color: var(--muted-light);
  font-size: 0.64rem;
  letter-spacing: 0.02em;
}

.footer-bottom > span:first-child {
  color: var(--orange-light);
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom a {
  color: var(--surface);
  font-weight: 750;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--orange-light);
}

:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: 3px;
}

@media (min-width: 560px) {
  .hero-notes {
    gap: 1.4rem;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card-featured {
    grid-column: 1 / -1;
  }

  .field-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
  }

  .footer-call {
    grid-column: 1 / -1;
  }
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .nav-wrap {
    min-height: 5.7rem;
  }

  .primary-nav,
  .site-header.menu-open .primary-nav {
    display: flex;
    width: auto;
    align-items: center;
    gap: clamp(1rem, 2.4vw, 2rem);
    padding: 0;
    border-top: 0;
  }

  .primary-nav a {
    min-height: auto;
    color: var(--muted-light);
    font-size: 0.73rem;
    white-space: nowrap;
  }

  .primary-nav .nav-cta {
    margin-top: 0;
    padding: 0.7rem 0.85rem;
    color: var(--navy-950);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
  }

  .hero-visual {
    margin-top: 1rem;
  }

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

  .rail-item {
    min-height: 4.6rem;
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
    align-items: end;
    gap: 3rem;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card-featured {
    grid-column: span 2;
  }

  .emergency-inner {
    grid-template-columns: auto 1fr auto;
    gap: 1.7rem;
  }

  .origin-grid,
  .areas-grid,
  .guidance-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
  }

  .area-copy {
    order: 1;
  }

  .area-visual {
    order: 2;
  }

  .guidance-grid {
    align-items: start;
  }

  .contact-grid {
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.45fr 0.7fr 0.9fr 1fr;
    gap: 2rem;
  }

  .footer-call {
    grid-column: auto;
  }
}

@media (min-width: 980px) {
  .utility-inner {
    min-height: 2.55rem;
  }

  .hero-grid {
    padding-top: 8.2rem;
    padding-bottom: 5.2rem;
  }

  .hero-lede {
    margin-top: 2.4rem;
  }

  .hero-notes {
    margin-top: 4.1rem;
  }

  .service-card {
    min-height: 22rem;
    padding: 1.7rem;
  }

  .service-card-featured {
    min-height: 25rem;
  }

  .origin-visual {
    min-height: 32rem;
    padding: 2rem;
  }

  .request-card {
    padding: 2.45rem;
  }
}

@media (max-width: 430px) {
  .shell {
    width: min(calc(100% - 1.5rem), var(--shell));
  }

  .utility-email,
  .utility-location {
    display: none;
  }

  .brand-copy span {
    font-size: 0.5rem;
  }

  .hero-grid {
    padding-top: 3.8rem;
  }

  .hero h1 {
    font-size: clamp(2.95rem, 14vw, 4.2rem);
  }

  .hero-notes {
    gap: 0.45rem;
  }

  .hero-note span {
    font-size: 0.65rem;
  }

  .hero-foot {
    display: grid;
    gap: 0.65rem;
  }

  .visual-label-top {
    left: 0.5rem;
  }

  .visual-label-bottom {
    right: 0.5rem;
  }

  .location-list {
    grid-template-columns: 1fr;
  }

  .location-list span:last-child {
    grid-column: auto;
  }

  .request-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
