/* ============================================================
   Wholeness@Work — site styles
   Palette (client): navy #333D6D · purple #723EC3 · peach #FFCF95 · cream #FFF0D9
   Radius system: cards 20px, images 16px, buttons pill
   Theme: light (locked)
   ============================================================ */

:root {
    --navy: #333D6D;
    --purple: #723EC3;
    --peach: #FFCF95;
    --cream: #FFF0D9;
    --ink: #232948;            /* off-black derived from navy */
    --ink-soft: #565e85;
    --surface: #FFFBF2;        /* lifted cream */
    --white: #fffdf9;
    --r-card: 20px;
    --r-img: 16px;
    --shadow: 0 12px 40px rgba(51, 61, 109, 0.10);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body: 'Figtree', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--surface);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; color: var(--navy); letter-spacing: -0.015em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); font-weight: 700; margin-bottom: 1.6rem; }
h3 { font-size: 1.22rem; font-weight: 600; }
p  { color: var(--ink-soft); }
a  { color: var(--purple); }

.section { max-width: 1200px; margin: 0 auto; padding: 5.5rem 1.5rem; }

/* ---------- buttons ---------- */
.btn {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 1.9rem;
    border-radius: 999px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
    white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn-primary {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 8px 24px rgba(114, 62, 195, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(114, 62, 195, 0.42); }
.btn-ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--cream); }
.btn-block { width: 100%; }
.text-link {
    font-family: var(--font-display);
    font-weight: 600;
    text-decoration: none;
    color: var(--purple);
    border-bottom: 2px solid var(--peach);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}
.text-link:hover { border-color: var(--purple); }

.eyebrow {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 1rem;
}

/* ---------- nav ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 72px;
    padding: 0 1.5rem;
    background: rgba(255, 251, 242, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(51, 61, 109, 0.08);
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-mark {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--purple), var(--navy));
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    border-radius: 12px;
}
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--navy); }
.logo-text em { color: var(--purple); font-style: normal; }
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-links a {
    font-family: var(--font-display);
    font-weight: 500;
    text-decoration: none;
    color: var(--ink);
    font-size: 0.98rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple); }
.btn-nav { padding: 0.6rem 1.4rem; font-size: 0.92rem; }
.nav-burger { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; }
.nav-burger span { display: block; height: 2.5px; background: var(--navy); margin: 6px 8px; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--cream); overflow: hidden; }
.hero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4.5rem 1.5rem 5rem;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
    min-height: min(78dvh, 720px);
}
.hero h1 {
    font-size: clamp(2.2rem, 4.2vw, 3.25rem);
    font-weight: 800;
    max-width: 24ch;
}
.hero-sub { font-size: 1.2rem; margin: 1.2rem 0 2rem; max-width: 42ch; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-blobs { position: absolute; inset: 0; pointer-events: none; }
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
}
.blob-a { width: 420px; height: 420px; background: var(--peach); top: -120px; right: 8%; animation: drift 16s ease-in-out infinite alternate; }
.blob-b { width: 340px; height: 340px; background: rgba(114, 62, 195, 0.35); bottom: -140px; left: -80px; animation: drift 20s ease-in-out infinite alternate-reverse; }
.blob-c { width: 220px; height: 220px; background: rgba(51, 61, 109, 0.22); top: 30%; left: 42%; animation: drift 24s ease-in-out infinite alternate; }
@keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(60px, 40px) scale(1.12); }
}

.hero-portrait { position: relative; justify-self: center; }
.hero-portrait img {
    width: min(400px, 78vw);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 46% 54% 55% 45% / 48% 44% 56% 52%;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    background: #fff;
}
.portrait-ring {
    position: absolute;
    inset: -16px;
    border: 3px dashed rgba(114, 62, 195, 0.4);
    border-radius: 50%;
    animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.portrait-chip {
    position: absolute;
    z-index: 3;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    box-shadow: var(--shadow);
    animation: bob 5s ease-in-out infinite;
}
.chip-love  { background: var(--peach);  color: var(--navy);  top: 6%;  left: -6%; }
.chip-work  { background: var(--navy);   color: var(--cream); top: 42%; right: -10%; animation-delay: 1.2s; }
.chip-money { background: var(--purple); color: #fff;         bottom: 4%; left: 2%;  animation-delay: 2.4s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- partners marquee ---------- */
.partners { padding: 2.2rem 0; background: var(--surface); border-bottom: 1px solid rgba(51,61,109,0.06); }
.partners-label {
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-soft);
    margin-bottom: 1.2rem;
}
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.partner {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy);
    opacity: 0.75;
    white-space: nowrap;
}

/* ---------- offerings bento ---------- */
.offer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.4rem;
}
.offer-card {
    background: var(--white);
    border-radius: var(--r-card);
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.offer-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(51, 61, 109, 0.16); }
.offer-hero { grid-row: span 2; background: linear-gradient(160deg, var(--navy), #47549A); }
.offer-hero h3 { color: var(--cream); font-size: 1.5rem; }
.offer-hero p { color: rgba(255, 240, 217, 0.85); }
.offer-hero .text-link { color: var(--peach); border-color: rgba(255, 207, 149, 0.5); }
.offer-hero .offer-icon { background: rgba(255, 207, 149, 0.18); color: var(--peach); }
.offer-img { border-radius: var(--r-img); margin-top: auto; aspect-ratio: 4/3; object-fit: cover; object-position: center top; width: 100%; }
.offer-alt { background: var(--peach); }
.offer-alt p { color: #6b5334; }
.offer-alt .offer-icon { background: rgba(51, 61, 109, 0.12); color: var(--navy); }
.offer-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: grid; place-items: center;
    background: rgba(114, 62, 195, 0.1);
    color: var(--purple);
}
.offer-icon svg { width: 26px; height: 26px; }

/* ---------- problems ---------- */
.problems { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start; }
.problems-head { position: sticky; top: 100px; }
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.problem-item {
    display: flex;
    gap: 1.3rem;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--r-card);
    padding: 1.5rem 1.7rem;
    box-shadow: var(--shadow);
    border-left: 6px solid var(--peach);
}
.problem-item:nth-child(2) { border-left-color: var(--purple); }
.problem-item:nth-child(3) { border-left-color: var(--navy); }
.problem-item:nth-child(4) { border-left-color: #E8A0BF; }
.problem-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--purple);
    line-height: 1;
    padding-top: 0.2rem;
}
.problem-item h3 { margin-bottom: 0.25rem; }

/* ---------- about (navy) ---------- */
.about {
    max-width: none;
    background: var(--navy);
    color: var(--cream);
    padding: 6rem 1.5rem;
}
.about > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.about-quote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 600;
    line-height: 1.35;
    color: var(--peach);
    max-width: 26ch;
    margin-bottom: 3.5rem;
}
.about-quote cite { display: block; font-size: 1rem; font-weight: 500; color: rgba(255, 240, 217, 0.7); margin-top: 0.8rem; font-style: normal; }
.about h2.on-dark { color: var(--cream); }
.story { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; position: relative; }
.story-step {
    background: rgba(255, 251, 242, 0.06);
    border: 1px solid rgba(255, 240, 217, 0.14);
    border-radius: var(--r-card);
    padding: 1.8rem;
}
.story-dot {
    display: block;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--peach);
    box-shadow: 0 0 0 6px rgba(255, 207, 149, 0.2);
    margin-bottom: 1.1rem;
}
.story-step:nth-child(2) .story-dot { background: #B48CE8; box-shadow: 0 0 0 6px rgba(180, 140, 232, 0.2); }
.story-step:nth-child(3) .story-dot { background: #7FD8BE; box-shadow: 0 0 0 6px rgba(127, 216, 190, 0.2); }
.story-step h3 { color: var(--cream); margin-bottom: 0.6rem; }
.story-step p { color: rgba(255, 240, 217, 0.78); font-size: 0.97rem; }
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 240, 217, 0.15);
}
.stat-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--peach);
    display: block;
}
.stat-label { color: rgba(255, 240, 217, 0.7); font-size: 0.9rem; }

/* ---------- books ---------- */
.books-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.book {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.6rem;
    align-items: center;
    background: var(--white);
    border-radius: var(--r-card);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.book-cover { border-radius: 10px; box-shadow: 0 16px 32px rgba(51, 61, 109, 0.25); transform: rotate(-2.5deg); transition: transform 0.3s var(--ease); }
.book:hover .book-cover { transform: rotate(0deg) scale(1.03); }
.book-cover-type {
    aspect-ratio: 2/3;
    background: linear-gradient(160deg, #1F6E8C, #145369);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.2rem;
}
.bc-title { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: #fff; line-height: 1.2; }
.bc-author { font-family: var(--font-display); font-size: 0.8rem; color: rgba(255,255,255,0.85); letter-spacing: 0.06em; text-transform: uppercase; }
.book-sub { margin: 0.4rem 0 1.2rem; }

/* ---------- talks ---------- */
.talks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.talk-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    background: var(--white);
    border-radius: var(--r-card);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease);
}
.talk-card:hover { transform: translateY(-4px); }
.talk-card img { width: 100%; height: 100%; object-fit: cover; }
.talk-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-start; }
.talk-body p { font-size: 0.95rem; }
.talk-body .text-link { margin-top: auto; font-size: 0.92rem; }

/* ---------- testimonials rail ---------- */
.quotes { max-width: none; padding-left: 0; padding-right: 0; background: var(--cream); }
.quotes h2 { max-width: 1200px; margin-left: auto; margin-right: auto; padding: 0 1.5rem; }
.quotes-rail {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem max(1.5rem, calc((100vw - 1200px) / 2)) 1.5rem;
    scrollbar-width: thin;
}
.quote-card {
    flex: 0 0 min(420px, 85vw);
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--r-card);
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}
.quote-card blockquote { font-size: 1.05rem; color: var(--ink); line-height: 1.55; }
.quote-card figcaption { display: flex; gap: 0.9rem; align-items: center; font-size: 0.9rem; color: var(--ink-soft); margin-top: auto; }
.quote-card figcaption img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.quote-card strong { color: var(--navy); font-family: var(--font-display); }

/* ---------- media tiles ---------- */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.media-tile {
    border-radius: var(--r-card);
    padding: 2.2rem 1.8rem;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.4rem;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease);
}
.media-tile:hover { transform: translateY(-5px) scale(1.01); }
.tile-podcast { background: linear-gradient(150deg, var(--purple), #4B2683); }
.tile-keynote { background: linear-gradient(150deg, var(--navy), #1F2645); }
.tile-blog    { background: linear-gradient(150deg, var(--peach), #f0b465); }
.media-kicker { font-family: var(--font-display); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.12em; font-weight: 700; color: rgba(255,255,255,0.75); }
.tile-blog .media-kicker { color: rgba(51, 61, 109, 0.65); }
.media-title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: #fff; line-height: 1.3; }
.tile-blog .media-title { color: var(--navy); }

/* ---------- blog preview ---------- */
.blogprev-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.post-card {
    background: var(--white);
    border-radius: var(--r-card);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ease);
}
.post-card:hover { transform: translateY(-5px); }
.post-card > img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.post-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; }
.post-tag {
    align-self: flex-start;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--purple);
    background: rgba(114, 62, 195, 0.1);
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
}
.post-card-body h3 { font-size: 1.1rem; }
.post-card-body p { font-size: 0.92rem; }
.post-card-body time { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- steps ---------- */
.steps { text-align: center; }
.steps-row { display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.step {
    background: var(--white);
    border-radius: var(--r-card);
    box-shadow: var(--shadow);
    padding: 1.6rem 1.8rem;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}
.step-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: var(--purple);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
}
.step:nth-child(3) .step-num { background: var(--navy); }
.step:nth-child(5) .step-num { background: #d98e2b; }
.step:nth-child(7) .step-num { background: #b04a7f; }
.step p { font-family: var(--font-display); font-weight: 600; color: var(--navy); }
.step-arrow { font-size: 1.5rem; color: var(--purple); }

/* ---------- contact ---------- */
.contact { max-width: none; background: linear-gradient(160deg, var(--cream), #ffe6bd); }
.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
}
.contact-points { list-style: none; margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.7rem; }
.contact-points li { padding-left: 1.8rem; position: relative; color: var(--ink); font-weight: 500; }
.contact-points li::before {
    content: '';
    position: absolute; left: 0; top: 0.42em;
    width: 12px; height: 12px;
    border-radius: 4px;
    background: var(--purple);
}
.contact-points li:nth-child(2)::before { background: var(--navy); }
.contact-points li:nth-child(3)::before { background: #d98e2b; }
.contact-form {
    background: var(--white);
    border-radius: var(--r-card);
    padding: 2.2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.contact-form label { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--navy); margin-top: 0.8rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    padding: 0.75rem 1rem;
    border: 2px solid rgba(51, 61, 109, 0.15);
    border-radius: 12px;
    background: var(--surface);
    transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--purple); }
.contact-form button { margin-top: 1.4rem; }
.form-success {
    background: rgba(12, 155, 106, 0.12);
    color: #0a7a54;
    font-weight: 600;
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    margin-bottom: 0.6rem;
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ---------- footer ---------- */
.footer { background: var(--navy); color: var(--cream); padding: 3.5rem 1.5rem 2rem; }
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.footer .logo-text { color: var(--cream); }
.footer-line { color: rgba(255, 240, 217, 0.7); margin-top: 0.9rem; max-width: 30ch; }
.footer-links, .footer-social { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a, .footer-social a { color: rgba(255, 240, 217, 0.85); text-decoration: none; font-size: 0.95rem; }
.footer-links a:hover, .footer-social a:hover { color: var(--peach); }
.footer-credit {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 240, 217, 0.15);
    font-size: 0.85rem;
    color: rgba(255, 240, 217, 0.6);
}
.footer-credit a { color: var(--peach); text-decoration: none; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- blog pages ---------- */
.page-head { background: var(--cream); padding: 4rem 1.5rem 3rem; text-align: center; }
.page-head h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; }
.page-head p { max-width: 52ch; margin: 0.8rem auto 0; }
.article {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}
.article-cover { border-radius: var(--r-card); aspect-ratio: 16/8; object-fit: cover; width: 100%; margin-bottom: 2.2rem; box-shadow: var(--shadow); }
.article h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; margin-bottom: 0.7rem; }
.article-meta { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 2.2rem; }
.article-body { font-size: 1.1rem; }
.article-body p { margin-bottom: 1.3rem; color: var(--ink); }
.article-body h2, .article-body h3 { margin: 2.2rem 0 0.9rem; }
.article-body ul, .article-body ol { margin: 0 0 1.3rem 1.4rem; color: var(--ink); }
.article-body li { margin-bottom: 0.4rem; }
.article-body img { border-radius: var(--r-img); margin: 1.5rem 0; }
.article-body blockquote {
    border-left: 5px solid var(--peach);
    background: var(--cream);
    border-radius: 0 var(--r-img) var(--r-img) 0;
    padding: 1.2rem 1.6rem;
    margin: 1.8rem 0;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--navy);
}
.article-back { display: inline-block; margin-bottom: 2rem; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; text-align: left; }
    .hero-portrait { order: -1; }
    .hero-portrait img { width: min(300px, 70vw); }
    .offer-grid { grid-template-columns: 1fr; }
    .problems { grid-template-columns: 1fr; }
    .problems-head { position: static; }
    .story { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .books-grid { grid-template-columns: 1fr; }
    .talks-grid { grid-template-columns: 1fr; }
    .media-grid { grid-template-columns: 1fr; }
    .post-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .nav-links, .btn-nav { display: none; }
    .nav-burger { display: block; margin-left: auto; }
    .nav.open .nav-links {
        display: flex;
        position: absolute;
        top: 72px; left: 0; right: 0;
        flex-direction: column;
        background: var(--surface);
        padding: 1.5rem;
        gap: 1.1rem;
        border-bottom: 1px solid rgba(51, 61, 109, 0.1);
        box-shadow: var(--shadow);
    }
    .nav.open .nav-burger span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
    .nav.open .nav-burger span:nth-child(2) { opacity: 0; }
    .nav.open .nav-burger span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
    .book { grid-template-columns: 130px 1fr; }
    .steps-row { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .blob, .portrait-ring, .portrait-chip, .marquee-track { animation: none !important; }
    .reveal { opacity: 1; transform: none; transition: none; }
    * { transition-duration: 0.01ms !important; }
}
