/* =========================================================
   Prime Brands Group
   Ink on paper, hairline rules, flat colour fields.
   Palette taken from the group logo: azure #1EA8FD on white.
   Typography echoes the logo lockup: one heavy line, one light.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Group blue, straight off the logo */
  --blue:        #1EA8FD;
  --blue-deep:   #0B6DAE;   /* carries white text at small sizes */
  --blue-tint:   #E8F5FE;
  --navy:        #072C45;   /* dark fields and footer */

  /* Ink: near-black pulled toward the blue, never neutral grey */
  --ink:         #0E1B25;
  --ink-80:      #2C3D48;
  --ink-60:      #4E5D67;
  --ink-40:      #78868F;

  --paper:       #FFFFFF;
  --panel:       #EFF5F9;
  --panel-2:     #DDE9F1;

  --rule:        #D5E0E8;
  --rule-mid:    #B6C6D2;
  --rule-ink:    rgba(255,255,255,.2);

  /* The four operating brands keep their own colours */
  --fk: #1B4E80;   /* Flight Knight — travel navy  */
  --ap: #0F7D77;   /* Air Pro — air treatment teal */
  --gf: #D8431C;   /* GET FIT — signal orange      */
  --mh: #7A6552;   /* Monhouse — clay              */

  --maxw:      1280px;
  --gutter:    clamp(20px, 4.5vw, 60px);
  --header-h:  74px;

  --sans: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-80);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  color: var(--ink);
  margin: 0 0 .5em;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.026em;
  text-wrap: balance;
}
p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1.05em; padding-left: 1.1em; }
li { margin-bottom: .4em; }
strong { font-weight: 600; color: var(--ink); }
code { font-family: var(--mono); font-size: .9em; }

:focus-visible { outline: 2px solid var(--blue-deep); outline-offset: 3px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 7vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 68px); }
.section--panel { background: var(--panel); }
.section--ink { background: var(--navy); color: rgba(255,255,255,.74); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink strong { color: #fff; }
.section + .section:not(.section--panel):not(.section--ink) { border-top: 1px solid var(--rule); }

.grid { display: grid; gap: clamp(24px, 3vw, 44px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (max-width: 620px) { .grid-2 { grid-template-columns: minmax(0,1fr); } }

/* Editorial two-column: a narrow labelled column, then the text */
.cols {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}
.cols--even { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cols--mid { align-items: center; }
@media (max-width: 900px) { .cols, .cols--even { grid-template-columns: minmax(0,1fr); } }

/* ---------- Type ---------- */
.label {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin: 0 0 18px;
  display: block;
}
.section--ink .label { color: var(--blue); }

.h-display { font-size: clamp(38px, 6vw, 76px); letter-spacing: -0.036em; line-height: .98; }
.h1 { font-size: clamp(32px, 4.4vw, 54px); letter-spacing: -0.032em; }
.h2 { font-size: clamp(26px, 3vw, 40px); letter-spacing: -0.028em; }
.h3 { font-size: clamp(19px, 1.5vw, 23px); letter-spacing: -0.018em; }

/* The logo pairs a heavy line with a light one; standfirsts do the same */
.standfirst {
  font-weight: 300;
  font-size: clamp(19px, 1.85vw, 25px);
  line-height: 1.42;
  letter-spacing: -0.016em;
  color: var(--ink-80);
}
.section--ink .standfirst { color: rgba(255,255,255,.86); }
.lead { font-size: clamp(17px, 1.3vw, 19px); line-height: 1.58; }
.measure { max-width: 58ch; }
.measure-sm { max-width: 42ch; }
.measure-lg { max-width: 20ch; }
.muted { color: var(--ink-60); }
.section--ink .muted { color: rgba(255,255,255,.62); }

/* ---------- Links and actions ---------- */
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 15px 24px;
  border: 1px solid var(--navy);
  background: var(--navy); color: #fff;
  cursor: pointer;
  transition: background-color .18s linear, color .18s linear, border-color .18s linear;
}
.btn:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: #fff; }
.btn--outline { background: transparent; color: var(--navy); }
.btn--outline:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn--on-ink { background: #fff; color: var(--navy); border-color: #fff; }
.btn--on-ink:hover { background: var(--blue); border-color: var(--blue); color: var(--navy); }
.btn--on-ink-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--on-ink-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }

.tlink {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-deep);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--blue);
  transition: color .18s linear, border-color .18s linear;
}
.tlink:hover { color: var(--navy); border-bottom-color: var(--navy); }
.tlink::after { content: " \2192"; }
/* Links that carry a brand name keep that brand's own casing:
   "Visit air pro", "Visit MONHOUSE", "Visit Flight Knight". */
.tlink--cased { text-transform: none; letter-spacing: .02em; font-size: 13.5px; }
.section--ink .tlink { color: #fff; border-bottom-color: var(--blue); }
.section--ink .tlink:hover { border-bottom-color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.site-header .wrap { display: flex; align-items: center; gap: 24px; width: 100%; }

.logo { display: inline-flex; align-items: center; flex: none; }
.logo img { height: 34px; width: auto; }
.site-footer .logo img { height: 40px; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.nav a {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-60);
  padding-block: 5px;
  border-bottom: 2px solid transparent;
  transition: color .18s linear, border-color .18s linear;
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--blue); }
.nav .nav-cta { color: var(--blue-deep); border-bottom-color: var(--rule-mid); }
.nav .nav-cta:hover { color: var(--navy); border-bottom-color: var(--blue); }

.burger {
  display: none; margin-left: auto;
  width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer;
  align-items: center; justify-content: center;
}
.burger span { display: block; width: 20px; height: 1.5px; background: var(--ink); position: relative; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 1.5px; background: var(--ink);
  transition: transform .22s linear, top .22s linear;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { top: 0; transform: rotate(45deg); }
body.nav-open .burger span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1000px) {
  .burger { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 0 var(--gutter) 24px;
    display: none;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  body.nav-open .nav { display: flex; }
  .nav a { font-size: 13px; padding: 18px 0; border-bottom: 1px solid var(--rule); }
  .nav a[aria-current="page"] { border-bottom-color: var(--rule); color: var(--blue-deep); }
  .nav .nav-cta { border-bottom-color: var(--rule); }
}

.skip {
  position: absolute; left: 10px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 18px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
}
.skip:focus { top: 10px; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(52px, 7vw, 100px) clamp(36px, 4vw, 60px); }
.hero__head {
  display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
  gap: clamp(28px, 5vw, 72px); align-items: center;
}
@media (max-width: 900px) { .hero__head { grid-template-columns: minmax(0,1fr); align-items: start; } }
.hero h1 { margin-bottom: 0; }
.hero__aside .standfirst { margin-bottom: 26px; }

/* Full-bleed blue band directly under the hero */
.band-blue { background: var(--blue-deep); color: #fff; }
.band-blue .data-strip { border-top: 0; margin-top: 0; }
.band-blue .data-strip > * { border-right-color: rgba(255,255,255,.28); }
.band-blue .figure { color: #fff; }
.band-blue .figure__note { color: rgba(255,255,255,.85); }
.band-blue .wrap { padding-block: 10px; }
.band-blue .data-strip > * { padding: 16px 20px; text-align: center; }
.band-blue .data-strip > * + * { padding-left: 20px; }
.band-blue .figure { margin-bottom: 6px; }
.band-blue .figure__note { max-width: 26ch; margin-inline: auto; }
.band-blue .label { color: rgba(255,255,255,.8); }

/* Page hero on inner pages */
.page-hero { padding-block: clamp(44px, 5.5vw, 80px) clamp(36px, 4vw, 56px); border-bottom: 1px solid var(--rule); }
.page-hero h1 { margin-bottom: 22px; }

.crumbs {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-40); margin-bottom: 26px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.crumbs a { color: var(--blue-deep); }
.crumbs a:hover { color: var(--navy); }
.crumbs [aria-current] { color: var(--ink-60); }

/* ---------- Data strip ---------- */
.data-strip {
  display: grid; grid-template-columns: repeat(var(--n, 4), minmax(0,1fr));
  border-top: 2px solid var(--blue);
  margin-top: clamp(36px, 4.5vw, 60px);
}
.data-strip > * { padding: 22px 26px 26px 0; border-right: 1px solid var(--rule); }
.data-strip > *:last-child { border-right: 0; }
.data-strip > * + * { padding-left: 26px; }
.section--ink .data-strip > * { border-right-color: var(--rule-ink); }

.figure {
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1;
  color: var(--ink); margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.section--ink .figure { color: #fff; }
.figure__note { font-size: 13.5px; line-height: 1.45; color: var(--ink-60); max-width: 22ch; }
.section--ink .figure__note { color: rgba(255,255,255,.64); }

@media (max-width: 780px) {
  .data-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .data-strip > *:nth-child(2n) { border-right: 0; }
  .data-strip > *:nth-child(n+3) { border-top: 1px solid var(--rule); padding-top: 22px; }
  .section--ink .data-strip > *:nth-child(n+3),
  .band-blue .data-strip > *:nth-child(n+3) { border-top-color: rgba(255,255,255,.28); }
}
@media (max-width: 440px) {
  .data-strip { grid-template-columns: minmax(0,1fr); }
  .data-strip > * { border-right: 0; padding-left: 0 !important; }
  .data-strip > * + * { border-top: 1px solid var(--rule); padding-top: 22px; }
}

/* ---------- Definition rows ---------- */
.rows { border-top: 2px solid var(--blue); }
.rows > * {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
  gap: clamp(16px, 3vw, 48px);
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}
.rows h3 { font-size: 18.5px; margin: 0; letter-spacing: -0.015em; }
.rows p { font-size: 16px; margin: 0; max-width: 68ch; }
.rows--num > * { grid-template-columns: 44px minmax(0, 3fr) minmax(0, 8fr); }
.rows .idx { font-family: var(--mono); font-size: 12px; color: var(--blue); letter-spacing: .06em; padding-top: 3px; }
.section--ink .rows > * { border-bottom-color: var(--rule-ink); }
.section--ink .rows p { color: rgba(255,255,255,.7); }
@media (max-width: 720px) {
  .rows > *, .rows--num > * { grid-template-columns: minmax(0,1fr); gap: 8px; }
  .rows .idx { display: none; }
}

/* ---------- Notes list ---------- */
.notes { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.notes > * { padding: 22px 0; border-bottom: 1px solid var(--rule); }
.notes h3 { font-size: 17px; margin: 0 0 6px; }
.notes p { font-size: 15.5px; margin: 0; color: var(--ink-60); }
.section--ink .notes { border-top-color: var(--rule-ink); }
.section--ink .notes > * { border-bottom-color: var(--rule-ink); }
.section--ink .notes p { color: rgba(255,255,255,.66); }

/* ---------- Brand portfolio ----------
   Logos sit in their own bordered frame; the text below stays open, so the
   repeated object is the lockup, not a card wrapped around everything. */
.cat-block + .cat-block { margin-top: clamp(44px, 5vw, 72px); }
.cat-head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 18px;
  border-top: 2px solid var(--blue);
  padding-top: 14px; margin-bottom: 26px;
}
.cat-head h3 { font-size: clamp(19px, 1.6vw, 22px); margin: 0; }
.cat-head .count {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-40); margin-left: auto;
}

/* Column count follows the number of brands, so no row sits half empty */
.brand-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(20px, 2.4vw, 34px); }
.brand-cards[data-count="2"] { grid-template-columns: repeat(2, minmax(0,1fr)); }
.brand-cards[data-count="1"] { grid-template-columns: minmax(0,1fr); }
.brand-cards[data-count="1"] .brand-card {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(20px, 4vw, 52px); align-items: start;
}
.brand-cards[data-count="1"] .brand-card__mark { margin-bottom: 0; }
@media (max-width: 900px) { .brand-cards { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 760px) {
  .brand-cards[data-count="1"] .brand-card { display: block; }
  .brand-cards[data-count="1"] .brand-card__mark { margin-bottom: 18px; }
}
@media (max-width: 560px) { .brand-cards, .brand-cards[data-count="2"] { grid-template-columns: minmax(0,1fr); } }

.brand-card { display: block; color: inherit; }
.brand-card__mark {
  border: 1px solid var(--rule); background: #fff;
  /* definite height, not aspect-ratio: percentage max-height on the logo only
     resolves against a definite box, and these marks vary wildly in ratio */
  height: clamp(122px, 11vw, 158px);
  display: grid; place-items: center;
  padding: 18px 26px; margin-bottom: 18px;
  transition: border-color .18s linear;
}
.brand-card:hover .brand-card { display: block; color: inherit; }
.brand-card__mark { border-color: var(--blue); }
.brand-card__mark img { height: calc(var(--h, 34px) * 1.5); width: auto; max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-card h3 { font-size: 19px; margin: 0 0 6px; }
.brand-card__body > p { font-size: 15.5px; margin: 0; color: var(--ink-60); }

.spec {
  display: flex; flex-wrap: wrap; gap: 0 20px;
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-40);
}
.spec span { padding-block: 3px; }

/* ---------- Brand detail (brands page) ----------
   One grid for all eight: image left, text right, every element on the same
   left edge. Logos sit on a shared baseline in a fixed-height row and are
   sized by cap height, so a long wordmark and a stacked lockup read as equals. */
.brand-detail { border-top: 1px solid var(--rule); }
.brand-detail > .wrap { padding-block: clamp(44px, 5vw, 78px); }
.brand-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 900px) { .brand-detail__grid { grid-template-columns: minmax(0,1fr); } }

.brand-detail__media { aspect-ratio: 16 / 9; background: var(--panel); overflow: hidden; }
.brand-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.brand-detail__media--pending { display: grid; place-items: center; padding: 10%; }
.brand-detail__media--pending img {
  width: auto; height: auto; max-width: 58%; max-height: 46%; object-fit: contain;
}

/* Fixed-height row, logo hung from the baseline: this is what lines the page up */
.brand-logo { display: flex; align-items: flex-end; height: 84px; margin-bottom: 22px; }
.brand-logo img {
  height: var(--h, 34px); width: auto; max-width: 100%;
  object-fit: contain; object-position: left bottom;
}
.brand-detail__info > .label { margin-bottom: 14px; }
.brand-detail__info .standfirst { margin-bottom: 18px; }
.brand-detail__info .spec { margin-top: 22px; }

/* ---------- Brand detail (brands page) ----------
   One grid for all eight: image left, text right, every element on the same
   left edge. Logos sit on a shared baseline in a fixed-height row and are
   sized by cap height, so a long wordmark and a stacked lockup read as equals. */
.brand-detail { border-top: 1px solid var(--rule); }
.brand-detail > .wrap { padding-block: clamp(44px, 5vw, 78px); }
.brand-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 900px) { .brand-detail__grid { grid-template-columns: minmax(0,1fr); } }

.brand-detail__media { aspect-ratio: 16 / 9; background: var(--panel); overflow: hidden; }
.brand-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.brand-detail__media--pending { display: grid; place-items: center; padding: 10%; }
.brand-detail__media--pending img {
  width: auto; height: auto; max-width: 58%; max-height: 46%; object-fit: contain;
}

/* Fixed-height row, logo hung from the baseline: this is what lines the page up */
.brand-logo { display: flex; align-items: flex-end; height: 84px; margin-bottom: 22px; }
.brand-logo img {
  height: var(--h, 34px); width: auto; max-width: 100%;
  object-fit: contain; object-position: left bottom;
}
.brand-detail__info > .label { margin-bottom: 14px; }
.brand-detail__info .standfirst { margin-bottom: 18px; }
.brand-detail__info .spec { margin-top: 22px; }

/* Logo strip */

.brand-detail__range, .brand-detail__where {
  margin-top: clamp(28px, 3.2vw, 42px);
  padding-top: clamp(24px, 2.8vw, 32px);
  border-top: 1px solid var(--rule);
}
.brand-detail__where > p:not(.label) { font-size: 15.8px; color: var(--ink-60); }

.range { margin: 0; display: grid; gap: 0; }
.range > div {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: 8px clamp(16px, 2.5vw, 34px);
  padding: 11px 0; border-bottom: 1px solid var(--rule);
}
.range > div:first-child { border-top: 1px solid var(--rule); }
.range dt { font-weight: 600; color: var(--ink); font-size: 15.5px; }
.range dd { margin: 0; font-size: 15.5px; color: var(--ink-60); }
@media (max-width: 620px) { .range > div { grid-template-columns: minmax(0,1fr); gap: 2px; } }

/* ---------- Chronology ---------- */
.chrono { border-top: 2px solid var(--blue); }
.chrono > * {
  display: grid; grid-template-columns: 132px minmax(0,1fr);
  gap: clamp(14px, 3vw, 36px);
  padding: 26px 0; border-bottom: 1px solid var(--rule);
}
.chrono dt {
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue-deep); padding-top: 4px;
}
.chrono dd { margin: 0; }
.chrono h3 { font-size: 19px; margin: 0 0 6px; }
.chrono p { font-size: 15.8px; margin: 0; }
@media (max-width: 620px) { .chrono > * { grid-template-columns: minmax(0,1fr); gap: 6px; } }

/* ---------- Quote ---------- */
.quote { margin: 0; }
.quote blockquote {
  margin: 0 0 22px;
  font-weight: 300;
  font-size: clamp(23px, 2.6vw, 34px);
  line-height: 1.26; letter-spacing: -0.028em;
  color: var(--ink);
  text-indent: -0.44em;
}
.section--ink .quote blockquote { color: #fff; }
.quote figcaption {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-40); line-height: 1.9;
}
.quote figcaption strong { display: block; color: var(--ink); font-weight: 500; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
th, td { text-align: left; padding: 16px 20px 16px 0; border-bottom: 1px solid var(--rule); font-size: 15.5px; }
th {
  font-family: var(--mono); font-weight: 500; font-size: 11.5px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-60);
  border-bottom: 2px solid var(--blue); padding-bottom: 12px;
}
td { font-variant-numeric: tabular-nums; }
td:first-child { color: var(--ink); }
.status {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-deep); border: 1px solid var(--rule-mid); padding: 3px 8px; white-space: nowrap;
}

/* ---------- Accordion ---------- */
.accordion { border-top: 2px solid var(--blue); }
.accordion details { border-bottom: 1px solid var(--rule); }
.accordion summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 22px 40px 22px 0;
  font-size: 17.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.014em;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 20px; color: var(--blue); line-height: 1;
}
.accordion details[open] summary::after { content: "\2013"; }
.accordion summary:hover { color: var(--blue-deep); }
.accordion .acc-body { padding: 0 40px 24px 0; font-size: 16px; max-width: 74ch; color: var(--ink-60); }

/* ---------- Jobs ---------- */
.jobs { border-top: 2px solid var(--blue); }
.jobs > * {
  display: grid; grid-template-columns: minmax(0,5fr) minmax(0,4fr) auto;
  gap: 14px 28px; align-items: baseline;
  padding: 22px 0; border-bottom: 1px solid var(--rule);
}
.jobs h3 { font-size: 18px; margin: 0; }
.jobs .job__meta {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-40); display: flex; flex-wrap: wrap; gap: 6px 18px; margin: 0;
}
@media (max-width: 760px) { .jobs > * { grid-template-columns: minmax(0,1fr); gap: 8px; } }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: minmax(0,1fr); } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-60);
}
.field input, .field select, .field textarea {
  font: inherit; font-size: 16px; color: var(--ink);
  padding: 11px 0; width: 100%;
  border: 0; border-bottom: 1px solid var(--rule-mid);
  background: transparent; border-radius: 0;
  transition: border-color .18s linear, box-shadow .18s linear;
}
.field select { padding-right: 20px; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--blue); box-shadow: 0 1px 0 0 var(--blue);
}
.field .hint { font-size: 13px; color: var(--ink-40); }
.form-status { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--ink-60); margin: 0; }
.form-status.is-sent { color: var(--blue-deep); }
.form-status.is-error { color: #A8320F; }
.inline-link { color: var(--blue-deep); border-bottom: 1px solid var(--blue); }
.inline-link:hover { color: var(--navy); border-bottom-color: var(--navy); }

/* ---------- Contact routing ---------- */
.routes { border-top: 1px solid var(--rule); }
.routes > * { padding: 22px 0; border-bottom: 1px solid var(--rule); }
.routes h3 { font-size: 17px; margin: 0 0 6px; }
.routes p { font-size: 15.5px; margin: 0; color: var(--ink-60); }

/* ---------- Closing band ---------- */
.closer .inner {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(28px, 4vw, 64px); align-items: end;
}
@media (max-width: 860px) { .closer .inner { grid-template-columns: minmax(0,1fr); align-items: start; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.64); border-top: 3px solid var(--blue); }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px, 3vw, 44px);
  padding-block: clamp(48px, 5vw, 70px) 44px;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 540px) { .footer-top { grid-template-columns: minmax(0,1fr); } }
.footer-blurb { font-size: 15px; margin-top: 22px; max-width: 36ch; color: rgba(255,255,255,.62); }
.footer-col h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); font-weight: 400; margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 15px; transition: color .18s linear; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.16);
  padding-block: 22px 28px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em;
  color: rgba(255,255,255,.55);
}
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 20px; margin-left: auto; }
.footer-bottom a:hover { color: #fff; }
.socials { display: flex; gap: 18px; margin-top: 24px; }
.socials svg { width: 20px; height: 20px; }
.socials a { color: rgba(255,255,255,.6); transition: color .18s linear; }
.socials a:hover { color: var(--blue); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Misc ---------- */
.disclaimer {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em;
  color: var(--ink-40); margin-top: 20px; line-height: 1.7;
}
.section--ink .disclaimer, .band-blue .disclaimer { color: rgba(255,255,255,.6); }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
