/* ===================================
   MSM CampusOS — Editorial v5
   FT × Monocle × Apple Newsroom
   =================================== */

/* ─── TOKENS ─── */
:root {
    --white:       #FFFFFF;
    --off-white:   #F8F6F2;
    --paper:       #FAF9F7;
    --black:       #0A0A0A;
    --ink:         #1A1A1A;
    --red:         #E0000F;
    --red-hover:   #C4000D;
    --red-glow:    rgba(224,0,15,0.18);
    --gray-100:    #F5F4F1;
    --gray-200:    #E8E6E1;
    --gray-300:    #D4D0C8;
    --gray-400:    #A09890;
    --gray-500:    #706860;
    --gray-600:    #4A4440;
    --gray-700:    #2E2A28;
    --font:        'Poppins', 'Georgia', system-ui, serif;
    --font-sans:   'Poppins', system-ui, sans-serif;
    --ease:        cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}
html::-webkit-scrollbar { width: 3px; }
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 2px; }
body {
    font-family: var(--font);
    font-weight: 300;
    line-height: 1.7;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
h1, h2, h3 { font-family: var(--font); line-height: 1.08; letter-spacing: -0.03em; color: var(--ink); }
em { font-style: italic; }

.brand-msm    { font-weight: 700; color: var(--ink); }
.brand-campus { font-weight: 500; color: var(--ink); }
.brand-os     { font-weight: 700; color: var(--red); }
.accent       { color: var(--red); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-photo {
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1.2s var(--ease), transform 1.4s var(--ease);
}
.reveal-photo.is-visible {
    opacity: 1;
    transform: scale(1);
}
/* Stagger children */
.chapter-body p.reveal-up:nth-child(1) { transition-delay: 0s; }
.chapter-body p.reveal-up:nth-child(2) { transition-delay: 0.1s; }
.chapter-body p.reveal-up:nth-child(3) { transition-delay: 0.2s; }
.chapter-body p.reveal-up:nth-child(4) { transition-delay: 0.3s; }
.chapter-body p.reveal-up:nth-child(5) { transition-delay: 0.4s; }
.svc-group.reveal-up:nth-child(1) { transition-delay: 0s; }
.svc-group.reveal-up:nth-child(2) { transition-delay: 0.18s; }
.svc-group.reveal-up:nth-child(3) { transition-delay: 0.36s; }
.proof-item { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ─── PRELOADER ─── */
#preloader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.9s var(--ease), visibility 0.9s;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-brand { font-size: 1.6rem; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.preloader-sub {
    font-size: 0.6rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gray-400); margin-bottom: 2rem;
}
.preloader-bar { width: 160px; height: 1px; background: var(--gray-200); margin: 0 auto; overflow: hidden; }
.preloader-progress {
    width: 0%; height: 100%; background: var(--red);
    animation: preload-fill 1.8s var(--ease) forwards;
}
@keyframes preload-fill { 0%{width:0%} 60%{width:65%} 100%{width:100%} }

/* ─── NAVIGATION ─── */
#nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 9000;
    padding: 1.4rem 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: all 0.5s var(--ease);
}
#nav.scrolled {
    padding: 1rem 0;
    border-bottom-color: var(--gray-200);
    box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}
.nav-inner {
    max-width: 1380px; margin: 0 auto; padding: 0 4rem;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; flex-direction: column; gap: 0; }
.nav-brand-mark { font-size: 1.2rem; letter-spacing: -0.01em; line-height: 1.2; }
.nav-brand-parent {
    font-size: 0.52rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gray-400); line-height: 1;
}
.nav-actions { display: flex; align-items: center; gap: 2rem; }
.nav-link {
    font-size: 0.7rem; font-weight: 400!important; letter-spacing: 0.06em;
    color: var(--gray-500)!important; transition: color 0.3s ease;
}
.nav-link:hover { color: var(--ink); }
.nav-cta {
    font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.65rem 1.5rem;
    border: 1px solid var(--ink); border-radius: 2px; color: var(--ink);
    transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--ink); color: var(--white); }

/* ─── SHARED SCENE ─── */
.scene { position: relative; }

circle[Attributes Style] {
    fill: rgb(0, 255, 0);
}

/* ─── HERO ─── */
.scene-hero {
    height: 100vh;
    min-height: 680px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: var(--gray-700);
}
.hero-photo-wrap {
    position: absolute; inset: 0; z-index: 1;
}
.hero-photo {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(20%) brightness(0.72) contrast(1.05);
}
.hero-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.15) 0%,
        rgba(10,10,10,0.08) 30%,
        rgba(10,10,10,0.5) 75%,
        rgba(10,10,10,0.82) 100%
    );
}
.hero-content {
    position: relative; z-index: 3;
    max-width: 1380px; margin: 0 auto; width: 100%;
    padding: 0 4rem 7rem;
}
.hero-kicker {
    display: flex; align-items: center; gap: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fade-up 0.7s var(--ease) 0.6s forwards;
}
.kicker-rule {
    display: inline-block; width: 32px; height: 1px;
    background: var(--red);
}
.kicker-text {
    font-size: 0.62rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}
.hero-headline {
    font-size: clamp(3.2rem, 7vw, 7rem)!important;
    font-weight: 700!important;
    color: var(--white);
    line-height: 1.0;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    max-width: 700px;
    opacity: 0;
    animation: fade-up 0.9s var(--ease) 0.9s forwards;
}
.hero-headline em {
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.78);
}
.hero-deck {
    font-size: clamp(0.95rem, 1.3vw, 1.12rem);
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fade-up 0.8s var(--ease) 1.2s forwards;
}
.hero-scroll-cue {
    display: flex; align-items: center; gap: 1rem;
    opacity: 0;
    animation: fade-up 0.6s var(--ease) 1.6s forwards;
}
.scroll-line-el {
    display: inline-block; width: 1px; height: 44px;
    background: linear-gradient(to bottom, var(--red), rgba(255,255,255,0));
}
.scroll-text {
    font-size: 14px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    color: #fff;
}
.hero-caption {
    position: absolute; bottom: 2rem; right: 4rem;
    display: flex; align-items: center; gap: 0.8rem;
    z-index: 4;
}
.caption-rule {
    display: inline-block; width: 20px; height: 1px;
    background: rgba(255,255,255,0.35);
}
.hero-caption span {
    font-size: 0.58rem; font-weight: 300; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.38);
    font-style: italic;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── CHAPTER SECTIONS ─── */
.scene-chapter {
    background: var(--white);
    padding: 8rem 0;
}
.scene-chapter-alt { background: var(--paper); }

.chapter-layout {
    max-width: 1380px; margin: 0 auto; padding: 0 4rem;
    display: grid; gap: 6rem; align-items: start;
}
.chapter-layout-left  { grid-template-columns: 1fr 1fr; }
.chapter-layout-right { grid-template-columns: 1fr 1fr; }
.chapter-layout-right .chapter-text-col { order: 1; }
.chapter-layout-right .chapter-photo-col { order: 2; }
.chapter-layout-centered {
    max-width: 860px; margin: 0 auto; padding: 0 4rem;
    display: block; text-align: center;
}

.chapter-label {
    font-size: 12px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--red); margin-bottom: 1rem;
    display: block;
}
.chapter-label-light { color: rgba(255,255,255,0.55); }

.chapter-heading {
    font-size: clamp(2.2rem, 4.5vw, 4rem)!important;
    font-weight: 700!important;
    margin-bottom: 2.5rem;
    line-height: 1.05;
}
.chapter-heading-large {
    font-size: clamp(2.8rem, 6vw, 5.5rem)!important;
    margin-bottom: 3rem;
}
.chapter-body { max-width: 560px; }
.chapter-body.chapter-body-centered { max-width: 620px; margin: 0 auto 3.5rem; text-align: left; }
.chapter-body p {
    font-size: 1.05rem; font-weight: 300; color: var(--gray-600);
    line-height: 1.9; margin-bottom: 1.25rem;
}
.chapter-body p:last-child { margin-bottom: 0; }

/* Pull quote */
.chapter-pull-quote {
    margin: 3.5rem auto 0;
    max-width: 560px;
    border-left: 2px solid var(--red);
    padding-left: 2rem;
    text-align: left;
}
.chapter-pull-quote blockquote {
    font-size: 1.2rem; font-weight: 300; font-style: italic;
    color: var(--gray-600); line-height: 1.65; margin-bottom: 0.75rem;
}
.chapter-pull-quote cite {
    font-size: 0.7rem; font-weight: 400; letter-spacing: 0.08em;
    color: var(--gray-400); font-style: normal; display: block;
}

/* Chapter stat */
.chapter-stat {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--gray-200);
}
.stat-big {
    display: block; font-size: clamp(3.5rem, 7vw, 5.5rem); font-weight: 800;
    color: var(--red); letter-spacing: -0.05em; line-height: 1; margin-bottom: 0.75rem;
}
.stat-caption {
    font-size: 0.92rem; font-weight: 300; color: var(--gray-500); line-height: 1.75;
    display: block; max-width: 440px;
}

/* ─── CHAPTER PHOTOS ─── */
.chapter-photo-col { position: relative; }
.chapter-figure { margin: 0; position: relative; }
.chapter-photo {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    filter: grayscale(12%) brightness(0.96) contrast(1.04);
}
.chapter-photo-col-tall .chapter-photo { aspect-ratio: 3/4; }
.chapter-figcaption {
    display: block; margin-top: 0.75rem;
    font-size: 0.62rem; font-weight: 300; letter-spacing: 0.08em; font-style: italic;
    color: var(--gray-400);
}

/* Full-width photo */
.fullwidth-photo-wrap {
    position: relative; overflow: hidden;
    height: 60vh; min-height: 400px; max-height: 640px;
    margin-bottom: 7rem;
}
.fullwidth-photo {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(15%) brightness(0.88) contrast(1.06);
}
.fullwidth-photo-caption {
    position: absolute; bottom: 1.5rem; right: 2.5rem;
    font-size: 0.6rem; font-weight: 300; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55); font-style: italic;
}

/* ─── DATA PANEL ─── */
.data-panel {
    margin-top: 3rem;
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
}
.data-panel-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 0.9rem 1.4rem;
    border-bottom: 1px solid var(--gray-100);
}
.data-panel-row:last-of-type { border-bottom: none; }
.data-label {
    font-size: 0.82rem; font-weight: 300; color: var(--gray-500);
    flex: 1; padding-right: 1.5rem;
}
.data-value {
    font-size: 1rem; font-weight: 600; color: var(--ink); white-space: nowrap;
}
.data-panel-note {
    padding: 0.7rem 1.4rem;
    font-size: 0.58rem; font-weight: 300; font-style: italic;
    color: var(--gray-400); border-top: 1px solid var(--gray-100);
    background: var(--gray-100);
}

/* ─── INTERSTITIAL ─── */
.scene-interstitial {
    background: var(--ink);
    padding: 9rem 0;
}
.interstitial-inner {
    max-width: 900px; margin: 0 auto; padding: 0 4rem;
    text-align: center;
}
.interstitial-number {
    font-size: clamp(6rem, 16vw, 14rem); font-weight: 800;
    color: var(--red); letter-spacing: -0.06em; line-height: 1;
    margin-bottom: 1.5rem;
}
.interstitial-statement {
    font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 300;
    color: rgba(255,255,255,0.75); line-height: 1.7;
    margin-bottom: 1.5rem; max-width: 640px; margin-left: auto; margin-right: auto;
}
.interstitial-source {
    font-size: 0.65rem; font-weight: 300; letter-spacing: 0.12em;
    color: rgba(255,255,255,0.3); text-transform: uppercase;
}

/* ─── SERVICES EDITORIAL ─── */
.scene-services-editorial {
    background: var(--white);
    padding: 8rem 0;
}
.services-editorial-inner {
    max-width: 1380px; margin: 0 auto; padding: 0 4rem;
}
.services-editorial-deck {
    font-size: 1.05rem; font-weight: 300; color: var(--gray-500);
    line-height: 1.9; max-width: 680px; margin-bottom: 5rem;
}
.services-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-200);
    border: 1px solid var(--gray-200);
}
.svc-group {
    background: var(--white);
    display: flex; flex-direction: column;
}
.svc-group-photo {
    aspect-ratio: 16/9; overflow: hidden;
}
.svc-group-photo img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(30%) brightness(0.92);
    transition: filter 0.5s ease, transform 0.6s var(--ease);
}
.svc-group:hover .svc-group-photo img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.03);
}
.svc-group-content { padding: 2rem; flex: 1; }
.svc-group-label {
    font-size: 0.58rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--red); margin-bottom: 1.25rem; display: block;
}
.svc-list { display: flex; flex-direction: column; gap: 0; }
.svc-item {
    display: grid; grid-template-columns: 28px 1fr;
    gap: 0.75rem; padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}
.svc-item:last-child { border-bottom: none; }
.svc-num {
    font-size: 12px; font-weight: 700; color: var(--gray-300);
    letter-spacing: 0.08em; padding-top: 0.15rem;
    display: block;
}
.svc-detail { display: flex; flex-direction: column; gap: 0.25rem; }
.svc-detail strong {
    font-size: 0.88rem; font-weight: 600; color: var(--ink);
    display: block;
}
.svc-detail span {
    font-size: 0.78rem; font-weight: 300; color: var(--gray-500);
    line-height: 1.65; display: block;
}

/* ─── OUTCOMES ─── */
.outcomes-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1px; background: var(--gray-200);
    border: 1px solid var(--gray-200); margin-top: 4rem;
}
.outcome-item {
    background: var(--white); padding: 2.5rem 2rem;
}
.outcome-metric {
    display: flex; align-items: flex-end; gap: 1.25rem;
    margin-bottom: 0.75rem;
}
.outcome-spark { width: 80px; height: 28px; flex-shrink: 0; }
.outcome-value {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--ink);
    letter-spacing: -0.04em; line-height: 1;
}
.outcome-label {
    font-size: 0.82rem; font-weight: 300; color: var(--gray-500);
    line-height: 1.65;
}

/* ─── PROOF GRID ─── */
.proof-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1px; background: var(--gray-200);
    border: 1px solid var(--gray-200); margin-top: 3rem;
}
.proof-item {
    background: var(--paper); padding: 1.5rem;
    display: flex; flex-direction: column; gap: 0.3rem;
}
.proof-value {
    font-size: 1.8rem; font-weight: 700; color: var(--ink);
    letter-spacing: -0.04em; line-height: 1; display: block;
}
.proof-label {
    font-size: 0.68rem; font-weight: 300; color: var(--gray-400);
    letter-spacing: 0.05em; text-transform: uppercase; display: block;
}

/* ─── FINAL SCENE ─── */
.scene-final {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: var(--gray-700);
}
.final-photo-wrap { position: absolute; inset: 0; z-index: 1; }
.final-photo {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(25%) brightness(0.55) contrast(1.05);
}
.final-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.65) 100%);
}
.final-content {
    position: relative; z-index: 2;
    max-width: 800px; padding: 4rem 2rem;
    text-align: center;
}
.final-headline {
    font-size: clamp(2.4rem, 5.5vw, 5rem); font-weight: 700;
    color: var(--white); line-height: 1.1; letter-spacing: -0.04em;
    margin-bottom: 2rem;
}
.final-headline em { font-weight: 300; font-style: italic; color: rgba(255,255,255,0.7); }
.final-sub {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem); font-weight: 300;
    color: rgba(255,255,255,0.6); line-height: 1.8;
    max-width: 520px; margin: 0 auto 3rem;
}
.final-cta-group {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.final-unify {
    font-size: 0.6rem; font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.28);
}

/* ─── SHARED CTAs ─── */
.cta-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 1rem 2.4rem;
    background: var(--red); color: var(--white);
    border: 1px solid var(--red); border-radius: 2px;
    transition: all 0.3s var(--ease); cursor: pointer;
}
.cta-primary:hover { background: var(--red-hover); border-color: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 28px var(--red-glow); }
.cta-ghost {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 1rem 2.4rem;
    color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.3); border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.cta-ghost:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

/* ─── BOOKING MODAL ─── */
.modal-overlay {
    position: fixed; inset: 0; z-index: 99000;
    background: rgba(10,10,10,0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-panel {
    background: var(--white); border-radius: 3px;
    width: 100%; max-width: 580px; max-height: 90vh; overflow-y: auto;
    position: relative;
    transform: translateY(24px) scale(0.98);
    transition: transform 0.5s var(--ease);
    box-shadow: 0 40px 100px rgba(0,0,0,0.22);
}
.modal-overlay.open .modal-panel { transform: translateY(0) scale(1); }
.modal-close {
    position: absolute; top: 1.25rem; right: 1.25rem;
    width: 2rem; height: 2rem; border-radius: 50%;
    background: var(--gray-100); color: var(--gray-500);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.25s ease; z-index: 1;
}
.modal-close:hover { background: var(--gray-200); color: var(--ink); transform: rotate(90deg); }
.modal-inner { padding: 3rem 3rem 2.5rem; }
.modal-eyebrow {
    font-size: 0.58rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--red); display: block; margin-bottom: 1rem;
}
.modal-title {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; color: var(--ink);
    margin-bottom: 0.75rem; line-height: 1.3;
}
.modal-sub {
    font-size: 0.9rem; font-weight: 300; color: var(--gray-500);
    line-height: 1.8; margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200); padding-bottom: 2rem;
}
.calendly-placeholder {
    background: var(--gray-100); border: 1px dashed var(--gray-300);
    border-radius: 3px; padding: 3rem 2rem; text-align: center; margin-bottom: 2rem;
}
.calendly-icon { color: var(--red); margin-bottom: 1.25rem; display: flex; justify-content: center; opacity: 0.6; }
.calendly-message {
    font-size: 0.82rem; font-weight: 300; color: var(--gray-500);
    line-height: 1.7; margin-bottom: 1.5rem; max-width: 320px; margin-left: auto; margin-right: auto;
}
.calendly-btn {
    display: inline-block; font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.8rem 2rem; background: var(--red); color: var(--white);
    border-radius: 2px; transition: all 0.3s var(--ease);
}
.calendly-btn:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 6px 20px var(--red-glow); }
.modal-footer { border-top: 1px solid var(--gray-200); padding-top: 1rem; }
.modal-note { font-size: 0.7rem; font-weight: 300; color: var(--gray-400); text-align: center; }

/* ─── FOOTER ─── */
#footer {
    padding: 3rem 4rem;
    background: var(--paper);
    border-top: 1px solid var(--gray-200);
}
.footer-inner {
    max-width: 1380px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem; align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-brand-mark { font-size: 1.1rem; letter-spacing: -0.01em; display: block; }
.footer-tagline { font-size: 0.6rem; font-weight: 300; color: var(--gray-400); letter-spacing: 0.06em; }
.footer-note {
    font-size: 0.72rem; font-weight: 300; color: var(--gray-400);
    line-height: 1.7; font-style: italic;
}
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.footer-booking {
    font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em;
    color: var(--red); transition: color 0.3s ease; text-transform: uppercase;
}
.footer-booking:hover { color: var(--red-hover); }
.footer-copy { font-size: 0.68rem; font-weight: 300; color: var(--gray-400); }

/* ─── CHAPTER III — two-column: text left, photo right, flush with section ─── */
.scene-ch3 {
    padding: 0;
    overflow: hidden;
}
.ch3-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    max-width: 100%;
}
.ch3-text {
    padding: 8rem 5rem 8rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
}
.ch3-text .chapter-body {
    max-width: 480px;
}
.ch3-photo-wrap {
    position: relative;
    overflow: hidden;
}
.ch3-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%) brightness(0.88) contrast(1.06);
}
.ch3-caption {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    font-style: italic;
}

/* ─── CHAPTER VI — stacked: header → photo → data ─── */
.ch6-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 8rem 4rem;
}
.ch6-header {
    text-align: center;
    margin-bottom: 4rem;
}
.ch6-header .chapter-body {
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
}
.ch6-photo-wrap {
    position: relative;
    overflow: hidden;
    height: 52vh;
    min-height: 340px;
    max-height: 560px;
    margin-bottom: 5rem;
    border-radius: 2px;
}
.ch6-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(12%) brightness(0.82) contrast(1.06);
}
.ch6-photo-caption {
    position: absolute;
    bottom: 1.25rem;
    right: 1.75rem;
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    font-style: italic;
}
.ch6-outcomes {
    /* centres the outcomes grid within the chapter column */
}

/* ─── BOOK A SESSION — red in nav + footer ─── */
.nav-cta {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.65rem 1.5rem;
    background: var(--red);
    color: var(--white);
    border: 1px solid var(--red);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.nav-cta:hover {
    background: var(--red-hover);
    border-color: var(--red-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--red-glow);
}
.footer-booking {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--red);
    transition: color 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
}
.footer-booking:hover { color: var(--red-hover); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .services-editorial-grid { grid-template-columns: 1fr; }
    .svc-group-photo { aspect-ratio: 21/9; }
}
@media (max-width: 1024px) {
    .nav-inner { padding: 0 2.5rem; }
    .chapter-layout { padding: 0 2.5rem; gap: 4rem; }
    .services-editorial-inner { padding: 0 2.5rem; }
    .interstitial-inner { padding: 0 2.5rem; }
    .footer-inner { padding: 0; grid-template-columns: 1fr 1fr; }
    .footer-note { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .nav-inner { padding: 0 1.5rem; }
    .nav-link { display: none; }
    .nav-cta { font-size: 0.6rem; padding: 0.55rem 1.1rem; }
    .hero-content { padding: 0 1.5rem 5rem; }
    .hero-caption { right: 1.5rem; }
    .chapter-layout-left,
    .chapter-layout-right { grid-template-columns: 1fr; gap: 3rem; }
    .chapter-layout-right .chapter-text-col { order: 2; }
    .chapter-layout-right .chapter-photo-col { order: 1; }
    .chapter-layout { padding: 0 1.5rem; }
    .chapter-layout-centered { padding: 0 1.5rem; }
    .scene-chapter { padding: 5rem 0; }
    .services-editorial-inner { padding: 0 1.5rem; }
    .interstitial-inner { padding: 0 1.5rem; }
    .outcomes-grid { grid-template-columns: 1fr; }
    .footer-inner { display: flex; flex-direction: column; gap: 2rem; }
    .footer-right { align-items: flex-start; }
    #footer { padding: 2rem 1.5rem; }
    .modal-inner { padding: 2rem 1.5rem; }
    .final-cta-group { flex-direction: column; align-items: center; }
    .proof-grid { grid-template-columns: repeat(2,1fr); }
    /* Chapter III mobile */
    .ch3-layout { grid-template-columns: 1fr; min-height: auto; }
    .ch3-text { padding: 5rem 1.5rem 3rem; }
    .ch3-photo-wrap { height: 50vw; min-height: 260px; }
    /* Chapter VI mobile */
    .ch6-layout { padding: 5rem 1.5rem; }
    .ch6-photo-wrap { height: 44vw; min-height: 220px; margin-bottom: 3rem; }
}
@media (max-width: 480px) {
    .hero-headline { font-size: clamp(2.6rem, 11vw, 4rem); }
    .chapter-heading { font-size: clamp(2rem, 8vw, 3rem); }
    .chapter-heading-large { font-size: clamp(2.2rem, 9vw, 3.5rem); }
    .interstitial-number { font-size: clamp(5rem, 22vw, 8rem); }
    .services-editorial-grid { grid-template-columns: 1fr; }
}
