/* ============================================================
   Compassionate Leadership Institute - 2026
   One consistent system: editorial, cinematic, warm.
   Design tokens drive radii, shadows, motion and rhythm so
   every component shares the same language.
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* ink & surfaces */
    --ink: #1c1a17;
    --ink-soft: #4d473f;
    --ink-faint: #8b8075;
    --paper: #fffdfa;
    --bone: #f4f1ea;
    --warm: #faf8f4;
    --line: #e5e0d6;
    /* brand */
    --navy-1: #1a1a2e;
    --navy-2: #16213e;
    --red: #a52914;
    --red-deep: #861f0d;
    --gold: #C8964A;
    --gold-light: #E8D5B0;
    --coral: #f28670;
    --dark-grad: linear-gradient(150deg, #1a1a2e 0%, #16213e 100%);
    /* type */
    --serif: 'Crimson Text', Georgia, serif;
    --sans: 'Inter', system-ui, sans-serif;
    --hand: 'Caveat', cursive;
    /* layout */
    --shell: 1240px;
    --pad: clamp(1.4rem, 4vw, 3rem);
    --sec: clamp(5.5rem, 13vh, 9.5rem);
    /* radii */
    --r-sm: 12px;
    --r: 16px;
    --r-lg: 20px;
    /* shadows */
    --sh-sm: 0 10px 26px rgba(28, 26, 23, 0.08);
    --sh-md: 0 18px 44px rgba(28, 26, 23, 0.13);
    --sh-lg: 0 30px 64px rgba(28, 26, 23, 0.18);
    --sh-dark: 0 30px 70px rgba(0, 0, 0, 0.4);
    /* motion */
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --lift: translateY(-4px);
}

html { -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; max-width: 100%; }
body { font-family: var(--sans); font-size: 1.0625rem; line-height: 1.8; color: var(--ink); background: var(--paper); font-weight: 400; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--gold-light); color: var(--ink); }
a { color: inherit; }

/* Global image vividness (matches the original site); logos excluded */
img { filter: saturate(1.15) contrast(1.04) brightness(1.02); }
.client-logo, .nav-brand img { filter: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.1; letter-spacing: -0.02em; }
.display { font-size: clamp(2.3rem, 5vw, 4.2rem); line-height: 1.05; }
.lead { font-size: clamp(1.15rem, 1.6vw, 1.35rem); line-height: 1.75; font-weight: 300; color: var(--ink); }

.eyebrow { display: block; font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-bottom: 1.4rem; }
.eyebrow .n { color: var(--gold); margin-right: 0.8em; }

/* ---------- Layout primitives ---------- */
.shell { max-width: var(--shell); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.ed { padding: var(--sec) 0; }
.ed-bone { background: var(--bone); }
.ed-warm { background: var(--warm); }
.ed-head { max-width: 880px; margin-bottom: clamp(2.5rem, 6vh, 4.5rem); }
.ed-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.ed-head p { margin-top: 1.6rem; color: var(--ink-soft); }
.sub-head { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 1rem; }
.approach-head { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; margin-bottom: clamp(3rem, 7vh, 5rem); max-width: var(--shell); }
.approach-head .ah-left h2 { margin-top: 1rem; }
.approach-head .ah-right .lead { margin-bottom: 1.4rem; }
.approach-head .ah-right p:last-child { color: var(--ink-soft); }
@media (max-width: 820px) { .approach-head { grid-template-columns: 1fr; gap: 1.4rem; } }

/* link treatment shared by article + finding + research bodies */
.linkstyle { color: var(--red); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(165, 41, 20, 0.3); transition: border-color 0.2s ease; }
.linkstyle:hover { border-color: var(--red); }

/* ---------- Skip link & focus ---------- */
.skip-to-content { position: absolute; top: -100%; left: 1rem; z-index: 200; padding: 0.7rem 1.4rem; background: var(--paper); color: var(--ink); font-weight: 600; border-radius: 6px; text-decoration: none; transition: top 0.2s ease; }
.skip-to-content:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ---------- Header / nav ---------- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 90; background: var(--navy-1); transition: background 0.4s ease, box-shadow 0.4s ease; }
.header.scrolled { background: rgba(255, 253, 250, 0.94); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.nav { max-width: 1400px; margin: 0 auto; height: 4.4rem; padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-brand img { width: 36px; height: 36px; }
.nav-brand span { font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.01em; color: #fff; transition: color 0.3s ease; }
.header.scrolled .nav-brand span { color: var(--ink); }

.nav-links { display: flex; gap: clamp(1.2rem, 2.5vw, 2.4rem); }
.nav-links > a { position: relative; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.85); text-decoration: none; padding: 0.4rem 0; transition: color 0.25s ease; }
.nav-links > a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.nav-links > a:hover::after, .nav-links > a.active::after { transform: scaleX(1); }
.nav-links > a:hover { color: #fff; }
.header.scrolled .nav-links > a { color: var(--ink-soft); }
.header.scrolled .nav-links > a:hover, .header.scrolled .nav-links > a.active { color: var(--ink); }

/* nav dropdown groups */
.nav-group { position: relative; display: flex; align-items: center; }
.nav-group > a, .nav-group > button { position: relative; background: none; border: none; cursor: pointer; font-family: var(--sans); display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.85); text-decoration: none; padding: 0.4rem 0; transition: color 0.25s ease; }
.nav-group > a::after, .nav-group > button::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.nav-group:hover > a::after, .nav-group:focus-within > a::after, .nav-group > a.active::after, .nav-group:hover > button::after, .nav-group > button.active::after { transform: scaleX(1); }
.nav-group > a:hover, .nav-group > button:hover, .nav-group:focus-within > a, .nav-group:focus-within > button { color: #fff; }
.header.scrolled .nav-group > a, .header.scrolled .nav-group > button { color: var(--ink-soft); }
.header.scrolled .nav-group > a:hover, .header.scrolled .nav-group > a.active, .header.scrolled .nav-group > button:hover, .header.scrolled .nav-group > button.active { color: var(--ink); }
.caret { font-size: 0.6rem; opacity: 0.7; transform: translateY(-1px); }

.nav-drop { position: absolute; top: calc(100% + 0.9rem); left: 50%; transform: translate(-50%, 8px); min-width: 250px; background: var(--paper); border-radius: var(--r-sm); box-shadow: 0 22px 60px rgba(20, 18, 30, 0.22); border: 1px solid var(--line); padding: 0.6rem; opacity: 0; visibility: hidden; transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s; }
.nav-drop::before { content: ''; position: absolute; top: -0.9rem; left: 0; right: 0; height: 0.9rem; }
.nav-group:hover .nav-drop, .nav-group:focus-within .nav-drop, .nav-group.open .nav-drop { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-drop a { display: block; padding: 0.65rem 0.9rem; border-radius: 8px; font-family: var(--serif); font-size: 1.02rem; letter-spacing: 0; text-transform: none; font-weight: 400; color: var(--ink) !important; text-decoration: none; transition: background 0.2s ease, color 0.2s ease; }
.nav-drop a:hover, .nav-drop a.active { background: var(--bone); color: var(--red) !important; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; width: 44px; height: 44px; gap: 5px; background: none; border: none; cursor: pointer; z-index: 120; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.3s ease; }
.header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--ink); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--ink); }

@media (max-width: 920px) {
    .nav-toggle { display: flex; }
    .nav-links { position: fixed; inset: 0; z-index: 110; background: var(--paper); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; transform: translateY(-102%); transition: transform 0.45s var(--ease); overflow-y: auto; padding: 5rem 1rem; }
    .nav-links.active { transform: none; }
    .nav-links > a { color: var(--ink) !important; font-family: var(--serif); font-size: 1.6rem; text-transform: none; letter-spacing: 0; font-weight: 400; }
    .nav-group { flex-direction: column; align-items: center; gap: 0.8rem; }
    .nav-group > a, .nav-group > button { color: var(--ink) !important; font-family: var(--serif); font-size: 1.6rem; text-transform: none; letter-spacing: 0; font-weight: 400; }
    .nav-drop { position: static; transform: none; opacity: 1; visibility: visible; background: transparent; box-shadow: none; border: none; padding: 0; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; min-width: 0; }
    .nav-drop a { color: var(--ink-faint) !important; font-size: 1.1rem; padding: 0; }
    .caret { display: none; }
}

/* ---------- Buttons ---------- */
.btn, .btn-primary { display: inline-block; padding: 0.95rem 2.4rem; border-radius: 999px; background: var(--red); color: #fff; font-family: var(--sans); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: background 0.25s ease, transform 0.25s ease; box-shadow: 0 10px 26px rgba(165, 41, 20, 0.32); }
.btn:hover, .btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn-ghost { display: inline-block; padding: 0.95rem 2.4rem; border-radius: 999px; background: transparent; color: rgba(255, 255, 255, 0.92); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border: 1px solid rgba(255, 255, 255, 0.45); transition: border-color 0.25s ease, color 0.25s ease; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Dark cinematic sections (shared) ---------- */
.cine { position: relative; overflow: hidden; background: var(--dark-grad); display: flex; }
.hero-bg, .qd-bg { position: absolute; inset: 0; }
.hero-bg img, .qd-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after, .qd-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(170deg, rgba(18, 18, 32, 0.74) 0%, rgba(18, 18, 32, 0.36) 45%, rgba(14, 14, 26, 0.86) 100%); }

/* film grain on dark sections */
.cine::before, .quote-divider::before, .cta-band::before, .footer::before, .tedx-cinema::before, .contact-cine::before, .stats-cinema::before {
    content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- Homepage hero (split panel + mosaic) ---------- */
.cine--hero { display: grid; grid-template-columns: minmax(460px, 48%) 1fr; align-items: stretch; min-height: 100svh; padding-top: 4.4rem; }
.hero-panel { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vh, 5rem) clamp(2.6rem, 5vw, 5rem) clamp(4rem, 10vh, 6rem); background: var(--dark-grad); }
.hero-panel::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 50% at 20% 15%, rgba(200, 150, 74, 0.12), transparent 65%); }
.hero-panel > * { position: relative; z-index: 1; }
.ht-main { display: block; font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4rem); line-height: 1.05; color: #fff; letter-spacing: -0.02em; }
.hero-title-accent { display: block; font-size: clamp(1.3rem, 2.4vw, 2rem); font-family: var(--sans); font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-top: 0.9rem; }
.hero-tagline { font-family: var(--sans); font-size: 0.92rem; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255, 255, 255, 0.82); margin: 1.8rem 0 1.5rem; }
.hero-sub { max-width: 52ch; color: rgba(255, 255, 255, 0.75); font-size: clamp(1rem, 1.4vw, 1.15rem); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.6rem; }
.hero-meta { margin-top: 2.6rem; font-size: 0.8rem; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.6); }
.hero-meta strong { color: var(--gold); font-weight: 600; }

.hero-mosaic { position: relative; display: grid; grid-template-columns: 1fr 1fr 1.6fr; grid-template-rows: 1fr 1fr; gap: 0.5rem; padding: 1.1rem 1.1rem 1.1rem 0.6rem; }
.hero-mosaic picture { display: block; width: 100%; height: 100%; overflow: hidden; border-radius: 8px; }
.hero-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.hero-mosaic:hover img { transform: scale(1.03); }
.hero-mosaic .hm-3 { grid-column: 3; grid-row: 1 / span 2; }
.hm-1 img { object-position: 95% 20%; }
.hm-2 img { object-position: 30% 15%; }
.hm-3 img { object-position: 76% 15%; }
.hm-4 img { object-position: center center; }
.hm-5 img { object-position: center 35%; }

@media (max-width: 920px) {
    .cine--hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-panel { padding-top: 7rem; }
    .hero-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; height: 50svh; }
    .hero-mosaic .hm-3 { grid-column: auto; grid-row: auto; }
    .hero-mosaic .hm-5 { display: none; }
}

/* ---------- Subpage hero ---------- */
.subpage-hero { position: relative; overflow: hidden; background: var(--dark-grad); min-height: 80svh; display: flex; align-items: flex-end; text-align: left; }
.subpage-hero .container { position: relative; z-index: 2; width: 100%; max-width: var(--shell); margin: 0 auto; padding: 9rem var(--pad) clamp(3.5rem, 9vh, 6rem); }
.subpage-hero .kicker { display: block; font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.subpage-hero h1 { font-size: clamp(2.8rem, 6.5vw, 5.6rem); line-height: 1.02; color: #fff; max-width: 18ch; margin: 0 0 1.4rem; }
.subpage-hero .hero-sub { margin: 0; max-width: 58ch; font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: rgba(255, 255, 255, 0.78); line-height: 1.7; }

/* ---------- Service essence: summary + quick contact ---------- */
.svc-essence { background: var(--bone); border-bottom: 1px solid var(--line); }
.svc-essence .container { max-width: 880px; margin: 0 auto; padding: clamp(2.8rem, 7vh, 4.4rem) var(--pad); display: flex; flex-direction: column; align-items: center; text-align: center; }
.svc-essence .ess-kicker { font-family: var(--sans); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red); margin-bottom: 1.1rem; }
.svc-essence .ess-lead { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height: 1.5; color: var(--ink); max-width: 54ch; margin: 0 0 1.9rem; }
.svc-essence .ess-meta { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 0.7rem; margin: 0 0 2.1rem; padding: 0; }
.svc-essence .ess-meta li { font-family: var(--sans); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.03em; color: var(--ink-soft); background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 0.5rem 1.05rem; }
.svc-essence .ess-meta li::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-right: 0.55em; vertical-align: middle; }

/* ---------- Logo strip ---------- */
.logos-band { background: var(--paper); padding: 2.8rem var(--pad); border-bottom: 1px solid var(--line); }
.logos-band p { text-align: center; font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1.8rem; font-weight: 600; }
.trusted-logos { max-width: var(--shell); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.6rem 3.4rem; }
.client-logo { height: 26px; width: auto; opacity: 0.55; filter: grayscale(1); transition: opacity 0.3s ease, filter 0.3s ease; }
.client-logo:hover { opacity: 1; filter: grayscale(0); }

/* ---------- Pathways (what brings you here) ---------- */
.path-index { background: var(--bone); }
.path-index.ed { padding-top: clamp(3.5rem, 8vh, 5.5rem); padding-bottom: clamp(3.5rem, 8vh, 5.5rem); }
.path-title { font-family: var(--hand); font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--red); line-height: 0.95; max-width: 1080px; margin: 0 auto 2rem; }

/* ---------- Evidence: stats band + findings ---------- */
.stats-cinema { position: relative; overflow: hidden; background: var(--dark-grad); margin: clamp(2.5rem, 6vh, 4rem) 0; padding: clamp(3rem, 7vh, 5rem) var(--pad); }
.stats-cinema .stats-grid { position: relative; z-index: 2; max-width: var(--shell); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.5rem; }
.stats-cinema .stat { text-align: left; }
.stats-cinema .num { display: block; font-family: var(--serif); font-size: clamp(3rem, 6vw, 5rem); line-height: 1; color: #fff; }
.stats-cinema .lbl { display: block; margin-top: 0.7rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); max-width: 24ch; line-height: 1.6; }
.finding { display: grid; grid-template-columns: 80px 1fr; gap: 1.6rem; padding: 2.4rem 0; border-top: 1px solid var(--line); }
.finding:last-of-type { border-bottom: 1px solid var(--line); }
.finding .fnum { font-family: var(--serif); font-size: 2rem; color: var(--gold); line-height: 1; }
.finding h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin-bottom: 0.7rem; }
.finding p { color: var(--ink-soft); max-width: 72ch; }
.finding a { color: var(--red); text-decoration: none; font-weight: 500; border-bottom: 1px solid rgba(165, 41, 20, 0.3); transition: border-color 0.2s ease; }
.finding a:hover { border-color: var(--red); }
.research-cta { margin-top: 2.6rem; color: var(--ink-soft); max-width: 70ch; }
.research-cta a { color: var(--red); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(165, 41, 20, 0.3); }
.research-cta a:hover { border-color: var(--red); }

/* ---------- Services: magazine feature rows ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 72vh; }
.feature-img { position: relative; overflow: hidden; }
.feature-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 5s ease; }
.feature-row:hover .feature-img img { transform: scale(1.045); }
.feature-txt { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.6rem, 6vw, 5.5rem); background: var(--paper); }
.feature-row:nth-of-type(even) .feature-img { order: 2; }
.feature-row:nth-of-type(even) .feature-txt { background: var(--warm); }
.feature-txt .fr-num { font-family: var(--serif); font-size: clamp(3.4rem, 6vw, 5.5rem); line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--gold); margin-bottom: 1.2rem; }
.feature-txt h3 { font-size: clamp(1.9rem, 3.4vw, 3rem); margin-bottom: 1.1rem; }
.feature-txt p { color: var(--ink-soft); max-width: 52ch; margin-bottom: 1.2rem; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.8rem; list-style: none; }
.feature-tags li { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); border: 1px solid var(--line); border-radius: 999px; padding: 0.35rem 0.9rem; }
.feature-link { font-size: 0.84rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); text-decoration: none; }
.feature-link:hover { color: var(--red-deep); }

/* ---------- Quote monuments ---------- */
.quote-divider { position: relative; overflow: hidden; background: var(--dark-grad); display: flex; align-items: center; justify-content: center; min-height: 52svh; padding: clamp(6rem, 14vh, 10rem) 0; text-align: center; }
.quote-divider .container { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 0 var(--pad); }
.quote-divider.has-image { min-height: 72svh; }
.quote-divider-text { font-family: var(--hand); font-size: clamp(2rem, 4.4vw, 3.6rem); color: rgba(255, 255, 255, 0.93); line-height: 1.35; font-weight: 500; max-width: 26ch; margin: 0 auto; }
.quote-divider-text::before { content: '\201C'; display: block; font-family: var(--serif); font-size: clamp(4.5rem, 9vw, 7.5rem); color: var(--gold); opacity: 0.4; line-height: 0.4; margin-bottom: 2rem; }
.quote-divider-text cite { display: block; font-family: var(--sans); font-size: 0.78rem; color: var(--gold); margin-top: 2rem; font-style: normal; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; }

/* ---------- Approach: principles trio + influences ---------- */
.principles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1.6rem, 3vw, 2.6rem); margin-top: 3rem; }
.principle-card { background: #fff; border-top: 4px solid var(--gold); border-radius: var(--r); padding: 2.4rem 2rem 2.2rem; box-shadow: var(--sh-md); transition: transform 0.3s var(--ease), box-shadow 0.3s ease; }
.principle-card:hover { transform: var(--lift); box-shadow: var(--sh-lg); }
.principle-card .pn { display: block; font-family: var(--serif); font-size: 2.6rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--gold); margin-bottom: 1rem; }
.principle-card h4 { font-size: clamp(1.45rem, 2vw, 1.8rem); margin-bottom: 0.8rem; }
.principle-card p { color: var(--ink-soft); }
.influences { display: grid; grid-template-columns: minmax(200px, 280px) 1fr; gap: 2.5rem; border-top: 1px solid var(--line); margin-top: clamp(2.5rem, 6vh, 3.5rem); padding-top: 2.4rem; }
.influences h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); color: var(--ink); margin: 0; }
.influences p { color: var(--ink-soft); margin: 0; }
@media (max-width: 760px) { .influences { grid-template-columns: 1fr; gap: 1rem; } }

/* ---------- Insights: TEDx dedicated + knowledge cards ---------- */
.tedx-cinema { position: relative; overflow: hidden; background: var(--dark-grad); padding: var(--sec) 0; }
.tedx-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; position: relative; z-index: 2; }
.tedx-grid h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 3.2rem); margin-bottom: 1.4rem; }
.tedx-grid .eyebrow { color: var(--gold); }
.tedx-grid .eyebrow .n { color: var(--coral); }
.tedx-grid p { color: rgba(255, 255, 255, 0.75); }
.tedx-pull { margin-top: 1.8rem; border-left: 3px solid var(--gold); padding-left: 1.2rem; font-family: var(--serif); font-style: italic; font-size: 1.18rem; line-height: 1.6; color: rgba(255, 255, 255, 0.85); }
.video-container { position: relative; aspect-ratio: 16 / 9; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-dark); cursor: pointer; }
.video-container img.video-thumbnail { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-title-overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.6rem; background: linear-gradient(transparent, rgba(10, 10, 20, 0.85)); color: #fff; }
.video-title-overlay h3 { font-family: var(--sans); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.video-title-overlay p { color: rgba(255, 255, 255, 0.9); font-size: 1rem; margin: 0; }
.play-button { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; transition: transform 0.25s ease; }
.video-container:hover .play-button { transform: scale(1.08); }
#video-iframe { position: absolute; inset: 0; }
#video-iframe iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 920px) { .tedx-grid { grid-template-columns: 1fr; } }

.know-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8rem; }
.know-card { display: block; background: #fff; border-radius: var(--r-lg); overflow: hidden; text-decoration: none; box-shadow: var(--sh-md); transition: transform 0.3s var(--ease), box-shadow 0.3s ease; }
.know-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.know-card .kc-img { overflow: hidden; }
.know-card .kc-img img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 0.6s ease; }
.know-card:hover .kc-img img { transform: scale(1.05); }
.kc-body { padding: 1.7rem 1.8rem 1.9rem; }
.kc-kicker { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 0.6rem; }
.kc-body h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); color: var(--ink); margin-bottom: 0.55rem; }
.kc-body p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.65; margin-bottom: 1rem; }
.kc-go { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }

/* ---------- Testimonials (golden band) ---------- */
.testi-band { position: relative; overflow: hidden; background: linear-gradient(165deg, #f7ecd9 0%, #efe0c4 100%); }
.testi-band::before { content: '\201C'; position: absolute; top: -0.16em; left: 1%; font-family: var(--serif); font-size: clamp(15rem, 28vw, 24rem); line-height: 1; color: rgba(200, 150, 74, 0.16); pointer-events: none; }
.testi-band .shell { position: relative; }
.testi-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.testi-side { position: sticky; top: 6.5rem; }
.testi-hero { font-family: var(--serif); font-style: italic; font-size: clamp(1.7rem, 3.4vw, 2.9rem); line-height: 1.35; color: var(--ink); max-width: 26ch; }
.testi-hero::before { content: '\201C'; color: var(--gold); }
.testi-hero::after { content: '\201D'; color: var(--gold); }
.testi-meta { margin-top: 1.8rem; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--ink-faint); }
.testi-meta strong { color: var(--red); }
.testi-side .testimonial-stars { font-size: 1.15rem; margin-top: 1rem; }
.testi-cards { display: flex; flex-direction: column; gap: 1.4rem; }
.testimonial-card { background: #fff; border-left: 4px solid var(--gold); border-radius: var(--r-sm); padding: 1.9rem 2rem; box-shadow: var(--sh-sm); }
.testimonial-card p { font-family: var(--serif); font-style: italic; font-size: 1.08rem; color: var(--ink-soft); line-height: 1.65; margin-bottom: 1rem; }
.testimonial-card p::before { content: '\201C'; color: var(--gold); font-family: var(--serif); margin-right: 0.05em; }
.testimonial-stars { color: var(--gold); letter-spacing: 0.18em; font-size: 0.85rem; }
@media (max-width: 920px) { .testi-split { grid-template-columns: 1fr; } .testi-side { position: static; } }

/* ---------- About ---------- */
.about-wide { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); margin-bottom: clamp(2rem, 5vh, 3.5rem); }
.about-wide img { width: 100%; aspect-ratio: 21 / 10; object-fit: cover; object-position: 50% 28%; }
.about-text { max-width: 920px; }
.about-text h3 { font-size: clamp(2rem, 3.4vw, 3rem); margin-bottom: 1.2rem; }
.fact-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.4rem 0 2.2rem; }
.fact { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 0.45rem 1.15rem; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); }
.about-lead { font-family: var(--serif); font-size: clamp(1.3rem, 1.9vw, 1.65rem); line-height: 1.6; color: var(--ink); max-width: 60ch; margin-bottom: 2.6rem; }
.about-flow { max-width: 760px; }
.about-block { margin-bottom: 2.2rem; }
.about-block:last-child { margin-bottom: 0; }
.about-sub { font-family: var(--serif); font-size: clamp(1.3rem, 1.8vw, 1.6rem); color: var(--ink); margin: 0 0 0.7rem; display: flex; align-items: center; gap: 0.8rem; }
.about-sub::before { content: ''; width: 1.6rem; height: 2px; background: var(--gold); flex: none; }
.about-block p { color: var(--ink-soft); margin: 0; max-width: 64ch; }
.about-block a { color: var(--red); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(165, 41, 20, 0.3); }
.about-block a:hover { border-color: var(--red); }

/* ---------- Partners (navy block, 4+3 grid, hover) ---------- */
.partners-strip { background: var(--dark-grad); border-radius: var(--r-lg); padding: clamp(2.5rem, 4vw, 4rem); margin-top: clamp(3rem, 7vh, 5rem); }
.partners-strip .sub-head { color: #fff; text-align: center; margin: 0 0 0.6rem; }
.partners-strip .sub-head::after { content: ''; display: block; width: 2.5rem; height: 2px; background: var(--coral); margin: 0.8rem auto 0; }
.partners-strip > p { color: rgba(255, 255, 255, 0.62); text-align: center; max-width: 38rem; margin: 0 auto 2.6rem; }
.partners-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.partner-feature { position: relative; display: block; aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden; text-decoration: none; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); }
.partner-feature .partner-img { position: absolute; inset: 0; }
.partner-feature .partner-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.partner-feature:hover .partner-img img { transform: scale(1.06); }
.partner-feature .partner-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 1.4rem 0.8rem 0.9rem; text-align: center; background: linear-gradient(transparent, rgba(13, 16, 32, 0.86)); transition: opacity 0.3s ease; }
.partner-feature .partner-info h4 { color: #fff; font-family: var(--serif); font-weight: 600; font-size: 1rem; margin: 0; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6); }
.partner-feature .partner-info p { display: none; }
.partner-feature .partner-hover { position: absolute; inset: 0; z-index: 4; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1.2rem; background: linear-gradient(160deg, rgba(18, 26, 48, 0.95), rgba(13, 16, 32, 0.96)); opacity: 0; transition: opacity 0.35s ease; }
.partner-feature:hover .partner-hover { opacity: 1; }
.partner-feature:hover .partner-info { opacity: 0; }
.partner-hover h4 { color: #fff; font-family: var(--serif); font-weight: 600; font-size: clamp(1.1rem, 1.5vw, 1.4rem); line-height: 1.2; margin: 0; }
.partner-hover .ph-line { width: 1.9rem; height: 2px; background: var(--gold); margin: 0.8rem 0; }
.partner-hover p { color: rgba(255, 255, 255, 0.92); font-size: 0.82rem; line-height: 1.5; margin: 0; max-width: 20ch; }
@media (min-width: 760px) {
    .partners-row { grid-template-columns: repeat(4, 1fr); }
}
.about-founder { margin-top: clamp(3.5rem, 8vh, 6rem); }

/* ---------- Contact ---------- */
.contact-cine { position: relative; overflow: hidden; background: var(--dark-grad); padding: var(--sec) 0; display: flex; align-items: center; min-height: 92svh; }
.contact-card { position: relative; z-index: 2; max-width: 980px; margin: 0 auto; background: rgba(255, 253, 250, 0.97); border-top: 4px solid var(--gold); border-radius: var(--r-lg); padding: clamp(2.8rem, 6vw, 4.6rem); box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45); }
.contact-card h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: 1.3rem; }
.contact-card .lead-intro { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 1.6rem; max-width: 62ch; }
.contact-card a { color: var(--red); text-decoration: none; font-weight: 600; }
.contact-card .btn { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2.4rem, 5vw, 4.2rem); margin-top: 1.5rem; }
.contact-aside { border-left: 1px solid var(--line); padding-left: clamp(1.4rem, 3vw, 2.2rem); }
.next-steps { list-style: none; counter-reset: step; margin: 1.6rem 0 2rem; }
.next-steps li { counter-increment: step; position: relative; padding-left: 2.7rem; margin-bottom: 1.1rem; color: var(--ink-soft); line-height: 1.65; font-size: 0.97rem; }
.next-steps li::before { content: counter(step); position: absolute; left: 0; top: 0.1rem; width: 1.8rem; height: 1.8rem; border-radius: 50%; background: var(--dark-grad); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600; font-size: 0.95rem; }
.faq-note { font-size: 0.86rem; color: var(--ink-faint); margin-top: 1.4rem; }
.contact-rows { margin: 0; display: grid; grid-template-columns: 1fr; gap: 0.9rem; font-style: normal; }
.contact-rows div { font-size: 0.95rem; color: var(--ink-soft); }
.contact-rows strong { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.15rem; }
.social-links { display: flex; gap: 0.9rem; margin-top: 1.6rem; }
.social-link { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--ink-soft); transition: all 0.25s ease; }
.social-link:hover { background: var(--navy-1); color: var(--gold); border-color: var(--navy-1); }
.come-line { font-family: var(--hand); font-size: 1.7rem; color: var(--red); margin-top: 1.8rem; }
@media (max-width: 760px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-aside { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 1.6rem; }
}

/* ---------- Footer ---------- */
.footer { position: relative; overflow: hidden; background: var(--dark-grad); padding: clamp(4rem, 9vh, 6.5rem) var(--pad) 2.6rem; text-align: center; }
.footer .container { position: relative; z-index: 2; max-width: var(--shell); margin: 0 auto; }
.footer-mark { font-family: var(--hand); font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--gold); margin-bottom: 2.4rem; }
.footer-cols { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem 5rem; margin-bottom: 2.6rem; text-align: left; }
.fcol { min-width: 180px; }
.fcol h5 { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
.fcol a { display: block; color: rgba(255, 255, 255, 0.68); text-decoration: none; font-size: 0.92rem; padding: 0.22rem 0; transition: color 0.2s ease; }
.fcol a:hover { color: #fff; }
.footer p { color: rgba(255, 255, 255, 0.45); font-size: 0.82rem; margin-bottom: 0.3rem; }

/* ---------- Article kit (subpages) ---------- */
.article { max-width: 860px; margin: 0 auto; padding: var(--sec) var(--pad); }
.article h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); margin: clamp(3rem, 7vh, 4.5rem) 0 1.4rem; }
.article h2:first-child { margin-top: 0; }
.article p { color: var(--ink-soft); margin-bottom: 1.4rem; }
.article .lead { color: var(--ink); margin-bottom: 1.6rem; }
.article a { color: var(--red); font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(165, 41, 20, 0.3); transition: border-color 0.2s ease; }
.article a:hover { border-color: var(--red); }
.article ul, .article ol { margin: 0 0 1.6rem 1.4rem; color: var(--ink-soft); }
.article li { margin-bottom: 0.7rem; }
.article li::marker { color: var(--gold); }
.article .testimonial-card { margin: 2rem 0; }
.definition-card { background: var(--bone); border-left: 4px solid var(--gold); border-radius: 0 var(--r) var(--r) 0; padding: clamp(1.8rem, 4vw, 2.8rem); margin: 2.2rem 0; }
.definition-card p { font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.55; color: var(--ink); margin: 0; }
.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1.2rem; margin: 2.6rem 0; }
.stat-strip .stat { position: relative; overflow: hidden; background: var(--dark-grad); border-radius: var(--r-sm); padding: 1.8rem 1.4rem; text-align: center; }
.stat-strip .num { display: block; font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1.05; color: #fff; }
.stat-strip .lbl { display: block; margin-top: 0.6rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); line-height: 1.6; }
.page-figure { margin: clamp(2.5rem, 6vh, 4rem) 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-lg); }
.page-figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 5s ease; }
.page-figure:hover img { transform: scale(1.035); }
.page-figure.bleed { width: 100vw; margin-left: calc(50% - 50vw); border-radius: 0; box-shadow: none; }
.page-figure.bleed img { aspect-ratio: 21 / 9; }
.faq-item { border-top: 1px solid var(--line); padding: 2.2rem 0; }
.faq-item:last-of-type { border-bottom: 1px solid var(--line); }
.faq-item h2 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin: 0 0 0.9rem; }
.faq-item p:last-child { margin-bottom: 0; }
.cta-band { position: relative; overflow: hidden; background: linear-gradient(155deg, #a52914 0%, #7a1b0b 100%); text-align: center; padding: clamp(6rem, 14vh, 9rem) var(--pad); min-height: 56svh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.6rem); margin-bottom: 1.2rem; max-width: 22ch; }
.cta-band p { color: rgba(255, 255, 255, 0.82); max-width: 56ch; margin: 0 auto 2.2rem; }
.cta-band .btn-primary { background: #fff; color: var(--red); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28); }
.cta-band .btn-primary:hover { background: var(--gold-light); color: var(--red-deep); transform: translateY(-2px); }

/* ---------- Scroll reveal ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: var(--d, 0s); }
.rv.on { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
    .feature-row { grid-template-columns: 1fr; min-height: 0; }
    .feature-img { aspect-ratio: 16 / 10; }
    .feature-row:nth-of-type(even) .feature-img { order: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
    .rv { opacity: 1 !important; transform: none !important; }
}

/* ---------- Full-bleed image behind dark sections (contact) ---------- */
.cine-bg { position: absolute; inset: 0; z-index: 0; }
.cine-bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-cine .cine-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(18, 18, 32, 0.6), rgba(14, 14, 26, 0.72)); }


/* ---------- Evidence note + principles breathing room (approach) ---------- */
.evidence-note { max-width: 62ch; margin: clamp(2.5rem, 6vh, 4rem) auto 0; padding-top: 2.4rem; border-top: 1px solid var(--line); text-align: center; color: var(--ink-soft); font-size: 1.08rem; line-height: 1.7; }
.evidence-note a { color: var(--red); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(165, 41, 20, 0.3); }
.evidence-note a:hover { border-color: var(--red); }
.principles-block { margin-top: clamp(4rem, 10vh, 7rem); text-align: center; }
.principles-block .eyebrow { color: var(--red); }
.principles-block .sub-head { margin: 0.4rem 0 0; }
.principles-grid { text-align: left; }
.influences { text-align: left; }

/* ---------- Vision band (Imagine a world) ---------- */
.vision { position: relative; overflow: hidden; background: var(--navy-1); padding: clamp(7rem, 18vh, 12rem) var(--pad); text-align: center; }
.vision-bg { position: absolute; inset: 0; z-index: 0; }
.vision-bg img { width: 100%; height: 100%; object-fit: cover; }
.vision-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(18, 18, 32, 0.62) 0%, rgba(16, 18, 34, 0.5) 50%, rgba(14, 14, 26, 0.72) 100%); }
.vision-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.vision .eyebrow { color: var(--gold); text-align: center; }
.vision-text { font-family: var(--serif); font-size: clamp(1.55rem, 3vw, 2.5rem); line-height: 1.45; color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
.vision-text .accent { color: var(--gold); }


/* ---------- Quote split-card (Burning Man + Rosenberg, cl.institute style) ---------- */
.quote-split { display: grid; grid-template-columns: 1.1fr 1fr; width: 100%; margin: 0 0 clamp(2.5rem, 6vh, 4.5rem); align-items: stretch; }
.qs-img { overflow: hidden; }
.qs-img img { width: 100%; height: 100%; object-fit: cover; min-height: 460px; }
.qs-text { position: relative; overflow: hidden; background: var(--dark-grad); padding: clamp(3rem, 6vw, 6rem); display: flex; flex-direction: column; justify-content: center; }
.qs-text::before { content: '\201C'; position: absolute; top: 0.1em; left: 0.3em; font-family: var(--serif); font-size: 9rem; line-height: 1; color: var(--gold); opacity: 0.18; }
.qs-text blockquote { position: relative; font-family: var(--hand); font-size: clamp(1.6rem, 2.7vw, 2.5rem); color: #fff; line-height: 1.4; }
.qs-text cite { display: block; margin-top: 1.6rem; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-style: normal; }
@media (max-width: 760px) {
    .quote-split { grid-template-columns: 1fr; }
    .qs-img img { min-height: 280px; }
}
/* Service pages: split quote sits flush, with one uniform slim height across all pages */
.quote-split.flush { margin-bottom: 0; }
.quote-split.flush .qs-text blockquote { font-size: clamp(1.3rem, 1.9vw, 1.9rem); }
@media (min-width: 761px) {
    .quote-split.flush { height: clamp(300px, 40vh, 380px); }
    .quote-split.flush .qs-img img { height: 100%; min-height: 0; }
}

/* ---------- Media + testimonials side by side (service pages) ---------- */
.media-split { display: grid; grid-template-columns: 1.1fr 1fr; width: 100%; align-items: stretch; }
.media-split .ms-body { background: var(--bone); padding: clamp(2.6rem, 5vw, 5rem); display: flex; flex-direction: column; justify-content: center; }
.media-split .ms-body h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 0 0 1.8rem; }
.media-split .ms-body .testimonial-card { margin: 0 0 1.2rem; }
.media-split .ms-body .testimonial-card:last-child { margin-bottom: 0; }
.media-split .ms-img { overflow: hidden; }
.media-split .ms-img img { width: 100%; height: 100%; object-fit: cover; min-height: 460px; }
@media (max-width: 760px) {
    .media-split { grid-template-columns: 1fr; }
    .media-split .ms-img { order: -1; }
    .media-split .ms-img img { min-height: 280px; }
}
/* Inline CTA link (e.g. services intro "get in touch") */
.inline-cta { color: var(--red); font-weight: 700; text-decoration: none; border-bottom: none; }
.inline-cta:hover { color: var(--red-deep); }

/* ============================================================
   SERVICE SIGNATURE IMAGE — SINGLE SOURCE OF TRUTH
   Each service has ONE photo URL, defined once here. It drives
   all three linked spots at once: the page hero, the "Our
   services" card, and the "What brings you here?" tile.
   To change a service's photo, edit ONLY its line below.
   ============================================================ */
:root {
    --svc-leadership: url("/images/25.jpg");
    --svc-psych: url("/images/open-arms-nature.jpg");
    --svc-team: url("/images/Lunch.jpg");
    --svc-communication: url("/images/5.jpg");
    --svc-personal: url("/images/16.webp");
}
.svc-bg.svc-leadership { --svc: var(--svc-leadership); }
.svc-bg.svc-psych { --svc: var(--svc-psych); }
.svc-bg.svc-team { --svc: var(--svc-team); }
.svc-bg.svc-communication { --svc: var(--svc-communication); }
.svc-bg.svc-personal { --svc: var(--svc-personal); }
/* Hero: background fills the dimmed hero (no zoom) */
.hero-bg.svc-bg { background-image: var(--svc); background-size: cover; background-position: center; }
/* Services card: image on a ::before layer so the hover-zoom is preserved */
.feature-img.svc-bg::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background-image: var(--svc); background-size: cover; background-position: center;
    transition: transform 5s ease;
}
.feature-row:hover .feature-img.svc-bg::before { transform: scale(1.045); }

/* ---------- "What brings you here?" — split cards (photo left, navy panel right) ---------- */
.wb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 1080px; margin: 0 auto; }
.wb-card { display: grid; grid-template-columns: 0.82fr 1fr; min-height: 150px; background: #fff; border: 1px solid rgba(28, 26, 23, 0.05); border-radius: var(--r); overflow: hidden; box-shadow: 0 10px 28px rgba(28, 26, 23, 0.08); text-decoration: none; transition: transform 0.35s var(--ease), box-shadow 0.35s ease; }
.wb-card:hover { transform: var(--lift); box-shadow: 0 22px 50px rgba(28, 26, 23, 0.14); }
.wb-ph { background-size: cover; background-position: center; min-height: 150px; }
.wb-ph.svc-bg { background-image: var(--svc); }
.wb-panel { padding: 1.2rem 1.45rem; display: flex; flex-direction: column; justify-content: center; gap: 0.65rem; }
.wb-q { font-family: 'Crimson Text', serif; font-weight: 600; font-size: 1.22rem; line-height: 1.3; color: var(--ink); }
.wb-lbl { font-family: var(--sans); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); display: inline-flex; gap: 0.5rem; align-items: center; }
.wb-lbl .ar { color: var(--gold); transition: transform 0.25s ease; }
.wb-card:hover .wb-lbl .ar { transform: translateX(4px); }
@media (max-width: 860px) { .wb-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .wb-card { grid-template-columns: 1fr; } .wb-ph { min-height: 170px; } }
