/* ==========================================================================
   Milepost Vehicle Logistics — site stylesheet

   Palette and rhythm come from the brand kit (milepost-tokens.css).
   Type is a serif/sans pairing: Newsreader for anything that carries voice,
   Inter for anything that carries information. Amber is deliberately rationed
   — calls to action, hairline rules, and nothing else.
   ========================================================================== */

:root {
  /* Brand */
  --mp-emerald: #1A2F2B;
  --mp-sage: #4E7268;
  --mp-amber: #FF9F1C;
  --mp-alabaster: #FAFAF9;
  --mp-cardboard: #EAEAE6;
  --mp-white: #FFFFFF;

  /* Derived */
  --mp-amber-hover: #E88C0A;
  --mp-amber-active: #CF7B00;
  --mp-sage-hover: #416057;
  --mp-emerald-soft: #24403A;
  --mp-emerald-deep: #142522;
  --mp-sage-tint: #E9EFEC;
  --mp-amber-tint: #FFF1DC;

  /* Text */
  --text-primary: var(--mp-emerald);
  --text-secondary: #5C6B67;
  --text-muted: #8A9691;
  --text-on-dark: var(--mp-white);
  --text-on-dark-soft: rgba(255, 255, 255, .76);
  --text-link: #3D6157;
  --text-link-dark: var(--mp-amber);

  /* Surfaces */
  --bg-page: var(--mp-alabaster);
  --bg-card: var(--mp-white);
  --bg-section: #F2F2EF;
  --bg-dark: var(--mp-emerald);
  --bg-widget: var(--mp-sage);

  /* Borders */
  --border: #E4E4DE;
  --border-strong: #D2D2CB;
  --border-focus: var(--mp-amber);

  /* Status */
  --status-success: #2E7D4F;
  --status-error: #B3261E;

  /* Shape and rhythm */
  --radius-sm: 3px;
  --radius: 6px;
  --radius-lg: 10px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 26px;
  --space-5: 44px;
  --space-6: 72px;

  --font-display: "Newsreader", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --shadow-sm: 0 1px 2px rgba(26, 47, 43, .04);
  --shadow: 0 2px 4px rgba(26, 47, 43, .04), 0 12px 28px -14px rgba(26, 47, 43, .16);
  --shadow-lg: 0 24px 60px -28px rgba(10, 24, 21, .55);

  --wrap: 1140px;
}

/* --------------------------------------------------------------- reset -- */

*, *::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;
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: -.003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; }
img { height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -.018em;
  margin: 0 0 var(--space-3);
  color: var(--text-primary);
  font-variant-ligatures: common-ligatures;
}

h1 { font-size: clamp(2.5rem, 1.5rem + 3.9vw, 4.15rem); line-height: 1.08; letter-spacing: -.026em; }
h2 { font-size: clamp(1.9rem, 1.25rem + 2.4vw, 2.85rem); letter-spacing: -.022em; }
h3 { font-size: clamp(1.24rem, 1.08rem + .62vw, 1.5rem); letter-spacing: -.014em; }

h4 {
  font-family: var(--font-body);
  font-size: .96rem; font-weight: 600; letter-spacing: -.005em; line-height: 1.4;
  margin: 0 0 var(--space-2); color: var(--text-primary);
}

/* Italic serif for the phrase that carries the emphasis in a headline. */
.accent { font-style: italic; font-weight: 400; }

p { margin: 0 0 var(--space-3); }
p:last-child { margin-bottom: 0; }

a { color: var(--text-link); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--mp-emerald); }

ul, ol { margin: 0 0 var(--space-3); padding-left: 1.15em; }
li { margin-bottom: 10px; }
li:last-child { margin-bottom: 0; }
li::marker { color: var(--mp-sage); }

strong { font-weight: 600; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--border-focus);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--mp-amber); color: var(--mp-emerald);
  padding: 12px 20px; font-weight: 600; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* -------------------------------------------------------------- layout -- */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--space-4); }

.section { padding-block: clamp(56px, 7vw, 104px); }
.section--tight { padding-block: clamp(40px, 4.5vw, 64px); }
.section--sage { background: var(--mp-sage-tint); }
.section--paper { background: var(--bg-section); }
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--text-on-dark); }
.section--dark p { color: var(--text-on-dark-soft); }
.section--dark a { color: var(--text-link-dark); }
.section--dark li { color: var(--text-on-dark-soft); }
.section--dark li::marker { color: rgba(255, 255, 255, .4); }

.section-head { max-width: 60ch; margin-bottom: var(--space-5); }
.section-head--center { margin-inline: auto; text-align: center; }
/* :not(.eyebrow) matters — a bare `.section-head p` outranks `.eyebrow` on
   specificity and would size the small-caps label like body copy. */
.section-head p:not(.eyebrow) { color: var(--text-secondary); font-size: 1.08rem; }

/* Small caps label with a hairline rule — the quiet counterweight to the serif. */
.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mp-sage); margin: 0 0 var(--space-3);
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::after { content: ""; height: 1px; flex: 0 0 34px; background: var(--mp-amber); }
.section-head--center .eyebrow { justify-content: center; }
.section--dark .eyebrow, .page-head .eyebrow { color: rgba(255, 255, 255, .62); }
.section--dark .eyebrow::after, .page-head .eyebrow::after { background: var(--mp-amber); }

.grid { display: grid; gap: var(--space-4); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(278px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(226px, 1fr)); }

.prose { max-width: 65ch; }
.prose h2 { margin-top: var(--space-6); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: var(--space-5); }
.prose p { color: #46534F; }

/* ------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: .94rem; font-weight: 600; letter-spacing: .01em;
  padding: 14px 26px; border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap; line-height: 1.2;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.btn-primary { background: var(--mp-amber); color: var(--mp-emerald); }
.btn-primary:hover { background: var(--mp-amber-hover); color: var(--mp-emerald); }
.btn-primary:active { background: var(--mp-amber-active); }

.btn-secondary { background: transparent; border-color: var(--border-strong); color: var(--mp-emerald); }
.btn-secondary:hover { background: var(--mp-white); border-color: var(--mp-emerald); color: var(--mp-emerald); }

.btn-ghost-light { background: transparent; border-color: rgba(255, 255, 255, .32); color: var(--mp-white); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .08); color: var(--mp-white); border-color: rgba(255, 255, 255, .6); }

.btn-block { width: 100%; }
.btn-lg { padding: 17px 32px; font-size: 1rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* A quieter call to action than a button: serif, underlined, amber rule. */
.link-more {
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  color: var(--mp-emerald); text-decoration: none;
  border-bottom: 1px solid var(--mp-amber); padding-bottom: 3px;
  transition: border-color .18s ease, color .18s ease;
}
.link-more:hover { color: var(--mp-sage); border-bottom-color: var(--mp-sage); }
.section--dark .link-more { color: var(--mp-white); }
.section--dark .link-more:hover { color: var(--mp-amber); border-bottom-color: var(--mp-amber); }

/* -------------------------------------------------------------- header -- */

.site-header {
  background: var(--bg-dark); color: var(--text-on-dark);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.site-header .wrap { display: flex; align-items: center; gap: var(--space-4); min-height: 82px; }

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { width: 172px; }

.nav { margin-left: auto; display: flex; align-items: center; gap: var(--space-4); }
.nav a {
  color: rgba(255, 255, 255, .78); text-decoration: none;
  font-family: var(--font-body); font-weight: 500; font-size: .93rem; letter-spacing: .005em;
  padding: 8px 0; border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.nav a:hover { color: var(--mp-white); border-bottom-color: rgba(255, 255, 255, .35); }
.nav a[aria-current="page"] { color: var(--mp-white); border-bottom-color: var(--mp-amber); }

.header-cta { display: flex; align-items: center; gap: var(--space-4); }
.header-mail {
  color: rgba(255, 255, 255, .78); font-family: var(--font-body); font-weight: 500;
  font-size: .93rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: color .18s ease;
}
.header-mail:hover { color: var(--mp-amber); }

.nav-toggle {
  display: none; margin-left: auto;
  background: transparent; border: 1px solid rgba(255, 255, 255, .32); border-radius: var(--radius);
  color: var(--mp-white); padding: 10px 14px; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: .85rem; letter-spacing: .04em;
}

@media (max-width: 900px) {
  /* The header wraps onto extra lines once the menu opens. align-items centres
     each line individually, so without explicit padding the first line (logo +
     toggle) sits flush against the top edge. The max-height keeps a long open
     menu scrollable instead of taller than the phone. */
  .site-header .wrap {
    flex-wrap: wrap; min-height: 68px; padding-block: 13px;
    max-height: 100vh; overflow-y: auto;
  }
  .nav-toggle { display: block; }
  .nav {
    order: 3; width: 100%; margin-left: 0; flex-direction: column; align-items: stretch;
    gap: 0; border-top: 1px solid rgba(255, 255, 255, .12); padding-block: var(--space-2);
  }
  .nav[hidden] { display: none; }
  .nav a { padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .07); font-size: 1rem; }
  .nav a:hover, .nav a[aria-current="page"] { border-bottom-color: rgba(255, 255, 255, .07); }
  .header-cta { order: 4; width: 100%; padding-block: var(--space-3); flex-direction: column; align-items: stretch; gap: var(--space-3); }
  .header-cta .btn { width: 100%; }
  .header-cta[hidden] { display: none; }
  .header-mail { justify-content: center; }
}

/* ---------------------------------------------------------------- hero -- */

.hero {
  background: var(--bg-dark); color: var(--text-on-dark);
  position: relative; overflow: hidden;
  padding-block: clamp(56px, 7vw, 104px);
}
/* One soft light source, no busy pattern. */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 520px at 8% 0%, rgba(78, 114, 104, .42), transparent 66%),
    linear-gradient(180deg, transparent 55%, rgba(10, 24, 21, .35) 100%);
}
.hero .wrap { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; align-items: start; } }

.hero h1 { color: var(--mp-white); max-width: 13ch; margin-bottom: var(--space-4); }
.hero h1 .accent { color: var(--mp-amber); }
.hero-lede { font-size: 1.15rem; line-height: 1.68; color: var(--text-on-dark-soft); max-width: 50ch; margin-bottom: var(--space-4); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 11px;
  color: rgba(255, 255, 255, .72); margin-bottom: var(--space-4);
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
}
.hero-badge .rule { height: 1px; width: 30px; background: var(--mp-amber); display: inline-block; }

.hero-points { list-style: none; margin: var(--space-4) 0 0; padding: 0; display: grid; gap: 14px; }
.hero-points li {
  display: flex; gap: 13px; align-items: flex-start;
  color: var(--text-on-dark-soft); font-size: .99rem; margin: 0; line-height: 1.55;
}
.hero-points svg { flex-shrink: 0; margin-top: 4px; color: var(--mp-amber); }

/* -------------------------------------------------------- quote widget -- */

.quote-widget {
  background: var(--mp-white); color: var(--text-primary);
  border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, .08);
}
.quote-widget h2 { font-size: 1.72rem; margin-bottom: 6px; letter-spacing: -.02em; }
.quote-widget .quote-sub { color: var(--text-secondary); font-size: .94rem; margin-bottom: var(--space-4); }
.quote-widget--light { border-color: var(--border); box-shadow: var(--shadow); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

.field { margin-bottom: var(--space-3); }
.field > label {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: .72rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--mp-sage); margin-bottom: 7px;
}
.field .req { color: var(--mp-amber); }

.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: .98rem; color: var(--text-primary);
  background: var(--mp-white);
  border: 1px solid var(--border-strong); border-radius: var(--radius);
  padding: 12px 14px; appearance: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 104px; resize: vertical; line-height: 1.6; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath stroke='%234E7268' stroke-width='1.6' d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--mp-sage); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--mp-amber);
  box-shadow: 0 0 0 3px rgba(255, 159, 28, .18);
}
.field .error-text { display: none; font-size: .82rem; color: var(--status-error); margin-top: 6px; font-weight: 500; }
.field.has-error input, .field.has-error select { border-color: var(--status-error); }
.field.has-error .error-text { display: block; }

.quote-fineprint {
  font-size: .82rem; line-height: 1.6; color: var(--text-muted); margin-top: var(--space-3);
  border-top: 1px solid var(--border); padding-top: var(--space-3);
}
.quote-fineprint a { color: var(--text-link); }

.form-status {
  display: none; margin-top: var(--space-3); padding: var(--space-3) var(--space-4);
  border-radius: var(--radius); background: var(--mp-sage-tint); color: var(--text-primary);
  border-left: 2px solid var(--status-success); font-size: .93rem; line-height: 1.6;
}
.form-status.is-visible { display: block; }
.form-status strong { display: block; margin-bottom: 5px; font-family: var(--font-display); font-size: 1.16rem; font-weight: 500; }

/* --------------------------------------------------------- trust strip -- */

.trust-strip {
  background: var(--mp-emerald-deep); color: var(--text-on-dark);
  padding-block: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.trust-strip ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); gap: var(--space-4);
}
.trust-strip li { margin: 0; padding-top: var(--space-3); border-top: 1px solid rgba(255, 255, 255, .14); }
.trust-strip li:first-child { border-top-color: var(--mp-amber); }
.trust-strip .label {
  font-family: var(--font-display); font-size: 1.16rem; font-weight: 500; letter-spacing: -.015em;
  display: block; line-height: 1.3; color: var(--mp-white); margin-bottom: 4px;
}
.trust-strip .sub { color: rgba(255, 255, 255, .58); font-size: .84rem; line-height: 1.5; display: block; }

/* --------------------------------------------------------------- cards -- */

.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(22px, 2.4vw, 32px);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-secondary); font-size: .97rem; line-height: 1.68; }
.card ul { font-size: .95rem; color: var(--text-secondary); }

.card-icon {
  width: 38px; height: 38px; color: var(--mp-sage);
  display: grid; place-items: center; margin-bottom: var(--space-3);
  border-bottom: 1px solid var(--mp-amber); padding-bottom: var(--space-2); width: 38px;
}
.card--accent { border-top: 1px solid var(--mp-amber); }

.step-card { position: relative; }
.step-num {
  display: block; font-family: var(--font-display); font-size: 2.6rem; font-weight: 400;
  font-style: italic; line-height: 1; color: var(--mp-amber); margin-bottom: var(--space-3);
}
.section--dark .step-num { color: var(--mp-amber); }

/* --------------------------------------------------------- price table -- */

.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-card); }
table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: .95rem; }
caption { text-align: left; padding: var(--space-4) var(--space-4) var(--space-2); color: var(--text-muted); font-size: .86rem; line-height: 1.6; }
th, td { text-align: left; padding: 15px var(--space-4); border-bottom: 1px solid var(--border); line-height: 1.6; }
thead th {
  font-family: var(--font-body); font-size: .7rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--mp-sage);
  border-bottom: 1px solid var(--border-strong); padding-block: 13px;
}
td:first-child { color: var(--text-primary); }
td { color: var(--text-secondary); }
tbody tr:last-child td { border-bottom: 0; }

/* ----------------------------------------------------------------- faq -- */

.faq-list { max-width: 76ch; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: var(--space-4) 44px var(--space-4) 0;
  font-family: var(--font-display); font-weight: 500; font-size: 1.24rem; letter-spacing: -.015em;
  position: relative; color: var(--text-primary); line-height: 1.35;
  transition: color .18s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 10px; top: 50%; width: 10px; height: 10px;
  border-right: 1.5px solid var(--mp-sage); border-bottom: 1.5px solid var(--mp-sage);
  transform: translateY(-70%) rotate(45deg); transition: transform .22s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-item summary:hover { color: var(--mp-sage); }
.faq-answer { padding: 0 var(--space-6) var(--space-4) 0; color: var(--text-secondary); font-size: .99rem; }

/* -------------------------------------------------------------- lanes -- */

.lane-list { list-style: none; margin: 0; padding: 0; columns: 3; column-gap: var(--space-5); }
@media (max-width: 780px) { .lane-list { columns: 2; } }
@media (max-width: 460px) { .lane-list { columns: 1; } }
.lane-list li {
  break-inside: avoid; padding: 11px 0; margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: .95rem; color: var(--text-on-dark-soft);
}

/* ------------------------------------------------------------ callouts -- */

.callout {
  background: transparent; border-left: 1px solid var(--mp-amber);
  padding: var(--space-2) 0 var(--space-2) var(--space-4);
}
.callout p { color: var(--text-secondary); }
.callout--sage { border-left-color: var(--mp-sage); }

.cta-band { background: var(--mp-emerald); color: var(--text-on-dark); padding-block: clamp(52px, 6vw, 84px); }
.cta-band h2 { color: var(--mp-white); margin-bottom: var(--space-2); }
.cta-band p { color: var(--text-on-dark-soft); max-width: 52ch; }
.cta-band-inner { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; justify-content: space-between; }

/* --------------------------------------------------------- page header -- */

.page-head {
  background: var(--bg-dark); color: var(--text-on-dark);
  padding-block: clamp(48px, 6vw, 88px) clamp(48px, 6vw, 80px); position: relative; overflow: hidden;
}
.page-head::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(760px 420px at 6% 0%, rgba(78, 114, 104, .36), transparent 68%);
}
.page-head .wrap { position: relative; }
.page-head h1 { color: var(--mp-white); margin-bottom: var(--space-3); max-width: 17ch; }
.page-head p:not(.eyebrow):not(.breadcrumb) { color: var(--text-on-dark-soft); max-width: 58ch; font-size: 1.1rem; line-height: 1.68; }

.breadcrumb { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .42); margin-bottom: var(--space-4); }
.breadcrumb a { color: rgba(255, 255, 255, .7); text-decoration: none; }
.breadcrumb a:hover { color: var(--mp-amber); }

/* -------------------------------------------------------------- footer -- */

.site-footer { background: var(--bg-dark); color: var(--text-on-dark); padding-block: var(--space-6) var(--space-4); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--space-5) var(--space-4); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer img.footer-logo { width: 190px; margin-bottom: var(--space-3); }
.site-footer p, .site-footer li, .site-footer address {
  color: rgba(255, 255, 255, .62); font-size: .92rem; font-style: normal; line-height: 1.7;
}
.site-footer h4 {
  color: rgba(255, 255, 255, .55); font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: var(--space-3);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.site-footer a:hover { color: var(--mp-amber); }

.credentials {
  display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-4); margin-top: var(--space-4);
  padding-top: var(--space-3); border-top: 1px solid rgba(255, 255, 255, .12);
  font-family: var(--font-body); font-size: .74rem; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}

.footer-bottom {
  margin-top: var(--space-6); padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: space-between;
  font-size: .84rem; color: rgba(255, 255, 255, .45);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* --------------------------------------------------------------- misc -- */

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

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--space-4); }
.stat { padding-top: var(--space-3); border-top: 1px solid rgba(255, 255, 255, .16); }
.stat .stat-num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 400; line-height: 1;
  letter-spacing: -.03em; color: var(--mp-amber);
}
.stat .stat-label { font-size: .87rem; color: rgba(255, 255, 255, .58); margin-top: 10px; line-height: 1.5; }

/* A quiet pull-quote for the founder's voice. */
.pullquote {
  border-left: 1px solid var(--mp-amber); padding-left: var(--space-4);
  font-family: var(--font-display); font-size: clamp(1.3rem, 1.05rem + 1.05vw, 1.75rem);
  line-height: 1.44; letter-spacing: -.018em; font-weight: 400; color: var(--text-primary);
  margin: 0;
}
.pullquote cite {
  display: block; margin-top: var(--space-3); font-family: var(--font-body);
  font-size: .8rem; font-style: normal; letter-spacing: .13em; text-transform: uppercase;
  color: var(--text-muted);
}
.section--dark .pullquote { color: var(--mp-white); }
.section--dark .pullquote cite { color: rgba(255, 255, 255, .5); }

/* ------------------------------------------------------------ services -- */
/* Editorial rows rather than boxes: a hairline, an italic index, and room. */

.service-block { padding-block: clamp(38px, 4.6vw, 68px); border-top: 1px solid var(--border); }
.service-block:first-of-type { border-top: 0; padding-top: 0; }

.service-inner { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(28px, 4vw, 68px); align-items: start; }
@media (max-width: 820px) { .service-inner { grid-template-columns: 1fr; } }

.service-index {
  display: block; font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1rem; color: var(--mp-amber); margin-bottom: var(--space-2); letter-spacing: .03em;
}
.service-block h2 { font-size: clamp(1.6rem, 1.18rem + 1.5vw, 2.15rem); margin-bottom: 10px; }
.service-tag {
  font-family: var(--font-display); font-style: italic; font-size: 1.1rem;
  color: var(--mp-sage); margin-bottom: var(--space-3); line-height: 1.45;
}
.service-block p { color: #46534F; }

.service-aside h3 {
  font-family: var(--font-body); font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--mp-sage);
  margin-bottom: var(--space-3);
}
.service-list { list-style: none; padding: 0; margin: 0 0 var(--space-4); }
.service-list li {
  margin: 0; padding: 11px 0; border-bottom: 1px solid var(--border);
  font-size: .92rem; line-height: 1.6; color: var(--text-secondary);
}
.service-list li:first-child { border-top: 1px solid var(--border); }

/* ---------------------------------------------------------- field hints -- */
/* Resolved city/state under a ZIP field, and any soft warning beside it.
   Sits between the input and .error-text so validation still reads last. */

.field-hint {
  display: none; margin-top: 6px;
  font-size: .82rem; line-height: 1.5; color: var(--text-secondary);
}
.field-hint.is-ok, .field-hint.is-warn { display: block; }
.field-hint.is-ok {
  color: var(--mp-sage); font-weight: 500;
}
/* A tick, not a chevron: a tall narrow box with two borders, rotated. */
.field-hint.is-ok::before {
  content: ""; display: inline-block; width: 5px; height: 9px; margin-right: 8px;
  border-right: 1.5px solid var(--mp-sage); border-bottom: 1.5px solid var(--mp-sage);
  transform: rotate(45deg) translate(-1px, -1px);
}
.field-hint.is-warn { color: #8A6A1F; }

/* A field that resolved successfully gets a quiet sage edge. */
.field:has(.field-hint.is-ok) input { border-color: var(--mp-sage); }
