/* =====================================================================
   ABNORMAL PRESS — Site Stylesheet
   "The Dossier" design system.
   Editorial, restrained, counsel-grade. Playfair display serif,
   Inter body, IBM Plex Mono labels. Oxblood on bone.
===================================================================== */

:root {
  /* Core palette */
  --ink:            #0B0B0C;   /* near-black; primary dark canvas */
  --ink-2:          #17171A;   /* elevated dark surface */
  --bone:           #F5F2EA;   /* primary warm off-white background */
  --bone-2:         #EBE6DA;   /* secondary light surface */
  --paper-white:    #FBFAF6;
  --oxblood:        #6E121C;   /* primary accent */
  --oxblood-bright: #9A1B22;   /* hover / active */
  --ink-soft:       #26262A;   /* body text */
  --graphite:       #5B5B60;   /* muted / secondary text */
  --line:           #D6D0C4;   /* hairlines on light */
  --line-dark:      rgba(255,255,255,0.14); /* hairlines on dark */

  /* Legacy aliases — older pages and inline styles reference these.
     They now resolve into the new palette. */
  --accent:          var(--oxblood);
  --accent-soft:     var(--oxblood-bright);
  --muted:           var(--graphite);
  --paper:           var(--bone);
  --paper-warm:      var(--bone-2);
  --footer-red:      var(--oxblood);
  --footer-red-dark: #4E0C13;

  /* Type stacks */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono:  'IBM Plex Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--oxblood); color: var(--bone); }

a { color: var(--oxblood); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--oxblood-bright); }

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

/* Focus visibility — counsel-grade accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--oxblood);
  outline-offset: 2px;
}

/* Skip-to-content link — first element in <body>, visible on focus */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 20px;
}
.skip-link:focus {
  left: 16px;
  top: 12px;
  color: var(--bone);
}

/* ---------------- TYPOGRAPHY ---------------- */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 16px;
}
h1 { font-size: clamp(42px, 5.8vw, 72px); font-weight: 700; }
h2 { font-size: clamp(30px, 3.5vw, 46px); font-weight: 600; }
h3 { font-size: 22px; font-weight: 600; }
h4 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
p  { margin: 0 0 18px; color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

/* Mono label — the dossier voice. Applied to eyebrows, meta, nav. */
.mono-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--graphite);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 18px;
  display: block;
}
.eyebrow .section-num { color: var(--oxblood); }

.lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* Italic accent word — reserved for hero H1 and top-level section titles */
h1 em, h2 em, .hero h1 em, .page-header h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--oxblood);
  font-family: var(--font-serif);
}
.weapon-band em {
  font-style: italic;
  color: var(--oxblood-bright);
}

/* Numbered section eyebrow (01/, 02/ …) — now mono */
.section-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  color: var(--oxblood);
  margin-right: 12px;
  letter-spacing: 0.18em;
}

/* Large editorial index numeral — margin marker for sections */
.section-index {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  color: var(--line);
  font-variant-numeric: tabular-nums;
  margin-bottom: 20px;
}
.section-index::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--oxblood);
  margin-top: 14px;
}
.section-head .section-index,
.industries-head .section-index { margin-left: auto; margin-right: auto; }
.section-head .section-index::after,
.industries-head .section-index::after { margin-left: auto; margin-right: auto; }

/* ---------------- LAYOUT ---------------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container, .container-narrow { padding: 0 20px; }
  body { font-size: 16px; }
}

/* ---------------- HEADER ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,242,234,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding 0.3s ease;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand .logo-svg { width: 32px; height: auto; }
.brand .logo-svg path { fill: var(--oxblood); }
.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav a:hover { color: var(--oxblood); }
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--oxblood);
  transition: right 0.25s ease;
}
.nav a:not(.nav-cta):hover::after,
.nav a.active::after { right: 0; }
.nav-cta {
  background: var(--oxblood);
  color: var(--bone) !important;
  padding: 10px 18px;
  border-radius: 0;
  border: 1px solid var(--oxblood);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.nav-cta:hover { background: var(--oxblood-bright); border-color: var(--oxblood-bright); color: var(--bone) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  font-size: 20px;
  line-height: 1;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--ink);
}
@media (max-width: 900px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bone);
    padding: 24px 32px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
    gap: 18px;
  }
  .menu-toggle { display: block; }
}

/* Header scrolled state */
.site-header.scrolled {
  background: rgba(245,242,234,0.98);
  border-bottom-color: var(--line);
}
.site-header.scrolled .header-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* ---------------- HERO — dossier cover ---------------- */
.hero {
  padding: 96px 0 104px;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 900px) {
  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero h1 { margin-bottom: 26px; }
.hero p.lead { margin-bottom: 36px; max-width: 560px; }

/* Legacy hero art (no longer animated; static, quiet) */
.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-art .logo-mark { width: 100%; max-width: 280px; }
.hero-art .logo-mark path { fill: var(--oxblood); }

/* Ruled dossier meta table — the brief-cover panel */
.dossier-meta {
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.dossier-meta dl { margin: 0; }
.dossier-meta-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.dossier-meta-head .mono-label { color: var(--ink); }
.dossier-meta-mark { width: 30px; height: auto; flex-shrink: 0; }
.dossier-meta-mark path { fill: var(--oxblood); }
.dossier-meta-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.dossier-meta-row:last-child { border-bottom: none; }
.dossier-meta-row dt {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--graphite);
  margin: 0;
  padding-top: 2px;
}
.dossier-meta-row dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.dossier-meta-row dd em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--oxblood);
}
@media (max-width: 900px) {
  .dossier-meta-row { grid-template-columns: 110px 1fr; gap: 14px; }
}

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn-primary {
  background: var(--oxblood);
  color: var(--bone) !important;
  border-color: var(--oxblood);
}
.btn-primary:hover { background: var(--oxblood-bright); border-color: var(--oxblood-bright); }
.btn-dark {
  background: var(--ink);
  color: var(--bone) !important;
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--ink-2); }
.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bone) !important; }
.btn-ghost-light {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-light:hover { background: var(--bone); color: var(--ink) !important; border-color: var(--bone); }
.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ---------------- WEAPON LINE BAND ---------------- */
.weapon-band {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.weapon-band::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--line-dark);
  pointer-events: none;
}
.weapon-band p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--bone);
  margin: 0 auto;
  max-width: 880px;
  position: relative;
}

/* ---------------- QUOTE BLOCK ---------------- */
.quote-section {
  padding: 96px 0;
  position: relative;
}
.quote-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 56px;
  background: var(--bone-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--oxblood);
}
.quote-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 18px;
  font-weight: 600;
}
.quote-card cite {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 500;
}
@media (max-width: 720px) {
  .quote-card { padding: 32px 24px; }
  .quote-card p { font-size: 21px; }
}

/* ---------------- WHY GRID (4 features) ---------------- */
.why-section { padding: 96px 0; background: var(--bone-2); }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { max-width: 620px; margin: 0 auto; color: var(--ink-soft); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 80px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; gap: 36px; } }
.why-item h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-item h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--oxblood);
  flex-shrink: 0;
}
.why-item p { font-size: 15px; line-height: 1.6; margin: 0; }

/* ---------------- DARK CALLOUT (mid-page dark block) ---------------- */
.mid-callout {
  padding: 96px 0;
  background: var(--bone);
}
.mid-callout-inner {
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--line-dark);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 48px;
}
@media (max-width: 900px) {
  .mid-callout-inner { grid-template-columns: 1fr; padding: 48px 32px; gap: 28px; }
}
.mid-callout-art {
  display: flex;
  justify-content: center;
}
.mid-callout-art svg { width: 200px; }
.mid-callout-art path { fill: rgba(255,255,255,0.06); stroke: var(--oxblood-bright); stroke-width: 2; }
.mid-callout-text .eyebrow { color: rgba(255,255,255,0.6); }
.mid-callout-text .eyebrow .section-num { color: var(--oxblood-bright); }
.mid-callout-text h2 { color: var(--bone); margin-bottom: 16px; }
.mid-callout-text h2 em { color: var(--oxblood-bright); }
.mid-callout-text p { color: rgba(255,255,255,0.82); margin-bottom: 24px; }

/* ---------------- THREE PILLARS OF OUTCOME (dark ruled section) ---------------- */
.outcome-section {
  background: var(--ink);
  color: var(--bone);
  padding: 104px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.outcome-head {
  max-width: 720px;
  margin-bottom: 72px;
}
.outcome-head .eyebrow { color: rgba(255,255,255,0.6); }
.outcome-head .eyebrow .section-num { color: var(--oxblood-bright); }
.outcome-head h2 { color: var(--bone); }
.outcome-head h2 em { color: var(--oxblood-bright); }
.outcome-head p { color: rgba(255,255,255,0.78); }
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}
@media (max-width: 900px) {
  .outcome-grid { grid-template-columns: 1fr; }
}
.outcome-item {
  padding: 44px 36px 44px 0;
  border-bottom: 1px solid var(--line-dark);
}
.outcome-item + .outcome-item { border-left: 1px solid var(--line-dark); padding-left: 36px; }
@media (max-width: 900px) {
  .outcome-item { padding: 36px 0; }
  .outcome-item + .outcome-item { border-left: none; padding-left: 0; }
}
.outcome-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--oxblood-bright);
  margin-bottom: 22px;
  font-variant-numeric: tabular-nums;
}
.outcome-item h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 14px;
  line-height: 1.2;
}
.outcome-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}
.outcome-item .tied-to {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.02em;
}
.outcome-item .tied-to strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxblood-bright);
}
.outcome-cta { margin-top: 56px; }

/* ---------------- AUDIT CTA SECTION ---------------- */
.audit-section {
  padding: 96px 0 120px;
  background: var(--bone);
  text-align: center;
  position: relative;
}
.audit-section h2 { margin-bottom: 12px; }
.audit-section p.lead { margin-bottom: 40px; max-width: 540px; margin-left: auto; margin-right: auto; }
.audit-form {
  max-width: 620px;
  margin: 0 auto;
  background: var(--paper-white);
  border-radius: 0;
  padding: 8px 8px 8px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
}
.audit-form:focus-within { border-color: var(--graphite); }
.audit-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 12px 0;
}
.audit-form input::placeholder { color: var(--graphite); }
.audit-form button {
  background: var(--oxblood);
  color: var(--bone);
  border: none;
  padding: 14px 24px;
  border-radius: 0;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease;
}
.audit-form button:hover { background: var(--oxblood-bright); }
.audit-meta {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--graphite);
}

/* ---------------- FOOTER CTA (oxblood band) ---------------- */
.footer-cta {
  background: var(--oxblood);
  color: var(--bone);
  padding: 96px 0 88px;
  text-align: center;
  border-top: 1px solid var(--line-dark);
}
.footer-cta h2 {
  color: var(--bone);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-cta h2 em { color: var(--bone); font-style: italic; font-weight: 400; }
.footer-cta p {
  color: rgba(251,250,246,0.9);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.footer-cta-form {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(251,250,246,0.25);
  border-radius: 0;
  padding: 8px 8px 8px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s ease;
}
.footer-cta-form:focus-within { border-color: rgba(251,250,246,0.6); }
.footer-cta-form .form-status {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  color: rgba(251,250,246,0.92);
  font-size: 13px;
  min-height: 18px;
}
.footer-cta-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  color: var(--bone);
  padding: 12px 0;
}
.footer-cta-form input::placeholder { color: rgba(251,250,246,0.6); }
.footer-cta-form button {
  background: var(--ink);
  color: var(--bone);
  border: none;
  padding: 14px 24px;
  border-radius: 0;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease;
}
.footer-cta-form button:hover { background: var(--ink-2); }
.footer-cta-meta {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(251,250,246,0.75);
  letter-spacing: 0.1em;
}

/* ---------------- RICH FOOTER (injected via JS on every page) ---------------- */
.site-footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 0 64px;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 56px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding: 56px 0 40px; }
}
.footer-brand-col { padding-right: 24px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
  color: var(--bone);
  width: fit-content;
}
.footer-brand .logo-svg { width: 32px; height: auto; }
.footer-brand .logo-svg path { fill: var(--oxblood-bright); }
.footer-brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 19px;
  color: var(--bone);
}
.footer-tag {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 340px;
}
.footer-cta-link {
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--oxblood-bright);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-cta-link:hover {
  color: var(--oxblood-bright);
  border-bottom-color: var(--bone);
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-col a:hover {
  color: var(--bone);
  border-bottom-color: var(--oxblood-bright);
}

/* ---------------- FOOTER (legal strip) ---------------- */
.footer-legal {
  background: var(--ink-2);
  color: rgba(255,255,255,0.7);
  padding: 22px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 1px solid var(--line-dark);
}
.footer-legal-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255,255,255,0.75);
  margin-right: 22px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--bone); text-decoration: underline; text-underline-offset: 4px; }
.footer-legal .copy { font-weight: 500; color: rgba(255,255,255,0.75); letter-spacing: 0.14em; }

/* ---------------- INTERIOR PAGE HEADER ---------------- */
.page-header {
  padding: 88px 0 64px;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-header h1 { margin-bottom: 16px; }
.page-header p { max-width: 640px; margin: 0 auto; font-size: 18px; color: var(--ink-soft); }
@media (max-width: 720px) { .page-header { padding: 56px 0 40px; } }

/* ---------------- CONTENT BLOCKS ---------------- */
.content-section { padding: 88px 0; }
.content-section.alt { background: var(--bone-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.content-section h2 { margin-bottom: 16px; }
.content-section h3 { margin-top: 36px; margin-bottom: 12px; color: var(--ink); }
.content-section ul, .content-section ol { padding-left: 22px; margin: 0 0 24px; }
.content-section li { margin-bottom: 8px; color: var(--ink-soft); }
.content-section li::marker { color: var(--oxblood); }

/* ---------------- METHOD STEPS (Find. Press. Prove.) ---------------- */
.method-step {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.method-step:first-of-type { border-top: none; padding-top: 0; }
.method-step h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--oxblood);
  margin: 0 0 10px;
}
.method-deliverable {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 500;
  margin: 18px 0 0;
}

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

/* ---------------- SERVICE PILLAR CARDS ---------------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar-card {
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-top: 2px solid var(--ink);
  padding: 36px 32px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pillar-card:hover {
  transform: translateY(-2px);
  border-color: var(--oxblood);
  border-top-color: var(--oxblood);
}
.pillar-card .pillar-num {
  font-family: var(--font-mono);
  font-style: normal;
  color: var(--oxblood);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.pillar-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 0 0 14px;
}
.pillar-card p { font-size: 15px; }
.pillar-card .tied-to {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--graphite);
  letter-spacing: 0.02em;
}
.pillar-card .tied-to strong {
  color: var(--oxblood);
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------------- WORK / CASE STUDY GRID ---------------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 720px) { .work-grid { grid-template-columns: 1fr; } }
.work-card {
  background: var(--paper-white);
  border: 1px solid var(--line);
  padding: 36px 32px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.work-card:hover { transform: translateY(-2px); border-color: var(--oxblood); }
.work-card .sector {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxblood);
  font-weight: 500;
  margin-bottom: 14px;
}
.work-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1.25;
}
.work-card .outcome {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------------- ABOUT / TEAM ---------------- */
.principles-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .principles-list { grid-template-columns: 1fr; } }
.principles-list li {
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--oxblood);
  padding: 20px 24px;
  margin: 0;
}
.principles-list li::marker { content: ""; }
.principles-list li strong { display: block; margin-bottom: 6px; }
.principles-list li span { color: var(--ink-soft); font-size: 15px; }

/* ---------------- BRAND BOOK PREVIEW ---------------- */
.bb-preview {
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--line-dark);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 32px 0;
}
@media (max-width: 900px) { .bb-preview { grid-template-columns: 1fr; padding: 48px 32px; } }
.bb-preview h2 { color: var(--bone); margin-bottom: 16px; }
.bb-preview h2 em { color: var(--oxblood-bright); }
.bb-preview p { color: rgba(255,255,255,0.82); }
.bb-preview .eyebrow { color: rgba(255,255,255,0.6); }
.bb-preview-art {
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 36px;
  text-align: center;
  font-family: var(--font-serif);
  color: var(--ink);
}
.bb-preview-art .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 12px;
  font-weight: 500;
}
.bb-preview-art .title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.bb-preview-art .title em { color: var(--oxblood); font-style: italic; font-weight: 400; }

/* ---------------- CONTACT / MAP ---------------- */
.contact-map {
  width: 100%;
  height: 480px;
  background: var(--bone-2);
  border-bottom: 1px solid var(--line);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(85%) contrast(0.95); }
.contact-info {
  padding: 56px 0 96px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 28px; } }
.contact-grid h2 { font-size: 36px; }
.contact-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  font-size: 15px;
}
.contact-block .label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 6px;
}
.contact-block a { color: var(--ink); border-bottom: 1px solid var(--line); transition: border-color 0.2s ease; }
.contact-block a:hover { border-bottom-color: var(--oxblood); }

/* Form fields — labelled inputs / textareas (contact page & beyond) */
.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--oxblood);
  outline: none;
}

/* ---------------- LEGAL PAGE STYLING ---------------- */
.legal-content { padding: 56px 0 96px; }
.legal-content h2 {
  font-size: 26px;
  margin-top: 48px;
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-weight: 600;
}
.legal-content h3 {
  font-size: 18px;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--ink);
}
.legal-content p { font-size: 16px; }
.legal-content ul { margin-bottom: 24px; }
.legal-content .last-updated {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--graphite);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* ---------------- SITEMAP ---------------- */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 32px;
}
@media (max-width: 720px) { .sitemap-grid { grid-template-columns: 1fr; gap: 24px; } }
.sitemap-col h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 16px;
}
.sitemap-col ul { list-style: none; padding: 0; margin: 0; }
.sitemap-col li { margin-bottom: 10px; }
.sitemap-col a { color: var(--ink); font-size: 16px; }
.sitemap-col a:hover { color: var(--oxblood); }

/* ---------------- INDUSTRIES STRIP ---------------- */
.industries {
  padding: 96px 0;
  background: var(--bone);
}
.industries-head {
  text-align: center;
  margin-bottom: 56px;
}
.industries-head h2 { font-style: normal; }
.industries-head h2 em { font-style: italic; color: var(--oxblood); }
.industries-head p { max-width: 600px; margin: 16px auto 0; color: var(--ink-soft); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 720px) { .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.industry-card {
  background: var(--paper-white);
  border: 1px solid var(--line);
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.industry-card:hover {
  border-color: var(--oxblood);
  transform: translateY(-2px);
}
.industry-card .industry-num {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  color: var(--oxblood);
  margin-bottom: 14px;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
}
.industry-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}
.industry-card p {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--graphite);
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ---------------- POV / INSIGHTS ---------------- */
.pov-section {
  padding: 96px 0;
  background: var(--bone-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .pov-grid { grid-template-columns: 1fr; } }
.pov-card {
  background: var(--paper-white);
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pov-card:hover {
  border-color: var(--oxblood);
  transform: translateY(-2px);
}
.pov-card .pov-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 14px;
}
.pov-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.pov-card p { font-size: 15px; flex: 1; margin-bottom: 18px; }
.pov-card .pov-link {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oxblood);
}

/* ---------------- FIND YOUR CORNERS CTA ---------------- */
.corners-cta {
  padding: 96px 0;
  background: var(--bone);
  text-align: center;
}
.corners-cta h2 { margin-bottom: 16px; }
.corners-cta h2 em { font-style: italic; color: var(--oxblood); }
.corners-cta p {
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 17px;
}

/* ---------------- SCROLL FADE-IN (single calm section reveal) ---------------- */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.06s; }
.fade-in-delay-2 { transition-delay: 0.12s; }
.fade-in-delay-3 { transition-delay: 0.18s; }
.fade-in-delay-4 { transition-delay: 0.24s; }
.fade-in-left, .fade-in-right {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.fade-in-left.visible, .fade-in-right.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in-left, .fade-in-right { opacity: 1; transform: none; transition: none; }
  .pillar-card:hover, .industry-card:hover, .work-card:hover, .pov-card:hover {
    transform: none;
  }
  html { scroll-behavior: auto; }
}

/* ---------------- 24-HOUR RESPONSE BADGE ---------------- */
.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251,250,246,0.92);
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(251,250,246,0.25);
  padding: 8px 16px;
  border-radius: 0;
}
.response-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--bone);
  flex-shrink: 0;
}

/* ---------------- UTILITY ---------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
