:root {
    --dr-ink: #07111f;
    --dr-ink-2: #0b1a2d;
    --dr-navy: #102b55;
    --dr-blue: #1d55a5;
    --dr-blue-bright: #3978d0;
    --dr-cream: #f4f0e7;
    --dr-paper: #fbfaf7;
    --dr-gold: #d7ad61;
    --dr-gold-light: #f0d49a;
    --dr-line: rgba(14, 39, 75, 0.14);
    --dr-white-line: rgba(255, 255, 255, 0.14);
    --dr-text-muted: #5f6875;
    --dr-serif: "Playfair Display", Georgia, serif;
    --dr-sans: "DM Sans", Arial, sans-serif;
    --dr-shell: 1240px;
    --dr-ease: cubic-bezier(.2, .75, .25, 1);
    --dr-shadow: 0 28px 70px rgba(3, 15, 31, 0.16);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    margin: 0;
    color: var(--dr-ink);
    background: var(--dr-paper);
    font-family: var(--dr-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.dr-menu-open {
    overflow: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

.dr-home {
    overflow: hidden;
}

.dr-shell {
    width: min(100% - 40px, var(--dr-shell));
    margin-inline: auto;
}

.dr-section {
    padding: 92px 0;
}

.dr-skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--dr-ink);
    background: var(--dr-gold-light);
    border-radius: 4px;
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.dr-skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--dr-gold);
    outline-offset: 4px;
}

.dr-kicker,
.dr-eyebrow {
    margin: 0 0 18px;
    color: var(--dr-blue);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    line-height: 1.3;
    text-transform: uppercase;
}

.dr-heading {
    max-width: 820px;
    margin: 0;
    font-family: var(--dr-serif);
    font-size: clamp(2.35rem, 8vw, 4.6rem);
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: .98;
}

.dr-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity .8s var(--dr-ease),
        transform .8s var(--dr-ease);
}

.dr-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.dr-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dr-actions--center {
    align-items: stretch;
}

.dr-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color .3s ease,
        background .3s ease,
        border-color .3s ease,
        transform .3s var(--dr-ease),
        box-shadow .3s ease;
}

.dr-button:hover {
    transform: translateY(-3px);
}

.dr-button--gold {
    color: var(--dr-ink);
    background: linear-gradient(115deg, var(--dr-gold-light), var(--dr-gold));
    box-shadow: 0 12px 32px rgba(215, 173, 97, .14);
}

.dr-button--gold:hover {
    box-shadow: 0 16px 38px rgba(215, 173, 97, .26);
}

.dr-button--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .03);
}

.dr-button--ghost:hover {
    border-color: var(--dr-gold);
    background: rgba(255, 255, 255, .07);
}

.dr-button--navy {
    color: #fff;
    background: var(--dr-ink);
}

.dr-button--navy:hover {
    background: var(--dr-navy);
    box-shadow: 0 14px 32px rgba(7, 17, 31, .18);
}

.dr-text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--dr-gold);
    color: var(--dr-ink);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
}

/* Header */
.dr-site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    color: #fff;
    transition:
        background .35s ease,
        box-shadow .35s ease,
        backdrop-filter .35s ease;
}

.dr-site-header.is-scrolled,
body.admin-bar .dr-site-header.is-scrolled {
    background: rgba(5, 15, 29, .94);
    box-shadow: 0 1px rgba(255, 255, 255, .1);
    backdrop-filter: blur(18px);
}

.dr-site-header__inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
}

.dr-brand {
    position: relative;
    z-index: 1002;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: inherit;
    text-decoration: none;
}

.dr-brand__mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(215, 173, 97, .72);
    color: var(--dr-gold-light);
    font-family: var(--dr-serif);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -.04em;
}

.dr-brand__name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.dr-brand__name strong {
    font-family: var(--dr-serif);
    font-size: .96rem;
    font-weight: 600;
    letter-spacing: -.01em;
}

.dr-brand__name small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .62);
    font-size: .48rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.dr-menu-toggle {
    position: relative;
    z-index: 1002;
    display: flex;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 8px;
    color: #fff;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.dr-menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.dr-menu-toggle__lines {
    display: grid;
    width: 28px;
    gap: 7px;
}

.dr-menu-toggle__lines i {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform .3s ease;
}

.dr-menu-toggle__lines i:last-child {
    width: 18px;
    justify-self: end;
}

.dr-menu-toggle[aria-expanded="true"] .dr-menu-toggle__lines i:first-child {
    transform: translateY(4px) rotate(45deg);
}

.dr-menu-toggle[aria-expanded="true"] .dr-menu-toggle__lines i:last-child {
    width: 28px;
    transform: translateY(-4px) rotate(-45deg);
}

.dr-primary-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 100px 24px 40px;
    background:
        radial-gradient(circle at 78% 25%, rgba(51, 103, 181, .3), transparent 35%),
        var(--dr-ink);
    opacity: 0;
    transform: translateY(-18px);
    transition:
        opacity .3s ease,
        transform .3s var(--dr-ease),
        visibility .3s ease;
}

.dr-menu-open .dr-primary-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dr-primary-nav > a {
    padding: 8px 12px;
    color: #fff;
    font-family: var(--dr-serif);
    font-size: clamp(1.8rem, 9vw, 3rem);
    text-decoration: none;
}

.dr-primary-nav__cta {
    margin-top: 18px;
    border-bottom: 1px solid var(--dr-gold);
    color: var(--dr-gold-light) !important;
}

/* Hero */
.dr-hero {
    position: relative;
    min-height: 860px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(125deg, rgba(4, 13, 26, .98) 0%, rgba(7, 20, 39, .94) 52%, rgba(16, 43, 85, .88) 100%),
        var(--dr-ink);
}

.dr-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 88%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 88%);
}

.dr-hero::after {
    position: absolute;
    width: 420px;
    height: 420px;
    right: -220px;
    top: 140px;
    border: 1px solid rgba(215, 173, 97, .2);
    border-radius: 50%;
    content: "";
}

.dr-hero__rings {
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: 90px;
    opacity: .58;
}

.dr-hero__rings span {
    position: absolute;
    inset: calc(var(--ring, 0) * 38px);
    border: 1px solid rgba(215, 173, 97, .22);
    border-radius: 50%;
    animation: dr-breathe 7s ease-in-out infinite;
}

.dr-hero__rings span:nth-child(2) {
    --ring: 1;
    animation-delay: -1.2s;
}

.dr-hero__rings span:nth-child(3) {
    --ring: 2;
    animation-delay: -2.4s;
}

.dr-hero__rings span:nth-child(4) {
    --ring: 3;
    animation-delay: -3.6s;
}

.dr-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 860px;
    align-content: center;
    gap: 48px;
    padding-top: 120px;
    padding-bottom: 110px;
}

.dr-hero__copy {
    position: relative;
    z-index: 2;
}

.dr-hero .dr-eyebrow {
    color: var(--dr-gold-light);
}

.dr-display {
    max-width: 760px;
    margin: 0;
    font-family: var(--dr-serif);
    font-size: clamp(3.4rem, 14.8vw, 7rem);
    font-weight: 600;
    letter-spacing: -.058em;
    line-height: .85;
}

.dr-display__accent {
    display: block;
    color: var(--dr-gold-light);
    font-style: italic;
}

.dr-hero__lede {
    max-width: 610px;
    margin: 28px 0 32px;
    color: rgba(255, 255, 255, .72);
    font-size: 1.06rem;
    line-height: 1.72;
}

.dr-hero__signature {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .52);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.dr-hero__signature i {
    width: 16px;
    height: 1px;
    background: var(--dr-gold);
}

.dr-portrait-placeholder {
    position: relative;
    width: min(100%, 460px);
    min-height: 480px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    background:
        radial-gradient(circle at 52% 23%, rgba(240, 212, 154, .24), transparent 20%),
        linear-gradient(135deg, rgba(42, 82, 145, .65), rgba(5, 15, 29, .94) 68%);
    box-shadow: var(--dr-shadow);
}

.dr-portrait-placeholder > img {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 82% center;
}

.dr-portrait-placeholder::before,
.dr-portrait-placeholder::after {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(215, 173, 97, .3);
    border-radius: 50%;
    content: "";
}

.dr-portrait-placeholder::before {
    width: 300px;
    height: 300px;
    right: -110px;
    top: -78px;
}

.dr-portrait-placeholder::after {
    width: 220px;
    height: 220px;
    left: -120px;
    bottom: -70px;
}

.dr-portrait-placeholder__light {
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
        linear-gradient(108deg, transparent 30%, rgba(255,255,255,.08) 31%, transparent 55%),
        linear-gradient(to top, rgba(2, 10, 20, .88), transparent 56%);
}

.dr-portrait-placeholder__monogram {
    position: absolute;
    top: 48%;
    left: 50%;
    color: rgba(255, 255, 255, .08);
    font-family: var(--dr-serif);
    font-size: 9rem;
    font-weight: 600;
    transform: translate(-50%, -50%);
}

.dr-portrait-placeholder figcaption {
    position: absolute;
    z-index: 3;
    right: 22px;
    bottom: 22px;
    left: 22px;
    padding: 18px;
    color: rgba(255, 255, 255, .78);
    border-left: 2px solid var(--dr-gold);
    background: rgba(2, 10, 20, .72);
    backdrop-filter: blur(12px);
    font-size: .72rem;
    line-height: 1.55;
}

.dr-portrait-placeholder figcaption span,
.dr-speaking__placeholder span,
.dr-about__placeholder figcaption span,
.dr-beyond-card__placeholder span {
    display: block;
    margin-bottom: 6px;
    color: var(--dr-gold-light);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.dr-hero__footer {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 26px;
    left: 0;
    display: none;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, .46);
    font-size: .57rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.dr-hero__scroll-line {
    width: 60px;
    height: 1px;
    background: var(--dr-gold);
}

/* Intro */
.dr-intro {
    position: relative;
    background: var(--dr-paper);
}

.dr-intro__index {
    margin-bottom: 54px;
    padding-bottom: 18px;
    color: var(--dr-text-muted);
    border-bottom: 1px solid var(--dr-line);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.dr-intro__grid {
    display: grid;
    gap: 38px;
}

.dr-intro__body {
    max-width: 600px;
}

.dr-intro__body p {
    margin: 0 0 20px;
    color: var(--dr-text-muted);
    font-size: 1.02rem;
    line-height: 1.78;
}

/* Shared heading */
.dr-section-head {
    display: grid;
    gap: 28px;
    margin-bottom: 52px;
}

.dr-section-head > p {
    max-width: 480px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 1rem;
    line-height: 1.7;
}

.dr-section-head--light > p {
    color: var(--dr-text-muted);
}

/* Framework */
.dr-framework {
    position: relative;
    color: #fff;
    background:
        radial-gradient(circle at 12% 12%, rgba(32, 84, 164, .25), transparent 32%),
        var(--dr-ink);
}

.dr-framework::after {
    position: absolute;
    right: -180px;
    bottom: -180px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(215, 173, 97, .16);
    border-radius: 50%;
    content: "";
}

.dr-framework .dr-kicker {
    color: var(--dr-gold-light);
}

.dr-framework__rail {
    display: grid;
    gap: 14px;
}

.dr-framework-card {
    position: relative;
    min-height: 260px;
    padding: 30px 26px;
    overflow: hidden;
    border: 1px solid var(--dr-white-line);
    background: rgba(255, 255, 255, .035);
    transition:
        background .35s ease,
        border-color .35s ease,
        transform .35s var(--dr-ease);
}

.dr-framework-card:hover {
    border-color: rgba(215, 173, 97, .5);
    background: rgba(255, 255, 255, .065);
    transform: translateY(-5px);
}

.dr-framework-card--echo {
    color: var(--dr-ink);
    border-color: var(--dr-gold);
    background: linear-gradient(145deg, var(--dr-gold-light), var(--dr-gold));
}

.dr-framework-card--echo:hover {
    background: linear-gradient(145deg, #f6dfad, #d5a553);
}

.dr-framework-card__number {
    color: rgba(255, 255, 255, .4);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .14em;
}

.dr-framework-card--echo .dr-framework-card__number {
    color: rgba(7, 17, 31, .5);
}

.dr-framework-card__icon {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    margin: 28px 0 34px;
    border: 1px solid rgba(215, 173, 97, .5);
    border-radius: 50%;
    color: var(--dr-gold-light);
    font-family: var(--dr-serif);
    font-size: 1.45rem;
    font-style: italic;
}

.dr-framework-card--echo .dr-framework-card__icon {
    color: var(--dr-ink);
    border-color: rgba(7, 17, 31, .35);
}

.dr-framework-card h3 {
    margin: 0 0 8px;
    font-family: var(--dr-serif);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
}

.dr-framework-card p {
    max-width: 260px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: .88rem;
    line-height: 1.65;
}

.dr-framework-card--echo p {
    color: rgba(7, 17, 31, .66);
}

.dr-framework__note {
    margin: 38px 0 0;
    color: rgba(255, 255, 255, .48);
    font-family: var(--dr-serif);
    font-size: 1.12rem;
    font-style: italic;
    line-height: 1.7;
    text-align: center;
}

.dr-framework__note span {
    color: var(--dr-gold-light);
}

/* Pathways */
.dr-pathways {
    background: var(--dr-cream);
}

.dr-pathways__heading {
    margin-bottom: 48px;
}

.dr-pathways__grid {
    display: grid;
    gap: 14px;
}

.dr-pathway {
    display: flex;
    min-height: 410px;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    border: 1px solid var(--dr-line);
    background: rgba(255, 255, 255, .42);
    transition:
        transform .35s var(--dr-ease),
        box-shadow .35s ease,
        background .35s ease;
}

.dr-pathway:hover {
    background: #fff;
    box-shadow: var(--dr-shadow);
    transform: translateY(-7px);
}

.dr-pathway--featured {
    color: #fff;
    border-color: transparent;
    background:
        radial-gradient(circle at 85% 15%, rgba(56, 116, 203, .42), transparent 35%),
        var(--dr-navy);
}

.dr-pathway--featured:hover {
    background:
        radial-gradient(circle at 85% 15%, rgba(68, 135, 231, .5), transparent 38%),
        var(--dr-navy);
}

.dr-pathway__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dr-pathway__tag {
    color: var(--dr-blue);
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.dr-pathway--featured .dr-pathway__tag {
    color: var(--dr-gold-light);
}

.dr-pathway__arrow {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--dr-line);
    border-radius: 50%;
}

.dr-pathway--featured .dr-pathway__arrow {
    border-color: var(--dr-white-line);
}

.dr-pathway h3 {
    margin: 0 0 18px;
    font-family: var(--dr-serif);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.05;
}

.dr-pathway p {
    margin: 0;
    color: var(--dr-text-muted);
    font-size: .9rem;
    line-height: 1.72;
}

.dr-pathway--featured p {
    color: rgba(255, 255, 255, .65);
}

.dr-pathway > a {
    width: fit-content;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--dr-gold);
    font-size: .77rem;
    font-weight: 700;
    text-decoration: none;
}

/* Books */
.dr-books {
    background: var(--dr-paper);
}

.dr-book-feature {
    display: grid;
    align-items: center;
    gap: 44px;
    padding: 48px 0;
    border-top: 1px solid var(--dr-line);
}

.dr-book-feature:last-child {
    border-bottom: 1px solid var(--dr-line);
}

.dr-book-art {
    position: relative;
    display: grid;
    min-height: 470px;
    place-items: center;
    padding: 48px 28px 110px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 15%, rgba(61, 119, 203, .38), transparent 30%),
        linear-gradient(150deg, var(--dr-navy), var(--dr-ink));
}

.dr-book-art--photo {
    display: block;
    padding: 0;
    background: var(--dr-ink);
}

.dr-book-art--cover {
    padding: 44px 28px 70px;
    background:
        radial-gradient(circle at 50% 42%, rgba(71, 128, 205, .42), transparent 32%),
        linear-gradient(150deg, var(--dr-navy), var(--dr-ink));
}

.dr-book-art--cover-three {
    background:
        radial-gradient(circle at 50% 42%, rgba(240, 212, 154, .34), transparent 34%),
        linear-gradient(150deg, #173b69, #081421);
}

.dr-book-art__cover-image {
    position: relative;
    z-index: 2;
    display: block;
    width: auto;
    max-width: 74%;
    max-height: 370px;
    object-fit: contain;
    box-shadow:
        -12px 22px 38px rgba(0, 0, 0, .38),
        0 2px 2px rgba(255, 255, 255, .12);
    transition: transform .45s var(--dr-ease);
}

.dr-book-art__cover-image--three {
    max-width: 68%;
}

.dr-book-art--cover:hover .dr-book-art__cover-image {
    transform: translateY(-8px) rotate(-1deg);
}

.dr-book-art__photo {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--dr-ease);
}

.dr-book-art__photo--echo {
    object-position: 57% 64%;
}

.dr-book-art__photo--three {
    object-position: 36% 63%;
}

.dr-book-art--photo:hover .dr-book-art__photo {
    transform: scale(1.035);
}

.dr-book-art.dr-book-art--photo::after {
    z-index: 2;
    inset: auto 0 0;
    width: auto;
    height: 42%;
    border: 0;
    border-radius: 0;
    background: linear-gradient(to top, rgba(4, 11, 20, .88), transparent);
}

.dr-book-art__label {
    position: absolute;
    z-index: 3;
    right: 22px;
    bottom: 20px;
    left: 22px;
    color: var(--dr-gold-light);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.dr-book-art::before,
.dr-book-art::after {
    position: absolute;
    border: 1px solid rgba(215, 173, 97, .2);
    border-radius: 50%;
    content: "";
}

.dr-book-art::before {
    width: 270px;
    height: 270px;
    top: -130px;
    right: -90px;
}

.dr-book-art::after {
    width: 210px;
    height: 210px;
    bottom: -120px;
    left: -80px;
}

.dr-book-art > p {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 18px;
    left: 22px;
    margin: 0;
    color: rgba(255, 255, 255, .52);
    font-size: .64rem;
    line-height: 1.5;
}

.dr-book-art > p b {
    color: var(--dr-gold-light);
}

.dr-book-art__cover {
    position: relative;
    z-index: 2;
    display: flex;
    width: 205px;
    min-height: 300px;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 20px;
    box-shadow:
        -10px 18px 34px rgba(0, 0, 0, .34),
        inset 3px 0 rgba(255, 255, 255, .16);
    transform: perspective(900px) rotateY(-10deg) rotateX(2deg);
    transition: transform .45s var(--dr-ease);
}

.dr-book-art:hover .dr-book-art__cover {
    transform: perspective(900px) rotateY(-3deg) rotateX(0) translateY(-6px);
}

.dr-book-art__cover--echo {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .55);
    background:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(155deg, #2164b4, #071a34 70%);
    background-size: 24px 24px, 24px 24px, auto;
}

.dr-book-art__cover--three {
    color: var(--dr-ink);
    background: linear-gradient(150deg, #fffefa, #d9c498);
}

.dr-book-art__cover span {
    font-size: .46rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.dr-book-art__cover strong {
    font-family: var(--dr-serif);
    font-size: 2.05rem;
    font-weight: 600;
    letter-spacing: -.05em;
    line-height: .92;
}

.dr-book-art__cover i {
    display: block;
    width: 100%;
    height: 30px;
    border-block: 1px solid rgba(255, 255, 255, .44);
    background: repeating-radial-gradient(ellipse at center, rgba(255,255,255,.75) 0 1px, transparent 2px 8px);
}

.dr-book-art__cover small {
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .07em;
    line-height: 1.45;
    text-transform: uppercase;
}

.dr-book-feature__copy {
    max-width: 560px;
}

.dr-book-feature__type {
    display: block;
    margin-bottom: 18px;
    color: var(--dr-blue);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.dr-book-feature__copy h3 {
    margin: 0 0 14px;
    font-family: var(--dr-serif);
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -.05em;
    line-height: .94;
}

.dr-book-feature__subtitle {
    color: var(--dr-blue) !important;
    font-family: var(--dr-serif);
    font-size: 1.04rem !important;
    font-style: italic;
}

.dr-book-feature__copy p {
    margin: 0 0 20px;
    color: var(--dr-text-muted);
    line-height: 1.75;
}

.dr-book-feature__copy ul {
    display: grid;
    gap: 8px;
    margin: 26px 0 32px;
    padding: 0;
    list-style: none;
}

.dr-book-feature__copy li {
    position: relative;
    padding-left: 24px;
    color: var(--dr-ink);
    font-size: .88rem;
    font-weight: 600;
}

.dr-book-feature__copy li::before {
    position: absolute;
    top: .7em;
    left: 0;
    width: 10px;
    height: 1px;
    background: var(--dr-gold);
    content: "";
}

/* Speaking */
.dr-speaking {
    padding-top: 0;
    color: #fff;
    background: var(--dr-ink);
}

.dr-speaking__visual {
    position: relative;
    display: grid;
    min-height: 0;
    aspect-ratio: 3 / 2;
    align-items: end;
    overflow: hidden;
    background:
        linear-gradient(to top, rgba(5, 15, 29, .96), rgba(5, 15, 29, .08) 65%),
        radial-gradient(circle at 70% 30%, rgba(215, 173, 97, .28), transparent 28%),
        linear-gradient(110deg, #173d73, #0b182a 64%);
}

.dr-speaking__visual > img {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.dr-speaking__visual::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background:
        linear-gradient(to top, rgba(5, 15, 29, .92), transparent 47%),
        linear-gradient(90deg, rgba(5,15,29,.2), transparent 42%);
}

.dr-speaking__placeholder {
    position: absolute;
    z-index: 2;
    top: 26px;
    right: 20px;
    left: 20px;
    max-width: 500px;
    padding: 18px;
    color: rgba(255, 255, 255, .62);
    border: 1px solid var(--dr-white-line);
    background: rgba(5, 15, 29, .56);
    backdrop-filter: blur(12px);
    font-size: .68rem;
    line-height: 1.55;
}

.dr-speaking__quote {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 760px;
    gap: 12px;
    padding: 42px 20px;
}

.dr-speaking__quote > span {
    color: var(--dr-gold);
    font-family: var(--dr-serif);
    font-size: 3rem;
    line-height: .8;
}

.dr-speaking__quote p {
    margin: 0;
    font-family: var(--dr-serif);
    font-size: clamp(1.55rem, 6.6vw, 3rem);
    font-style: italic;
    line-height: 1.15;
}

.dr-speaking__content {
    display: grid;
    gap: 58px;
    padding-top: 86px;
}

.dr-speaking .dr-kicker {
    color: var(--dr-gold-light);
}

.dr-speaking__lead > p:not(.dr-kicker) {
    max-width: 550px;
    margin: 28px 0 32px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.75;
}

.dr-topic-list {
    border-top: 1px solid var(--dr-white-line);
}

.dr-topic-list article {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 24px 0;
    border-bottom: 1px solid var(--dr-white-line);
}

.dr-topic-list article > span {
    color: var(--dr-gold);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.dr-topic-list h3 {
    margin: 0 0 6px;
    font-family: var(--dr-serif);
    font-size: 1.35rem;
    font-weight: 600;
}

.dr-topic-list p {
    margin: 0;
    color: rgba(255, 255, 255, .52);
    font-size: .82rem;
    line-height: 1.55;
}

/* About */
.dr-about {
    background: var(--dr-cream);
}

.dr-about__grid {
    display: grid;
    gap: 58px;
}

.dr-about__visual {
    position: relative;
}

.dr-about__placeholder {
    position: relative;
    min-height: 520px;
    margin: 0 0 0 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background:
        radial-gradient(circle at 32% 26%, rgba(240, 212, 154, .28), transparent 18%),
        linear-gradient(140deg, #295d9e, #07111f 70%);
    box-shadow: -16px 16px 0 var(--dr-gold);
}

.dr-about__placeholder > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% center;
}

.dr-about__placeholder > div {
    position: absolute;
    top: 48%;
    left: 50%;
    color: rgba(255, 255, 255, .08);
    font-family: var(--dr-serif);
    font-size: 8rem;
    transform: translate(-50%, -50%);
}

.dr-about__placeholder figcaption {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 18px;
    color: rgba(255, 255, 255, .64);
    border-left: 2px solid var(--dr-gold);
    background: rgba(5, 15, 29, .78);
    font-size: .67rem;
    line-height: 1.52;
}

.dr-about__caption {
    position: relative;
    z-index: 3;
    display: flex;
    width: calc(100% - 54px);
    max-width: 320px;
    flex-direction: column;
    margin: -24px 0 0 0;
    padding: 18px 20px;
    color: #fff;
    background: var(--dr-navy);
}

.dr-about__caption span {
    color: var(--dr-gold-light);
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.dr-about__caption strong {
    font-family: var(--dr-serif);
    font-size: 1.08rem;
    font-weight: 600;
}

.dr-about__copy {
    align-self: center;
}

.dr-about__lead {
    color: var(--dr-ink) !important;
    font-family: var(--dr-serif);
    font-size: 1.28rem !important;
    line-height: 1.55 !important;
}

.dr-about__copy > p:not(.dr-kicker) {
    margin: 26px 0 0;
    color: var(--dr-text-muted);
    line-height: 1.78;
}

.dr-about__roles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.dr-about__roles span {
    padding: 8px 12px;
    color: var(--dr-navy);
    border: 1px solid rgba(16, 43, 85, .2);
    background: rgba(255, 255, 255, .38);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* Beyond */
.dr-beyond {
    background: var(--dr-paper);
}

.dr-beyond__head {
    max-width: 850px;
    margin-bottom: 50px;
}

.dr-beyond__grid {
    display: grid;
    gap: 14px;
}

.dr-beyond-card {
    position: relative;
    display: flex;
    min-height: 420px;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    overflow: hidden;
    color: #fff;
}

.dr-beyond-card__image {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dr-beyond-card__image--ministry {
    object-position: center top;
}

.dr-beyond-card__scrim {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 11, 20, .96) 4%, rgba(4, 11, 20, .42) 58%, rgba(4, 11, 20, .06));
}

.dr-beyond-card__scrim--light {
    background: linear-gradient(to top, rgba(244, 224, 177, .98) 4%, rgba(244, 224, 177, .75) 52%, rgba(244, 224, 177, .04));
}

.dr-beyond-card__content {
    position: relative;
    z-index: 2;
}

.dr-beyond-card__media-frame {
    position: relative;
    min-height: 160px;
    overflow: hidden;
    margin: -28px -28px 22px;
}

.dr-beyond-card__media-frame::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(244, 240, 231, .85), transparent 45%);
}

.dr-beyond-card__media-frame img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: 55% center;
}

.dr-beyond-card--music {
    background:
        radial-gradient(circle at 85% 18%, rgba(215, 173, 97, .32), transparent 25%),
        linear-gradient(140deg, #173d73, #081321);
}

.dr-beyond-card--media {
    color: var(--dr-ink);
    border: 1px solid var(--dr-line);
    background: var(--dr-cream);
}

.dr-beyond-card--ministry {
    color: var(--dr-ink);
    background:
        linear-gradient(145deg, rgba(255,255,255,.66), rgba(255,255,255,.12)),
        var(--dr-gold-light);
}

.dr-beyond-card__mark {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    color: var(--dr-gold-light);
    font-family: var(--dr-serif);
    font-size: 2rem;
}

.dr-beyond-card--ministry .dr-beyond-card__mark {
    color: var(--dr-ink);
    border-color: rgba(7, 17, 31, .28);
}

.dr-beyond-card > div > span:not(.dr-beyond-card__mark) {
    display: block;
    margin-bottom: 14px;
    color: var(--dr-gold-light);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.dr-beyond-card--media > div > span,
.dr-beyond-card--ministry > div > span {
    color: var(--dr-blue);
}

.dr-beyond-card h3 {
    margin: 0;
    font-family: var(--dr-serif);
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.06;
}

.dr-beyond-card p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .6);
    font-size: .84rem;
    line-height: 1.65;
}

.dr-beyond-card--ministry p {
    color: rgba(7, 17, 31, .62);
}

.dr-beyond-card > a {
    position: relative;
    z-index: 2;
    width: fit-content;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--dr-gold);
    font-size: .74rem;
    font-weight: 700;
    text-decoration: none;
}

.dr-beyond-card__placeholder {
    padding: 18px;
    color: var(--dr-text-muted);
    border: 1px dashed rgba(16, 43, 85, .25);
    background:
        linear-gradient(135deg, rgba(25, 74, 143, .16), rgba(215, 173, 97, .16));
    font-size: .66rem;
    line-height: 1.5;
}

.dr-beyond-card__placeholder span {
    color: var(--dr-blue) !important;
}

/* Booking */
.dr-booking {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 50% 45%, rgba(37, 85, 155, .58), transparent 44%),
        var(--dr-ink);
}

.dr-booking::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 64px 64px;
}

.dr-booking__rings {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    transform: translate(-50%, -50%);
}

.dr-booking__rings i {
    position: absolute;
    inset: calc(var(--ring, 0) * 94px);
    border: 1px solid rgba(215, 173, 97, .18);
    border-radius: 50%;
}

.dr-booking__rings i:nth-child(2) {
    --ring: 1;
}

.dr-booking__rings i:nth-child(3) {
    --ring: 2;
}

.dr-booking__inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 720px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block: 90px;
    text-align: center;
}

.dr-booking .dr-eyebrow {
    color: var(--dr-gold-light);
}

.dr-booking__title {
    margin: 0;
    font-family: var(--dr-serif);
    font-size: clamp(3rem, 13vw, 7.2rem);
    font-weight: 600;
    letter-spacing: -.06em;
    line-height: .86;
}

.dr-booking__copy {
    max-width: 590px;
    margin: 32px auto;
    color: rgba(255, 255, 255, .65);
    font-size: 1rem;
    line-height: 1.7;
}

/* Footer */
.dr-site-footer {
    color: #fff;
    background: #040b14;
}

.dr-site-footer__top {
    display: grid;
    gap: 34px;
    padding: 58px 0 42px;
    border-bottom: 1px solid var(--dr-white-line);
}

.dr-brand--footer {
    width: fit-content;
}

.dr-site-footer__top > p {
    max-width: 480px;
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-family: var(--dr-serif);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.5;
}

.dr-site-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
    padding: 42px 0;
}

.dr-site-footer__nav > div {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.dr-site-footer__nav span {
    margin-bottom: 6px;
    color: var(--dr-gold-light);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.dr-site-footer__nav a {
    width: fit-content;
    color: rgba(255, 255, 255, .62);
    font-size: .82rem;
    text-decoration: none;
    transition: color .2s ease;
}

.dr-site-footer__nav a:hover {
    color: #fff;
}

.dr-site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0 32px;
    border-top: 1px solid var(--dr-white-line);
}

.dr-site-footer__bottom p,
.dr-site-footer__bottom button {
    margin: 0;
    color: rgba(255, 255, 255, .38);
    font-size: .61rem;
}

.dr-site-footer__bottom button {
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

/* Animation */
@keyframes dr-breathe {
    0%,
    100% {
        opacity: .45;
        transform: scale(.96);
    }
    50% {
        opacity: .9;
        transform: scale(1.02);
    }
}

/* Larger phones */
@media (min-width: 520px) {
    .dr-shell {
        width: min(100% - 56px, var(--dr-shell));
    }

    .dr-actions {
        width: fit-content;
        flex-direction: row;
    }

    .dr-actions--center {
        align-items: center;
    }

    .dr-hero__footer {
        display: flex;
    }

    .dr-book-art__cover {
        width: 235px;
        min-height: 350px;
    }

    .dr-site-footer__nav {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet */
@media (min-width: 760px) {
    .dr-section {
        padding: 124px 0;
    }

    .dr-hero__grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
        align-items: center;
        gap: 28px;
        padding-top: 110px;
    }

    .dr-hero__copy {
        padding-top: 0;
    }

    .dr-display {
        font-size: clamp(4.9rem, 10.3vw, 7.2rem);
    }

    .dr-portrait-placeholder {
        min-height: 560px;
    }

    .dr-hero__rings {
        right: -90px;
        top: 160px;
    }

    .dr-intro__grid {
        grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
        gap: 72px;
    }

    .dr-section-head {
        grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
        align-items: end;
    }

    .dr-framework__rail {
        grid-template-columns: repeat(2, 1fr);
    }

    .dr-pathways__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dr-pathway--featured {
        grid-column: 1 / -1;
    }

    .dr-book-feature {
        grid-template-columns: minmax(300px, .9fr) minmax(360px, 1.1fr);
        gap: 72px;
        padding: 72px 0;
    }

    .dr-book-feature--reverse .dr-book-art {
        order: 2;
    }

    .dr-book-art {
        min-height: 560px;
    }

    .dr-book-art__cover-image {
        max-height: 440px;
    }

    .dr-speaking__placeholder {
        top: 38px;
        left: auto;
        right: 5vw;
    }

    .dr-speaking__quote {
        padding-inline: 7vw;
    }

    .dr-speaking__content {
        grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
        gap: 80px;
    }

    .dr-about__grid {
        grid-template-columns: minmax(310px, .8fr) minmax(360px, 1.2fr);
        gap: 80px;
    }

    .dr-beyond__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dr-beyond-card--music {
        grid-row: span 2;
        min-height: 640px;
    }

    .dr-beyond-card--media,
    .dr-beyond-card--ministry {
        min-height: 313px;
    }

    .dr-site-footer__top {
        grid-template-columns: 1fr 1fr;
        align-items: end;
    }
}

/* Desktop */
@media (min-width: 1040px) {
    .dr-site-header__inner {
        min-height: 92px;
    }

    .dr-menu-toggle {
        display: none;
    }

    .dr-primary-nav {
        position: static;
        visibility: visible;
        flex-direction: row;
        justify-content: flex-end;
        gap: 4px;
        padding: 0;
        background: transparent;
        opacity: 1;
        transform: none;
    }

    .dr-primary-nav > a {
        padding: 12px 14px;
        font-family: var(--dr-sans);
        font-size: .74rem;
        font-weight: 600;
        letter-spacing: .03em;
        transition: color .2s ease;
    }

    .dr-primary-nav > a:not(.dr-primary-nav__cta):hover {
        color: var(--dr-gold-light);
    }

    .dr-primary-nav__cta {
        margin: 0 0 0 10px;
        padding: 12px 18px !important;
        border: 1px solid rgba(215, 173, 97, .72);
    }

    .dr-hero {
        min-height: 900px;
    }

    .dr-hero__grid {
        min-height: 900px;
        grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
        gap: 64px;
        padding-top: 100px;
    }

    .dr-hero__copy {
        margin-left: 6%;
    }

    .dr-hero__lede {
        font-size: 1.14rem;
    }

    .dr-portrait-placeholder {
        width: 100%;
        min-height: 650px;
        transform: translateY(34px);
    }

    .dr-framework__rail {
        grid-template-columns: repeat(4, 1fr);
    }

    .dr-framework-card {
        min-height: 410px;
        padding: 34px 28px;
    }

    .dr-framework-card__icon {
        margin: 80px 0 54px;
    }

    .dr-pathways__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dr-pathway--featured {
        grid-column: auto;
    }

    .dr-pathway {
        min-height: 520px;
        padding: 34px;
    }

    .dr-pathway h3 {
        font-size: 2.35rem;
    }

    .dr-book-feature {
        gap: 110px;
        padding: 92px 5%;
    }

    .dr-book-art__cover {
        width: 250px;
        min-height: 375px;
    }

    .dr-speaking__quote {
        max-width: 930px;
    }

    .dr-speaking__content {
        gap: 130px;
        padding-top: 120px;
    }

    .dr-about__grid {
        gap: 130px;
    }

    .dr-about__placeholder {
        min-height: 680px;
    }

    .dr-about__copy {
        padding-right: 8%;
    }

    .dr-beyond__grid {
        grid-template-columns: 1.05fr .95fr;
    }

    .dr-beyond-card {
        padding: 38px;
    }

    .dr-beyond-card h3 {
        font-size: 2.25rem;
    }

    .dr-site-footer__top {
        padding-top: 78px;
    }

    .dr-site-footer__nav {
        width: 50%;
        margin-left: auto;
    }
}

@media (min-width: 1400px) {
    .dr-hero__copy {
        margin-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .dr-reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 782px) {
    body.admin-bar .dr-site-header {
        top: 46px;
    }
}

@media (min-width: 783px) {
    body.admin-bar .dr-site-header {
        top: 32px;
    }
}
