/* ==========================================================================
   Redline Reclaim — design system (light theme)
   See /brand_assets for the rationale behind these tokens.
   ========================================================================== */

:root {
  --ink: #10151C;              /* text, icon strokes, rules, borders — never a large fill */
  --paper: #EEF2F3;            /* base page background — pale technical/blueprint grey */
  --paper-2: #FFFFFF;          /* elevated surface: cards, header, form */
  --panel: #E2E8EA;            /* deeper structural surface: hero banner, CTA band, footer */
  --steel: #4B5563;            /* secondary text */
  --steel-light: #6B7280;      /* tertiary text / captions */
  --redline: #C23B22;          /* signature accent */
  --redline-dark: #9C2E19;     /* hover/active state for redline */
  --redline-soft: rgba(194, 59, 34, 0.09);   /* tinted fills/badges */
  --redline-glow: rgba(194, 59, 34, 0.35);   /* button glow shadows */
  --line: #D7DCDD;             /* hairline borders on paper/white */

  --font-display: "Big Shoulders", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-hand: "Caveat", cursive;

  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-sm: 0 1px 2px rgba(16,21,28,0.05), 0 2px 8px rgba(16,21,28,0.04);
  --shadow-md: 0 10px 28px -12px rgba(16,21,28,0.22), 0 2px 8px rgba(16,21,28,0.05);
  --shadow-lg: 0 24px 56px -20px rgba(16,21,28,0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--redline);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--redline);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--redline);
  display: inline-block;
}

.mono { font-family: var(--font-mono); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease-spring), background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.3s var(--ease-smooth), color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn-primary {
  background: var(--redline);
  color: #fff;
  box-shadow: 0 1px 0 rgba(16,21,28,0.08), 0 6px 18px -6px var(--redline-glow);
}
.btn-primary::after {
  content: "→";
  display: inline-block;
  transition: transform 0.3s var(--ease-spring);
}
.btn-primary:hover {
  background: var(--redline-dark);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(16,21,28,0.08), 0 14px 28px -10px var(--redline-glow);
}
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  background: var(--paper-2);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--panel); transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand img { width: 32px; height: 32px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--ink);
}
.brand-name .thin { color: var(--steel-light); font-weight: 700; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a:not(.btn) {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 0.15s ease;
}
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  background: var(--redline);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-smooth);
}
.main-nav a:not(.btn):hover { color: var(--ink); }
.main-nav a:not(.btn):hover::after { transform: scaleX(1); }
.main-nav a.active { color: var(--redline); }
.main-nav a.active::after { transform: scaleX(1); }
.main-nav .btn { margin-left: 10px; padding: 11px 20px; }

.nav-toggle {
  display: none;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  color: var(--ink);
}

@media (max-width: 860px) {
  .main-nav { position: fixed; inset: 72px 0 0 0; background: var(--paper-2); box-shadow: var(--shadow-md); flex-direction: column; align-items: stretch; padding: 12px 20px 28px; gap: 2px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease; }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a:not(.btn) { padding: 14px 6px; border-bottom: 1px solid var(--line); }
  .main-nav a:not(.btn)::after { display: none; }
  .main-nav .btn { margin: 14px 6px 0; justify-content: center; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero band ---------- */
.hero {
  background: var(--panel);
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,21,28,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,21,28,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 70% at 30% 20%, black, transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 55%; height: 90%;
  background: radial-gradient(circle, var(--redline-soft), transparent 70%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font-size: clamp(40px, 5.4vw, 68px); margin: 16px 0 22px; }
.hero h1 .redline-underline {
  color: var(--redline);
  position: relative;
  white-space: nowrap;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'%3E%3Cpath d='M2 8 C 40 2, 70 12, 100 6 S 160 2, 198 9' fill='none' stroke='%23C23B22' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 bottom;
  background-size: 100% 0.24em;
  padding-bottom: 0.12em;
}
.hero-lede { font-size: 18px; line-height: 1.65; color: var(--steel); max-width: 46ch; }
.hero-actions { display: flex; align-items: center; gap: 18px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-mono); font-size: 22px; color: var(--redline); }
.hero-stat-label { font-size: 12px; color: var(--steel); margin-top: 4px; max-width: 20ch; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
}

/* ---------- Redline markup signature graphic (mock marked-up document) ---------- */
.markup-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 24px 20px;
  box-shadow: var(--shadow-lg);
}
.markup-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.markup-card-head .mono { font-size: 11px; color: var(--steel-light); letter-spacing: 0.04em; }
.markup-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  position: relative;
}
.markup-row:last-of-type { border-bottom: none; }
.markup-row .desc { color: var(--ink); }
.markup-row .amount { font-family: var(--font-mono); color: var(--ink); }
.markup-row.flagged .amount, .markup-row.flagged .desc { color: var(--steel-light); }
.markup-strike {
  position: absolute;
  left: 0; right: 56px; top: 50%;
  height: 2px;
  background: var(--redline);
  transform-origin: left center;
  transform: scaleX(0);
}
.is-animated .markup-row.flagged .markup-strike { animation: draw-strike 0.5s var(--ease-spring) forwards; }
.is-animated .markup-row.flagged.d2 .markup-strike { animation-delay: 0.55s; }
.is-animated .markup-row.flagged.d3 .markup-strike { animation-delay: 1.1s; }
@keyframes draw-strike { to { transform: scaleX(1); } }

.markup-note {
  font-family: var(--font-hand);
  color: var(--redline);
  font-size: 19px;
  position: absolute;
  right: -6px;
  top: -2px;
  transform: rotate(-3deg);
  opacity: 0;
}
.is-animated .markup-note { animation: note-in 0.4s ease forwards; animation-delay: 1.7s; }
@keyframes note-in { from { opacity: 0; transform: rotate(-3deg) translateY(4px); } to { opacity: 1; transform: rotate(-3deg) translateY(0); } }

.markup-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.markup-total-label { font-size: 12px; color: var(--steel); }
.markup-total-value { font-family: var(--font-mono); font-size: 26px; color: var(--redline); opacity: 0; }
.is-animated .markup-total-value { animation: note-in 0.5s ease forwards; animation-delay: 1.95s; }
.markup-caption { font-size: 11px; color: var(--steel-light); margin-top: 12px; text-align: center; }

@media (prefers-reduced-motion: reduce) {
  .markup-strike { transform: scaleX(1); }
  .markup-note, .markup-total-value { opacity: 1; }
}

/* ---------- Photo bands ---------- */
.photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}
.photo-frame:hover img { transform: scale(1.04); }
.photo-frame::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(194,59,34,0.16), rgba(16,21,28,0.06));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.photo-frame::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 50%;
  background: linear-gradient(to top, rgba(16,21,28,0.75), transparent);
  pointer-events: none;
}
.photo-caption {
  position: absolute;
  left: 22px; bottom: 18px; right: 22px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
}
.photo-caption strong { display: block; font-family: var(--font-body); font-size: 15px; font-weight: 600; margin-bottom: 3px; }

.photo-hero-band { padding: 56px 0 0; }
.photo-hero-band .photo-frame { height: 320px; }
@media (max-width: 700px) { .photo-hero-band .photo-frame { height: 220px; } }

.problem-media .photo-frame { height: 100%; min-height: 340px; }

/* ---------- Two-column layout utility ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); margin-top: 14px; }
.section-head p { margin-top: 16px; font-size: 17px; color: var(--steel); }

/* ---------- Leakage type cards ---------- */
.leak-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.leak-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth), border-color 0.3s ease;
}
.leak-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--redline); }
.leak-card .idx {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--redline);
  background: var(--redline-soft);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
}
.leak-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 17px; margin-top: 16px; }
.leak-card p { font-size: 14px; color: var(--steel); margin-top: 10px; line-height: 1.6; }
@media (max-width: 900px) { .leak-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .leak-grid { grid-template-columns: 1fr; } }

/* ---------- Process (timeline) ---------- */
.process-list { position: relative; }
.process-list::before {
  content: "";
  position: absolute;
  top: 28px; bottom: 28px; left: 21px;
  width: 1.5px;
  background: var(--line);
}
.process-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 24px;
  padding: 22px 16px;
  border-radius: var(--radius-md);
  transition: background-color 0.25s ease;
  position: relative;
}
.process-item:hover { background: var(--paper-2); }
.process-num {
  position: relative;
  z-index: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1.5px solid var(--redline);
  color: var(--redline);
  font-family: var(--font-mono);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-item h3 { font-family: var(--font-body); font-weight: 700; font-size: 20px; padding-top: 6px; }
.process-item p { margin-top: 10px; color: var(--steel); max-width: 60ch; }
@media (max-width: 640px) {
  .process-item { grid-template-columns: 1fr; gap: 12px; }
  .process-list::before { left: 38px; }
}

/* ---------- Cards / About ---------- */
.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-card { transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth); }
.founder-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.founder-card .role { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--redline); margin-top: 16px; }
.founder-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 22px; margin-top: 6px; }
.founder-card p { margin-top: 12px; color: var(--steel); }
.founder-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: var(--redline); font-size: 22px;
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--panel); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(16,21,28,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,21,28,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 100% at 50% 50%, black, transparent 80%);
}
.cta-band .container { position: relative; }
.cta-band h2 { font-size: clamp(30px, 4.2vw, 50px); max-width: 18ch; margin: 0 auto; }
.cta-band p { color: var(--steel); margin-top: 16px; font-size: 17px; }
.cta-band .btn { margin-top: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--panel); color: var(--steel); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand p { margin-top: 14px; font-size: 14px; max-width: 34ch; line-height: 1.65; color: var(--steel); }
.footer-col h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); font-weight: 500; }
.footer-col ul { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--redline); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--steel-light); }

/* ---------- Page hero (secondary pages) ---------- */
.page-hero { background: var(--panel); padding: 64px 0 56px; position: relative; overflow: hidden; }
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(16,21,28,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,21,28,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 100% at 20% 0%, black, transparent 75%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(34px, 4.6vw, 54px); margin-top: 14px; }
.page-hero p { margin-top: 16px; font-size: 17px; color: var(--steel); max-width: 60ch; }

/* ---------- FAQ ---------- */
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--redline); }
.faq-q .plus { font-family: var(--font-mono); color: var(--redline); font-size: 20px; transition: transform 0.3s var(--ease-spring); flex-shrink: 0; }
.faq-item[data-open="true"] .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-smooth);
}
.faq-a p { padding: 0 4px 24px; color: var(--steel); max-width: 68ch; font-size: 15.5px; }
.faq-item[data-open="true"] .faq-a { max-height: 320px; }

/* ---------- Form (Enquire) ---------- */
.enquire-layout { display: grid; grid-template-columns: 1fr 1.35fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .enquire-layout { grid-template-columns: 1fr; } }
.form-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--steel); margin-bottom: 8px; }
.field .optional { color: var(--steel-light); text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--steel-light); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--redline); background: #fff; outline: none; box-shadow: 0 0 0 4px var(--redline-soft); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 13px; color: var(--steel-light); margin-top: 12px; text-align: center; }
.form-submit { width: 100%; justify-content: center; padding: 17px 22px; font-size: 14px; }

.confirm-state { display: none; text-align: center; padding: 40px 10px; }
.confirm-state.visible { display: block; }
.confirm-state .mark { width: 48px; height: 48px; border-radius: 50%; background: var(--redline); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 22px; }
.confirm-state h3 { font-family: var(--font-body); font-weight: 700; font-size: 22px; }
.confirm-state p { margin-top: 10px; color: var(--steel); }

.side-note { display: flex; flex-direction: column; gap: 28px; }
.side-note-item { display: flex; gap: 16px; }
.side-note-item .num { font-family: var(--font-mono); color: var(--redline); font-size: 13px; padding-top: 3px; }
.side-note-item h4 { font-family: var(--font-body); font-weight: 700; font-size: 16px; }
.side-note-item p { margin-top: 6px; color: var(--steel); font-size: 14.5px; }
.direct-contact { margin-top: 8px; padding: 22px; background: var(--panel); border-radius: var(--radius-md); }
.direct-contact .eyebrow { margin-bottom: 10px; }
.direct-contact a { font-family: var(--font-mono); font-size: 16px; color: var(--ink); border-bottom: 1px solid var(--redline); padding-bottom: 2px; transition: color 0.2s ease; }
.direct-contact a:hover { color: var(--redline); }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-spring); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
