/* ============================================================
   UNLEVERED — Shared marketing primitives
   ------------------------------------------------------------
   Canonical home for cross-page marketing primitives:
   container, marketing nav, footer, deliverables band.

   Linked by every marketing page (index, about, contact,
   estimate, faq, for-tax-professionals, how-it-works, pricing,
   sample-study, security, str-calculator).

   Page-specific layout (hero, cutaway mount, ptype, platform,
   faq sections) lives in site.css. App-shell primitives
   (.nav, etc.) live in components.css.

   Locked 2026-05-22 per design audit (see 04_BRANDING.md §13.x
   CSS ownership).
   ============================================================ */

/* ---------- CONTAINER ---------- */
.site-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- MARKETING NAV (canonical) ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--ulv-stone-25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-default);
}
[data-theme="dark"] .site-nav { background: rgba(11,22,18,0.92); }
.nav-inner {
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-brand { display: inline-flex; }
.nav-links {
  display: flex; gap: 24px;
  font-size: var(--type-body-md);
  color: var(--text-secondary);
}
.nav-links a { color: inherit; text-decoration: none; }
.nav-links a:hover { color: var(--text-primary); text-decoration: none; }
.nav-cta { display: flex; gap: 10px; align-items: center; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .btn--ghost { display: none; }
  .nav-cta .btn { padding: 0 14px; height: 36px; font-size: 13px; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--surface-canvas);
  border-top: 1px solid var(--border-subtle);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-col h5 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-tertiary); font-weight: 500;
  margin-bottom: 14px;
}
.footer-col a { display: block; color: var(--text-secondary); font-size: var(--type-body-md); padding: 4px 0; text-decoration: none; }
.footer-col a:hover { color: var(--text-primary); text-decoration: none; }
.footer-blurb {
  color: var(--text-secondary);
  font-size: var(--type-body-md);
  line-height: 1.55;
  margin: 16px 0 0;
  max-width: 36ch;
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  font-size: var(--type-body-sm);
  color: var(--text-tertiary);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ---------- PRICING DELIVERABLES BAND ---------- */
/* Replaces prior misuse of .footer-grid / .footer-col on
   pricing.html. Use these for any "cards in a row" pattern
   on marketing pages. */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.deliverable-card {
  background: var(--surface-raised);
  border: 1px solid var(--border-default);
  padding: 28px;
}
.deliverable-card h3 {
  font-size: var(--type-body-lg);
  margin: 0 0 12px;
  color: var(--text-primary);
}
.deliverable-card p {
  color: var(--text-secondary);
  font-size: var(--type-body-md);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 880px) {
  .deliverables-grid { grid-template-columns: 1fr; gap: 16px; }
}
