/* ==========================================================================
   Regal Logistics — stylesheet for P4 service and location pages
   --------------------------------------------------------------------------
   Self-contained so these nine pages render correctly on their own. Color and
   font tokens below are reconciled with the main site's styles.css (navy,
   gold, sky, Archivo Expanded / IBM Plex Sans / IBM Plex Mono). Content
   sections stay on a light background by design — these are dedicated
   landing pages, not a reskin of the dark-themed core site.
   ========================================================================== */

:root {
  --regal-navy:      #0A1E31;
  --regal-navy-2:    #0F2B44;
  --regal-gold:      #C9A24B;
  --regal-gold-bright: #EFCB68;
  --regal-sky:       #4EA8E0;
  --regal-paper:     #FFFFFF;
  --regal-paper-2:   #F4F6F8;
  --regal-rule:      #DCE2E8;
  --regal-ink:       #16222E;
  --regal-muted:     #5A6672;

  --regal-font-display: "Archivo Expanded", "Archivo", sans-serif;
  --regal-font-body:    "IBM Plex Sans", system-ui, sans-serif;
  --regal-font-mono:    "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --regal-max:   1180px;
  --regal-gut:   24px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--regal-font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--regal-ink);
  background: var(--regal-paper);
  -webkit-font-smoothing: antialiased;
}

.rg-wrap { max-width: var(--regal-max); margin: 0 auto; padding: 0 var(--regal-gut); }

a { color: var(--regal-navy); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--regal-sky);
  outline-offset: 3px;
}

.rg-skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--regal-navy); color: #fff; padding: 12px 18px; z-index: 100;
}
.rg-skip:focus { left: 0; }

/* ---------- header ---------------------------------------------------- */

.rg-header {
  border-bottom: 1px solid var(--regal-rule);
  background: var(--regal-paper);
  position: sticky; top: 0; z-index: 50;
}
.rg-header-in {
  display: flex; align-items: center; gap: 24px;
  min-height: 74px;
}
.rg-logo { display: flex; align-items: center; flex: 0 0 auto; }
.rg-logo img { height: 34px; width: auto; display: block; }

.rg-nav { display: flex; flex-wrap: wrap; gap: 18px; margin-left: auto; }
.rg-nav a {
  font-size: 14px; text-decoration: none; color: var(--regal-ink);
  letter-spacing: .01em; white-space: nowrap;
}
.rg-nav a:hover { color: var(--regal-sky); }
.rg-nav a[aria-current="page"] {
  color: var(--regal-navy); font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--regal-gold);
}

.rg-head-cta { display: flex; gap: 10px; flex: 0 0 auto; align-items: center; }
.rg-tel {
  font-family: var(--regal-font-mono);
  font-size: 14px; text-decoration: none; color: var(--regal-navy);
  white-space: nowrap; font-weight: 600;
}
.rg-tel:hover { color: var(--regal-sky); }

.rg-btn {
  display: inline-block; text-decoration: none; font-size: 14px; font-weight: 600;
  padding: 11px 20px; border-radius: 2px; white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.rg-btn-solid { background: var(--regal-navy); color: #fff; }
.rg-btn-solid:hover { background: var(--regal-navy-2); }
.rg-btn-ghost { border: 1px solid var(--regal-rule); color: var(--regal-navy); }
.rg-btn-ghost:hover { border-color: var(--regal-navy); }
.rg-btn-gold { background: var(--regal-gold); color: var(--regal-navy); }
.rg-btn-gold:hover { background: var(--regal-gold-bright); }

/* ---------- shared type ----------------------------------------------- */

.rg-eyebrow {
  font-family: var(--regal-font-mono);
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--regal-gold); margin: 0 0 14px;
}
.rg-eyebrow-light { color: var(--regal-gold); }

h1, h2, h3 { font-family: var(--regal-font-display); line-height: 1.15; margin: 0; font-weight: 800; }
h1 { font-size: clamp(30px, 4.4vw, 50px); letter-spacing: -.02em; }
h2 { font-size: clamp(23px, 2.6vw, 31px); letter-spacing: -.015em; }
h3 { font-size: 19px; font-family: var(--regal-font-body); font-weight: 600; letter-spacing: -.01em; }

.rg-deck {
  font-size: clamp(17px, 1.6vw, 20px); color: var(--regal-muted);
  max-width: 62ch; margin: 18px 0 0;
}

/* ---------- hero ------------------------------------------------------ */

.rg-hero {
  background: var(--regal-navy);
  color: #fff;
  padding: 74px 0 66px;
}
.rg-hero h1 { color: #fff; max-width: 20ch; }
.rg-hero .rg-deck { color: rgba(255,255,255,.78); }
.rg-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.rg-crumbs {
  font-size: 13px; color: rgba(255,255,255,.6); margin: 0 0 22px;
}
.rg-crumbs a { color: rgba(255,255,255,.78); text-decoration: none; }
.rg-crumbs a:hover { color: #fff; text-decoration: underline; }

/* ---------- stat strip ------------------------------------------------ */

.rg-stats {
  background: var(--regal-navy-2); color: #fff;
  border-top: 1px solid rgba(255,255,255,.12);
}
.rg-stats-in {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px; background: rgba(255,255,255,.12);
}
.rg-stat { background: var(--regal-navy-2); padding: 26px 22px; }
.rg-stat-n {
  font-family: var(--regal-font-display);
  font-size: 27px; font-weight: 700; letter-spacing: -.02em; display: block;
}
.rg-stat-l {
  font-family: var(--regal-font-mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.62); margin-top: 6px; display: block;
}

/* ---------- sections -------------------------------------------------- */

.rg-section { padding: 66px 0; }
.rg-section-alt { padding: 66px 0; background: var(--regal-paper-2); }
.rg-section > .rg-wrap > p:first-of-type { margin-top: 0; }

.rg-lede { font-size: 19px; max-width: 68ch; }

.rg-block {
  display: grid; grid-template-columns: 84px 1fr; gap: 26px;
  padding: 30px 0; border-top: 1px solid var(--regal-rule);
}
.rg-block:last-child { border-bottom: 1px solid var(--regal-rule); }
.rg-block-n {
  font-family: var(--regal-font-mono);
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--regal-muted); padding-top: 5px;
}
.rg-block-body p { margin: 10px 0 0; max-width: 68ch; }
.rg-block-body ul { margin: 14px 0 0; padding-left: 20px; max-width: 68ch; }
.rg-block-body li { margin: 5px 0; }

.rg-runs {
  font-family: var(--regal-font-mono);
  font-size: 11px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--regal-muted); margin-top: 16px;
}
.rg-runs b { color: var(--regal-navy); font-weight: 700; }
.rg-runs a { color: var(--regal-navy); text-decoration: underline; }
.rg-runs a:hover { color: var(--regal-sky); }

/* ---------- cards ----------------------------------------------------- */

.rg-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 20px; margin-top: 34px;
}
.rg-card {
  border: 1px solid var(--regal-rule); background: var(--regal-paper);
  padding: 24px; border-radius: 2px;
}
.rg-card h3 { margin-bottom: 8px; }
.rg-card p { margin: 0; font-size: 16px; color: var(--regal-muted); }
.rg-card a { text-decoration: none; }
a.rg-card { display: block; transition: border-color .15s ease; }
a.rg-card:hover { border-color: var(--regal-navy); }
a.rg-card h3 { color: var(--regal-navy); }

/* ---------- spec table ------------------------------------------------ */

.rg-specs { width: 100%; border-collapse: collapse; margin-top: 28px; font-size: 16px; }
.rg-specs th, .rg-specs td {
  text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--regal-rule);
  vertical-align: top;
}
.rg-specs th {
  width: 34%; font-family: var(--regal-font-mono); font-weight: 500;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--regal-muted);
}

/* ---------- NAP card -------------------------------------------------- */

.rg-nap {
  border-left: 3px solid var(--regal-gold);
  background: var(--regal-paper-2);
  padding: 24px 26px; margin-top: 30px; border-radius: 0 2px 2px 0;
}
.rg-nap p { margin: 0; }
.rg-nap .rg-nap-name { font-weight: 700; }
.rg-nap a { font-family: var(--regal-font-mono); font-weight: 600; text-decoration: none; }
.rg-nap a:hover { text-decoration: underline; }

/* ---------- FAQ ------------------------------------------------------- */

.rg-faq { margin-top: 34px; border-top: 1px solid var(--regal-rule); }
.rg-faq details { border-bottom: 1px solid var(--regal-rule); }
.rg-faq summary {
  cursor: pointer; padding: 18px 0; font-weight: 600; font-size: 17px;
  list-style: none; display: flex; justify-content: space-between; gap: 16px;
}
.rg-faq summary::-webkit-details-marker { display: none; }
.rg-faq summary::after { content: "+"; color: var(--regal-gold); font-weight: 400; font-size: 22px; line-height: 1; }
.rg-faq details[open] summary::after { content: "\2212"; }
.rg-faq details p { margin: 0 0 20px; max-width: 70ch; color: var(--regal-muted); }
.rg-faq details p a { text-decoration: underline; }

/* ---------- CTA band -------------------------------------------------- */

.rg-cta {
  background: var(--regal-navy); color: #fff; padding: 58px 0;
}
.rg-cta h2 { color: #fff; max-width: 22ch; }
.rg-cta p { color: rgba(255,255,255,.78); max-width: 60ch; }
.rg-cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 26px; }
.rg-cta-tel {
  font-family: var(--regal-font-mono); color: #fff; text-decoration: none;
  font-weight: 600; padding: 11px 4px;
}
.rg-cta-tel:hover { color: var(--regal-gold); }

/* ---------- footer ---------------------------------------------------- */

.rg-footer { background: var(--regal-navy); color: rgba(255,255,255,.72); padding: 56px 0 30px; font-size: 15px; }
.rg-footer-top { border-top: 1px solid rgba(255,255,255,.14); }
.rg-footer-cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 34px;
}
.rg-footer h4 {
  font-family: var(--regal-font-mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--regal-gold); margin: 0 0 14px; font-weight: 500;
}
.rg-footer ul { list-style: none; margin: 0; padding: 0; }
.rg-footer li { margin: 7px 0; }
.rg-footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.rg-footer a:hover { color: #fff; text-decoration: underline; }
.rg-footer address { font-style: normal; line-height: 1.75; }
.rg-footer-legal {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 13px; color: rgba(255,255,255,.55);
}
.rg-footer-legal a { color: rgba(255,255,255,.7); }
.rg-tagline {
  font-family: var(--regal-font-mono); font-size: 11px; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 18px;
}

/* ---------- responsive ------------------------------------------------ */

@media (max-width: 900px) {
  .rg-header-in { flex-wrap: wrap; min-height: 0; padding: 14px 0; gap: 14px; }
  .rg-nav { order: 3; width: 100%; margin-left: 0; gap: 14px; }
  .rg-head-cta { margin-left: auto; }
  .rg-hero { padding: 52px 0 46px; }
  .rg-section, .rg-section-alt { padding: 48px 0; }
  .rg-block { grid-template-columns: 1fr; gap: 8px; }
  .rg-specs th { width: 42%; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .rg-btn { padding: 10px 16px; }
  .rg-specs, .rg-specs tbody, .rg-specs tr, .rg-specs th, .rg-specs td { display: block; width: 100%; }
  .rg-specs th { border-bottom: 0; padding-bottom: 2px; }
  .rg-specs td { padding-top: 0; }
}

/* ---------- dual phone numbers ---------------------------------------- */

.rg-tels { display: flex; flex-direction: column; gap: 2px; line-height: 1.25; }
.rg-tel { display: block; }
.rg-tel-l {
  display: block;
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--regal-muted); font-weight: 500;
}
.rg-tel-local { color: var(--regal-muted); }
.rg-tel-local:hover { color: var(--regal-sky); }

.rg-nap-tels { margin-top: 10px !important; line-height: 1.9; }
.rg-nap-tels span {
  display: inline-block; min-width: 74px;
  font-family: var(--regal-font-mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--regal-muted);
}

.rg-foot-tels { list-style: none; margin: 12px 0 0; padding: 0; }
.rg-foot-tels li { margin: 6px 0; display: flex; gap: 10px; align-items: baseline; }
.rg-foot-tels span {
  min-width: 66px;
  font-family: var(--regal-font-mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.rg-foot-tels a {
  font-family: var(--regal-font-mono); font-weight: 600; color: #fff; text-decoration: none;
}
.rg-foot-tels a:hover { color: var(--regal-gold); text-decoration: underline; }

@media (max-width: 700px) {
  .rg-tel-local { display: none; }   /* toll-free stays visible; local remains in the footer and NAP block */
}
