/* ==========================================================================
   BLACK BELT RESULTS — the mentoring site
   --------------------------------------------------------------------------
   One stylesheet for every page. Same brand tokens and self-hosted fonts as
   the funnel (~/Projects/black-belt-funnel), laid out as a long-read
   mentoring site: dark masthead, dark hero, then a white reading column.

   01 Tokens        06 Figures, quotes    11 Offer + guarantee
   02 Fonts         07 Lists              12 Cases + cards
   03 Base          08 Buttons            13 Learning Hub + articles
   04 Header + nav  09 Bands              14 Contact form + about
   05 Hero          10 Diagrams           15 Footer, check panel, print
   ========================================================================== */


/* ======================================================================
   01  TOKENS
   ====================================================================== */

:root {
  --sumi:       #141110;
  --sumi-deep:  #0B0908;
  --sumi-lift:  #1C1817;
  --canvas:     #EBE4D6;
  --bone:       #F1ECE3;
  --bone-2:     #E8E0D4;
  --paper:      #FFFFFF;
  --tatami:     #B9A57C;
  --obi:        #7A4A24;
  --seal:       #9B2A1F;
  --seal-hot:   #B33325;
  --oxblood:    #47141A;
  --gold:       #D9A441;
  --gold-hi:    #F0CB78;
  --tick:       #5FC46B;   /* ticks on the dark ground */
  --tick-ink:   #2E8B3E;   /* ticks on light grounds — white tick stays readable */

  --ink:        #221D1A;   /* body text on paper */
  --ink-2:      #5E534B;   /* secondary text on paper */
  --hair:       rgba(122, 74, 36, 0.18);

  --font-display: 'Oswald', 'Arial Narrow', 'Helvetica Neue Condensed', sans-serif;
  --font-body:    'Fira Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --step-0:  clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);   /* body 17 -> 19 */
  --step-1:  clamp(1.1875rem, 1.05rem + 0.55vw, 1.375rem);/* lead */
  --step-2:  clamp(1.5rem, 1.25rem + 1vw, 1.875rem);      /* kicker, h3 */
  --step-3:  clamp(1.875rem, 1.45rem + 1.8vw, 2.75rem);   /* h2 */
  --step-4:  clamp(2.25rem, 1.5rem + 3.4vw, 4.25rem);     /* h1 */

  --measure: 760px;
  --wide:    1120px;
  --gutter:  clamp(16px, 4vw, 40px);
  --radius:  6px;
  --ease:    cubic-bezier(0.16, 0.84, 0.44, 1);
  --header-h: 84px;
}


/* ======================================================================
   02  FONTS — self-hosted, so no third party is contacted on load
   ====================================================================== */

@font-face {
  font-family: 'Oswald';
  src: url('/assets/fonts/oswald-var.woff2') format('woff2-variations');
  font-weight: 200 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fira Sans';
  src: url('/assets/fonts/fira-sans-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fira Sans';
  src: url('/assets/fonts/fira-sans-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fira Sans';
  src: url('/assets/fonts/fira-sans-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('/assets/fonts/ibm-plex-mono-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}


/* ======================================================================
   03  BASE
   ====================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--seal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--seal-hot); }
a[href^="tel:"] { white-space: nowrap; }

p { margin: 0 0 1.15em; }
strong { font-weight: 600; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.005em;
  margin: 0;
  text-wrap: balance;
}

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

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--gold); color: var(--sumi); padding: 10px 16px;
  font-family: var(--font-display); text-decoration: none;
}
.skip:focus { top: 12px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* The reading column. Everything long-form sits in one of these. */
.prose {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wide {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(48px, 7vw, 88px) 0; }
.section + .section { padding-top: 0; }

/* Section heading, with the belt mark above it */
.h2 {
  font-size: var(--step-3);
  color: var(--sumi);
  margin: 0 0 0.7em;
  padding-top: 26px;
  position: relative;
}
.h2::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 64px; height: 7px;
  background: linear-gradient(90deg, var(--sumi) 0 76%, var(--seal) 76% 84%, var(--sumi) 84%);
  border-radius: 1px;
}
.h2--center { text-align: center; }
.h2--center::before { left: 50%; transform: translateX(-50%); }

.h3 {
  font-size: var(--step-2);
  color: var(--obi);
  margin: 1.4em 0 0.6em;
}

/* The big coloured line that sits between paragraphs, like a sub-headline */
.kicker {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step-2);
  line-height: 1.25;
  color: var(--obi);
  margin: 1.6em 0 0.9em;
  text-wrap: balance;
}

.lead { font-size: var(--step-1); line-height: 1.6; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--obi);
  margin-bottom: 14px;
}

.warning {
  border-left: 4px solid var(--seal);
  background: #FBF4F2;
  padding: 18px 22px;
  margin: 1.6em 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.warning strong:first-child { color: var(--seal); letter-spacing: 0.04em; }


/* ======================================================================
   04  HEADER + NAV
   ====================================================================== */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20, 17, 16, 0.97);
  border-bottom: 1px solid rgba(185, 165, 124, 0.22);
  backdrop-filter: saturate(140%) blur(8px);
}
.site-header__inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 var(--gutter);
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.brand {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; color: var(--canvas);
  min-width: 0;
}
.brand img { width: 92px; height: auto; flex: none; }
.brand__text { display: flex; flex-direction: column; min-width: 0; }
.brand__name {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.3rem; line-height: 1.1; color: var(--canvas);
}
.brand__tag {
  font-size: 0.82rem; line-height: 1.35; color: var(--tatami);
  max-width: 260px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-display);
  font-size: 0.98rem; letter-spacing: 0.01em;
  color: var(--canvas); text-decoration: none;
  padding: 10px 14px; border-radius: 3px;
  position: relative;
}
.nav a:hover { color: var(--gold-hi); }
.nav a[aria-current="page"] { color: var(--gold); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--seal);
}

.nav-toggle {
  display: none;
  background: none; border: 1px solid rgba(185, 165, 124, 0.4);
  color: var(--canvas); border-radius: 4px;
  width: 46px; height: 42px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: currentColor;
  position: relative; transition: transform 0.2s var(--ease), background 0.2s;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1020px) {
  .brand__tag { display: none; }
}
@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .brand img { width: 72px; }
  .brand__name { font-size: 1.1rem; }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--sumi); border-bottom: 1px solid rgba(185, 165, 124, 0.22);
    padding: 8px var(--gutter) 16px;
  }
  .nav-open .nav { display: flex; }
  .nav a { padding: 14px 4px; border-bottom: 1px solid rgba(185, 165, 124, 0.12); }
  .nav a[aria-current="page"]::after { left: 4px; right: auto; width: 40px; bottom: 8px; }
}


/* ======================================================================
   05  HERO
   ====================================================================== */

.hero {
  position: relative;
  color: var(--canvas);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(217, 164, 65, 0.16), transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 110%, rgba(155, 42, 31, 0.22), transparent 70%),
    linear-gradient(180deg, #1C1715 0%, var(--sumi) 45%, var(--sumi-deep) 100%);
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  text-align: center;
  overflow: hidden;
}
.hero::before {                    /* the grain */
  content: ""; position: absolute; inset: 0;
  background: url('/assets/images/texture-canvas.png');
  opacity: 0.55; pointer-events: none;
}
.hero > * { position: relative; }

.hero__pre {
  display: inline-block;
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.04em;
  color: var(--tatami);
  border: 1px solid rgba(185, 165, 124, 0.35);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 26px;
}

.hero__title {
  font-size: var(--step-4);
  font-weight: 600;
  line-height: 1.06;
  max-width: 1040px; margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--gold);
  background: linear-gradient(180deg, var(--gold-hi) 10%, var(--gold) 55%, #B87A2A 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__title .break { display: block; }

.hero__quote {
  max-width: 880px; margin: 28px auto 0; padding: 0 var(--gutter);
  font-size: var(--step-1); line-height: 1.6;
  color: var(--canvas);
}

.hero__figure {
  max-width: 940px; margin: clamp(32px, 5vw, 56px) auto 0; padding: 0 var(--gutter);
}
.hero__figure img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(185, 165, 124, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.hero__cta { margin-top: 36px; padding: 0 var(--gutter); }

/* The smaller hero used on the Learning Hub and articles */
.hero--short { padding: clamp(40px, 6vw, 72px) 0; }
.hero--short .hero__title { font-size: clamp(2.25rem, 1.6rem + 2.6vw, 3.5rem); }
.hero__sub {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-2); color: var(--canvas);
  margin: 14px auto 0; padding: 0 var(--gutter);
}


/* ======================================================================
   06  FIGURES + QUOTES
   ====================================================================== */

.figure { margin: clamp(32px, 5vw, 52px) auto; }
.figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(20, 17, 16, 0.18);
}
.figure--narrow { max-width: 520px; }
.figure--portrait { max-width: 460px; }
.figure figcaption {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.02em; color: var(--ink-2);
  text-align: center; margin-top: 14px;
}

.pullquote {
  margin: clamp(36px, 5vw, 56px) 0;
  padding: 28px 30px 28px 34px;
  background: var(--bone);
  border-left: 6px solid var(--seal);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pullquote p {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem);
  line-height: 1.22; color: var(--sumi); margin: 0;
  text-wrap: balance;
}
.pullquote cite {
  display: block; margin-top: 14px;
  font-family: var(--font-mono); font-style: normal; font-size: 0.8rem;
  letter-spacing: 0.03em; color: var(--obi);
}


/* ======================================================================
   07  LISTS
   ====================================================================== */

.checklist { list-style: none; padding: 0; margin: 1.4em 0 1.6em; }
.checklist li {
  position: relative;
  padding: 12px 0 12px 40px;
  border-bottom: 1px solid var(--hair);
  line-height: 1.55;
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--tick-ink)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.5 12.5l3.5 3.5 7.5-8' fill='none' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 18px no-repeat;
}
.checklist--loose li { padding-top: 16px; padding-bottom: 16px; }

.numbered { list-style: none; padding: 0; margin: 1.4em 0; counter-reset: n; }
.numbered li {
  counter-increment: n;
  position: relative; padding: 4px 0 18px 58px;
}
.numbered li::before {
  content: counter(n);
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  color: var(--paper); background: var(--sumi);
  box-shadow: inset 0 0 0 2px var(--gold);
}

.imagine { list-style: none; padding: 0; margin: 1.4em 0 1.8em; }
.imagine li { padding: 10px 0; border-bottom: 1px solid var(--hair); }
.imagine li:last-child { border-bottom: 0; }
.imagine strong {
  font-family: var(--font-display); font-weight: 500; letter-spacing: 0.02em;
  color: var(--seal);
}

.see-list { list-style: none; padding: 0; margin: 0.4em 0 1.4em; }
.see-list li {
  font-family: var(--font-display); font-size: var(--step-2); color: var(--obi);
  padding: 4px 0;
}


/* ======================================================================
   08  BUTTONS
   ====================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--seal); color: var(--paper);
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.12rem; letter-spacing: 0.02em;
  text-decoration: none; line-height: 1.2;
  padding: 18px 34px; min-height: 56px;
  border: 0; border-radius: 4px; cursor: pointer;
  box-shadow: 0 10px 24px rgba(155, 42, 31, 0.28), inset 0 -3px 0 rgba(0, 0, 0, 0.18);
  transition: background 0.15s, transform 0.15s var(--ease), box-shadow 0.15s;
}
.btn:hover { background: var(--seal-hot); color: var(--paper); transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn--xl { font-size: 1.3rem; padding: 22px 44px; min-height: 66px; }
.btn--block { display: flex; width: 100%; }
.btn--gold {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  color: var(--sumi);
  box-shadow: 0 10px 24px rgba(217, 164, 65, 0.25), inset 0 -3px 0 rgba(0, 0, 0, 0.14);
}
.btn--gold:hover { background: var(--gold-hi); color: var(--sumi); }
.btn--ghost {
  background: transparent; color: var(--sumi);
  box-shadow: inset 0 0 0 2px var(--sumi);
}
.btn--ghost:hover { background: var(--sumi); color: var(--paper); }
.btn[aria-disabled="true"] { opacity: 0.6; cursor: not-allowed; }

.cta-row { text-align: center; margin: 2.2em 0; }
.cta-row__note {
  display: block; margin-top: 12px;
  font-size: 0.92rem; color: var(--ink-2);
}


/* ======================================================================
   09  BANDS — full-width grounds that break up the long read
   ====================================================================== */

.band { padding: clamp(48px, 7vw, 88px) 0; }
.band--bone  { background: var(--bone); }
.band--dark  {
  background: var(--sumi); color: var(--canvas);
  position: relative; overflow: hidden;
}
.band--dark::before {
  content: ""; position: absolute; inset: 0;
  background: url('/assets/images/texture-canvas.png'); opacity: 0.5; pointer-events: none;
}
.band--dark > * { position: relative; }
.band--dark .h2 { color: var(--canvas); }
.band--dark .h2::before {
  background: linear-gradient(90deg, var(--canvas) 0 76%, var(--seal) 76% 84%, var(--canvas) 84%);
}
.band--dark .kicker { color: var(--gold); }
.band--dark a:not(.btn) { color: var(--gold-hi); }

.band__statement {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.75rem, 1.3rem + 2vw, 2.75rem); line-height: 1.15;
  text-align: center; margin: 0 auto; max-width: 900px;
  padding: 0 var(--gutter);
  text-wrap: balance;
}
.band__statement em { font-style: normal; color: var(--gold); }


/* ======================================================================
   10  DIAGRAMS
   ====================================================================== */

.diagram { margin: clamp(32px, 5vw, 52px) auto; max-width: 620px; }
.diagram svg { width: 100%; height: auto; }
.diagram figcaption {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.02em; color: var(--ink-2); text-align: center; margin-top: 10px;
}

.belts { margin: clamp(32px, 5vw, 52px) 0; }
.belts svg { width: 100%; height: auto; }


/* ======================================================================
   11  OFFER + GUARANTEE
   ====================================================================== */

.offer {
  background: var(--sumi); color: var(--canvas);
  border-radius: 10px;
  padding: clamp(28px, 5vw, 48px);
  margin: clamp(32px, 5vw, 56px) 0;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 30px 70px rgba(20, 17, 16, 0.28);
}
.offer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 8px;
  background: linear-gradient(90deg, var(--sumi-lift) 0 70%, var(--seal) 70% 78%, var(--sumi-lift) 78%);
}
.offer__name {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.04em; color: var(--tatami); margin: 6px 0 10px;
}
.offer__headline {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--step-2); color: var(--canvas); margin: 0 0 18px;
}
.offer__price {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(3.5rem, 2.6rem + 4vw, 5.5rem); line-height: 1;
  color: var(--gold); margin: 0;
}
.offer__interval { font-size: 1.1rem; color: var(--canvas); margin: 6px 0 4px; }
.offer__perday { font-size: 0.95rem; color: var(--tatami); margin: 0 0 24px; }
.offer__list {
  list-style: none; padding: 0; margin: 0 auto 28px; max-width: 460px; text-align: left;
}
.offer__list li {
  position: relative; padding: 9px 0 9px 34px;
  border-bottom: 1px solid rgba(185, 165, 124, 0.16); line-height: 1.5;
}
.offer__list li:last-child { border-bottom: 0; }
.offer__list li::before {
  content: ""; position: absolute; left: 0; top: 12px; width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5' fill='none' stroke='%235FC46B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.offer__fine { font-size: 0.88rem; color: var(--tatami); margin: 16px 0 0; }
.offer .btn { max-width: 460px; margin: 0 auto; }

.guarantee {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 40px);
  align-items: center;
  background: var(--bone); border-radius: 10px;
  padding: clamp(24px, 4vw, 40px);
  margin: 1.6em 0;
}
.seal-badge {
  width: 150px; height: 150px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background:
    radial-gradient(circle at 50% 35%, #2A221E, var(--sumi) 70%);
  box-shadow: 0 0 0 5px var(--gold), 0 0 0 9px var(--sumi), 0 14px 30px rgba(0, 0, 0, 0.3);
  color: var(--canvas);
  font-family: var(--font-display); line-height: 1;
}
.seal-badge b { display: block; font-size: 2.5rem; color: var(--gold); font-weight: 600; }
.seal-badge span { display: block; font-size: 0.82rem; letter-spacing: 0.03em; margin-top: 6px; }
.seal-badge small { display: block; font-size: 0.72rem; letter-spacing: 0.04em; color: var(--tatami); margin-bottom: 6px; }
@media (max-width: 600px) {
  .guarantee { grid-template-columns: 1fr; justify-items: center; text-align: left; }
}

.trust {
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.03em; color: var(--ink-2); margin: 18px 0 0;
}
.trust span::before { content: "\25C6"; color: var(--seal); margin-right: 8px; font-size: 0.7em; vertical-align: 1px; }


/* ======================================================================
   12  CASES + CARDS
   ====================================================================== */

.case {
  display: grid; grid-template-columns: 220px 1fr; gap: clamp(20px, 3vw, 32px);
  align-items: start;
  background: var(--bone); border-radius: 10px;
  padding: clamp(20px, 3vw, 30px);
  margin: 1.8em 0;
}
.case img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 6px; }
.case__name {
  font-family: var(--font-display); font-weight: 500; font-size: 1.6rem;
  color: var(--sumi); margin: 0 0 4px;
}
.case__meta {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.03em; color: var(--obi); margin: 0 0 14px;
}
.case p:last-child { margin-bottom: 0; }
.case__verdict {
  font-family: var(--font-display); font-weight: 500; font-size: 1.25rem;
  color: var(--seal); margin-top: 6px;
}
@media (max-width: 640px) {
  .case { grid-template-columns: 1fr; }
  .case img { max-width: 260px; }
}

.case-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin: 2em 0;
}
.case-card {
  background: var(--paper); border-radius: 10px; overflow: hidden;
  box-shadow: 0 12px 34px rgba(20, 17, 16, 0.12);
  display: flex; flex-direction: column;
}
.case-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.case-card__body { padding: 18px 20px 22px; }
.case-card h3 { font-size: 1.45rem; color: var(--sumi); margin: 0 0 6px; }
.case-card p { font-size: 0.98rem; line-height: 1.6; margin: 0 0 10px; }
.case-card .case__verdict { font-size: 1.1rem; margin: 0; }
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; } }

.levers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 2em 0;
}
.lever {
  background: var(--sumi); color: var(--canvas);
  border-radius: 10px; padding: 24px 22px 26px;
  border-top: 5px solid var(--seal);
}
.lever__no { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--tatami); }
.lever h3 { font-size: 2rem; color: var(--gold); margin: 6px 0 10px; letter-spacing: 0.04em; }
.lever p { font-size: 0.98rem; line-height: 1.6; margin: 0; color: var(--canvas); }
@media (max-width: 820px) { .levers { grid-template-columns: 1fr; } }

.features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin: 2em 0;
}
.feature {
  background: var(--bone); border-radius: 10px; padding: 24px 22px;
  display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start;
}
.feature svg { width: 48px; height: 48px; }
.feature h3 { font-size: 1.35rem; color: var(--sumi); margin: 2px 0 6px; }
.feature p { font-size: 0.98rem; line-height: 1.6; margin: 0; }
.feature__tag {
  display: inline-block; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.04em; color: var(--paper); background: var(--seal);
  padding: 3px 8px; border-radius: 3px; margin-bottom: 6px;
}
@media (max-width: 700px) { .features { grid-template-columns: 1fr; } }

.timeline { list-style: none; margin: 1.6em 0; padding: 0; border-left: 3px solid var(--sumi); }
.timeline li { position: relative; padding: 0 0 22px 26px; }
.timeline li::before {
  content: ""; position: absolute; left: -9px; top: 8px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--paper); box-shadow: inset 0 0 0 3px var(--seal);
}
.timeline b {
  display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; color: var(--sumi);
}

/* Videos — click to load, so Vimeo/YouTube are never contacted until play */
.video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin: 1.2em 0 0;
}
.video-card {
  background: var(--paper); border-radius: 10px; overflow: hidden;
  box-shadow: 0 12px 34px rgba(20, 17, 16, 0.12);
}
.video-card__no {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em;
  color: var(--obi); margin: 16px 18px 4px;
}
.video-card h3 { font-size: 1.3rem; color: var(--sumi); margin: 0 18px 6px; }
.video-card > p:last-child { font-size: 0.95rem; line-height: 1.55; margin: 0 18px 20px; color: var(--ink-2); }
.video {
  position: relative; aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(155, 42, 31, 0.28), transparent 60%),
    url('/assets/images/texture-canvas.png'),
    var(--sumi);
  background-size: cover, auto, auto;
  background-position: center;
  display: grid; place-items: center;
}
.video iframe, .video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; }
.video__play {
  width: 68px; height: 68px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--seal); color: var(--paper);
  display: grid; place-items: center;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16), 0 12px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s var(--ease), background 0.15s;
}
.video__play:hover { background: var(--seal-hot); transform: scale(1.06); }
.video__play svg { width: 26px; height: 26px; margin-left: 4px; }
.video__length {
  position: absolute; right: 10px; bottom: 10px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.02em;
  color: var(--paper); background: rgba(0, 0, 0, 0.6); padding: 3px 7px; border-radius: 3px;
}
.video__soon {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.04em;
  color: var(--tatami); border: 1px solid rgba(185, 165, 124, 0.35); padding: 6px 12px; border-radius: 999px;
}
@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .video-grid { grid-template-columns: 1fr; } }

.signoff { margin-top: 2.4em; }
.signoff__name {
  font-family: var(--font-display); font-weight: 500; font-size: 2.2rem; color: var(--sumi);
  margin: 4px 0 0; letter-spacing: 0.02em;
}
.ps { margin-top: 2em; padding-top: 1.4em; border-top: 1px solid var(--hair); }
.ps p strong:first-child { color: var(--seal); }

.disclaimer {
  font-size: 0.9rem; line-height: 1.6; color: var(--ink-2);
  background: var(--bone); border-radius: var(--radius);
  padding: 18px 20px; margin: 2em 0 0;
}


/* ======================================================================
   13  LEARNING HUB + ARTICLES
   ====================================================================== */

.post-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
  max-width: var(--wide); margin: 0 auto; padding: 0 var(--gutter);
}
.post-card {
  display: flex; flex-direction: column;
  background: var(--paper); border-radius: 10px; overflow: hidden;
  box-shadow: 0 12px 34px rgba(20, 17, 16, 0.1);
  border-top: 6px solid var(--sumi);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(20, 17, 16, 0.16); }
.post-card[data-cat="wealth"]  { border-top-color: var(--seal); }
.post-card[data-cat="freedom"] { border-top-color: var(--gold); }
.post-card[data-cat="mentor"]  { border-top-color: var(--obi); }
.post-card__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.chip {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.03em;
  color: var(--obi); background: var(--bone);
  padding: 5px 10px; border-radius: 3px; text-decoration: none;
  margin-bottom: 14px;
}
.post-card h2 { font-size: 1.6rem; line-height: 1.18; margin: 0 0 12px; }
.post-card h2 a { color: var(--sumi); text-decoration: none; }
.post-card h2 a:hover { color: var(--seal); }
.post-card p { font-size: 1rem; line-height: 1.65; color: var(--ink-2); margin: 0 0 18px; flex: 1; }
.read-more {
  font-family: var(--font-display); font-weight: 500; letter-spacing: 0.01em;
  font-size: 0.95rem; text-decoration: none; color: var(--seal);
}
.read-more::after { content: " \2192"; }
@media (max-width: 760px) { .post-grid { grid-template-columns: 1fr; } }

.hub-cta { text-align: center; }
.hub-cta .band__statement { margin-bottom: 18px; }
.hub-cta p { max-width: 640px; margin: 0 auto 28px; padding: 0 var(--gutter); color: var(--canvas); }

.article-meta {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.03em;
  color: var(--tatami); margin-top: 18px;
}
.article-meta a { color: var(--gold-hi); text-decoration: none; }

.author {
  display: grid; grid-template-columns: 88px 1fr; gap: 18px; align-items: center;
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  padding: 22px 0; margin: 2.4em 0;
}
.author img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; }
.author p { margin: 0; font-size: 0.98rem; line-height: 1.6; }
.author b { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; display: block; color: var(--sumi); }

.more-posts { list-style: none; padding: 0; margin: 0; }
.more-posts li { border-bottom: 1px solid var(--hair); }
.more-posts a {
  display: block; padding: 14px 0; text-decoration: none;
  font-family: var(--font-display); font-size: 1.25rem; color: var(--sumi);
}
.more-posts a:hover { color: var(--seal); }

.support-note {
  font-size: 0.95rem; background: var(--bone); border-radius: var(--radius);
  padding: 14px 18px; margin: 1.6em 0;
}


/* ======================================================================
   14  CONTACT FORM + ABOUT
   ====================================================================== */

.contact {
  background: var(--bone); border-radius: 10px;
  padding: clamp(24px, 4vw, 40px);
  margin: 2em 0 0;
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-weight: 500; font-size: 0.98rem; margin-bottom: 6px; color: var(--sumi);
}
.field label span { font-weight: 400; color: var(--ink-2); }
.field input, .field textarea {
  width: 100%;
  font: inherit; font-size: 1.05rem; line-height: 1.5;
  color: var(--ink); background: var(--paper);
  border: 1px solid #CDBFA9; border-radius: 4px;
  padding: 13px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--obi); box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.35);
}
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--seal); }
.field__error { display: none; color: var(--seal); font-size: 0.9rem; margin-top: 6px; }
.field.is-invalid .field__error { display: block; }
.counter { text-align: right; font-size: 0.85rem; color: var(--ink-2); margin-top: 4px; }
.trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 14px 0 0; font-weight: 500; }
.form-done {
  text-align: center; padding: 10px 0;
}
.form-done h3 { font-size: 1.8rem; color: var(--sumi); margin-bottom: 8px; }

.about {
  background: var(--bone-2);
  border-top: 1px solid var(--hair);
  padding: clamp(48px, 7vw, 80px) 0;
}
.about__label {
  text-align: center; font-family: var(--font-display); font-size: 1.5rem; color: var(--obi);
  margin: 0 0 30px;
}
.about__grid {
  max-width: 980px; margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 240px 1fr; gap: clamp(24px, 4vw, 48px); align-items: start;
}
.about__who { text-align: center; }
.about__who img {
  width: 220px; height: 220px; border-radius: 50%; object-fit: cover; margin: 0 auto;
  box-shadow: 0 0 0 5px var(--paper), 0 0 0 7px var(--gold), 0 18px 40px rgba(20, 17, 16, 0.25);
}
.about__name { font-family: var(--font-display); font-weight: 500; font-size: 1.7rem; color: var(--sumi); margin: 20px 0 2px; }
.about__role { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.03em; color: var(--obi); }
.about__close {
  font-family: var(--font-display); font-weight: 500; font-size: 1.6rem; color: var(--seal); margin-top: 8px;
}
@media (max-width: 760px) {
  .about__grid { grid-template-columns: 1fr; }
}


/* ======================================================================
   15  FOOTER, CHECK PANEL, PRINT
   ====================================================================== */

.site-footer {
  background: var(--sumi-deep); color: var(--tatami);
  padding: 48px 0 40px; font-size: 0.92rem; line-height: 1.6;
}
.site-footer__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: auto 1fr; gap: 28px 48px; align-items: start;
}
.site-footer img { width: 120px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 6px 24px; margin-bottom: 14px; }
.site-footer nav a {
  color: var(--canvas); text-decoration: none; font-family: var(--font-display);
  letter-spacing: 0.01em; font-size: 0.92rem;
}
.site-footer nav a:hover { color: var(--gold-hi); }
.site-footer p { margin: 0 0 10px; max-width: 760px; }
.site-footer p a { color: var(--gold-hi); }
.site-footer small { color: #8E826D; }
@media (max-width: 700px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

.check-panel {
  position: fixed; right: 16px; bottom: 16px; z-index: 200;
  max-width: 360px; background: #fffbe6; color: #3b2f00;
  border: 2px solid #d4a500; border-radius: 8px; padding: 14px 16px;
  font: 13px/1.5 var(--font-mono); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.check-panel b { display: block; margin-bottom: 6px; }
.check-panel ul { margin: 0; padding-left: 18px; }

@media print {
  .site-header, .nav-toggle, .contact, .btn, .check-panel { display: none !important; }
  .hero, .band--dark { background: none !important; color: #000 !important; }
  .hero__title { -webkit-text-fill-color: #000; color: #000; background: none; }
}

/* The belt path — HTML rather than SVG so the labels stay readable on a phone */
.belt-path {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px 12px;
}
.belt-path li {
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.04em; color: var(--ink-2); text-align: center;
}
.belt {
  display: block; height: 22px; border-radius: 3px; margin-bottom: 10px; position: relative;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.18);
}
.belt--white   { background: var(--paper); box-shadow: inset 0 0 0 1px #CDBFA9, inset 0 -3px 0 rgba(0, 0, 0, 0.06); }
.belt--blue    { background: #2F5E9E; }
.belt--green   { background: #3E7D45; }
.belt--brown   { background: #6B4225; }
.belt--black   { background: linear-gradient(90deg, var(--sumi) 0 70%, var(--seal) 70% 82%, var(--sumi) 82%); }
.belt--degrees {
  background:
    linear-gradient(90deg, transparent 0 58%, var(--gold) 58% 63%, transparent 63% 68%,
                    var(--gold) 68% 73%, transparent 73% 78%, var(--gold) 78% 83%, transparent 83%),
    var(--sumi);
}
.belts figcaption {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.03em;
  color: var(--obi); text-align: center; margin-top: 16px;
}
@media (max-width: 560px) {
  .belt-path { grid-template-columns: repeat(3, 1fr); }
}


/* Book a call — sits above the contact form on the home page */
.book {
  display: grid; grid-template-columns: 1fr auto; gap: 18px 24px; align-items: center;
  background: var(--sumi); color: var(--canvas);
  border-radius: 10px; padding: 24px 28px; margin: 1.8em 0 1.4em;
  border-top: 5px solid var(--gold);
}
.book__title { font-size: 1.7rem; color: var(--gold); margin: 0 0 6px; }
.book p { margin: 0; font-size: 1rem; line-height: 1.6; color: var(--canvas); }
@media (max-width: 640px) { .book { grid-template-columns: 1fr; } }
.contact__title { font-size: 1.7rem; color: var(--sumi); margin: 0 0 18px; }
.about .btn { margin-top: 6px; }

/* Case photos carry a short caption under the image */
.case__photo { margin: 0; }
.case__photo figcaption {
  font-family: var(--font-mono); font-size: 0.74rem; line-height: 1.45;
  color: var(--ink-2); text-align: center; margin-top: 10px;
}
@media (max-width: 640px) { .case__photo { max-width: 260px; } }

/* Learning Hub topic filter */
.hub-filter {
  max-width: var(--wide); margin: 0 auto 26px; padding: 0 var(--gutter);
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hub-filter__btn {
  font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.01em;
  padding: 10px 16px; border-radius: 999px; cursor: pointer;
  background: var(--paper); color: var(--sumi);
  border: 1px solid rgba(122, 74, 36, 0.3);
}
.hub-filter__btn:hover { border-color: var(--obi); }
.hub-filter__btn.is-active { background: var(--sumi); color: var(--gold-hi); border-color: var(--sumi); }
.post-card[hidden] { display: none; }


/* ======================================================================
   16  PHOTO FEATURES — quote cards, the 97% / 3% photo, photo strips
   ====================================================================== */

.band--dark .figure figcaption { color: var(--tatami); }
.band--dark .figure img { box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45); }

/* A photo beside a quote (Einstein; the spider and the fly) */
.quote-card {
  display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  margin: clamp(36px, 5vw, 56px) 0;
  background: var(--sumi); color: var(--canvas);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 18px 48px rgba(20, 17, 16, 0.18);
}
.quote-card picture { display: block; min-height: 100%; }
.quote-card img { width: 100%; height: 100%; object-fit: cover; }
.quote-card blockquote {
  margin: 0; padding: clamp(26px, 4vw, 44px);
  display: flex; flex-direction: column; justify-content: center;
  border-left: 5px solid var(--gold);
}
.quote-card__mark {
  font-family: var(--font-display); font-weight: 600; font-size: 5rem; line-height: 0.6;
  color: var(--gold); margin-bottom: 6px;
}
.quote-card blockquote p {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.45rem, 1.15rem + 1.2vw, 2.05rem); line-height: 1.22;
  color: var(--canvas); margin: 0; text-wrap: balance;
}
.quote-card cite {
  display: block; margin-top: 18px;
  font-family: var(--font-mono); font-style: normal; font-size: 0.8rem;
  letter-spacing: 0.03em; color: var(--gold-hi);
}
@media (max-width: 600px) {
  .quote-card { grid-template-columns: 1fr; }
  .quote-card picture { aspect-ratio: 16 / 11; min-height: 0; }
  .quote-card--portrait img { object-position: 50% 22%; }
  .quote-card blockquote { border-left: 0; border-top: 5px solid var(--gold); }
}

/* The 97% / 3% photo: one person still while the crowd rushes past */
.split-stat { margin: clamp(36px, 5vw, 60px) auto; }
.split-stat__photo { position: relative; overflow: hidden; border-radius: 10px 10px 0 0; }
.split-stat__photo img { width: 100%; }
.split-stat__mark {
  position: absolute; left: 59.5%; top: 12%; width: 12.5%; height: 52%;
  border: 3px solid var(--gold); border-radius: 8px;
  box-shadow: 0 0 0 200vmax rgba(20, 17, 16, 0.34);
}
.split-stat__tag {
  position: absolute; left: -3px; bottom: 100%;
  background: var(--gold); color: var(--sumi);
  font-family: var(--font-display); font-weight: 600; line-height: 1;
  font-size: clamp(0.85rem, 0.55rem + 1.1vw, 1.35rem);
  padding: 5px 9px 4px; border-radius: 6px 6px 0 0;
}
.split-stat__bar {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--sumi); color: var(--canvas);
  border-radius: 0 0 10px 10px;
}
.split-stat__item {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 14px;
  padding: clamp(16px, 3vw, 28px) clamp(16px, 3vw, 34px);
}
.split-stat__item + .split-stat__item { border-left: 1px solid rgba(235, 228, 214, 0.16); }
.split-stat__num {
  font-family: var(--font-display); font-weight: 600; line-height: 1;
  font-size: clamp(2.3rem, 1.5rem + 3.4vw, 4.4rem); color: var(--canvas);
}
.split-stat__label {
  font-family: var(--font-display); font-weight: 500; line-height: 1.2;
  font-size: clamp(0.98rem, 0.85rem + 0.6vw, 1.35rem); color: var(--tatami);
}
.split-stat__item--gold .split-stat__num { color: var(--gold); }
.split-stat__item--gold .split-stat__label { color: var(--gold-hi); }

/* Three photos side by side */
.photo-strip { margin: clamp(32px, 5vw, 52px) auto; }
.photo-strip__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(8px, 1.4vw, 16px); }
.photo-strip img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius); box-shadow: 0 14px 36px rgba(20, 17, 16, 0.16);
}
.photo-strip figcaption {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.02em;
  color: var(--ink-2); text-align: center; margin-top: 14px;
}

.credits { font-size: 0.78rem; line-height: 1.55; color: var(--ink-2); margin-top: 14px; }
