/* ELITE — containers, grid, section furniture */

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: var(--container-wide); }
.container--text { max-width: var(--container-text); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: calc(var(--section-y) * 0.6); }
.section--invert { background: var(--ink-950); color: var(--ink-000); }
.section--alt { background: var(--bg-alt); }
.section--invert { --rule: var(--rule-invert); --text-muted: #9a9a9a; }

/* 12-column grid for editorial layouts */
.grid { display: grid; gap: var(--grid-gap); grid-template-columns: repeat(12, 1fr); }
.cards { display: grid; gap: var(--grid-gap); grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.cards--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr)); }

/* Exactly four items — auto-fit would leave one orphaned on a second row at
   common desktop widths, so the breakpoints are explicit: 4, then 2, then 1. */
.cards--4 { grid-template-columns: 1fr; }
@media (min-width: 640px)  { .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }

/* --- Section head: eyebrow + rule-underlined title, straight from the deck */
.section-head { margin-bottom: var(--s-7); }
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s-3);
}
/* Uppercase with a heavy rule beneath, matching the section headings in the
   company profile. */
.section-title {
  display: inline-block;
  padding-bottom: var(--s-2);
  border-bottom: 3px solid currentColor;
  text-transform: uppercase;
}
.section-intro {
  margin-top: var(--s-5);
  max-width: var(--container-text);
  font-size: var(--fs-lead);
  color: var(--text-muted);
}
.section--invert .section-intro { color: #b4b4b4; }
