/* ============================================================
   DS Electrical Installations (SW) Ltd — Bath Specifier Landing
   Concept: "The Drawing Set" — the page reads like an issued
   architect's drawing package. Bath-stone paper, navy ink,
   yellow as a fine accent line. No build step.
   ============================================================ */

:root {
  /* night board + chalk — DS dark brand */
  --paper: #0f172a;          /* navy-900 page */
  --paper-deep: #1e293b;     /* navy-800 alt sheets */
  --paper-mid: #16213a;      /* between the two, for the standards sheet */
  --ink: #f1f5f9;            /* near-white text */
  --ink-soft: #e2e8f0;
  --ink-muted: #9aa8bd;
  --ink-dark: #0f172a;       /* navy text on yellow / light surfaces */
  --hairline: rgba(148, 163, 184, 0.22);
  --hairline-strong: rgba(148, 163, 184, 0.45);

  /* accent */
  --accent: #d4a44a;
  --accent-deep: #d4a44a;    /* full brand yellow reads cleanly on navy */

  /* on-navy (contrast sheets) */
  --paper-on-ink: #f1f5f9;
  --muted-on-ink: #b3bdd1;
  --hairline-on-ink: rgba(148, 163, 184, 0.22);

  /* type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  /* rhythm */
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --section-pad: clamp(4rem, 9vw, 8rem);
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* faint drafting grid on the night board */
  background-image:
    linear-gradient(rgba(241, 245, 249, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 245, 249, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

h1 em, h2 em {
  font-style: italic;
  font-weight: 300;
}

p { margin: 0 0 1rem; }
a { color: inherit; }

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

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

::selection { background: var(--accent); color: var(--ink-dark); }

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

.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 100;
  background: var(--accent);
  color: var(--ink-dark);
  padding: 0.6rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* ---------- sheet rules (section headers) ---------- */
.sheet-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.sheet-rule .sheet-line {
  flex: 1;
  height: 1px;
  background: var(--hairline);
  position: relative;
}
.sheet-rule .sheet-line::before {
  content: "";
  position: absolute;
  left: 0; top: -1px;
  width: 64px; height: 3px;
  background: var(--accent);
}
.sheet-rule .sheet-no { color: var(--ink); font-weight: 500; }

.sheet-rule-light { color: var(--muted-on-ink); }
.sheet-rule-light .sheet-no { color: var(--paper-on-ink); }
.sheet-rule-light .sheet-line { background: var(--hairline-on-ink); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.85rem var(--gutter);
}
.wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.wordmark-logo {
  display: block;
  height: 3rem;
  width: auto;
}
@media (max-width: 540px) {
  .wordmark-logo { height: 2.6rem; }
}
.site-nav {
  display: none;
  gap: 1.75rem;
  margin-left: auto;
}
.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.site-nav a:hover { border-bottom-color: var(--accent); }
.header-cta {
  margin-left: auto;
  background: var(--accent);
  color: var(--ink-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--accent);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.header-cta:hover { background: transparent; color: var(--accent); }

@media (min-width: 900px) {
  .site-nav { display: flex; }
  .header-cta { margin-left: 0; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary {
  background: var(--accent);
  color: var(--ink-dark);
  border-color: var(--accent);
  box-shadow: 4px 4px 0 rgba(250, 204, 21, 0.28);
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(250, 204, 21, 0.34);
}
.btn-primary:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 rgba(250, 204, 21, 0.28); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--ink-dark); }

/* ---------- hero ---------- */
.hero {
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) 0;
}
.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
}
.kicker {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.hero h1 em { position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.14em;
  background: var(--accent);
  z-index: -1;
}
.hero-lede {
  max-width: 36rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.hero-direct {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

/* hero figure — project photography */
.hero-figure { margin: 0; text-align: center; }
.hero-photo {
  display: block;
  width: min(100%, 380px);
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--hairline-strong);
  box-shadow: 10px 10px 0 rgba(250, 204, 21, 0.12);
}
.figure-note {
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* accreditation strip */
.cred-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  margin: clamp(3rem, 6vw, 4.5rem) 0 0;
  padding: 1.1rem 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.cred-strip li {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0 1.4rem;
  position: relative;
}
.cred-strip li:first-child { padding-left: 0; }
.cred-strip li + li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--accent);
}

/* ---------- who ---------- */
.who { padding: var(--section-pad) var(--gutter); }
.who-intro { max-width: 46rem; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.who-intro h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.who-intro p { color: var(--ink-soft); font-size: 1.1rem; }

.who-cards {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 860px) {
  .who-cards { grid-template-columns: repeat(3, 1fr); }
  /* staggered editorial offset */
  .who-card:nth-child(2) { transform: translateY(2.5rem); }
}
.who-card {
  background: var(--paper-deep);
  border: 1px solid var(--hairline);
  padding: 2.2rem 1.9rem 1.9rem;
  position: relative;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.who-card:hover {
  border-color: var(--hairline-strong);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.35);
}
.card-index {
  position: absolute;
  top: 1.1rem; right: 1.3rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--accent-deep);
  opacity: 0.55;
  line-height: 1;
}
.who-card h3 { font-size: 1.55rem; margin-bottom: 0.8rem; }
.who-card p { color: var(--ink-muted); font-size: 0.98rem; }
.card-points {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--hairline);
}
.card-points li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
}
.card-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.78em;
  width: 7px; height: 2px;
  background: var(--accent-deep);
}

/* ---------- process (raised sheet) ---------- */
.process {
  background: var(--paper-deep);
  color: var(--paper-on-ink);
  padding: var(--section-pad) var(--gutter);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background-image:
    linear-gradient(rgba(241, 245, 249, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 245, 249, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.process h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  max-width: 40rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.process h2 em { color: var(--accent); font-style: italic; }
.process-steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline-on-ink);
}
@media (min-width: 760px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  padding: 2rem 1.8rem 2.2rem 0;
  border-bottom: 1px solid var(--hairline-on-ink);
  position: relative;
}
@media (min-width: 760px) {
  .step { padding-right: 2.4rem; }
}
.step-no {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.35rem; color: var(--paper-on-ink); margin-bottom: 0.6rem; }
.step p { color: var(--muted-on-ink); font-size: 0.95rem; margin: 0; }

/* ---------- capabilities ---------- */
.capabilities { padding: var(--section-pad) var(--gutter); }
.capabilities h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.capabilities-lede {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.cap-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .cap-grid { grid-template-columns: repeat(3, 1fr); } }
.cap-card {
  border: 1px solid var(--hairline);
  background: var(--paper-deep);
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.cap-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.cap-card:hover::before { transform: scaleX(1); }
.cap-card:hover { border-color: var(--hairline-strong); }
.cap-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.cap-card p { color: var(--ink-muted); font-size: 0.95rem; flex: 1; }
.cap-tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--hairline-strong);
  padding: 0.32rem 0.7rem;
  margin-top: 1rem;
}
.cap-honest {
  margin-top: clamp(2rem, 4vw, 3rem);
  max-width: 40rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--ink-muted);
  padding-left: 1.1rem;
  border-left: 3px solid var(--accent);
}

/* ---------- plates ---------- */
.plates {
  padding: var(--section-pad) var(--gutter);
  background: var(--paper-deep);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.plate-row {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) { .plate-row { grid-template-columns: repeat(3, 1fr); } }
.plate { margin: 0; }
.plate-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--hairline-strong);
}
.plate figcaption {
  margin-top: 0.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.plate-note {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ---------- standards (mid sheet) ---------- */
.standards {
  background: var(--paper-mid);
  color: var(--paper-on-ink);
  padding: var(--section-pad) var(--gutter);
}
.standards-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
}
@media (min-width: 960px) {
  .standards-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
}
.standards-copy h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.standards-copy p { color: var(--muted-on-ink); font-size: 1.05rem; }
.standards-list {
  margin: 0;
  display: grid;
  gap: 0;
}
@media (min-width: 640px) { .standards-list { grid-template-columns: repeat(2, 1fr); } }
.standard {
  padding: 1.8rem 1.6rem 1.8rem 0;
  border-top: 1px solid var(--hairline-on-ink);
}
.standard dt {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}
.standard dd { margin: 0; color: var(--muted-on-ink); font-size: 0.95rem; }

/* ---------- coverage ---------- */
.coverage { padding: var(--section-pad) var(--gutter); }
.coverage-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 960px) {
  .coverage-grid { grid-template-columns: 1.05fr 0.95fr; }
}
.coverage-copy h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.coverage-copy p { color: var(--ink-soft); font-size: 1.08rem; max-width: 34rem; }
.coverage-places {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.coverage-places li {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--hairline-strong);
  padding: 0.45rem 0.85rem;
  background: var(--paper-deep);
}
.coverage-figure { margin: 0; }
.radius-map { width: min(100%, 440px); display: block; margin: 0 auto; color: var(--ink-muted); }
.radius-map .rings circle { stroke: var(--hairline-strong); stroke-width: 1; }
.radius-map .map-marks circle { fill: var(--ink); }
.radius-map .map-dot-primary { fill: var(--accent-deep); }
.radius-map text {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  fill: var(--ink-soft);
}
.radius-map .map-legend text { fill: var(--ink-muted); letter-spacing: 0.2em; }

/* ---------- enquiry (raised sheet) ---------- */
.enquiry {
  background: var(--paper-deep);
  color: var(--paper-on-ink);
  padding: var(--section-pad) var(--gutter);
  border-top: 1px solid var(--hairline);
  background-image:
    linear-gradient(rgba(241, 245, 249, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 245, 249, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.enquiry-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
}
@media (min-width: 960px) {
  .enquiry-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
.enquiry-copy h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.enquiry-copy > p { color: var(--muted-on-ink); font-size: 1.08rem; max-width: 30rem; }
.enquiry-direct {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hairline-on-ink);
}
.direct-link {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  padding: 1.05rem 0.2rem;
  border-bottom: 1px solid var(--hairline-on-ink);
  text-decoration: none;
  transition: background 0.2s ease, padding-left 0.2s ease;
}
.direct-link:hover {
  background: rgba(250, 204, 21, 0.07);
  padding-left: 0.8rem;
}
.direct-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  min-width: 5.5rem;
}
.direct-value { font-weight: 600; color: var(--paper-on-ink); }

/* form */
.enquiry-form {
  background: rgba(243, 236, 221, 0.04);
  border: 1px solid var(--hairline-on-ink);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}
.field-row {
  display: grid;
  gap: 0 1.25rem;
}
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field { margin-bottom: 1.3rem; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-on-ink);
  margin-bottom: 0.45rem;
}
.field label span { color: var(--accent); }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid var(--hairline-on-ink);
  color: var(--paper-on-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0;
  transition: border-color 0.2s ease;
}
.field select { appearance: none; }
.field select option { color: var(--ink); background: var(--paper); }
.field textarea { resize: vertical; min-height: 7rem; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(179, 189, 209, 0.55); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: none;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}
.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--ink-dark);
  border-color: var(--accent);
  box-shadow: 4px 4px 0 rgba(250, 204, 21, 0.25);
  font-size: 1.05rem;
}
.btn-submit:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(250, 204, 21, 0.3);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
  box-shadow: none;
}
.form-status {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  min-height: 1.4em;
  color: var(--paper-on-ink);
}
.form-status a { color: var(--accent); font-weight: 600; }
.form-status.is-error { color: #fda4af; }
.form-status.is-success { color: #bef264; }

/* ---------- title block footer ---------- */
.title-block {
  border-top: 3px solid var(--ink);
  padding: 0 var(--gutter) 2.5rem;
}
.tb-grid {
  display: grid;
  border-left: 1px solid var(--hairline-strong);
  border-right: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline-strong);
}
@media (min-width: 860px) {
  .tb-grid { grid-template-columns: 2fr 1.3fr 1.3fr 1fr 1fr; }
}
.tb-cell {
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
@media (min-width: 860px) {
  .tb-cell { border-bottom: 0; border-right: 1px solid var(--hairline); }
  .tb-cell:last-child { border-right: 0; }
}
.tb-logo {
  display: block;
  height: 56px;
  width: auto;
  margin-bottom: 0.6rem;
}
.tb-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.tb-value { font-weight: 700; font-size: 0.95rem; }
.tb-value a, .tb-small a { color: var(--ink-soft); text-decoration-color: var(--accent-deep); }
.tb-small { font-size: 0.8rem; color: var(--ink-muted); line-height: 1.5; }
.tb-meta { background: var(--paper-deep); }
.tb-strap {
  margin: 1.1rem 0 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ---------- scroll reveal ---------- */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .js .reveal.is-visible { opacity: 1; transform: translateY(0); }
  /* keep card stagger offset after reveal */
  @media (min-width: 860px) {
    .js .who-card.reveal:nth-child(2) { transform: translateY(calc(2.5rem + 22px)); }
    .js .who-card.reveal.is-visible:nth-child(2) { transform: translateY(2.5rem); }
  }
}

/* ---------- print (flip back to light so it reads on paper) ---------- */
@media print {
  :root {
    --paper: #ffffff;
    --paper-deep: #f1f5f9;
    --paper-mid: #f1f5f9;
    --ink: #0f172a;
    --ink-soft: #1e293b;
    --ink-muted: #46536b;
    --ink-dark: #0f172a;
    --hairline: rgba(15, 23, 42, 0.18);
    --hairline-strong: rgba(15, 23, 42, 0.4);
    --paper-on-ink: #0f172a;
    --muted-on-ink: #46536b;
    --hairline-on-ink: rgba(15, 23, 42, 0.18);
  }
  .site-header, .enquiry-form, .skip-link { display: none; }
  body { background: #fff; }
  /* white logo artwork is invisible on paper */
  .wordmark-logo, .tb-logo { display: none; }
}
