:root {
    /* Brand palette — bluer teal (cyan-leaning, not bottle-green) + brass gold */
    --green-900:  #082d2a;   /* deepest — near-black teal */
    --green-800:  #0a3b38;   /* deep */
    --green-700:  #0e4a47;   /* primary — dark blue-teal */
    --green-600:  #125956;   /* mid */
    --green-500:  #186c68;   /* mid-bright (gradient end) */
    --green-400:  #1f7e7a;   /* brighter accent */

    --ink:        #1c1a17;   /* warm near-black — body text on light */
    --ink-soft:   #2f2b26;
    --ink-deep:   var(--green-900);
    --muted:      #6b645c;
    --muted-2:    #958d83;
    --rule:       #d9d1bf;   /* warm straw-sand */
    --rule-2:     #eae3d1;
    --paper:      #f2ecdb;   /* warm limestone / parchment — sits under green + gold */
    --paper-2:    #e8dfc8;   /* deeper parchment for bands */

    --gold:       #c8a355;   /* brass — matches reference */
    --gold-light: #e2c57a;
    --gold-dark:  #9c7c3a;
    --gold-soft:  #b8954e;
    --mustard:    #a67c2e;   /* deep mustard — gold-tone accent for ivory sections */
    --accent:     var(--gold);

    --cream-on-dark: #f0e8ce;   /* ivory type for dark bands — warmer, straw-tinted */
    --cream-soft:    #d8ccaa;

    --serif: "Cormorant Garamond", "Tiempos", "Lyon Text", Georgia, serif;
    --sans:  "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
    --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--serif);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }
  a:hover { color: var(--accent); }
  img { display: block; max-width: 100%; }

  .section-head .mono {
    color: var(--mustard);
  }
  section.band.dark .section-head .mono { color: var(--gold-light); }
  .twocol .mono {
    color: var(--mustard);
  }
  section.band.dark .twocol .mono { color: var(--gold-light); }
  .mono {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--muted);
  }
  .sans { font-family: var(--sans); }

  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 48px; }

  /* ——— Masthead ——— */
  .top-strip {
    border-bottom: 1px solid rgba(0,0,0,0.12);
    background: linear-gradient(90deg, var(--green-900) 0%, var(--green-800) 35%, var(--green-600) 75%, var(--green-500) 100%);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(240, 232, 206, 0.78);
  }
  .top-strip .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 38px;
    gap: 32px;
  }
  .top-strip .locations { display: flex; gap: 28px; }
  .top-strip .locations span:not(:last-child)::after {
    content: "·";
    margin-left: 28px;
    color: rgba(240, 232, 206, 0.45);
  }
  .top-strip .referrer {
    color: var(--gold-light);
    border-left: 1px solid rgba(240, 232, 206, 0.25);
    padding-left: 28px;
  }
  .top-strip .referrer a { color: var(--gold-light); }
  .top-strip .referrer a:hover { color: #f4e3ad; }

  header.masthead {
    border-bottom: 1px solid var(--rule);
    padding: 22px 0 20px;
  }
  header.masthead .wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 48px;
  }
  .mark {
    text-align: center;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mark .wordmark-link {
    display: block;
    line-height: 0;
  }
  .mark .wordmark-link img {
    height: 36px !important;
    width: auto !important;
    max-width: 200px !important;
    display: block;
    object-fit: contain;
  }
  .mark .lockup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
  }
  .mark .lockup img {
    height: 36px !important;
    width: auto !important;
    max-width: 36px !important;
    display: block;
    object-fit: contain;
  }
  .mark .lockup .wordmark {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 26px;
    letter-spacing: 0.01em;
    color: var(--green-700);
    line-height: 1;
    position: relative;
    top: 1px;
  }
  .mark .lockup:hover .wordmark { color: var(--green-600); }
  .mark img {
    height: 38px;
    width: auto;
    max-width: 180px;
    display: block;
    object-fit: contain;
  }
  .mark .ornament {
    display: none;
  }
  nav.primary {
    display: flex;
    gap: 32px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
  }
  nav.primary.left  { justify-self: start; }
  nav.primary.right { justify-self: end; }
  nav.primary a { padding-bottom: 4px; }

  /* ——— Hero — photographic (two-column layout preserved, photo behind, ivory+gold type) ——— */
  section.hero {
    position: relative;
    padding: 0;
    border-bottom: none;
    min-height: 680px;
    overflow: hidden;
    isolation: isolate;
  }
  section.hero .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("images/home-hero.avif");
    background-size: cover;
    background-position: center center;
    z-index: 0;
  }
  section.hero .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg,
        rgba(28, 18, 10, 0.88) 0%,
        rgba(36, 24, 14, 0.80) 35%,
        rgba(44, 30, 18, 0.62) 65%,
        rgba(52, 36, 22, 0.50) 100%),
      linear-gradient(180deg,
        rgba(20, 14, 8, 0.30) 0%,
        rgba(28, 18, 10, 0.15) 50%,
        rgba(28, 18, 10, 0.45) 100%);
  }
  section.hero .wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: stretch;
    padding: 120px 0 130px;
    min-height: 920px;
  }
  section.hero .hero-left {
    padding-top: 20px;
  }
  section.hero .hero-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: rgba(253, 251, 244, 0.94);
    padding-top: 200px;
    padding-bottom: 0;
  }
  section.hero .hero-right p {
    color: rgba(253, 251, 244, 0.94);
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.45);
  }
  section.hero .hero-right p em {
    color: var(--gold-light);
    font-style: italic;
  }
  section.hero .hero-sub-italic {
    margin-top: 24px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--gold-light);
    line-height: 1.5;
    max-width: 42ch;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.45);
  }
  section.hero .eyebrow {
    color: var(--gold-light);
    margin-bottom: 44px;
    justify-content: flex-start;
  }
  section.hero .eyebrow::before { background: var(--gold); }
  section.hero h1.lede {
    color: #fdfbf4;
    font-size: 76px;
    line-height: 1.02;
    font-weight: 300;
    letter-spacing: -0.015em;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
    max-width: none;
    width: min(calc(100% + 380px), calc(100vw - 48px));
    position: relative;
    z-index: 3;
  }
  section.hero h1.lede .line-1 { display: block; }
  section.hero h1.lede em { color: var(--gold-light); font-style: italic; font-weight: 300; }
  section.hero h1.lede .line-2 {
    display: block;
    text-align: left;
    max-width: 14ch;
  }
  section.hero h1.lede .rule {
    display: block; width: 56px; height: 1px;
    background: var(--gold); margin: 38px 0;
  }
  section.hero .hero-sub {
    margin-top: 0;
    max-width: 44ch;
    color: rgba(253, 251, 244, 0.94);
    font-size: 19px;
    line-height: 1.55;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.45);
  }
    section.hero .hero-sub em {
    color: var(--gold-light);
    font-style: italic;
  }
  section.hero .hero-ctas {
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    gap: 0;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    max-width: 520px;
  }
  section.hero .hero-ctas a {
    padding: 20px 4px;
    border-top: 1px solid rgba(226, 197, 122, 0.45);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, padding 0.22s ease;
    text-shadow: none;
  }
  section.hero .hero-ctas a:last-child { border-bottom: 1px solid rgba(226, 197, 122, 0.45); }
  section.hero .hero-ctas a .arrow { font-family: var(--serif); font-size: 20px; letter-spacing: 0; transition: color 0.22s ease, transform 0.22s ease; }
  /* Primary: gold fill, inverts on hover */
  section.hero .hero-ctas a:first-child {
    background: var(--gold);
    color: var(--green-900);
    border-top-color: var(--gold);
    padding-left: 22px;
    padding-right: 22px;
  }
  section.hero .hero-ctas a:first-child .arrow { color: var(--green-900); }
  section.hero .hero-ctas a:first-child:hover {
    background: transparent;
    color: var(--gold-light);
    border-top-color: var(--gold-light);
  }
  section.hero .hero-ctas a:first-child:hover .arrow { color: var(--gold-light); transform: translateX(4px); }
  /* Secondary: transparent w/ hairline, fills on hover */
  section.hero .hero-ctas a:last-child {
    background: transparent;
    color: var(--cream-on-dark);
  }
  section.hero .hero-ctas a:last-child .arrow { color: var(--gold-light); }
  section.hero .hero-ctas a:last-child:hover {
    background: var(--gold);
    color: var(--green-900);
    border-top-color: var(--gold);
    border-bottom-color: var(--gold);
    padding-left: 22px;
    padding-right: 22px;
  }
  section.hero .hero-ctas a:last-child:hover .arrow { color: var(--green-900); transform: translateX(4px); }

  /* Warm ivory variant — creates rhythmic contrast between adjacent light sections */
  section.band.ivory {
    background: #f4ecd8;
  }
  section.band.ivory .problem {
    border-color: rgba(14, 74, 71, 0.14);
  }

  /* Enquiry segmentation strip */
  .enquiry-segment {
    margin: 48px 0 56px;
    padding: 28px 0 32px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .seg-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .seg-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .seg-help {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--muted);
  }
  .seg-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .seg-chip {
    appearance: none;
    background: transparent;
    border: 1px solid rgba(14, 74, 71, 0.22);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: 0.005em;
    padding: 11px 18px;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  }
  .seg-chip:hover { border-color: var(--green-700); }
  .seg-chip.is-active {
    background: var(--green-700);
    color: #f4ecd8;
    border-color: var(--green-700);
  }

  /* Dark-green gradient section band */
  section.band.dark {
    background: linear-gradient(160deg, var(--green-700) 0%, var(--green-900) 100%);
    color: var(--cream-on-dark);
    border-bottom: none;
    position: relative;
  }
  section.band.dark#founders {
    background: linear-gradient(160deg, var(--green-500) 0%, var(--green-600) 45%, var(--green-800) 100%);
  }
  section.band.dark::before,
  section.band.dark::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0.35;
  }
  section.band.dark::before { top: 0; }
  section.band.dark::after { bottom: 0; }
  section.band.dark .section-head h2 { color: var(--cream-on-dark); }
  section.band.dark .section-head h2 em { color: var(--gold-light); }
  section.band.dark .section-head .lede-copy { color: rgba(239, 232, 214, 0.82); }
  section.band.dark .section-head .lede-copy em { color: var(--gold-light); }
  section.band.dark .mono,
  section.band.dark .eyebrow { color: var(--gold-light); }
  section.band.dark p { color: rgba(239, 232, 214, 0.88); }
  section.band.dark h3 { color: var(--cream-on-dark); }
  section.band.dark h3 em { color: var(--gold-light); font-style: italic; }
  section.band.dark .twocol > div:first-child { border-right-color: rgba(226, 197, 122, 0.2); }
  section.band.dark .twocol { border-top: 1px solid rgba(226, 197, 122, 0.2); padding-top: 56px; }
  section.band.dark .fee-table {
    border-top: 1px solid rgba(226, 197, 122, 0.35);
    border-bottom: 1px solid rgba(226, 197, 122, 0.35);
  }
  section.band.dark .fee-row {
    border-bottom: 1px solid rgba(226, 197, 122, 0.15);
    color: var(--cream-on-dark);
  }
  section.band.dark .fee-row:last-child { border-bottom: none; }
  section.band.dark .fee-row .label { color: var(--cream-on-dark); }
  section.band.dark .fee-row .val { color: var(--gold-light); }
  section.band.dark .fee-row .val em { color: var(--cream-soft); }
  section.band.dark .fee-note { color: rgba(216, 207, 181, 0.76); font-size: 14px; }
  section.band.dark .founder h3 { color: var(--cream-on-dark); }
  section.band.dark .founder h3 em { color: var(--gold-light); font-style: italic; }
  section.band.dark .founder .role { color: var(--gold-light); }
  section.band.dark .founder p.bio { color: rgba(239, 232, 214, 0.86); }
  section.band.dark .cred-block { border-top-color: rgba(226, 197, 122, 0.22); }
  section.band.dark .cred-block dt { color: var(--gold-light); }
  section.band.dark .cred-block dd { color: rgba(239, 232, 214, 0.82); }
  section.band.dark .portrait .label { background: rgba(8, 45, 42, 0.78); color: var(--cream-on-dark); border-color: rgba(226, 197, 122, 0.28); }

  /* ——— Page hero (secondary pages) — ivory field, gold headlines ——— */
  section.page-hero {
    position: relative;
    padding: 120px 0 110px;
    background: var(--paper);
    color: var(--ink);
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--rule);
  }
  section.page-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0.4;
  }
  section.page-hero::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0.25;
  }
  section.page-hero .wrap { max-width: 920px; position: relative; z-index: 2; }
  section.page-hero .eyebrow {
    color: var(--mustard);
    margin-bottom: 34px;
  }
  section.page-hero .eyebrow::before { background: var(--mustard); }
  section.page-hero h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 62px;
    line-height: 1.06;
    letter-spacing: -0.01em;
    margin: 0 0 30px;
    color: var(--ink);
    max-width: 22ch;
  }
  section.page-hero h1 em { font-style: italic; color: var(--green-700); }
  section.page-hero .sub {
    font-size: 21px;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 58ch;
    margin: 0;
  }

  /* Photographic variant */
  section.page-hero.photo {
    background: none;
  }
  section.page-hero.photo .eyebrow { color: var(--gold-light); }
  section.page-hero.photo .eyebrow::before { background: var(--gold); }
  section.page-hero.photo h1 { color: var(--cream-on-dark); }
  section.page-hero.photo h1 em { color: var(--gold-light); }
  section.page-hero.photo .sub { color: rgba(239, 232, 214, 0.88); }
  section.page-hero.photo .photo-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  section.page-hero.photo .photo-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(100deg,
        var(--green-900) 0%,
        rgba(8, 45, 42, 0.94) 30%,
        rgba(14, 74, 71, 0.76) 50%,
        rgba(24, 108, 104, 0.24) 70%,
        rgba(24, 108, 104, 0) 85%);
  }

  /* ——— Prose blocks ——— */
  .prose {
    max-width: 68ch;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.65;
    color: var(--ink-soft);
  }
  .prose p { margin: 0 0 22px; }
  .prose p.callout {
    border-left: 2px solid var(--gold);
    padding: 2px 0 2px 24px;
    font-style: italic;
    color: var(--ink);
    margin-top: 32px;
  }
  .eyebrow {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mustard);
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--mustard);
  }
  h1.lede {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 64px;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--ink);
  }
  h1.lede em { font-style: italic; font-weight: 300; color: var(--ink-soft); }
  h1.lede .rule {
    display: block;
    width: 64px;
    height: 1px;
    background: var(--ink);
    margin: 36px 0;
  }
  .hero-right { padding-top: 18px; }
  .hero-right p {
    font-size: 20px;
    color: var(--ink-soft);
    margin: 0 0 24px;
    max-width: 46ch;
  }
  .hero-right p.small {
    color: var(--muted);
    font-size: 17px;
    font-style: italic;
  }
  .hero-ctas {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .hero-ctas a {
    padding: 16px 0;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .hero-ctas a:last-child { border-bottom: 1px solid var(--rule); }
  .hero-ctas a .arrow { font-family: var(--serif); font-size: 18px; letter-spacing: 0; }

  /* ——— Section scaffolding ——— */
  section.band {
    padding: 140px 0;
    border-bottom: 1px solid var(--rule);
  }
  section.band.alt { background: var(--paper-2); }
  .section-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 120px;
    margin-bottom: 90px;
  }
  .section-head h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 46px;
    line-height: 1.12;
    letter-spacing: -0.005em;
    margin: 18px 0 0;
    color: var(--ink);
  }
  .section-head h2 em { font-style: italic; font-weight: 300; color: var(--green-700); }
  .section-head .lede-copy {
    font-size: 19px;
    color: var(--ink-soft);
    padding-top: 28px;
    max-width: 54ch;
  }
  .section-head .lede-copy em { color: var(--muted); }

  /* ——— Problems list ——— */
  .problems {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--rule);
  }
  .problem {
    padding: 40px 48px 44px 0;
    border-bottom: 1px solid var(--rule);
  }
  .problem:nth-child(odd) { border-right: 1px solid var(--rule); padding-right: 56px; }
  .problem:nth-child(even) { padding-left: 56px; padding-right: 0; }

  /* Identities — 5-column card row on desktop, each with a small gold line-glyph */
  .identities {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 8px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .identity {
    padding: 40px 28px 44px;
    border-right: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .identity:last-child { border-right: none; }
  .identity:nth-child(odd),
  .identity:nth-child(even) {
    padding: 40px 28px 44px;
    border-right: 1px solid var(--rule);
  }
  .identity:last-child { border-right: none; }
  .identity .glyph {
    width: 52px;
    height: 52px;
    color: var(--green-700);
    margin-bottom: 28px;
    opacity: 0.78;
  }
  .identity .glyph svg { width: 100%; height: 100%; display: block; }
  .identity .roman {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    color: var(--muted);
    margin-bottom: 12px;
  }
  .identity h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.22;
    margin: 0 0 16px;
    color: var(--ink);
    letter-spacing: -0.005em;
  }
  .identity h3 em {
    font-style: italic;
    color: var(--green-700);
  }
  .identity p {
    margin: 0;
    font-size: 15.5px;
    color: var(--ink-soft);
    line-height: 1.6;
  }
  .problem .roman {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    color: var(--muted);
    margin-bottom: 14px;
  }
  .problem h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 14px;
    color: var(--ink);
  }
  .problem p {
    margin: 0;
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.55;
  }

  .problems-foot {
    margin-top: 72px;
    text-align: center;
  }
  .problems-foot p {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 28px;
    color: var(--ink);
    max-width: 42ch;
    margin: 0 auto;
    line-height: 1.35;
  }
  .problems-foot p strong { font-style: normal; font-weight: 500; }

  /* ——— Founders ——— */
  .founders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .founder {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }
  .portrait {
    aspect-ratio: 4/5;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
  }
  .portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.92) contrast(1.02);
  }
  .portrait.placeholder::before {
    content: "";
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      135deg,
      transparent 0 10px,
      rgba(0,0,0,0.035) 10px 11px
    );
  }
  .portrait .label {
    position: absolute;
    bottom: 12px; left: 12px;
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream-on-dark);
    background: rgba(8, 45, 42, 0.62);
    padding: 5px 9px;
    backdrop-filter: blur(2px);
  }
  .portrait.placeholder .label {
    background: transparent;
    color: var(--muted);
    padding: 0;
    backdrop-filter: none;
  }
  .founder h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.1;
    margin: 0 0 4px;
  }
  .founder h3 em { font-style: italic; font-weight: 400; }
  .founder .role {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 22px;
  }
  .founder p.bio {
    font-size: 17px;
    color: var(--ink-soft);
    margin: 0 0 22px;
    line-height: 1.55;
  }
  .founder p.cred-prose {
    border-top: 1px solid var(--rule);
    padding-top: 20px;
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    font-style: italic;
  }
  section.band.dark .founder p.cred-prose {
    border-top-color: rgba(226, 197, 122, 0.22);
    color: rgba(239, 232, 214, 0.74);
  }

  .founders-link {
    margin-top: 72px;
    padding-top: 36px;
    border-top: 1px solid rgba(226, 197, 122, 0.22);
    text-align: center;
  }
  .founders-link a {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 14px 26px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(226, 197, 122, 0.5);
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, gap 0.22s ease;
  }
  .founders-link a:hover {
    background: var(--gold-light);
    color: var(--green-900);
    border-color: var(--gold-light);
    gap: 22px;
  }
  .founders-link .arrow { font-family: var(--serif); font-size: 18px; letter-spacing: 0; }
  .cred-block {
    border-top: 1px solid var(--rule);
    padding-top: 18px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px 24px;
    font-size: 14.5px;
    font-family: var(--sans);
    line-height: 1.5;
  }
  .cred-block dt {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: 2px;
  }
  .cred-block dd {
    margin: 0;
    color: var(--ink-soft);
  }

  /* ——— Arms ——— */
  .arms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--rule);
  }
  .arm {
    padding: 52px 40px 56px;
    border-right: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
  }
  .arm:last-child { border-right: none; }
  .arm .num {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 56px;
    color: var(--muted-2);
    line-height: 1;
    margin-bottom: 32px;
  }
  .arm .kicker {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
  }
  .arm h3 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 30px;
    line-height: 1.18;
    margin: 0 0 18px;
    letter-spacing: -0.005em;
  }
  .arm h3 em { font-style: italic; }
  .arm p {
    font-size: 16.5px;
    color: var(--ink-soft);
    margin: 0 0 20px;
    line-height: 1.55;
  }
  .arm ul {
    font-family: var(--sans);
    font-size: 13.5px;
    color: var(--muted);
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    border-top: 1px solid var(--rule);
  }
  .arm ul li {
    padding: 9px 0;
    border-bottom: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
  }
  .arm ul li span.k {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-2);
  }
  .arm .led-by {
    margin-top: auto;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: 24px;
    border-top: 1px solid var(--rule);
  }
  .arm a.more {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    margin-top: 14px;
    display: inline-block;
  }
  .arm a.more:hover { color: var(--accent); }

  /* ——— Confidentiality + Fees block ——— */
  .twocol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
  .conf-solo {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }
  .conf-solo .mono {
    justify-content: center;
    margin-bottom: 20px;
  }
  .conf-solo h3 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 44px;
    line-height: 1.14;
    margin: 0 auto 32px;
    max-width: 18ch;
    letter-spacing: -0.005em;
  }
  .conf-solo h3 em { font-style: italic; }
  .conf-solo p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 20px;
    max-width: 62ch;
  }
  section.band.dark .conf-solo h3 { color: var(--cream-on-dark); }
  section.band.dark .conf-solo h3 em { color: var(--gold-light); }
  section.band.dark .conf-solo p { color: rgba(239, 232, 214, 0.88); }
  .twocol h3 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 32px;
    line-height: 1.15;
    margin: 16px 0 24px;
  }
  .twocol h3 em { font-style: italic; }
  .twocol p {
    font-size: 17px;
    color: var(--ink-soft);
    margin: 0 0 16px;
    max-width: 48ch;
  }
  .fee-table {
    font-family: var(--sans);
    font-size: 14px;
    margin-top: 32px;
    border-top: 1px solid var(--rule);
  }
  .fee-row {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
    gap: 24px;
    align-items: baseline;
  }
  .fee-row .label {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .fee-row .val {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--ink);
  }
  .fee-row .val em { font-style: italic; color: var(--muted); }
  .fee-note {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--muted);
    margin-top: 18px;
    line-height: 1.55;
    font-style: italic;
  }

  /* ——— Enquiry ——— */
  section.enquiry {
    padding: 140px 0 160px;
    text-align: center;
    border-bottom: 1px solid var(--rule);
  }
  section.enquiry .eyebrow { justify-content: center; margin-bottom: 40px; }
  section.enquiry .eyebrow::before, section.enquiry .eyebrow::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--muted-2);
  }
  section.enquiry h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 56px;
    line-height: 1.12;
    margin: 0 auto 32px;
    max-width: 22ch;
    color: var(--ink);
  }
  section.enquiry h2 em { font-style: italic; color: var(--green-700); }
  section.enquiry p {
    color: var(--ink-soft);
    max-width: 52ch;
    margin: 0 auto 48px;
    font-size: 19px;
  }
  .enquiry-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 880px;
    margin: 0 auto;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .channel {
    padding: 32px 24px;
    border-right: 1px solid var(--rule);
    text-align: left;
  }
  .channel:last-child { border-right: none; }
  .channel .label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
  }
  .channel .val {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--ink);
    line-height: 1.3;
  }
  .channel .val em { font-style: italic; color: var(--muted); display: block; font-size: 14px; margin-top: 4px; }

  /* ——— Two-path enquiry ——— */
  .paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1080px;
    margin: 0 auto;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .path {
    padding: 56px 56px 48px;
    border-right: 1px solid var(--rule);
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .path:last-child { border-right: none; }
  .path-kind {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--mustard);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .path-kind::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--mustard);
  }
  .path-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.18;
    color: var(--ink);
    margin: 0 0 22px;
    letter-spacing: -0.005em;
    max-width: 22ch;
  }
  .path-title em { font-style: italic; font-weight: 300; color: var(--green-700); }
  .path-copy {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0 0 28px;
    max-width: 42ch;
  }
  .path-meta {
    border-top: 1px solid var(--rule-2);
    padding-top: 18px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .path-meta > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    font-family: var(--sans);
    font-size: 13px;
  }
  .path-meta .k { color: var(--muted); letter-spacing: 0.02em; }
  .path-meta .v {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--ink);
    font-feature-settings: "lnum" 1, "tnum" 1;
  }
  .path-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 22px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--mustard);
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, gap 0.22s ease;
    margin-top: auto;
    margin-bottom: 16px;
  }
  .path-cta .arrow { font-family: var(--serif); font-size: 18px; letter-spacing: 0; transition: transform 0.22s ease; }
  .path-cta:hover .arrow { transform: translateX(4px); }
  .path-cta--primary {
    background: var(--mustard);
    color: #fdfbf4;
    border-color: var(--mustard);
  }
  .path-cta--primary:hover {
    background: transparent;
    color: var(--mustard);
  }
  .path-cta--secondary {
    background: transparent;
    color: var(--mustard);
  }
  .path-cta--secondary:hover {
    background: var(--mustard);
    color: #fdfbf4;
  }
  .path-note {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    max-width: 38ch;
  }
  .enquiry-foot {
    max-width: 1080px;
    margin: 40px auto 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--rule-2);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 32px;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
  }
  .enquiry-foot .label {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mustard);
  }

  /* ——— Private Practice · single-path book CTA ——— */
  .book-cta {
    max-width: 780px;
    margin: 8px auto 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 44px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
  }
  .book-btn {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 20px 32px;
    background: var(--mustard);
    color: #fdfbf4;
    border: 1px solid var(--mustard);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: background 0.22s ease, color 0.22s ease, gap 0.22s ease;
  }
  .book-btn:hover { background: transparent; color: var(--mustard); gap: 32px; }
  .book-btn .arrow { font-family: var(--serif); font-size: 20px; letter-spacing: 0; }
  .book-meta {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
  }
  .book-meta > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .book-meta .k {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .book-meta .v {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--ink);
    font-feature-settings: "lnum" 1, "tnum" 1;
  }
  .book-foot {
    max-width: 62ch;
    margin: 40px auto 0;
    text-align: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--muted);
  }
  .book-foot a { color: var(--mustard); border-bottom: 1px solid var(--rule-2); }
  .book-foot a:hover { border-bottom-color: var(--mustard); }

  /* ——— Hero-level cross-arm router (small, italic, above-the-fold-adjacent) ——— */
  .hero-router {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--rule-2);
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 56ch;
  }
  .hero-router a {
    color: var(--mustard);
    border-bottom: 1px solid var(--rule-2);
    font-style: italic;
  }
  .hero-router a:hover { border-bottom-color: var(--mustard); }

  /* ——— Cross-arm card (end of page, pre-footer) ——— */
  .crossarm {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding: 24px 0;
  }
  .crossarm-kind {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--mustard);
    margin-bottom: 22px;
  }
  .crossarm-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 48px;
    line-height: 1.14;
    margin: 0 auto 24px;
    max-width: 18ch;
    color: var(--ink);
    letter-spacing: -0.005em;
  }
  .crossarm-title em { font-style: italic; color: var(--green-700); }
  .crossarm-copy {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0 auto 32px;
    max-width: 56ch;
  }
  .crossarm-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 16px 26px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mustard);
    border: 1px solid var(--mustard);
    transition: background 0.22s ease, color 0.22s ease, gap 0.22s ease;
  }
  .crossarm-cta:hover { background: var(--mustard); color: #fdfbf4; gap: 22px; }
  .crossarm-cta .arrow { font-family: var(--serif); font-size: 18px; letter-spacing: 0; }

  /* ——— Footer ——— */
  footer {
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
    color: var(--cream-on-dark);
    padding: 96px 0 40px;
    font-family: var(--sans);
    position: relative;
  }
  footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
    opacity: 0.6;
  }
  footer .foot-logo {
    display: block;
    height: 52px !important;
    width: auto !important;
    max-width: 200px !important;
    margin-bottom: 28px;
    filter: brightness(0) invert(1);
    opacity: 0.92;
  }
  footer .foot-lockup {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
  }
  footer .foot-lockup .foot-logo-long {
    height: auto !important;
    width: auto !important;
    max-width: 192px !important;
    max-height: 50px;
    display: block;
    object-fit: contain;
    opacity: 0.96;
  }
  footer .foot-lockup img {
    height: 44px !important;
    width: 44px !important;
    max-width: 44px !important;
    display: block;
    object-fit: contain;
  }
  footer .foot-lockup .foot-wordmark {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 0.01em;
    color: var(--cream-on-dark);
    line-height: 1;
    position: relative;
    top: 2px;
    margin-bottom: 22px;
    opacity: 0.96;
  }
  footer .wrap { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; }
  footer .foot-mark {
    font-family: var(--serif);
    font-size: 28px;
    letter-spacing: 0.22em;
    line-height: 1;
    margin-bottom: 16px;
  }
  footer .tag {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: #b9b19a;
    max-width: 32ch;
    line-height: 1.5;
  }
  footer h4 {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin: 0 0 18px;
    font-weight: 500;
    opacity: 0.82;
  }
  footer ul { list-style: none; padding: 0; margin: 0; font-size: 14px; }
  footer ul li { padding: 6px 0; }
  footer ul li a:hover { color: var(--gold-light); }
  footer .legal {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(226, 197, 122, 0.14);
    margin-top: 56px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(226, 197, 122, 0.55);
    font-family: var(--mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }


/* (page-hero and .prose base rules defined earlier — duplicates removed) */
.ornament {
  text-align: center;
  font-family: var(--serif);
  color: var(--muted-2);
  font-size: 16px;
  letter-spacing: 0.4em;
  margin: 56px 0;
}

/* ——— Areas-of-work list (bigger, narrative, roman-numbered) ——— */
.areas {
  border-top: 1px solid var(--rule);
  margin-top: 48px;
}
.area {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  padding: 48px 0 44px;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.area .roman {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  color: var(--muted-2);
  line-height: 1;
}
.area h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  margin: 8px 0 16px;
  max-width: 28ch;
}
.area h3 em { font-style: italic; }
.area p {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 64ch;
  line-height: 1.6;
}

/* ——— Format strip (individual / couples / consultation / delivery) ——— */
.format-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 48px 0;
}
.format-strip > div {
  padding: 28px 28px 32px;
  border-right: 1px solid var(--rule);
}
.format-strip > div:last-child { border-right: none; }
.format-strip .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.format-strip .v {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
}
.format-strip .v em { font-style: italic; color: var(--muted); display: block; font-size: 14px; margin-top: 4px; }

/* ——— Fee list (vertical, narrative) ——— */
.fee-list {
  border-top: 1px solid var(--rule);
}
.fee-list .row {
  display: grid;
  grid-template-columns: 1.4fr 2fr auto;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.fee-list .row .k {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}
.fee-list .row .k em { font-style: italic; }
.fee-list .row .d {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.fee-list .row .v {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  white-space: nowrap;
}
.fee-list .row .v em { font-style: italic; color: var(--muted); font-size: 15px; display: block; text-align: right; margin-top: 2px; }

/* ——— Engagement block (Org page) ——— */
.engagements { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--rule); }
.engagement {
  display: grid;
  grid-template-columns: 140px 1fr 1.1fr;
  gap: 48px;
  padding: 56px 0 60px;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.engagement .eng-no {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 48px;
  color: var(--muted-2);
  line-height: 1;
}
.engagement .eng-no small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  margin-top: 12px;
}
.engagement h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 16px;
}
.engagement h3 em { font-style: italic; }
.engagement p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 14px;
  line-height: 1.6;
}
.engagement p.outcome {
  font-style: italic;
  color: var(--muted);
}
.engagement .eng-meta {
  font-family: var(--sans);
  font-size: 14px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px 20px;
  line-height: 1.5;
  align-self: start;
}
.engagement .eng-meta dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 2px;
}
.engagement .eng-meta dd { margin: 0; color: var(--ink-soft); }

/* ——— Sectors served ——— */
.sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}
.sectors li {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 14px;
  border: 1px solid var(--rule);
}

/* ——— Enquiry form (Private Practice) ——— */
.enq-form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.enq-form label {
  display: grid;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.enq-form input, .enq-form textarea {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  outline: none;
}
.enq-form input:focus, .enq-form textarea:focus { border-color: var(--ink); }
.enq-form textarea { min-height: 120px; resize: vertical; }
.enq-form button {
  justify-self: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: none;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
  cursor: pointer;
  margin-top: 12px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.enq-form button:hover { color: var(--accent); }
.enq-form button .arrow { font-family: var(--serif); font-size: 18px; letter-spacing: 0; }
.enq-note {
  font-family: var(--sans);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  max-width: 640px;
  margin: 24px auto 0;
  text-align: center;
}

/* ——— Begin block (two CTAs side-by-side) ——— */
.begin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 48px auto;
  max-width: 960px;
}
.begin a {
  display: block;
  padding: 40px 40px 44px;
  border-right: 1px solid var(--rule);
  text-align: left;
}
.begin a:last-child { border-right: none; }
.begin a:hover { background: var(--paper-2); }
.begin a .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.begin a h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--ink);
}
.begin a h4 em { font-style: italic; }
.begin a p {
  font-size: 15.5px;
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.5;
  max-width: 36ch;
}
.begin a .arrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ——— About page specific ——— */
.founder-wide {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.founder-wide:last-child { border-bottom: none; }
.founder-wide .portrait { width: 360px; }
.founder-wide .role {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.founder-wide h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
}
.founder-wide h2 em { font-style: italic; font-weight: 300; }
.founder-wide .bio-prose p {
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 58ch;
}
.founder-wide .bio-prose p.italic-close {
  font-style: italic;
  color: var(--ink);
}
.founder-wide .bio-prose p.cultural {
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-style: italic;
  color: var(--ink);
  font-size: 17px;
  margin: 32px 0;
  max-width: 58ch;
}

.quals {
  border-top: 1px solid var(--rule);
  margin-top: 36px;
}
.quals h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 32px 0 8px;
  font-weight: 500;
}
.quals .quals-lede {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 12px;
  max-width: 52ch;
}
.quals .quals-lede em { font-style: italic; }
.quals .quals-note {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 32px;
  max-width: 48ch;
}
.quals .base-training {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.qual-row {
  display: grid;
  grid-template-columns: 48px 240px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.qual-row .roman {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted-2);
  padding-top: 4px;
}
.qual-row .title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  line-height: 1.3;
}
.qual-row .title em { font-style: italic; }
.qual-row .title .org {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.qual-row .desc {
  font-family: var(--serif);
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 52ch;
}
.qual-row .desc em { font-style: italic; }
.quals-close {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
  padding: 32px 40px 8px;
  max-width: 72ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* ——— Selected work — Speaking & publications ——— */
.selected-work {
  grid-column: 1 / -1;
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid var(--rule);
  max-width: none;
}
.selected-work .section-head { margin-bottom: 48px; }
.works-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.work-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  align-items: center;
}
.work-item:last-child { border-bottom: 1px solid var(--rule); }
.work-year {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--mustard);
  text-transform: uppercase;
}
.work-kind {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.work-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.003em;
  max-width: 56ch;
}
.work-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--green-700);
}
.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.work-meta span { position: relative; }
.work-meta span + span::before {
  content: "·";
  position: absolute;
  left: -12px;
  color: var(--muted-2);
}
.work-note { display: none; }
.work-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mustard);
  white-space: nowrap;
  transition: color 0.2s ease, gap 0.2s ease;
}
.work-link:hover { color: var(--green-700); gap: 14px; }
.work-link--static { color: var(--muted); cursor: default; }
.work-link--static:hover { color: var(--muted); gap: 10px; }
.work-link .arrow {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0;
}

/* Pull quote / callout that spans content */
.big-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.2;
  color: var(--ink);
  text-align: center;
  max-width: 22ch;
  margin: 80px auto;
  letter-spacing: -0.005em;
}
.big-quote em { font-style: normal; }

/* Why standard approaches fall short — split list */
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 40px;
}
.why-list > div {
  padding: 32px 32px 36px 0;
  border-right: 1px solid var(--rule);
}
.why-list > div:last-child { border-right: none; padding-right: 0; }
.why-list > div + div { padding-left: 32px; }
.why-list h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
  font-weight: 500;
}
.why-list p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* Presenting situations list (Org page) */
.presenting {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 40px;
}
.presenting .p-item {
  padding: 28px 36px 32px 0;
  border-bottom: 1px solid var(--rule);
}
.presenting .p-item:nth-child(odd) { border-right: 1px solid var(--rule); }
.presenting .p-item:nth-child(even) { padding-left: 36px; padding-right: 0; }
.presenting .p-item p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
  max-width: 44ch;
}

/* Responsive nudge */
@media (max-width: 1024px) {
  section.hero .wrap { grid-template-columns: 1fr; gap: 60px; }
  section.hero h1.lede { width: 100%; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 60px; }
  .problems, .presenting, .founders, .twocol, .arms, .enquiry-channels, .paths, .why-list, .identities { grid-template-columns: 1fr; }
  .path { border-right: none; border-bottom: 1px solid var(--rule); padding: 40px 28px; }
  .path:last-child { border-bottom: none; }
  .path-title { font-size: 28px; }
  .problem:nth-child(odd), .problem:nth-child(even) { border-right: none; padding: 32px 0; }
  .identity { border-right: none; border-bottom: 1px solid var(--rule); padding: 32px 0; }
  .identity:last-child { border-bottom: none; }
  .presenting .p-item:nth-child(odd), .presenting .p-item:nth-child(even) { padding: 24px 0; border-right: none; }
  .engagement { grid-template-columns: 1fr; gap: 20px; }
  .format-strip { grid-template-columns: 1fr 1fr; }
  .founder-wide { grid-template-columns: 1fr; }
  .founder-wide .portrait { width: 260px; }
  .qual-row { grid-template-columns: 32px 1fr; }
  .qual-row .desc { grid-column: 1 / -1; }
  .work-item { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .work-title { font-size: 24px; }
  .selected-work { margin-top: 80px; padding-top: 56px; }
  section.page-hero h1 { font-size: 52px; }
  h1.lede { font-size: 46px; }
  .section-head h2 { font-size: 36px; }
}
