﻿/* ════ HERO ════ */
.hero {
    background: linear-gradient(158deg, var(--navy-dark) 0%, var(--navy) 55%, var(--teal) 100%);
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 2.5rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 82% 18%, rgba(169,202,214,0.11) 0%, transparent 52%), radial-gradient(ellipse at 6% 82%, rgba(216,168,79,0.06) 0%, transparent 48%), linear-gradient(180deg, transparent 42%, rgba(7,37,58,0.5) 100%);
}

.hero-compass {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.04;
    pointer-events: none;
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    padding-top: 10rem;
}

.hero-eyebrow {
    font-family: var(--label);
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.9s ease both 0.1s;
}

.hero-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.55;
}

.hero h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(2.4rem, 5.5vw, 5rem);
    color: var(--white);
    line-height: 1.14;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.95s ease both 0.28s;
}

.hero h1 em {
    font-style: normal;
    color: var(--blue);
    font-weight: 400;
}

.hero-byline {
    display: flex;
    align-items: baseline;
    gap: 1.75rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(169,202,214,0.15);
    padding-top: 2rem;
    animation: fadeUp 0.9s ease both 0.5s;
}

.hero-name {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.015em;
}

.hero-title {
    font-family: var(--label);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(169,202,214,0.48);
    padding-top: 0.25rem;
}

/* ════ BIO INTRO ════ */
.bio-intro {
    background: var(--white);
    padding: 8rem 2.5rem;
}

.bio-intro-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1px 1fr;
    gap: 0 5.5rem;
    align-items: start;
}

.bi-rule {
    background: var(--cream-deep);
    align-self: stretch;
}

.bi-left {
    padding-top: 0.25rem;
}

.bi-kicker {
    font-family: var(--label);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--teal);
    display: block;
    margin-bottom: 1.25rem;
}

.bi-name {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.bi-creds {
    list-style: none;
}

.bi-cred {
    font-family: var(--body);
    font-size: 0.87rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.65;
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--cream-deep);
}

.bi-cred:last-child {
    border-bottom: none;
}

.bi-cred::before {
    content: '·';
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.bi-right {
    padding-top: 0.25rem;
}

.bi-right p {
    font-family: var(--body);
    font-weight: 300;
    font-size: 1.05rem;
    color: var(--ink-muted);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.bi-right p:last-child {
    margin-bottom: 0;
}

/* ════ IN HER OWN WORDS ════ */
.own-words {
    background: var(--navy-dark);
    padding: 9rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.own-words::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 88% 12%, rgba(31,111,115,0.18) 0%, transparent 50%), radial-gradient(ellipse at 5% 85%, rgba(216,168,79,0.05) 0%, transparent 45%);
}

.ow-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ow-header {
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
}

.ow-label {
    padding-top: 0.5rem;
}

.ow-label-kicker {
    font-family: var(--label);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--blue);
    opacity: 0.65;
    display: block;
    margin-bottom: 0.85rem;
}

.ow-label h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: var(--white);
    line-height: 1.22;
    letter-spacing: -0.015em;
}

.ow-opening-pull {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    color: rgba(216,236,242,0.78);
    line-height: 1.62;
    border-left: 2px solid var(--gold);
    padding-left: 1.75rem;
}

.ow-essay {
    max-width: 760px;
}

.ow-essay p {
    font-family: var(--body);
    font-weight: 300;
    font-size: 1.02rem;
    color: rgba(189,213,200,0.78);
    line-height: 1.95;
    margin-bottom: 1.5rem;
}

.ow-essay p:last-child {
    margin-bottom: 0;
}

.ow-pull-inline {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    color: var(--cream);
    line-height: 1.58;
    border-left: 2px solid rgba(216,168,79,0.45);
    padding-left: 1.5rem;
    margin: 2.25rem 0;
    display: block;
}

.ow-sig {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(169,202,214,0.12);
}

.ow-sig-rule {
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
}

.ow-sig-text {
    font-family: var(--label);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(169,202,214,0.42);
}

/* ════ SHARED SECTION UTILITIES ════ */
.kicker {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.9rem;
}

.k-teal {
    color: var(--teal);
}

.k-gold {
    color: var(--gold-dark);
}

.k-light {
    color: var(--blue);
    opacity: 0.72;
}

.k-sage {
    color: var(--sage);
}

.h2 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.h2-navy {
    color: var(--navy);
}

.h2-white {
    color: var(--white);
}

.h2-em {
    font-style: italic;
    font-weight: 300;
}

.prose {
    font-family: var(--body);
    font-weight: 300;
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.prose:last-child {
    margin-bottom: 0;
}

.prose strong {
    font-weight: 500;
    color: var(--ink-mid);
}

.prose-light {
    font-family: var(--body);
    font-weight: 300;
    font-size: 1rem;
    color: rgba(189,213,200,0.72);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.prose-light:last-child {
    margin-bottom: 0;
}

/* Two-column bio section layout (reused) */
.bio-two-col {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0 5.5rem;
    align-items: start;
}

.btc-label {
    padding-top: 0.35rem;
}

.btc-num {
    font-family: var(--serif);
    font-size: 5rem;
    font-weight: 300;
    color: var(--cream-deep);
    line-height: 1;
    display: block;
    letter-spacing: -0.04em;
    margin-bottom: 0.25rem;
}

.btc-num-light {
    font-family: var(--serif);
    font-size: 5rem;
    font-weight: 300;
    color: rgba(169,202,214,0.07);
    line-height: 1;
    display: block;
    letter-spacing: -0.04em;
    margin-bottom: 0.25rem;
}

.btc-kicker {
    font-family: var(--label);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.btc-kicker.teal {
    color: var(--teal);
}

.btc-kicker.light {
    color: var(--blue);
    opacity: 0.65;
}

.btc-kicker.sage {
    color: var(--sage);
}

.btc-right {
}

.btc-right .h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin-bottom: 1.5rem;
}

.btc-right .prose {
    margin-bottom: 1.25rem;
}

.btc-right .prose-light {
    margin-bottom: 1.25rem;
}

/* Pull quote (light backgrounds) */
.pull-navy {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.05rem, 1.8vw, 1.22rem);
    color: var(--navy);
    line-height: 1.62;
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    display: block;
}

/* ════ ACADEMIC FORMATION ════ */
.academic {
    background: var(--cream);
    padding: 9rem 2.5rem;
}

/* ════ CLINICAL FOUNDATION ════ */
.clinical {
    background: var(--white);
    padding: 9rem 2.5rem;
    border-top: 1px solid var(--cream-deep);
}

.clinical-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.clinical-intro {
    max-width: 680px;
    margin-bottom: 3.5rem;
}

.clinical-intro .h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin-bottom: 1.25rem;
}

.training-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--cream-deep);
    border: 1.5px solid var(--cream-deep);
    margin-bottom: 3rem;
}

.ta-card {
    background: var(--cream);
    padding: 2.5rem 2.25rem 3rem;
    border-bottom: 2px solid transparent;
    transition: background 0.25s, border-color 0.28s;
}

.ta-card:hover {
    background: var(--white);
    border-bottom-color: var(--teal);
}

.ta-num {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--cream-deep);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}

.ta-kicker {
    font-family: var(--label);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    display: block;
    margin-bottom: 0.5rem;
}

.ta-card h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.ta-card p {
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.8;
}

.clinical-closing {
    max-width: 760px;
    margin: 0 auto 0 0;
}

.clinical-closing .prose {
    margin-bottom: 1.25rem;
}

/* ════ MINDFULNESS ════ */
.mindfulness-bio {
    background: var(--cream-mid);
    padding: 9rem 2.5rem;
    border-top: 1px solid var(--cream-deep);
    border-bottom: 1px solid var(--cream-deep);
}

/* ════ THE WORK SHE BUILT ════ */
.framework-built {
    background: var(--navy);
    padding: 9rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.framework-built::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 90% 10%, rgba(31,111,115,0.2) 0%, transparent 52%), radial-gradient(ellipse at 6% 88%, rgba(216,168,79,0.05) 0%, transparent 48%);
}

.framework-built-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ════ CENTRAL COMMITMENT ════ */
.commitment {
    background: var(--white);
    padding: 9rem 2.5rem;
    border-top: 1px solid var(--cream-deep);
}

/* ════ ACADEMIC LEADERSHIP ════ */
.leadership {
    background: var(--cream);
    padding: 9rem 2.5rem;
    border-top: 1px solid var(--cream-deep);
}

/* ════ A LONGER VIEW ════ */
.longer-view {
    background: var(--navy-dark);
    padding: 9rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.longer-view::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 0%, rgba(216,168,79,0.06) 0%, transparent 55%);
}

.lv-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lv-essay {
    max-width: 800px;
    margin-bottom: 5rem;
}

.lv-essay .prose-light {
    margin-bottom: 1.35rem;
}

.lv-blockquote {
    max-width: 840px;
    margin: 0 auto;
    padding: 4rem 4.5rem;
    border-top: 1px solid rgba(169,202,214,0.1);
    border-bottom: 1px solid rgba(169,202,214,0.1);
    text-align: center;
}

.lv-blockquote blockquote {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    color: var(--cream);
    line-height: 1.62;
    margin-bottom: 1.75rem;
}

.lv-blockquote blockquote::before {
    content: '\201C';
    font-family: var(--serif);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(216,168,79,0.3);
    line-height: 0;
    vertical-align: -1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.lv-cite {
    font-family: var(--label);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(169,202,214,0.38);
    font-style: normal;
}

/* ════ EXPLORE CTA ════ */
.explore-cta {
    background: var(--gold-wash);
    border-top: 1px solid var(--gold-pale);
    border-bottom: 1px solid var(--gold-pale);
    padding: 8rem 2.5rem;
}

.ec-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.ec-header {
    max-width: 560px;
    margin-bottom: 3.5rem;
}

.ec-header .kicker {
    color: var(--gold-dark);
}

.ec-header h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.ec-header h2 em {
    font-style: italic;
    font-weight: 300;
}

.ec-header p {
    font-family: var(--body);
    font-weight: 300;
    font-size: 0.97rem;
    color: var(--ink-muted);
    line-height: 1.82;
    margin-top: 1rem;
}

.ec-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--gold-pale);
    border: 1.5px solid var(--gold-pale);
}

.ec-card {
    background: var(--white);
    padding: 2.5rem 2.25rem 3rem;
    border-bottom: 2px solid transparent;
    transition: background 0.25s, border-color 0.28s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.ec-card:hover {
    background: var(--cream);
    border-bottom-color: var(--navy);
}

.ec-card:hover .ec-arrow {
    gap: 0.85rem;
}

.ec-num {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold-pale);
    line-height: 1;
    display: block;
    margin-bottom: 1.25rem;
    letter-spacing: -0.04em;
}

.ec-card-kicker {
    font-family: var(--label);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    display: block;
    margin-bottom: 0.6rem;
}

.ec-card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
    line-height: 1.22;
}

.ec-card p {
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 2rem;
}

.ec-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--label);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    border-bottom: 1.5px solid var(--cream-deep);
    padding-bottom: 0.15rem;
    transition: gap 0.25s, border-color 0.25s;
    margin-top: auto;
}

.ec-card:hover .ec-arrow {
    border-color: var(--navy);
}

.ec-arrow svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
