@font-face {
    font-family: "Cormorant Garamond";
    src: url("assets/cormorant-garamond-latin-400-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("assets/inter-latin-400-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("assets/inter-latin-500-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("assets/inter-latin-600-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

:root {
    --ink: #27231f;
    --muted: #6e665c;
    --paper: #fbfaf7;
    --ivory: #f4f1eb;
    --beige: #eee8df;
    --sand: #ded5ca;
    --rule: #bdb4a8;
    --brown: #40382f;
    --brown-deep: #332d27;
    --light: #fffdf8;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", Arial, sans-serif;
    --shell: 1296px;
    --gutter: 72px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
p,
figure {
    margin-top: 0;
}

figure {
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 400;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    background: var(--paper);
    transform: translateY(-180%);
}

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

.site-header {
    position: relative;
    z-index: 10;
    height: 82px;
    border-bottom: 1px solid rgba(39, 35, 31, 0.12);
    background: rgba(251, 250, 247, 0.97);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, calc(var(--shell) + 2 * var(--gutter)));
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.brand {
    font-family: var(--serif);
    font-size: 25px;
    line-height: 1;
    text-decoration: none;
}

.desktop-nav {
    display: flex;
    gap: 34px;
}

.desktop-nav a {
    position: relative;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.desktop-nav a[aria-current="page"]::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
}

.mobile-menu {
    display: none;
}

.section-shell {
    width: min(100%, calc(var(--shell) + 2 * var(--gutter)));
    margin: 0 auto;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
}

.eyebrow {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.24em;
    line-height: 1.3;
    text-transform: uppercase;
}

.text-link {
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 1px solid currentColor;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.13em;
    line-height: 1.5;
    text-decoration: none;
    text-transform: uppercase;
}

.solid-link {
    display: inline-block;
    min-height: 48px;
    padding: 15px 25px 13px;
    background: var(--ink);
    color: var(--light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.8;
    text-decoration: none;
    text-transform: uppercase;
}

.learn-hero {
    display: grid;
    grid-template-columns: minmax(520px, 0.94fr) minmax(0, 1.06fr);
    width: min(100%, 1440px);
    min-height: 760px;
    margin: 0 auto;
}

.hero-copy {
    display: flex;
    justify-content: center;
    padding: 104px 58px 102px var(--gutter);
    flex-direction: column;
}

.hero-copy h1 {
    max-width: 620px;
    margin-bottom: 40px;
    font-size: clamp(74px, 7vw, 108px);
    letter-spacing: -0.04em;
    line-height: 0.9;
}

.hero-intro {
    max-width: 520px;
    margin-bottom: 42px;
    color: #514b44;
    font-size: 15px;
    line-height: 1.9;
}

.hero-copy .text-link {
    align-self: flex-start;
}

.hero-figure {
    position: relative;
    overflow: hidden;
    background: #5a524b;
}

.hero-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% center;
}

.hero-figure picture,
.program-card-image figure picture,
.practice-bridge figure picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-figure::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(39, 35, 31, 0.08), rgba(39, 35, 31, 0));
    content: "";
}

.hero-figure figcaption {
    position: absolute;
    z-index: 1;
    right: 28px;
    bottom: 22px;
    margin: 0;
    color: rgba(255, 253, 248, 0.82);
    font-size: 9px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.approach {
    padding: 154px 0 148px;
    background: var(--beige);
}

.approach-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.62fr);
    align-items: end;
    gap: clamp(75px, 9vw, 140px);
}

.approach-intro h2,
.audience h2,
.development h2,
.programs h2,
.practice-bridge h2,
.announcement h2,
.explore h2 {
    margin-bottom: 0;
    font-size: clamp(57px, 5.6vw, 84px);
    letter-spacing: -0.03em;
    line-height: 0.99;
}

.approach-intro > p {
    margin: 0 0 7px;
    color: #514b44;
    font-size: 15px;
    line-height: 1.9;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 104px;
    margin-bottom: 0;
    list-style: none;
    gap: 54px;
}

.approach-steps li {
    padding-top: 25px;
    border-top: 1px solid var(--rule);
}

.approach-steps span,
.audience-list > article > span,
.development-items article > span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.approach-steps h3 {
    margin: 44px 0 20px;
    font-size: 42px;
    line-height: 1;
}

.approach-steps p {
    max-width: 340px;
    margin-bottom: 0;
    color: #514b44;
    font-size: 14px;
    line-height: 1.85;
}

.audience {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1fr);
    padding-top: 174px;
    padding-bottom: 174px;
    gap: clamp(90px, 10vw, 160px);
}

.audience-heading {
    align-self: start;
    position: sticky;
    top: 72px;
}

.audience-heading h2 {
    max-width: 590px;
    margin-bottom: 37px;
}

.audience-heading > p:last-child {
    max-width: 490px;
    margin-bottom: 0;
    color: #514b44;
    font-size: 15px;
    line-height: 1.9;
}

.audience-list article {
    display: grid;
    grid-template-columns: 54px 1fr;
    padding: 0 0 58px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 58px;
    gap: 20px;
}

.audience-list article:last-child {
    margin-bottom: 0;
}

.audience-list h3 {
    margin: -7px 0 17px;
    font-size: 42px;
    line-height: 1.06;
}

.audience-list p {
    max-width: 500px;
    margin-bottom: 0;
    color: #514b44;
    font-size: 14px;
    line-height: 1.85;
}

.development {
    padding: 160px 0 170px;
    background: var(--brown);
    color: var(--light);
}

.development .eyebrow {
    color: rgba(255, 253, 248, 0.6);
}

.development-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1fr);
    gap: clamp(90px, 11vw, 180px);
}

.development-heading h2 {
    max-width: 590px;
    margin-bottom: 40px;
}

.development-heading > p:last-child {
    max-width: 430px;
    margin-bottom: 0;
    color: rgba(255, 253, 248, 0.7);
    font-size: 14px;
}

.development-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 52px;
}

.development-items article {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 253, 248, 0.27);
}

.development-items article > span {
    color: rgba(255, 253, 248, 0.52);
}

.development-items h3 {
    margin: 37px 0 19px;
    font-size: 34px;
    line-height: 1.08;
}

.development-items p {
    margin-bottom: 0;
    color: rgba(255, 253, 248, 0.72);
    font-size: 13px;
    line-height: 1.85;
}

.programs {
    padding: 170px 0 160px;
    background: var(--ivory);
}

.programs-intro {
    display: grid;
    grid-template-columns: 0.34fr 1fr;
    margin-bottom: 100px;
    gap: 72px;
}

.programs-intro > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.52fr);
    align-items: end;
    gap: 80px;
}

.programs-intro h2 {
    max-width: 700px;
}

.programs-intro > div > p {
    margin-bottom: 5px;
    color: #514b44;
    font-size: 14px;
    line-height: 1.9;
}

.program-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(400px, 0.82fr);
    gap: 28px;
}

.program-card {
    min-height: 710px;
}

.program-card-image {
    display: flex;
    background: var(--paper);
    flex-direction: column;
}

.program-card-image figure {
    overflow: hidden;
    height: 405px;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 54%;
}

.program-copy {
    display: flex;
    min-height: 305px;
    padding: 34px 42px 41px;
    flex: 1;
    flex-direction: column;
}

.program-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.program-meta > span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.program-meta em {
    padding: 6px 11px 5px;
    border: 1px solid var(--rule);
    border-radius: 999px;
    color: var(--muted);
    font-size: 8px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.13em;
    line-height: 1;
    text-transform: uppercase;
}

.program-card h3 {
    margin: auto 0 15px;
    font-size: 48px;
    line-height: 1.02;
}

.program-card p {
    max-width: 600px;
    margin-bottom: 0;
    color: #514b44;
    font-size: 14px;
    line-height: 1.85;
}

.program-card-text {
    display: flex;
    padding: 42px;
    background: var(--sand);
    flex-direction: column;
}

.program-card-text > div:nth-child(2) {
    margin-top: auto;
    margin-bottom: 66px;
}

.program-card-text h3 {
    margin-bottom: 25px;
    font-size: 54px;
}

.program-topics {
    display: flex;
    padding-top: 29px;
    border-top: 1px solid rgba(39, 35, 31, 0.25);
    flex-wrap: wrap;
    gap: 9px;
}

.program-topics span {
    padding: 7px 12px;
    border: 1px solid rgba(39, 35, 31, 0.28);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.updates-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 54px;
    padding-top: 29px;
    border-top: 1px solid var(--rule);
    gap: 30px;
}

.updates-line p {
    margin-bottom: 0;
    color: #514b44;
    font-size: 13px;
}

.practice-bridge {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(430px, 0.84fr);
    min-height: 850px;
    background: var(--beige);
}

.practice-bridge figure {
    overflow: hidden;
    min-height: 850px;
}

.practice-bridge figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% center;
}

.practice-copy {
    display: flex;
    justify-content: center;
    padding: 100px 72px;
    flex-direction: column;
}

.practice-copy h2 {
    margin-bottom: 45px;
    font-size: clamp(51px, 4.6vw, 70px);
}

.practice-copy > p:not(.eyebrow) {
    max-width: 500px;
    margin-bottom: 41px;
    color: #514b44;
    font-size: 15px;
    line-height: 1.9;
}

.practice-copy .text-link {
    align-self: flex-start;
}

.announcement {
    padding: 160px 0 166px;
    text-align: center;
}

.announcement-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.announcement h2 {
    max-width: 830px;
    margin-bottom: 34px;
}

.announcement p:not(.eyebrow) {
    max-width: 600px;
    margin-bottom: 39px;
    color: #514b44;
    font-size: 14px;
    line-height: 1.85;
}

.explore {
    padding: 150px 0 160px;
    background: var(--sand);
}

.explore-heading {
    display: grid;
    grid-template-columns: 0.34fr 1fr;
    margin-bottom: 85px;
    gap: 72px;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(39, 35, 31, 0.28);
    border-bottom: 1px solid rgba(39, 35, 31, 0.28);
}

.explore-grid a {
    display: flex;
    min-height: 280px;
    padding: 30px 32px 27px;
    border-right: 1px solid rgba(39, 35, 31, 0.28);
    text-decoration: none;
    flex-direction: column;
}

.explore-grid a:last-child {
    border-right: 0;
}

.explore-grid span,
.explore-grid em {
    font-size: 9px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.explore-grid strong {
    max-width: 310px;
    margin: auto 0;
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 400;
    line-height: 1.08;
}

.explore-grid em {
    align-self: flex-start;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
}

.site-footer {
    padding: 82px 72px 30px;
    background: var(--brown-deep);
    color: var(--light);
}

.footer-grid {
    display: grid;
    width: min(100%, var(--shell));
    margin: 0 auto;
    grid-template-columns: 1.5fr repeat(3, 0.7fr);
    gap: 60px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
}

.footer-brand p {
    margin-bottom: 22px;
    font-family: var(--serif);
    font-size: 32px;
    line-height: 1;
}

.footer-brand span {
    color: rgba(255, 253, 248, 0.6);
    font-size: 12px;
    line-height: 1.7;
}

.footer-label {
    margin-bottom: 25px;
    color: rgba(255, 253, 248, 0.47);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-grid a {
    margin-bottom: 10px;
    color: rgba(255, 253, 248, 0.78);
    font-size: 11px;
    text-decoration: none;
}

.copyright {
    width: min(100%, var(--shell));
    margin: 72px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 253, 248, 0.15);
    color: rgba(255, 253, 248, 0.43);
    font-size: 9px;
}

@media (max-width: 1023px) {
    :root {
        --gutter: 34px;
    }

    .desktop-nav {
        gap: 20px;
    }

    .learn-hero {
        grid-template-columns: minmax(520px, 0.94fr) minmax(0, 1.06fr);
        min-height: 670px;
    }

    .hero-copy {
        padding-right: 40px;
    }

    .audience,
    .development-grid,
    .practice-bridge {
        gap: 60px;
    }

    .audience {
        grid-template-columns: 0.9fr 1fr;
    }

    .program-grid {
        grid-template-columns: 1fr 0.86fr;
    }
}

@media (max-width: 1023px) {
    :root {
        --gutter: 24px;
    }

    body {
        font-size: 15px;
    }

    .site-header {
        height: 70px;
    }

    .brand {
        font-size: 21px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu {
        display: inline-flex;
        align-items: center;
        min-width: 44px;
        min-height: 44px;
        color: var(--muted);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .section-shell {
        padding-right: var(--gutter);
        padding-left: var(--gutter);
    }

    .eyebrow {
        margin-bottom: 19px;
        font-size: 9px;
    }

    .learn-hero {
        display: flex;
        min-height: 0;
        flex-direction: column;
    }

    .hero-copy {
        min-height: 610px;
        padding: 86px var(--gutter) 78px;
    }

    .hero-copy h1 {
        margin-bottom: 32px;
        font-size: clamp(55px, 15.6vw, 64px);
        line-height: 0.92;
    }

    .hero-intro {
        margin-bottom: 35px;
        font-size: 13px;
        line-height: 1.85;
    }

    .hero-figure {
        height: 405px;
    }

    .hero-figure img {
        object-position: 60% center;
    }

    .hero-figure figcaption {
        right: 18px;
        bottom: 15px;
        font-size: 7px;
    }

    .approach,
    .development,
    .programs,
    .announcement,
    .explore {
        padding-top: 96px;
        padding-bottom: 98px;
    }

    .approach-intro,
    .audience,
    .development-grid,
    .programs-intro,
    .programs-intro > div,
    .program-grid,
    .practice-bridge,
    .explore-heading {
        display: block;
    }

    .approach-intro h2,
    .audience h2,
    .development h2,
    .programs h2,
    .practice-bridge h2,
    .announcement h2,
    .explore h2 {
        font-size: clamp(49px, 14.7vw, 61px);
        line-height: 0.99;
    }

    .approach-intro h2 {
        margin-bottom: 38px;
    }

    .approach-intro > p {
        font-size: 13px;
        line-height: 1.85;
    }

    .approach-steps {
        display: block;
        margin-top: 67px;
    }

    .approach-steps li {
        padding: 21px 0 42px;
        margin-bottom: 17px;
    }

    .approach-steps h3 {
        margin-top: 29px;
        font-size: 38px;
    }

    .approach-steps p {
        font-size: 13px;
    }

    .audience {
        padding-top: 100px;
        padding-bottom: 98px;
    }

    .audience-heading {
        position: static;
        margin-bottom: 71px;
    }

    .audience-heading h2 {
        margin-bottom: 29px;
    }

    .audience-heading > p:last-child {
        font-size: 13px;
    }

    .audience-list article {
        grid-template-columns: 38px 1fr;
        padding-bottom: 38px;
        margin-bottom: 40px;
        gap: 8px;
    }

    .audience-list h3 {
        margin-top: -5px;
        font-size: 34px;
    }

    .audience-list p {
        font-size: 12px;
    }

    .development-heading h2 {
        margin-bottom: 28px;
    }

    .development-heading > p:last-child {
        font-size: 12px;
    }

    .development-items {
        display: block;
        margin-top: 66px;
    }

    .development-items article {
        padding: 20px 0 39px;
        margin-bottom: 18px;
    }

    .development-items h3 {
        margin: 27px 0 15px;
        font-size: 33px;
    }

    .development-items p {
        font-size: 12px;
    }

    .programs-intro {
        margin-bottom: 66px;
    }

    .programs-intro .eyebrow {
        margin-bottom: 27px;
    }

    .programs-intro h2 {
        margin-bottom: 34px;
    }

    .programs-intro > div > p {
        font-size: 12px;
    }

    .program-card {
        min-height: 0;
        margin-bottom: 24px;
    }

    .program-card-image figure {
        height: 245px;
    }

    .program-copy,
    .program-card-text {
        min-height: 400px;
        padding: 27px 25px 29px;
    }

    .program-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .program-card h3,
    .program-card-text h3 {
        font-size: 41px;
    }

    .program-card p {
        font-size: 12px;
    }

    .program-card-text {
        min-height: 540px;
    }

    .program-card-text > div:nth-child(2) {
        margin-bottom: 42px;
    }

    .program-topics {
        gap: 7px;
    }

    .updates-line {
        align-items: flex-start;
        margin-top: 41px;
        flex-direction: column;
    }

    .updates-line p {
        font-size: 11px;
    }

    .practice-bridge figure {
        min-height: 0;
        height: 405px;
    }

    .practice-bridge figure img {
        object-position: 57% center;
    }

    .practice-copy {
        padding: 88px var(--gutter) 96px;
    }

    .practice-copy h2 {
        margin-bottom: 33px;
        font-size: clamp(45px, 13.5vw, 55px);
    }

    .practice-copy > p:not(.eyebrow) {
        margin-bottom: 34px;
        font-size: 13px;
    }

    .announcement h2 {
        margin-bottom: 26px;
    }

    .announcement p:not(.eyebrow) {
        margin-bottom: 31px;
        font-size: 12px;
    }

    .explore-heading {
        margin-bottom: 59px;
    }

    .explore-heading .eyebrow {
        margin-bottom: 27px;
    }

    .explore-grid {
        display: block;
    }

    .explore-grid a {
        min-height: 235px;
        padding: 24px 4px 23px;
        border-right: 0;
        border-bottom: 1px solid rgba(39, 35, 31, 0.28);
    }

    .explore-grid a:last-child {
        border-bottom: 0;
    }

    .explore-grid strong {
        font-size: 31px;
    }

    .site-footer {
        padding: 72px var(--gutter) 28px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 52px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        font-size: 29px;
    }

    .copyright {
        margin-top: 57px;
    }
}

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

@media print {
    .skip-link {
        display: none;
    }
}
