/* Design B — Bold Split | charcoal + amber | asymmetric hero | sticky CTA */
:root {
  --ink: #0e0e0e;
  --charcoal: #1a1a1a;
  --charcoal-2: #2a2a2a;
  --amber: #f5a623;
  --amber-2: #e08900;
  --orange: #ff6b1a;
  --paper: #f4f2ed;
  --muted: #8a8680;
  --line: #3a3a3a;
  --white: #ffffff;
  --display: "Oswald", "Arial Narrow", sans-serif;
  --sans: "Inter", system-ui, sans-serif;
  --max: 1200px;
  --sticky-h: 64px;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.55;
  padding-bottom: var(--sticky-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber-2); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; z-index: 9999; background: #fff; padding: 8px; }

.site-header {
  background: var(--charcoal);
  color: #fff;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 3px solid var(--amber);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0; min-height: 72px;
}
.brand { color: #fff; text-decoration: none; font-family: var(--display); font-size: 1.35rem; letter-spacing: 0.04em; text-transform: uppercase; }
.brand span { color: var(--amber); }
.nav { display: flex; gap: 18px; flex-wrap: wrap; }
.nav a { color: #ddd; text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.nav a:hover { color: var(--amber); }
.header-cta .btn { margin-left: 8px; }

.hero-split {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  min-height: 78vh;
  background: var(--charcoal);
  color: #fff;
}
.hero-split__copy {
  padding: clamp(40px, 8vw, 96px) clamp(24px, 5vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--line);
}
.hero-split__copy .eyebrow {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber); font-weight: 700; margin-bottom: 1rem;
}
.hero-split__copy h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.95; text-transform: uppercase; margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.hero-split__copy h1 em { color: var(--amber); font-style: normal; }
.hero-split__copy .lede { font-size: 1.15rem; color: #c8c4bc; max-width: 36ch; margin-bottom: 1.75rem; }
.hero-split__panel {
  background: linear-gradient(160deg, var(--charcoal-2), #111);
  padding: clamp(32px, 5vw, 56px);
  display: flex; flex-direction: column; justify-content: flex-end; gap: 20px;
  position: relative;
}
.hero-split__panel::before {
  content: ""; position: absolute; top: 24px; right: 24px;
  width: 80px; height: 80px; border: 4px solid var(--orange); border-radius: 50%;
  opacity: 0.5;
}
.stat { border-left: 4px solid var(--amber); padding-left: 14px; }
.stat strong { display: block; font-family: var(--display); font-size: 2rem; color: var(--amber); }
.stat span { color: #aaa; font-size: 0.85rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; font-weight: 700; text-decoration: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.95rem; border-radius: 2px;
}
.btn-primary { background: var(--amber); color: #111; }
.btn-primary:hover { background: var(--orange); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn-dark { background: var(--charcoal); color: #fff; }

.band { padding: clamp(48px, 7vw, 88px) 0; }
.band-dark { background: var(--ink); color: #eee; }
.band-paper { background: var(--paper); }
.band h2 {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.05; margin: 0 0 0.75rem;
}
.kicker { color: var(--amber-2); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 800; }

.svc-offset { display: flex; flex-direction: column; gap: 0; }
.svc-offset a {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 16px; align-items: center;
  padding: 22px 0; border-bottom: 2px solid #ddd; text-decoration: none; color: inherit;
}
.svc-offset a:hover { color: var(--amber-2); border-color: var(--amber); }
.svc-offset .num { font-family: var(--display); font-size: 1.6rem; color: var(--amber-2); }
.svc-offset h3 { margin: 0; font-size: 1.2rem; }
.svc-offset p { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.92rem; }

.city-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem; }
.city-chips a {
  background: var(--charcoal); color: #fff; padding: 10px 16px; text-decoration: none;
  font-weight: 600; font-size: 0.85rem; border-left: 3px solid var(--amber);
}
.city-chips a:hover { background: var(--amber); color: #111; }

.process-rail {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 2px solid var(--charcoal); padding: 0; margin: 0;
}
.process-rail li {
  list-style: none; padding: 24px; border-right: 2px solid var(--charcoal);
  background: #fff;
}
.process-rail li:last-child { border-right: 0; }
.process-rail strong { display: block; font-family: var(--display); text-transform: uppercase; margin-bottom: 8px; color: var(--amber-2); }

.faq-stack details { border-bottom: 2px solid #ccc; padding: 16px 0; }
.faq-stack summary { font-weight: 700; cursor: pointer; font-size: 1.05rem; }
.faq-stack p { color: var(--muted); }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--amber); color: #111;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px; gap: 16px; min-height: var(--sticky-h);
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
.sticky-cta strong { font-family: var(--display); text-transform: uppercase; font-size: 1.1rem; }
.sticky-cta a { color: #111; font-weight: 800; }

.site-footer { background: #0a0a0a; color: #bbb; padding: 56px 0 100px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.site-footer a { color: #ddd; text-decoration: none; }
.site-footer h3 { color: var(--amber); font-family: var(--display); text-transform: uppercase; font-size: 0.95rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 6px 0; }
.legal-row { margin-top: 32px; padding-top: 16px; border-top: 1px solid #333; font-size: 0.8rem; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }

.msrb-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.msrb-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; font-weight: 600; }
.msrb-form label.full { grid-column: 1 / -1; }
.msrb-form input, .msrb-form select, .msrb-form textarea {
  padding: 12px; border: 2px solid #ccc; background: #fff; font: inherit; border-radius: 0;
}
.msrb-form input:focus, .msrb-form select:focus, .msrb-form textarea:focus { border-color: var(--amber); outline: none; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.form-note { font-size: 0.8rem; color: var(--muted); }
.check { flex-direction: row !important; align-items: center; gap: 10px !important; font-weight: 500 !important; }

.page-hero { background: var(--charcoal); color: #fff; padding: 48px 0 40px; }
.page-hero h1 { font-family: var(--display); text-transform: uppercase; font-size: clamp(2rem, 4vw, 3.2rem); margin: 0; }
.crumbs { font-size: 0.85rem; color: #999; margin-bottom: 12px; }
.crumbs a { color: var(--amber); }
.lead { font-size: 1.1rem; }

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split__panel { min-height: 200px; }
  .process-rail { grid-template-columns: 1fr 1fr; }
  .process-rail li:nth-child(2) { border-right: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .msrb-form .form-grid { grid-template-columns: 1fr; }
}

.brand-logo{display:block;height:48px;width:auto;max-width:220px;object-fit:contain;}
.brand{display:inline-flex;align-items:center;}
