/* ============================================
   Ross Medical Supplies LLC — Federal Capabilities Site
   Static, server-readable, accessible.
   ============================================ */

:root {
  --dg: #0D2B1E;      /* deep forest */
  --mg: #1A5E3A;      /* mid green */
  --lg: #2E7D52;      /* leaf */
  --moss: #3A7D52;
  --gold: #C8992A;    /* accent */
  --gold-lt: #E4B84A;
  --cream: #F6F8F5;
  --paper: #FFFFFF;
  --ink: #16211B;
  --ink-soft: #43514A;
  --line: #DDE7E0;
  --mint: #EAF3ED;
  --shadow: 0 1px 3px rgba(13,43,30,.06), 0 8px 24px rgba(13,43,30,.06);
  --shadow-lg: 0 2px 6px rgba(13,43,30,.08), 0 20px 48px rgba(13,43,30,.12);
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; margin: 0; }

a { color: var(--mg); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--dg); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand-logo { height: 42px; width: auto; }
.site-nav { display: flex; gap: 30px; }
.site-nav a {
  color: var(--ink); font-weight: 500; font-size: 15px; letter-spacing: .01em;
  padding: 6px 0; border-bottom: 2px solid transparent; text-decoration: none;
}
.site-nav a:hover { color: var(--mg); border-bottom-color: var(--gold); }
.site-nav a.active { color: var(--mg); border-bottom-color: var(--mg); }

/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(46,125,82,.14), transparent 60%),
    linear-gradient(180deg, var(--cream), var(--paper));
  padding: 78px 0 64px;
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.35fr .9fr; gap: 54px; align-items: center; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: 12.5px; font-weight: 700;
  color: var(--mg); margin: 0 0 18px;
}
.eyebrow.center { text-align: center; }
.hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.35rem); color: var(--dg); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--mg); }
.lede { font-size: 1.15rem; color: var(--ink-soft); margin: 0 0 30px; max-width: 40ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block; font-weight: 600; font-size: 15px; padding: 13px 26px;
  border-radius: 100px; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 1.5px solid transparent; cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--mg); color: #fff; box-shadow: 0 6px 18px rgba(26,94,58,.28); }
.btn-primary:hover { background: var(--dg); }
.btn-ghost { border-color: var(--mg); color: var(--mg); background: transparent; }
.btn-ghost:hover { background: var(--mint); }
.btn-light { background: #fff; color: var(--dg); }
.btn-light:hover { background: var(--cream); }

/* hero card */
.hero-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 30px 12px; box-shadow: var(--shadow-lg); position: relative;
}
.hero-card::before {
  content: ""; position: absolute; left: 0; top: 26px; bottom: 26px; width: 4px;
  background: linear-gradient(var(--mg), var(--gold)); border-radius: 0 4px 4px 0;
}
.card-title {
  font-family: "Inter", sans-serif; font-size: 12.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--moss); margin: 0 0 18px;
}
.facts { margin: 0; }
.facts > div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.facts > div:last-child { border-bottom: 0; }
.facts dt { color: var(--ink-soft); font-size: 14px; }
.facts dd { margin: 0; font-weight: 700; color: var(--dg); font-size: 15px; letter-spacing: .01em; }

/* ---------- TRUST STRIP ---------- */
.trust { background: var(--dg); color: #fff; }
.trust-inner {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap; padding: 16px 24px; text-align: center;
}
.trust-item { font-size: 14px; font-weight: 600; letter-spacing: .02em; color: #EAF3ED; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ---------- SECTIONS ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-title { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--dg); margin-bottom: 20px; }
.section-title.center { text-align: center; }
.mission-text { font-size: 1.12rem; color: var(--ink-soft); text-align: center; margin: 0; }

/* ---------- CARDS ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-num {
  font-family: "Fraunces", serif; font-size: 1.5rem; font-weight: 600; color: var(--gold);
  margin-bottom: 14px;
}
.card h3 { font-size: 1.28rem; color: var(--dg); margin-bottom: 12px; }
.card p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.stat { padding: 26px 20px; border-left: 3px solid var(--gold); background: var(--mint); border-radius: var(--radius-sm); }
.stat-num { display: block; font-family: "Fraunces", serif; font-size: 2.6rem; font-weight: 700; color: var(--mg); line-height: 1; margin-bottom: 12px; }
.stat-label { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- CTA BANNER ---------- */
.cta-banner { background: linear-gradient(120deg, var(--dg), var(--mg)); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 54px 24px; flex-wrap: wrap; }
.cta-banner h2 { font-size: 1.8rem; margin-bottom: 8px; }
.cta-banner p { margin: 0; color: #D9EBE0; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--dg); color: #C9D9CF; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; }
.footer-logo { height: 46px; background: #fff; padding: 8px 12px; border-radius: 8px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; letter-spacing: .04em; color: var(--gold-lt); margin: 0; }
.footer-col h3 { font-family: "Inter", sans-serif; font-size: 12.5px; text-transform: uppercase; letter-spacing: .12em; color: #fff; margin: 0 0 14px; }
.footer-col a, .footer-col p { display: block; color: #C9D9CF; font-size: 14.5px; margin: 0 0 9px; }
.footer-col a:hover { color: #fff; }
.footer-legal {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
}
.footer-legal p { margin: 0; font-size: 13px; color: #9DB3A6; }

/* ---------- INNER PAGE HEADER ---------- */
.page-hero { background: linear-gradient(180deg, var(--cream), var(--paper)); padding: 62px 0 40px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--dg); margin-bottom: 14px; }
.page-hero p { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; margin: 0; }

/* ---------- CAPABILITY TABLES ---------- */
.spec-table { width: 100%; border-collapse: collapse; margin: 8px 0 10px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-table caption { text-align: left; font-family: "Fraunces", serif; font-size: 1.25rem; color: var(--dg); margin-bottom: 14px; font-weight: 600; }
.spec-table th, .spec-table td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: 15px; }
.spec-table th { background: var(--dg); color: #fff; font-weight: 600; font-size: 13.5px; letter-spacing: .02em; }
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table tbody tr:nth-child(even) td, .spec-table tr:nth-child(even) td { background: var(--cream); }
.spec-table td:first-child { font-weight: 600; color: var(--dg); white-space: nowrap; }

.block { margin-bottom: 44px; }
.block:last-child { margin-bottom: 0; }

.lead-list { list-style: none; padding: 0; margin: 18px 0 0; }
.lead-list li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 15.5px; }
.lead-list li:last-child { border-bottom: 0; }
.lead-list li::before { content: ""; position: absolute; left: 4px; top: 18px; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.lead-list li strong { color: var(--dg); }

/* two-column prose */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 10px; }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.contact-card h2 { font-size: 1.3rem; color: var(--dg); margin-bottom: 18px; }
.contact-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row .k { color: var(--ink-soft); font-size: 14.5px; }
.contact-row .v { font-weight: 600; color: var(--dg); font-size: 14.5px; text-align: right; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 14px; }
  .brand-logo { height: 34px; }
  .hero { padding: 52px 0 44px; }
  .section { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .header-inner { height: 62px; }
}
