/* CHAVA GUTIÉRREZ · Editorial home · v1.0.0
   Native CSS, system typography, zero external dependencies.
   Design tokens are the shared source for the included component reference. */
:root {
  --paper:#f9f7f2; --ivory:#f4efe6; --white:#fffcf8;
  --forest:#123c3a; --forest-dark:#0e2d2c; --ink:#202a28;
  --muted:#5b6862; --clay:#a64b35; --sage:#cad3c4; --linen:#ded39c;
  --rule:#d8dad0; --sans:Arial,"Helvetica Neue",Helvetica,sans-serif;
  --serif:Georgia,"Times New Roman",serif; --max:1280px;
  --gutter:clamp(24px,4.45vw,80px); --header-height:96px;
}
*,*::before,*::after {box-sizing:border-box}
html {scroll-behavior:smooth;scroll-padding-top:calc(var(--header-height) + 24px)}
body {margin:0;background:var(--paper);color:var(--ink);font-family:var(--sans);font-size:17px;line-height:1.65;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
body.menu-open {overflow:hidden}
::selection {background:var(--sage);color:var(--forest)}
a {color:inherit;text-decoration:none}
button {font:inherit;color:inherit}
button,summary,a {-webkit-tap-highlight-color:transparent}
a,button,summary {touch-action:manipulation}
:focus-visible {outline:3px solid var(--clay);outline-offset:5px}
.community :focus-visible,.speaking-photo :focus-visible {outline-color:var(--linen)}
img {display:block;max-width:100%;height:auto}
figure,h1,h2,h3,p {margin:0}
p+p {margin-top:18px}
h1,h2,h3 {font-weight:500;line-height:1.07}
h1,h2 {letter-spacing:-.052em;color:var(--forest)}
h2 {font-size:clamp(40px,4.25vw,62px)}
h3 {letter-spacing:-.022em}
em {font-family:var(--serif);font-weight:400}
button {cursor:pointer}
.wrap {width:calc(100% - var(--gutter)*2);max-width:var(--max);margin-inline:auto}
.section-pad {padding-block:112px}
.section-label {margin-bottom:28px}
.eyebrow {font-size:11px;font-weight:600;letter-spacing:.13em;line-height:1.6;text-transform:uppercase}
.icon {display:inline-block;width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto}
.svg-defs {position:absolute;width:0;height:0;overflow:hidden}
.button {display:inline-flex;align-items:center;justify-content:space-between;gap:30px;min-height:59px;padding:16px 23px;border:1px solid var(--forest);border-radius:5px;background:var(--forest);color:var(--white);font-size:14px;line-height:1.4;font-weight:500;transition:background .2s ease,transform .2s ease;white-space:normal}
.button .icon {width:20px;height:20px;transition:transform .2s ease}
.button:hover {background:var(--forest-dark)}
.button:hover .icon {transform:translateX(4px)}
.button-small {min-height:44px;padding:11px 17px;gap:18px;font-size:13px}
.button-light {color:var(--forest);background:var(--ivory);border-color:var(--ivory)}
.button-light:hover {background:var(--linen);border-color:var(--linen)}
.text-link {display:inline-flex;align-items:center;gap:16px;min-height:44px;font-size:14px;font-weight:500;line-height:1.5;color:var(--forest);text-decoration:underline;text-decoration-thickness:1px;text-decoration-color:transparent;text-underline-offset:5px;transition:text-decoration-color .2s}
.text-link:hover {text-decoration-color:currentColor}
.text-link .icon {width:19px;height:19px;transition:transform .2s ease}
.text-link:hover .icon {transform:translateX(3px)}
.text-link-light {color:var(--ivory)}
.skip-link {position:fixed;top:12px;left:12px;z-index:100;background:var(--forest);color:white;padding:12px 20px;transform:translateY(-160%);border-radius:3px}
.skip-link:focus {transform:translateY(0)}
/* Navigation */
.site-header {position:sticky;top:0;z-index:30;background:var(--paper);border-bottom:1px solid transparent;transition:border-color .2s;min-height:var(--header-height)}
.site-header.is-scrolled {border-bottom-color:var(--rule)}
.header-inner {height:var(--header-height);display:flex;align-items:center;justify-content:space-between;gap:36px}
.wordmark {display:inline-grid;grid-template-columns:auto 8px;grid-template-rows:auto auto;position:relative;color:var(--forest);line-height:1;align-items:center;flex-shrink:0;min-height:54px}
.wordmark-first {font-size:41px;letter-spacing:-.075em;line-height:.92;font-weight:600;grid-column:1;grid-row:1}
.wordmark-last {font-size:8.4px;font-weight:500;letter-spacing:.34em;grid-column:1;grid-row:2;margin-top:7px;margin-left:3px}
.wordmark-dot {width:6px;height:6px;background:var(--clay);border-radius:50%;grid-row:1;grid-column:2;align-self:end;margin-bottom:4px;margin-left:4px}
.primary-nav {display:flex;align-items:center;gap:29px;font-size:12.5px}
.primary-nav>a:not(.button) {display:flex;align-items:center;min-height:44px;position:relative}
.primary-nav>a:not(.button)::after {content:"";position:absolute;bottom:6px;left:0;right:0;height:1px;background:var(--clay);transform:scaleX(0);transform-origin:left;transition:transform .22s ease}
.primary-nav>a:hover::after {transform:scaleX(1)}
.menu-toggle {display:none;border:0;background:none;padding:10px 0;min-width:66px;min-height:44px;align-items:center;justify-content:flex-end;gap:12px}
.menu-label {font-size:13px}
.menu-lines {display:flex;flex-direction:column;gap:5px;width:22px}
.menu-lines span {width:22px;height:1px;background:var(--forest);transition:transform .2s}
.menu-toggle[aria-expanded="true"] .menu-lines span:first-child {transform:translateY(3px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] .menu-lines span:last-child {transform:translateY(-3px) rotate(-45deg)}
/* Homepage hero */
.hero {position:relative;isolation:isolate;min-height:700px;height:min(53.8vw,820px);background:#eeece6;overflow:hidden}
.hero-picture {position:absolute;inset:0;z-index:-3}
.hero-picture img {width:100%;height:100%;object-fit:cover;object-position:center 37%}
.hero-shade {position:absolute;inset:0;z-index:-2;background:linear-gradient(90deg,rgba(249,247,242,.97) 0%,rgba(249,247,242,.9) 25%,rgba(249,247,242,.4) 42%,transparent 59%)}
.hero-inner {height:100%;position:relative;min-height:inherit;display:flex;align-items:center}
.hero-copy {width:53%;padding:50px 0 54px}
.hero-copy .eyebrow {color:var(--forest);display:flex;align-items:center;gap:13px;letter-spacing:.105em;font-size:10px}
.tiny-line {height:1px;width:25px;background:var(--clay);flex:0 0 auto}
.hero h1 {font-size:clamp(68px,7.5vw,108px);line-height:.99;margin-top:26px;letter-spacing:-.06em;font-weight:500}
.hero h1 em {color:var(--forest);letter-spacing:-.075em;line-height:1.1;font-size:1.065em}
.hero-description {max-width:385px;font-size:17px;line-height:1.65;margin-top:27px;color:#374c44}
.hero-copy>.button {margin-top:27px}
.hero-secondary {display:flex;width:fit-content;margin-top:10px;font-size:12px;gap:15px;min-height:40px}
.hero-secondary .icon {width:15px;height:15px}
.hero-name {position:absolute;right:3.5%;bottom:29px;display:flex;flex-direction:column;align-items:flex-end;gap:1px;color:var(--forest);background:rgba(249,247,242,.9);border-radius:3px;padding:8px 12px}
.hero-name span:first-child {font-size:15px;font-weight:500;letter-spacing:-.02em}
.hero-name span:last-child {font-size:9px;text-transform:uppercase;letter-spacing:.15em}
.hero-side-note {position:absolute;right:19px;top:39px;writing-mode:vertical-rl;color:var(--forest);font-size:8px;letter-spacing:.2em;line-height:1}
/* Small, truthful credibility strip */
.intro-strip {background:var(--ivory);border-bottom:1px solid var(--rule)}
.intro-strip-inner {display:flex;align-items:center;justify-content:space-between;gap:40px;padding-block:30px}
.intro-strip p {font-size:15px;line-height:1.6;color:var(--muted)}
.intro-strip strong {color:var(--forest);font-weight:500}
.book-reference {display:flex;align-items:center;gap:18px;color:var(--forest);font-family:var(--serif);font-size:20px}
.book-reference>span:nth-child(2) {display:flex;flex-direction:column;gap:3px}
.book-reference small {font:9px/1.5 var(--sans);letter-spacing:.13em;color:var(--muted)}
.book-reference .icon {width:18px;margin-left:16px}
.book-mini-icon {display:block;width:35px;line-height:1}
.book-mini-icon svg {width:35px;height:40px;stroke:var(--forest);stroke-width:1.3}
/* Starting points */
.starting-grid {display:grid;grid-template-columns:1fr 1fr;gap:96px}
.section-intro>p:not(.eyebrow) {max-width:340px;margin-top:24px;color:var(--muted);font-size:16px}
.orientation-note {display:flex;align-items:center;gap:16px;margin-top:46px;color:var(--muted);font-size:12px;line-height:1.5}
.orientation-mark {font-family:var(--serif);color:var(--clay);font-size:40px;line-height:1;font-weight:400}
.path-list {border-top:1px solid var(--rule)}
.path {border-bottom:1px solid var(--rule)}
summary {list-style:none;cursor:pointer;position:relative}
summary::-webkit-details-marker {display:none}
.path summary {display:flex;align-items:center;padding:24px 0;gap:24px;color:var(--forest);font-size:24px;line-height:1.2;letter-spacing:-.035em;font-weight:400}
.path-number {font-size:10px;letter-spacing:.03em;color:var(--clay);align-self:flex-start;padding-top:5px;width:18px;flex:0 0 auto}
.path summary .plus {margin-left:auto;width:20px;height:20px;stroke-width:1.1}
.plus {transition:transform .2s ease}
details[open]>summary .plus {transform:rotate(45deg)}
.path-content {padding:0 38px 24px 42px}
.path-content>p {font-size:14px;line-height:1.75;color:var(--muted)}
.path-content .text-link {margin-top:10px;font-size:13px}
/* Point of view */
.approach {background:var(--ivory);padding-block:98px}
.approach-grid {display:grid;grid-template-columns:1fr 1fr;gap:94px;align-items:center}
.approach-photo {position:relative}
.approach-photo img {width:100%;aspect-ratio:4/4.65;height:auto;object-fit:cover;object-position:60% 0%;border-radius:2px}
.approach-photo figcaption {display:flex;justify-content:space-between;gap:20px;margin-top:15px;font-size:10px;letter-spacing:.02em;color:var(--muted)}
.approach-copy h2 {font-size:clamp(38px,3.8vw,56px)}
.approach-copy .lead {font-family:var(--serif);font-size:23px;line-height:1.45;letter-spacing:-.02em;margin-top:27px;max-width:450px;color:var(--forest)}
.approach-copy>p:not(.eyebrow):not(.lead) {font-size:15px;line-height:1.8;color:var(--muted);margin-top:18px}
.principles {padding:0;margin:30px 0 0;list-style:none;border-top:1px solid #d0d3c8}
.principles li {display:flex;align-items:flex-start;gap:18px;padding:18px 0;border-bottom:1px solid #d0d3c8}
.principle-number {font-size:10px;color:var(--clay);line-height:2}
.principles h3 {font-size:16px;letter-spacing:-.02em;color:var(--forest);line-height:1.4;font-weight:500}
.principles p {font-size:12.5px;line-height:1.6;color:var(--muted);margin-top:4px;max-width:370px}
/* Flagship offer, the single dark brand temperature */
.community {position:relative;isolation:isolate;background:var(--forest);color:var(--ivory);padding:50px 0 35px;overflow:hidden}
.community-inner {position:relative;z-index:1}
.community-topline {display:flex;justify-content:space-between;align-items:center;gap:24px;padding-bottom:32px;border-bottom:1px solid #40615a}
.community-topline>span {font-size:11px;color:#c7d1c5;letter-spacing:.035em}
.community-grid {display:grid;grid-template-columns:1.1fr 1fr;gap:108px;padding:60px 0 54px;align-items:center}
.community-kicker {font-size:15px;color:#d3d8c9}
.community h2 {color:var(--ivory);font-size:clamp(55px,5.7vw,84px);line-height:1.02;margin-top:20px;letter-spacing:-.055em}
.community h2 em {color:var(--linen);letter-spacing:-.065em}
.community-copy>p:not(.community-kicker) {max-width:450px;margin-top:27px;color:#d3d8c9;font-size:15px;line-height:1.8}
.community-copy .community-human {font-family:var(--serif);font-size:18px!important;line-height:1.55!important;max-width:400px!important;color:var(--ivory)!important;margin-top:21px!important}
.community-feature {display:flex;gap:25px;border-bottom:1px solid #40615a;padding:25px 0}
.community-feature:first-child {border-top:1px solid #40615a}
.feature-index {color:var(--linen);font-family:var(--serif);font-size:19px;width:23px;flex:0 0 auto;line-height:1.4}
.community-feature h3 {font-size:20px;line-height:1.4;color:var(--ivory);font-weight:400}
.community-feature p {margin-top:8px;font-size:13px;line-height:1.7;color:#c7d1c5;max-width:320px}
.community-offer {display:flex;justify-content:space-between;align-items:center;gap:40px;padding:34px 0 28px;border-top:1px solid #40615a}
.offer-price {display:flex;align-items:baseline;gap:20px}
.offer-price strong {font-size:33px;line-height:1.2;font-weight:400;letter-spacing:-.04em}
.offer-price>span {font-size:13px;color:#d3d8c9}
.offer-action {text-align:right}
.offer-action p {font-size:10px;margin-top:11px;color:#c7d1c5}
.community-boundary {font-size:10px;line-height:1.7;color:#c7d1c5;border-top:1px solid #40615a;padding-top:17px}
.community-lines {position:absolute;right:-280px;top:-410px;width:800px;height:800px;z-index:0;pointer-events:none;opacity:.28;transform:rotate(12deg)}
.community-lines span {position:absolute;inset:0;border:1px solid #98a491;border-radius:50%}
.community-lines span:nth-child(2) {inset:70px}
.community-lines span:nth-child(3) {inset:140px}
/* Biography and a speaker portrait */
.about-intro {display:grid;grid-template-columns:1.1fr 1fr;gap:100px;align-items:center;margin-bottom:54px}
.about-intro h2 {font-size:clamp(42px,4.25vw,63px)}
.about-description {font-size:15px;line-height:1.85;color:var(--muted)}
.about-description .text-link {margin-top:16px}
.speaking-photo {position:relative;isolation:isolate;background:#192122;border-radius:2px;overflow:hidden}
.speaking-photo>img {width:100%;height:500px;object-fit:cover;object-position:center 10%}
.speaking-overlay {position:absolute;inset:0;background:linear-gradient(90deg,rgba(14,30,30,.74),rgba(14,30,30,.16) 50%,transparent 72%);z-index:1}
.speaking-photo figcaption {position:absolute;z-index:2;top:0;left:0;padding:60px;display:flex;flex-direction:column;justify-content:center;height:100%;width:65%;color:var(--ivory)}
.speaking-photo .eyebrow {font-size:9px;color:#d9dfd5}
.speaking-photo figcaption>p {font-size:clamp(38px,4.1vw,61px);line-height:1.1;letter-spacing:-.045em;margin-top:25px;color:var(--ivory)}
.speaking-photo .text-link {font-size:12px;margin-top:31px;width:fit-content}
/* Editorial resources, not product or book cover simulations */
.resources {padding-top:0}
.section-heading-row {display:flex;justify-content:space-between;align-items:flex-end;gap:40px;margin-bottom:46px}
.section-heading-row>p {font-size:15px;color:var(--muted);max-width:340px;padding-bottom:6px}
.resource-grid {display:grid;grid-template-columns:1.08fr 1fr 1fr;gap:27px}
.resource-art {height:345px;position:relative;isolation:isolate;overflow:hidden;padding:25px;border-radius:2px}
.art-label {font-size:8px;letter-spacing:.16em;font-weight:600;position:relative;z-index:3;display:block;line-height:1.5}
.book-art {background:var(--clay);color:var(--ivory);display:flex;flex-direction:column;justify-content:space-between}
.book-art>p {font-size:45px;line-height:1.03;letter-spacing:-.045em;position:relative;z-index:2;margin-block:30px;max-width:260px}
.book-art>p em {font-size:1.15em}
.art-bottom {font-size:7px;letter-spacing:.095em;position:relative;z-index:2}
.book-art-line {position:absolute;right:-67px;bottom:-90px;width:190px;height:500px;border:1px solid rgba(255,252,248,.45);transform:rotate(28deg);z-index:0}
.self-art {background:#dddccf;color:var(--forest)}
.self-art>p,.love-art>p {position:absolute;bottom:29px;left:25px;font-size:33px;line-height:1.15;letter-spacing:-.03em;z-index:2}
.self-graphic {position:absolute;top:42px;right:26px;width:172px;height:165px}
.self-graphic>span {position:absolute;border:1px solid #567266;width:106px;height:106px;border-radius:50%;top:24px;left:8px}
.self-graphic>span:nth-child(2) {left:31px;top:24px}
.self-graphic>span:nth-child(3) {left:55px;top:24px}
.love-art {background:#e7ded2;color:var(--forest)}
.love-graphic {position:absolute;top:51px;left:50%;transform:translateX(-50%);width:174px;height:145px}
.love-graphic span {position:absolute;border:1px solid #8b7060;width:100px;height:142px;border-radius:80px 80px 0 0;transform:rotate(-26deg);left:10px;top:0}
.love-graphic span+span {left:66px;transform:rotate(26deg)}
.resource-info {padding-top:26px}
.resource-info>.eyebrow {font-size:8px;letter-spacing:.1em;color:var(--muted);margin-bottom:12px}
.resource-info h3 {font-size:22px;color:var(--forest);line-height:1.25}
.resource-info p {font-size:14px;line-height:1.7;margin-top:12px;color:var(--muted);max-width:330px;min-height:49px}
.resource-info .text-link {font-size:12px;margin-top:12px}
.resource-footer {display:flex;justify-content:space-between;align-items:center;gap:24px;border-top:1px solid var(--rule);margin-top:43px;padding-top:17px;font-size:13px;color:var(--muted)}
.resource-footer .text-link {font-size:12px}
/* FAQ */
.faq {border-top:1px solid var(--rule);padding-block:94px}
.faq-grid {display:grid;grid-template-columns:.95fr 1.05fr;gap:80px}
.faq-list {border-top:1px solid var(--rule)}
.faq-list details {border-bottom:1px solid var(--rule)}
.faq-list summary {display:flex;justify-content:space-between;align-items:center;gap:28px;font-size:16px;line-height:1.5;padding:23px 0;color:var(--forest)}
.faq-list summary .icon {width:19px;height:19px;stroke-width:1.2}
.faq-answer {padding:0 38px 24px 0;color:var(--muted);font-size:14px;line-height:1.8}
.faq-answer .text-link {font-size:12px;margin-top:10px}
/* Gentle final invitation */
.closing {background:var(--sage);padding-block:60px}
.closing-inner {display:flex;align-items:center;justify-content:space-between;gap:50px}
.closing .eyebrow {font-size:9px;margin-bottom:19px}
.closing h2 {font-size:clamp(37px,3.6vw,53px);line-height:1.1}
.closing .button {flex-shrink:0}
/* Footer */
.site-footer {padding-top:65px;background:var(--ivory)}
.footer-main {display:grid;grid-template-columns:1.3fr .9fr 1fr 1.2fr;gap:40px;padding-bottom:54px}
.footer-brand p {font-size:12px;line-height:1.7;color:var(--muted);margin-top:20px}
.footer-wordmark .wordmark-first {font-size:49px}
.footer-wordmark .wordmark-last {font-size:10px}
.footer-column {display:flex;flex-direction:column;align-items:flex-start}
.footer-column h2 {font-family:var(--sans);font-size:9px;letter-spacing:.13em;text-transform:uppercase;color:var(--muted);line-height:1.6;margin-bottom:14px}
.footer-column>a {font-size:12px;line-height:1.5;min-height:34px;display:inline-flex;align-items:center;gap:10px;color:var(--forest)}
.footer-column>a:hover {text-decoration:underline;text-underline-offset:4px}
.footer-column .icon {width:11px;height:11px}
.footer-column>p {font-size:11px;color:var(--muted);line-height:1.8;margin-top:6px}
.footer-column .footer-back {font-size:10px;gap:28px;margin-top:16px}
.footer-back>span {font-size:17px}
.footer-bottom {border-top:1px solid var(--rule);display:flex;justify-content:space-between;align-items:center;gap:30px;padding-block:23px;font-size:9px;line-height:1.6;color:var(--muted)}
.footer-bottom a {display:flex;align-items:center;min-height:32px}
.footer-bottom a:hover {text-decoration:underline}
/* Smaller desktops/tablets */
@media (min-width:1600px) {
  .hero {height:800px}
  .hero-picture img {object-position:center 34%}
}
@media (max-width:1150px) {
  :root {--gutter:40px;--header-height:86px}
  .primary-nav {gap:21px;font-size:12px}
  .hero {min-height:650px}
  .hero-copy {width:56%}
  .hero h1 {font-size:84px}
  .hero-description {max-width:330px;font-size:16px}
  .hero-picture img {object-position:57% 40%}
  .starting-grid,.approach-grid {gap:55px}
  .community-grid {gap:55px}
  .about-intro {gap:60px}
  .resource-grid {gap:22px}
  .resource-art {height:310px;padding:21px}
  .book-art>p {font-size:39px}
  .self-art>p,.love-art>p {font-size:29px;left:21px}
  .resource-info h3 {font-size:20px}
  .footer-main {gap:24px}
}
@media (max-width:900px) {
  :root {--gutter:32px;--header-height:80px}
  .primary-nav {gap:16px}
  .primary-nav>a:not(.nav-cta) {font-size:11px}
  .button-small {font-size:12px;padding-inline:14px;gap:13px}
  .hero {min-height:620px}
  .hero h1 {font-size:73px}
  .hero-copy .eyebrow {font-size:8px;gap:8px}
  .tiny-line {width:18px}
  .hero-description {font-size:15px;max-width:300px}
  .hero-shade {background:linear-gradient(90deg,rgba(249,247,242,.98),rgba(249,247,242,.92) 30%,rgba(249,247,242,.3) 54%,transparent 68%)}
  .hero-picture img {object-position:61% center}
  .hero-name {right:1%;bottom:22px}
  .section-pad {padding-block:80px}
  h2 {font-size:42px}
  .starting-grid {gap:36px}
  .path summary {font-size:21px;gap:15px}
  .path-content {padding-left:33px;padding-right:0}
  .approach-grid {gap:40px}
  .approach-photo img {aspect-ratio:4/5.8;object-position:63% center}
  .approach-copy h2 {font-size:37px}
  .approach-copy .eyebrow {font-size:9px}
  .approach-copy .lead {font-size:21px}
  .approach-copy>p:not(.eyebrow):not(.lead) {font-size:14px}
  .approach-photo figcaption {font-size:8px;gap:10px}
  .community-grid {gap:40px;grid-template-columns:1fr 1fr;padding-block:44px}
  .community h2 {font-size:56px}
  .community-feature h3 {font-size:18px}
  .community-feature {gap:13px}
  .offer-price {flex-direction:column;gap:6px}
  .offer-price strong {font-size:30px}
  .about-intro {gap:40px}
  .about-intro h2 {font-size:44px}
  .speaking-photo figcaption {padding:38px}
  .speaking-photo>img {height:425px;object-position:58% 10%}
  .speaking-photo figcaption>p {font-size:43px}
  .section-heading-row h2 {font-size:42px}
  .section-heading-row>p {font-size:13px}
  .resources {padding-top:0}
  .resource-grid {gap:17px}
  .resource-art {height:280px;padding:17px}
  .resource-art .art-label {font-size:7px}
  .book-art>p {font-size:33px}
  .art-bottom {font-size:6px}
  .self-art>p,.love-art>p {font-size:25px;left:17px}
  .self-graphic {transform:scale(.8);transform-origin:top right;right:13px;top:38px}
  .love-graphic {transform:translateX(-50%) scale(.8);top:38px}
  .resource-info h3 {font-size:18px}
  .resource-info p {font-size:13px}
  .resource-info .eyebrow {font-size:7px}
  .resource-info .text-link {font-size:11px;gap:9px}
  .faq-grid {gap:42px}
  .faq-list summary {font-size:15px}
  .closing h2 {font-size:39px}
  .footer-main {grid-template-columns:1.1fr .8fr 1fr;gap:28px}
  .footer-contact {grid-column:1/-1;flex-direction:row;align-items:center;gap:22px;border-top:1px solid var(--rule);padding-top:22px}
  .footer-contact h2 {margin-bottom:0}
  .footer-contact>p {display:none}
  .footer-contact .footer-back {margin:0 0 0 auto}
}
/* Mobile: art-directed portrait, readable text, no shrinking desktop layout. */
@media (max-width:700px) {
  :root {--gutter:22px;--header-height:76px}
  body {font-size:16px}
  .section-pad {padding-block:70px}
  .eyebrow {font-size:9px}
  .section-label {margin-bottom:23px}
  h2 {font-size:42px;line-height:1.08}
  .header-inner {gap:20px}
  .wordmark {min-height:50px}
  .wordmark-first {font-size:36px}
  .wordmark-last {font-size:7.4px}
  .wordmark-dot {width:5px;height:5px}
  .menu-toggle {display:none}
  /* Without JS, the full navigation remains available in the document. */
  .site-header:not(.has-js) {position:relative}
  .site-header:not(.has-js) .header-inner {height:auto;min-height:76px;flex-wrap:wrap;padding-block:15px}
  .site-header:not(.has-js) .primary-nav {display:flex;flex-wrap:wrap;padding-bottom:15px;width:100%;gap:12px 18px}
  .site-header.has-js .menu-toggle {display:flex}
  .site-header.has-js .primary-nav {position:absolute;top:76px;left:0;right:0;display:none;background:var(--paper);padding:20px var(--gutter) 35px;border-bottom:1px solid var(--rule);max-height:calc(100dvh - 76px);overflow-y:auto;box-shadow:0 12px 16px rgba(18,60,58,.04)}
  .site-header.has-js .primary-nav.is-open {display:flex;flex-direction:column;align-items:stretch;gap:0}
  .site-header.has-js .primary-nav>a:not(.button) {font-size:24px;letter-spacing:-.025em;padding:13px 0;min-height:58px;border-bottom:1px solid var(--rule)}
  .site-header.has-js .primary-nav>a:not(.button)::after {display:none}
  .primary-nav .nav-cta {margin-top:24px;font-size:15px;min-height:55px}
  .hero {height:auto;min-height:0;display:flex;flex-direction:column;background:var(--ivory);overflow:hidden}
  .hero-inner {height:auto;min-height:0;display:block;order:0;width:calc(100% - var(--gutter)*2)}
  .hero-copy {width:100%;padding:40px 0 32px;position:relative}
  .hero-copy .eyebrow {font-size:8px;gap:9px;letter-spacing:.09em}
  .hero h1 {font-size:68px;line-height:1;margin-top:23px;letter-spacing:-.065em}
  .hero h1 em {font-size:1em}
  .hero-description {font-size:15px;line-height:1.75;max-width:390px;margin-top:23px}
  .hero-copy>.button {margin-top:23px;font-size:14px;min-height:56px;width:100%;max-width:390px}
  .hero-secondary {font-size:12px;min-height:44px;margin-top:8px}
  .hero-picture {position:relative;inset:auto;order:1;height:410px;display:block;z-index:0;margin-top:0}
  .hero-picture img {width:100%;height:100%;object-fit:cover;object-position:50% 23%}
  .hero-shade {display:none}
  .hero-name {display:none}
  .hero-side-note {display:none}
  .intro-strip-inner {flex-direction:column;align-items:flex-start;gap:20px;padding-block:27px}
  .intro-strip p {font-size:14px}
  .intro-strip p br {display:none}
  .intro-strip p strong {display:block}
  .book-reference {border-top:1px solid var(--rule);width:100%;padding-top:19px;gap:12px;font-size:18px}
  .book-reference small {font-size:8px}
  .book-reference .icon {margin-left:auto;width:16px}
  .book-mini-icon,.book-mini-icon svg {width:30px;height:35px}
  .starting-grid,.approach-grid,.community-grid,.about-intro,.faq-grid {grid-template-columns:1fr;gap:36px}
  .section-intro>p:not(.eyebrow) {font-size:15px;max-width:350px;margin-top:21px}
  .orientation-note {display:none}
  .path summary {font-size:23px;padding:24px 0;gap:20px}
  .path-content {padding-left:38px;padding-bottom:24px;padding-right:15px}
  .path-content>p {font-size:14px}
  .path-content .text-link {font-size:12px}
  .approach-grid {gap:34px}
  .approach-photo {order:1}
  .approach-photo img {aspect-ratio:1/.96;object-position:center 28%}
  .approach-photo figcaption {font-size:9px}
  .approach-copy {order:0}
  .approach-copy h2 {font-size:42px}
  .approach-copy .lead {font-size:23px;max-width:350px}
  .approach-copy>p:not(.eyebrow):not(.lead) {font-size:15px}
  .principles {margin-top:28px}
  .principles li {gap:17px;padding-block:19px}
  .principles h3 {font-size:17px}
  .principles p {font-size:13px}
  .community {padding-top:30px;padding-bottom:26px}
  .community-topline {align-items:flex-start;padding-bottom:24px;gap:20px}
  .community-topline .eyebrow {font-size:8px}
  .community-topline>span {font-size:8px;max-width:160px;text-align:right}
  .community-grid {padding:34px 0;gap:31px}
  .community-kicker {font-size:13px}
  .community h2 {font-size:62px;margin-top:19px;line-height:1.06}
  .community-copy>p:not(.community-kicker) {font-size:15px;margin-top:24px}
  .community-copy .community-human {font-size:18px!important}
  .community-feature {padding:21px 0;gap:20px}
  .community-feature h3 {font-size:19px}
  .community-feature p {font-size:13px}
  .community-offer {flex-direction:column;align-items:stretch;padding:25px 0;gap:22px}
  .offer-price {flex-direction:row;align-items:baseline;justify-content:space-between;gap:15px}
  .offer-price strong {font-size:29px}
  .offer-price>span {font-size:12px}
  .offer-action {text-align:left}
  .offer-action .button {width:100%;font-size:14px}
  .offer-action p {font-size:9px;text-align:center;line-height:1.6}
  .community-boundary {font-size:10px}
  .community-lines {opacity:.15;right:-420px;top:-430px}
  .about-intro {margin-bottom:34px;gap:27px}
  .about-intro h2 {font-size:42px}
  .about-description {font-size:15px;line-height:1.8}
  .speaking-photo {overflow:hidden}
  .speaking-photo>img {height:500px;object-position:71% top;object-fit:cover}
  .speaking-overlay {background:linear-gradient(0deg,rgba(14,30,30,.96),rgba(14,30,30,.8) 30%,rgba(14,30,30,.0) 70%)}
  .speaking-photo figcaption {top:auto;bottom:0;justify-content:flex-end;padding:27px 24px;height:auto;width:100%}
  .speaking-photo .eyebrow {font-size:7px}
  .speaking-photo figcaption>p {font-size:36px;margin-top:15px;line-height:1.08}
  .speaking-photo .text-link {font-size:11px;margin-top:13px}
  .section-heading-row {display:block;margin-bottom:33px}
  .section-heading-row h2 {font-size:42px}
  .section-heading-row>p {margin-top:22px;font-size:14px}
  .resources {padding-top:0}
  .resource-grid {grid-template-columns:1fr;gap:39px}
  .resource-art {height:330px;padding:26px}
  .resource-art .art-label {font-size:8px}
  .book-art>p {font-size:46px;margin-block:20px}
  .art-bottom {font-size:7px}
  .self-art>p,.love-art>p {font-size:37px;left:26px;bottom:26px}
  .self-graphic {transform:scale(1);right:31px;top:44px}
  .love-graphic {transform:translateX(-50%) scale(1);top:44px}
  .resource-info {padding-top:22px}
  .resource-info>.eyebrow {font-size:8px;margin-bottom:11px}
  .resource-info h3 {font-size:23px}
  .resource-info p {font-size:14px;max-width:370px;min-height:0}
  .resource-info .text-link {font-size:13px;margin-top:10px}
  .resource-footer {display:block;margin-top:31px;font-size:13px;padding-top:24px}
  .resource-footer .text-link {font-size:12px;margin-top:6px}
  .faq {padding-block:65px}
  .faq-grid {gap:30px}
  .faq-list summary {font-size:15px;gap:25px;padding-block:22px}
  .faq-answer {padding-right:24px;font-size:14px}
  .closing {padding-block:45px}
  .closing-inner {display:block}
  .closing .eyebrow {font-size:8px;margin-bottom:20px}
  .closing h2 {font-size:37px}
  .closing .button {margin-top:29px;width:100%;font-size:14px}
  .site-footer {padding-top:44px}
  .footer-main {grid-template-columns:1fr 1fr;gap:30px 20px;padding-bottom:27px}
  .footer-brand {grid-column:1/-1;display:flex;align-items:center;justify-content:space-between;gap:20px;padding-bottom:14px}
  .footer-brand p {font-size:11px;margin:0}
  .footer-wordmark .wordmark-first {font-size:44px}
  .footer-wordmark .wordmark-last {font-size:9px}
  .footer-column>a {min-height:40px;font-size:12px}
  .footer-column h2 {font-size:8px;margin-bottom:9px}
  .footer-contact {display:flex;flex-direction:column;align-items:flex-start;gap:0;padding-top:26px}
  .footer-contact h2 {margin-bottom:7px}
  .footer-contact>a {font-size:14px}
  .footer-contact .footer-back {margin-top:15px;margin-left:0}
  .footer-bottom {flex-wrap:wrap;gap:5px 18px;padding-top:20px;font-size:9px}
  .footer-bottom>p {flex:1 0 100%}
  .footer-bottom>span {margin-left:auto}
}
@media (max-width:380px) {
  :root {--gutter:20px}
  .hero h1 {font-size:60px}
  .hero-copy .eyebrow {font-size:7px;letter-spacing:.075em}
  .hero-picture {height:365px}
  h2,.section-heading-row h2,.about-intro h2,.approach-copy h2 {font-size:38px}
  .community h2 {font-size:55px}
  .offer-price strong {font-size:25px}
  .offer-price>span {font-size:11px}
  .closing h2 {font-size:34px}
  .speaking-photo figcaption>p {font-size:32px}
  .resource-art {height:310px}
}
@media (prefers-reduced-motion:reduce) {
  html {scroll-behavior:auto}
  *,*::before,*::after {animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
}
@media print {
  .site-header {position:static}
  .primary-nav,.menu-toggle,.hero-side-note,.closing,.footer-back {display:none!important}
  .hero {min-height:550px}
  .section-pad {padding-block:40px}
  details>* {display:block!important}
  .community {print-color-adjust:exact;-webkit-print-color-adjust:exact}
  .resource,.approach-photo,.community-feature {break-inside:avoid}
}

/* Final readability pass: auxiliary text is still real content. */
.offer-action p {font-size:12px;max-width:390px}
.community-boundary {font-size:12px}
.community-feature p {font-size:15px}
.principles p {font-size:14px}
.resource-info>.eyebrow {font-size:10px}
.resource-info p {font-size:15px}
.resource-info .text-link {font-size:14px}
.footer-column h2 {font-size:10px}
.footer-column>a {font-size:14px}
.footer-column>p {font-size:12px}
.footer-bottom {font-size:11px}
@media(max-width:900px) and (min-width:701px) {
  .resource-info .text-link {font-size:12px}
  .resource-info>.eyebrow {font-size:9px}
  .footer-column>a {font-size:12px}
}
@media(max-width:700px) {
  .hero-copy .eyebrow {font-size:9px}
  .hero-secondary {min-height:44px}
  .community-topline .eyebrow {font-size:10px}
  .community-topline>span {font-size:10px}
  .offer-action p {font-size:11px;max-width:none}
  .community-boundary {font-size:11px}
  .resource-info>.eyebrow {font-size:10px}
  .footer-column h2 {font-size:10px}
  .footer-column>a {min-height:44px;font-size:14px}
  .footer-column .footer-back {font-size:12px}
  .footer-bottom {font-size:10px}
  .closing .eyebrow {font-size:10px}
}
@media(max-width:380px) { .hero-copy .eyebrow {font-size:8px} }
