/* ==========================================================================
   Design system
   Tokens mirror the reference palette, Bootstrap-3-era container widths
   (750/970/1170) and breakpoints (768/992/1200).
   Typeface: the reference uses Messina Sans (commercially licensed), so we
   substitute Inter, the closest freely-licensed neo-grotesque.
   ========================================================================== */

:root {
  /* Brand */
  --brand-1: #b61a37;   /* crimson  - primary */
  --brand-2: #375f86;   /* blue     - insights */
  --brand-3: #018089;   /* teal     - industries */
  --brand-4: #e18105;   /* orange   - functions */
  --brand-5: #aea513;   /* olive    - careers */
  --brand-1-dark: #8f1429;

  /* Ink and surface */
  --ink:        #242424;
  --ink-2:      #484848;
  --ink-3:      #58585a;
  --ink-muted:  #767676;
  --line:       #e5e5e5;
  --line-soft:  #efefef;
  --surface:    #ffffff;
  --surface-2:  #f6f6f6;
  --surface-3:  #eeebea;
  --sand:       #dbd5cd;
  --navy:       #35495e;

  /* Type */
  --font-sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --fs-hero:  clamp(2.5rem, 1.4rem + 4.6vw, 5rem);
  --fs-h1:    clamp(2.125rem, 1.4rem + 3vw, 3.75rem);
  --fs-h2:    clamp(1.75rem, 1.25rem + 2vw, 2.75rem);
  --fs-h3:    clamp(1.375rem, 1.1rem + 1vw, 1.75rem);
  --fs-h4:    1.125rem;
  --fs-body:  1rem;
  --fs-sm:    0.875rem;
  --fs-xs:    0.75rem;

  /* Space */
  --gutter: 20px;
  --sp-section: clamp(56px, 7vw, 104px);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: .45s;

  /* Chrome */
  --header-h: 74px;
  --utility-h: 36px;
}

/* --------------------------------------------------------------- Reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, p, figure, blockquote { margin: 0; }
.list--unstyled { list-style: none; margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--brand-1); outline-offset: 3px; }

.u-visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; font-size: var(--fs-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ----------------------------------------------------------- Container -- */
.container { width: 100%; padding-inline: var(--gutter); margin-inline: auto; }
@media (min-width: 768px)  { .container { width: 750px; } }
@media (min-width: 992px)  { .container { width: 970px; } }
@media (min-width: 1200px) { .container { width: 1170px; } }
.container--wide { max-width: 1560px; width: 100%; }

.section { padding-block: var(--sp-section); }
.section--tight { padding-block: clamp(40px, 4.5vw, 64px); }
.section--grey { background: var(--surface-2); }
.section--sand { background: var(--surface-3); }
.section--ink { background: var(--ink); color: #fff; }

/* ---------------------------------------------------------- Typography -- */
.text__heading--largest,
.text__heading--large,
.text__heading--medium,
.text__heading--small {
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.018em;
}
.text__heading--largest { font-size: var(--fs-hero); }
.text__heading--large   { font-size: var(--fs-h1); }
.text__heading--medium  { font-size: var(--fs-h2); }
.text__heading--small   { font-size: var(--fs-h3); line-height: 1.2; letter-spacing: -0.01em; }

.kicker {
  display: inline-block;
  font-size: var(--fs-xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand-1);
}
.kicker--light { color: rgba(255,255,255,.82); }
.kicker--muted { color: var(--ink-muted); }

.lede { font-size: clamp(1.0625rem, 1rem + .5vw, 1.375rem); line-height: 1.55; color: var(--ink-2); font-weight: 300; }
.body-copy { color: var(--ink-3); }
.measure    { max-width: 62ch; }
.measure--narrow { max-width: 48ch; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* -------------------------------------------------------------- Links -- */
.text-link {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: var(--fs-sm); font-weight: 600; letter-spacing: .01em;
  color: var(--brand-1);
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size var(--dur) var(--ease);
}
.text-link:hover, .text-link:focus-visible { background-size: 100% 1px; }
.text-link--light { color: #fff; }
.text-link--ink   { color: var(--ink); }
.text-link .arrow { transition: transform var(--dur) var(--ease); }
.text-link:hover .arrow { transform: translateX(5px); }

/* ------------------------------------------------------------ Buttons -- */
.btn {
  --btn-bg: var(--brand-1); --btn-fg: #fff; --btn-bd: var(--brand-1);
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 14px 30px; min-height: 50px;
  font-size: var(--fs-sm); font-weight: 600; letter-spacing: .02em;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 1px solid var(--btn-bd); border-radius: 0; cursor: pointer;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn--primary:hover, .btn--primary:focus-visible { --btn-bg: var(--brand-1-dark); --btn-bd: var(--brand-1-dark); }
.btn--keyline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--ink); }
.btn--keyline:hover { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn--keyline-white { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.75); }
.btn--keyline-white:hover { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn--rounded-full { border-radius: 999px; }
@media (max-width: 559px) { .btn--xs-full { width: 100%; } }

/* ------------------------------------------------------------- Header -- */
.utility-bar {
  height: var(--utility-h);
  background: var(--ink);
  color: rgba(255,255,255,.72);
  font-size: var(--fs-xs);
  display: flex; align-items: center;
}
.utility-bar .container { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.utility-bar a, .utility-bar button {
  letter-spacing: .06em; text-transform: uppercase; background: none; border: 0;
  cursor: pointer; color: inherit; transition: color .3s var(--ease); font-size: var(--fs-xs);
}
.utility-bar a:hover, .utility-bar button:hover { color: #fff; }
.utility-bar__sep { width: 1px; height: 14px; background: rgba(255,255,255,.22); }
@media (max-width: 767px) { .utility-bar__desk { display: none; } }

.lang-select {
  background: transparent; border: 0; color: inherit; text-transform: uppercase;
  letter-spacing: .06em; cursor: pointer; padding-right: 2px;
}
.lang-select option { color: var(--ink); }

.site-header {
  position: sticky; top: 0; z-index: 90;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  transition: transform var(--dur) var(--ease), box-shadow .3s var(--ease);
}
.site-header--scrolled { box-shadow: 0 2px 22px rgba(0,0,0,.07); }
.site-header--hidden   { transform: translateY(-105%); }
.header__inner { display: flex; align-items: center; gap: 32px; height: var(--header-h); }

.wordmark { display: inline-flex; flex-direction: column; line-height: 1; flex: 0 0 auto; }
.wordmark__name { font-size: 1.0625rem; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; white-space: nowrap; }
.wordmark__rule { margin-top: 7px; width: 34px; height: 2px; background: var(--brand-1); }

.primary-nav { margin-left: auto; display: none; }
@media (min-width: 1200px) { .primary-nav { display: block; } }
.primary-nav__list { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.primary-nav__link {
  position: relative; display: inline-block; padding: 26px 0;
  font-size: var(--fs-sm); font-weight: 500; color: var(--ink-2);
  background: none; border: 0; cursor: pointer;
  transition: color .3s var(--ease);
}
.primary-nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 18px; height: 2px;
  background: var(--brand-1); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.primary-nav__link:hover, .primary-nav__link[aria-expanded="true"], .primary-nav__link.is-current { color: var(--ink); }
.primary-nav__link:hover::after,
.primary-nav__link[aria-expanded="true"]::after,
.primary-nav__link.is-current::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
@media (min-width: 1200px) { .header__actions { margin-left: 18px; } }
.icon-btn {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 0; color: var(--ink-2); cursor: pointer;
  transition: color .3s var(--ease);
}
.icon-btn:hover { color: var(--brand-1); }
.nav-toggle { display: inline-flex; }
@media (min-width: 1200px) { .nav-toggle { display: none; } }
.nav-toggle__bars { position: relative; width: 22px; height: 12px; }
.nav-toggle__bars span {
  position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor;
  transition: transform var(--dur) var(--ease), opacity .2s var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }

/* ---------------------------------------------------------- Mega menu -- */
.sub-header {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--surface); border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.sub-header.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-header__inner { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 56px; padding-block: 44px 52px; }
.sub-header__title { font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 18px; font-weight: 600; }
.sub-header__columns { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px 36px; }
.sub-header__link { display: block; padding: 7px 0; font-size: var(--fs-sm); color: var(--ink-2); transition: color .25s var(--ease), transform .25s var(--ease); }
.sub-header__link:hover { color: var(--brand-1); transform: translateX(3px); }
.sub-header__right { border-left: 1px solid var(--line); padding-left: 44px; }
.sub-header__promo-img { aspect-ratio: 16/10; background: var(--surface-2); margin-bottom: 16px; overflow: hidden; }
.sub-header__promo-img img { width: 100%; height: 100%; object-fit: cover; }
.sub-header__promo-title { font-size: var(--fs-h4); font-weight: 500; line-height: 1.35; margin-bottom: 10px; }

/* ------------------------------------------------------- Mobile drawer -- */
.drawer {
  position: fixed; inset: 0; z-index: 120;
  background: var(--surface);
  display: flex; flex-direction: column;
  transform: translateX(100%); visibility: hidden;
  transition: transform .4s var(--ease), visibility .4s;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); border-bottom: 1px solid var(--line); padding-inline: var(--gutter); flex: 0 0 auto; }
.drawer__nav { padding: 12px var(--gutter) 40px; }
.drawer__item { border-bottom: 1px solid var(--line-soft); }
.drawer__link {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 18px 0; background: none; border: 0; text-align: left;
  font-size: 1.125rem; font-weight: 300; letter-spacing: -.01em; cursor: pointer; color: inherit;
}
.drawer__link .chev { transition: transform .3s var(--ease); color: var(--brand-1); flex: 0 0 auto; }
.drawer__link[aria-expanded="true"] .chev { transform: rotate(90deg); }
.drawer__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.drawer__panel.is-open { grid-template-rows: 1fr; }
.drawer__panel > div { overflow: hidden; }
.drawer__sublink { display: block; padding: 9px 0 9px 14px; font-size: var(--fs-sm); color: var(--ink-3); border-left: 1px solid var(--line); }
.drawer__sublink:hover { color: var(--brand-1); border-color: var(--brand-1); }
.drawer__panel > div > :last-child { margin-bottom: 14px; }
.drawer__foot { margin-top: auto; padding: 24px var(--gutter) 40px; background: var(--surface-2); }

/* ------------------------------------------------------------- Search -- */
.search-overlay {
  position: fixed; inset: 0; z-index: 130; background: rgba(36,36,36,.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-overlay__form { width: min(760px, 88vw); }
.search-overlay__field { display: flex; align-items: center; gap: 14px; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 14px; color: #fff; }
.search-overlay__input {
  flex: 1; background: none; border: 0; color: #fff;
  font-size: clamp(1.5rem, 1rem + 2.4vw, 2.75rem); font-weight: 300; letter-spacing: -.02em;
}
.search-overlay__input::placeholder { color: rgba(255,255,255,.4); }
.search-overlay__input:focus { outline: none; }
.search-overlay__hint { margin-top: 18px; color: rgba(255,255,255,.55); font-size: var(--fs-sm); }
.search-overlay__close { position: absolute; top: 22px; right: 22px; color: #fff; }
.search-results { margin-top: 26px; max-height: 46vh; overflow-y: auto; }
.search-results a {
  display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.85); font-size: var(--fs-sm);
}
.search-results a:hover { color: #fff; }
.search-results strong { display: block; font-size: 1rem; font-weight: 500; margin-bottom: 2px; }

/* --------------------------------------------------------------- Hero -- */
.hero { position: relative; min-height: min(78vh, 720px); display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); }
.hero--short { min-height: min(56vh, 520px); }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,.55) 0%, rgba(20,20,20,.12) 42%, rgba(15,15,15,.85) 100%);
}
.hero__inner { position: relative; padding-block: clamp(48px, 7vw, 96px); color: #fff; width: 100%; }
.hero__title { max-width: 17ch; margin-block: 18px 22px; }
.hero__sub { max-width: 54ch; color: rgba(255,255,255,.86); font-weight: 300; font-size: clamp(1rem, .95rem + .4vw, 1.25rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.page-hero { background: var(--surface-2); padding-block: clamp(52px, 6vw, 92px) clamp(40px, 5vw, 72px); border-bottom: 1px solid var(--line); }
.page-hero__title { max-width: 20ch; margin-block: 16px 20px; }
.breadcrumb { font-size: var(--fs-xs); color: var(--ink-muted); letter-spacing: .06em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--brand-1); }

/* -------------------------------------------------------------- Cards -- */
.grid { display: grid; gap: clamp(24px, 3vw, 44px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.grid--flush { gap: 0; }

/* Bordered feature row (the 3-up under the hero) */
.feature-row { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.feature-card {
  display: flex; flex-direction: column; gap: 12px;
  padding: 38px clamp(20px, 3vw, 40px) 42px;
  border-right: 1px solid var(--line);
  background: var(--surface);
  transition: background-color var(--dur) var(--ease);
}
.feature-card:last-child { border-right: 0; }
.feature-card:hover { background: var(--surface-2); }
.feature-card__title { font-size: var(--fs-h4); font-weight: 500; line-height: 1.35; letter-spacing: -.01em; }
.feature-card__meta { font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); }
.feature-card p { font-size: var(--fs-sm); color: var(--ink-3); }
.feature-card .text-link { margin-top: auto; align-self: flex-start; }

/* Editorial card with image */
.card { display: flex; flex-direction: column; background: var(--surface); }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__tag {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  background: var(--brand-1); color: #fff;
  font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  padding: 7px 14px;
}
.card__tag--blue { background: var(--brand-2); }
.card__tag--teal { background: var(--brand-3); }
.card__tag--orange { background: var(--brand-4); }
.card__tag--olive { background: var(--brand-5); }
.card__body { padding: 20px 0 4px; display: flex; flex-direction: column; gap: 10px; }
.card__title { font-size: var(--fs-h4); font-weight: 500; line-height: 1.35; letter-spacing: -.01em; transition: color .3s var(--ease); }
.card:hover .card__title { color: var(--brand-1); }
.card__meta { font-size: var(--fs-xs); color: var(--ink-muted); letter-spacing: .06em; text-transform: uppercase; }
.card__excerpt { font-size: var(--fs-sm); color: var(--ink-3); }

/* Feature (wide) editorial block */
.feature-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); gap: clamp(28px, 4vw, 64px); align-items: center; }
.feature-split__media { aspect-ratio: 3/2; overflow: hidden; background: var(--surface-2); }
.feature-split__media img { width: 100%; height: 100%; object-fit: cover; }

/* Practice / capability tiles */
.tile {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 250px; padding: 28px; background: var(--surface-2);
  border-left: 3px solid var(--accent, var(--brand-1));
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.09); }
.tile__num { font-size: var(--fs-xs); letter-spacing: .14em; color: var(--ink-muted); margin-bottom: auto; }
.tile__title { font-size: 1.375rem; font-weight: 300; letter-spacing: -.015em; margin-bottom: 8px; }
.tile p { font-size: var(--fs-sm); color: var(--ink-3); }

/* Link list rows (functions / industries index) */
.row-link {
  display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 18px;
  padding: 26px 0; border-bottom: 1px solid var(--line);
  transition: padding-left var(--dur) var(--ease);
}
.row-link:first-child { border-top: 1px solid var(--line); }
.row-link:hover { padding-left: 10px; }
.row-link__num { font-size: var(--fs-xs); color: var(--ink-muted); letter-spacing: .1em; }
.row-link__title { font-size: clamp(1.125rem, 1rem + .6vw, 1.5rem); font-weight: 300; letter-spacing: -.015em; }
.row-link__desc { font-size: var(--fs-sm); color: var(--ink-3); margin-top: 4px; max-width: 68ch; }
.row-link__arrow { color: var(--brand-1); transition: transform var(--dur) var(--ease); }
.row-link:hover .row-link__arrow { transform: translateX(6px); }

/* --------------------------------------------------------------- Stats -- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); gap: clamp(28px, 4vw, 56px); }
.stat__value { font-size: clamp(2.75rem, 2rem + 3vw, 4.5rem); font-weight: 300; line-height: 1; letter-spacing: -.03em; color: var(--brand-1); }
.stat__label { margin-top: 12px; font-size: var(--fs-sm); color: var(--ink-3); max-width: 24ch; }
.section--ink .stat__value { color: #fff; }
.section--ink .stat__label { color: rgba(255,255,255,.7); }

/* ---------------------------------------------------------- Consultant -- */
.person { display: flex; flex-direction: column; gap: 12px; }
.person__photo { aspect-ratio: 3/4; overflow: hidden; background: var(--surface-2); }
.person__photo img { width: 100%; height: 100%; object-fit: cover; }
.person__name { font-size: var(--fs-h4); font-weight: 500; }
.person__role { font-size: var(--fs-sm); color: var(--ink-3); }
.person__loc { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-muted); }

/* --------------------------------------------------------- Filter bar -- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; padding-block: 20px; border-bottom: 1px solid var(--line); }
.filter-input, .filter-select {
  border: 1px solid var(--line); background: var(--surface); padding: 12px 14px; min-height: 46px;
  font-size: var(--fs-sm); min-width: 180px; flex: 1 1 180px; max-width: 320px;
}
.filter-input:focus, .filter-select:focus { outline: none; border-color: var(--ink); }
.filter-count { margin-left: auto; font-size: var(--fs-sm); color: var(--ink-muted); }
.is-hidden { display: none !important; }
.empty-state { padding: 60px 0; text-align: center; color: var(--ink-muted); }

/* ------------------------------------------------------------- Quote --- */
.pull-quote { border-left: 3px solid var(--brand-1); padding-left: clamp(20px, 3vw, 40px); }
.pull-quote__text { font-size: clamp(1.375rem, 1.1rem + 1.4vw, 2.125rem); font-weight: 300; line-height: 1.3; letter-spacing: -.02em; }
.pull-quote__cite { margin-top: 20px; font-size: var(--fs-sm); color: var(--ink-muted); font-style: normal; }

/* --------------------------------------------------------------- Map --- */
.office-map { background: var(--surface-2); border: 1px solid var(--line); padding: clamp(20px, 3vw, 40px); }
.office-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.office { background: var(--surface); padding: 24px; transition: background-color .3s var(--ease); }
.office:hover { background: var(--surface-2); }
.office__city { font-size: var(--fs-h4); font-weight: 500; margin-bottom: 6px; }
.office__addr { font-size: var(--fs-sm); color: var(--ink-3); line-height: 1.5; }
.office__tel { font-size: var(--fs-sm); color: var(--ink-muted); margin-top: 8px; }

/* ----------------------------------------------------------- Newsletter -- */
.newsletter { background: var(--ink); color: #fff; }
.newsletter__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: clamp(28px, 4vw, 64px); align-items: center; }
.newsletter__form { display: flex; flex-wrap: wrap; gap: 12px; }
.newsletter__input {
  flex: 1 1 240px; background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.35); padding: 14px 18px; min-height: 50px;
}
.newsletter__input::placeholder { color: rgba(255,255,255,.45); }
.newsletter__input:focus { outline: none; border-color: #fff; }
.newsletter__note { margin-top: 14px; font-size: var(--fs-xs); color: rgba(255,255,255,.55); max-width: 52ch; }
.form-status { margin-top: 14px; font-size: var(--fs-sm); color: #fff; }
.form-status:empty { margin: 0; }

/* ------------------------------------------------------------- Footer -- */
.site-footer { background: var(--surface-2); border-top: 1px solid var(--line); padding-block: clamp(48px, 5vw, 76px) 32px; }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); gap: 36px; }
.footer__heading { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.footer__link { display: block; padding: 6px 0; font-size: var(--fs-sm); color: var(--ink-3); transition: color .25s var(--ease); }
.footer__link:hover { color: var(--brand-1); }
.footer__social { display: flex; gap: 10px; margin-top: 4px; }
.social-link {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); color: var(--ink-3); background: var(--surface);
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.social-link:hover { background: var(--brand-1); border-color: var(--brand-1); color: #fff; }
.footer__bottom {
  margin-top: clamp(36px, 4vw, 56px); padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 22px; align-items: center;
  font-size: var(--fs-xs); color: var(--ink-muted);
}
.footer__legal-links { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.footer__legal-links a:hover { color: var(--brand-1); }
.footer__disclaimer { flex-basis: 100%; color: #8b8b8b; line-height: 1.5; }

/* ---------------------------------------------------------- Utilities -- */
.u-mt-sm { margin-top: 12px; } .u-mt-md { margin-top: 24px; } .u-mt-lg { margin-top: 40px; }
.u-mb-sm { margin-bottom: 12px; } .u-mb-md { margin-bottom: 24px; } .u-mb-lg { margin-bottom: 40px; }
.u-flex-between { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.color--brand-1 { color: var(--brand-1); }
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr)); gap: clamp(28px, 4vw, 72px); align-items: start; }
.split--center { align-items: center; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Horizontal rail on small screens */
@media (max-width: 767px) {
  .rail {
    display: grid; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 78%;
    gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
    margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
    scrollbar-width: none;
  }
  .rail::-webkit-scrollbar { display: none; }
  .rail > * { scroll-snap-align: start; }
  .feature-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-card:last-child { border-bottom: 0; }
  .sub-header { display: none; }
  .row-link { grid-template-columns: 1fr auto; }
  .row-link__num { display: none; }
}
@media print { .site-header, .utility-bar, .site-footer, .drawer, .search-overlay { display: none !important; } }
