/* ===========================================================================
   NOFOH — main.css
   Design intent: white-dominant, hairline-led, institutional. Type carries the
   identity; there is no imagery, no gradient, no decorative colour beyond two
   muted accents (slate navy, brass). Structure follows the reading order of a
   corporate record: register → capabilities → clients → ownership → contact.
   ---------------------------------------------------------------------------
   01 Tokens                09 Reset & primitives
   02 Type scale            10 Header, navigation, fixed entity bar
   03 Links & buttons       11 Hero, register panel, facts band
   04 Section frame         12 Capabilities
   05 Utility              13 Sectors & commitments
   06 Motion               14 Structure, ledger table, FAQ
   07 Forms? none          15 Enquiry band
   08 none                 16 Footer · 17 Not-found · 18 Responsive · 19 Print
   ========================================================================= */

/* 01 · TOKENS ------------------------------------------------------------- */
:root {
  /* paper */
  --paper: #fbfaf8;
  --paper-warm: #f6f3ee;
  --panel: #ffffff;
  --wash: #f1f4f7;

  /* ink */
  --ink: #181b1e;
  --ink-2: #3b4147;
  --ink-3: #6a7177;
  --ink-4: #93999f;

  /* hairlines */
  --line: #e5e2dc;
  --line-2: #d2cec6;
  --line-3: #b6b1a6;

  /* accents (used sparingly) */
  --navy: #1f3b56;
  --navy-deep: #132840;
  --brass: #9c7c45;

  /* type */
  --sans: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --serif: 'Newsreader', 'Iowan Old Style', Georgia, 'Times New Roman', serif;

  /* metrics */
  --shell: 1240px;
  --gutter: clamp(1.125rem, 4vw, 3.5rem);
  --radius: 2px;
  --h-strip: 2.125rem;
  --h-bar: 4.375rem;
  --h-rail: 2.75rem;
  --dock: calc(var(--h-bar) + var(--h-rail));
  --ease: cubic-bezier(0.22, 0.65, 0.24, 1);
  --shadow-panel: 0 26px 50px -40px rgba(24, 27, 30, 0.42);
}

/* 02 · TYPE SCALE --------------------------------------------------------- */
:root {
  --fs-h1: clamp(2.05rem, 1.05rem + 4.1vw, 3.6rem);
  --fs-h2: clamp(1.5rem, 1.16rem + 1.4vw, 2.25rem);
  --fs-h3: clamp(1.18rem, 1.08rem + 0.4vw, 1.45rem);
  --fs-lead: clamp(1.1rem, 1.02rem + 0.4vw, 1.35rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;
  --fs-mini: 0.8125rem;
  --fs-label: 0.6875rem;
}

/* 09 · RESET & PRIMITIVES ------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--dock) + 1.5rem);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: 0.002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
p,
dl,
dd,
figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

em {
  font-style: italic;
}

strong {
  font-weight: 600;
}

::selection {
  background: rgba(31, 59, 86, 0.12);
  color: var(--ink);
}

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

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

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

.num {
  font-variant-numeric: tabular-nums;
}

.label {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1.1rem;
  font-size: var(--fs-mini);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}

.skip-link:focus-visible {
  transform: translate(-50%, 0.5rem);
  outline-offset: 2px;
}

/* 03 · LINKS & BUTTONS ---------------------------------------------------- */
a {
  color: var(--navy);
  text-decoration: none;
}

.link-underlined {
  color: var(--ink);
  border-bottom: 1px solid var(--line-3);
  padding-bottom: 1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.link-underlined:hover {
  color: var(--navy);
  border-color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.85rem 1.15rem;
  font-size: var(--fs-mini);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1;
  transition: background 0.24s var(--ease), border-color 0.24s var(--ease), color 0.24s var(--ease);
}

.btn:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.btn-arrow {
  transition: transform 0.24s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* 04 · SECTION FRAME ----------------------------------------------------- */
.section {
  padding-block: clamp(3.25rem, 7.5vw, 6.5rem);
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 3.1fr) minmax(0, 6.9fr);
  gap: clamp(1.75rem, 5vw, 4.5rem);
}

.section-index {
  position: sticky;
  top: calc(var(--dock) + 2rem);
  align-self: start;
}

.section-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--brass);
  margin-bottom: 1.15rem;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h2);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}

.section-title::before {
  content: '';
  display: block;
  width: 3.25rem;
  height: 1px;
  background: var(--line-3);
  margin-bottom: 1.15rem;
}

.section-dek {
  margin-top: 1.15rem;
  font-size: var(--fs-small);
  color: var(--ink-3);
  max-width: 34ch;
}

.section-note {
  margin-top: 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px dotted var(--line-2);
  font-size: var(--fs-mini);
  color: var(--ink-3);
  max-width: 34ch;
}

/* 05 · UTILITY ------------------------------------------------------------ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.kicker-text {
  flex: 0 1 auto;
}

.kicker-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  background: var(--panel);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 0.2rem 0.4rem;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
}

/* 06 · MOTION ------------------------------------------------------------- */
/* Hidden states are applied only once head.js has confirmed scripting is on,
   so content is never invisible for users or crawlers without JavaScript. */
.js .reveal {
  opacity: 0;
  transition: opacity 0.75s var(--ease);
}

.js .reveal.is-revealed {
  opacity: 1;
}

.js .reveal-item {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.js .reveal-item.is-revealed {
  opacity: 1;
  transform: none;
}

/* =========================================================================
   10 · HEADER + FIXED ENTITY BAR
   ====================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid var(--line-2);
}

/* — registered-office strip ------------------------------------------------ */
.header-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--h-strip);
  overflow: hidden;
  font-size: 0.6875rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 1px solid transparent;
  transition:
    height 0.3s var(--ease),
    opacity 0.24s var(--ease),
    border-color 0.3s var(--ease);
}

.site-header.is-scrolled .header-strip {
  height: 0;
  opacity: 0;
}

.strip-ident,
.strip-meta {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mark {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--brass);
  margin-right: 0.6rem;
  vertical-align: 0.1em;
}

.strip-link {
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.strip-link:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* — primary bar ------------------------------------------------------------ */
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--h-bar);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  flex: none;
}

.wordmark::after {
  content: '';
  width: 1.4rem;
  height: 1px;
  background: var(--line-3);
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}

.wordmark:hover::after {
  width: 2.4rem;
  background: var(--brass);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.9vw, 1.9rem);
}

.nav-link {
  display: block;
  position: relative;
  padding: 0.35rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.nav-link:hover {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link[aria-current='true']::after {
  transform: scaleX(1);
}

.nav-link[aria-current='true'] {
  color: var(--navy);
}

.nav-cta {
  flex: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 0.55rem 0.8rem;
  line-height: 1;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}

.nav-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 0.5rem 0.7rem;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 16px;
}

.nav-toggle-icon i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 0.26s var(--ease);
}

.site-header.is-nav-open .nav-toggle-icon i:first-child {
  transform: translateY(2px) rotate(8deg);
}

.site-header.is-nav-open .nav-toggle-icon i:last-child {
  transform: translateY(-2px) rotate(-8deg);
}

/* — fixed operating-entity bar --------------------------------------------- */
.entity-bar {
  position: relative;
  background: var(--panel);
  border-top: 1px solid var(--line);
  box-shadow: 0 1px 0 var(--line-2);
}

/* fade over the last visible entity name when the bar can be scrolled */
.entity-bar::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4.5rem;
  height: var(--h-rail);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--panel) 78%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.entity-bar[data-rail='start']::after,
.entity-bar[data-rail='mid']::after {
  opacity: 1;
}

.entity-bar-list:focus-visible {
  outline-offset: -3px;
}

.entity-bar-inner {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  height: var(--h-rail);
}

.entity-bar-label {
  margin: 0;
  display: flex;
  align-items: center;
  padding-right: 1rem;
  border-right: 1px solid var(--line);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  white-space: nowrap;
  flex: none;
}

.entity-bar-word {
  max-width: 5.5rem;
  line-height: 1.35;
}

.entity-bar-list {
  display: flex;
  align-items: stretch;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}

.entity-bar-list::-webkit-scrollbar {
  height: 3px;
}

.entity-bar-list::-webkit-scrollbar-thumb {
  background: var(--line-2);
}

.entity-bar-item {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--line);
  flex: none;
}

.entity-bar-item:first-child {
  border-left: 0;
}

.entity-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
  padding-inline: clamp(0.7rem, 1.4vw, 1.15rem);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.entity-bar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line-3);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.entity-bar-link:hover,
.entity-bar-link:focus-visible {
  color: var(--navy);
  background: var(--wash);
}

.entity-bar-link:hover .entity-bar-dot {
  background: var(--brass);
  transform: scale(1.4);
}

.entity-bar-note {
  margin: 0;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  border-left: 1px solid var(--line);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-4);
  white-space: nowrap;
  flex: none;
}

/* =========================================================================
   11 · HERO
   ====================================================================== */
.hero {
  position: relative;
  padding-block: clamp(2.75rem, 6vw, 5.25rem) clamp(2rem, 4vw, 3rem);
  background: var(--paper);
  overflow: clip;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: calc(100% / 8) 100%;
  -webkit-mask-image: radial-gradient(115% 85% at 78% -10%, #000 12%, transparent 68%);
  mask-image: radial-gradient(115% 85% at 78% -10%, #000 12%, transparent 68%);
  opacity: 0.75;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 21.5rem);
  gap: clamp(1.75rem, 5vw, 4.5rem);
  align-items: start;
}

.hero-title {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--ink);
  max-width: 22ch;
}

.hero-title em {
  color: var(--navy);
}

.hero-dek {
  margin-top: 1.6rem;
  font-size: var(--fs-body);
  color: var(--ink-2);
  max-width: 56ch;
}

.hero-dek-secondary {
  margin-top: 1rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--line-2);
  font-size: var(--fs-small);
  color: var(--ink-3);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 2.25rem;
}

/* — group register panel --------------------------------------------------- */
.register {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-panel);
  padding: 1.5rem clamp(1.15rem, 2vw, 1.6rem) 1.35rem;
}

.register-title {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line-2);
}

.register-list {
  margin: 0;
}

.register-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.62rem 0;
  border-bottom: 1px dotted var(--line-2);
}

.register-row dt {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-4);
  flex: none;
}

.register-row dd {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  text-align: right;
}

.register-row dd a {
  color: var(--navy);
  border-bottom: 1px solid var(--line-2);
}

.register-row dd a:hover {
  border-color: var(--navy);
}

.register-foot {
  margin-top: 1.15rem;
  font-size: var(--fs-mini);
  line-height: 1.55;
  color: var(--ink-3);
}

/* — facts band ------------------------------------------------------------- */
.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line-2);
  position: relative;
}

.fact {
  padding: 1.35rem clamp(1rem, 2vw, 1.75rem) 0.25rem;
  border-left: 1px solid var(--line);
}

.fact:first-child {
  border-left: 0;
  padding-left: 0;
}

.fact-value {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.fact-sep {
  color: var(--line-3);
}

.fact-label {
  margin-top: 0.6rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.5;
}

/* =========================================================================
   12 · CAPABILITIES
   ====================================================================== */
.section-capabilities {
  background: var(--panel);
}

.capabilities {
  border-top: 1px solid var(--line);
}

.capability {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr) 11.5rem;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  align-items: start;
  padding: 1.65rem clamp(0.75rem, 1.5vw, 1.25rem);
  margin-inline: clamp(-1.25rem, -1.5vw, -0.75rem);
  border-bottom: 1px solid var(--line);
  transition: background 0.26s var(--ease), box-shadow 0.26s var(--ease);
}

.capability:hover {
  background: var(--wash);
  box-shadow: inset 2px 0 0 var(--brass);
}

.capability-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-4);
  padding-top: 0.15rem;
}

.capability-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.capability-text {
  margin-top: 0.55rem;
  font-size: var(--fs-small);
  color: var(--ink-2);
  max-width: 62ch;
}

.capability-meta {
  font-size: var(--fs-mini);
  color: var(--ink-3);
  text-align: right;
  padding-top: 0.2rem;
}

.capability-meta-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 0.35rem;
}

.capability-meta-list {
  display: block;
  line-height: 1.5;
}

/* =========================================================================
   13 · SECTORS & COMMITMENTS
   ====================================================================== */
.section-sectors {
  background: var(--paper);
}

.sector {
  padding: 2rem 0 2.15rem;
  border-top: 1px solid var(--line);
}

.sector:first-child {
  border-top: 0;
  padding-top: 0.35rem;
}

.sector-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.sector-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brass);
}

.sector-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h3);
  letter-spacing: -0.01em;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.sector-flag {
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  padding: 0.25rem 0.4rem;
  background: var(--panel);
}

.sector-text {
  margin-top: 0.85rem;
  font-size: var(--fs-small);
  color: var(--ink-2);
  max-width: 66ch;
}

.sector-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.1rem clamp(1.5rem, 4vw, 3rem);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dotted var(--line-2);
}

.sector-facts dt {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 0.3rem;
}

.sector-facts dd {
  font-size: var(--fs-mini);
  color: var(--ink-2);
  line-height: 1.55;
}

.commitments {
  margin-top: 2.75rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
}

.commitments-title {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.15rem;
}

.commitments-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.7rem clamp(1.5rem, 4vw, 3rem);
}

.commitments-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: var(--fs-mini);
  color: var(--ink-2);
  line-height: 1.55;
}

.commitments-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 5px;
  height: 5px;
  background: var(--navy);
  opacity: 0.35;
}

/* =========================================================================
   14 · STRUCTURE, LEDGER, FAQ
   ====================================================================== */
.section-structure {
  background: var(--panel);
  padding-bottom: 0;
}

.structure-prose p {
  font-size: var(--fs-small);
  color: var(--ink-2);
  max-width: 70ch;
}

.structure-prose p + p {
  margin-top: 1.1rem;
}

.lead {
  font-family: var(--serif);
  font-size: var(--fs-lead);
  line-height: 1.45;
  color: var(--ink) !important;
  letter-spacing: -0.008em;
}

.structure-sub {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-2);
}

.table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
}

.ledger {
  width: 100%;
  font-size: var(--fs-small);
  min-width: 46rem;
}

.ledger th[scope='col'] {
  text-align: left;
  vertical-align: bottom;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding: 0.35rem 1rem 0.7rem 0;
  border-bottom: 1px solid var(--line-2);
}

.ledger tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background 0.22s var(--ease);
}

.ledger tbody tr:hover {
  background: var(--wash);
}

.ledger th[scope='row'] {
  text-align: left;
  vertical-align: top;
  font-weight: 400;
  padding: 1.05rem 1rem 1.05rem 0;
  width: 17rem;
}

.ledger-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.ledger-short {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.ledger td {
  vertical-align: top;
  padding: 1.05rem 1rem 1.05rem 0;
  color: var(--ink-2);
  font-size: var(--fs-mini);
  line-height: 1.55;
}

.ledger-visit a {
  color: var(--navy);
  white-space: nowrap;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 1px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.ledger-visit a:hover {
  color: var(--navy-deep);
  border-color: var(--navy);
}

/* — registration record (Companies House detail + SIC classification) --------- */
.record-intro {
  margin-top: 1.25rem;
  font-size: var(--fs-mini);
  color: var(--ink-3);
  max-width: 64ch;
}

.record-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  margin-top: 1.5rem;
}

.record {
  border-top: 1px solid var(--line-2);
}

.record-row {
  display: grid;
  grid-template-columns: 9.5rem minmax(0, 1fr);
  gap: 0.5rem 1rem;
  align-items: baseline;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.record-row dt {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.record-row dd {
  margin: 0;
  font-size: var(--fs-mini);
  color: var(--ink);
  line-height: 1.55;
}

.record-side-label,
.record-side-note {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.record-side-note {
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 400;
  font-size: var(--fs-mini);
  line-height: 1.55;
  color: var(--ink-3);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dotted var(--line-2);
}

.sic {
  margin-top: 1.55rem;
  border-top: 1px solid var(--line-2);
}

.sic-item {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.22s var(--ease);
}

.sic-item:hover {
  background: var(--wash);
}

.sic-code {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--brass);
  font-variant-numeric: tabular-nums;
}

.sic-title {
  font-size: var(--fs-mini);
  color: var(--ink-2);
  line-height: 1.5;
}

.record-foot {
  margin-top: 1.6rem;
  font-size: var(--fs-mini);
}

/* — procurement questions -------------------------------------------------- */
.faq {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--ink);
  padding: 1.25rem 0 0.45rem;
  letter-spacing: -0.005em;
}

.faq-a {
  margin: 0;
  padding-bottom: 1.25rem;
  font-size: var(--fs-small);
  color: var(--ink-2);
  max-width: 74ch;
}

/* =========================================================================
   15 · ENQUIRY BAND
   ====================================================================== */
/* Closing band: a warm register page-end, so the correspondence block reads as
   a deliberate section rather than trailing whitespace. */
.enquiry-band {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-block: clamp(2.25rem, 5vw, 4rem) clamp(2.75rem, 6vw, 4.5rem);
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
}

#enquiry {
  scroll-margin-top: calc(var(--dock) + 2rem);
}

.enquiry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
}

/* double rule: a certificate frame rather than decoration */
.enquiry::before {
  content: '';
  position: absolute;
  inset: 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  pointer-events: none;
}

.enquiry > * {
  position: relative;
}

.enquiry-label {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

.enquiry-title {
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: 1.25;
  letter-spacing: -0.012em;
  max-width: 30ch;
}

.enquiry-text {
  margin-top: 0.9rem;
  font-size: var(--fs-small);
  color: var(--ink-2);
  max-width: 58ch;
}

.enquiry-mail {
  margin-top: 1.5rem;
}

.enquiry-mail a {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.9vw, 2.15rem);
  letter-spacing: -0.015em;
  color: var(--navy);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 0.15rem;
  transition: color 0.24s var(--ease), border-color 0.24s var(--ease);
  overflow-wrap: anywhere;
}

.enquiry-mail a:hover {
  color: var(--navy-deep);
  border-color: var(--navy);
}

.enquiry-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.6rem;
}

.enquiry-routes a {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 0.5rem 0.7rem;
  line-height: 1.2;
  background: var(--paper);
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}

.enquiry-routes a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.enquiry-alt {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 2.5vw, 1.6rem);
}

.enquiry-alt-foot {
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px dotted var(--line-2);
  font-size: var(--fs-mini);
  line-height: 1.55;
  color: var(--ink-3);
}

.enquiry-alt-foot a {
  color: var(--navy);
  border-bottom: 1px solid var(--line-2);
}

.enquiry-alt-foot a:hover {
  border-color: var(--navy);
}

.enquiry-chips {
  margin-bottom: 0;
}

.enquiry-alt-label {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.enquiry-alt-note {
  margin-top: 0.6rem;
  font-size: var(--fs-mini);
  color: var(--ink-3);
  line-height: 1.55;
}

/* engraved plates: 1px hairline gaps instead of separate cards */
.enquiry-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 1.15rem;
}

.enquiry-chips li {
  background: var(--panel);
}

.enquiry-chips a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  height: 100%;
  padding: 0.8rem 0.85rem;
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--ink);
  transition: background 0.22s var(--ease), color 0.22s var(--ease);
}

.enquiry-chips a::after {
  content: '↗';
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--line-3);
  transition: color 0.22s var(--ease), transform 0.22s var(--ease);
}

.enquiry-chips a:hover {
  background: var(--wash);
  color: var(--navy);
}

.enquiry-chips a:hover::after {
  color: var(--brass);
  transform: translate(2px, -2px);
}

/* =========================================================================
   16 · FOOTER
   ====================================================================== */
.site-footer {
  margin-top: 0;
  padding-block: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  background: var(--paper);
  border-top: 1px solid var(--line-2);
  color: var(--ink-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 0.9fr) minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
}

.wordmark-footer {
  font-size: 1.15rem;
  letter-spacing: 0.34em;
  color: var(--ink);
}

.footer-descriptor {
  margin-top: 1.1rem;
  font-size: var(--fs-mini);
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 38ch;
}

.footer-address {
  margin-top: 1.6rem;
  font-style: normal;
}

.footer-address-label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.footer-address-label-mail {
  margin-top: 1.5rem;
}

.footer-office {
  margin-top: 0.35rem;
  font-size: var(--fs-mini);
  line-height: 1.6;
  color: var(--ink-2);
}

.footer-office-meta {
  margin-top: 0.55rem;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: var(--ink-4);
}

.footer-office-meta a {
  color: var(--navy);
  border-bottom: 1px solid var(--line-2);
}

.footer-office-meta a:hover {
  border-color: var(--navy);
  text-decoration: none;
}

.footer-mail {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  border-bottom: 1px solid var(--line-2);
  overflow-wrap: anywhere;
}

.footer-mail:hover {
  border-color: var(--navy);
}

.footer-address-note {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--ink-4);
  max-width: 34ch;
}

.footer-heading {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--ink-2);
  font-size: var(--fs-mini);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-col-host {
  display: block;
  font-size: 0.6875rem;
  color: var(--ink-4);
  letter-spacing: 0.02em;
  margin-top: 0.1rem;
}

.footer-routes-note {
  margin-top: 1.1rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--ink-4);
}

.footer-legal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 0.75rem clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-top: clamp(2rem, 4vw, 3.25rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.6875rem;
  line-height: 1.6;
  color: var(--ink-4);
}

.footer-legal-primary {
  color: var(--ink-3);
  letter-spacing: 0.03em;
}

.footer-legal-docs-title {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 0.5rem;
}

.footer-legal-docs ul {
  display: grid;
  gap: 0.3rem;
}

.footer-legal-docs a {
  color: var(--ink-3);
  border-bottom: 1px solid transparent;
}

.footer-legal-docs a:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.footer-legal-stamp {
  text-align: right;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-legal-stamp a {
  color: var(--ink-3);
}

/* =========================================================================
   15b · CONSENT BAR (analytics only — one cookie choice, no modal)
   ====================================================================== */
.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: var(--panel);
  border-top: 1px solid var(--line-2);
  box-shadow: 0 -20px 44px -34px rgba(24, 27, 30, 0.4);
  transform: translateY(104%);
  transition: transform 0.45s var(--ease);
}

.consent[hidden] {
  display: none;
}

.consent.is-open {
  transform: none;
}

.consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem clamp(1rem, 3vw, 2.5rem);
  padding-block: 0.85rem;
}

.consent-text {
  position: relative;
  margin: 0;
  padding-left: 1.15rem;
  font-size: var(--fs-mini);
  line-height: 1.55;
  color: var(--ink-2);
  flex: 1 1 34rem;
  min-width: 0;
}

.consent-text strong {
  color: var(--ink);
  font-weight: 600;
}

.consent-mark {
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 5px;
  height: 5px;
  background: var(--brass);
}

.consent-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
}

.consent-btn {
  font: inherit;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
  cursor: pointer;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}

.consent-btn-accept {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #fff;
}

.consent-btn-accept:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.consent-btn-decline {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
}

.consent-btn-decline:hover {
  border-color: var(--ink-3);
  color: var(--ink);
}

.consent-more {
  font-size: 0.75rem;
  color: var(--navy);
  border-bottom: 1px solid var(--line-2);
}

.consent-more:hover {
  border-bottom-color: var(--navy);
}

/* a control that must read as part of a text list, not as a button */
.linklike {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: var(--fs-mini);
  color: var(--ink-2);
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

.linklike:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

/* =========================================================================
   17b · LEGAL DOCUMENTS (terms · privacy · legal & corporate information)
   Same editorial frame as the home page: sticky index on the left, a single
   measured column of prose on the right, hairlines instead of boxes.
   ====================================================================== */
.page-legal .page-main {
  background: var(--panel);
}

.legal-head {
  padding-block: clamp(2.25rem, 5vw, 3.75rem) clamp(1.75rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}

.crumbs {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.crumbs li + li::before {
  content: '/';
  margin-right: 0.5rem;
  color: var(--line-3);
}

.crumbs a {
  color: var(--ink-3);
}

.crumbs a:hover {
  color: var(--navy);
}

.crumbs [aria-current='page'] {
  color: var(--ink-2);
}

.legal-title {
  margin-top: 1.1rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 1.2rem + 2.9vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.022em;
  max-width: 24ch;
}

.legal-lead {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 68ch;
}

.legal-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 0 2rem;
  margin-top: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-2);
}

.legal-meta > div {
  padding: 0.5rem 0;
}

.legal-meta dt {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.legal-meta dd {
  margin: 0.2rem 0 0;
  font-size: var(--fs-mini);
  color: var(--ink);
}

.legal-meta a {
  color: var(--navy);
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(13rem, 3fr) minmax(0, 6.6fr);
  gap: clamp(1.75rem, 5vw, 4.5rem);
  padding-block: clamp(2rem, 4vw, 3.25rem) clamp(3rem, 6vw, 5rem);
}

.toc {
  position: sticky;
  top: calc(var(--dock) + 2rem);
  align-self: start;
  max-height: calc(100vh - var(--dock) - 4rem);
  overflow-y: auto;
  padding-right: 0.5rem;
}

.toc-title {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line-2);
}

.toc-list {
  counter-reset: toc;
  display: grid;
  margin-top: 0.75rem;
}

.toc-list li {
  counter-increment: toc;
}

.toc-list a {
  display: block;
  padding: 0.35rem 0 0.35rem 2rem;
  position: relative;
  font-size: var(--fs-mini);
  line-height: 1.45;
  color: var(--ink-2);
  transition: color 0.2s var(--ease);
}

.toc-list a::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.35rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.8125rem;
  color: var(--ink-4);
}

.toc-list a:hover {
  color: var(--navy);
}

.toc-note {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dotted var(--line-2);
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--ink-4);
}

/* — the document itself --------------------------------------------------- */
.prose {
  max-width: 74ch;
}

.prose h2 {
  margin-top: clamp(2.25rem, 4vw, 3rem);
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: 1.25;
  letter-spacing: -0.01em;
  scroll-margin-top: calc(var(--dock) + 1.5rem);
}

.prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.prose h3 {
  margin-top: 1.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.prose p {
  margin-top: 0.9rem;
  font-size: var(--fs-small);
  line-height: 1.7;
  color: var(--ink-2);
}

.prose p:first-of-type {
  margin-top: 1rem;
}

.prose ul,
.prose ol {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.prose ul > li,
.prose ol > li {
  position: relative;
  padding-left: 1.35rem;
  font-size: var(--fs-small);
  line-height: 1.65;
  color: var(--ink-2);
}

.prose ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 5px;
  height: 5px;
  background: var(--navy);
  opacity: 0.32;
}

.prose ol {
  counter-reset: prose-ol;
}

.prose ol > li {
  counter-increment: prose-ol;
  padding-left: 1.9rem;
}

.prose ol > li::before {
  content: counter(prose-ol) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-4);
}

.prose a {
  color: var(--navy);
  border-bottom: 1px solid var(--line-2);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.prose a:hover {
  border-color: var(--navy);
}

.prose code,
.prose kbd {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: 0.85em;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.1em 0.35em;
  color: var(--ink);
}

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

.prose-address {
  margin-top: 1.1rem;
  padding: 1.1rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 2px solid var(--navy);
  border-radius: var(--radius);
  font-style: normal;
}

.prose-address p {
  margin: 0;
  font-size: var(--fs-mini);
  line-height: 1.65;
  color: var(--ink-2);
}

.legal-contact-mail {
  margin-top: 1.1rem !important;
}

.legal-contact-mail a {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  letter-spacing: -0.01em;
  color: var(--navy);
}

/* — tables inside legal documents ---------------------------------------- */
.table-plain {
  width: 100%;
  margin-top: 1.25rem;
  border-collapse: collapse;
  font-size: var(--fs-mini);
}

.table-plain caption {
  text-align: left;
}

.table-plain th[scope='col'] {
  text-align: left;
  vertical-align: bottom;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding: 0.35rem 1rem 0.7rem 0;
  border-bottom: 1px solid var(--line-2);
}

.table-plain tbody tr {
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.table-plain tbody tr:hover {
  background: var(--wash);
}

.table-plain td,
.table-plain th[scope='row'] {
  padding: 0.85rem 1rem 0.85rem 0;
  text-align: left;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.55;
}

.table-plain th[scope='row'] {
  color: var(--ink);
  font-weight: 600;
  width: 13rem;
}

.sic-inline {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.sic-inline li {
  padding-left: 0 !important;
  font-size: var(--fs-mini);
}

.sic-inline li::before {
  display: none;
}

.sic-inline .num {
  font-family: var(--serif);
  color: var(--brass);
  margin-right: 0.4rem;
}

@media (max-width: 940px) {
  .legal-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .toc {
    position: static;
    max-height: none;
    padding-right: 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1rem;
  }

  .table-plain th[scope='row'] {
    width: auto;
  }
}

@media (max-width: 700px) {
  .table-plain {
    display: block;
  }

  .table-plain thead {
    display: none;
  }

  .table-plain tbody,
  .table-plain tr,
  .table-plain td,
  .table-plain th[scope='row'] {
    display: block;
    width: auto;
  }

  .table-plain th[scope='row'] {
    padding-bottom: 0.15rem;
  }

  .table-plain td {
    padding-top: 0.15rem;
  }
}

@media print {
  .toc,
  .crumbs {
    display: none !important;
  }

  .prose h2 {
    break-after: avoid;
  }

  .legal-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========================================================================
   17 · NOT FOUND
   ====================================================================== */
/* not sticky on the error page, but still the containing block for the nav panel */
.page-404 .site-header {
  position: relative;
}

.section-lost {
  background: var(--panel);
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.lost-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.lost-title {
  margin-top: 1.25rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 24ch;
}

.lost-text {
  margin-top: 1.4rem;
  font-size: var(--fs-body);
  color: var(--ink-2);
  max-width: 54ch;
}

.lost-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 2rem;
}

.lost-map {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.lost-map h2 {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line-2);
}

.lost-map ul {
  display: grid;
  gap: 0.15rem;
  margin-top: 0.5rem;
}

.lost-map li {
  padding: 0.6rem 0;
  border-bottom: 1px dotted var(--line-2);
}

.lost-map a {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
}

.lost-map a:hover {
  color: var(--navy);
}

.lost-map li span {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-4);
  margin-top: 0.1rem;
}

/* =========================================================================
   18 · RESPONSIVE
   ====================================================================== */
@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2.5rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 20rem);
  }
}

@media (max-width: 940px) {
  :root {
    --h-bar: 3.75rem;
    --h-rail: 2.5rem;
  }

  .record-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .record-row,
  .sic-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.2rem;
  }

  .section-grid,
  .hero-inner,
  .lost-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-index {
    position: static;
  }

  .section-dek,
  .section-note {
    max-width: 60ch;
  }

  .hero-inner .register {
    order: 2;
    max-width: 26rem;
  }

  .capability {
    grid-template-columns: 2.25rem minmax(0, 1fr);
  }

  .capability-meta {
    grid-column: 2;
    text-align: left;
    padding-top: 0.9rem;
    margin-top: 0.2rem;
    border-top: 1px dotted var(--line-2);
  }

  .enquiry {
    grid-template-columns: minmax(0, 1fr);
  }

  .entity-bar-note {
    display: none;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 4;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--panel);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line-2);
    box-shadow: 0 24px 40px -32px rgba(24, 27, 30, 0.4);
    padding: 0.5rem var(--gutter) 1.25rem;
  }

  .site-header.is-nav-open .primary-nav {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-item {
    border-bottom: 1px solid var(--line);
  }

  .nav-link {
    padding: 0.9rem 0;
    font-size: 1rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin-top: 1.1rem;
    text-align: center;
  }

  .header-bar {
    position: static;
  }

  /* the registered-office strip cannot carry both facts on a phone: the
     email is the actionable one, so the identity line steps out */
  .strip-ident {
    display: none;
  }

  .header-strip {
    justify-content: flex-end;
  }
}

@media (max-width: 700px) {
  .hide-sm {
    display: none;
  }

  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.5rem;
  }

  .fact {
    border-left: 0;
    padding-left: 0;
  }

  .fact:nth-child(even) {
    border-left: 1px solid var(--line);
    padding-left: 1.15rem;
  }

  .br-lg {
    display: none;
  }

  .table-wrap {
    overflow-x: visible;
  }

  .ledger {
    min-width: 0;
    display: block;
  }

  .ledger thead {
    display: none;
  }

  .ledger tbody,
  .ledger tr,
  .ledger td,
  .ledger th[scope='row'] {
    display: block;
    width: auto;
  }

  .ledger tbody tr {
    padding: 1.1rem 0;
  }

  .ledger td {
    padding: 0.3rem 0;
  }

  .ledger td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: 0.2rem;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-legal-stamp {
    text-align: left;
  }

  .legal-meta {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .enquiry-chips {
    grid-template-columns: minmax(0, 1fr);
  }

  .enquiry::before {
    display: none;
  }

  .wordmark {
    letter-spacing: 0.24em;
  }
}

/* =========================================================================
   19 · ACCESSIBILITY & ALTERNATE MEDIA
   ====================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal,
  .js .reveal-item {
    opacity: 1;
    transform: none;
  }

  .consent {
    transform: none;
  }
}

@media (forced-colors: active) {
  .btn,
  .register,
  .enquiry,
  .commitments,
  .entity-bar-link {
    border: 1px solid CanvasText;
  }
}

/* Enterprise, legal and finance readers print these pages: keep the record
   legible and complete on paper. */
@media print {
  :root {
    --panel: #fff;
    --paper: #fff;
  }

  .site-header,
  .consent,
  .site-footer .footer-grid,
  .skip-link,
  .hero-grid,
  .enquiry::before {
    display: none !important;
  }

  body {
    color: #000;
    font-size: 11pt;
    line-height: 1.45;
  }

  .section {
    border-top: 1px solid #000;
    padding-block: 12pt;
    break-inside: avoid;
  }

  .ledger {
    min-width: 0;
    font-size: 9pt;
  }

  .enquiry {
    border: 1px solid #000;
  }

  a {
    color: #000;
    text-decoration: none;
  }

  .enquiry-mail a::after,
  a[href^='https://']::after {
    content: ' (' attr(href) ')';
    font-size: 8pt;
    color: #444;
  }
}
