/* ===========================================================
   NNWI v5 — Mockup Styles
   Design tokens drawn from v5 sign-off doc + Jocelyn warmth.
   No framework. No build step. Open index.html in a browser.
   =========================================================== */

:root {
  /* Palette */
  --navy: #0d1b2a;
  --navy-mid: #162436;
  --navy-light: #1e3a52;
  --gold: #c9933a;
  --gold-light: #e8b96a;
  --gold-dark: #a87825;
  --cream: #f5f4f0;
  --cream-dark: #edecea;
  --white: #ffffff;
  --slate: #5a6677;
  --slate-dark: #3d4756;
  --border: #d4cfc8;
  --border-dark: #b8b2aa;
  --green: #047857;
  --green-bg: #d1fae5;
  --warn: #92400e;
  --warn-bg: #fef3c7;

  /* Type */
  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(13, 27, 42, 0.06);
  --shadow-md: 0 4px 16px rgba(13, 27, 42, 0.10);
  --shadow-lg: 0 12px 32px rgba(13, 27, 42, 0.14);
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  font-family: var(--font-b);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-dark); }

/* ── 1. INSTITUTIONAL TOP BAR ─────────────────────────────── */
.topbar {
  background: var(--navy);
  color: var(--cream);
  font-size: 12px;
  border-bottom: 1px solid var(--navy-mid);
}
.topbar-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 8px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.topbar-name { font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.topbar-tagline { color: rgba(245, 244, 240, 0.8); font-style: italic; }
@media (max-width: 768px) {
  .topbar-inner { flex-direction: column; gap: 4px; padding: 8px 16px; text-align: center; }
}

/* ── 2. HEADER / NAV — dark bar holding logo + nav + search + cart ── */
.header {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 12px 28px;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: nowrap;       /* prevent items from dropping to a second row */
  min-width: 0;
}
.brand {
  display: flex; align-items: center;
  flex-shrink: 0;          /* keep the logo from squeezing */
  min-width: 0;
}
/* Wide partnership-lockup logo — single image, no separate text */
.brand-lockup-img {
  display: block;
  height: 56px;            /* slim header — matches search/cart heights */
  width: auto;
  max-width: 320px;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.25));
}
.nav {
  display: flex; gap: 22px;
  flex: 1 1 auto;          /* nav fills available space, not fixed */
  justify-content: center;
  min-width: 0;
  white-space: nowrap;     /* don't wrap individual nav items */
}
.nav a {
  font-size: 14px; font-weight: 500;
  padding: 8px 4px;
  color: rgba(245, 244, 240, 0.88);
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.nav a:hover { border-color: var(--gold); color: var(--gold-light); }
.header-actions {
  display: flex; gap: 8px; align-items: center;
  flex-shrink: 0;          /* search + cart never shrink off-screen */
}

/* Intermediate desktop (1024–1279px): shrink everything so the
   nav + lockup + search + cart still fit on one line without clipping. */
@media (max-width: 1279px) {
  .header-inner { gap: 12px; padding: 12px 16px; }
  .nav { gap: 10px; }
  .nav a { font-size: 12.5px; letter-spacing: 0.04em; padding: 8px 2px; }
  .header-search-input { width: 130px; }
  .brand-lockup-img { height: 44px; max-width: 220px; }
}
/* Tighter still on smaller laptops (1024–1180px): make search border
   more visible against the navy header so it doesn't blend into the nav. */
@media (max-width: 1180px) and (min-width: 1025px) {
  .header-search {
    border-color: rgba(245, 244, 240, 0.40);
    background: rgba(255, 255, 255, 0.10);
  }
  .header-search-input { width: 110px; }
  .nav { gap: 8px; }
  .nav a { font-size: 12px; }
}
.icon-btn {
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(245, 244, 240, 0.30);
  border-radius: 6px; cursor: pointer;
  font-size: 18px;
  color: var(--cream);
}
.icon-btn:hover {
  background: rgba(245, 244, 240, 0.08);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ── HEADER CATALOGUE SEARCH ─────────────────────────────── */
.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;
}
.header-search {
  display: flex; align-items: stretch;
  height: 40px;
  border: 1px solid rgba(245, 244, 240, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.header-search:focus-within {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 0 0 2px rgba(201, 147, 58, 0.22);
}
.header-search-input {
  width: 160px;
  border: 0;
  padding: 0 12px;
  font-family: inherit;
  font-size: 13px;
  color: var(--cream);
  background: transparent;
  outline: none;
}
.header-search-input::placeholder {
  color: rgba(245, 244, 240, 0.55);
  font-style: italic;
}
.header-search-submit {
  width: 40px; min-width: 40px;
  border: 0;
  border-left: 1px solid rgba(245, 244, 240, 0.22);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 16px;
  transition: background 0.15s, color 0.15s;
}
.header-search-submit:hover {
  background: var(--gold);
  color: var(--navy);
}
/* Toggle icon-button is hidden on desktop — the inline input shows instead */
.header-search-toggle { display: none; }

/* Mobile / narrow header: collapse the input to an icon-button toggle.
   Below 1024px the primary nav is already hidden — keep the search compact. */
@media (max-width: 1024px) {
  .header-search {
    /* Hidden by default on mobile; revealed when toggle is clicked */
    display: none;
    position: absolute;
    top: 100%; left: 16px; right: 16px;
    height: 44px;
    z-index: 60;
    box-shadow: 0 8px 24px rgba(13, 27, 42, 0.14);
  }
  .header-search.is-open { display: flex; }
  .header-search-input { width: 100%; flex: 1; }
  .header-search-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-search-toggle.is-open { background: var(--cream-dark); }
  /* Make the header position-relative so the search drawer anchors correctly */
  .header { position: sticky; }
  .header .header-inner { position: relative; }
}
.cart-btn {
  height: 40px; padding: 0 18px;
  background: var(--gold); color: var(--navy);
  border: 0; border-radius: 6px; cursor: pointer;
  font-family: inherit; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.15s, transform 0.1s;
}
.cart-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
@media (max-width: 1024px) {
  .nav { display: none; }
}

/* ── 3. HERO ──────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 147, 58, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 80px 32px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
  align-items: center; position: relative;
}

/* Full-bleed banner variant — cityscape spans entire hero, text overlays */
.hero-banner {
  min-height: 640px;
  background: var(--navy); /* fallback if image fails */
  padding: 0;
  overflow: hidden;
}
.hero-banner-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* Anchor crop to the upper portion of the source image so the skyline
     is the focal point. For portrait-orientation sources, this also pushes
     the bottom edge off the visible frame — the AI watermark in the
     bottom-right of the source image is cropped naturally. */
  object-position: center 22%;
  display: block;
  z-index: 0;
}
.hero-banner-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(13, 27, 42, 0.85) 0%,
      rgba(13, 27, 42, 0.55) 45%,
      rgba(13, 27, 42, 0.10) 75%,
      rgba(13, 27, 42, 0.00) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-banner-fallback {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.hero-inner-banner {
  display: block !important;
  grid-template-columns: none !important;
  padding: 96px 32px !important;
  position: relative;
  z-index: 2;
}
.hero-inner-banner .hero-text {
  max-width: 640px;
}
@media (max-width: 900px) {
  .hero-banner { min-height: 480px; }
  .hero-inner-banner { padding: 64px 24px !important; }
  .hero-banner-overlay {
    background: linear-gradient(180deg,
      rgba(13, 27, 42, 0.75) 0%,
      rgba(13, 27, 42, 0.50) 100%);
  }
}
.eyebrow {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold-light); font-weight: 600;
  margin: 0 0 16px;
}
.hero h1 {
  font-family: var(--font-h);
  font-size: 52px; font-weight: 900; line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.hero .lede {
  font-size: 18px; color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px; max-width: 560px;
}
.slogan {
  font-family: var(--font-h);
  font-size: 22px; font-weight: 700; font-style: italic;
  color: var(--gold-light);
  margin: 0 0 32px;
}
.slogan sup { font-size: 0.5em; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 28px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: 4px; border: 0; cursor: pointer;
  transition: transform 0.1s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-secondary {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.08); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy); }
.hero-art {
  aspect-ratio: 4/5; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-light);
  position: relative;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art-fallback {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
}

/* Billboard composition: cityscape backdrop + NNWI logo overlaid on the billboard */
.hero-billboard {
  aspect-ratio: 16/10; /* matches the LA skyline billboard image */
}
.hero-billboard-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-billboard-logo {
  /*
   * Positioned to sit inside the billboard frame in the cityscape image.
   * Tweak top/left/width if the billboard area shifts in a different image.
   */
  position: absolute;
  top: 30%;
  left: 38%;
  width: 48%;
  height: auto;
  max-height: 36%;
  object-fit: contain;
  /* Slight glow so the logo reads against the lit billboard */
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.25));
  z-index: 2;
}
@media (max-width: 900px) {
  .hero-billboard { aspect-ratio: 16/10; max-width: 100%; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 56px 24px; }
  .hero h1 { font-size: 36px; }
  .hero-art { max-width: 480px; }
}

/* ── 4. TRUST STRIP ───────────────────────────────────────── */
.trust-strip {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  padding: 32px 32px;
}
.trust-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 32px;
  flex-wrap: wrap;
}
.trust-mark { max-height: 64px; width: auto; }
.trust-line {
  margin: 0;
  font-size: 14px; color: var(--slate-dark);
  font-weight: 500; letter-spacing: 0.03em;
}
.trust-slogan {
  margin: 0;
  font-family: var(--font-h);
  font-size: 18px; font-style: italic; font-weight: 700;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}
.trust-bridge {
  margin: 0;
  font-size: 13px;
  color: var(--slate-dark);
  font-style: italic;
  max-width: 460px;
  border-left: 2px solid var(--border-dark);
  padding-left: 14px;
  flex-basis: 100%;
  text-align: center;
  border-left: 0;
  padding: 0;
  margin-top: 8px;
}
.trust-bridge a {
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(168, 120, 37, 0.4);
}
.trust-bridge a:hover { border-bottom-color: var(--gold-dark); }
.trust-slogan sup { font-size: 0.55em; }

/* ── 4b. INSTALLATIONS / FIELD-USE GALLERY ────────────────── */
.installations { padding: 64px 32px; background: var(--white); }
.installations-inner { max-width: 1280px; margin: 0 auto; }
.eyebrow.center { text-align: center; }
.installations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 32px auto 0;
}
.installations-grid figure,
.installations-grid .figure-link {
  margin: 0;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--cream-dark);
  position: relative;
}
.installations-grid .figure-link figure {
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.installations-grid img {
  width: 100%;
  height: 220px;          /* fixed height — every tile reads the same */
  object-fit: cover;
  display: block;
}
.installations-grid figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(13,27,42,0.72) 0%, rgba(13,27,42,0.0) 70%);
  color: var(--white); font-size: 13px; font-weight: 500;
}
@media (max-width: 900px) {
  .installations-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .installations-grid img { height: 200px; }
}
@media (max-width: 600px) {
  .installations-grid { grid-template-columns: 1fr; }
  .installations-grid img { height: 220px; }
}

/* ── 5b. NIGHT VISIBILITY ────────────────────────────────── */
.night-vis {
  padding: 80px 32px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.nv-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px;
  align-items: center;
}
.nv-text .section-h, .nv-h { text-align: left; margin-bottom: 12px; }
.nv-h em { color: var(--gold-dark); font-style: italic; }
.nv-text .section-lede, .nv-lede { text-align: left; margin: 0; }
.nv-compare {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px;
}
@media (max-width: 700px) {
  .nv-compare { grid-template-columns: 1fr; }
}
.nv-frame {
  margin: 0; border-radius: 10px; overflow: hidden;
  background: var(--navy-light);
  box-shadow: var(--shadow-md);
  position: relative;
}
.nv-frame img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  display: block;
}
.nv-frame figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, transparent 100%);
  color: var(--white); font-size: 13px;
}
.nv-frame figcaption span {
  display: block;
  font-family: var(--font-h); font-size: 18px; font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 2px;
}
.nv-night {
  background: var(--navy);
}
@media (max-width: 900px) {
  .nv-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ── 5. AUTHORITY CARDS ───────────────────────────────────── */
.authority { padding: 80px 32px; background: var(--white); }
.authority-inner { max-width: 1280px; margin: 0 auto; }
.authority-slogan {
  font-family: var(--font-h);
  font-size: 14px; font-style: italic; font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase; letter-spacing: 0.15em;
  text-align: center; margin: 0 0 8px;
}
.authority-slogan sup { font-size: 0.6em; }
.section-h {
  font-family: var(--font-h); font-size: 36px; font-weight: 700; line-height: 1.15;
  margin: 0 0 16px; color: var(--navy); text-align: center;
}
.section-lede {
  font-size: 17px; color: var(--slate);
  text-align: center; max-width: 720px; margin: 0 auto 48px;
}
.authority-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 32px;
}
.auth-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}
.auth-icon {
  width: 56px; height: 56px;
  background: var(--navy); color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
}
.auth-card h3 {
  font-family: var(--font-h); font-size: 22px; font-weight: 700;
  margin: 0 0 8px;
}
.auth-card p { font-size: 14px; color: var(--slate); margin: 0; }
@media (max-width: 768px) {
  .authority-grid { grid-template-columns: 1fr; }
}

/* ── 6/7/8. SHOP / GROUPED CARDS / TIER TABLES ───────────── */
.shop { padding: 80px 32px; background: var(--cream); }
.shop-inner { max-width: 1280px; margin: 0 auto; }
.shop-head { text-align: center; margin-bottom: 48px; }
.card-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr; } }
.product-card {
  background: var(--white);
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 12px rgba(13, 27, 42, 0.06);
  transition: box-shadow 0.18s, transform 0.18s;
}
.product-card:hover {
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.12);
  transform: translateY(-2px);
}
.product-card-header {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px;
  padding: 24px 24px 0;
}
.product-card-image {
  aspect-ratio: 1/1;
  background: var(--cream-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 20px;
}
.product-card-image img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-card-image-fallback {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.product-card-meta { display: flex; flex-direction: column; }
.card-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold-dark); font-weight: 600;
  margin: 0 0 6px;
}
.card-title {
  font-family: var(--font-h); font-size: 22px; font-weight: 700;
  line-height: 1.2; margin: 0 0 8px;
}
.card-subtitle {
  font-size: 13px; color: var(--slate); margin: 0 0 12px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.chip {
  display: inline-block; background: var(--cream-dark);
  padding: 3px 10px; border-radius: 12px; font-size: 11px;
  color: var(--navy); font-weight: 500;
}
.chip-soft { background: transparent; border: 1px solid var(--border); }

.product-card-body { padding: 20px 24px 24px; }

/* Price line — single, prominent, no box */
.card-price-line {
  margin: 14px 0 4px;
  font-family: var(--font-h);
  line-height: 1;
}
.card-price-amount {
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: -0.01em;
}
.card-price-each {
  margin-left: 6px;
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
}
/* SKU + dimensions micro-line — quiet, secondary */
.card-sku-line {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 16px;
  font-size: 12px;
  color: var(--slate);
}
.card-sku-tag {
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--slate-dark);
}
.card-dim {
  color: var(--slate);
}

/* Quantity + Add to Cart in a single row */
.qty-action-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  align-items: end;
  margin-bottom: 14px;
}
.qty-input-wrap label {
  display: block;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--slate); font-weight: 600;
  margin-bottom: 6px;
}
.qty-input-wrap input {
  width: 100%;
  padding: 11px 12px;
  font-family: inherit; font-size: 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
}
.qty-input-wrap input:focus {
  outline: 2px solid var(--gold); outline-offset: -1px;
  border-color: var(--gold);
}
.add-to-cart-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px;
  padding: 0 18px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 6px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  text-align: center;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}
.add-to-cart-btn:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Subtle TEXT trigger — not a button */
.tier-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 4px 0 0;
  padding: 6px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  color: var(--gold-dark);
  font-family: inherit;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.tier-trigger:hover {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.tier-trigger-caret {
  display: inline-block;
  transition: transform 0.2s;
  font-size: 12px;
}
.tier-trigger.is-open .tier-trigger-caret { transform: rotate(180deg); }
.tier-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Tier table softening when revealed */
.tier-block { margin: 10px 0 6px; }
.tier-block .tier-table {
  border: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.tier-block .tier-table th {
  background: transparent;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 10px; font-weight: 600;
  padding: 6px 8px;
}
.tier-block .tier-table td {
  border-bottom: 1px solid var(--cream-dark);
  padding: 7px 8px;
  font-size: 13px;
}
.tier-block .tier-table tr:nth-child(even) td {
  background: rgba(245, 244, 240, 0.55);
}
.tier-block .tier-table tr.active td {
  background: rgba(201, 147, 58, 0.12);
}
.tier-foot {
  margin: 10px 0 0;
  font-size: 11px;
  color: var(--slate);
  font-style: italic;
  letter-spacing: 0.01em;
}

/* Quiet secondary action — View product link */
.card-secondary-action {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--cream-dark);
  text-align: right;
}
.view-product-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.view-product-link:hover {
  color: var(--gold-dark);
}

/* Mobile: stack qty + add to cart vertically; tier table never overflows */
@media (max-width: 540px) {
  .qty-action-row { grid-template-columns: 1fr; gap: 12px; }
  .add-to-cart-btn { width: 100%; height: 46px; }
}
.qty-discount-hint {
  margin: 8px 0 4px;
  font-size: 12px; color: var(--slate);
  font-style: italic;
}
.tier-toggle {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 13px; font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.15s, border-color 0.15s;
  margin-bottom: 14px;
}
.tier-toggle:hover { background: var(--cream-dark); border-color: var(--border-dark); }
.tier-toggle-caret { color: var(--gold-dark); transition: transform 0.2s; }
.tier-toggle.is-open .tier-toggle-caret { transform: rotate(180deg); }
.tier-block[hidden] { display: none; }
.option-row { margin-bottom: 14px; }
.option-row label {
  display: block;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--slate); font-weight: 600;
  margin-bottom: 6px;
}
.option-row select,
.option-row input[type="number"] {
  width: 100%; padding: 10px 12px;
  font-family: inherit; font-size: 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
}
.option-row select:focus,
.option-row input[type="number"]:focus {
  outline: 2px solid var(--gold); outline-offset: -1px;
  border-color: var(--gold);
}
.qty-row {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 12px;
  align-items: end;
}
.qty-pay {
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
}
.qty-pay-label { color: var(--slate); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.qty-pay-value {
  font-family: var(--font-h); font-size: 18px; font-weight: 700;
  color: var(--navy);
}
.qty-pay-each { color: var(--slate); font-weight: 400; font-size: 12px; }

.selection-block {
  background: var(--cream-dark);
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.selection-sku {
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 11px; color: var(--slate);
  letter-spacing: 0.02em;
}
.selection-price {
  font-family: var(--font-h); font-size: 26px; font-weight: 700;
  color: var(--gold-dark); line-height: 1;
}

.tier-block { margin-bottom: 14px; }
.tier-block-title {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--slate); font-weight: 600;
  margin: 0 0 6px;
}
.tier-table {
  width: 100%; border-collapse: collapse;
  background: var(--cream);
  border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden;
}
.tier-table th, .tier-table td {
  padding: 6px 10px;
  font-size: 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.tier-table th {
  background: var(--cream-dark);
  color: var(--slate);
  text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 10px; font-weight: 600;
}
.tier-table tr:last-child td { border-bottom: 0; }
.tier-table td.col-qty { font-family: ui-monospace, monospace; }
.tier-table td.col-price { text-align: right; font-family: ui-monospace, monospace; font-weight: 600; }
.tier-table tr.active td {
  background: rgba(201, 147, 58, 0.14);
  color: var(--navy);
  font-weight: 700;
}
.tier-table tr.active td.col-price { color: var(--gold-dark); }

.card-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.card-actions a {
  text-align: center; padding: 12px; border-radius: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.card-actions .primary { background: var(--gold); color: var(--navy); }
.card-actions .primary:hover { background: var(--gold-dark); color: var(--white); }
.card-actions .secondary {
  background: transparent; color: var(--navy);
  border: 1px solid var(--border-dark);
}
.card-actions .secondary:hover { background: var(--cream-dark); }

/* ── PRODUCT CARDS — RESPONSIVE / MOBILE ─────────────────── */
@media (max-width: 768px) {
  .card-grid { grid-template-columns: 1fr; }
  .product-card-header {
    grid-template-columns: 1fr;
    padding: 16px 18px 0;
    gap: 14px;
  }
  .product-card-image { aspect-ratio: 16/10; padding: 16px; }
  .product-card-body { padding: 16px 18px 18px; }
  .qty-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card-actions { grid-template-columns: 1fr; }

  /* Tier table → stacked rows on mobile.
     Hide the <thead>; render each row as a card-like block. */
  .tier-table thead { display: none; }
  .tier-table, .tier-table tbody { display: block; }
  .tier-table tr {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 10px 12px;
    margin-bottom: 6px;
    background: var(--cream);
    border-radius: 6px;
    border-bottom: 0;
  }
  .tier-table tr:last-child { margin-bottom: 0; }
  .tier-table td {
    padding: 0; border: 0; font-size: 13px;
  }
  .tier-table td.col-qty { font-weight: 600; }
  .tier-table td.col-price { text-align: right; color: var(--gold-dark); font-weight: 700; }
  .tier-table tr.active {
    background: rgba(201, 147, 58, 0.16);
    box-shadow: 0 0 0 1px var(--gold);
  }
}

.display-only-note {
  text-align: center; margin: 32px auto 0; max-width: 680px;
  padding: 0 18px;
  font-size: 12px; color: var(--slate);
  font-style: italic;
  letter-spacing: 0.01em;
}
.display-only-static {
  text-align: center; margin: 12px auto 0; max-width: 680px;
  padding: 0 18px;
  font-size: 12px; color: var(--slate);
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ── 8b. CUSTOM AGENCY SIGNAGE ───────────────────────────── */
.custom-agency {
  padding: 80px 32px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.ca-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.section-h.left { text-align: left; }
.section-lede.left { text-align: left; margin-left: 0; margin-right: 0; }
.ca-list {
  list-style: none; padding: 0; margin: 0 0 24px;
}
.ca-list li {
  position: relative; padding-left: 24px;
  margin-bottom: 8px; font-size: 14px; color: var(--slate-dark);
}
.ca-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--gold-dark); font-weight: 700;
}
.ca-gallery {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

/* Wrapping figure in a link → indicate clickability without breaking layout */
.figure-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-bottom: 0;
  transition: transform 0.15s, box-shadow 0.15s;
}
.figure-link:hover { transform: translateY(-2px); }
.figure-link:hover figure { box-shadow: var(--shadow-lg); }
.figure-link figure { transition: box-shadow 0.15s; }
.link-arrow {
  display: inline-block; margin-left: 4px;
  color: var(--gold-light); font-size: 0.85em; font-weight: 700;
  transition: transform 0.15s;
}
.figure-link:hover .link-arrow { transform: translate(2px, -2px); }
.ca-example {
  margin: 0; border-radius: 12px; overflow: hidden;
  background: var(--cream-dark);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex; flex-direction: column;
}
.ca-example img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.ca-example figcaption {
  padding: 12px 14px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 12px; font-weight: 500;
  text-align: center;
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
}
.ca-caption-loc {
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--gold-light);
}
.ca-caption-detail {
  font-size: 12px; font-weight: 500; color: var(--cream);
}
.ca-caption-note {
  font-size: 11px; font-style: italic; color: var(--gold-light);
  opacity: 0.85;
  margin-top: 2px;
}
.ca-install-guidance {
  max-width: 1080px; margin: 18px auto 0; padding: 0 24px;
  font-size: 12px; line-height: 1.5; color: var(--slate);
  font-style: italic;
  border-top: 1px dashed var(--rule, #d5d8de);
  padding-top: 10px;
}
@media (max-width: 600px) {
  .ca-gallery { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .ca-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ── 9. AI BRIDGE ─────────────────────────────────────────── */
.ai-bridge {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 80px 32px;
}
.ai-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px;
  align-items: center;
}
.ai-eyebrow { color: var(--gold-light); }
.ai-h {
  font-family: var(--font-h); font-size: 36px; font-weight: 700; line-height: 1.15;
  margin: 0 0 16px;
}
.ai-bridge p { color: rgba(255, 255, 255, 0.85); font-size: 16px; max-width: 560px; margin: 0 0 24px; }
.ai-art {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}
.ai-art-card {
  display: flex; flex-direction: column; gap: 12px;
  align-items: center; justify-content: center;
}
.ai-art-row {
  font-family: var(--font-h); font-size: 32px; font-weight: 900;
}
.ai-art-row span { color: var(--gold); }
.ai-art-divider { font-size: 24px; color: var(--gold); font-weight: 700; }
.ai-art-foot {
  margin-top: 8px;
  font-size: 12px; color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em; text-transform: uppercase;
}
@media (max-width: 900px) {
  .ai-inner { grid-template-columns: 1fr; }
  .ai-h { font-size: 28px; }
}

/* ── 10. FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: var(--cream);
  padding: 48px 32px 0;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px;
}
.footer-col h4 {
  font-family: var(--font-h);
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold-light);
  margin: 0 0 12px;
}
.footer-col p { font-size: 14px; margin: 0 0 8px; color: rgba(245, 244, 240, 0.85); }
.phone-vanity {
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  font-weight: 500;
}
.footer-fax { font-size: 13px; color: rgba(245, 244, 240, 0.7); }
.footer-fax a { color: rgba(245, 244, 240, 0.85); }
.footer-addr {
  font-size: 13px;
  color: rgba(245, 244, 240, 0.75);
  font-style: normal;
}
.footer-col a { color: rgba(245, 244, 240, 0.85); border-bottom: 1px solid transparent; }
.footer-col a:hover { color: var(--gold-light); border-color: var(--gold-light); }
.footer-brand {
  font-family: var(--font-h); font-size: 28px; font-weight: 700;
  margin-bottom: 8px;
}
.footer-brand span { color: var(--gold); }
.footer-tag {
  font-family: var(--font-h); font-size: 16px; font-style: italic;
  color: var(--gold-light); margin: 0 0 4px !important;
}
.footer-tag sup { font-size: 0.55em; }
.footer-tm {
  font-size: 12px; color: rgba(245, 244, 240, 0.6);
  margin: 0 !important;
}
.footer-legal-links {
  max-width: 1280px; margin: 32px auto 0;
  padding: 16px 0 8px;
  border-top: 1px solid var(--navy-mid);
  font-size: 12px; color: rgba(245, 244, 240, 0.7);
  text-align: center;
  letter-spacing: 0.02em;
}
.footer-legal-links a {
  color: rgba(245, 244, 240, 0.85);
  margin: 0 4px;
  border-bottom: 1px solid transparent;
}
.footer-legal-links a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}
.footer-fine {
  max-width: 1280px; margin: 0 auto;
  padding: 8px 0 16px;
  font-size: 11px; color: rgba(245, 244, 240, 0.5);
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ── HERO INSTITUTIONAL FRAMING (NSA partnership + credentials) ──── */
.hero-institutional {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 12px;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold-light);
  background: rgba(13, 27, 42, 0.55);
  border: 1px solid rgba(232, 185, 106, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(2px);
}
.hero-creds {
  list-style: none;
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex; flex-wrap: wrap;
  gap: 24px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
}
.hero-creds li {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-creds-mark {
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: 0;
}
@media (max-width: 700px) {
  .hero-creds { gap: 14px; font-size: 11px; }
}

/* ── HERO ROTATOR CONCEPT (static — markup-only, no JS rotation) ─── */
.hero-rotator { position: relative; }
/* Stack slides; only .is-active is visible. Keep DOM hidden via [hidden]
   so screen readers don't read all three at once. */
.hero-slide { display: none; position: relative; }
.hero-slide.is-active { display: block; }
.hero-slide:not([hidden]) { /* still respects [hidden] attribute */ }

.hero-dots {
  position: absolute;
  left: 0; right: 0; bottom: 20px;
  display: flex; justify-content: center; gap: 10px;
  z-index: 3;
  padding: 0 16px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.55);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.hero-dot.is-active {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: scale(1.15);
}
.hero-dot:hover { background: rgba(255,255,255,0.35); }

/* ── HIGHLIGHTS ROW ────────────────────────────────────────── */
.highlights {
  padding: 64px 32px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.highlights-inner { max-width: 1280px; margin: 0 auto; }
.highlights-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.highlight-card {
  display: flex; flex-direction: column;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 24px 20px;
  color: var(--navy);
  text-align: left;
  box-shadow: 0 1px 3px rgba(13,27,42,0.04);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s, background 0.18s;
}
.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
  background: var(--white);
  color: var(--navy);
}
.highlight-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold);
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 14px;
}
.highlight-card h3 {
  font-family: var(--font-h);
  font-size: 18px; font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.2;
}
.highlight-card p {
  font-size: 13px; color: var(--slate-dark);
  margin: 0 0 14px;
  line-height: 1.5;
}
.highlight-cta {
  margin-top: auto;
  font-size: 12px; font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase; letter-spacing: 0.06em;
}
@media (max-width: 1100px) {
  .highlights-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .highlights-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .highlight-card { padding: 18px 16px; }
}
@media (max-width: 420px) {
  .highlights-row { grid-template-columns: 1fr; }
}

/* ── QUICKLINKS GRID ──────────────────────────────────────── */
.quicklinks {
  padding: 56px 32px 72px;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.quicklinks-inner { max-width: 1280px; margin: 0 auto; }
.quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.quicklink {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 18px 18px;
  color: var(--navy);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.quicklink:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-dark);
  border-left-color: var(--gold-dark);
  color: var(--navy);
}
.quicklink-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--cream-dark); color: var(--gold-dark);
  border-radius: 8px;
  font-size: 16px; font-weight: 700;
  margin-bottom: 4px;
}
.quicklink-label {
  font-family: var(--font-h);
  font-size: 16px; font-weight: 700; line-height: 1.25;
}
.quicklink-sub {
  font-size: 12px; color: var(--slate);
  line-height: 1.45;
}
@media (max-width: 1100px) {
  .quicklinks-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .quicklinks-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .quicklinks-grid { grid-template-columns: 1fr; }
}

/* ── PRODUCT CARD REFINEMENT (softer, larger image, civic-dusk warmth) ─── */
.shop {
  /* civic dusk: subtle warm wash, less flat than pure cream */
  background: linear-gradient(180deg, var(--cream) 0%, #ece8df 100%);
}
.product-card {
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(13,27,42,0.04), 0 8px 24px rgba(13,27,42,0.06);
}
.product-card:hover {
  box-shadow: 0 4px 12px rgba(13,27,42,0.08), 0 18px 36px rgba(13,27,42,0.14);
}
.product-card-header {
  /* Image leads — give it more visual weight */
  grid-template-columns: 1.15fr 1fr;
  padding: 28px 28px 0;
  gap: 24px;
}
.product-card-image {
  aspect-ratio: 4/5;        /* taller frame, lets reflective signs read */
  border-radius: 12px;
  padding: 24px;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.product-card-body { padding: 22px 28px 28px; }
@media (max-width: 768px) {
  .product-card-header {
    grid-template-columns: 1fr;
    padding: 18px 20px 0;
    gap: 16px;
  }
  .product-card-image { aspect-ratio: 16/10; padding: 18px; }
  .product-card-body { padding: 18px 20px 20px; }
}

/* ── PROOF FROM THE FIELD — paired photo + approved quote, no carousel ─── */
.proof {
  padding: 72px 32px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.proof-inner { max-width: 1100px; margin: 0 auto; }

.proof-card {
  margin-top: 28px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(13,27,42,0.05), 0 14px 30px rgba(13,27,42,0.08);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  overflow: hidden;
}
.proof-card + .proof-card { margin-top: 24px; }

.proof-figure {
  background: var(--cream-dark);
  min-height: 340px;
  position: relative;
}
.proof-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.proof-body {
  padding: 36px 40px;
  display: flex; flex-direction: column;
  justify-content: center;
  position: relative;
}
.proof-context {
  margin: 0 0 14px;
  padding: 5px 12px;
  display: inline-block;
  align-self: flex-start;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold-dark);
  background: rgba(201, 147, 58, 0.10);
  border-radius: 999px;
}
.proof-body .quote-mark {
  font-family: var(--font-h);
  font-size: 56px; line-height: 0.6;
  color: var(--gold);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.proof-body blockquote {
  margin: 0 0 22px;
  font-family: var(--font-h);
  font-size: 22px; font-weight: 400; line-height: 1.4;
  color: var(--navy);
  font-style: italic;
}
.proof-attrib {
  margin: 0 0 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.proof-attrib .attrib-name {
  margin: 0;
  font-size: 15px; font-weight: 700;
  color: var(--navy);
}
.proof-attrib .attrib-role {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--slate-dark);
}
.proof-attrib .attrib-org {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--slate);
}
.proof-caption {
  margin: 0;
  font-size: 11px; color: var(--slate);
  letter-spacing: 0.04em;
  font-style: italic;
}
.proof-caption-guidance {
  margin-top: 6px;
  font-style: normal;
  letter-spacing: 0.02em;
  line-height: 1.45;
  padding-top: 6px;
  border-top: 1px dashed var(--rule, #d5d8de);
}
/* Reverse: text on left, photo on right (alternating rhythm). */
.proof-card-reverse .proof-figure { order: 2; }
.proof-card-reverse .proof-body { order: 1; }

/* No-photo variant — testimonial only, full width.
   Used when a photo has been pulled pending review. */
.proof-card-no-photo {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.proof-card-no-photo .proof-body {
  padding: 40px 48px;
}

@media (max-width: 800px) {
  .proof-card { grid-template-columns: 1fr; }
  .proof-figure { min-height: 240px; aspect-ratio: 4/3; }
  .proof-body { padding: 28px 24px; }
  .proof-body blockquote { font-size: 19px; }
  /* Mobile: photo always leads, regardless of layout direction */
  .proof-card-reverse .proof-figure { order: 0; }
  .proof-card-reverse .proof-body { order: 0; }
}

/* ── PROGRAMS BRIDGE (NSA-style image | text split) ────────── */
.programs {
  padding: 80px 32px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.programs-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px;
  align-items: center;
}
.programs-figure {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--cream-dark);
  aspect-ratio: 4/3;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.programs-figure:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.programs-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.programs-text { max-width: 560px; }
.programs-text .eyebrow { color: var(--gold-dark); }
.programs-points {
  list-style: none; padding: 0;
  margin: 18px 0 28px;
}
.programs-points li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--slate-dark);
  line-height: 1.55;
}
.programs-points li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--gold-dark); font-weight: 700;
}
@media (max-width: 900px) {
  .programs-inner { grid-template-columns: 1fr; gap: 32px; }
  .programs { padding: 56px 24px; }
}

/* ── BOXED-LOOK SOFTENING (auth cards, installations, trust strip) ── */
.auth-card {
  border: 0;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(13,27,42,0.05), 0 8px 22px rgba(13,27,42,0.06);
  transition: transform 0.18s, box-shadow 0.18s;
}
.auth-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(13,27,42,0.06), 0 14px 30px rgba(13,27,42,0.10);
}
.installations { background: var(--cream); } /* ease the white slab into the dusk wash */
.installations-grid figure {
  box-shadow: 0 2px 8px rgba(13,27,42,0.06), 0 10px 24px rgba(13,27,42,0.08);
  border-radius: 12px;
}
.installations-grid figcaption {
  /* lighter caption ramp — keeps the photo readable, less heavy navy bar */
  background: linear-gradient(to top, rgba(13,27,42,0.72) 0%, rgba(13,27,42,0.0) 70%);
  padding: 18px 16px 14px;
  font-weight: 500;
}
.trust-strip {
  border-bottom: 0;
  box-shadow: inset 0 -1px 0 rgba(212, 207, 200, 0.6);
}

/* ── MOCKUP BANNER ────────────────────────────────────────── */
.mockup-banner {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--navy); color: var(--white);
  border-left: 4px solid var(--gold);
  padding: 14px 18px;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  max-width: 380px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  z-index: 100;
}
.mockup-banner.show { opacity: 1; transform: translateY(0); }
.mockup-banner-title {
  font-weight: 700; color: var(--gold-light);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.mockup-banner code {
  font-size: 11px; color: var(--gold-light);
  word-break: break-all;
}

/* ── trademark attribution footer (canonical text from
 *   v5_mockup/resources/institutional_records/TRADEMARK_ATTRIBUTION_NOTICE.md)
 *   Sits inside the main site footer beneath the © line. Quiet, factual.
 */
.trademark-attribution-notice {
  max-width: 880px;
  margin: 12px auto 0;
  padding: 8px 24px 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--slate, #5b6372);
  font-style: normal;
}
