/* Therapy Wisdom — warm, graceful practice-growth system.
   Cream dominates; deep forest is a grounding anchor; sage, gold, and
   orange move as organic bands. MontserratLight display, Lato body,
   Arimo compact labels — all locally hosted brand fonts. */
:root {
  --bg: #F5F0E6;
  --surface: #FFFFFF;
  --fg: #173E38;
  --charcoal: #424247;
  --gold: #D1A23C;
  --accent: #E98A45;
  --sage: #A9BBA7;
  --accent-on: #173E38;
  --gold-deep: color-mix(in oklab, var(--gold), var(--fg) 42%);
  --sage-sky: color-mix(in oklab, var(--sage), var(--bg) 58%);
  --sage-band: color-mix(in oklab, var(--sage), var(--bg) 46%);
  --sage-wash: color-mix(in oklab, var(--sage), var(--surface) 72%);
  --cream-deep: color-mix(in oklab, var(--bg), var(--gold) 9%);
  --line: color-mix(in oklab, var(--fg), transparent 86%);
  --line-gold: color-mix(in oklab, var(--gold), transparent 52%);
  --line-dark: color-mix(in oklab, var(--surface), transparent 76%);
  --shadow-soft: 0 22px 54px color-mix(in oklab, var(--fg), transparent 88%);
  --shadow-band: 0 30px 70px color-mix(in oklab, var(--fg), transparent 90%);
  --font-display: "MontserratLight", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Lato", "Helvetica Neue", Arial, sans-serif;
  --font-label: "Arimo", "Helvetica Neue", Arial, sans-serif;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(76px, 9vw, 136px);
  --radius-band: clamp(28px, 4vw, 48px);
  --radius-panel: 22px;
  --focus: 0 0 0 4px color-mix(in oklab, var(--gold), transparent 35%);
  --ease: cubic-bezier(.2, 0, 0, 1);
}

/* ---- Brand fonts (local files only) ---- */
@font-face {
  font-family: "MontserratLight";
  src: url("assets/fonts/MontserratLight-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "MontserratLight";
  src: url("assets/fonts/MontserratLight-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "MontserratLight";
  src: url("assets/fonts/MontserratLight-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/Lato-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/Lato-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/Lato-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Arimo";
  src: url("assets/fonts/Arimo-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Arimo";
  src: url("assets/fonts/Arimo-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

/* ---- Base ---- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
.btn,
summary {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 400;
  text-wrap: balance;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(40px, 4.4vw, 66px);
  line-height: 1.12;
  letter-spacing: -.015em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.14;
  letter-spacing: -.012em;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.3;
  letter-spacing: 0;
}

em {
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.container {
  width: min(100% - (2 * var(--gutter)), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--surface);
  background: var(--fg);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  box-shadow: var(--focus);
}

.kicker,
.eyebrow,
.strip-label,
.reviewer-label {
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}

.btn-primary {
  color: var(--accent-on);
  background: var(--accent);
  box-shadow: 0 14px 30px color-mix(in oklab, var(--accent), transparent 62%);
}

.btn-primary:hover {
  background: color-mix(in oklab, var(--accent), var(--gold) 22%);
  box-shadow: 0 18px 36px color-mix(in oklab, var(--accent), transparent 55%);
  transform: translateY(-2px);
}

.btn-primary:active {
  background: color-mix(in oklab, var(--accent), var(--fg) 12%);
  box-shadow: 0 8px 18px color-mix(in oklab, var(--accent), transparent 68%);
  transform: translateY(1px);
}

.btn-large {
  min-height: 56px;
  padding-inline: 34px;
  font-size: 15px;
}

/* ---- Header integrated into the photographic campaign world ---- */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid var(--line-dark);
  background: color-mix(in oklab, var(--fg), transparent 42%);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: block;
}

.brand-link img {
  width: 250px;
  height: auto;
  filter: brightness(0) invert(1);
}

/* ---- Hero: full-bleed, photographic campaign world ---- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  overflow: hidden;
  background-color: var(--fg);
  background-image:
    linear-gradient(90deg, color-mix(in oklab, var(--fg), transparent 4%) 0%, color-mix(in oklab, var(--fg), transparent 12%) 36%, color-mix(in oklab, var(--fg), transparent 62%) 62%, color-mix(in oklab, var(--fg), transparent 82%) 100%),
    linear-gradient(0deg, color-mix(in oklab, var(--fg), transparent 8%) 0%, transparent 46%),
    url("assets/images/john-howard-editorial-hero-v2.webp");
  background-position: center, center, center 44%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-grid {
  display: block;
  min-height: 760px;
  padding-block: clamp(150px, 17vh, 176px) clamp(58px, 8vh, 80px);
}

.hero-copy {
  width: min(58%, 720px);
  max-width: 720px;
}

.hero .eyebrow {
  max-width: 52ch;
  color: var(--gold);
}

.hero h1 {
  color: var(--surface);
  text-shadow: 0 2px 28px color-mix(in oklab, var(--fg), transparent 22%);
}

.hero h1 em {
  color: var(--gold);
}

.hero-lead {
  max-width: 62ch;
  margin-bottom: 32px;
  color: color-mix(in oklab, var(--surface), var(--bg) 14%);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
}

.presenter-line {
  margin: 0;
  color: color-mix(in oklab, var(--surface), var(--sage) 25%);
  font-size: 15px;
}

.presenter-line strong {
  display: block;
  color: var(--surface);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 clamp(20px, 2.6vw, 40px);
  margin: 0;
  max-width: 640px;
}

.hero-facts div {
  padding-block: 14px 12px;
  border-top: 1px solid var(--line-gold);
}

.hero-facts dt {
  color: var(--gold);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin-top: 3px;
  color: var(--surface);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-portrait {
  display: none !important;
}

/* ---- Authority: generous editorial credibility spread ---- */
.authority-section {
  min-height: 560px;
  padding-block: clamp(68px, 8vw, 104px);
  color: var(--surface);
  background: var(--fg);
}

.authority-grid {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
  align-items: stretch;
  gap: clamp(56px, 8vw, 116px);
}

.authority-portrait {
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-panel);
  background: var(--charcoal);
  box-shadow: var(--shadow-band);
}

.authority-portrait img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: 50% 34%;
  filter: contrast(1.06);
}

.authority-copy {
  align-self: center;
}

.authority-copy .strip-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.authority-copy h2 {
  max-width: 760px;
  margin-bottom: 40px;
  color: var(--surface);
}

.authority-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 4vw, 56px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.authority-facts li {
  min-height: 116px;
  padding: 20px 0 18px;
  border-top: 1px solid var(--line-dark);
}

.authority-facts li:nth-child(even) {
  transform: translateY(24px);
}

.authority-facts strong,
.authority-facts span {
  display: block;
}

.authority-facts strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.2;
}

.authority-facts span {
  margin-top: 7px;
  color: color-mix(in oklab, var(--surface), var(--sage) 28%);
  font-size: 14px;
  line-height: 1.45;
}

/* ---- Recognition ---- */
.editorial-split,
.mechanism-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(52px, 9vw, 132px);
}

.section-intro {
  max-width: 560px;
}

.section-intro > p:not(.kicker),
.wide-intro > p:not(.kicker) {
  max-width: 62ch;
}

.intro-figure {
  margin: 40px 0 0;
}

.intro-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-panel);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.intro-figure--dark {
  width: calc(100% + 56px);
  padding: 10px;
  border-radius: calc(var(--radius-panel) + 8px);
  background: var(--fg);
  box-shadow: var(--shadow-band);
}

.intro-figure--dark img {
  box-shadow: none;
  filter: saturate(.82) contrast(1.12) brightness(.82);
}

.tension-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-gold);
  list-style: none;
}

.tension-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: baseline;
  gap: 12px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line-gold);
  color: var(--fg);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.45;
}

.tension-list span {
  color: var(--gold-deep);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

/* ---- Transformation: white paper band, airy outcome rows ---- */
.transformation {
  width: min(100% - clamp(16px, 3vw, 48px), 1400px);
  margin-inline: auto;
  border-radius: var(--radius-band);
  background: var(--surface);
  box-shadow: var(--shadow-band);
}

.wide-intro {
  max-width: 920px;
  margin-bottom: clamp(48px, 6vw, 78px);
}

.outcome-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(40px, 5vw, 88px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-ledger li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: clamp(24px, 2.8vw, 36px) 4px;
  border-top: 1px solid var(--line-gold);
}

.outcome-number {
  color: var(--gold-deep);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}

.outcome-ledger h3 {
  margin-bottom: 8px;
}

.outcome-ledger p {
  margin-bottom: 0;
  color: var(--charcoal);
  font-size: 15px;
}

.outcome-ledger .from {
  margin-bottom: 6px;
  color: var(--gold-deep);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

/* ---- Mechanism: soft four-step rhythm ---- */
.margin-note {
  margin-top: 32px;
  padding: 4px 0 4px 26px;
  border-left: 1px solid var(--gold);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 19px;
  font-style: italic;
  line-height: 1.5;
}

.practice-loop {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 48px) clamp(32px, 4vw, 56px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.practice-loop li {
  padding: clamp(24px, 3vw, 34px) clamp(22px, 2.8vw, 32px);
  border-radius: var(--radius-panel);
  background: var(--sage-wash);
}

.practice-loop span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-deep);
  background: var(--surface);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
}

.practice-loop strong {
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}

.practice-loop p {
  margin: 6px 0 0;
  color: var(--charcoal);
  font-size: 15px;
}

/* ---- Roadmap: white sheet with soft corners ---- */
.roadmap {
  border-radius: clamp(36px, 5vw, 64px);
  background: var(--surface);
}

.roadmap-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 52px;
}

.roadmap-head > div {
  max-width: 850px;
}

.text-button {
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid var(--gold);
  padding: 8px 0;
  color: var(--fg);
  background: transparent;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: color 180ms var(--ease);
}

.text-button:hover {
  color: var(--gold-deep);
}

.roadmap-list {
  border-top: 1px solid var(--line-gold);
}

.month {
  border-bottom: 1px solid var(--line-gold);
}

.month summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 210px 32px;
  align-items: center;
  gap: 24px;
  padding: 18px 16px;
  border-radius: 18px;
  color: var(--fg);
  cursor: pointer;
  list-style: none;
  transition: background 180ms var(--ease);
}

.month summary::-webkit-details-marker {
  display: none;
}

.month summary:hover {
  background: var(--sage-wash);
}

.month-index,
.month-session-count,
.lecture-list span,
.application-note strong {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.month-index {
  color: var(--gold-deep);
}

.month-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.25;
}

.month-session-count {
  color: var(--charcoal);
}

.disclosure-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
}

.disclosure-icon::before,
.disclosure-icon::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 8px;
  width: 14px;
  height: 1px;
  background: var(--fg);
  transition: transform 180ms var(--ease);
}

.disclosure-icon::after {
  transform: rotate(90deg);
}

.month[open] .disclosure-icon::after {
  transform: rotate(0);
}

.month-details {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 40px;
  padding: 8px 48px 40px 152px;
}

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

.lecture-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.lecture-list span {
  color: var(--gold-deep);
}

.lecture-list strong {
  color: var(--fg);
  font-size: 16px;
  line-height: 1.45;
}

.application-note {
  padding: 26px;
  border-radius: var(--radius-panel);
  background: var(--sage-wash);
}

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

.application-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--fg);
}
