:root {
  --ink: #0b1f32;
  --ink-2: #17354f;
  --ink-3: #476071;
  --paper: #fffdf8;
  --sand: #f4efe4;
  --sand-2: #e9dfcd;
  --gold: #c99331;
  --gold-2: #f1c972;
  --green: #1f9d67;
  --green-soft: #e3f6ed;
  --red: #c84848;
  --red-soft: #fae8e8;
  --white: #ffffff;
  --border: rgba(11, 31, 50, 0.13);
  --shadow-sm: 0 8px 24px rgba(9, 31, 50, 0.08);
  --shadow-lg: 0 28px 70px rgba(4, 20, 34, 0.18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --content: 1180px;
  --header-height: 78px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

h1, h2, h3, h4 {
  margin: 0 0 0.7em;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.55rem, 6vw, 5.15rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0 0 1.2rem; }
ul, ol { margin: 0 0 1.25rem; padding-left: 1.25rem; }
strong { font-weight: 750; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section-sm { padding: clamp(3rem, 6vw, 4.75rem) 0; }
.section-sand { background: var(--sand); }
.section-ink { color: var(--white); background: var(--ink); }
.section-ink p { color: #c6d2dc; }
.section-heading { max-width: 760px; margin-bottom: 2.4rem; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading p { color: var(--ink-3); font-size: 1.08rem; }
.section-ink .section-heading p { color: #c6d2dc; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #90671f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; content: ""; background: var(--gold); }
.section-ink .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--gold-2); }
.lead { color: var(--ink-3); font-size: clamp(1.08rem, 2vw, 1.25rem); line-height: 1.65; }
.muted { color: var(--ink-3); }
.fine-print { color: var(--ink-3); font-size: 0.82rem; line-height: 1.55; }

.topbar {
  color: #dce7ee;
  background: #051522;
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar p { margin: 0; }
.topbar a { color: var(--gold-2); font-weight: 750; text-decoration: none; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.22rem 0.72rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.status-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(31,157,103,0.16); --status-pulse-color: var(--green); }
.status-dot::after {
  position: absolute;
  inset: -5px;
  content: "";
  pointer-events: none;
  border: 1.5px solid var(--status-pulse-color);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.55);
  animation: status-ripple 2.4s ease-out infinite;
}
.status-pill[data-status="unavailable"] .status-dot,
.dispatch-status[data-status="unavailable"] .status-dot { --status-pulse-color: var(--red); }
.status-pill[data-status="unavailable"] .status-dot { background: var(--red); box-shadow: 0 0 0 4px rgba(200,72,72,0.16); }

@keyframes status-ripple {
  0% { opacity: 0; transform: scale(0.55); }
  18% { opacity: 0.42; }
  70%, 100% { opacity: 0; transform: scale(1.65); }
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255,253,248,0.95);
  backdrop-filter: blur(14px);
}
.nav-wrap { display: flex; min-height: var(--header-height); align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.72rem; text-decoration: none; }
.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 46px;
  place-items: center;
  color: var(--gold-2);
  background: var(--ink);
  border-radius: 14px 14px 18px 18px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.08);
}
.brand-mark::before { width: 12px; height: 12px; content: ""; border: 3px solid currentColor; border-radius: 50%; }
.brand-mark::after { position: absolute; top: 25px; width: 3px; height: 9px; content: ""; background: currentColor; border-radius: 3px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.18rem; letter-spacing: -0.02em; }
.brand-copy small { margin-top: 0.3rem; color: var(--ink-3); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 1.45rem; }
.main-nav > a, .nav-group > button {
  padding: 0.55rem 0;
  border: 0;
  color: var(--ink-2);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}
.main-nav > a:hover, .main-nav > a[aria-current="page"], .nav-group > button:hover { color: #94671d; }
.nav-group { position: relative; }
.nav-group > button::after { margin-left: 0.3rem; content: "▾"; font-size: 0.7rem; }
.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  display: grid;
  width: 300px;
  padding: 0.7rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: 160ms ease;
}
.nav-menu a { padding: 0.65rem 0.75rem; border-radius: 9px; color: var(--ink-2); font-size: 0.86rem; font-weight: 650; text-decoration: none; }
.nav-menu a:hover { color: #8c611d; background: var(--sand); }
.nav-group:hover .nav-menu, .nav-group:focus-within .nav-menu, .nav-group.open .nav-menu { opacity: 1; visibility: visible; transform: none; }
.nav-cta { padding: 0.72rem 1.05rem !important; color: var(--white) !important; background: var(--ink) !important; border-radius: 10px; }
.nav-cta:hover { background: var(--ink-2) !important; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 10px; background: var(--white); cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; width: 21px; height: 2px; margin: 5px auto; content: ""; background: var(--ink); transition: 180ms ease; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 18%, rgba(201,147,49,0.22), transparent 24%),
    linear-gradient(135deg, #071a2b 0%, #0c2940 64%, #143b53 100%);
}
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.19;
  background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to left, #000, transparent 72%);
}
.hero-grid { position: relative; z-index: 1; display: grid; min-height: 680px; grid-template-columns: 1.12fr 0.88fr; align-items: center; gap: clamp(2rem, 7vw, 6rem); padding: 5.5rem 0; }
.hero h1 { max-width: 780px; }
.hero h1 span { color: var(--gold-2); }
.hero-copy > p { max-width: 650px; color: #d6e0e7; font-size: clamp(1.08rem, 2vw, 1.25rem); }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #172536; background: var(--gold-2); box-shadow: 0 10px 30px rgba(214,166,70,0.22); }
.btn-primary:hover { background: #f6d58b; }
.btn-dark { color: var(--white); background: var(--ink); }
.btn-dark:hover { background: var(--ink-2); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.05); }
.btn-outline:hover { background: rgba(255,255,255,0.11); }
.btn-ghost { color: var(--ink); border-color: var(--border); background: var(--white); }
.btn-block { width: 100%; }
.btn-arrow::after { content: "→"; }

.hero-proof { display: flex; flex-wrap: wrap; gap: 0.8rem 1.4rem; margin-top: 2rem; color: #d9e4eb; font-size: 0.88rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-proof span::before { display: grid; width: 20px; height: 20px; place-items: center; content: "✓"; color: var(--gold-2); border: 1px solid rgba(241,201,114,0.45); border-radius: 50%; font-size: 0.7rem; font-weight: 900; }

.dispatch-card {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2rem);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-lg);
}
.dispatch-card::before { position: absolute; top: 18px; right: 18px; width: 80px; height: 80px; content: ""; border: 1px solid var(--sand-2); border-radius: 50%; box-shadow: 0 0 0 16px rgba(233,223,205,0.34), 0 0 0 32px rgba(233,223,205,0.18); }
.dispatch-card > * { position: relative; }
.dispatch-card h2 { max-width: 410px; margin-top: 1.1rem; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.dispatch-status {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid #b9dfce;
  border-radius: 14px;
  background: var(--green-soft);
}
.dispatch-status[data-status="unavailable"] { border-color: #efc0c0; background: var(--red-soft); }
.dispatch-status[data-status="unavailable"] .status-dot { background: var(--red); box-shadow: 0 0 0 4px rgba(200,72,72,0.16); }
.dispatch-status .status-dot { flex: 0 0 auto; margin-top: 0.45rem; }
.dispatch-status strong { display: block; font-size: 0.95rem; }
.dispatch-status p { margin: 0.15rem 0 0; color: var(--ink-3); font-size: 0.8rem; }
.call-panel { display: grid; gap: 0.2rem; margin: 1.4rem 0; padding: 1.1rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.call-panel span { color: var(--ink-3); font-size: 0.78rem; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }
.call-panel a { width: fit-content; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; text-decoration: none; }

.trust-strip { border-bottom: 1px solid var(--border); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: grid; min-height: 122px; align-content: center; padding: 1.25rem 1.5rem; border-right: 1px solid var(--border); }
.trust-item:first-child { border-left: 1px solid var(--border); }
.trust-item strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; }
.trust-item span { color: var(--ink-3); font-size: 0.82rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 1.65rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform 180ms ease, box-shadow 180ms ease, border 180ms ease;
}
.card:hover { border-color: rgba(201,147,49,0.48); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.card-number { display: grid; width: 42px; height: 42px; margin-bottom: 1.35rem; place-items: center; color: #865e1c; border-radius: 12px; background: var(--sand); font-family: Georgia, "Times New Roman", serif; font-weight: 800; }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--ink-3); font-size: 0.93rem; }
.card a.card-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: auto; color: #865e1c; font-size: 0.88rem; font-weight: 800; text-decoration: none; }
.card a.card-link::after { content: "→"; transition: transform 150ms ease; }
.card:hover a.card-link::after { transform: translateX(4px); }
.card.featured { color: var(--white); border-color: transparent; background: var(--ink); }
.card.featured p { color: #cbd7df; }
.card.featured .card-number { color: var(--gold-2); background: rgba(255,255,255,0.08); }
.card.featured a.card-link { color: var(--gold-2); }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2.5rem, 8vw, 7rem); }
.split-start { align-items: start; }
.feature-panel { position: relative; min-height: 520px; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink); box-shadow: var(--shadow-lg); }
.feature-panel::before { position: absolute; inset: 22px; content: ""; border: 1px solid rgba(255,255,255,0.13); border-radius: 21px; }
.feature-panel::after { position: absolute; top: 13%; right: -18%; width: 430px; height: 430px; content: ""; border: 1px solid rgba(241,201,114,0.4); border-radius: 50%; box-shadow: 0 0 0 60px rgba(241,201,114,0.07), 0 0 0 120px rgba(241,201,114,0.04); }
.feature-panel-content { position: absolute; z-index: 1; right: 2.4rem; bottom: 2.4rem; left: 2.4rem; padding: 1.5rem; color: var(--white); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; background: rgba(5,21,34,0.72); backdrop-filter: blur(8px); }
.feature-panel-content p { margin: 0; color: #c9d5dc; }

.check-list { display: grid; gap: 0.78rem; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 2rem; }
.check-list li::before { position: absolute; top: 0.12rem; left: 0; display: grid; width: 22px; height: 22px; place-items: center; content: "✓"; color: #76501a; border-radius: 50%; background: var(--sand-2); font-size: 0.72rem; font-weight: 900; }
.section-ink .check-list li::before { color: var(--gold-2); background: rgba(255,255,255,0.08); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--border); }
.step { padding: 2rem; background: var(--white); }
.step span { display: block; margin-bottom: 1.8rem; color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 2.5rem; line-height: 1; }
.step p { margin: 0; color: var(--ink-3); }

.location-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; }
.location-card { min-height: 190px; padding: 1.4rem; color: var(--white); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)); text-decoration: none; transition: 180ms ease; }
.location-card:hover { border-color: rgba(241,201,114,0.5); transform: translateY(-4px); }
.location-card small { color: var(--gold-2); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.location-card h3 { margin-top: 2.7rem; margin-bottom: 0.45rem; }
.location-card p { margin: 0; color: #b9c8d2; font-size: 0.82rem; }

.page-hero { position: relative; overflow: hidden; padding: clamp(4.5rem, 10vw, 7.5rem) 0; color: var(--white); background: linear-gradient(135deg, #071a2b, #123a51); }
.page-hero::before { position: absolute; top: -220px; right: -130px; width: 540px; height: 540px; content: ""; border: 1px solid rgba(241,201,114,0.23); border-radius: 50%; box-shadow: 0 0 0 70px rgba(241,201,114,0.035), 0 0 0 140px rgba(241,201,114,0.025); }
.page-hero .container { position: relative; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.5rem, 6vw, 4.7rem); }
.page-hero p { max-width: 720px; color: #d0dce3; font-size: 1.12rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.4rem; color: #aebfc9; font-size: 0.8rem; }
.breadcrumbs a { color: var(--gold-2); text-decoration: none; }
.breadcrumbs span::before { margin-right: 0.5rem; content: "/"; color: #688092; }

.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: start; gap: clamp(2.5rem, 7vw, 5.5rem); }
.prose { max-width: 780px; }
.prose h2 { margin-top: 2.3rem; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.prose h3 { margin-top: 1.9rem; }
.prose p, .prose li { color: #2f4a5c; }
.prose a { color: #805719; font-weight: 700; }
.prose .callout { margin: 2rem 0; padding: 1.45rem; border-left: 4px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--sand); }
.prose .callout p:last-child { margin-bottom: 0; }
.sidebar { position: sticky; top: 116px; display: grid; gap: 1rem; }
.side-card { padding: 1.45rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.side-card.dark { color: var(--white); border: 0; background: var(--ink); }
.side-card.dark p { color: #c5d2da; }
.side-card.dark .dispatch-status { color: var(--ink); }
.side-card.dark .dispatch-status strong { color: #0e4d35; }
.side-card.dark .dispatch-status p { color: #315f4d; }
.side-card.dark .dispatch-status[data-status="unavailable"] strong { color: #762f2f; }
.side-card.dark .dispatch-status[data-status="unavailable"] p { color: #764c4c; }
.side-card h2, .side-card h3 { font-size: 1.35rem; }
.side-links { display: grid; padding: 0; list-style: none; }
.side-links a { display: flex; justify-content: space-between; padding: 0.6rem 0; color: var(--ink-2); border-bottom: 1px solid var(--border); font-size: 0.86rem; font-weight: 700; text-decoration: none; }
.side-links a::after { content: "→"; color: var(--gold); }

.form-shell { padding: clamp(1.4rem, 4vw, 2.3rem); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: 0.38rem; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--ink-2); font-size: 0.83rem; font-weight: 800; }
.field label span { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.72rem 0.8rem;
  color: var(--ink);
  border: 1px solid #cbd4da;
  border-radius: 9px;
  outline: 0;
  background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,147,49,0.16); }
.field-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.checkbox { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 0.6rem; color: var(--ink-3); font-size: 0.79rem; }
.checkbox input { width: 18px; height: 18px; margin-top: 0.15rem; accent-color: var(--ink); }
.form-note { padding: 0.85rem 1rem; border-radius: 10px; color: var(--ink-3); background: var(--sand); font-size: 0.8rem; }
.form-response { display: none; margin-bottom: 1rem; padding: 0.9rem 1rem; border-radius: 10px; font-size: 0.9rem; font-weight: 700; }
.form-response.success { display: block; color: #12623e; border: 1px solid #a8d8c2; background: var(--green-soft); }
.form-response.error { display: block; color: #8f2e2e; border: 1px solid #ecc1c1; background: var(--red-soft); }
.form-submit[disabled] { cursor: wait; opacity: 0.65; transform: none; }

.faq-list { display: grid; gap: 0.75rem; }
.faq-list details { border: 1px solid var(--border); border-radius: 14px; background: var(--white); }
.faq-list summary { position: relative; padding: 1.2rem 3rem 1.2rem 1.25rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; font-weight: 700; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 1.25rem; content: "+"; color: var(--gold); font-family: sans-serif; font-size: 1.4rem; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 1.25rem 1.2rem; color: var(--ink-3); }
.faq-answer p:last-child { margin: 0; }

.cta-band { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.cta-band::after { position: absolute; right: -120px; bottom: -260px; width: 500px; height: 500px; content: ""; border: 1px solid rgba(241,201,114,0.26); border-radius: 50%; box-shadow: 0 0 0 70px rgba(241,201,114,0.04); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-inner h2 { max-width: 720px; margin: 0; }
.cta-inner p { max-width: 650px; margin: 0.8rem 0 0; color: #c8d5dd; }

.legal-date { display: inline-block; margin-bottom: 1rem; padding: 0.35rem 0.65rem; color: var(--ink-3); border-radius: 999px; background: var(--sand); font-size: 0.76rem; font-weight: 750; }

.site-footer { color: #b8c8d2; background: #051522; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.75fr 0.8fr 1.05fr; gap: 2.5rem; padding: 4.5rem 0 3rem; }
.footer-brand .brand-copy strong { color: var(--white); }
.footer-brand .brand-copy small { color: #92a8b6; }
.footer-brand > p { max-width: 350px; margin-top: 1.25rem; font-size: 0.88rem; }
.footer-col h2 { margin-bottom: 1rem; color: var(--white); font-family: inherit; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 0.45rem; padding: 0; list-style: none; }
.footer-col a { color: #b8c8d2; font-size: 0.86rem; text-decoration: none; }
.footer-col a:hover { color: var(--gold-2); }
.footer-contact { display: grid; gap: 0.4rem; }
.footer-contact a { color: var(--white); font-weight: 800; }
.footer-bottom { padding: 1.4rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 2rem; font-size: 0.73rem; }
.footer-bottom p { margin: 0; }

.mobile-cta { display: none; }
.noscript { padding: 0.8rem; color: #6c4313; border-bottom: 1px solid #ebcd9d; background: #fff1d8; text-align: center; font-size: 0.86rem; }

/* Homepage-only van image test. */
.home-van-test .hero {
  isolation: isolate;
  background: #061522;
}
.home-van-test .home-van-hero {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.home-van-test .hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4,17,29,0.97) 0%, rgba(5,22,36,0.92) 34%, rgba(5,22,36,0.7) 56%, rgba(5,19,31,0.2) 78%, rgba(5,18,29,0.28) 100%),
    linear-gradient(0deg, rgba(3,13,22,0.5), transparent 58%);
}
.home-van-test .hero::after { z-index: 1; opacity: 0.09; }
.home-van-test .hero-grid { z-index: 2; }
.home-van-test .feature-panel {
  background:
    linear-gradient(180deg, rgba(4,18,29,0.08), rgba(4,18,29,0.28)),
    url("../images/home-key-wall.jpg") center top / cover no-repeat;
}
.home-van-test .feature-panel::before {
  z-index: 2;
  border-color: rgba(241,201,114,0.25);
}
.home-van-test .feature-panel::after {
  z-index: 1;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: inherit;
  background: linear-gradient(0deg, rgba(3,15,25,0.88), transparent 66%);
  box-shadow: none;
}
.home-van-test .feature-panel-content {
  z-index: 3;
  border-color: rgba(241,201,114,0.2);
  background: rgba(4,18,29,0.8);
}

@media (max-width: 1050px) {
  .main-nav { position: fixed; z-index: 1001; top: calc(var(--header-height) + 38px); right: 0; left: 0; display: none; max-height: calc(100vh - var(--header-height) - 38px); padding: 1rem 20px 2rem; overflow-y: auto; border-bottom: 1px solid var(--border); background: var(--paper); box-shadow: var(--shadow-lg); }
  .main-nav.open { display: grid; align-items: stretch; gap: 0.25rem; }
  .main-nav > a, .nav-group > button { width: 100%; padding: 0.85rem; text-align: left; }
  .nav-cta { margin-top: 0.4rem; text-align: center !important; }
  .nav-menu { position: static; display: none; width: auto; margin: 0 0 0.5rem 0.8rem; padding: 0 0 0 0.8rem; border: 0; border-left: 2px solid var(--sand-2); border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-group.open .nav-menu { display: grid; }
  .nav-group:hover .nav-menu:not(:focus-within) { display: none; }
  .nav-group.open:hover .nav-menu { display: grid; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr 0.78fr; gap: 2.5rem; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  body { padding-bottom: 70px; }
  .topbar-inner > p { display: none; }
  .topbar-inner { justify-content: center; }
  .hero-grid, .split, .content-layout { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 4.5rem 0; }
  .dispatch-card { max-width: 600px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 1px solid var(--border); border-top: 1px solid var(--border); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--border); }
  .steps { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .mobile-cta { position: fixed; z-index: 1200; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; padding: 0.55rem; border-top: 1px solid var(--border); background: rgba(255,253,248,0.98); box-shadow: 0 -10px 30px rgba(5,21,34,0.12); backdrop-filter: blur(10px); }
  .mobile-cta a { display: grid; min-height: 50px; place-items: center; padding: 0.5rem; font-size: 0.82rem; font-weight: 850; text-decoration: none; }
  .mobile-cta .mobile-call { color: var(--ink); }
  .mobile-cta .mobile-request { color: var(--white); border-radius: 9px; background: var(--ink); }
  .home-van-test .home-van-hero { object-position: 62% bottom; }
  .home-van-test .hero::before {
    background:
      linear-gradient(90deg, rgba(4,17,29,0.96), rgba(5,22,36,0.74)),
      linear-gradient(0deg, rgba(3,13,22,0.6), transparent 55%);
  }
}

@media (max-width: 600px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--content)); }
  .section { padding: 4rem 0; }
  .brand-copy strong { font-size: 1.03rem; }
  .brand-copy small { font-size: 0.58rem; }
  .brand-mark { width: 38px; height: 42px; }
  .hero h1 { font-size: clamp(2.45rem, 13vw, 3.7rem); }
  .hero-actions .btn, .button-row .btn { width: 100%; }
  .hero-proof { display: grid; }
  .dispatch-card::before { display: none; }
  .trust-item { min-height: 108px; padding: 1rem; }
  .trust-item strong { font-size: 0.95rem; }
  .card-grid, .location-grid, .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .feature-panel { min-height: 430px; }
  .feature-panel-content { right: 1rem; bottom: 1rem; left: 1rem; }
  .page-hero { padding: 3.7rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .status-dot::after { animation: none !important; }
}

@media print {
  .topbar, .site-header, .mobile-cta, .cta-band, .site-footer, .sidebar { display: none !important; }
  body { padding: 0; color: #000; background: #fff; }
  .section, .page-hero { padding: 1rem 0; color: #000; background: #fff; }
  a { color: #000; text-decoration: none; }
}
