/* ==========================================================================
   Blue Ridge Property Services — shared stylesheet
   All pages load this file. Edit here once; every page updates.

   BRAND PALETTE (from the 2026 logo artwork)
     Navy   #12293D   Rust  #B85C27   Steel #40708F   Mist #E8EDF1
   Legacy variable names (--gold / --gold-light) are kept as aliases so any
   older markup keeps working; they now resolve to the rust accent.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core brand */
  --navy: #12293D;
  --navy-mid: #1B3A54;
  --navy-deep: #0C1D2D;
  --blue: #40708F;
  --blue-light: #9DBBD1;

  /* Rust accent — three tints for three jobs */
  --rust: #B85C27;        /* fills, rules, blocks                       */
  --rust-ink: #9E4A1E;    /* rust TEXT on light backgrounds (AA)        */
  --rust-light: #D9803B;  /* rust TEXT / icons on navy backgrounds (AA) */

  /* Legacy aliases — do not remove */
  --gold: var(--rust);
  --gold-light: var(--rust-light);

  /* Neutrals */
  --cream: #EDF1F5;
  --off-white: #F7F9FB;
  --gray-text: #47566A;
  --gray-light: #DCE3EA;
  --white: #ffffff;
  --error: #a4392a;

  /* Type */
  --font-serif: 'Poppins', 'Trebuchet MS', system-ui, sans-serif; /* display */
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;   /* body    */

  --nav-h: 68px;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

/* Anchored sections clear the fixed navbar */
:target { scroll-margin-top: calc(var(--nav-h) + 12px); }

/* Visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--rust-light);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--rust); color: var(--white);
  padding: 0.75rem 1.25rem; font-size: 0.85rem; font-weight: 600;
  text-decoration: none; letter-spacing: 0.04em;
}
.skip-link:focus { left: 0; }

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

/* ── NAV ─────────────────────────────────────────────────────────────── */
/* Scoped to .site-nav on purpose: breadcrumbs are also <nav> elements and
   must NOT inherit the fixed positioning. */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: var(--nav-h);
  border-bottom: 2px solid var(--rust);
  gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; min-width: 0; flex-shrink: 1;
}
.nav-lockup { height: 34px; width: auto; display: block; }
.nav-mark { height: 36px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 0.875rem; font-weight: 400; letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--rust-light); }
.nav-links a[aria-current="page"] { color: var(--rust-light); }
.nav-cta {
  background: var(--rust); color: var(--white);
  padding: 0.5rem 1.25rem; border-radius: 2px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
  white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: var(--rust-light); color: var(--white) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem 0 0.5rem 0.5rem; flex-shrink: 0; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--rust-light); margin: 5px 0; transition: transform 0.25s, opacity 0.25s; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--navy); flex-direction: column; gap: 0;
    padding: 0.4rem 0 0.9rem; border-bottom: 2px solid var(--rust);
    box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.7rem 5%; }
  .nav-links a { font-size: 0.95rem; display: block; }
}
@media (max-width: 600px) {
  .nav-lockup { height: 26px; }
  .nav-mark { height: 28px; }
  .nav-cta { padding: 0.45rem 0.8rem; font-size: 0.68rem; letter-spacing: 0.04em; }
}
@media (max-width: 400px) {
  .nav-lockup { height: 22px; }
}

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--rust); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 2px;
  font-weight: 600; font-size: 0.875rem; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  display: inline-block; border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: var(--rust-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 0.85rem 2rem; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.35);
  font-weight: 500; font-size: 0.875rem; letter-spacing: 0.06em;
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--rust-light); color: var(--rust-light); }
.btn-outline-dark {
  background: transparent; color: var(--navy);
  padding: 0.85rem 2rem; border-radius: 2px; border: 1px solid var(--navy);
  font-weight: 500; font-size: 0.875rem; letter-spacing: 0.06em;
  text-decoration: none; transition: background 0.2s, color 0.2s; display: inline-block;
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ── ICONS ───────────────────────────────────────────────────────────── */
.ico {
  width: 1.25em; height: 1.25em; display: block;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ── HERO ────────────────────────────────────────────────────────────── */
#hero {
  margin-top: var(--nav-h);
  min-height: 88vh;
  background: var(--navy);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 80px);
}
.hero-accent {
  position: absolute; right: 0; top: 0; bottom: 0; width: 42%;
  background: linear-gradient(135deg, var(--navy-mid) 0%, #24506B 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-accent-overlay {
  position: absolute; right: 0; top: 0; bottom: 0; width: 42%;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 12px);
}
.hero-gold-bar {
  position: absolute; left: 5%; top: 0; width: 3px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--rust), transparent);
  opacity: 0.7;
}
.hero-content { position: relative; z-index: 2; padding: 6rem 5% 9rem; max-width: 740px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rust-light);
  margin-bottom: 1.25rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(217,128,59,0.45);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 600; color: var(--white); line-height: 1.15;
  margin-bottom: 1.5rem; letter-spacing: -0.015em;
}
.hero-title em { color: var(--rust-light); font-style: normal; }
.hero-desc {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 540px; margin-bottom: 2.5rem; line-height: 1.75;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  position: absolute; bottom: 2.5rem; left: 5%; right: 5%;
  display: flex; gap: 3rem; flex-wrap: wrap; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
}
.hero-stat-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 600; color: var(--rust-light); line-height: 1; }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.3rem; }
.hero-logo-mark {
  position: absolute; right: 5%; bottom: 14%;
  width: min(30vw, 380px); z-index: 1; opacity: 0.09; pointer-events: none;
}
@media (max-width: 900px) { .hero-logo-mark { display: none; } }
@media (max-width: 860px) {
  /* Stack instead of flexing: hero-stats becomes static here, so #hero must
     stop laying its children out in a row. */
  #hero { display: block; min-height: 0; }
  .hero-content { padding: 4rem 5% 2.5rem; max-width: none; }
  .hero-stats {
    position: static; display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem; padding: 1.75rem 5% 3rem; margin: 0;
  }
  .hero-accent, .hero-accent-overlay { display: none; }
}

/* ── SECTION COMMONS ─────────────────────────────────────────────────── */
section { padding: 6rem 5%; }
.section-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rust-ink); margin-bottom: 0.75rem; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 600; line-height: 1.2; color: var(--navy);
  margin-bottom: 1rem; letter-spacing: -0.01em;
}
.section-intro { font-size: 1.05rem; color: var(--gray-text); max-width: 640px; line-height: 1.75; margin-bottom: 3rem; }
.on-dark .section-label, .on-dark.section-label { color: var(--rust-light); }

/* ── SERVICES ────────────────────────────────────────────────────────── */
#services { background: var(--cream); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px; background: var(--gray-light); border: 1.5px solid var(--gray-light);
}
.service-card { background: var(--white); padding: 2rem 1.75rem; transition: background 0.2s; }
.service-card:hover { background: var(--navy); }
.service-card:hover .service-icon { border-color: var(--rust-light); color: var(--rust-light); }
.service-card:hover .service-name { color: var(--white); }
.service-card:hover .service-desc { color: rgba(255,255,255,0.7); }
.service-icon {
  width: 44px; height: 44px; border: 1.5px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.3rem; color: var(--navy);
  transition: border-color 0.2s, color 0.2s;
}
.service-icon .ico { width: 22px; height: 22px; }
.service-name { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--navy); transition: color 0.2s; }
.service-desc { font-size: 0.875rem; color: var(--gray-text); line-height: 1.65; transition: color 0.2s; }

/* ── TRADE CAPABILITIES ──────────────────────────────────────────────── */
#capabilities { background: var(--navy); }
#capabilities .section-title { color: var(--white); }
#capabilities .section-label { color: var(--rust-light); }
#capabilities .section-intro { color: rgba(255,255,255,0.7); }
.trades-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.trade-pill {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.88); padding: 0.55rem 1.1rem;
  font-size: 0.85rem; letter-spacing: 0.03em; border-radius: 2px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.trade-pill:hover { background: rgba(184,92,39,0.22); border-color: var(--rust-light); color: var(--rust-light); }
.trades-note { margin-top: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); font-style: italic; }

/* ── MARKETS / COVERAGE ──────────────────────────────────────────────── */
#markets { background: var(--off-white); }
.markets-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .markets-layout { grid-template-columns: 1fr; gap: 3rem; } }
.markets-table { width: 100%; border-collapse: collapse; }
.markets-table th {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--rust-ink); font-weight: 600; padding: 0 0 0.75rem;
  border-bottom: 1px solid var(--gray-light); text-align: left;
}
.markets-table td { padding: 0.85rem 0; border-bottom: 1px solid var(--gray-light); font-size: 0.9rem; color: var(--gray-text); }
.markets-table td:first-child { font-weight: 500; color: var(--navy); width: 34%; vertical-align: top; }
.market-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin: 0.15rem 0.25rem 0.15rem 0;
  background: var(--white); border: 1px solid var(--gray-light);
  color: var(--navy); padding: 0.22rem 0.6rem; border-radius: 2px; font-size: 0.8rem;
}
.market-tag::before {
  content: ""; width: 9px; height: 9px; flex-shrink: 0;
  background: var(--navy);
  clip-path: polygon(50% 0, 100% 62%, 76% 100%, 50% 45%, 24% 100%, 0 62%);
}
.market-tag.turns { border-color: rgba(184,92,39,0.45); background: rgba(184,92,39,0.07); color: var(--rust-ink); font-weight: 500; }
.market-tag.turns::before { background: var(--rust); }
.market-tag .hq { color: var(--rust-ink); font-weight: 600; }

.legend { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1.75rem; }
.legend-item { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--navy); }
.legend-item .chev { width: 14px; height: 14px; flex-shrink: 0; background: var(--navy); clip-path: polygon(50% 0, 100% 62%, 76% 100%, 50% 45%, 24% 100%, 0 62%); }
.legend-item.turns { color: var(--rust-ink); }
.legend-item.turns .chev { background: var(--rust); }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.why-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.why-bullet {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--rust); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; margin-top: 0.15rem;
}
.why-bullet .ico { width: 13px; height: 13px; stroke-width: 2.6; }
.why-text { font-size: 0.9rem; color: var(--gray-text); line-height: 1.6; }

.map-figure { margin: 0; }
.map-figure img { width: 100%; height: auto; display: block; border: 1px solid var(--gray-light); border-radius: 4px; background: var(--white); }
.map-figure figcaption { font-size: 0.8rem; color: var(--gray-text); margin-top: 0.75rem; }

/* ── PROCESS ─────────────────────────────────────────────────────────── */
#process { background: var(--cream); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2rem; }
.process-step { position: relative; padding-top: 1.5rem; border-top: 3px solid var(--rust); }
.process-num { font-family: var(--font-serif); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em; color: var(--rust-ink); margin-bottom: 0.5rem; }
.process-name { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.process-desc { font-size: 0.875rem; color: var(--gray-text); line-height: 1.65; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
#faq { background: var(--off-white); }
.faq-layout { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.6fr); gap: 4rem; align-items: start; }
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; } }
.faq-aside { background: var(--white); border: 1px solid var(--gray-light); border-radius: 4px; padding: 1.75rem; }
.faq-aside h3 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; }
.faq-aside p { font-size: 0.9rem; color: var(--gray-text); line-height: 1.7; margin-bottom: 1.25rem; }
.faq-aside .contact-detail { margin-bottom: 1rem; }
.faq-list { border-top: 1px solid var(--gray-light); }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.25rem 2.5rem 1.25rem 0; position: relative;
  font-family: var(--font-serif); font-size: 1rem; font-weight: 500; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0.25rem; top: 50%; transform: translateY(-50%);
  font-size: 1.35rem; font-weight: 300; color: var(--rust-ink); line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary { color: var(--rust-ink); }
.faq-answer { padding: 0 2.5rem 1.5rem 0; font-size: 0.925rem; color: var(--gray-text); line-height: 1.8; }
.faq-answer a { color: var(--rust-ink); }

/* ── CTA BAND ────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--navy); padding: 3.5rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; border-top: 3px solid var(--rust);
}
.cta-band h2 { font-family: var(--font-serif); font-size: clamp(1.3rem, 2.6vw, 1.8rem); font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.cta-band p { color: rgba(255,255,255,0.68); font-size: 0.95rem; max-width: 520px; }
.cta-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── CONTACT ─────────────────────────────────────────────────────────── */
#contact { background: var(--cream); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; } }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--navy); color: var(--rust-light);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
}
.contact-icon .ico { width: 19px; height: 19px; }
.contact-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rust-ink); font-weight: 600; margin-bottom: 0.2rem; }
.contact-value { font-size: 0.95rem; color: var(--navy); }
.contact-value a { color: var(--navy); text-decoration: none; border-bottom: 1px solid rgba(184,92,39,0.4); }
.contact-value a:hover { color: var(--rust-ink); border-bottom-color: var(--rust); }
.contact-form-note { background: var(--navy); padding: 2rem 2rem 2.5rem; border-left: 3px solid var(--rust); }
.contact-form-note p { color: rgba(255,255,255,0.78); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; }
.contact-form-note .btn-primary { display: inline-block; }

/* ── SUB-PAGE HEADER + CONTENT ───────────────────────────────────────── */
.page-header {
  margin-top: var(--nav-h); background: var(--navy);
  padding: 4rem 5% 3rem; border-bottom: 2px solid var(--rust);
  position: relative; overflow: hidden;
}
.page-header .eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rust-light); margin-bottom: 0.75rem; }
.page-header h1 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.7rem); color: var(--white); font-weight: 600; letter-spacing: -0.01em; }
.page-header h1 em { color: var(--rust-light); font-style: normal; }
.page-header .updated { margin-top: 0.75rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.page-header .sub { margin-top: 1rem; color: rgba(255,255,255,0.72); font-size: 1rem; max-width: 620px; line-height: 1.7; font-weight: 300; }
.header-mark { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: min(22vw, 230px); opacity: 0.1; pointer-events: none; }
@media (max-width: 780px) { .header-mark { display: none; } }

.breadcrumb {
  position: static; display: block; background: none; border: none;
  height: auto; padding: 0; z-index: auto;
  font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 0.9rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--rust-light); }

.content-wrap { max-width: 820px; margin: 0 auto; padding: 4rem 5% 6rem; }
.content-wrap.wide { max-width: 1180px; }

.section-block { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--gray-light); }
.section-block:last-child { border-bottom: none; }
.section-block h2 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.section-block h2 .num { color: var(--rust-ink); margin-right: 0.4rem; }
.section-block p { font-size: 0.95rem; color: var(--gray-text); line-height: 1.8; margin-bottom: 0.75rem; }
.section-block p:last-child { margin-bottom: 0; }
.section-block ul { margin: 0.5rem 0 0.75rem 1.25rem; }
.section-block ul li { font-size: 0.95rem; color: var(--gray-text); line-height: 1.8; margin-bottom: 0.25rem; }
.section-block a { color: var(--rust-ink); }

.highlight-box { background: var(--cream); border-left: 3px solid var(--rust); padding: 1.25rem 1.5rem; margin: 1.25rem 0; border-radius: 0 4px 4px 0; }
.highlight-box p { font-size: 0.9rem; color: var(--navy); font-weight: 500; margin: 0; }

.contact-block { background: var(--navy); padding: 2rem; border-radius: 4px; margin-top: 1rem; }
.contact-block p { color: rgba(255,255,255,0.78); font-size: 0.9rem; margin-bottom: 0.4rem; }
.contact-block a { color: var(--rust-light); text-decoration: none; }
.contact-block a:hover { text-decoration: underline; }

/* ── COVERAGE PAGE ───────────────────────────────────────────────────── */
.coverage-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 3rem; align-items: start; }
@media (max-width: 940px) { .coverage-layout { grid-template-columns: 1fr; gap: 2.5rem; } }

.state-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1.25rem; }
.state-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: 4px; padding: 1.25rem 1.35rem; }
.state-card h3 { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 0.75rem; }
.state-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.state-card li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.92rem; color: var(--navy); }
.state-card li .chev { width: 11px; height: 11px; flex-shrink: 0; background: var(--navy); clip-path: polygon(50% 0, 100% 62%, 76% 100%, 50% 45%, 24% 100%, 0 62%); }
.state-card li.turns { color: var(--rust-ink); font-weight: 500; }
.state-card li.turns .chev { background: var(--rust); }
.state-card li .hq-flag { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); background: var(--navy); padding: 0.1rem 0.4rem; border-radius: 2px; }

.services-panel { background: var(--white); border: 1px solid var(--gray-light); border-radius: 4px; padding: 1.75rem; position: sticky; top: calc(var(--nav-h) + 1.5rem); }
@media (max-width: 940px) { .services-panel { position: static; } }
.services-panel h2 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.services-panel .panel-sub { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 1.1rem; }
.services-panel ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.services-panel li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.93rem; color: var(--navy); }
.services-panel li .chev { width: 11px; height: 11px; flex-shrink: 0; background: var(--rust); clip-path: polygon(50% 0, 100% 62%, 76% 100%, 50% 45%, 24% 100%, 0 62%); }
.panel-note { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--gray-light); font-size: 0.85rem; color: var(--gray-text); line-height: 1.6; }

.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--gray-light); }
.stat-strip .n { font-family: var(--font-serif); font-size: 2.1rem; font-weight: 600; color: var(--navy); line-height: 1; }
.stat-strip .l { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-text); margin-top: 0.4rem; }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
footer {
  background: var(--navy); padding: 2.5rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-lockup { height: 30px; width: auto; display: block; }
.footer-mark { height: 34px; width: auto; display: block; }
.footer-logo { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600; color: var(--white); }
.footer-logo span { display: block; font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rust-light); font-weight: 300; margin-top: 0.15rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--rust-light); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ── SCROLL ANIMATIONS ───────────────────────────────────────────────── */
/* Guarded by .js so content is always visible if JavaScript never runs. */
.js .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .fade-in { opacity: 1; transform: none; }
}

/* ── PRINT ───────────────────────────────────────────────────────────── */
@media print {
  .site-nav, .nav-toggle, .cta-band, .hero-logo-mark, .header-mark { display: none !important; }
  body { background: #fff; color: #000; }
  #hero, .page-header, footer, #capabilities { background: #fff !important; color: #000 !important; }
  .hero-title, .page-header h1, .footer-logo, #capabilities .section-title { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.75em; }
  section, .content-wrap { padding: 1rem 0; }
}
