/* ============================================================
   FILE    : style.css
   SESSION : S1+S7
   DESC    : COMPLETE REWRITE in S7. All tokens, reset, nav, footer, all components.
   ============================================================
   PLACEHOLDER — paste the complete CSS from the session output.
   ============================================================ */
/* ============================================================
   THE OAKWORTH GROUP
   theoakworth.com
   Complete Stylesheet
   ============================================================

   Contents
   ─────────────────────────────────────────────────────────────
   1.  Custom Properties
   2.  Reset and Base
   3.  Accessibility
   4.  Typography
   5.  Layout
   6.  Navigation — Main Site
   7.  Navigation — Digital Services
   8.  Footer
   9.  Components
       9.01  Breadcrumb
       9.02  Page Label and Section Reference
       9.03  Blueprint Entry Point
       9.04  Outcome Statement
       9.05  Compliance Band
       9.06  Requirement List
       9.07  Deficiency List
       9.08  Service Card
       9.09  Insight Card
       9.10  Sector Card
       9.11  Model Card
       9.12  Module Card
       9.13  Anchor Navigation
       9.14  Wayfinding Buttons
       9.15  Book Navigation
       9.16  Accordion
       9.17  Engagement Step
       9.18  Scorecard
       9.19  Search Bar
       9.20  Related Links
       9.21  Team Member
       9.22  Contact List
       9.23  Field Notes
       9.24  Insight Body
       9.25  Notes List
       9.26  Forms
       9.27  Catalog
       9.28  Homepage Sections
       9.29  Misc Utilities
   10. Responsive
   11. Print
   ============================================================ */


/* ─────────────────────────────────────────────────────────────
   1. CUSTOM PROPERTIES
───────────────────────────────────────────────────────────── */

:root {

  /* Colors */
  --color-primary:         #0A1F36;
  --color-primary-hover:   #0D2847;
  --color-bg:              #FFFFFF;
  --color-surface:         #F3F6FB;
  --color-surface-warm:    #FCFBF9;
  --color-surface-blue:    #E8EEF8;
  --color-border:          #C9D5E8;
  --color-border-light:    #E2EAF5;
  --color-text:            #0D1B2A;
  --color-muted:           #4E6180;
  --color-footer-bg:       #0A1F36;
  --color-footer-text:     #8A9AB5;
  --color-link:            #1A4A8C;
  --color-link-hover:      #0A1F36;
  --color-focus:           #2C6FCF;

  /* Typography */
  --font-serif:   'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', Courier, monospace;

  /* Type Scale */
  --text-display:   56px;
  --text-h1:        44px;
  --text-h2:        30px;
  --text-h3:        22px;
  --text-body:      18px;
  --text-body-sm:   15px;
  --text-label:     11px;
  --text-caption:   13px;

  /* Line Heights */
  --lh-display:   1.1;
  --lh-h1:        1.2;
  --lh-h2:        1.3;
  --lh-h3:        1.4;
  --lh-body:      1.75;
  --lh-body-sm:   1.7;

  /* Spacing */
  --container-width:   1280px;
  --content-width:     980px;
  --section-gap:       96px;
  --section-gap-sm:    64px;

  /* Letter Spacing */
  --ls-label:    0.18em;
  --ls-mono:     0.06em;
  --ls-caption:  0.08em;
}


/* ─────────────────────────────────────────────────────────────
   2. RESET AND BASE
───────────────────────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-serif);
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.digital {
  background-color: var(--color-surface-warm);
}

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

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

a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}

hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 3rem 0;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

address {
  font-style: normal;
}

time {
  display: block;
}


/* ─────────────────────────────────────────────────────────────
   3. ACCESSIBILITY
───────────────────────────────────────────────────────────── */

:focus {
  outline: none;
}

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  z-index: 9999;
}

.skip-link:focus {
  top: 1rem;
}


/* ─────────────────────────────────────────────────────────────
   4. TYPOGRAPHY
───────────────────────────────────────────────────────────── */

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--text-h1);
  line-height: var(--lh-h1);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: var(--text-h2);
  line-height: var(--lh-h2);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: var(--text-h3);
  line-height: var(--lh-h3);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.5rem;
  max-width: var(--content-width);
}

p:last-child {
  margin-bottom: 0;
}

/* Display heading (homepage hero only) */
.display-heading {
  font-size: var(--text-display);
  line-height: var(--lh-display);
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--color-primary);
}

/* Deck / sub-headline */
.deck {
  font-size: 20px;
  line-height: 1.55;
  color: var(--color-muted);
  max-width: var(--content-width);
  margin-bottom: 2rem;
  font-weight: 400;
}


/* ─────────────────────────────────────────────────────────────
   5. LAYOUT
───────────────────────────────────────────────────────────── */

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  padding: var(--section-gap) 0;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 3rem;
}

/* Full-bleed sections that sit inside .container flow */
section + section {
  margin-top: 0;
}

/* Table wrapper for overflow */
.table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-body-sm);
}

table th {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--color-border);
  font-weight: 400;
}

table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border-light);
  vertical-align: top;
  line-height: 1.6;
}

table tr:last-child td {
  border-bottom: none;
}


/* ─────────────────────────────────────────────────────────────
   6. NAVIGATION — MAIN SITE
───────────────────────────────────────────────────────────── */

.nav {
  --nav-height: 80px;
  height: var(--nav-height);
  border-bottom: 1px solid rgba(201,213,232,0.6);
  background-color: rgba(255,255,255,0.65);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.nav-logo:hover {
  opacity: 0.8;
  text-decoration: none;
}

.nav-logo img {
  height: 64px;
  width: auto;
}

/* Menu wrapper */
.nav-menu {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0;
  justify-content: center;
}

/* ── Dropdown container */
.nav-dropdown {
  position: relative;
}

/* ── Dropdown trigger */
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--color-text);
  background: none;
  border: none;
  padding: 0 1rem;
  height: var(--nav-height);
  cursor: pointer;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--color-link);
}

/* Chevron */
.nav-dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 0.2rem;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-trigger::after {
  transform: rotate(180deg);
}

/* ── Direct nav link (Contact) */
.nav-link-direct {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--color-text);
  padding: 0 1rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.nav-link-direct:hover,
.nav-link-direct.is-active {
  color: var(--color-link);
  text-decoration: none;
}

/* ── Dropdown panel */
.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-primary);
  min-width: 230px;
  padding: 0.5rem 0;
  z-index: 300;
  box-shadow: 0 12px 32px rgba(10, 31, 54, 0.09);
}

.nav-dropdown.is-open .nav-dropdown-panel {
  display: block;
}

/* ── Wide two-column panel (The Work) */
.nav-dropdown-panel--wide {
  min-width: 500px;
  padding: 1.5rem;
  display: none;
}

.nav-dropdown.is-open .nav-dropdown-panel--wide {
  display: block;
}

.nav-panel-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.nav-panel-col-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-border-light);
}

/* ── Dropdown items */
.nav-dropdown-item {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--text-body-sm);
  color: var(--color-text);
  padding: 0.45rem 1.25rem;
  text-decoration: none;
  transition: background-color 0.1s ease, color 0.1s ease;
  white-space: nowrap;
  line-height: 1.5;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.is-active {
  background-color: var(--color-surface-blue);
  color: var(--color-primary);
  text-decoration: none;
}

.nav-dropdown-panel--wide .nav-dropdown-item {
  padding: 0.4rem 0;
  white-space: normal;
  font-size: 14px;
}

.nav-dropdown-panel--wide .nav-dropdown-item:hover {
  background-color: transparent;
  text-decoration: underline;
}

/* ── Digital Services button */
.nav-btn-digital {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  background: transparent;
  padding: 0.5rem 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
  height: 38px;
}

.nav-btn-digital:hover {
  background-color: var(--color-primary);
  color: var(--color-bg);
  text-decoration: none;
}

/* ── Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ─────────────────────────────────────────────────────────────
   7. NAVIGATION — DIGITAL SERVICES
───────────────────────────────────────────────────────────── */

.nav-digital {
  height: 52px;
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-surface-warm);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-digital-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-digital-back {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--ls-mono);
  color: var(--color-muted);
  text-decoration: none;
  padding-right: 1.5rem;
  margin-right: 1.5rem;
  border-right: 1px solid var(--color-border);
  height: 52px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.15s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-digital-back:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-digital-links {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-digital-links::-webkit-scrollbar {
  display: none;
}

.nav-digital-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 0 0.9rem;
  height: 52px;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.nav-digital-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-digital-link.is-active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}


/* ─────────────────────────────────────────────────────────────
   8. FOOTER
───────────────────────────────────────────────────────────── */

.footer {
  background-color: var(--color-footer-bg);
  padding: 4rem 0 2.5rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col-heading {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-footer-text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-family: var(--font-serif);
  font-size: var(--text-body-sm);
  color: var(--color-footer-text);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--color-bg);
  text-decoration: none;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-attribution {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-footer-text);
  line-height: 1.9;
  max-width: 580px;
}

.footer-attribution a {
  color: var(--color-footer-text);
  text-decoration: underline;
  transition: color 0.15s ease;
}

.footer-attribution a:hover {
  color: var(--color-bg);
}

.footer-social {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  flex-shrink: 0;
}

.footer-social a {
  color: var(--color-footer-text);
  display: flex;
  align-items: center;
  transition: color 0.15s ease;
}

.footer-social a:hover {
  color: var(--color-bg);
}

.footer-social svg {
  fill: currentColor;
}


/* ─────────────────────────────────────────────────────────────
   9. COMPONENTS
───────────────────────────────────────────────────────────── */


/* 9.01  Breadcrumb */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  letter-spacing: var(--ls-caption);
}

.breadcrumb-item a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.breadcrumb-item a:hover {
  color: var(--color-primary);
}

.breadcrumb-sep {
  color: var(--color-border);
  user-select: none;
}

.breadcrumb-current {
  color: var(--color-text);
}


/* 9.02  Page Label and Section Reference */

.page-label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.section-ref {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
}

.section-heading-mono {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border-light);
}


/* 9.03  Blueprint Entry Point */

.blueprint-entry {
  background-color: var(--color-surface-blue);
  padding: 1.25rem 1.5rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-left: 3px solid var(--color-primary);
}

.blueprint-entry p {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  letter-spacing: var(--ls-caption);
  color: var(--color-primary);
  margin: 0;
  max-width: none;
}

.blueprint-entry a {
  color: var(--color-primary);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.blueprint-entry a:hover {
  text-decoration: underline;
}


/* 9.04  Outcome Statement */

.outcome-statement {
  background-color: var(--color-surface);
  border-left: 3px solid var(--color-border);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.outcome-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.outcome-statement p {
  font-size: var(--text-body-sm);
  color: var(--color-text);
  line-height: 1.75;
  margin: 0;
  max-width: none;
}


/* 9.05  Compliance Band */

.compliance-band {
  border: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 5.5rem 1fr;
}

.compliance-band + .compliance-band {
  border-top: none;
}

.compliance-band.is-active {
  border-left: 3px solid var(--color-primary);
}

.compliance-level-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: var(--color-surface);
  padding: 0.85rem 0.75rem;
  border-right: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  padding-top: 0.9rem;
}

.compliance-band.is-active .compliance-level-label {
  background-color: var(--color-surface-blue);
  font-weight: 400;
}

.compliance-level-content {
  padding: 0.85rem 1.1rem;
  font-size: var(--text-body-sm);
  line-height: 1.65;
  color: var(--color-text);
}


/* 9.06  Requirement List */

.requirement-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.requirement-list li {
  padding: 0.65rem 0 0.65rem 1.75rem;
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  font-size: var(--text-body);
  line-height: 1.65;
  max-width: var(--content-width);
}

.requirement-list li:last-child {
  border-bottom: none;
}

.requirement-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  top: 0.68rem;
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 14px;
}


/* 9.07  Deficiency List */

.deficiency-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.deficiency-list li {
  padding: 0.65rem 0 0.65rem 1.75rem;
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  font-size: var(--text-body);
  line-height: 1.65;
  max-width: var(--content-width);
}

.deficiency-list li:last-child {
  border-bottom: none;
}

.deficiency-list li::before {
  content: '\25A0';
  position: absolute;
  left: 0.2rem;
  top: 0.9rem;
  color: var(--color-muted);
  font-size: 8px;
}


/* 9.08  Service Card */

.service-list {
  margin: 0;
  padding: 0;
}

.service-card {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  transition: background-color 0.1s ease;
}

.service-card:last-child {
  border-bottom: none;
}

.service-card:hover .service-card-title {
  text-decoration: underline;
}

.service-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  padding-top: 0.25rem;
  line-height: 1;
}

.service-card-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.service-card-desc {
  font-size: var(--text-body-sm);
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

.service-card-price {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}

.service-card-stage {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-top: 0.3rem;
}

/* Pricing disclaimer */
.pricing-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  display: block;
  max-width: var(--content-width);
  line-height: 1.6;
}


/* 9.09  Insight Card */

.insight-card {
  display: block;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
}

.insight-card:last-child {
  border-bottom: none;
}

.insight-card:hover .insight-card-title {
  text-decoration: underline;
}

.insight-card-date {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.4rem;
}

.insight-card-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.insight-card-desc {
  font-size: var(--text-body-sm);
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}


/* 9.10  Sector Card */

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

.sector-card {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  gap: 2rem;
}

.sector-card:last-child {
  border-bottom: none;
}

.sector-card:hover .sector-card-title {
  text-decoration: underline;
}

.sector-card-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-primary);
  flex-shrink: 0;
}

.sector-card-desc {
  font-size: var(--text-caption);
  color: var(--color-muted);
  line-height: 1.55;
  text-align: right;
  max-width: 380px;
}


/* 9.11  Model Card */

.models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.model-card {
  background-color: var(--color-surface);
  padding: 1.5rem;
  border-top: 3px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.model-card-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  display: block;
  line-height: 1.3;
}

.model-card-desc {
  font-size: var(--text-body-sm);
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
}

.model-card-modules-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  display: block;
  margin-bottom: 0.35rem;
}

.model-card-modules-list {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  line-height: 1.8;
  letter-spacing: 0.02em;
  display: block;
}

.model-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}

.model-card-stage {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
}

.model-card-price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 400;
  white-space: nowrap;
}


/* 9.12  Module Card */

.modules-area {
  margin-bottom: 2.5rem;
}

.modules-area-heading {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  display: block;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.module-card {
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background-color: var(--color-bg);
  transition: border-color 0.15s ease;
}

.module-card:hover {
  border-color: var(--color-primary);
}

.module-card-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  display: block;
  font-weight: 400;
  line-height: 1.45;
}

.module-download-link {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-link);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.15s ease;
}

.module-download-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.module-sample-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-muted);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* Catalog section labels */
.catalog-section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.catalog-section-desc {
  font-size: var(--text-body-sm);
  color: var(--color-muted);
  max-width: var(--content-width);
  margin-bottom: 1.5rem;
}


/* 9.13  Anchor Navigation (Catalog) */

.anchor-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2.5rem;
}

.anchor-nav-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 0.65rem 1.25rem 0.65rem 0;
  margin-right: 1.25rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.anchor-nav-link:hover {
  color: var(--color-primary);
  text-decoration: none;
  border-bottom-color: var(--color-primary);
}


/* 9.14  Wayfinding Buttons */

.wayfinding-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.wayfinding-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.65rem 1.35rem;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
}

.wayfinding-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-bg);
  text-decoration: none;
}

.wayfinding-btn--secondary {
  border-color: var(--color-border);
  color: var(--color-muted);
}

.wayfinding-btn--secondary:hover {
  background-color: var(--color-muted);
  border-color: var(--color-muted);
  color: var(--color-bg);
}

.wayfinding-context {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
  display: block;
  max-width: var(--content-width);
  line-height: 1.6;
}


/* 9.15  Book Navigation */

.book-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.book-nav-prev,
.book-nav-next {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.book-nav-prev::before {
  content: '\2190\00A0';
}

.book-nav-next::after {
  content: '\00A0\2192';
}

.book-nav-prev:hover,
.book-nav-next:hover {
  color: var(--color-primary);
  text-decoration: none;
}


/* 9.16  Accordion */

.accordion {
  border: 1px solid var(--color-border);
  margin-top: 1rem;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border: none;
  font-family: var(--font-serif);
  font-size: var(--text-body-sm);
  color: var(--color-text);
  text-align: left;
  gap: 1rem;
  cursor: pointer;
  transition: background-color 0.15s ease;
  line-height: 1.5;
}

.accordion-trigger:hover {
  background-color: var(--color-surface-blue);
}

.accordion-icon {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
  width: 20px;
  text-align: center;
}

.accordion-panel {
  display: none;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: var(--text-body-sm);
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-bg);
}

.accordion-panel p {
  max-width: none;
  margin-bottom: 0;
}

.accordion-panel.is-open {
  display: block;
}


/* 9.17  Engagement Step */

.engagement-steps {
  margin: 0;
}

.engagement-step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border-light);
}

.engagement-step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 28px;
  color: var(--color-border);
  line-height: 1;
  font-weight: 300;
  padding-top: 0.4rem;
  user-select: none;
}

.step-content {
  padding-top: 0;
}

.step-title {
  font-family: var(--font-serif);
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.2rem;
  margin-top: 0;
}

.step-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  display: block;
}

.step-desc {
  font-size: var(--text-body-sm);
  color: var(--color-muted);
  line-height: 1.7;
  max-width: var(--content-width);
  margin-bottom: 0;
}


/* 9.18  Scorecard */

.scorecard-result {
  display: none;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--color-primary);
}

.scorecard-result.is-visible {
  display: block;
}

.score-overall {
  text-align: center;
  padding: 2.5rem 2rem;
  background-color: var(--color-surface);
  margin-bottom: 2rem;
}

.score-number {
  font-family: var(--font-mono);
  font-size: 64px;
  font-weight: 300;
  color: var(--color-primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.score-label {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  display: block;
}

.score-layer {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 0.75rem;
  display: inline-block;
  text-decoration: none;
  transition: color 0.15s ease;
}

.score-layer:hover {
  color: var(--color-link);
  text-decoration: underline;
}

.score-domain-breakdown {
  margin-top: 1.5rem;
}

.score-domain-item {
  display: grid;
  grid-template-columns: 200px 80px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border-light);
}

.score-domain-item:last-child {
  border-bottom: none;
}

.score-domain-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  padding-top: 0.1rem;
}

.score-domain-pct {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-text);
  font-weight: 400;
  padding-top: 0.05rem;
}

.score-domain-gap {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Scorecard optional section */
.scorecard-optional {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.scorecard-field-label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.6rem;
}

.scorecard-input {
  width: 100%;
  max-width: 400px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-text);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 0.65rem 0.9rem;
  outline: none;
  border-radius: 0;
  appearance: none;
  display: block;
  transition: border-color 0.15s ease;
}

.scorecard-input:focus {
  border-color: var(--color-primary);
}

.scorecard-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.scorecard-checkbox-row input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.scorecard-checkbox-label {
  font-size: var(--text-body-sm);
  color: var(--color-text);
  line-height: 1.55;
}

.scorecard-no-marketing {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  display: block;
  margin-top: 0.75rem;
}


/* 9.19  Search Bar */

.search-wrapper {
  margin-bottom: 2.5rem;
}

.search-label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.search-input {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--color-text);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  outline: none;
  border-radius: 0;
  appearance: none;
  box-sizing: border-box;
  transition: border-color 0.15s ease;
}

.search-input:focus {
  border-color: var(--color-primary);
}

.search-input::placeholder {
  color: var(--color-muted);
}

.search-no-results {
  display: none;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: var(--color-muted);
  padding: 1.5rem 0;
  letter-spacing: 0.04em;
}


/* 9.20  Related Links */

.related-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-links li {
  border-bottom: 1px solid var(--color-border-light);
}

.related-links li:last-child {
  border-bottom: none;
}

.related-links a {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  padding: 0.7rem 0;
  text-decoration: none;
  transition: color 0.15s ease;
  line-height: 1.5;
}

.related-links a:hover {
  color: var(--color-link);
  text-decoration: underline;
}

.related-link-meta {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
  font-weight: 300;
}


/* 9.21  Team Member */

.team-member {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-border);
  max-width: var(--content-width);
}

.team-member:last-child {
  border-bottom: none;
}

.team-member-name {
  font-size: 18px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.15rem;
  color: var(--color-primary);
}

.team-member-role {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.team-member-bio {
  color: var(--color-muted);
  font-size: var(--text-body-sm);
  margin-top: 0.4rem;
  margin-bottom: 0;
  line-height: 1.65;
}


/* 9.22  Contact List */

.contact-list {
  max-width: var(--content-width);
}

.contact-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item-label {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  padding-top: 0.2rem;
  display: block;
  line-height: 1.5;
}

.contact-item-value {
  font-family: var(--font-serif);
  font-size: var(--text-body);
  color: var(--color-primary);
  display: block;
}

a.contact-item-value:hover {
  text-decoration: underline;
  color: var(--color-link-hover);
}

.contact-item-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  display: block;
  margin-top: 0.4rem;
  line-height: 1.5;
}

.contact-address {
  font-style: normal;
  line-height: 1.85;
  color: var(--color-text);
}

/* Legal footer note */
.legal-footer-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  line-height: 1.85;
  max-width: var(--content-width);
}


/* 9.23  Field Notes */

.field-note-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.field-note-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.15s ease;
}

.field-note-link:hover {
  color: var(--color-link);
  text-decoration: underline;
}

.field-note-body p {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  max-width: var(--content-width);
  margin-bottom: 1.25rem;
}

.field-note-body p:last-child {
  margin-bottom: 0;
}


/* 9.24  Insight Body */

.insight-published-date {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0;
  margin-top: -0.5rem;
}

.insight-body h2 {
  margin-top: 2.5rem;
}

.insight-body h3 {
  margin-top: 2rem;
}

.insight-body p {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  max-width: var(--content-width);
  margin-bottom: 1.5rem;
}

.insight-body p:last-child {
  margin-bottom: 0;
}

.insight-body a {
  color: var(--color-link);
  text-decoration: underline;
}

.insight-body a:hover {
  color: var(--color-primary);
}

.insight-body strong {
  font-weight: 600;
}

.insight-body em {
  font-style: italic;
}


/* 9.25  Notes List */

.notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notes-list-item {
  border-bottom: 1px solid var(--color-border-light);
}

.notes-list-item:last-child {
  border-bottom: none;
}

.notes-list-link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.85rem 0;
  text-decoration: none;
  transition: color 0.15s ease;
}

.notes-list-link:hover .notes-list-title {
  text-decoration: underline;
}

.notes-list-title {
  font-family: var(--font-serif);
  font-size: var(--text-body-sm);
  color: var(--color-primary);
  line-height: 1.45;
}

.notes-list-date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  flex-shrink: 0;
  display: block;
}

.notes-empty-state {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: var(--color-muted);
  letter-spacing: 0.04em;
  padding: 1.5rem 0;
  max-width: none;
  margin-bottom: 0;
}


/* 9.26  Forms */

.form-field {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-text);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 0.65rem 0.9rem;
  outline: none;
  border-radius: 0;
  appearance: none;
  box-sizing: border-box;
  transition: border-color 0.15s ease;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%234E6180' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-muted);
}

.form-hint {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
}

.btn-submit {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  background: transparent;
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.btn-submit:hover:not(:disabled) {
  background-color: var(--color-primary);
  color: var(--color-bg);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.terms-line {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  margin-top: 1rem;
  display: block;
  line-height: 1.6;
}

.terms-line a {
  color: var(--color-muted);
  text-decoration: underline;
  transition: color 0.15s ease;
}

.terms-line a:hover {
  color: var(--color-primary);
}

/* Cite block */
.cite-block {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  color: var(--color-muted);
  background-color: var(--color-surface);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  letter-spacing: 0.02em;
  word-break: break-all;
  line-height: 1.6;
}


/* 9.27  Catalog */

#models,
#modules {
  scroll-margin-top: 4rem;
}


/* 9.28  Homepage Sections */

/* Hero */
.home-hero {
  padding: 5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.home-hero-sub {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-muted);
  max-width: 640px;
  margin: 1.5rem 0 2.5rem;
  font-weight: 400;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.home-hero-link {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: var(--ls-mono);
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.home-hero-link:hover {
  color: var(--color-link);
  text-decoration: underline;
}

/* Homepage sections */
.home-section {
  padding: var(--section-gap) 0;
  border-bottom: 1px solid var(--color-border);
}

.home-section:last-child {
  border-bottom: none;
}

.home-section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1.75rem;
}

.home-section-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  margin-top: 1.25rem;
  display: block;
  max-width: var(--content-width);
  line-height: 1.6;
}

/* Homepage sector list — compact horizontal-ish */
.home-sector-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-sector-item {
  border-bottom: 1px solid var(--color-border-light);
}

.home-sector-item:last-child {
  border-bottom: none;
}

.home-sector-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  text-decoration: none;
  gap: 1rem;
  transition: color 0.15s ease;
}

.home-sector-link:hover .home-sector-name {
  text-decoration: underline;
}

.home-sector-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.home-sector-arrow {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-muted);
  flex-shrink: 0;
}


/* 9.29  Misc Utilities */

.text-muted {
  color: var(--color-muted);
}

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

.text-sm {
  font-size: var(--text-body-sm);
}

.text-caption {
  font-size: var(--text-caption);
}

.no-margin {
  margin: 0;
}


/* ─────────────────────────────────────────────────────────────
   10. RESPONSIVE
───────────────────────────────────────────────────────────── */

/* Tablet: ≤ 960px */
@media (max-width: 960px) {

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .models-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {

  :root {
    --text-display:   36px;
    --text-h1:        30px;
    --text-h2:        22px;
    --section-gap:    64px;
    --section-gap-sm: 48px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .deck {
    font-size: 17px;
  }

  /* Nav mobile */
  .nav-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-bg);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 0;
    overflow-y: auto;
    z-index: 150;
    border-top: 1px solid var(--color-border);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-dropdown {
    border-bottom: 1px solid var(--color-border-light);
  }

  .nav-dropdown-trigger {
    width: 100%;
    height: auto;
    padding: 1rem 0;
    justify-content: space-between;
    font-size: 14px;
  }

  .nav-link-direct {
    height: auto;
    padding: 1rem 0;
    font-size: 14px;
    border-bottom: 1px solid var(--color-border-light);
  }

  .nav-dropdown-panel,
  .nav-dropdown-panel--wide {
    position: static;
    box-shadow: none;
    border: none;
    border-top: none;
    padding: 0 0 0.75rem 1rem;
    min-width: auto;
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-panel,
  .nav-dropdown.is-open .nav-dropdown-panel--wide {
    display: block;
  }

  .nav-panel-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nav-panel-col:first-child {
    margin-bottom: 0.75rem;
  }

  /* Digital nav mobile */
  .nav-digital-back {
    padding-right: 1rem;
    margin-right: 1rem;
  }

  .nav-digital-link {
    padding: 0 0.6rem;
    font-size: 11px;
  }

  /* Hero */
  .home-hero {
    padding: 3rem 0;
  }

  .home-hero-sub {
    font-size: 17px;
  }

  /* Components */
  .service-card {
    grid-template-columns: 3.5rem 1fr;
  }

  .sector-card {
    flex-direction: column;
    gap: 0.3rem;
  }

  .sector-card-desc {
    text-align: left;
    max-width: none;
  }

  .compliance-band {
    grid-template-columns: 1fr;
  }

  .compliance-level-label {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .score-domain-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .book-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .contact-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .engagement-step {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {

  :root {
    --text-display: 30px;
    --text-h1:      26px;
    --text-h2:      20px;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-panel-columns {
    grid-template-columns: 1fr;
  }

  .score-number {
    font-size: 48px;
  }

  .wayfinding-group {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ─────────────────────────────────────────────────────────────
   11. PRINT
───────────────────────────────────────────────────────────── */

@media print {

  .nav,
  .nav-digital,
  .footer,
  .blueprint-entry,
  .wayfinding-group,
  .book-nav,
  .scorecard-optional,
  .search-wrapper {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

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

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 9pt;
    color: #666;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }

  .outcome-statement,
  .compliance-band {
    page-break-inside: avoid;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }
}