:root {
    --ground:   #ECEEF3;
    --surface:  #F8F9FC;
    --raise:    #FFFFFF;
    --ink:      #0F1322;
    --muted:    #58607A;
    --rule:     #C7CDDD;
    --rule-soft:#DDE1EB;
    --brand:    #253167;
    --brass:    #8A6516;
    --indigo-1: #141B3E;
    --indigo-2: #090D1F;
    --on-dark:  #EDEFF7;
    --on-dark-muted: #A3AAC8;
    --nav-bg:   rgba(236,238,243,.88);
    --logo-filter: none;
    --shadow:   0 1px 2px rgba(15,19,34,.05);

    --measure: 66ch;
    --pad: clamp(1.25rem, 5vw, 4.5rem);
    --max: 1200px;

    --s--1: clamp(.74rem, .71rem + .12vw, .8rem);
    --s-0:  clamp(1rem, .96rem + .2vw, 1.06rem);
    --s-1:  clamp(1.15rem, 1.06rem + .4vw, 1.4rem);
    --s-2:  clamp(1.5rem, 1.28rem + .95vw, 2.1rem);
    --s-3:  clamp(2rem, 1.5rem + 2.1vw, 3.1rem);
    --s-4:  clamp(2.6rem, 1.5rem + 4.9vw, 5.2rem);
  }

  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --ground:   #0A0D16;
      --surface:  #121627;
      --raise:    #171C31;
      --ink:      #E6E9F3;
      --muted:    #8B93AE;
      --rule:     #2B3152;
      --rule-soft:#1C2138;
      --brand:    #93A0E4;
      --brass:    #D8B46A;
      --nav-bg:   rgba(10,13,22,.88);
      --logo-filter: brightness(0) invert(1);
      --shadow:   0 1px 2px rgba(0,0,0,.4);
    }
  }

  :root[data-theme="dark"] {
    --ground:   #0A0D16;
    --surface:  #121627;
    --raise:    #171C31;
    --ink:      #E6E9F3;
    --muted:    #8B93AE;
    --rule:     #2B3152;
    --rule-soft:#1C2138;
    --brand:    #93A0E4;
    --brass:    #D8B46A;
    --nav-bg:   rgba(10,13,22,.88);
    --logo-filter: brightness(0) invert(1);
    --shadow:   0 1px 2px rgba(0,0,0,.4);
  }

  * { box-sizing: border-box; }

  body {
    background: var(--ground);
    color: var(--ink);
    font-family: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: var(--s-0);
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  a { color: inherit; }

  h1, h2, h3, h4 {
    font-family: "Bodoni Moda", Didot, "Times New Roman", serif;
    font-weight: 400;
    margin: 0;
    line-height: 1.08;
    text-wrap: balance;
  }

  p { margin: 0; }

  .wrap {
    max-width: var(--max);
    margin-inline: auto;
    padding-inline: var(--pad);
  }

  .eyebrow {
    font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: var(--s--1);
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .skip {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--brand);
    color: #fff;
    padding: .6rem 1rem;
    z-index: 60;
  }

  .skip:focus { left: .5rem; top: .5rem; }

  /* ================= masthead ================= */

  .masthead {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule-soft);
  }

  .masthead .bar {
    max-width: var(--max);
    margin-inline: auto;
    padding: .8rem var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }

  .mark {
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
    flex: none;
  }

  .mark img { height: 30px; width: auto; display: block; filter: var(--logo-filter); }

  .mark .mark-text {
    font-family: "Bodoni Moda", Didot, serif;
    font-size: 1rem;
    letter-spacing: .01em;
    white-space: nowrap;
  }

  @media (max-width: 560px) { .mark .mark-text { display: none; } }

  .sitenav {
    display: flex;
    gap: clamp(.85rem, 2.2vw, 1.9rem);
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    letter-spacing: .1em;
    text-transform: uppercase;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .sitenav::-webkit-scrollbar { display: none; }

  .sitenav a {
    text-decoration: none;
    color: var(--muted);
    white-space: nowrap;
    padding-bottom: 3px;
    border-bottom: 1.5px solid transparent;
    transition: color .18s ease, border-color .18s ease;
  }

  .sitenav a:hover { color: var(--ink); }

  .sitenav a[aria-current="page"] {
    color: var(--ink);
    border-bottom-color: var(--brass);
  }

  /* ================= dark band ================= */

  .band {
    position: relative;
    isolation: isolate;
    background: linear-gradient(160deg, var(--indigo-1) 0%, var(--indigo-2) 78%);
    color: var(--on-dark);
    overflow: hidden;
  }

  .band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url("data:image/svg+xml,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='76'%20height='76'%20viewBox='0%200%2076%2076'><g%20fill='none'%20stroke='rgba(216,180,106,0.55)'%20stroke-width='1'><rect%20x='13'%20y='13'%20width='50'%20height='50'/><rect%20x='26'%20y='26'%20width='24'%20height='24'/><path%20d='M0%2038h13M63%2038h13M38%200v13M38%2063v13'/></g><circle%20cx='38'%20cy='38'%20r='2.4'%20fill='rgba(216,180,106,0.6)'/><circle%20cx='0'%20cy='0'%20r='1.5'%20fill='rgba(237,239,247,0.35)'/><circle%20cx='76'%20cy='0'%20r='1.5'%20fill='rgba(237,239,247,0.35)'/><circle%20cx='0'%20cy='76'%20r='1.5'%20fill='rgba(237,239,247,0.35)'/><circle%20cx='76'%20cy='76'%20r='1.5'%20fill='rgba(237,239,247,0.35)'/></svg>");
    background-size: 76px 76px;
    opacity: .34;
    -webkit-mask-image: linear-gradient(175deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.4) 58%, rgba(0,0,0,0) 92%);
    mask-image: linear-gradient(175deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.4) 58%, rgba(0,0,0,0) 92%);
    pointer-events: none;
  }

  .band .fade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(120% 90% at 82% 12%, rgba(138,101,22,.22), transparent 62%);
    pointer-events: none;
  }

  .band .eyebrow { color: var(--on-dark-muted); }

  /* ================= hero ================= */

  .hero { padding-block: clamp(3.5rem, 10vw, 7.5rem) clamp(3rem, 8vw, 6rem); }

  .hero .rule-row {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
  }

  .hero .rule-row::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(237,239,247,.35), rgba(237,239,247,0));
  }

  .hero h1 {
    font-size: var(--s-4);
    letter-spacing: -.02em;
    max-width: 16ch;
  }

  .hero h1 em { font-style: italic; color: var(--brass); }

  .hero h1.lede {
    font-size: var(--s-3);
    max-width: 26ch;
    letter-spacing: -.01em;
    line-height: 1.14;
  }

  .hero .sub {
    margin-top: clamp(1.5rem, 3.5vw, 2.25rem);
    max-width: 52ch;
    font-size: var(--s-1);
    line-height: 1.5;
    color: var(--on-dark-muted);
  }

  .hero .sub strong { color: var(--on-dark); font-weight: 400; }

  .actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: clamp(2rem, 4vw, 2.75rem);
  }

  .btn {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: .85em 1.5em;
    border: 1px solid rgba(237,239,247,.28);
    transition: background .2s ease, color .2s ease, border-color .2s ease;
  }

  .btn.solid { background: var(--on-dark); color: var(--indigo-2); border-color: var(--on-dark); }
  .btn.solid:hover { background: var(--brass); border-color: var(--brass); color: #120E03; }
  .btn.ghost:hover { border-color: var(--brass); color: var(--brass); }

  /* ================= figures ================= */

  .figures {
    border-top: 1px solid rgba(237,239,247,.14);
  }

  .figures .grid {
    max-width: var(--max);
    margin-inline: auto;
    padding-inline: var(--pad);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  }

  .fig {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: .3rem;
  }

  .fig + .fig {
    border-left: 1px solid rgba(237,239,247,.14);
    padding-left: clamp(1rem, 3vw, 2.25rem);
  }

  .fig .n {
    font-family: "Bodoni Moda", Didot, serif;
    font-size: var(--s-2);
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }

  .fig .k {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--on-dark-muted);
  }

  /* ================= sections ================= */

  .section { padding-block: clamp(3rem, 8vw, 6rem); }
  .section.tight { padding-block: clamp(2.5rem, 6vw, 4rem); }
  .section.surface { background: var(--surface); border-block: 1px solid var(--rule-soft); }

  .head {
    display: grid;
    gap: .9rem;
    margin-bottom: clamp(1.75rem, 4.5vw, 3rem);
  }

  .head h2 { font-size: var(--s-3); letter-spacing: -.012em; }
  .head p { max-width: var(--measure); color: var(--muted); }

  @media (min-width: 880px) {
    .head {
      grid-template-columns: minmax(0, 7fr) minmax(0, 6fr);
      align-items: end;
      column-gap: clamp(2rem, 6vw, 5rem);
    }
    .head .eyebrow { grid-column: 1 / -1; }
  }

  .prose { display: grid; gap: clamp(1.25rem, 3vw, 2.5rem); }

  @media (min-width: 880px) { .prose.two { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

  .prose p { max-width: var(--measure); }

  .prose p.full {
    grid-column: 1 / -1;
    max-width: none;
    padding-top: 1.4rem;
    border-top: 1px solid var(--rule);
    color: var(--muted);
  }

  .prose p.full strong { color: var(--ink); font-weight: 600; }

  .drop {
    float: left;
    font-family: "Bodoni Moda", Didot, serif;
    font-size: 3.1em;
    line-height: .82;
    padding: .06em .14em 0 0;
    color: var(--brand);
  }

  /* ================= sector cards ================= */

  .cards {
    display: grid;
    gap: 1px;
  }

  @media (min-width: 640px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  @media (min-width: 980px) { .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
  @media (min-width: 1080px) { .cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

  .card {
    box-shadow: 0 0 0 1px var(--rule);
    background: var(--raise);
    padding: clamp(1.25rem, 2.5vw, 1.9rem);
    display: flex;
    flex-direction: column;
    gap: .55rem;
    text-decoration: none;
    transition: background .2s ease;
  }

  a.card:hover { background: var(--surface); }

  .card .ord {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    letter-spacing: .12em;
    color: var(--brass);
  }

  .card h3 { font-size: var(--s-1); }

  .card p { color: var(--muted); font-size: .96em; }

  .card .members {
    margin-top: .35rem;
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    color: var(--muted);
    line-height: 1.7;
  }

  /* ================= photography ================= */

  .lead-shot {
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid var(--rule);
    background: var(--surface);
    overflow: hidden;
  }

  .lead-shot img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }

  .gallery {
    margin-top: 12px;
    column-count: 1;
    column-gap: 12px;
  }

  @media (min-width: 620px) { .gallery { column-count: 2; } }
  @media (min-width: 980px) { .gallery { column-count: 3; } }

  .shot {
    break-inside: avoid;
    margin: 0 0 12px;
    border: 1px solid var(--rule);
    background: var(--surface);
    overflow: hidden;
  }

  .shot img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .8s cubic-bezier(.2,.7,.3,1);
  }

  .shot:hover img { transform: scale(1.035); }

  @media (prefers-reduced-motion: reduce) { .shot:hover img { transform: none; } }

  .shot-caption,
  .lead-caption {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem 1rem;
    margin-top: .7rem;
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .lead-caption .dot { color: var(--brass); }

  /* full-bleed band on the home page */

  .photo-band {
    position: relative;
    background: var(--indigo-2);
    overflow: hidden;
  }

  .photo-band img {
    display: block;
    width: 100%;
    height: clamp(260px, 42vw, 520px);
    object-fit: cover;
    opacity: .92;
  }

  .photo-band .caption-over {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(1.5rem, 4vw, 3rem) var(--pad);
    background: linear-gradient(0deg, rgba(9,13,31,.92) 6%, rgba(9,13,31,.45) 55%, rgba(9,13,31,0));
    color: var(--on-dark);
  }

  .photo-band .caption-inner {
    max-width: var(--max);
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .5rem 1.5rem;
  }

  .photo-band .caption-inner h2 {
    font-size: var(--s-2);
  }

  .photo-band .caption-inner .meta {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--on-dark-muted);
  }

  .photo-band .caption-inner a {
    margin-left: auto;
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--brass);
    padding-bottom: 2px;
  }

  .photo-band .caption-inner a:hover { color: var(--brass); }

  /* ================= media page ================= */

  .sector-intro {
    margin-top: .9rem;
    color: var(--muted);
    max-width: var(--measure);
  }

  .chips.lg li {
    font-size: .74rem;
    padding: .38em .75em;
    color: var(--ink);
  }

  .flow {
    display: grid;
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }

  @media (min-width: 560px) { .flow { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  @media (min-width: 900px) { .flow { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

  .step {
    background: var(--raise);
    padding: 1.1rem clamp(1rem, 2vw, 1.4rem) 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
  }

  .step .num {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    letter-spacing: .14em;
    color: var(--brass);
    font-variant-numeric: tabular-nums;
  }

  .step .what { font-weight: 600; }

  .step.end { background: var(--brand); color: #fff; }
  .step.end .num { color: rgba(255,255,255,.75); }

  .cases { display: grid; gap: clamp(1.5rem, 3.5vw, 2.5rem); }

  @media (min-width: 780px) { .cases { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

  .case {
    border-top: 2px solid var(--brand);
    padding-top: .95rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
  }

  .case h3 { font-size: var(--s-1); }

  .case dl { margin: 0; display: flex; flex-direction: column; gap: .55rem; }

  .case dt {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brass);
  }

  .case dd { margin: .1rem 0 0; color: var(--muted); }

  .figures.light { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .figures.light .fig + .fig { border-left-color: var(--rule-soft); }
  .figures.light .k { color: var(--muted); }

  /* ================= brand marks ================= */

  .marks {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  @media (min-width: 700px) { .marks { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
  @media (min-width: 700px) { .marks.two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; } }

  .mark-tile {
    margin: 0;
    background: var(--raise);
    box-shadow: 0 0 0 1px var(--rule);
    overflow: hidden;
  }

  .mark-tile img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }

  .mark-tile figcaption {
    padding: .65rem .85rem .7rem;
    border-top: 1px solid var(--rule);
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .card-mark {
    margin: 0 0 .35rem;
    box-shadow: 0 0 0 1px var(--rule);
    overflow: hidden;
  }

  .card-mark img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }

  /* ================= project specs ================= */

  .project {
    display: grid;
    gap: clamp(1.25rem, 3vw, 3rem);
    padding: clamp(1.75rem, 4vw, 2.5rem) 0;
    border-top: 1px solid var(--rule);
    align-items: start;
  }

  .project:last-of-type { border-bottom: 1px solid var(--rule); }

  @media (min-width: 900px) {
    .project { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  }

  .project h3 { font-size: var(--s-2); margin-top: .55rem; }

  .spec { margin: 0; display: grid; }

  .spec > div {
    display: grid;
    gap: .15rem;
    padding: .7rem 0;
    border-top: 1px solid var(--rule-soft);
  }

  .spec > div:first-child { border-top: 0; padding-top: 0; }

  @media (min-width: 560px) {
    .spec > div { grid-template-columns: 130px minmax(0, 1fr); gap: 1.2rem; }
  }

  .spec dt {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brass);
  }

  .spec dd { margin: 0; color: var(--muted); }

  .tenet .spec > div { padding: .55rem 0; }

  /* ================= register ================= */

  .sector { margin-top: clamp(1.75rem, 4vw, 2.75rem); }

  .sector-label {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding-bottom: .7rem;
    border-bottom: 1px solid var(--ink);
  }

  .sector-label h3 {
    font-family: "Archivo", sans-serif;
    font-size: var(--s-0);
    font-weight: 600;
  }

  .sector-label .count {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    color: var(--muted);
    margin-left: auto;
    font-variant-numeric: tabular-nums;
  }

  .entry {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .35rem .5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--rule-soft);
  }

  @media (min-width: 780px) {
    .entry {
      grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
      column-gap: clamp(1.5rem, 5vw, 4rem);
      align-items: baseline;
    }
  }

  .entry .name {
    font-family: "Bodoni Moda", Didot, serif;
    font-size: var(--s-1);
    line-height: 1.2;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .6rem;
  }

  .entry .note { color: var(--muted); max-width: 60ch; }

  .entry .note a,
  .notes a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--brass);
    padding-bottom: 1px;
  }

  .entry .note a:hover,
  .notes a:hover { color: var(--brand); border-bottom-color: var(--brand); }

  .entry .body { display: flex; flex-direction: column; gap: .9rem; }

  .tag {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: .64rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brass);
    border: 1px solid var(--rule);
    padding: .2em .5em;
    white-space: nowrap;
  }

  .initiatives {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1.1rem;
    border-left: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: .6rem;
    max-width: 60ch;
  }

  .initiatives li { display: flex; flex-direction: column; gap: .1rem; }

  .initiatives .in-name {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
  }

  .initiatives .in-note { color: var(--muted); font-size: .95em; }

  /* ================= statement ================= */

  .statement-grid { display: grid; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }

  @media (min-width: 880px) { .statement-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); } }

  .statement {
    margin: 1.2rem 0 0;
    font-family: "Bodoni Moda", Didot, serif;
    font-size: var(--s-2);
    line-height: 1.26;
    letter-spacing: -.005em;
    text-wrap: balance;
  }

  .attrib { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .1rem; }
  .attrib .who { font-weight: 600; }

  .attrib .role {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .notes { display: flex; flex-direction: column; gap: 1rem; }
  .notes p { color: var(--muted); max-width: var(--measure); }

  /* ================= tenets & markets ================= */

  .tenets { display: grid; gap: clamp(1.6rem, 3.5vw, 2.75rem); }

  @media (min-width: 840px) {
    .tenets { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .tenets.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  .tenet { display: flex; flex-direction: column; gap: .6rem; }

  .tenet h3 {
    font-size: var(--s-1);
    padding-top: .85rem;
    border-top: 2px solid var(--brand);
  }

  .tenet p { color: var(--muted); }

  .chips { display: flex; flex-wrap: wrap; gap: .4rem; margin: .5rem 0 0; padding: 0; list-style: none; }

  .chips li {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--rule);
    padding: .22em .6em;
  }

  /* ================= markets ================= */

  .markets { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }

  @media (min-width: 720px) { .markets { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

  .market {
    background: var(--raise);
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    display: flex;
    flex-direction: column;
    gap: .4rem;
  }

  .market .code {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    letter-spacing: .16em;
    color: var(--brass);
  }

  .market h3 { font-size: var(--s-1); }
  .market p { color: var(--muted); font-size: .95em; }

  /* ================= contact ================= */

  .contact-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }

  @media (min-width: 840px) { .contact-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); } }

  .detail-card {
    background: var(--raise);
    border: 1px solid var(--rule);
    padding: clamp(1.4rem, 3vw, 2.1rem);
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    box-shadow: var(--shadow);
  }

  .field { display: flex; flex-direction: column; gap: .25rem; }

  .field .v {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: .92rem;
    line-height: 1.6;
    word-break: break-word;
  }

  .field .v a { text-decoration: none; border-bottom: 1px solid var(--brass); padding-bottom: 1px; }
  .field .v a:hover { color: var(--brand); border-bottom-color: var(--brand); }

  .enquiries { display: flex; flex-direction: column; gap: 1.1rem; }

  .enquiry { display: flex; flex-direction: column; gap: .2rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--rule-soft); }
  .enquiry:last-child { border-bottom: 0; padding-bottom: 0; }
  .enquiry h3 { font-family: "Archivo", sans-serif; font-size: var(--s-0); font-weight: 600; }
  .enquiry p { color: var(--muted); font-size: .96em; }

  /* ================= footer ================= */

  .site-footer { background: var(--surface); border-top: 1px solid var(--rule); margin-top: 0; }

  .footer-inner {
    max-width: var(--max);
    margin-inline: auto;
    padding: clamp(2.5rem, 6vw, 4rem) var(--pad) 2.5rem;
    display: grid;
    gap: clamp(1.75rem, 4vw, 3rem);
  }

  @media (min-width: 780px) { .footer-inner { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); } }

  .footer-mark {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none;
  }

  .footer-mark img {
    height: 46px;
    width: auto;
    display: block;
    filter: var(--logo-filter);
  }

  .footer-mark span {
    font-family: "Bodoni Moda", Didot, serif;
    font-size: 1.7rem;
    letter-spacing: .12em;
  }

  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.6rem;
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .footer-nav a { text-decoration: none; color: var(--muted); }
  .footer-nav a:hover { color: var(--ink); }

  .footer-meta { display: flex; flex-direction: column; gap: .35rem; color: var(--muted); font-size: .93em; }

  .colophon {
    max-width: var(--max);
    margin-inline: auto;
    padding: 1.25rem var(--pad) 2.5rem;
    border-top: 1px solid var(--rule-soft);
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 2rem;
    justify-content: space-between;
    color: var(--muted);
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: var(--s--1);
    letter-spacing: .05em;
  }

  /* ================= routing & motion ================= */

  [hidden] { display: none !important; }

  .page { animation: pagein .45s cubic-bezier(.2,.7,.3,1) both; }

  @keyframes pagein {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
  }

  .rise { opacity: 0; transform: translateY(14px); transition: opacity .65s cubic-bezier(.2,.7,.3,1), transform .65s cubic-bezier(.2,.7,.3,1); }
  .rise.in { opacity: 1; transform: none; }

  @media (prefers-reduced-motion: reduce) {
    .rise { opacity: 1; transform: none; transition: none; }
    .page { animation: none; }
  }

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

  .page-intro { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
  .page-intro h1 { font-size: var(--s-3); letter-spacing: -.015em; margin-top: 1rem; max-width: 20ch; }
  .page-intro p { margin-top: 1.25rem; max-width: 56ch; color: var(--on-dark-muted); font-size: var(--s-1); line-height: 1.5; }
