/* Foster Refrigerators USA — Design System v2 (Industrial / Spec-Sheet)
   Vocabulary: grid rules, mono labels, tabular specs, blueprint accents.
   Tokens come from tokens.css.
*/

/* ════════════════════════════════════════════════════════════════
   GRID RULE — every page renders inside a visible 12-col bed
   ════════════════════════════════════════════════════════════════ */
.fc-grid {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding: 0 24px;
  opacity: .35;
}
.fc-grid::before, .fc-grid::after {
  content: ""; grid-column: 1 / -1;
}
.fc-grid > span {
  border-left: 1px solid var(--fc-steel-100);
  border-right: 1px solid var(--fc-steel-100);
  height: 100%;
}
@media (min-width: 760px)  { .fc-grid { padding: 0 48px; } }
@media (min-width: 1100px) { .fc-grid { padding: 0 80px; } }

/* Document corners — hidden on mobile (would overlap headlines on small screens) */
.fc-doc-corners {
  display: none;
  position: fixed;
  z-index: 1;
  pointer-events: none;
  font-family: var(--fc-font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--fc-steel-300);
  text-transform: uppercase;
}
@media (min-width: 900px) {
  .fc-doc-corners { display: block; }
  .fc-doc-tl { top: 88px; left: 48px; }
  .fc-doc-tr { top: 88px; right: 48px; text-align: right; }
  .fc-doc-bl { bottom: 16px; left: 48px; }
  .fc-doc-br { bottom: 16px; right: 48px; text-align: right; }
}

/* ════════════════════════════════════════════════════════════════
   TYPE — tight, weighty, structural
   ════════════════════════════════════════════════════════════════ */
/* Mobile-first: clamps tuned so the bottom is readable on 320–480px screens */
.fc-h1 {
  font-family: var(--fc-font-display);
  font-weight: 900;
  font-size: clamp(34px, 9vw, 132px);
  line-height: .96;
  letter-spacing: -.03em;
  color: var(--fc-navy-ink);
  margin: 0;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.fc-h1 em { font-style: normal; color: var(--fc-orange); }
.fc-h2 {
  font-family: var(--fc-font-display);
  font-weight: 800;
  font-size: clamp(28px, 7vw, 72px);
  line-height: .98;
  letter-spacing: -.022em;
  color: var(--fc-navy-ink);
  margin: 0;
  word-wrap: break-word;
}
.fc-h2 em { font-style: normal; color: var(--fc-orange); }
.fc-h3 {
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: clamp(20px, 4.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -.015em;
  color: var(--fc-navy-ink);
  margin: 0;
}
.fc-lead {
  font-size: clamp(15px, 4vw, 21px);
  line-height: 1.55;
  color: var(--fc-steel-700);
  font-weight: 400;
  max-width: 60ch;
}

/* Eyebrow / Tag — monospace, with a leader line */
.fc-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--fc-font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--fc-orange);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.fc-tag::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--fc-orange);
}
.fc-tag-mini {
  font-family: var(--fc-font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--fc-steel-500);
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ─── "SINCE 1946" heritage emphasis ─────────────────────────────
   Bold, prominent heritage marker. The year is the loudest element. */
.fc-since {
  display: inline-flex;
  align-items: baseline;
  gap: .42em;
  font-family: var(--fc-font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1;
  color: var(--fc-navy);
}
.fc-since .fc-since-word {
  font-size: .58em;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--fc-steel-500);
  position: relative;
  top: -.06em;
}
.fc-since .fc-since-year {
  font-size: 1em;
  font-weight: 900;
  font-feature-settings: "tnum" 1;
  color: var(--fc-navy);
}
/* Orange variant — for use on light/navy heroes where it must pop */
.fc-since--accent .fc-since-year { color: var(--fc-orange); }
/* Light variant — for dark/navy backgrounds */
.fc-since--light .fc-since-word { color: rgba(255,255,255,.72); }
.fc-since--light .fc-since-year { color: #fff; }

/* Pill badge form — a solid "EST. 1946" stamp for section corners + hero */
.fc-est-badge {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: 6px 14px;
  border-radius: var(--fc-r-sm);
  background: var(--fc-navy);
  color: #fff;
  font-family: var(--fc-font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
}
.fc-est-badge .fc-est-year {
  color: var(--fc-orange);
  font-feature-settings: "tnum" 1;
}
.fc-est-badge--ghost {
  background: transparent;
  color: var(--fc-navy);
  border: 1.5px solid var(--fc-navy);
}
.fc-est-badge--ghost .fc-est-year { color: var(--fc-orange); }

/* Hero-scale heritage lockup — the loudest "Since 1946" on the site */
.fc-since-xl { font-size: clamp(17px, 3.2vw, 40px); }
.fc-since { flex-wrap: wrap; max-width: 100%; }
.fc-hero-heritage {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 4px;
  max-width: 100%;
}
.fc-hero-heritage .fc-tag::before { width: 24px; }
@media (max-width: 559px) {
  .fc-hero-heritage .fc-tag { display: none; }
}

/* Coordinates strip — `[ 01 / NAVY ]` style markers */
.fc-coord {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fc-font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--fc-steel-300);
  text-transform: uppercase;
}
.fc-coord b { color: var(--fc-navy-ink); font-weight: 700; }
.fc-coord span.div { color: var(--fc-steel-300); }

/* ════════════════════════════════════════════════════════════════
   BUTTONS — squared, monospace labels, mechanical
   ════════════════════════════════════════════════════════════════ */
.fc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--fc-font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 20px;
  min-height: 48px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--fc-fast) var(--fc-ease);
  white-space: nowrap;
  position: relative;
}
@media (min-width: 600px) {
  .fc-btn { font-size: 13px; padding: 16px 28px; min-height: 52px; gap: 12px; }
}
.fc-btn::after { content: "→"; font-family: var(--fc-font-body); font-size: 16px; }
.fc-btn-primary {
  background: var(--fc-orange);
  color: #fff;
}
.fc-btn-primary:hover {
  background: var(--fc-orange-warm);
  box-shadow: 0 8px 24px rgba(255,94,20,.32);
}
.fc-btn-navy {
  background: var(--fc-navy-ink);
  color: #fff;
}
.fc-btn-navy:hover { background: #000; }
.fc-btn-ghost {
  background: transparent;
  color: var(--fc-navy-ink);
  border-color: var(--fc-steel-100);
}
.fc-btn-ghost:hover { border-color: var(--fc-navy-ink); background: var(--fc-mist); }
.fc-btn-link {
  background: transparent;
  color: var(--fc-orange);
  padding: 4px 0;
  min-height: auto;
  font-size: 12px;
  border-bottom: 1px solid var(--fc-orange);
  border-radius: 0;
}
.fc-btn-link:hover { color: var(--fc-orange-warm); }
.fc-btn-link::after { content: ""; }
.fc-btn-link::after { content: " →"; font-family: inherit; font-size: inherit; }
.fc-btn-sm { padding: 10px 16px; min-height: 36px; font-size: 11px; }
.fc-btn-lg { padding: 16px 24px; min-height: 52px; font-size: 12px; }
@media (min-width: 600px) {
  .fc-btn-lg { padding: 20px 36px; min-height: 60px; font-size: 14px; }
}
.fc-btn-block { width: 100%; }

/* ════════════════════════════════════════════════════════════════
   CHIPS — squared, mono labels
   ════════════════════════════════════════════════════════════════ */
.fc-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fc-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--fc-steel-100);
  border-radius: 4px;
  color: var(--fc-navy-ink);
  cursor: pointer;
  transition: all var(--fc-fast) var(--fc-ease);
}
.fc-chip:hover { border-color: var(--fc-navy-ink); }
.fc-chip[aria-pressed="true"], .fc-chip.is-active {
  background: var(--fc-navy-ink);
  border-color: var(--fc-navy-ink);
  color: #fff;
}
.fc-chip i {
  font-style: normal;
  font-size: 11px;
  color: var(--fc-steel-500);
}
.fc-chip[aria-pressed="true"] i { color: var(--fc-orange); }

/* ════════════════════════════════════════════════════════════════
   SPEC TABLE — the workhorse component
   tabular dl with mono labels and right-aligned values
   ════════════════════════════════════════════════════════════════ */
.fc-spec {
  margin: 0;
  font-family: var(--fc-font-body);
  border-top: 1px solid var(--fc-navy-ink);
}
.fc-spec > .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--fc-steel-100);
  align-items: baseline;
}
@media (min-width: 600px) {
  .fc-spec > .row {
    grid-template-columns: minmax(140px, 1fr) auto;
    gap: 24px;
    padding: 16px 0;
  }
}
.fc-spec dt {
  font-family: var(--fc-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--fc-steel-500);
  text-transform: uppercase;
}
.fc-spec dd {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--fc-navy-ink);
  text-align: left;
  line-height: 1.4;
}
@media (min-width: 600px) {
  .fc-spec dd { text-align: right; }
}
.fc-spec dd .fc-mono { font-size: 14px; }
.fc-spec-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--fc-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--fc-steel-500);
  text-transform: uppercase;
  padding-bottom: 8px;
}

/* ════════════════════════════════════════════════════════════════
   TABULAR STAT — bigger numerics, mono unit, mono label
   ════════════════════════════════════════════════════════════════ */
.fc-stat {
  display: flex; flex-direction: column;
  gap: 6px;
  padding: 24px 0;
  border-top: 1px solid var(--fc-navy-ink);
  border-bottom: 1px solid var(--fc-steel-100);
}
.fc-stat-num {
  font-family: var(--fc-font-display);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--fc-navy-ink);
  font-variant-numeric: tabular-nums;
}
.fc-stat-num small {
  font-family: var(--fc-font-mono);
  font-weight: 500;
  font-size: .35em;
  color: var(--fc-orange);
  margin-left: 4px;
  vertical-align: 0.3em;
  letter-spacing: 0;
}
.fc-stat-label {
  font-family: var(--fc-font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--fc-steel-500);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.fc-stat-bar {
  height: 2px;
  width: 32px;
  background: var(--fc-orange);
  margin-top: 4px;
}

.fc-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
}
@media (min-width: 760px) {
  .fc-stats-row { grid-template-columns: repeat(4, 1fr); gap: 0 32px; }
}

/* ════════════════════════════════════════════════════════════════
   BLUEPRINT PHOTO — image with engineering overlay
   navy duotone + dimension callouts
   ════════════════════════════════════════════════════════════════ */
.fc-bp {
  position: relative;
  background: var(--fc-navy-ink);
  border-radius: 4px;
  overflow: hidden;
  isolation: isolate;
}
.fc-bp img {
  display: block;
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.5) contrast(1.05) brightness(1.05);
  opacity: 1;
}
.fc-bp::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,35,90,.10) 0%, rgba(0,35,90,.10) 40%, rgba(11,26,53,.45) 100%);
  z-index: 1;
}
.fc-bp-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 2;
  pointer-events: none;
}
.fc-bp-tag {
  position: absolute; z-index: 3;
  font-family: var(--fc-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fc-orange);
  padding: 6px 10px;
  background: rgba(11,26,53,.60);
  border: 1px solid rgba(255,94,20,.4);
  border-radius: 2px;
}
.fc-bp-tag.tl { top: 16px; left: 16px; }
.fc-bp-tag.tr { top: 16px; right: 16px; }
.fc-bp-tag.bl { bottom: 16px; left: 16px; }
.fc-bp-tag.br { bottom: 16px; right: 16px; }
.fc-bp-cap {
  position: absolute; z-index: 3;
  bottom: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 16px;
  font-family: var(--fc-font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
}
.fc-bp-cap b { color: var(--fc-orange); font-weight: 600; }

/* ════════════════════════════════════════════════════════════════
   TECH CARD — product card with spec stripe
   ════════════════════════════════════════════════════════════════ */
.fc-tech {
  display: flex; flex-direction: column;
  background: var(--fc-paper);
  border: 1px solid var(--fc-steel-100);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all var(--fc-fast) var(--fc-ease);
}
.fc-tech::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--fc-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--fc-medium) var(--fc-ease);
}
.fc-tech:hover {
  border-color: var(--fc-navy-ink);
  box-shadow: 0 12px 32px rgba(11,26,53,.10);
}
.fc-tech:hover::before { transform: scaleX(1); }

.fc-tech-photo {
  aspect-ratio: 4 / 3;
  background: var(--fc-mist);
  position: relative;
  overflow: hidden;
}
.fc-tech-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--fc-slow) var(--fc-ease);
}
.fc-tech:hover .fc-tech-photo img { transform: scale(1.04); }
.fc-tech-photo-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--fc-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--fc-navy-ink);
  color: #fff;
  padding: 4px 8px;
  border-radius: 2px;
}

.fc-tech-body {
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 12px;
  flex: 1;
}
.fc-tech-id {
  font-family: var(--fc-font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--fc-steel-500);
  text-transform: uppercase;
}
.fc-tech-name {
  font-family: var(--fc-font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.015em;
  color: var(--fc-navy-ink);
  margin: 0;
}
.fc-tech-spec {
  display: flex; flex-wrap: wrap;
  gap: 8px 16px;
  font-family: var(--fc-font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--fc-steel-700);
}
.fc-tech-spec b {
  color: var(--fc-navy-ink);
  font-weight: 600;
}
.fc-tech-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--fc-steel-100);
  display: flex; justify-content: space-between; align-items: baseline;
}
.fc-tech-price {
  font-family: var(--fc-font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.015em;
  color: var(--fc-navy-ink);
  font-variant-numeric: tabular-nums;
}
.fc-tech-price small {
  font-family: var(--fc-font-mono);
  font-weight: 500;
  font-size: 10px;
  color: var(--fc-steel-500);
  margin-right: 4px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fc-tech-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 760px) { .fc-tech-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width: 1100px){ .fc-tech-grid { grid-template-columns: repeat(3, 1fr); } }

/* ════════════════════════════════════════════════════════════════
   FORM FIELDS — sharp corners, mono labels
   ════════════════════════════════════════════════════════════════ */
.fc-field {
  display: flex; flex-direction: column;
  gap: 8px;
}
.fc-label {
  font-family: var(--fc-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--fc-steel-700);
  text-transform: uppercase;
  display: flex; justify-content: space-between;
}
.fc-label .opt { color: var(--fc-steel-300); font-weight: 500; }
.fc-input,
.fc-textarea,
.fc-select {
  font-family: var(--fc-font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--fc-steel-100);
  border-radius: 4px;
  background: var(--fc-paper);
  color: var(--fc-navy-ink);
  transition: border-color var(--fc-fast) var(--fc-ease), box-shadow var(--fc-fast) var(--fc-ease);
  width: 100%;
  box-sizing: border-box;
}
.fc-input:focus,
.fc-textarea:focus,
.fc-select:focus {
  outline: none;
  border-color: var(--fc-navy-ink);
  box-shadow: 0 0 0 3px rgba(0,35,90,.10);
}
.fc-textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.fc-help { font-size: 12px; color: var(--fc-steel-500); }
.fc-form { display: flex; flex-direction: column; gap: 18px; }

/* ════════════════════════════════════════════════════════════════
   CALL RIBBON / PHONE BLOCK
   ════════════════════════════════════════════════════════════════ */
.fc-call-ribbon {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  border: 1px solid var(--fc-steel-100);
  padding: 9px 14px;
  border-radius: 4px;
  font-family: var(--fc-font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--fc-navy-ink);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--fc-fast) var(--fc-ease);
}
.fc-call-ribbon:hover { border-color: var(--fc-navy-ink); background: var(--fc-mist); }
.fc-call-ribbon strong { font-weight: 700; }
.fc-call-ribbon::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fc-success);
  box-shadow: 0 0 0 3px rgba(31,138,76,.18);
  animation: fc-pulse 2.4s ease-in-out infinite;
}
@keyframes fc-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(31,138,76,.18); }
  50%      { box-shadow: 0 0 0 6px rgba(31,138,76,.04); }
}

/* ════════════════════════════════════════════════════════════════
   STICKY CTA + MODAL (kept)
   ════════════════════════════════════════════════════════════════ */
.fc-cta-bar {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 12px 14px 12px 18px;
  background: var(--fc-navy-ink);
  color: #fff;
  border-radius: 4px;
  border: 1px solid #1a2a4d;
  box-shadow: var(--fc-shadow-lg);
  transform: translateY(120%);
  transition: transform var(--fc-medium) var(--fc-ease);
}
.fc-cta-bar.is-visible { transform: translateY(0); }
.fc-cta-bar-text {
  font-family: var(--fc-font-mono);
  font-size: 12px;
  display: flex; flex-direction: column;
  gap: 2px;
}
.fc-cta-bar-text strong { font-weight: 700; font-size: 14px; letter-spacing: -.01em; }
.fc-cta-bar-text span { color: rgba(255,255,255,.55); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.fc-cta-bar .fc-btn { padding: 10px 18px; min-height: 38px; font-size: 11px; }
@media (min-width: 760px) {
  .fc-cta-bar { left: 32px; right: 32px; bottom: 24px; padding: 14px 16px 14px 22px; }
}

.fc-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(11,26,53,.62);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; visibility: hidden;
  transition: all var(--fc-medium) var(--fc-ease);
}
.fc-modal-backdrop.is-open { opacity: 1; visibility: visible; }
.fc-modal {
  background: #fff;
  border-radius: 4px;
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 32px;
  box-shadow: var(--fc-shadow-lg);
  transform: translateY(20px);
  transition: transform var(--fc-medium) var(--fc-ease);
  position: relative;
  border-top: 4px solid var(--fc-orange);
}
.fc-modal-backdrop.is-open .fc-modal { transform: translateY(0); }
.fc-modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  border: 1px solid var(--fc-steel-100);
  border-radius: 4px;
  background: var(--fc-paper);
  cursor: pointer;
  font-size: 16px;
  color: var(--fc-steel-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--fc-font-mono);
}
.fc-modal-close:hover { border-color: var(--fc-navy-ink); }

/* ════════════════════════════════════════════════════════════════
   SECTIONS / RULES
   ════════════════════════════════════════════════════════════════ */
.fc-section {
  position: relative;
  padding: 64px 20px;
  max-width: 1440px;
  margin: 0 auto;
  z-index: 2;
}
@media (min-width: 600px)  { .fc-section { padding: 88px 24px; } }
@media (min-width: 760px)  { .fc-section { padding: 128px 48px; } }
@media (min-width: 1100px) { .fc-section { padding: 160px 80px; } }
.fc-section-tight  { padding-top: 48px; padding-bottom: 48px; }
@media (min-width: 760px) {
  .fc-section-tight { padding-top: 64px; padding-bottom: 64px; }
}
.fc-section-narrow { max-width: 960px; }
.fc-section-band {
  background: var(--fc-mist);
  max-width: none;
}
.fc-section-band > .inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0;
}

/* Section header — tag + h2 + division ledger */
.fc-section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
  padding-bottom: 28px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--fc-navy-ink);
  position: relative;
}
.fc-section-head::before {
  content: "";
  position: absolute;
  bottom: -1px; left: 0;
  width: 64px; height: 3px;
  background: var(--fc-orange);
}
@media (min-width: 760px) {
  .fc-section-head {
    grid-template-columns: 1fr auto;
    gap: 48px;
    padding-bottom: 48px;
    margin-bottom: 56px;
  }
  .fc-section-head::before { width: 80px; }
}
.fc-section-head .meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  font-family: var(--fc-font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--fc-steel-500);
  text-transform: uppercase;
  text-align: left;
  padding-top: 8px;
  border-top: 1px solid var(--fc-steel-100);
}
@media (min-width: 760px) {
  .fc-section-head .meta {
    display: flex; flex-direction: column;
    gap: 4px;
    text-align: right;
    padding-top: 0;
    border-top: none;
  }
}
.fc-section-head .meta b { color: var(--fc-navy-ink); font-weight: 600; font-size: 11px; }

/* ════════════════════════════════════════════════════════════════
   LOGO HELPERS
   ════════════════════════════════════════════════════════════════ */
.fc-logo { display: inline-block; line-height: 0; }
.fc-logo img, .fc-logo svg { display: block; }
.fc-logo-nav    { height: 36px; }
.fc-logo-hero   { height: 88px; }
.fc-logo-footer { height: 56px; }

/* ════════════════════════════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════════════════════════════ */
.fc-mono { font-family: var(--fc-font-mono); font-feature-settings: "tnum" 1; }
.fc-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.fc-mt   { margin-top: 48px; }
.fc-mt-s { margin-top: 16px; }
.fc-mt-l { margin-top: 80px; }
.fc-divider { height: 1px; background: var(--fc-steel-100); width: 100%; margin: 32px 0; }
.fc-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--fc-navy-ink) 0 80px, var(--fc-steel-100) 80px 100%);
  width: 100%;
}
