/* ============================================================
   Movers & Shakers — shared stylesheet
   Single source of truth for tokens, layout, components.
   ============================================================ */

:root {
  /* surface */
  --cream:      #F4F1E8;
  --cream-deep: #EDE9DE;
  --pill:       #EAE7DE;
  --card:       #FFFFFF;
  --ink:        #111110;
  --ink-deep:   #12120F;

  /* text */
  --body:       #2B2A23;
  --body-strong:#1B1B16;
  --stone:      #4A4A45;
  --stone-soft: #6A6960;
  --numeral:    #8A8A80;

  /* line + accent */
  --line:       #DED9CC;
  --line-dark:  rgba(255,255,255,0.12);
  --accent:     #5A6B4E;
  --select:     #C8D6BA;

  /* type */
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans:  'Archivo', system-ui, -apple-system, sans-serif;
  --mono:  'IBM Plex Mono', ui-monospace, Menlo, monospace;
  --wordmark: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Inter, system-ui, sans-serif;

  /* rhythm */
  --gutter:     clamp(20px, 4vw, 48px);
  --band:       clamp(56px, 8vw, 120px);
  --band-tight: clamp(44px, 6vw, 80px);
  --rail:       minmax(190px, 280px);
  --nav-h:      74px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; }
::selection { background: var(--select); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- shell ---------- */

.shell {
  max-width: none;
  margin: 0 auto;
  background: var(--cream);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  font-family: var(--mono);
  font-size: 12px;
}
.skip-link:focus { left: 8px; top: 8px; color: var(--cream); }

/* ---------- type primitives ---------- */

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

.lede {
  font-size: clamp(15.5px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--body);
  margin: 0;
  text-wrap: pretty;
}

.prose {
  font-size: clamp(15.5px, 1.15vw, 16.5px);
  line-height: 1.75;
  color: var(--body);
  margin: 0;
  text-wrap: pretty;
}

.pull {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(21px, 2.4vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: pretty;
}

/* ---------- nav ---------- */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 232, 0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}

/* wordmark — SF Pro Display, light, wide-tracked, uppercase.
   No logo. No symbol. Just the confident wordmark. */
.nav__brand {
  font-family: var(--wordmark);
  font-weight: 400;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.nav__link {
  font-family: var(--mono);
  font-size: clamp(10px, 0.85vw, 11px);
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  /* symmetric box: the underline sits below the text without dragging
     the flex centre down with it */
  padding: 3px 0;
  border-top: 1.5px solid transparent;
  border-bottom: 1.5px solid transparent;
}
.nav__link[aria-current='page'] { border-bottom-color: var(--ink); }

.nav__toggle {
  width: 30px;
  height: 30px;
  flex: none;
  border: 1.4px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 17px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transition: background 160ms, color 160ms;
}
.nav__toggle:hover { background: var(--ink); color: var(--cream); }

/* the '+' glyph has no descender, so its ink sits ~1px below the circle's
   geometric centre; nudge it back up. `top`, not `transform` — the open
   state owns transform for the 45deg rotation. */
.nav__toggle span { display: block; position: relative; top: -1px; transition: transform 200ms; }
.nav.is-open .nav__toggle { background: var(--ink); color: var(--cream); }
.nav.is-open .nav__toggle span { transform: rotate(45deg); }

.nav__panel {
  position: absolute;
  top: 100%;
  right: var(--gutter);
  min-width: min(300px, calc(100vw - 2 * var(--gutter)));
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 0;
  padding: 22px 26px 26px;
  display: grid;
  gap: 26px;
  box-shadow: 0 18px 40px rgba(17, 17, 16, 0.10);
}
.nav__panel[hidden] { display: none; }
.nav__panel-group { display: flex; flex-direction: column; gap: 12px; }
.nav__panel-group > .eyebrow { margin-bottom: 2px; }
.nav__panel-group a {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: -0.015em;
}
.nav__panel-group--minor a {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: stretch;
  background: var(--ink);
  color: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 180ms, color 180ms;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn__label { padding: 14px 22px 13px; }
.btn__arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-left: 1.5px solid currentColor;
  font-size: 13px;
  letter-spacing: 0;
}

/* ---------- sections ---------- */

.band { padding: var(--band) var(--gutter); }
.band--flush-top { padding-top: 0; }
.band--tight-bottom { padding-bottom: var(--band-tight); }
.band--rule { border-bottom: 1px solid var(--line); }

.page-header {
  padding: clamp(52px, 7vw, 96px) var(--gutter) clamp(36px, 4.5vw, 64px);
  border-bottom: 1px solid var(--line);
}
.page-header__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
}
.page-header__grid > .lede { max-width: 52ch; }
.page-header h1 { font-size: clamp(38px, 5vw, 72px); max-width: 18ch; letter-spacing: -0.025em; }

/* rail = sticky label column + content column */
.rail {
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: var(--band-tight) var(--gutter);
  align-items: start;
}
.rail__label {
  position: sticky;
  top: calc(var(--nav-h) + 22px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rail__label h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.rail__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 74ch;
}
.rail__body--flush { gap: 0; }

/* numbered rows */
.numbered {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.numbered:last-of-type { border-bottom: 1px solid var(--line); }
.numbered--plain,
.numbered--plain:last-of-type { border: 0; padding: 14px 0; }
.numbered__n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--numeral);
  padding-top: 6px;
}
.numbered__n--serif {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.02em;
  padding-top: 0;
}
.numbered p {
  font-size: clamp(15.5px, 1.2vw, 17px);
  line-height: 1.7;
  color: var(--body-strong);
  margin: 0;
  text-wrap: pretty;
}

/* term / definition rows */
.deflist { display: flex; flex-direction: column; }
.defrow {
  display: grid;
  grid-template-columns: minmax(150px, 240px) minmax(0, 1fr);
  gap: clamp(8px, 2vw, 24px);
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.defrow:last-child { border-bottom: 1px solid var(--line); }
.defrow__term { font-weight: 600; font-size: 15px; letter-spacing: 0.01em; }
.defrow p { font-size: 16px; line-height: 1.7; color: var(--body); margin: 0; text-wrap: pretty; }

/* ---------- hero (home) ---------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - var(--nav-h));
  padding: clamp(48px, 7vw, 96px) var(--gutter) clamp(28px, 3.5vw, 48px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(115% 130% at 82% 14%, rgba(196,186,226,0.78) 0%, rgba(196,186,226,0) 60%),
    radial-gradient(120% 130% at 6% 86%, rgba(176,214,201,0.72) 0%, rgba(176,214,201,0) 62%),
    radial-gradient(90% 100% at 52% 108%, rgba(243,203,188,0.62) 0%, rgba(243,203,188,0) 60%),
    linear-gradient(102deg, #F2ECE3 0%, #E9E6EE 48%, #DCE9E6 100%);
}
.hero__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(16px, 3vw, 48px) 0 clamp(28px, 4vw, 56px);
}
.hero h1 {
  font-size: clamp(40px, 6.2vw, 86px);
  line-height: 0.98;
  text-align: center;
  margin: 0 auto 26px;
  max-width: 16ch;
}
.hero__lede {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto clamp(32px, 4vw, 52px);
}
.hero__cta { display: flex; justify-content: center; }

/* text link with soft chevron */
.textlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--body-strong);
  padding-bottom: 6px;
}
.textlink__label {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  padding-bottom: 4px;
  transition: background-size 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.textlink__chev {
  flex: none;
  opacity: 0.72;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms;
}
.textlink:hover { color: var(--body-strong); }
.textlink:hover .textlink__label { background-size: 0% 1px; }
.textlink:hover .textlink__chev { transform: translateX(5px); opacity: 1; }

/* logo marquee */
.marquee {
  overflow: hidden;
  margin: 0 calc(-1 * var(--gutter));
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 64s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  padding-right: clamp(40px, 6vw, 80px);
}
.marquee__group img {
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- intro split (home) ---------- */

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: start;
}
.intro h2 { font-size: clamp(32px, 3.6vw, 54px); line-height: 1.05; }
.intro__body { display: flex; flex-direction: column; gap: 18px; max-width: 62ch; }

/* ---------- pillar grid (home) ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 56px);
  margin-top: clamp(48px, 6vw, 88px);
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: clamp(32px, 4vw, 48px);
}
.pillar { display: flex; flex-direction: column; gap: 16px; }
.pillar__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 27px);
  letter-spacing: -0.015em;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--ink);
  align-self: flex-start;
  display: block;
}
.pillar p { font-size: 15px; line-height: 1.7; color: var(--body); margin: 0; text-wrap: pretty; }

/* ---------- article cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 28px);
}
.card {
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: transform 180ms, box-shadow 180ms;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,0.08); }
.card__media { aspect-ratio: 16 / 10; flex: none; background: var(--cream-deep); }
.card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card__kicker {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(21px, 1.8vw, 25px);
  line-height: 1.2;
  margin: 14px 0 0;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}
.card__meta {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-soft);
}

/* ---------- portfolio rows ---------- */

.holding {
  display: grid;
  /* the domain link never wraps, so the last track must never be narrower
     than its own min-content or the row spills past the viewport */
  grid-template-columns: clamp(150px, 19vw, 250px) minmax(240px, 1fr) minmax(min-content, clamp(120px, 13vw, 170px));
  gap: clamp(16px, 3vw, 48px);
  align-items: start;
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-bottom: 1px solid var(--line);
}
.holding:last-child { border-bottom: 0; }
.holding__mark {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.holding__name { font-weight: 600; font-size: 21px; letter-spacing: -0.01em; margin-top: 2px; }
.holding p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--body);
  margin: 0;
  max-width: 66ch;
  text-wrap: pretty;
}
.holding__tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.tag { background: var(--pill); border-radius: 20px; padding: 5px 12px; }
.holding__markline {
  display: block;
  align-self: start;
  transition: opacity 200ms;
}
.holding__markline:hover { opacity: 0.62; }
.holding__markline:hover .holding__name { color: var(--accent); }
.holding__visit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  color: var(--body-strong);
}
.holding__visit span:first-child {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  padding-bottom: 3px;
  transition: background-size 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.holding__visit svg { flex: none; opacity: 0.7; transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1); }
.holding__visit:hover { color: var(--body-strong); }
.holding__visit:hover span:first-child { background-size: 0% 1px; }
.holding__visit:hover svg { transform: translateX(4px); opacity: 1; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- story chapters ---------- */

.chapter { border-top: 1px solid var(--line); }
.chapter__year {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--numeral);
}

.figure { margin: 0; display: block; }
.figure img {
  display: block;
  width: 100%;
  height: auto;
}
.figure--frame {
  background: var(--card);
  border: 1px solid var(--line);
  padding: clamp(16px, 2.2vw, 30px);
}
.figure--sm { max-width: 560px; }
.figure--tall img { aspect-ratio: 4 / 5; object-fit: cover; object-position: top; }
.figure__cap {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--stone-soft);
  max-width: 46ch;
}
.rail__body > .figure { margin-top: clamp(10px, 1.4vw, 18px); }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
  align-items: start;
}
.gallery--even { align-items: stretch; }
.gallery--even .figure { display: flex; flex-direction: column; }
.gallery--even .figure img {
  flex: 1;
  min-height: 0;
  aspect-ratio: 5 / 6;
  object-fit: contain;
  object-position: center;
}

.quoteband {
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quoteband .pull { max-width: 24ch; }
.quoteband__grid {
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.closer h2 { font-size: clamp(30px, 3.4vw, 52px); }

.closer {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 2.6vw, 32px);
  align-items: center;
  text-align: center;
  max-width: 52ch;
  margin: 0 auto;
}
.closer h2 { max-width: 20ch; }
.closer .prose { max-width: 48ch; }

/* ---------- forms ---------- */

.form { max-width: 62ch; }
.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(20px, 2.6vw, 36px);
}
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: clamp(22px, 2.6vw, 32px); }
.field__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.field__hint { text-transform: none; letter-spacing: 0.04em; color: var(--numeral); }
.field input,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--line);
  border-radius: 0;
  padding: 9px 2px;
  transition: border-color 180ms;
}
.field textarea { min-height: 116px; resize: vertical; }
.field input:hover,
.field textarea:hover { border-bottom-color: var(--stone-soft); }
.field input:focus,
.field textarea:focus { border-bottom-color: var(--ink); }
.field input:focus:not(:focus-visible),
.field textarea:focus:not(:focus-visible) { outline: none; }

button.btn {
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
button.btn[disabled] { opacity: 0.5; cursor: default; }
button.btn[disabled]:hover { background: var(--ink); color: var(--cream); }

/* .textlink as a <button>: strip UA chrome only. Font, colour and the 6px
   underline gap stay owned by .textlink itself. */
button.textlink {
  border: 0;
  background: none;
  padding: 0 0 6px;
  line-height: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.form__actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
  flex-wrap: wrap;
  margin-top: 10px;
}
.form__status {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--stone);
  margin: 0;
  max-width: 40ch;
}
.form__status:empty { display: none; }
.form__status--ok { color: var(--accent); }
.form__status--err { color: #96382C; }

/* ---------- footer ---------- */

.footer {
  background: var(--ink-deep);
  color: #EDE9DD;
  padding: clamp(44px, 5vw, 64px) var(--gutter) 40px;
}
.footer a:hover { color: #FFFFFF; }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 24px);
  align-items: start;
}
.footer__brand {
  font-family: var(--wordmark);
  font-weight: 300;
  font-size: clamp(15px, 1.3vw, 18px);
  letter-spacing: 0.19em;
  text-transform: uppercase;
  line-height: 1.4;
  color: #FFFFFF;
  max-width: 14ch;
}
.footer__col { display: flex; flex-direction: column; gap: 13px; padding-top: 8px; }
.footer__col a {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #EDE9DD;
}
.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: clamp(44px, 5vw, 72px);
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237, 233, 221, 0.75);
}
.footer__base { justify-content: flex-end; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1080px) {
  .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .footer__brand { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 860px) {
  :root { --nav-h: 66px; }

  /* Contact/Careers stay in the panel below this width */
  .nav__link--connect { display: none; }

  .page-header__grid,
  .intro { grid-template-columns: minmax(0, 1fr); }
  .page-header__grid > .lede { padding-bottom: 0; }

  .rail { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .rail__label { position: static; flex-direction: row; align-items: baseline; gap: 14px; flex-wrap: wrap; }

  .holding {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
  .holding__tags { flex-direction: row; align-items: center; gap: 12px; flex-wrap: wrap; }

  .defrow { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .quoteband__grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .form__row { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 620px) {
  .nav { padding: 14px var(--gutter); }

  .pillars, .cards { grid-template-columns: minmax(0, 1fr); }
  .gallery { grid-template-columns: minmax(0, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .hero h1, .hero__lede { text-align: left; margin-left: 0; }
  .hero h1 { max-width: 100%; }
  .hero__cta { justify-content: flex-start; }
  .hero__inner { align-items: stretch; }

  .numbered { grid-template-columns: 34px minmax(0, 1fr); gap: 14px; }
  .numbered__n--serif { font-size: 26px; }

  .btn { font-size: 10px; }
  .btn__label { padding: 12px 16px 11px; }
}
