/* =================================================================
   VendStop LLC — Global Stylesheet
   "Satisfying Cravings, Simplifying Moments."
   -----------------------------------------------------------------
   Sections:
     1. Design tokens (CSS variables)
     2. Base / reset
     3. Layout helpers
     4. Buttons
     5. Header / navigation
     6. Hero
     7. Sections, cards, grids
     8. Forms
     9. FAQ / accordion
    10. Footer
    11. Page-specific bits
    12. Responsive / mobile
   ================================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand palette: dark navy, black, white, silver + gold/teal/red accents */
  --navy:        #0b1a2f;
  --navy-deep:   #07111f;
  --navy-soft:   #122742;
  --black:       #050a12;
  --white:       #ffffff;
  --silver:      #c9d2dd;
  --silver-soft: #eef2f7;
  --slate:       #5b6b80;

  --gold:        #f5b942;   /* primary accent */
  --gold-deep:   #d99a1f;
  --teal:        #1fb6a6;   /* secondary accent */
  --red:         #e2473d;   /* alert / highlight accent */

  --ink:         #1a2230;   /* body text on light */
  --ink-soft:    #50607a;

  --bg:          #ffffff;
  --bg-alt:      #f4f7fb;
  --card-bg:     #ffffff;
  --border:      #e2e8f1;

  --radius:      16px;
  --radius-sm:   10px;
  --shadow-sm:   0 2px 8px rgba(11, 26, 47, 0.06);
  --shadow:      0 10px 30px rgba(11, 26, 47, 0.10);
  --shadow-lg:   0 24px 60px rgba(11, 26, 47, 0.18);

  --maxw:        1180px;
  --gap:         28px;

  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --transition: 0.25s ease;
}

/* ---------- 2. Base / reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.5em; color: var(--navy); }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; }

ul { margin: 0; padding: 0; }

/* ---------- 3. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: var(--silver-soft); }
.section--navy h2, .section--navy h3 { color: var(--white); }

.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section--navy .section-head p { color: var(--silver); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--gold); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold   { background: var(--gold); color: var(--navy-deep); box-shadow: 0 8px 20px rgba(245,185,66,0.35); }
.btn--gold:hover { background: var(--gold-deep); }

.btn--teal   { background: var(--teal); color: var(--white); box-shadow: 0 8px 20px rgba(31,182,166,0.30); }
.btn--teal:hover { background: #18988b; }

.btn--dark   { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--navy-soft); }

.btn--ghost  { background: transparent; color: var(--navy); border-color: var(--silver); }
.btn--ghost:hover { border-color: var(--navy); }

.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: 0.88rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* ---------- 5. Header / navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__name, .brand__sub { white-space: nowrap; }
.brand__mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  display: grid; place-items: center;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__name { font-weight: 800; font-size: 1.15rem; color: var(--navy); letter-spacing: -0.01em; }
.brand__sub  { font-size: 0.68rem; color: var(--ink-soft); letter-spacing: 0.04em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover { background: var(--bg-alt); color: var(--navy); }
.nav-links a.active { color: var(--gold-deep); }
.nav-links .nav-cta a {
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
}
.nav-links .nav-cta a:hover { background: var(--gold); color: var(--navy-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: var(--transition);
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 80% -10%, var(--navy-soft) 0%, var(--navy) 45%, var(--navy-deep) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  /* subtle vending-grid texture overlay */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(900px 500px at 75% 0%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  padding: 90px 0 100px;
}
.hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,185,66,0.14);
  color: var(--gold);
  border: 1px solid rgba(245,185,66,0.3);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero__tagline { color: var(--gold); font-weight: 600; font-style: italic; margin-bottom: 18px; }
.hero__lead { color: var(--silver); font-size: 1.08rem; max-width: 560px; margin-bottom: 28px; }
.hero .btn-row { margin-bottom: 30px; }

.hero__highlights { list-style: none; display: grid; gap: 12px; max-width: 560px; }
.hero__highlights li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--silver-soft); font-size: 0.98rem;
}
.hero__highlights .check {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: grid; place-items: center;
  font-size: 0.7rem; margin-top: 2px;
}
.hero__trust {
  margin-top: 26px;
  font-size: 0.85rem;
  color: var(--silver);
  letter-spacing: 0.03em;
}
.hero__trust b { color: var(--gold); }

/* Hero art: stylized vending machine */
.hero__art {
  display: grid;
  place-items: center;
}
.vending {
  width: 100%;
  max-width: 340px;
  background: linear-gradient(160deg, #16304f, #0c1d33);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
}
.vending__screen {
  background: rgba(245,185,66,0.1);
  border: 1px solid rgba(245,185,66,0.25);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 16px;
}
.vending__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.vending__slot {
  aspect-ratio: 1;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid; place-items: center;
  font-size: 1.6rem;
  transition: transform var(--transition), background var(--transition);
}
.vending__slot:hover { transform: translateY(-3px); background: rgba(245,185,66,0.14); }
.vending__tray {
  margin-top: 14px;
  height: 14px;
  border-radius: 6px;
  background: rgba(0,0,0,0.4);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.6);
}

/* ---------- 7. Sections / cards / grids ---------- */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d3deeb; }

.card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold);
}
.card__icon svg { width: 28px; height: 28px; }
.card__icon--teal { background: linear-gradient(135deg, var(--teal), #14887c); color: #fff; }
.card__icon--gold { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--navy-deep); }
.card__icon--red  { background: linear-gradient(135deg, var(--red), #b8362e); color: #fff; }

.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); margin-bottom: 0; font-size: 0.96rem; }
.card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-weight: 700; font-size: 0.9rem; color: var(--gold-deep);
}
.card__link:hover { gap: 10px; }

/* Lane / category card with image area */
.lane-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.lane-card__media {
  /* COMMENT: replace background with a real <img> or set background-image */
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  display: grid; place-items: center;
  color: var(--gold);
  position: relative;
}
.lane-card__media svg { width: 56px; height: 56px; opacity: 0.95; }
.lane-card__media .tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(5,10,18,0.55); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 5px 10px; border-radius: 999px;
}
.lane-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.lane-card__body p { color: var(--ink-soft); font-size: 0.94rem; flex: 1; }

/* Product card (storefront) */
.product-card { padding: 0; overflow: hidden; }
.product-card__media {
  /* COMMENT: replace with real product <img> — WooCommerce product thumbnail */
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--silver-soft), #dde6f1);
  display: grid; place-items: center; color: var(--navy-soft);
  position: relative;
}
.product-card__media svg { width: 64px; height: 64px; opacity: 0.85; }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy-deep);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: 999px;
}
.product-card__body { padding: 18px 20px 22px; }
.product-card__body h3 { font-size: 1.05rem; margin-bottom: 4px; }
.product-card__cat { font-size: 0.78rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.06em; }
.product-card__price { font-weight: 800; color: var(--navy); margin: 10px 0 14px; font-size: 1.15rem; }

/* Stat / trust row */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat__num { font-size: 2.2rem; font-weight: 800; color: var(--gold); }
.stat__label { font-size: 0.9rem; color: var(--silver); }

/* Split feature (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split__art {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  color: var(--gold);
  box-shadow: var(--shadow);
}
.split__art svg { width: 96px; height: 96px; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border-radius: var(--radius);
  padding: 56px;
  text-align: center;
  color: var(--white);
  position: relative; overflow: hidden;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: var(--silver); max-width: 640px; margin: 0 auto 28px; }

/* Snack box builder */
.snack-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.snack-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.snack-card__emoji { font-size: 2.4rem; }
.snack-card h3 { font-size: 1.05rem; margin: 10px 0 14px; }
.qty {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 8px;
}
.qty button {
  width: 32px; height: 32px; border-radius: 50%;
  border: none; cursor: pointer;
  background: var(--navy); color: #fff; font-size: 1.1rem; font-weight: 700;
  display: grid; place-items: center;
  transition: background var(--transition);
}
.qty button:hover { background: var(--gold); color: var(--navy-deep); }
.qty output { min-width: 24px; font-weight: 800; color: var(--navy); }
.snack-summary {
  margin-top: 34px; text-align: center;
  background: var(--bg-alt); border: 1px dashed var(--border);
  border-radius: var(--radius); padding: 24px;
}
.snack-summary strong { color: var(--navy); font-size: 1.2rem; }

.note {
  background: rgba(31,182,166,0.08);
  border-left: 4px solid var(--teal);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 24px;
}

/* ---------- 8. Forms ---------- */
.form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,185,66,0.2);
}
.form__note { font-size: 0.82rem; color: var(--slate); margin-top: 14px; }
.form-success {
  display: none;
  background: rgba(31,182,166,0.12);
  border: 1px solid var(--teal);
  color: #0f6f64;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-bottom: 18px;
}
.form-success.show { display: block; }
.form-success.is-error {
  background: rgba(226, 71, 61, 0.12);
  border-color: var(--red);
  color: #a3271f;
}

/* ---------- 9. FAQ / accordion ---------- */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  padding: 20px 22px;
  font-size: 1.02rem; font-weight: 700; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .icon { transition: transform var(--transition); color: var(--gold-deep); flex-shrink: 0; font-size: 1.4rem; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq-a p { padding: 0 22px 20px; color: var(--ink-soft); margin: 0; }

/* ---------- 10. Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--silver);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .brand__name { color: #fff; }
.footer-brand .footer-tag { color: var(--gold); font-style: italic; margin: 14px 0 10px; }
.footer-brand p { font-size: 0.92rem; color: var(--silver); max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: 0.92rem; color: var(--silver); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem; color: var(--slate);
}

/* ---------- 11. Page-specific bits ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: #fff;
  padding: 70px 0 64px;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: var(--silver); max-width: 660px; margin: 0 auto; font-size: 1.08rem; }
.page-hero .eyebrow { color: var(--gold); }
.breadcrumb { font-size: 0.85rem; color: var(--silver); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--gold); }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--silver-soft);
  padding: 7px 16px; border-radius: 999px; font-size: 0.86rem; font-weight: 600;
}

.book-card { display: flex; gap: 18px; }
.book-card__cover {
  /* COMMENT: replace with real Amazon KDP cover image */
  width: 120px; height: 168px; flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), #14887c);
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow);
}
.book-card__cover svg { width: 44px; height: 44px; }

.value-list { list-style: none; display: grid; gap: 14px; }
.value-list li { display: flex; gap: 12px; align-items: flex-start; }
.value-list .dot {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
  background: rgba(245,185,66,0.16); color: var(--gold-deep);
  display: grid; place-items: center; font-weight: 800; font-size: 0.8rem;
}

/* Reveal-on-scroll animation.
   No-JS-safe: elements are fully visible by default; script.js adds .in to
   animate them in. If JavaScript is disabled, content simply shows — important
   for accessibility audits and screen readers. */
.reveal.in { animation: revealIn 0.6s ease both; }
@keyframes revealIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Accessibility ---------- */
/* Visible keyboard focus indicator (Section 508 / WCAG 2.4.7) */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
.hero :focus-visible,
.section--navy :focus-visible,
.page-hero :focus-visible,
.cta-banner :focus-visible { outline-color: var(--gold); }

/* Skip-to-content link — visible only when focused */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 8px;
  transition: top var(--transition);
}
.skip-link:focus { top: 12px; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .reveal.in { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------- Capability statement: spec table ---------- */
.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.specs > div {
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
}
.specs > div:nth-child(odd) { border-right: 1px solid var(--border); }
.specs dt {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--slate);
  font-weight: 700;
}
.specs dd { margin: 5px 0 0; font-weight: 700; color: var(--navy); }
@media (max-width: 620px) {
  .specs { grid-template-columns: 1fr; }
  .specs > div:nth-child(odd) { border-right: none; }
}

/* ---------- Print styles (clean capability-statement printout) ---------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .skip-link,
  [data-print], .btn-row, .cta-banner .btn-row { display: none !important; }
  body { color: #000; }
  .page-hero, .section--navy, .section--alt, .cta-banner {
    background: #fff !important; color: #000 !important;
  }
  .page-hero h1, .cta-banner h2, .section--navy h2, .section--navy h3 { color: #000 !important; }
  .section { padding: 18px 0; }
  .card, .specs { box-shadow: none; border-color: #999; }
  a { color: #000; text-decoration: underline; }
}

/* ---------- 12. Responsive ---------- */
/* The full nav has 10 items — collapse to a hamburger earlier (tablet) so
   it never crowds into an overflowing single row. */
@media (max-width: 1180px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 14px 18px 22px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .nav-links .nav-cta a { text-align: center; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 300px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .snack-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .cta-banner { padding: 36px 24px; }
  .book-card { flex-direction: column; }
  .book-card__cover { width: 110px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 460px) {
  .stats { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .btn-row.center .btn { width: 100%; }
}
