@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Cormorant+SC:wght@500;600&family=Inter:wght@400;500;600&display=swap");

:root {
  --teal: #294447;
  --teal-deep: #1f3739;
  --teal-soft: #3e5d5e;
  --ivory: #f6f1e9;
  --ivory-deep: #ede5da;
  --stone: #ded6cb;
  --stone-light: #e9e2d8;
  --sage: #a2ab9a;
  --gold: #c39c61;
  --gold-soft: #d7bb8d;
  --gold-ink: #715128;
  --ink: #253739;
  --muted: #586665;
  --line: rgba(41, 68, 71, 0.16);
  --line-gold: rgba(195, 156, 97, 0.48);
  --shadow: 0 24px 70px rgba(31, 55, 57, 0.13);
  --max: 1240px;
  --reading: 780px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 12%, rgba(195,156,97,.1), transparent 26rem),
    radial-gradient(circle at 86% 72%, rgba(162,171,154,.13), transparent 30rem),
    var(--ivory);
}
img { max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 1.15em; }
strong { font-weight: 600; }
.wrap { width: min(calc(100% - 56px), var(--max)); margin-inline: auto; }
.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--ivory);
  background: var(--teal);
  transition: top .2s;
}
.skip-link:focus { top: 18px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-ink);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: .72;
}
.eyebrow.on-dark { color: var(--gold-soft); }
.home-section-number { font: inherit; color: inherit; }
.reflective { font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; }
.display, h1, h2, h3 {
  margin: 0;
  color: var(--teal);
  font-family: "Cormorant SC", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.03;
}
h1 { max-width: 15ch; font-size: clamp(3.25rem, 6vw, 6.5rem); }
h2 { max-width: 17ch; font-size: clamp(2.35rem, 4.1vw, 4.6rem); }
h3 { font-size: clamp(1.55rem, 2.2vw, 2.25rem); }
.center { text-align: center; }
.center h1, .center h2, .center h3, .center p, .center .lead { margin-inline: auto; }
.lead { max-width: 680px; font-size: clamp(1.08rem, 1.35vw, 1.3rem); line-height: 1.72; }
.gold-rule {
  position: relative;
  width: 84px;
  height: 1px;
  margin: 30px 0;
  background: var(--gold);
}
.gold-rule::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 34px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--teal);
  color: var(--teal);
  background: transparent;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .11em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .22s, background .22s, transform .22s, box-shadow .22s;
}
.btn::after { content: "↗"; font-size: .95rem; }
.btn.primary { color: var(--ivory); background: var(--teal); border-color: var(--teal); }
.btn.light, .btn.quiet-light { color: var(--ivory); border-color: rgba(246,241,233,.62); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(31,55,57,.12); }
.btn.primary:hover { background: var(--teal-deep); }
.btn.light:hover, .btn.quiet-light:hover { color: var(--teal); background: var(--ivory); }
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--teal);
  font-weight: 600;
  text-underline-offset: 6px;
  text-decoration-color: var(--gold);
}
.text-link::after { content: "→"; color: var(--gold-ink); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}
.nav { position: relative; min-height: 96px; display: flex; align-items: center; gap: 22px; background: var(--ivory); transition: min-height .24s; }
.nav::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 48px;
  background: url("assets/favicon-master.png") center/contain no-repeat;
  pointer-events: none;
  transform: translate(-50%,-50%);
}
.site-header.is-scrolled .nav { min-height: 76px; }
.brand {
  width: 180px;
  display: flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
}
.brand img { display: block; width: 180px; height: auto; }
.navlinks { display: none; align-items: center; gap: clamp(14px, 1.4vw, 25px); }
.navlinks a {
  position: relative;
  color: var(--teal);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .075em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.navlinks a::after {
  content: "";
  position: absolute;
  inset: auto 50% -9px;
  height: 1px;
  background: var(--gold);
  transition: inset .2s;
}
.navlinks a:hover::after, .navlinks a[aria-current="page"]::after { inset-inline: 0; }
.nav-cta { margin-left: auto; padding-inline: 17px; }
.mobile-toggle {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  color: var(--teal);
  background: transparent;
  font-size: 1.45rem;
}
.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  right: 28px;
  width: min(390px, calc(100vw - 56px));
  padding: 12px;
  background: rgba(31,55,57,.97);
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: grid; }
.mobile-menu a { padding: 13px 15px; color: var(--ivory); border-bottom: 1px solid rgba(246,241,233,.1); text-decoration: none; }
.mobile-menu a:last-child { margin-top: 8px; color: var(--teal); background: var(--gold-soft); text-align: center; text-transform: uppercase; font-size: .75rem; font-weight: 600; letter-spacing: .1em; }

/* Home hero */
.hero {
  position: relative;
  min-height: min(790px, calc(100svh - 96px));
  overflow: hidden;
  background: var(--ivory);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/omt-hero-desktop.jpg") right center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(246,241,233,.4) 0%, rgba(246,241,233,.12) 38%, transparent 56%);
}
.hero-grid {
  min-height: min(790px, calc(100svh - 96px));
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
}
.hero-copy { grid-column: 1; max-width: 610px; padding: 74px 18px 74px 0; }
.hero-heading h1 { margin-top: 18px; }
.hero-details { max-width: 535px; }
.hero-details .lead { color: #314547; }
.booking-reassurance { margin: 18px 0 0; color: var(--muted); font-size: .88rem; }

.trust-rail { color: var(--ivory); background: var(--teal-deep); border-bottom: 1px solid rgba(195,156,97,.3); }
.trust-rail-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-rail-grid > div { min-height: 112px; padding: 26px 28px; border-left: 1px solid rgba(246,241,233,.13); }
.trust-rail-grid > div:last-child { border-right: 1px solid rgba(246,241,233,.13); }
.trust-rail strong { display: block; font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; }
.trust-rail span { display: block; margin-top: 3px; color: var(--stone); font-size: .88rem; }

/* Main sections */
.section { position: relative; padding: clamp(88px, 10vw, 150px) 0; }
.section.stone { background: var(--stone-light); }
.section.stone::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(41,68,71,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(41,68,71,.035) 1px, transparent 1px);
  background-size: 64px 64px;
}
.section.stone > .wrap { position: relative; }
.two-col, .page-split { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(54px,8vw,124px); align-items: start; }
.two-col h2, .page-split h2 { margin: 14px 0 28px; }

/* Method system */
.method-band {
  position: relative;
  padding: clamp(72px, 7vw, 104px) 0;
  color: var(--ivory);
  background: var(--teal);
  overflow: hidden;
  isolation: isolate;
}
.method-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("assets/blueprint-shell.jpg") center/cover no-repeat;
  opacity: .12;
  mix-blend-mode: screen;
}
.method-band h2, .method-band h3 { color: var(--ivory); }
.method-band .center > h2 { margin: 16px auto 40px; }
.method-domains { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line-gold); }
.domain {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 30px 28px;
  color: var(--ivory);
  text-align: left;
  text-decoration: none;
  border-right: 1px solid var(--line-gold);
  background: rgba(31,55,57,.22);
  transition: background .25s, transform .25s;
}
.domain:last-child { border-right: 0; }
.domain:hover { background: rgba(195,156,97,.1); }
.domain img { width: 60px; height: 70px; object-fit: contain; flex: 0 0 auto; }
.domain h3 { margin-bottom: 8px; }
.domain p { margin: 0; color: var(--stone-light); font-size: .95rem; }
.integration-bridge {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  color: var(--teal-deep);
  background: var(--gold-soft);
  text-decoration: none;
}
.integration-bridge img { width: 42px; height: 42px; object-fit: contain; filter: brightness(.45); }
.integration-bridge b { font-family: "Cormorant SC", serif; font-size: 1.35rem; font-weight: 600; }
.compact-method-footer { max-width: 880px; margin: 28px auto 0; text-align: center; }
.compact-method-footer p { color: var(--stone-light); font-family: "Cormorant Garamond", serif; font-size: 1.25rem; }
.compact-method-footer .btn { margin-top: 8px; }

/* Support list */
.support-preview { background: var(--ivory); }
.compact-section-heading { display: grid; grid-template-columns: 1fr .82fr; gap: 70px; align-items: end; margin-bottom: 44px; }
.compact-section-heading h2 { margin-top: 15px; }
.compact-section-heading > p { max-width: 580px; margin: 0; }
.home-issue-links { border-top: 1px solid var(--teal); }
.home-issue-links a {
  min-height: 98px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 17px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding .25s, background .25s;
}
.home-issue-links a:hover { padding-inline: 24px; background: var(--stone-light); }
.home-issue-links img { width: 45px; height: 48px; object-fit: contain; }
.home-issue-links span { font-family: "Cormorant SC", serif; font-size: clamp(1.65rem,3vw,2.65rem); line-height: 1; }
.home-issue-links a::after { content: "→"; color: var(--gold-ink); font-size: 1.45rem; }
.home-issue-links small { grid-column: 2; margin-top: -18px; color: var(--muted); }
.compact-support-footer { display: flex; justify-content: space-between; gap: 38px; align-items: center; margin-top: 42px; }
.compact-support-footer p { max-width: 610px; margin: 0; font-family: "Cormorant Garamond", serif; font-size: 1.3rem; }

/* Starting therapy */
.start-section { background: var(--stone-light); }
.founder-home-section {
  background:
    radial-gradient(circle at 87% 20%, rgba(195,156,97,.13), transparent 25rem),
    var(--stone-light);
}
.founder-note-card {
  display: block;
  max-width: 820px;
  margin-inline: auto;
  border: 1px solid rgba(195,156,97,.58);
  background: var(--ivory);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.founder-note-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(31,55,57,.16);
}
.founder-note-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 5px; }
.founder-note-card img { display: block; width: 100%; height: auto; }
.compact-start-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(460px,1.1fr); gap: clamp(60px,8vw,118px); align-items: center; }
.start-intro h2 { margin: 16px 0 0; }
.steps { counter-reset: step; margin-top: 36px; border-top: 1px solid var(--line); }
.step { counter-increment: step; display: grid; grid-template-columns: 52px 1fr; gap: 15px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.step::before { content: "0" counter(step); color: var(--gold-ink); font-family: "Cormorant SC", serif; font-size: 1.35rem; }
.step b { display: block; color: var(--teal); }
.credentials { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.credentials span { padding: 7px 10px; border: 1px solid var(--line); color: var(--muted); font-size: .83rem; }

.start-diagram-intro {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(300px,.65fr);
  gap: clamp(40px,7vw,100px);
  align-items: end;
  margin-bottom: 44px;
}
.start-diagram-intro > p { max-width: 520px; margin: 0 0 8px; }
.therapy-path-shell {
  position: relative;
  padding: clamp(34px,4.5vw,62px);
  color: var(--ivory);
  background:
    linear-gradient(rgba(31,55,57,.88),rgba(31,55,57,.96)),
    url("assets/omt-method-background.jpg") center/cover no-repeat;
  overflow: hidden;
}
.therapy-path-shell::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 320px;
  aspect-ratio: 1;
  border: 1px solid rgba(215,187,141,.16);
  border-radius: 50%;
  box-shadow: inset 0 0 0 52px rgba(215,187,141,.025), inset 0 0 0 104px rgba(215,187,141,.02);
  pointer-events: none;
}
.therapy-path {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(30px,4vw,58px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.therapy-path::before {
  content: "";
  position: absolute;
  top: 53px;
  left: calc(16.666% + 42px);
  right: calc(16.666% + 42px);
  height: 1px;
  background: var(--gold-soft);
  opacity: .72;
}
.therapy-stage { position: relative; min-width: 0; text-align: center; }
.therapy-stage:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48px;
  right: calc(-1 * clamp(22px,3vw,43px));
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--gold-soft);
  border-right: 1px solid var(--gold-soft);
  transform: rotate(45deg);
}
.therapy-stage-marker {
  position: relative;
  width: 106px;
  height: 106px;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  border: 1px solid rgba(215,187,141,.68);
  border-radius: 50%;
  background: var(--teal-deep);
}
.therapy-stage-marker span {
  position: absolute;
  top: -9px;
  right: -8px;
  min-width: 32px;
  padding: 4px 6px;
  color: var(--teal-deep);
  background: var(--gold-soft);
  font: 600 .7rem/1 Inter,Arial,sans-serif;
  letter-spacing: .08em;
}
.therapy-stage-marker img { width: 58px; height: 62px; object-fit: contain; }
.therapy-stage h3 { margin-bottom: 12px; color: var(--ivory); font-size: clamp(1.45rem,2vw,2rem); }
.therapy-stage p { max-width: 260px; margin: 0 auto; color: var(--stone-light); font-size: .94rem; line-height: 1.6; }
.start-diagram-actions { justify-content: center; margin-top: 34px; }

.cta-final, .open-mind-section {
  position: relative;
  padding: clamp(88px,9vw,132px) 0;
  color: var(--ivory);
  background: var(--teal-deep);
  overflow: hidden;
}
.cta-final::before, .open-mind-section::before {
  content: "";
  position: absolute;
  width: min(46vw,620px);
  aspect-ratio: 1;
  right: -8%;
  top: -60%;
  border: 1px solid rgba(195,156,97,.22);
  border-radius: 50%;
  box-shadow: inset 0 0 0 52px rgba(195,156,97,.035), inset 0 0 0 104px rgba(195,156,97,.025);
}
.cta-final .wrap, .open-mind-section .wrap { position: relative; }
.cta-final h2, .open-mind-section h2 { color: var(--ivory); margin: 20px auto 24px; }
.cta-final p { max-width: 680px; color: var(--stone-light); }
.cta-final .actions { justify-content: center; }

/* Standard page heroes */
.page-hero {
  position: relative;
  padding: clamp(96px,11vw,164px) 0;
  background: var(--ivory-deep);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: min(48vw,680px);
  height: 140%;
  right: -3%;
  top: -20%;
  background: url("assets/blueprint-nautilus.jpg") center/cover no-repeat;
  opacity: .16;
  mask-image: linear-gradient(90deg, transparent, black 35%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { margin: 18px 0 30px; }
.page-hero .lead { margin-bottom: 0; }
.about-page .page-hero::after { background-image: url("assets/threshold-panel.jpg"); opacity: .18; }
.fees-page .page-hero::after { background-image: url("assets/blueprint-shell.jpg"); opacity: .18; }
.faq-page .page-hero::after { background-image: url("assets/still-life-negative-space.jpg"); opacity: .16; }
.contact-page .page-hero::after { background-image: url("assets/therapy-room.jpg"); opacity: .14; }
.policy-page .page-hero::after { background-image: url("assets/blueprint-shell.jpg"); opacity: .12; }

/* About / general */
.profile-portrait { margin: 0; padding: 18px; background: var(--teal); box-shadow: var(--shadow); }
.profile-portrait img { width: 100%; display: block; object-fit: contain; background: var(--stone); }
.quiet-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--teal); }
.quiet-card { padding: 34px 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quiet-card:nth-child(2n) { border-right: 0; }
.quiet-card h3 { margin-bottom: 16px; }
.quiet-card p { margin: 0; }
.visual-interlude { padding: 0 0 clamp(88px,10vw,150px); background: var(--ivory); }
.contained-landscape {
  position: relative;
  margin: 0;
  padding: 14px;
  background: var(--stone-light);
  box-shadow: var(--shadow);
}
.contained-landscape img { width: 100%; aspect-ratio: 16/8.5; display: block; object-fit: cover; }
.contained-landscape figcaption {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 20px 10px 8px;
}
.contained-landscape figcaption p { max-width: 620px; margin: 0; color: var(--muted); }

/* Fees, FAQ, contact, policies */
.fee-table { width: 100%; border-collapse: collapse; background: var(--ivory); box-shadow: var(--shadow); }
.fee-table th, .fee-table td { padding: 22px 24px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.fee-table th { color: var(--ivory); background: var(--teal); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.fee-table td:last-child { color: var(--teal); font-family: "Cormorant SC", serif; font-size: 1.45rem; white-space: nowrap; }
.faq-list { max-width: 920px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 28px 66px 28px 0; cursor: pointer; color: var(--teal); font-family: "Cormorant SC", serif; font-size: clamp(1.35rem,2vw,1.8rem); list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 22px; color: var(--gold-ink); font-family: Inter,sans-serif; font-size: 1.6rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; padding: 0 0 28px; }
.contact-panel { padding: 42px; background: var(--teal); color: var(--ivory); }
.contact-panel h2 { color: var(--ivory); font-family: "Cormorant Garamond",serif; font-size: clamp(2rem,3vw,3.2rem); word-break: break-word; }
.contact-panel .eyebrow { color: var(--gold-soft); }
.policy-prose { max-width: var(--reading); }
.policy-section { padding: 32px 0; border-bottom: 1px solid var(--line); }
.policy-section:first-child { padding-top: 0; }
.policy-section h2, .policy-contact h2 { margin-bottom: 18px; font-size: clamp(1.8rem,3vw,2.7rem); }
.policy-contact { margin-top: 48px; padding: 30px; border-left: 4px solid var(--gold); background: var(--ivory); }
.policy-table-wrap { overflow-x: auto; margin: 24px 0; }

/* Method page */
.method-hero {
  width: min(calc(100% - 56px), var(--max));
  margin: clamp(50px,7vw,92px) auto;
  display: grid;
  grid-template-columns: minmax(0,.86fr) minmax(480px,1.14fr);
  gap: clamp(50px,7vw,100px);
  align-items: center;
}
.method-hero-copy h1 { margin: 18px 0 0; }
.method-hero-figure { margin: 0; padding: 14px; background: var(--stone-light); box-shadow: var(--shadow); }
.method-hero-figure img { display: block; width: 100%; }
.method-hero-figure figcaption { padding: 14px 8px 2px; color: var(--muted); font-size: .82rem; }
.method-map-intro { background: var(--stone-light); }
.method-quote { margin-top: 30px; color: var(--teal); font-size: 1.8rem; }
.method-framework { padding: clamp(94px,10vw,150px) 0; background: var(--ivory); }
.method-framework-heading { margin-bottom: 70px; }
.method-framework-heading h2 { margin: 18px auto 0; }
.method-sequence { position: relative; max-width: 1040px; margin: auto; }
.method-sequence::before { content: ""; position: absolute; left: 50%; top: 2%; bottom: 2%; width: 1px; background: var(--line-gold); }
.method-chapter { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 390px; border-top: 1px solid var(--line); }
.method-plate { padding: 50px 70px; text-align: center; }
.method-plate img { width: min(240px,80%); aspect-ratio: 1; object-fit: contain; }
.method-text { padding: 50px 64px; }
.method-text h2 { margin: 15px 0 24px; font-size: clamp(2.2rem,3.3vw,3.6rem); }
.method-chapter:nth-child(even) .method-plate { order: 2; }
.method-chapter.integration-chapter { position: relative; z-index: 1; margin-top: 28px; color: var(--ivory); background: var(--teal); border: 1px solid var(--line-gold); }
.integration-chapter h2 { color: var(--ivory); }
.reading-map .center > h2 { margin: 18px auto 24px; }
.reading-map .center > p { max-width: 760px; }
.lens-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 58px; }
.lens-grid article { padding: 34px; background: var(--ivory); border-top: 4px solid var(--gold); box-shadow: 0 16px 42px rgba(31,55,57,.08); }
.lens-grid img { width: 48px; height: 54px; object-fit: contain; }
.lens-grid h3 { margin: 20px 0 14px; }
.open-mind-grid { display: grid; grid-template-columns: 250px 1fr; gap: 74px; align-items: center; }
.open-mind-symbol { width: 240px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--line-gold); border-radius: 50%; }
.open-mind-symbol img { width: 118px; }
.open-mind-grid h2 { margin: 18px 0 22px; }
.open-mind-grid .lead { color: var(--ivory); }

/* Support hub */
.support-instruction { margin: 28px 0 0; color: var(--gold-ink); font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.support-area-list { display: grid; gap: 14px; max-width: 1040px; margin-inline: auto; }
.support-specialism { color: var(--ivory); background: var(--teal); border: 1px solid var(--line-gold); }
.support-specialism summary {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr 42px;
  gap: 30px;
  align-items: center;
  min-height: 190px;
  padding: 32px 38px;
  cursor: pointer;
  list-style: none;
}
.support-specialism summary::-webkit-details-marker { display: none; }
.support-specialism summary > img { width: 82px; height: 90px; object-fit: contain; }
.support-area-intro { display: grid; gap: 9px; }
.support-specialism .eyebrow { color: var(--gold-soft); }
.support-area-title { color: var(--ivory); font-family: "Cormorant SC", serif; font-size: clamp(1.75rem,3vw,2.7rem); line-height: 1.05; }
.support-area-short { max-width: 720px; color: var(--stone-light); font-size: .95rem; }
.support-area-toggle { position: relative; width: 38px; height: 38px; border: 1px solid rgba(246,241,233,.4); border-radius: 50%; }
.support-area-toggle::before, .support-area-toggle::after { content: ""; position: absolute; left: 10px; right: 10px; top: 18px; height: 1px; background: var(--gold-soft); }
.support-area-toggle::after { transform: rotate(90deg); transition: transform .2s ease; }
.support-specialism[open] .support-area-toggle::after { transform: rotate(0); }
.support-area-details {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px 52px;
  padding: 0 38px 38px 164px;
  border-top: 1px solid rgba(246,241,233,.16);
}
.support-area-details > div:first-child { padding-top: 30px; }
.support-area-details p { color: var(--stone-light); }
.support-area-details .lead { color: var(--ivory); }
.support-domain-notes { padding-top: 30px; }
.support-domain-notes p { margin: 0 0 18px; }
.support-domain-notes strong { display: block; margin-bottom: 3px; color: var(--gold-soft); font-family: "Cormorant SC", serif; font-size: 1.18rem; letter-spacing: .04em; }
.support-integration { grid-column: 1 / -1; margin: 0; padding: 22px 0; border-top: 1px solid rgba(246,241,233,.16); border-bottom: 1px solid rgba(246,241,233,.16); }
.support-integration strong { color: var(--gold-soft); }
.support-specialism .text-link { color: var(--ivory); }
.issue-hero { padding: clamp(70px,8vw,118px) 0; }
.issue-hero-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(460px,1.1fr); gap: clamp(55px,8vw,110px); align-items: center; }
.issue-hero h1 { margin: 18px 0 0; }
.issue-visual { position: relative; margin: 0; padding: 13px; background: var(--stone-light); box-shadow: var(--shadow); }
.issue-visual > img { width: 100%; max-height: 560px; display: block; object-fit: cover; }
.issue-emblem { position: absolute; left: -28px; bottom: -28px; width: 104px; height: 104px; display: grid; place-items: center; border: 1px solid var(--line-gold); background: var(--teal); }
.issue-emblem img { width: 52px; height: 58px; object-fit: contain; }
.issue-method .domain { min-height: 360px; display: block; text-align: center; }
.issue-method .domain img { margin-bottom: 24px; }
.issue-method .domain p { font-size: .92rem; }
.integration-note { margin: 30px 0 0; text-align: center; color: var(--stone-light); }
.related-issues { padding: 44px 0; background: var(--stone-light); }
.related-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.related-links a { padding: 10px 14px; border: 1px solid var(--line); text-decoration: none; font-size: .85rem; }
.related-links a:hover { background: var(--ivory); }

/* Footer */
footer { padding: 82px 0 28px; color: var(--stone-light); background: #182e30; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .9fr; gap: 70px; }
.footer-grid > div:first-child { max-width: 390px; }
.footer-logo { width: 300px; display: block; margin-bottom: 28px; }
.footer-grid h4 { margin: 0 0 20px; color: var(--gold-soft); font-size: .73rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid a { display: block; margin: 8px 0; color: var(--stone-light); text-decoration-color: rgba(195,156,97,.5); text-underline-offset: 4px; }
.footer-grid p a { display: inline; }
.legal-line { margin-top: 58px; padding-top: 24px; border-top: 1px solid rgba(246,241,233,.13); color: var(--sage); font-size: .73rem; line-height: 1.65; }

/* Motion */
.reveal-ready { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal-ready.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .mobile-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 28px;
    width: min(390px, calc(100vw - 56px));
    padding: 12px;
    background: var(--teal-deep);
    box-shadow: var(--shadow);
  }
  .mobile-menu.open { display: grid; }
  .mobile-menu a { padding: 13px 15px; color: var(--ivory); border-bottom: 1px solid rgba(246,241,233,.1); text-decoration: none; }
  .mobile-menu a:last-child { margin-top: 8px; color: var(--teal); background: var(--gold-soft); text-align: center; text-transform: uppercase; font-size: .75rem; font-weight: 600; letter-spacing: .1em; }
  .method-hero { grid-template-columns: 1fr 1fr; }
  .compact-start-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .wrap { width: min(calc(100% - 36px), var(--max)); }
  h1 { font-size: clamp(3rem,10vw,5rem); }
  .hero { min-height: auto; padding-top: min(64vw,480px); }
  .hero::before { height: min(64vw,480px); background-image: url("assets/omt-hero-desktop.jpg"); background-position: right center; }
  .hero::after { display: none; }
  .hero-grid { min-height: auto; display: block; width: 100%; }
  .hero-copy { max-width: none; padding: 62px 28px 70px; background: var(--ivory); }
  .hero-heading, .hero-details { max-width: 680px; margin-inline: auto; }
  .trust-rail-grid { grid-template-columns: repeat(2,1fr); }
  .trust-rail-grid > div { border-bottom: 1px solid rgba(246,241,233,.13); }
  .method-domains, .lens-grid { grid-template-columns: 1fr; }
  .domain { min-height: 170px; justify-content: flex-start; border-right: 0; border-bottom: 1px solid var(--line-gold); }
  .domain:last-child { border-bottom: 0; }
  .compact-section-heading, .two-col, .page-split { grid-template-columns: 1fr; }
  .compact-section-heading { gap: 24px; }
  .compact-start-grid { grid-template-columns: 1fr; }
  .start-diagram-intro { grid-template-columns: 1fr; gap: 20px; }
  .therapy-path { grid-template-columns: 1fr; gap: 26px; }
  .therapy-path::before { top: 54px; bottom: 54px; left: 53px; right: auto; width: 1px; height: auto; }
  .therapy-stage { display: grid; grid-template-columns: 106px 1fr; gap: 26px; align-items: center; text-align: left; }
  .therapy-stage:not(:last-child)::after { top: auto; right: auto; bottom: -18px; left: 49px; transform: rotate(135deg); }
  .therapy-stage-marker { margin: 0; }
  .therapy-stage p { max-width: 500px; margin: 0; }
  .method-hero { width: min(calc(100% - 36px), var(--max)); grid-template-columns: 1fr; }
  .method-hero-figure { max-width: 760px; }
  .method-sequence::before { left: 30px; }
  .method-chapter { grid-template-columns: 110px 1fr; min-height: 300px; }
  .method-plate { padding: 28px 20px; }
  .method-plate img { width: 78px; }
  .method-text { padding: 42px 32px; }
  .method-chapter:nth-child(even) .method-plate { order: 0; }
  .open-mind-grid { grid-template-columns: 150px 1fr; gap: 40px; }
  .open-mind-symbol { width: 145px; }
  .open-mind-symbol img { width: 76px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
}

@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  body { line-height: 1.65; }
  h1 { font-size: 2.55rem; line-height: 1.02; }
  h2 { font-size: 2rem; line-height: 1.05; }
  h3 { font-size: 1.35rem; line-height: 1.08; }
  .lead { font-size: 1.02rem; line-height: 1.62; }
  .nav { min-height: 80px; gap: 10px; }
  .site-header.is-scrolled .nav { min-height: 72px; }
  .brand { width: 156px; }
  .brand img { width: 156px; }
  .nav::after { width: 30px; height: 38px; }
  .nav-cta { display: none; }
  .mobile-toggle { flex: 0 0 46px; width: 46px; height: 46px; }
  .mobile-menu { right: 14px; width: calc(100vw - 28px); }
  .hero { padding-top: 78vw; }
  .hero::before { height: 78vw; min-height: 0; background-image: url("assets/omt-hero-desktop.jpg"); background-size: 138% auto; background-position: right center; }
  .hero-copy { padding: 52px 20px 62px; }
  .hero h1 { font-size: 2.55rem; }
  .actions { align-items: stretch; flex-direction: column; }
  .actions .btn { width: 100%; }
  .trust-rail-grid { grid-template-columns: 1fr; }
  .trust-rail-grid > div { min-height: 88px; padding: 20px; }
  .section { padding: 68px 0; }
  .method-band { padding: 54px 0; }
  .method-band .center > h2 { margin: 12px auto 26px; }
  .domain { min-height: 104px; gap: 16px; padding: 18px; }
  .domain img { width: 44px; height: 50px; }
  .domain h3 { margin-bottom: 4px; font-size: 1.25rem; }
  .domain p { font-size: .86rem; line-height: 1.4; }
  .integration-bridge { grid-template-columns: auto 1fr; gap: 15px; padding: 16px 18px; }
  .integration-bridge img { width: 34px; height: 34px; }
  .integration-bridge b { font-size: 1.12rem; }
  .integration-bridge > span:last-child { display: none; }
  .compact-method-footer { margin-top: 22px; }
  .compact-method-footer p { margin-bottom: 16px; font-size: 1rem; line-height: 1.5; }
  .home-issue-links a { min-height: 82px; grid-template-columns: 44px 1fr auto; gap: 12px; }
  .home-issue-links img { width: 36px; height: 40px; }
  .home-issue-links span { font-size: 1.28rem; }
  .home-issue-links small { grid-column: 2/-1; margin-top: -8px; }
  .compact-support-footer { display: block; }
  .compact-support-footer .btn { width: 100%; margin-top: 24px; }
  .founder-note-card { width: calc(100% - 8px); }
  .therapy-path-shell { padding: 28px 20px; }
  .therapy-path::before { left: 38px; }
  .therapy-stage { grid-template-columns: 76px 1fr; gap: 18px; }
  .therapy-stage:not(:last-child)::after { left: 34px; }
  .therapy-stage-marker { width: 76px; height: 76px; }
  .therapy-stage-marker img { width: 42px; height: 46px; }
  .therapy-stage-marker span { top: -7px; right: -5px; min-width: 28px; font-size: .64rem; }
  .therapy-stage h3 { margin-bottom: 7px; font-size: 1.35rem; }
  .therapy-stage p { font-size: .87rem; line-height: 1.5; }
  .start-diagram-actions { align-items: stretch; }
  .start-diagram-actions .text-link { align-self: center; }
  .page-hero { padding: 68px 0 74px; }
  .page-hero::after { width: 78vw; opacity: .1; }
  .contained-landscape figcaption { display: block; }
  .contained-landscape figcaption p { margin-top: 12px; }
  .page-split { gap: 45px; }
  .quiet-grid { grid-template-columns: 1fr; }
  .quiet-card { padding: 28px 0; border-right: 0; }
  .fee-table th, .fee-table td { padding: 16px 12px; font-size: .86rem; }
  .fee-table td:last-child { font-size: 1.2rem; }
  .contact-panel { padding: 28px 22px; }
  .method-sequence::before { display: none; }
  .method-chapter { grid-template-columns: 1fr; padding: 35px 0; }
  .method-plate { padding: 0 22px; text-align: left; }
  .method-plate img { width: 78px; }
  .method-text { padding: 24px 0 0; }
  .method-text h2 { margin: 12px 0 18px; font-size: 1.9rem; }
  .method-quote { font-size: 1.45rem; }
  .method-chapter.integration-chapter { padding: 28px; }
  .integration-chapter .method-plate, .integration-chapter .method-text { padding-inline: 0; }
  .open-mind-grid { grid-template-columns: 1fr; }
  .open-mind-symbol { width: 130px; }
  .support-specialism summary { grid-template-columns: 58px 1fr 32px; gap: 14px; min-height: 148px; padding: 24px 20px; }
  .support-specialism summary > img { width: 50px; height: 58px; }
  .support-area-title { font-size: 1.45rem; }
  .support-area-short { font-size: .88rem; }
  .support-area-toggle { width: 30px; height: 30px; }
  .support-area-toggle::before, .support-area-toggle::after { left: 8px; right: 8px; top: 14px; }
  .support-area-details { grid-template-columns: 1fr; gap: 4px; padding: 0 20px 28px; }
  .support-area-details > div:first-child, .support-domain-notes { padding-top: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-logo { width: 250px; }
}

@media (max-width: 380px) {
  .brand, .brand img { width: 132px; }
  .nav::after { width: 27px; height: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal-ready { opacity: 1; transform: none; }
}
