:root {
    --blue: #2d6395;
    --blue-dark: #173c60;
    --blue-deep: #102f4f;
    --magenta: #8c2c65;
    --magenta-dark: #681b49;
    --ink: #172738;
    --muted: #586574;
    --warm: #9f6a28;
    --cream: #fbf8f5;
    --cream-deep: #f3ece5;
    --white: #ffffff;
    --line: rgba(23, 60, 96, .14);
    --shadow: 0 18px 50px rgba(23, 39, 56, .10);
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shell: min(1440px, calc(100vw - 7.5rem));
    --header-height: 104px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

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

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

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

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

h1,
h2,
h3 {
    text-wrap: balance;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section-space {
    padding-block: 88px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 6px;
    color: var(--white);
    background: var(--blue-deep);
    transform: translateY(-150%);
}

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

.icon {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(251, 248, 245, .94);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 28px rgba(23, 39, 56, .08);
}

.header-inner {
    height: 100%;
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.brand {
    width: 284px;
    height: 76px;
    overflow: hidden;
    display: block;
    border-radius: 2px;
    background: #fff;
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 49%;
    transform: scale(1.08);
}

.site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    border: 0;
    color: var(--ink);
    background: transparent;
    font-size: .79rem;
    font-weight: 700;
    letter-spacing: .045em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 2px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--magenta));
    transition: right .22s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
    right: 0;
}

.nav-link.is-active {
    color: var(--blue);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    width: 230px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -8px);
    transition: .2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--ink);
    font-size: .9rem;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    color: var(--blue);
    background: rgba(45, 99, 149, .08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2px;
}

.icon-button,
.menu-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

.icon-button:hover,
.icon-button:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
    color: var(--blue);
    background: rgba(45, 99, 149, .08);
}

.icon-button .icon {
    width: 21px;
    height: 21px;
}

.bag-button span {
    position: absolute;
    top: 2px;
    right: 1px;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--magenta);
    font-size: .65rem;
    font-weight: 700;
}

.menu-toggle {
    display: none;
}

.menu-close-icon {
    display: none;
}

.menu-toggle[aria-expanded='true'] .menu-open-icon {
    display: none;
}

.menu-toggle[aria-expanded='true'] .menu-close-icon {
    display: block;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--magenta);
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.home-hero {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background: #f6f2ef;
}

.home-hero-image {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-acasa.webp');
    background-position: center;
    background-size: cover;
}

.home-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251,248,245,.98) 0%, rgba(251,248,245,.88) 33%, rgba(251,248,245,.20) 60%, rgba(251,248,245,0) 76%);
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    min-height: 540px;
    display: flex;
    align-items: center;
}

.home-hero-copy {
    width: 48%;
    max-width: 700px;
    padding-block: 72px;
}

.home-hero h1,
.story-copy h1,
.ler-copy h1,
.not-found h1 {
    margin-bottom: 12px;
    color: var(--blue-deep);
    font-family: var(--serif);
    font-size: clamp(3.3rem, 5.2vw, 5.5rem);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.045em;
}

.hero-lead,
.story-subtitle {
    margin-bottom: 18px;
    color: var(--magenta);
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.28;
}

.hero-text {
    max-width: 625px;
    margin-bottom: 28px;
    color: var(--ink);
    font-size: 1.03rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue));
    box-shadow: 0 10px 25px rgba(45, 99, 149, .22);
}

.button-secondary {
    border-color: rgba(140, 44, 101, .45);
    color: var(--magenta);
    background: rgba(255, 255, 255, .72);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: #fff;
    box-shadow: 0 10px 25px rgba(140, 44, 101, .12);
}

.button .icon {
    width: 22px;
    height: 22px;
}

.button .button-arrow {
    width: 19px;
}

.resources-section,
.courses-section {
    padding-top: 22px;
    background: #fff;
}

.section-heading h2,
.ler-story h2 {
    margin-bottom: 8px;
    color: var(--blue-deep);
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    line-height: 1.14;
}

.section-heading.compact h2,
.row-heading.compact h2 {
    font-size: clamp(1.55rem, 2.2vw, 2.2rem);
}

.section-heading.centered {
    text-align: center;
}

.heading-rule,
.title-rule {
    width: 56px;
    height: 2px;
    display: inline-block;
    background: linear-gradient(90deg, var(--blue), var(--magenta));
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.resource-card {
    min-height: 144px;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 16px;
    padding: 24px 22px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: linear-gradient(145deg, #fff, #fcfaf8);
    box-shadow: 0 10px 25px rgba(23, 39, 56, .035);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.resource-card:hover {
    transform: translateY(-3px);
    border-color: rgba(45, 99, 149, .28);
    box-shadow: 0 16px 34px rgba(23, 39, 56, .08);
}

.resource-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: rgba(45, 99, 149, .08);
}

.resource-card:nth-child(even) .resource-icon {
    color: var(--magenta);
    background: rgba(140, 44, 101, .08);
}

.resource-icon .icon {
    width: 34px;
    height: 34px;
}

.resource-card h3,
.course-card h3,
.promise-section h3 {
    margin-bottom: 5px;
    color: var(--blue-deep);
    font-family: var(--serif);
    font-size: 1.13rem;
    line-height: 1.22;
}

.resource-card p,
.course-card p,
.promise-section p {
    margin-bottom: 10px;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.45;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--magenta);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.text-link .icon {
    width: 17px;
    height: 17px;
}

.courses-section {
    padding-top: 28px;
    padding-bottom: 18px;
}

.row-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 14px;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.course-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.course-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.course-image {
    height: 125px;
    background-position: center;
    background-size: cover;
}

.course-card:nth-child(4) .course-image {
    background-position: 76% center;
}

.course-copy {
    padding: 16px 18px 18px;
}

.course-copy span {
    color: var(--muted);
    font-size: .79rem;
}

.promise-section {
    padding-block: 12px 26px;
    background: #fff;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 10px;
    background: linear-gradient(100deg, rgba(45,99,149,.045), rgba(140,44,101,.035));
}

.promise-grid article {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 12px;
    align-items: center;
    padding: 18px 24px;
    border-right: 1px solid var(--line);
}

.promise-grid article:last-child {
    border-right: 0;
}

.promise-grid > article > .icon {
    width: 38px;
    height: 38px;
    color: var(--blue);
}

.promise-grid article:nth-child(even) > .icon {
    color: var(--magenta);
}

.promise-section h3 {
    margin-bottom: 2px;
    font-family: var(--sans);
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.promise-section p {
    margin: 0;
    font-size: .78rem;
}

.story-hero {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    background: #e8dfd5;
}

.story-image {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
}

.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251,248,245,.99) 0%, rgba(251,248,245,.94) 27%, rgba(251,248,245,.62) 40%, rgba(251,248,245,.03) 66%);
}

.story-inner {
    position: relative;
    z-index: 1;
    min-height: 590px;
    display: flex;
    align-items: center;
}

.story-copy {
    width: 40%;
    max-width: 610px;
    padding-block: 52px;
}

.story-copy h1 {
    margin-bottom: 6px;
    font-size: clamp(3.8rem, 5vw, 5.3rem);
}

.story-copy .story-subtitle {
    margin-bottom: 18px;
}

.title-rule {
    margin-bottom: 20px;
}

.story-copy > p:not(.story-subtitle) {
    margin-bottom: 14px;
    color: #263747;
    font-size: .99rem;
    line-height: 1.56;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: .77rem;
    font-weight: 750;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.breadcrumbs a:hover {
    color: var(--blue);
}

.narrow-copy {
    max-width: 900px;
}

.narrow-copy > p {
    color: #334453;
    font-family: var(--serif);
    font-size: 1.22rem;
    line-height: 1.8;
}

.narrow-copy .section-heading {
    margin-bottom: 32px;
}

.philosophy-section,
.principles-section,
.ler-story {
    background: #fff;
}

.philosophy-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
    margin-top: 44px;
}

.philosophy-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 17%;
    right: 17%;
    height: 1px;
    background: linear-gradient(90deg, rgba(45,99,149,.3), rgba(140,44,101,.3), rgba(45,99,149,.3));
}

.philosophy-grid article {
    position: relative;
    z-index: 1;
    text-align: center;
}

.philosophy-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border: 8px solid #fff;
    border-radius: 50%;
    color: #fff;
}

.philosophy-icon.blue {
    background: var(--blue);
}

.philosophy-icon.magenta {
    background: var(--magenta);
}

.philosophy-icon .icon {
    width: 34px;
    height: 34px;
}

.philosophy-grid h3 {
    margin-bottom: 7px;
    color: var(--blue-deep);
    font-family: var(--serif);
    font-size: 1.65rem;
}

.philosophy-grid p {
    max-width: 360px;
    margin-inline: auto;
    color: var(--muted);
}

.signature-quote {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
    margin: 54px 0 0;
    padding: 26px 36px;
    border: 1px solid var(--line);
    border-left: 4px solid var(--magenta);
    border-radius: 10px;
    background: linear-gradient(100deg, rgba(45,99,149,.045), rgba(140,44,101,.055));
}

.signature-quote p {
    margin: 0;
    color: var(--blue-deep);
    font-family: var(--serif);
    font-size: 1.25rem;
}

.signature-quote footer {
    min-width: 250px;
    text-align: right;
}

.signature-quote strong,
.signature-quote span {
    display: block;
}

.signature-quote strong {
    color: var(--magenta);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 500;
}

.signature-quote span {
    color: var(--muted);
    font-size: .78rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    margin-top: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--cream);
    box-shadow: 0 14px 44px rgba(23, 39, 56, .05);
}

.principle-card {
    min-height: 330px;
    padding: 28px 18px;
    border-right: 1px solid var(--line);
    text-align: center;
}

.principle-card:last-child {
    border-right: 0;
}

.principle-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    border-radius: 50%;
    color: var(--blue);
    background: rgba(45,99,149,.08);
}

.principle-card:nth-child(even) .principle-icon {
    color: var(--magenta);
    background: rgba(140,44,101,.08);
}

.principle-icon .icon {
    width: 29px;
    height: 29px;
}

.roman {
    display: block;
    margin-bottom: 5px;
    color: var(--magenta);
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
}

.principle-card h3 {
    min-height: 74px;
    margin-bottom: 12px;
    color: var(--blue-deep);
    font-family: var(--serif);
    font-size: 1.06rem;
    line-height: 1.28;
}

.principle-card p {
    margin: 0;
    color: var(--muted);
    font-size: .83rem;
    line-height: 1.48;
}

.charter-quote {
    max-width: 880px;
    margin: 48px auto 0;
    color: var(--blue-deep);
    font-family: var(--serif);
    font-size: 1.45rem;
    font-style: italic;
    text-align: center;
}

.ler-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #f5f0eb;
}

.ler-visual {
    position: absolute;
    inset: 0 0 0 42%;
    background-position: center;
    background-size: cover;
}

.ler-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251,248,245,1) 0%, rgba(251,248,245,.98) 36%, rgba(251,248,245,.66) 49%, rgba(251,248,245,0) 69%);
}

.ler-shell {
    position: relative;
    z-index: 1;
    min-height: 720px;
    display: flex;
    align-items: center;
}

.ler-copy {
    width: 45%;
    padding-block: 56px;
}

.ler-copy h1 {
    font-size: clamp(3rem, 4.2vw, 4.8rem);
}

.ler-copy h1 span,
.section-heading h2 span {
    color: var(--magenta);
}

.ler-copy > p:not(.story-subtitle) {
    margin-bottom: 13px;
    color: #334453;
}

.ler-mini-grid {
    display: grid;
    gap: 0;
    margin-top: 20px;
    border-top: 1px solid var(--line);
}

.ler-mini-grid article {
    display: grid;
    grid-template-columns: 50px 88px 1fr;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.ler-mini-grid article > div {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
}

.ler-mini-grid article:nth-child(2) > div {
    background: var(--magenta);
}

.ler-mini-grid .icon {
    width: 23px;
    height: 23px;
}

.ler-mini-grid h2 {
    margin: 0;
    color: var(--blue-deep);
    font-family: var(--serif);
    font-size: 1.35rem;
}

.ler-mini-grid p {
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.4;
}

.ler-story-grid {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.6fr);
    gap: 84px;
}

.ler-story aside {
    position: sticky;
    top: calc(var(--header-height) + 42px);
    align-self: start;
}

.ler-story aside blockquote {
    margin: 28px 0 0;
    padding: 20px 0 20px 22px;
    border-left: 3px solid var(--magenta);
    color: var(--muted);
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
}

.long-copy section {
    padding: 0 0 34px 28px;
    border-left: 1px solid var(--line);
}

.long-copy section:last-child {
    padding-bottom: 0;
}

.long-copy h3 {
    position: relative;
    margin-bottom: 10px;
    color: var(--magenta);
    font-family: var(--serif);
    font-size: 1.8rem;
}

.long-copy h3::before {
    content: '';
    position: absolute;
    left: -34px;
    top: .55em;
    width: 11px;
    height: 11px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 1px var(--blue);
}

.long-copy p {
    color: #3f4e5b;
    font-family: var(--serif);
    font-size: 1.12rem;
    line-height: 1.78;
}

.site-footer {
    padding-top: 58px;
    color: rgba(255,255,255,.82);
    background: var(--blue-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 64px;
}

.brand-footer {
    width: 260px;
    height: 74px;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 410px;
    color: rgba(255,255,255,.66);
}

.footer-grid h2 {
    margin-bottom: 15px;
    color: #fff;
    font-family: var(--sans);
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) span {
    display: block;
    margin-bottom: 9px;
    color: rgba(255,255,255,.68);
    font-size: .88rem;
}

.footer-grid a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
    padding-block: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.52);
    font-size: .78rem;
}

.not-found {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.not-found p:not(.eyebrow) {
    margin-bottom: 28px;
    color: var(--muted);
}

@media (max-width: 1380px) {
    :root {
        --shell: min(1180px, calc(100vw - 4rem));
        --header-height: 92px;
    }

    .header-inner {
        grid-template-columns: 235px minmax(0, 1fr) auto;
        gap: 18px;
    }

    .brand {
        width: 230px;
        height: 68px;
    }

    .site-nav {
        gap: 16px;
    }

    .nav-link {
        font-size: .7rem;
    }

    .resource-card {
        grid-template-columns: 52px 1fr;
        padding: 20px 16px;
    }

    .resource-icon {
        width: 48px;
        height: 48px;
    }

    .resource-icon .icon {
        width: 26px;
        height: 26px;
    }

    .principle-card {
        padding-inline: 12px;
    }
}

@media (max-width: 1120px) {
    :root {
        --shell: min(920px, calc(100vw - 3rem));
        --header-height: 86px;
    }

    .header-inner {
        grid-template-columns: minmax(210px, 1fr) auto auto;
    }

    .brand {
        width: 220px;
        height: 64px;
    }

    .menu-toggle {
        display: grid;
        grid-column: 3;
    }

    .header-actions {
        grid-column: 2;
        grid-row: 1;
    }

    .site-nav {
        position: fixed;
        inset: var(--header-height) 0 auto;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        display: block;
        padding: 22px max(24px, calc((100vw - var(--shell)) / 2));
        border-top: 1px solid var(--line);
        background: rgba(255,255,255,.99);
        box-shadow: 0 20px 40px rgba(23,39,56,.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        min-height: 48px;
        justify-content: space-between;
        border-bottom: 1px solid var(--line);
        font-size: .83rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        padding: 6px 0 12px 18px;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown:focus-within .nav-dropdown-menu,
    .nav-dropdown-toggle[aria-expanded='true'] + .nav-dropdown-menu {
        display: block;
    }

    .home-hero,
    .home-hero-inner {
        min-height: 510px;
    }

    .home-hero-copy {
        width: 55%;
    }

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

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

    .promise-grid article:nth-child(2) {
        border-right: 0;
    }

    .promise-grid article:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .story-copy {
        width: 52%;
    }

    .story-overlay {
        background: linear-gradient(90deg, rgba(251,248,245,.99) 0%, rgba(251,248,245,.94) 38%, rgba(251,248,245,.52) 58%, rgba(251,248,245,.04) 78%);
    }

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
        overflow: hidden;
    }

    .principle-card {
        min-height: 260px;
        border-bottom: 1px solid var(--line);
    }

    .principle-card:nth-child(even) {
        border-right: 0;
    }

    .principle-card:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
    }

    .principle-card h3 {
        min-height: auto;
    }

    .ler-visual {
        inset-inline-start: 48%;
    }

    .ler-copy {
        width: 54%;
    }

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

    .footer-grid > div:last-child {
        display: none;
    }
}

@media (max-width: 760px) {
    :root {
        --shell: calc(100vw - 2rem);
        --header-height: 76px;
    }

    body {
        font-size: 16px;
    }

    .section-space {
        padding-block: 62px;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
        gap: 6px;
    }

    .brand {
        width: 184px;
        height: 58px;
    }

    .menu-toggle {
        grid-column: 2;
    }

    .header-actions {
        display: none;
    }

    .home-hero {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .home-hero-image {
        position: relative;
        inset: auto;
        order: 1;
        width: 100%;
        height: 310px;
        background-position: 74% center;
    }

    .home-hero::after {
        display: none;
    }

    .home-hero-inner {
        order: 2;
        min-height: auto;
    }

    .home-hero-copy {
        width: 100%;
        padding-block: 42px 48px;
    }

    .home-hero h1,
    .story-copy h1,
    .ler-copy h1 {
        font-size: clamp(2.75rem, 13vw, 4rem);
        line-height: 1;
    }

    .hero-lead,
    .story-subtitle {
        font-size: 1.35rem;
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .resources-section {
        padding-top: 44px;
    }

    .resource-grid,
    .course-grid,
    .promise-grid,
    .philosophy-grid,
    .ler-story-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .resource-card {
        grid-template-columns: 58px 1fr;
    }

    .row-heading {
        align-items: flex-start;
    }

    .row-heading .text-link {
        display: none;
    }

    .course-image {
        height: 180px;
    }

    .promise-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .promise-grid article:last-child {
        border-bottom: 0;
    }

    .story-hero {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .story-image {
        position: relative;
        inset: auto;
        order: 1;
        height: 310px;
        background-position: 64% center;
    }

    .story-hero-charter .story-image {
        background-position: 70% center;
    }

    .story-overlay {
        display: none;
    }

    .story-inner {
        order: 2;
        min-height: auto;
    }

    .story-copy {
        width: 100%;
        max-width: none;
        padding-block: 40px 52px;
    }

    .breadcrumbs {
        margin-bottom: 18px;
    }

    .narrow-copy > p {
        font-size: 1.08rem;
        line-height: 1.72;
    }

    .philosophy-grid {
        gap: 30px;
    }

    .philosophy-grid::before {
        display: none;
    }

    .signature-quote {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .signature-quote footer {
        min-width: 0;
        text-align: left;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .principle-card,
    .principle-card:nth-child(even),
    .principle-card:last-child {
        grid-column: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .principle-card:last-child {
        border-bottom: 0;
    }

    .ler-hero {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .ler-visual {
        position: relative;
        inset: auto;
        order: 1;
        height: 330px;
        background-position: 61% center;
    }

    .ler-hero::after {
        display: none;
    }

    .ler-shell {
        order: 2;
        min-height: auto;
    }

    .ler-copy {
        width: 100%;
        padding-block: 40px 52px;
    }

    .ler-mini-grid article {
        grid-template-columns: 48px 1fr;
    }

    .ler-mini-grid h2 {
        align-self: end;
    }

    .ler-mini-grid p {
        grid-column: 2;
    }

    .ler-story-grid {
        gap: 42px;
    }

    .ler-story aside {
        position: static;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-grid > div:last-child {
        display: block;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
