/* Coast to Coast National Accounts — site styles. Edit the tokens below to retune the palette. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/inter-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/inter-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-latin-700-normal.woff2") format("woff2");
}

:root {
  --navy: #1b3557;
  --navy-deep: #10223a;
  --blue: #2f6db5;
  --blue-dark: #245a97;
  --blue-tint: #e8f0fa;
  --ink: #1c2430;
  --muted: #5b6675;
  --line: #dfe4ea;
  --bg-alt: #f5f7fa;
  --white: #ffffff;
  --radius: 10px;
  --container: 1120px;
  --narrow: 760px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.6; color: var(--ink); background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.2; margin: 0 0 0.6em; letter-spacing: -0.015em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); }
h3 { font-size: 1.15rem; }
.h4, h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 600; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
address { font-style: normal; }
ul, ol { padding-left: 1.2em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: var(--narrow); }
.section-head.narrow { max-width: var(--narrow); margin-bottom: 40px; }
.center { text-align: center; margin-top: 32px; }
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; font-weight: 600; color: var(--blue); margin-bottom: 14px; }
.lede { font-size: 1.2rem; color: var(--muted); max-width: 46rem; line-height: 1.55; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 6px; z-index: 100; }
.skip-link:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

/* Buttons */
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; line-height: 1.2;
  border: 2px solid transparent; cursor: pointer; text-decoration: none !important; transition: background .15s, color .15s, border-color .15s;
  font-family: inherit;
}
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-sm { padding: 9px 16px; font-size: 0.9rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.link-btn { background: none; border: 0; padding: 0; color: var(--blue-dark); font: inherit; cursor: pointer; text-decoration: underline; }
.ext { font-size: 0.8em; margin-left: 4px; }

/* Header */
.site-header { border-bottom: 1px solid var(--line); background: #fff; position: relative; z-index: 20; }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 24px; }
.brand img { height: 54px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: var(--ink); font-weight: 500; font-size: 0.95rem; }
.site-nav a[aria-current="page"]:not(.btn) { color: var(--blue-dark); font-weight: 600; }
.site-nav a:hover { text-decoration: none; color: var(--blue-dark); }
.site-nav .btn { color: #fff; }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  display: block; width: 24px; height: 2px; background: var(--navy); position: relative; transition: transform .2s;
}
.nav-toggle-bar::before, .nav-toggle-bar::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bar::before { top: -7px; } .nav-toggle-bar::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: translateY(-7px) rotate(-45deg); }

/* Hero + bands */
.hero {
  padding: 104px 0 88px; color: #fff;
  background:
    radial-gradient(ellipse 55% 85% at 88% 8%, rgba(96,156,220,.30), transparent 58%),
    radial-gradient(ellipse 45% 70% at 64% 108%, rgba(47,109,181,.22), transparent 62%),
    linear-gradient(140deg, #0d1e34 0%, #1b3557 58%, #22497c 100%);
}
.hero .eyebrow { color: #8fb7e8; }
.hero h1 { max-width: 16em; color: #fff; }
.hero .lede { color: rgba(255,255,255,.82); }
.hero .btn-primary { background: #fff; color: var(--navy); border-color: #fff; }
.hero .btn-primary:hover { background: var(--blue-tint); border-color: var(--blue-tint); }
.hero .btn-secondary { color: #fff; border-color: rgba(255,255,255,.65); }
.hero .btn-secondary:hover { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; }
.fact-band { background: var(--bg-alt); color: var(--navy); border-bottom: 1px solid var(--line); padding: 15px 0; font-size: 0.92rem; font-weight: 600; }
.fact-band .container { display: flex; flex-wrap: wrap; gap: 10px 40px; }
.fact-band span { position: relative; }
.fact-band span + span::before { content: ""; position: absolute; left: -22px; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--blue); opacity: .5; transform: translateY(-50%); }

.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-tight { padding: 32px 0 80px; }
.page-head { padding: 64px 0 44px; background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%); }
.page-head h1 { max-width: 18em; }
.section-cta {
  background:
    radial-gradient(ellipse 50% 90% at 15% 0%, rgba(96,156,220,.22), transparent 60%),
    var(--navy-deep);
  color: #fff; text-align: center; padding: 88px 0;
}
.section-cta h2, .section-cta p { color: #fff; }
.section-cta p { max-width: 40rem; margin-left: auto; margin-right: auto; opacity: .9; }
.section-cta .cta-row { justify-content: center; }
.section-cta .btn-primary { background: #fff; color: var(--navy); border-color: #fff; }
.section-cta .btn-primary:hover { background: var(--blue-tint); border-color: var(--blue-tint); }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.steps-5 { grid-template-columns: repeat(5, 1fr); }
.steps li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--blue-tint); color: var(--blue-dark); font-weight: 700; font-size: 0.9rem; margin-bottom: 14px; }
.steps h3 { font-size: 1.1rem; margin-bottom: 8px; }
.steps p { font-size: 0.95rem; color: var(--muted); }

/* Cards */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.98rem; }
.section-alt .card { border-color: transparent; box-shadow: 0 1px 2px rgba(16,34,58,.06); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar { border-top: 3px solid var(--blue); padding-top: 22px; }
.pillar h2 { font-size: 1.5rem; }
.pillar p { color: var(--muted); font-size: 0.98rem; }
.pillar .eyebrow { margin-bottom: 8px; }

/* Vendor info */
.vendor-info { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.vendor-info > div { display: grid; grid-template-columns: 180px 1fr; gap: 16px; padding: 14px 20px; border-top: 1px solid var(--line); }
.vendor-info > div:first-child { border-top: 0; }
.vendor-info dt { font-weight: 600; color: var(--navy); font-size: 0.92rem; }
.vendor-info dd { margin: 0; color: var(--ink); font-size: 0.98rem; }

/* Logo wall + tiles */
.logo-wall { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.logo-tile { display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 14px; aspect-ratio: 3 / 2; overflow: hidden; }
a.logo-tile:hover { border-color: var(--blue); text-decoration: none; }
.logo-tile img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.logo-text { font-weight: 600; color: var(--navy); font-size: 0.85rem; text-align: center; line-height: 1.25; }
.logo-md { aspect-ratio: auto; height: 130px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: #fafbfc; padding: 22px; }
.logo-md .logo-text { font-size: 1.05rem; }
.logo-lg { width: 240px; height: 150px; aspect-ratio: auto; flex: none; }
.logo-lg .logo-text { font-size: 1.1rem; }

/* Line card filters */
.utility { margin-top: 8px; font-weight: 500; }
.filter-bar { display: grid; grid-template-columns: 1fr auto; gap: 16px 24px; align-items: center; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 999px; padding: 7px 14px; font: inherit; font-size: 0.9rem; font-weight: 500; cursor: pointer; }
.chip:hover { border-color: var(--navy); }
.chip.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.search-wrap input { width: min(100%, 360px); padding: 11px 14px; border: 1px solid var(--line); border-radius: 8px; font: inherit; font-size: 0.95rem; }
.filter-status { grid-column: 1 / -1; display: flex; gap: 16px; align-items: center; font-size: 0.9rem; color: var(--muted); }
.cat-intro { color: var(--muted); margin-bottom: 20px; max-width: 60rem; }
.mfr-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.mfr-card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; display: flex; flex-direction: column; }
.mfr-card[hidden] { display: none; }
.mfr-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.mfr-body h3 { font-size: 1.08rem; margin: 0; }
.mfr-body h3 a { color: var(--navy); }
.mfr-body p { font-size: 0.93rem; color: var(--muted); flex: 1; }
.tags { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.tags li { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; color: var(--blue-dark); background: var(--blue-tint); padding: 3px 8px; border-radius: 4px; }
.mfr-links { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 0.9rem; font-weight: 500; }
.empty-state { color: var(--muted); padding: 40px 0; }
.breadcrumb { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }
.mfr-hero { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.mfr-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 8px; }
.mfr-hero .tags { margin-top: 12px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-direct address { margin-bottom: 16px; }
.contact-phones { margin-bottom: 12px; }
.phone-label { color: var(--muted); font-weight: 500; }
.contact-emails { margin: 0 0 16px; display: grid; gap: 6px; }
.contact-emails > div { display: grid; grid-template-columns: 78px 1fr; gap: 10px; align-items: baseline; }
.contact-emails dt { color: var(--muted); font-size: 0.85rem; font-weight: 500; }
.contact-emails dd { margin: 0; font-size: 0.95rem; word-break: break-word; }
.footer-emails { margin-bottom: 8px; font-size: 0.88rem; }
.footer-emails div { margin-bottom: 3px; word-break: break-word; }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--navy); }
.field input, .field select, .field textarea { width: 100%; padding: 11px 13px; border: 1px solid #c9d1db; border-radius: 8px; font: inherit; font-size: 1rem; background: #fff; color: var(--ink); }
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: 3px solid rgba(47,109,181,.2); outline-offset: 0; }
.field .req { color: var(--blue); }
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.cf-turnstile { margin-bottom: 16px; }
.form-status { margin-top: 14px; font-weight: 500; min-height: 1.4em; }
.form-status.is-error { color: #b42318; }
.form-status.is-success { color: #1a7f4b; }

/* Legal / prose */
.prose h2 { font-size: 1.2rem; margin-top: 32px; }
.prose h2:first-child { margin-top: 0; }

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.82); padding: 56px 0 28px; margin-top: 0; font-size: 0.93rem; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.5fr 0.7fr; gap: 32px; }
.footer-name { color: #fff; font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; }
.footer-phones { margin-bottom: 8px; }
.footer-phones div { margin-bottom: 2px; }
.site-footer .phone-label { color: rgba(255,255,255,.6); }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 20px; font-size: 0.85rem; color: rgba(255,255,255,.6); }

/* Responsive */
@media (max-width: 1000px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps-5 { grid-template-columns: repeat(3, 1fr); }
  .pillars { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 16px; box-shadow: 0 12px 24px rgba(16,34,58,.08); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .site-nav .btn { margin-top: 12px; text-align: center; border: 2px solid var(--blue); }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .filter-bar { grid-template-columns: 1fr; }
  .search-wrap input { width: 100%; }
  .vendor-info > div { grid-template-columns: 1fr; gap: 4px; }
  .contact-emails > div { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 56px 0; }
  .page-head { padding: 44px 0 28px; }
  .steps, .steps-5 { grid-template-columns: 1fr; }
  .lede { font-size: 1.08rem; }
  .fact-band span + span::before { display: none; }
  .fact-band .container { gap: 6px 24px; }
  .logo-wall { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .logo-lg { width: 100%; height: 130px; }
}

/* Print page (/line-card/print/) and printing the line card from the browser */
body.print-page { font-size: 11px; color: #111; background: #fff; }
.print-doc { max-width: 8.5in; margin: 0 auto; padding: 0.55in 0.6in; }
.print-head { display: flex; align-items: center; gap: 20px; border-bottom: 2px solid var(--navy); padding-bottom: 12px; margin-bottom: 14px; }
.print-logo { height: 54px; width: auto; }
.print-head h1 { font-size: 22px; margin: 0 0 4px; }
.print-head p { font-size: 10px; color: #444; margin: 0; }
.print-intro { color: #444; margin-bottom: 14px; }
.print-cat { margin-bottom: 18px; page-break-inside: auto; }
.print-cat h2 { font-size: 14px; margin: 14px 0 6px; border-bottom: 1px solid #ccc; padding-bottom: 3px; }
.print-count { font-weight: 500; color: #666; font-size: 11px; margin-left: 6px; }
.print-cat table { width: 100%; border-collapse: collapse; }
.print-cat th, .print-cat td { text-align: left; vertical-align: top; padding: 4px 6px; border-bottom: 1px solid #e6e6e6; font-size: 10px; }
.print-cat th { background: #f1f4f8; color: var(--navy); font-size: 9.5px; text-transform: uppercase; letter-spacing: .05em; }
.print-cat td:first-child { font-weight: 600; width: 22%; }
.print-cat td:last-child { width: 24%; color: #444; }
.print-parent { font-weight: 400; color: #777; }
.print-cat tr { page-break-inside: avoid; }
.print-foot { margin-top: 18px; font-size: 9px; color: #666; border-top: 1px solid #ccc; padding-top: 8px; }
@media print {
  @page { size: Letter; margin: 0.5in; }
  .print-doc { padding: 0; max-width: none; }
  .site-header, .site-footer, .filter-bar, .section-cta, .skip-link { display: none !important; }
}
