/* ═══════════════════════════════════════════════════════════
   FINISHING-PAGE TIGHTENED LAYOUT — page-scoped under the
   `.hub-tightened` wrapper so nothing bleeds to other
   pages. Same brand DNA as the rest of the site (navy + gold,
   Barlow + Barlow Condensed) tightened with Makita-inspired
   discipline.

   Base palette + fonts (Barlow / Barlow Condensed) come from
   base.css — we only define the page-specific composition rules.
   ═══════════════════════════════════════════════════════════ */

/* Local overrides / additions to the existing palette */
.hub-tightened {
  --ft-navy:     #0a1628;
  --ft-navy-2:   #0f2040;
  --ft-gold:     #d4a017;
  --ft-gold-2:   #f0bc2e;
  --ft-smoke:    #f4f6f9;
  --ft-smoke-2:  #ebeff5;
  --ft-text:     #1a2535;
  --ft-text-2:   #4a5868;
  --ft-muted:    #6b7f96;
  --ft-border:   #dce4ef;
  --ft-border-2: #e8edf4;
  --ft-green:    #16a34a;
  --ft-mono:     'JetBrains Mono', ui-monospace, monospace;
}

.hub-tightened *,
.hub-tightened *::before,
.hub-tightened *::after { box-sizing: border-box; }
.hub-tightened img { max-width: 100%; display: block; }
.hub-tightened a { color: inherit; text-decoration: none; }

/* Reusable typography primitives */
.ft-eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ft-gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ft-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--ft-gold);
}

.hub-tightened h1,
.hub-tightened h2,
.hub-tightened h3 {
  font-family: var(--font-head);
  color: var(--ft-navy);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin: 0;
}

/* Buttons — single shape repeated everywhere */
.hub-tightened .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 2px;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
  white-space: nowrap;
}
.hub-tightened .btn-primary { background: var(--ft-navy); color: #fff; }
.hub-tightened .btn-primary:hover { background: var(--ft-gold); color: var(--ft-navy); }
.hub-tightened .btn-primary .arrow { transition: transform 200ms ease; }
.hub-tightened .btn-primary:hover .arrow { transform: translateX(3px); }
.hub-tightened .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.hub-tightened .btn-ghost:hover { border-color: var(--ft-gold); color: var(--ft-gold); }

/* ─── 1. Hero band ────────────────────────────────────────── */
.hub-tightened .ft-hero {
  background: linear-gradient(135deg, var(--ft-navy) 0%, var(--ft-navy-2) 100%);
  color: #fff;
  padding: clamp(72px, 9vw, 128px) 0 clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.hub-tightened .ft-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(212,160,23,0.04) 80px, rgba(212,160,23,0.04) 81px);
  pointer-events: none;
}
.hub-tightened .ft-hero::after {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 160%;
  background: radial-gradient(circle, rgba(212,160,23,0.16), transparent 60%);
  pointer-events: none;
}
.hub-tightened .ft-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hub-tightened .ft-hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ft-gold);
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hub-tightened .ft-hero-eyebrow::before {
  content: ''; width: 36px; height: 2px; background: var(--ft-gold);
}
.hub-tightened .ft-hero h1 {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.012em;
  font-size: clamp(2.8rem, 6.4vw, 5.2rem);
  line-height: 1.0;
  margin-bottom: 24px;
}
.hub-tightened .ft-hero h1 .quiet { color: var(--ft-gold); font-weight: 600; }
.hub-tightened .ft-hero p.lede {
  font-size: 1.18rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 56ch;
  margin-bottom: 36px;
}
.hub-tightened .ft-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hub-tightened .ft-hero-photo {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(10,22,40,0.14);
}
.hub-tightened .ft-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hub-tightened .ft-hero-proof-panel {
  min-height: 330px;
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    repeating-linear-gradient(135deg, rgba(212,160,23,0.18) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(212,160,23,0.28);
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(10,22,40,0.14);
}
.hub-tightened .ft-hero-proof-panel span {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  color: #fff;
  background: rgba(10,22,40,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

/* ─── 2. Stats band ───────────────────────────────────────── */
.hub-tightened .ft-stats {
  background: var(--ft-smoke);
  border-bottom: 1px solid var(--ft-border);
  padding-block: clamp(48px, 6vw, 72px);
}
.hub-tightened .ft-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 56px);
}
.hub-tightened .ft-stat {
  padding-left: 20px;
  border-left: 2px solid var(--ft-gold);
}
.hub-tightened .ft-stat .num {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--ft-navy);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
  margin-bottom: 8px;
}
.hub-tightened .ft-stat .num em { color: var(--ft-gold); font-style: normal; }
.hub-tightened .ft-stat .lab {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ft-muted);
}

/* ─── 3. Category grid ────────────────────────────────────── */
.hub-tightened .ft-cats { padding-block: clamp(72px, 8vw, 112px); background: #fff; }
.hub-tightened .ft-cats-head {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.hub-tightened .ft-cats-head h2 {
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-top: 16px;
  max-width: 22ch;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}
.hub-tightened .ft-cats-head .lede {
  font-size: 1.05rem; line-height: 1.65; color: var(--ft-text-2); max-width: 48ch;
}
.hub-tightened .ft-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hub-tightened .ft-cat-card {
  background: #fff;
  border: 1px solid var(--ft-border);
  display: flex;
  flex-direction: column;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.hub-tightened .ft-cat-card:hover {
  border-color: var(--ft-navy);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(10,22,40,0.08);
}
.hub-tightened .ft-cat-card-photo {
  aspect-ratio: 4/3;
  background:
    radial-gradient(circle at 78% 22%, rgba(212,160,23,0.2), transparent 34%),
    linear-gradient(135deg, #f7f9fc 0%, #e7edf5 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--ft-border);
  position: relative;
}
.hub-tightened .ft-cat-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.hub-tightened .ft-cat-card:hover .ft-cat-card-photo img { transform: scale(1.05); }
.hub-tightened .ft-cat-card-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.hub-tightened .ft-cat-card-fallback::before {
  content: '';
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(10,22,40,0.08);
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(212,160,23,0.18) 48% 52%, transparent 52%),
    rgba(255,255,255,0.35);
}
.hub-tightened .ft-cat-card-fallback svg,
.hub-tightened .ft-cat-card-fallback span {
  position: relative;
  z-index: 1;
}
.hub-tightened .ft-cat-card-fallback svg {
  width: 56px;
  height: 56px;
  padding: 14px;
  color: #fff;
  stroke: #fff;
  background: var(--ft-navy);
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(212,160,23,0.72);
}
.hub-tightened .ft-cat-card-fallback span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ft-navy);
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(212,160,23,0.72);
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.hub-tightened .ft-cat-card-num {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--ft-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--ft-navy);
  padding: 5px 10px;
  border-radius: 2px;
}
.hub-tightened .ft-cat-card-body {
  padding: 24px 28px 28px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.hub-tightened .ft-cat-card-eyebrow {
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ft-gold);
}
.hub-tightened .ft-cat-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.hub-tightened .ft-cat-card .desc {
  color: var(--ft-text-2);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 4px;
}
.hub-tightened .ft-cat-card .cta {
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ft-navy);
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--ft-border-2);
  transition: color 200ms ease, gap 200ms ease;
}
.hub-tightened .ft-cat-card:hover .cta { color: var(--ft-gold); gap: 10px; }

/* ─── 4. Subcategory articles ─────────────────────────────── */
.hub-tightened .ft-subcat {
  padding-block: clamp(72px, 8vw, 112px);
  border-top: 1px solid var(--ft-border);
  scroll-margin-top: 80px;
  background: #fff;
}
.hub-tightened .ft-subcat:nth-of-type(even) { background: var(--ft-smoke); }
.hub-tightened .ft-subcat-head {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: baseline;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ft-border);
}
.hub-tightened .ft-subcat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--ft-gold);
  line-height: 0.85;
  letter-spacing: -0.03em;
}
.hub-tightened .ft-subcat-label {
  font-family: var(--ft-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ft-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hub-tightened .ft-subcat h2 {
  text-transform: uppercase;
  letter-spacing: -0.008em;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
}
.hub-tightened .ft-subcat-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.hub-tightened .ft-subcat-text { font-size: 1.05rem; line-height: 1.7; color: var(--ft-text-2); }
.hub-tightened .ft-subcat-text p { margin: 0 0 16px; max-width: 60ch; }
.hub-tightened .ft-subcat-text p strong { color: var(--ft-navy); font-weight: 600; }

/* Spec table (replaces flat bullet lists) */
.hub-tightened .ft-specs {
  margin-top: 28px;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.hub-tightened .ft-specs thead th {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ft-muted);
  text-align: left;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ft-navy);
}
.hub-tightened .ft-specs thead th.right { text-align: right; }
.hub-tightened .ft-specs td {
  padding: 12px 0;
  border-bottom: 1px solid var(--ft-border-2);
  color: var(--ft-text);
  vertical-align: top;
}
.hub-tightened .ft-specs td.machine { font-weight: 600; color: var(--ft-navy); }
.hub-tightened .ft-specs td.status {
  text-align: right;
  font-family: var(--ft-mono);
  font-size: 0.84rem;
  color: var(--ft-text-2);
  white-space: nowrap;
}
.hub-tightened .ft-specs td.status .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ft-green);
  margin-right: 8px;
  vertical-align: middle;
  margin-top: -1px;
}
.hub-tightened .ft-specs tr:last-child td { border-bottom: 0; }

/* Subcat media (1 hero photo + 2 thumbs + a "+N more" placeholder) */
.hub-tightened .ft-subcat-media { display: grid; gap: 16px; }
.hub-tightened .ft-subcat-hero-photo {
  aspect-ratio: 4/3;
  background: #fff;
  border: 1px solid var(--ft-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.hub-tightened .ft-subcat-hero-photo:hover {
  border-color: var(--ft-navy);
  box-shadow: 0 4px 16px rgba(10,22,40,0.08);
}
.hub-tightened .ft-subcat-hero-photo img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}
.hub-tightened .ft-subcat-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.hub-tightened .ft-subcat-photo-thumb {
  aspect-ratio: 1/1;
  background: #fff;
  border: 1px solid var(--ft-border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
  transition: border-color 200ms ease;
}
.hub-tightened .ft-subcat-photo-thumb:hover { border-color: var(--ft-gold); }
.hub-tightened .ft-subcat-photo-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.hub-tightened .ft-subcat-photo-more {
  background: var(--ft-smoke-2);
  border: 1px dashed var(--ft-border);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ft-text-2);
  transition: border-color 200ms ease, color 200ms ease;
  aspect-ratio: 1/1;
}
.hub-tightened .ft-subcat-photo-more:hover { border-color: var(--ft-gold); color: var(--ft-gold); }
.hub-tightened .ft-subcat-photo-more .num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ft-navy);
  letter-spacing: 0;
}
.hub-tightened .ft-subcat-caption {
  font-size: 0.85rem;
  color: var(--ft-muted);
  font-style: italic;
  padding-top: 8px;
  border-top: 1px solid var(--ft-border-2);
}

/* Collapsible subcat — editor-flagged via PageSection.is_collapsible */
.hub-tightened .ft-subcat-collapse { /* details element */ }
.hub-tightened .ft-subcat-collapse > summary {
  list-style: none;
  cursor: pointer;
  outline: none;
}
.hub-tightened .ft-subcat-collapse > summary::-webkit-details-marker { display: none; }
.hub-tightened .ft-subcat-collapse-summary {
  display: block;
}
.hub-tightened .ft-subcat-head--in-summary {
  position: relative;
  padding-right: 56px;
}
.hub-tightened .ft-subcat-collapse-marker {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 28px;
  height: 28px;
  border: 1px solid var(--ft-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.hub-tightened .ft-subcat-collapse-marker::before,
.hub-tightened .ft-subcat-collapse-marker::after {
  content: '';
  position: absolute;
  background: var(--ft-gold);
  transition: opacity 200ms ease;
}
.hub-tightened .ft-subcat-collapse-marker::before {
  width: 12px;
  height: 2px;
}
.hub-tightened .ft-subcat-collapse-marker::after {
  width: 2px;
  height: 12px;
}
.hub-tightened .ft-subcat-collapse[open] .ft-subcat-collapse-marker {
  transform: translateY(-50%) rotate(45deg);
  background: var(--ft-gold);
}
.hub-tightened .ft-subcat-collapse[open] .ft-subcat-collapse-marker::before,
.hub-tightened .ft-subcat-collapse[open] .ft-subcat-collapse-marker::after {
  background: var(--ft-navy);
}
.hub-tightened .ft-subcat-collapse > summary:hover .ft-subcat-collapse-marker {
  background: var(--ft-gold);
}
.hub-tightened .ft-subcat-collapse > summary:hover .ft-subcat-collapse-marker::before,
.hub-tightened .ft-subcat-collapse > summary:hover .ft-subcat-collapse-marker::after {
  background: var(--ft-navy);
}
/* Collapse-body slides into view; sits inside the same .ft-subcat container */
.hub-tightened .ft-subcat-collapse > .ft-subcat-body { padding-top: 18px; }

/* ─── 5. CTA band (mirrors hero rhythm at the bottom) ─────── */
.hub-tightened .ft-cta {
  background: linear-gradient(135deg, var(--ft-navy) 0%, var(--ft-navy-2) 100%);
  color: #fff;
  padding-block: clamp(72px, 9vw, 128px);
  position: relative;
  overflow: hidden;
}
.hub-tightened .ft-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(212,160,23,0.04) 80px, rgba(212,160,23,0.04) 81px);
  pointer-events: none;
}
.hub-tightened .ft-cta::after {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 160%;
  background: radial-gradient(circle, rgba(212,160,23,0.16), transparent 60%);
  pointer-events: none;
}
.hub-tightened .ft-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
}
.hub-tightened .ft-cta .ft-eyebrow { color: var(--ft-gold-2); }
.hub-tightened .ft-cta .ft-eyebrow::before { background: var(--ft-gold-2); }
.hub-tightened .ft-cta h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.012em;
  line-height: 1;
  margin-top: 16px;
  margin-bottom: 18px;
  font-weight: 700;
}
.hub-tightened .ft-cta h2 em { color: var(--ft-gold-2); font-style: normal; }
.hub-tightened .ft-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 50ch;
}
.hub-tightened .ft-cta-actions {
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
  position: relative;
}
.hub-tightened .ft-cta .btn-primary { background: var(--ft-gold); color: var(--ft-navy); }
.hub-tightened .ft-cta .btn-primary:hover { background: var(--ft-gold-2); transform: translateY(-2px); }
.hub-tightened .ft-cta-phone {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
}
.hub-tightened .ft-cta-hours {
  font-family: var(--ft-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

/* Footnote */
.hub-tightened .ft-footnote {
  background: var(--ft-smoke);
  border-top: 1px solid var(--ft-border);
  padding-block: 32px;
}
.hub-tightened .ft-footnote-row {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.hub-tightened .ft-footnote-text {
  font-size: 0.86rem;
  color: var(--ft-muted);
  line-height: 1.55;
  max-width: 80ch;
  font-style: italic;
}

/* Responsive */
@media (max-width: 880px) {
  .hub-tightened .ft-hero-grid { grid-template-columns: 1fr; }
  .hub-tightened .ft-hero-proof-panel { min-height: 240px; }
  .hub-tightened .ft-stats-row { grid-template-columns: repeat(2, 1fr); }
  .hub-tightened .ft-cats-head { grid-template-columns: 1fr; gap: 24px; }
  .hub-tightened .ft-cats-grid { grid-template-columns: 1fr; }
  .hub-tightened .ft-subcat-head { grid-template-columns: 1fr; gap: 12px; }
  .hub-tightened .ft-subcat-num { font-size: 2.2rem; }
  .hub-tightened .ft-subcat-body { grid-template-columns: 1fr; gap: 32px; }
  .hub-tightened .ft-cta-grid { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 520px) {
  .hub-tightened .ft-hero-proof-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hub-tightened .ft-hero-proof-panel span { min-height: 58px; }
  .hub-tightened .ft-cat-card-fallback::before { inset: 20px; }
}

/* ─── Trust band (shipping partner logos) ───────────────── */
.hub-tightened .ft-trust {
  background: #fff;
  border-top: 1px solid var(--ft-border);
  padding-block: clamp(40px, 5vw, 64px);
}
.hub-tightened .ft-trust-head { text-align: center; margin-bottom: 32px; }
.hub-tightened .ft-trust-head .ft-eyebrow { display: inline-flex; margin-bottom: 4px; }
.hub-tightened .ft-trust-head h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ft-text-2);
  letter-spacing: -0.005em;
  margin-top: 4px;
}
.hub-tightened .ft-trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 72px);
}
.hub-tightened .ft-trust-logo {
  display: flex; align-items: center; justify-content: center;
  height: 56px;
  flex: 0 0 auto;
}
.hub-tightened .ft-trust-logo img {
  max-height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.65);
  transition: filter 200ms ease;
}
.hub-tightened .ft-trust-logo:hover img { filter: grayscale(0%) opacity(1); }

/* ─── Award / recognition band ──────────────────────────── */
.hub-tightened .ft-award {
  background: var(--ft-smoke);
  border-top: 1px solid var(--ft-border);
  border-bottom: 1px solid var(--ft-border);
  padding-block: clamp(56px, 7vw, 96px);
}
.hub-tightened .ft-award-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hub-tightened .ft-award-badge {
  background: #fff;
  border: 1px solid var(--ft-border);
  border-top: 4px solid var(--ft-gold);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.hub-tightened .ft-award-badge:hover {
  border-color: var(--ft-gold);
  box-shadow: 0 4px 16px rgba(212,160,23,0.18);
}
.hub-tightened .ft-award-badge img { max-width: 100%; max-height: 100%; object-fit: contain; }
.hub-tightened .ft-award-text { display: flex; flex-direction: column; gap: 12px; }
.hub-tightened .ft-award-text h2 {
  text-transform: uppercase;
  letter-spacing: -0.008em;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-top: 8px;
}
.hub-tightened .ft-award-text p {
  color: var(--ft-text-2);
  line-height: 1.65;
  font-size: 1rem;
  max-width: 60ch;
}

/* ─── Programs band (clean callout for blanket-order programs) ─ */
.hub-tightened .ft-programs { background: #fff; padding-block: clamp(56px, 7vw, 96px); }
.hub-tightened .ft-programs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  border-top: 4px solid var(--ft-gold);
  border-left: 1px solid var(--ft-border);
  border-right: 1px solid var(--ft-border);
  border-bottom: 1px solid var(--ft-border);
  padding: clamp(36px, 5vw, 56px);
}
.hub-tightened .ft-programs-text h2 {
  text-transform: uppercase;
  letter-spacing: -0.008em;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-top: 6px;
}
.hub-tightened .ft-programs-text p {
  color: var(--ft-text-2);
  line-height: 1.65;
  font-size: 1rem;
  margin-top: 14px;
  max-width: 60ch;
}
.hub-tightened .ft-programs-actions {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
}

@media (max-width: 880px) {
  .hub-tightened .ft-award-grid { grid-template-columns: 1fr; }
  .hub-tightened .ft-award-badge { max-width: 240px; margin: 0 auto; }
  .hub-tightened .ft-programs-grid { grid-template-columns: 1fr; gap: 24px; }
  .hub-tightened .ft-trust-row { gap: 24px; }
  .hub-tightened .ft-trust-logo { height: 44px; }
}

/* ─── Why band (3-column value props) ───────────────────── */
.hub-tightened .ft-why {
  background: #fff;
  padding-block: clamp(56px, 7vw, 96px);
  border-top: 1px solid var(--ft-border);
}
.hub-tightened .ft-why-head { margin-bottom: 48px; max-width: 760px; }
.hub-tightened .ft-why-head h2 {
  text-transform: uppercase;
  letter-spacing: -0.012em;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-top: 12px;
}
.hub-tightened .ft-why-head p {
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ft-text-2);
}
.hub-tightened .ft-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
}
.hub-tightened .ft-why-item {
  padding-left: 20px;
  border-left: 2px solid var(--ft-gold);
}
.hub-tightened .ft-why-item .num {
  font-family: var(--ft-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ft-gold);
  margin-bottom: 12px;
}
.hub-tightened .ft-why-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
}
.hub-tightened .ft-why-item p {
  color: var(--ft-text-2);
  line-height: 1.65;
  font-size: 0.98rem;
}
@media (max-width: 880px) {
  .hub-tightened .ft-why-grid { grid-template-columns: 1fr; gap: 28px; }
}
