:root {
    --orange: #d26e4b;
    --ink: #171513;
    --cream: #f3efe8;
    --paper: #fbfaf7;
    --line: rgba(23, 21, 19, .17);
    --serif: "Libre Caslon Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden
}

body.menu-open {
    overflow: hidden
}

img {
    display: block;
    width: 100%
}

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

button {
    font: inherit
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 999;
    background: #fff;
    padding: .8rem 1rem
}

.skip-link:focus {
    top: 1rem
}

.section-shell {
    width: min(100% - 48px, 1240px);
    margin: auto
}

.section {
    padding: 150px 0
}

.eyebrow {
    margin: 0 0 26px;
    text-transform: uppercase;
    letter-spacing: .17em;
    font-size: .71rem;
    font-weight: 700
}

.eyebrow.light {
    color: #fff
}

.split-heading {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: start;
    margin-bottom: 80px
}

.split-heading h2,
h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.045em
}

.split-heading h2 em,
h2 em {
    color: var(--orange);
    font-weight: 400
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid currentColor;
    padding: 0 0 7px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

.text-link i {
    transition: transform .25s
}

.text-link:hover i {
    transform: translateX(6px)
}

.text-link.light {
    color: #fff
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 16px 22px;
    min-width: 210px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .73rem;
    font-weight: 700;
    transition: .25s
}

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

.button-light:hover {
    background: var(--orange);
    color: #fff
}

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

.button-dark:hover {
    background: var(--orange)
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 22px 36px;
    color: #fff;
    transition: background .3s, padding .3s, color .3s
}

.site-header.scrolled {
    background: rgba(251, 250, 247, .96);
    color: var(--ink);
    padding-top: 14px;
    padding-bottom: 14px;
    box-shadow: 0 1px 0 var(--line);
    backdrop-filter: blur(12px)
}

.brand {
    width: 180px;
    height: 48px;
    display: flex;
    align-items: center
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1)
}

.site-header.scrolled .brand img {
    filter: none
}

.desktop-nav {
    display: flex;
    gap: 28px;
    font-size: .69rem;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-weight: 600
}

.desktop-nav a {
    position: relative
}

.desktop-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width .25s
}

.desktop-nav a:hover:after {
    width: 100%
}

.header-cta {
    justify-self: end;
    display: flex;
    gap: 10px;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .7rem;
    font-weight: 700
}

.menu-toggle,
.mobile-menu {
    display: none
}

.hero {
    position: relative;
    min-height: 100svh;
    color: #fff;
    background: #191613;
    overflow: hidden
}

.hero-image {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    transform: scale(1.01);
    animation: heroZoom 14s ease-out both
}

@keyframes heroZoom {
    to {
        transform: scale(1.08)
    }
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 8, 7, .72), rgba(10, 8, 7, .18) 65%, rgba(10, 8, 7, .25)), linear-gradient(0deg, rgba(10, 8, 7, .45), transparent 45%)
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100% - 80px, 1240px);
    margin: auto;
    padding-top: 29vh
}

.hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(4.2rem, 9.7vw, 9rem);
    line-height: .79;
    letter-spacing: -.055em
}

.hero h1 em {
    font-weight: 400;
    color: #f4a98c
}

.hero-copy {
    max-width: 480px;
    font-size: 1.08rem;
    margin: 35px 0 30px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 35px
}

.hero-service {
    position: absolute;
    right: 38px;
    bottom: 38px;
    z-index: 2;
    text-align: right
}

.hero-service span {
    display: block;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: .62rem;
    margin-bottom: 7px
}

.hero-service strong {
    font-size: .8rem;
    line-height: 1.7;
    text-transform: uppercase;
    letter-spacing: .06em
}

.scroll-cue {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 35px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 50%;
    animation: bob 2s infinite
}

@keyframes bob {
    50% {
        transform: translateY(7px)
    }
}

.next-service {
    background: var(--orange);
    color: #17100d;
    padding: 74px 0
}

.service-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr .45fr;
    gap: 55px;
    align-items: end
}

.service-grid h2 {
    font-size: clamp(2.5rem, 4.3vw, 4.7rem)
}

.service-details {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 35px
}

.service-details span,
.contact-card span {
    display: block;
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 12px
}

.service-details strong {
    font-size: .86rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.6
}

.service-action {
    display: flex;
    gap: 18px;
    align-items: center
}

.service-action p {
    font-size: .72rem;
    line-height: 1.5;
    text-transform: uppercase;
    margin: 0
}

.circle-link {
    flex: 0 0 66px;
    height: 66px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    transition: .25s
}

.circle-link:hover {
    background: var(--ink);
    color: #fff;
    transform: rotate(45deg)
}

.about {
    background: var(--paper)
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 10vw;
    align-items: end
}

.image-frame {
    margin: 0;
    overflow: hidden
}

.image-frame img {
    height: 100%;
    object-fit: cover;
    transition: transform .7s
}

.image-frame:hover img {
    transform: scale(1.025)
}

.image-landscape {
    height: 620px
}

.about-copy {
    padding-bottom: 20px
}

.about-copy .lead {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.5vw, 2.55rem);
    line-height: 1.2;
    margin: 0 0 32px
}

.about-copy>p:not(.lead) {
    max-width: 480px;
    margin: 0 0 38px;
    color: #5f5a54
}

.quote-band {
    position: relative;
    background: #211d19;
    color: #fff;
    overflow: hidden;
    padding: 105px 0 120px
}

.marquee {
    position: absolute;
    top: 25px;
    white-space: nowrap;
    color: rgba(255, 255, 255, .05);
    font-weight: 700;
    font-size: 10vw;
    line-height: 1
}

.marquee span {
    display: inline-block;
    animation: marquee 32s linear infinite
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

.quote-inner {
    position: relative;
    display: grid;
    grid-template-columns: .75fr 1.4fr;
    gap: 10vw;
    align-items: center
}

.portrait {
    margin: 0;
    height: 620px;
    overflow: hidden
}

.portrait img {
    height: 100%;
    object-fit: cover
}

.quote-inner blockquote {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5.2vw, 5.5rem);
    line-height: 1.03;
    letter-spacing: -.035em
}



.agenda {
    background: var(--cream)
}

.event-list {
    border-top: 1px solid var(--line)
}

.event {
    display: grid;
    grid-template-columns: 90px 1fr 70px;
    align-items: center;
    gap: 30px;
    padding: 42px 8px;
    border-bottom: 1px solid var(--line);
    transition: .25s
}

.event:hover {
    background: var(--paper);
    padding-left: 22px;
    padding-right: 22px
}

.event-number {
    font-size: .7rem;
    color: #8a837b
}

.event-kicker {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .66rem;
    color: var(--orange);
    font-weight: 700
}

.event h3 {
    margin: 0 0 8px;
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3vw, 3.1rem);
    font-weight: 400
}

.event p:last-child {
    margin: 0;
    color: #6f6861
}

.event>a {
    justify-self: end;
    width: 54px;
    height: 54px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center
}

.pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 900px;
    background: var(--ink);
    color: #fff
}

.pillars-image {
    position: sticky;
    top: 0;
    height: 100vh
}

.pillars-image img {
    height: 100%;
    object-fit: cover
}

.pillars-content {
    padding: 130px clamp(35px, 7vw, 110px)
}

.pillars-content h2 {
    font-size: clamp(3.2rem, 5vw, 5.7rem);
    margin-bottom: 70px
}

.pillar-list {
    border-top: 1px solid rgba(255, 255, 255, .18)
}

.pillar-list>div {
    position: relative;
    padding: 30px 0 28px 52px;
    border-bottom: 1px solid rgba(255, 255, 255, .18)
}

.pillar-list span {
    position: absolute;
    left: 0;
    top: 38px;
    color: var(--orange);
    font-size: .65rem
}

.pillar-list h3 {
    margin: 0 0 8px;
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.9rem
}

.pillar-list p {
    margin: 0;
    color: #aaa29a;
    max-width: 430px
}

.contact {
    background: var(--paper)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 12vw;
    align-items: start
}

.contact-intro>p:not(.eyebrow) {
    color: #645e57;
    max-width: 520px;
    font-size: 1.08rem;
    margin: 35px 0
}

.contact-card {
    border-top: 1px solid var(--line)
}

.contact-card>div {
    padding: 28px 0;
    border-bottom: 1px solid var(--line)
}

.contact-card p,
.contact-card a {
    margin: 0;
    font-family: var(--serif);
    font-size: 1.7rem;
    line-height: 1.35
}

.contact-card a i {
    font-size: .8rem
}

.site-footer {
    background: var(--orange);
    padding: 80px 3vw 28px
}

.footer-wordmark {
    font-weight: 700;
    letter-spacing: -.075em;
    font-size: clamp(4rem, 15vw, 14.5rem);
    line-height: .8;
    white-space: nowrap
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid rgba(23, 21, 19, .3);
    margin-top: 65px;
    padding-top: 22px;
    text-transform: uppercase;
    font-size: .65rem;
    letter-spacing: .11em
}

.footer-bottom p {
    margin: 0
}

.footer-bottom p:nth-child(2) {
    text-align: center
}

.footer-bottom a {
    text-align: right
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@media(max-width:900px) {
    .section {
        padding: 95px 0
    }

    .section-shell {
        width: min(100% - 36px, 1240px)
    }

    .desktop-nav,
    .header-cta {
        display: none
    }

    .site-header {
        grid-template-columns: 1fr auto;
        padding: 20px
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 102;
        flex-direction: column;
        gap: 7px;
        background: none;
        border: 0;
        color: currentColor;
        padding: 9px
    }

    .menu-toggle span {
        display: block;
        width: 26px;
        height: 1px;
        background: currentColor;
        transition: .25s
    }

    .menu-open .menu-toggle span:first-child {
        transform: translateY(4px) rotate(45deg)
    }

    .menu-open .menu-toggle span:last-child {
        transform: translateY(-4px) rotate(-45deg)
    }

    .mobile-menu {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 101;
        background: var(--orange);
        color: var(--ink);
        padding: 120px 25px 35px;
        flex-direction: column;
        justify-content: space-between;
        transform: translateY(-105%);
        transition: transform .45s cubic-bezier(.76, 0, .24, 1)
    }

    .menu-open .mobile-menu {
        transform: none
    }

    .mobile-menu nav {
        display: flex;
        flex-direction: column
    }

    .mobile-menu nav a {
        font-family: var(--serif);
        font-size: clamp(2.8rem, 13vw, 5rem);
        line-height: 1.1
    }

    .mobile-meta {
        font-size: .75rem;
        text-transform: uppercase;
        letter-spacing: .08em
    }

    .hero-content {
        width: calc(100% - 40px);
        padding-top: 27vh
    }

    .hero h1 {
        font-size: clamp(4rem, 17vw, 7rem)
    }

    .hero-copy {
        font-size: .95rem
    }

    .hero-service,
    .scroll-cue {
        display: none
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 48px
    }

    .service-grid {
        grid-template-columns: 1fr
    }

    .service-details {
        grid-template-columns: 1fr 1fr
    }

    .service-action {
        justify-content: flex-start
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .image-landscape {
        height: 70vw;
        min-height: 390px
    }

    .quote-inner {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .portrait {
        height: 105vw;
        max-height: 600px
    }

    .pillars {
        grid-template-columns: 1fr
    }

    .pillars-image {
        position: relative;
        height: 80vh
    }

    .pillars-content {
        padding: 90px 25px
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 70px
    }

    .footer-wordmark {
        font-size: 14vw
    }
}

@media(max-width:560px) {
    .hero-image {
        object-position: 55% center
    }

    .next-service {
        padding: 58px 0
    }

    .service-details {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .event {
        grid-template-columns: 35px 1fr 34px;
        gap: 12px;
        padding: 30px 0
    }

    .event p:last-child {
        font-size: .84rem
    }

    .event>a {
        width: 34px;
        height: 34px
    }

    .pillars-image {
        height: 65vh
    }

    .contact-card p,
    .contact-card a {
        font-size: 1.4rem
    }

    .footer-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .footer-bottom p:nth-child(2) {
        display: none
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition-duration: .01ms !important
    }

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

/* Refined Free Chapel-inspired geometry */
@media(min-width:1101px) {
    .hero {
        width: calc(100% - 300px);
        border-radius: 0 0 130px 0
    }

    .hero-image {
        object-position: center 40%
    }

    .hero-content {
        width: calc(100% - 80px)
    }

    .hero-rail {
        position: absolute;
        right: 0;
        top: 0;
        width: 300px;
        height: 100svh;
        padding: 150px 38px 55px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        background: var(--paper)
    }

    .hero-rail>span {
        position: absolute;
        top: 35px;
        right: 35px;
        font-size: .68rem;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-weight: 700
    }

    .hero-rail nav {
        display: flex;
        flex-direction: column
    }

    .hero-rail nav a {
        padding: 17px 0;
        border-bottom: 1px solid var(--ink);
        font-family: var(--serif);
        font-size: 1.7rem;
        line-height: 1.05
    }

    .hero-rail nav a:hover {
        color: var(--orange)
    }
}

@media(max-width:1100px) {
    .hero-rail {
        display: none
    }

    .hero {
        width: 100%;
        border-radius: 0 0 80px 0
    }

    .desktop-nav {
        display: none
    }

    .header-cta {
        display: none
    }

    .menu-toggle {
        display: flex
    }
}

.image-landscape {
    border-radius: 0 90px 0 0
}

.portrait {
    border-radius: 80px 0 80px 0
}

.pillars-image {
    border-radius: 0 0 110px 0;
    overflow: hidden
}

.news {
    background: var(--paper)
}

.news-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    grid-template-rows: 1fr 1fr;
    gap: 22px
}

.news-card {
    background: var(--cream);
    border-radius: 0 45px 0 45px;
    overflow: hidden;
    min-height: 320px
}

.news-card-large {
    grid-row: 1/3
}

.news-card>a {
    height: 100%;
    display: grid;
    grid-template-columns: 45% 55%
}

.news-card-large>a {
    display: flex;
    flex-direction: column
}

.news-card figure {
    margin: 0;
    overflow: hidden;
    height: 100%
}

.news-card-large figure {
    height: 480px
}

.news-card img {
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.news-card:hover img {
    transform: scale(1.035)
}

.news-copy {
    position: relative;
    padding: 28px 30px
}

.news-copy span {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--orange);
    font-weight: 700
}

.news-copy h3 {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 2.5vw, 3rem);
    font-weight: 400;
    line-height: 1.04;
    margin: 13px 40px 10px 0
}

.news-copy p {
    color: #6b645d;
    margin: 0
}

.news-copy>i {
    position: absolute;
    right: 24px;
    top: 30px
}

.news-all {
    margin-top: 45px
}

.site-footer {
    margin: 0 14px 14px;
    padding: 90px 3vw 28px;
    border-radius: 100px 0 100px 0;
    overflow: hidden
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr .7fr 1fr .7fr;
    gap: 5vw;
    padding: 0 2vw 80px
}

.footer-brand img {
    width: 230px;
    max-width: 100%;
    margin-bottom: 38px
}

.footer-brand h2 {
    font-size: clamp(2.6rem, 4vw, 4.8rem)
}

.footer-brand h2 em {
    color: #fff
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

.footer-column>span {
    font-size: .63rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 700;
    margin-bottom: 18px
}

.footer-column a {
    border-bottom: 1px solid rgba(23, 21, 19, .4)
}

.footer-column p {
    margin: 0
}

@media(max-width:900px) {
    .brand {
        width: 135px;
        height: 38px
    }

    .mobile-menu {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-105%);
        clip-path: inset(0 0 100% 0);
        transition: transform .45s cubic-bezier(.76, 0, .24, 1), opacity .2s, visibility 0s linear .45s, clip-path .45s
    }

    .menu-open .mobile-menu {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        clip-path: inset(0);
        transition: transform .45s cubic-bezier(.76, 0, .24, 1), opacity .2s, visibility 0s, clip-path .45s
    }

    .menu-open .brand img {
        filter: none
    }

    .hero {
        border-radius: 0 0 64px 0
    }

    .image-landscape {
        border-radius: 0 55px 0 0
    }

    .news-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto
    }

    .news-card-large {
        grid-row: auto
    }

    .news-card>a,
    .news-card-large>a {
        display: flex;
        flex-direction: column
    }

    .news-card figure,
    .news-card-large figure {
        height: 65vw;
        min-height: 290px
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

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

    .site-footer {
        border-radius: 60px 0 60px 0
    }
}

@media(max-width:560px) {
    .news-card {
        border-radius: 0 30px 0 30px
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .footer-brand {
        grid-column: auto
    }

    .footer-wordmark {
        font-size: 13vw
    }

    .site-footer {
        margin: 0 7px 7px;
        border-radius: 42px 0 42px 0;
        padding-top: 65px
    }

    .mobile-menu nav a {
        font-size: clamp(2.35rem, 12vw, 4rem)
    }
}

/* Flexible internal pages */
.inner-page .site-header {
    color: var(--ink);
    box-shadow: 0 1px 0 var(--line);
}

.inner-page .brand img {
    filter: none
}

.page-hero {
    padding: 190px 0 95px;
    background: var(--cream);
    border-radius: 0 0 110px 0
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 8vw;
    align-items: end
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(4rem, 9vw, 9rem);
    font-weight: 400;
    line-height: .83;
    letter-spacing: -.055em;
    margin: 0
}

.page-hero h1 em {
    font-weight: 400;
    color: var(--orange)
}

.page-hero-copy {
    max-width: 420px;
    color: #625c55
}

.page-hero-copy p {
    margin: 0 0 28px
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.activity-card {
    border-radius: 0 45px 0 45px;
    background: var(--cream);
    overflow: hidden
}

.activity-card figure {
    margin: 0;
    height: 320px;
    overflow: hidden
}

.activity-card img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.activity-card:hover img {
    transform: scale(1.035)
}

.activity-body {
    padding: 28px
}

.activity-body span,
.month-label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--orange);
    font-weight: 700
}

.activity-body h2 {
    font-size: 2.2rem;
    margin: 12px 0 10px
}

.activity-body p {
    color: #6a635b;
    margin: 0 0 25px
}

.month-group {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 50px;
    padding: 55px 0;
    border-top: 1px solid var(--line)
}

.month-group:first-child {
    border-top: 0
}

.month-title {
    font-family: var(--serif);
    font-size: 3.3rem;
    line-height: 1;
    margin: 8px 0
}

.calendar-event {
    display: grid;
    grid-template-columns: 75px 1fr auto;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
    align-items: center
}

.calendar-event:first-child {
    padding-top: 0
}

.event-date strong {
    display: block;
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1
}

.event-date span {
    font-size: .65rem;
    text-transform: uppercase
}

.calendar-event h3 {
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 400;
    margin: 0 0 5px
}

.calendar-event p {
    margin: 0;
    color: #6a635b
}

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

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) 260px;
    gap: 10vw;
    align-items: start
}

.article-kicker {
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .68rem;
    font-weight: 700
}

.article-body h2 {
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    margin: 60px 0 25px
}

.article-body p,
.article-body li {
    font-size: 1.1rem;
    color: #544e48
}

.article-body .intro {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.23;
    color: var(--ink)
}

.article-body figure {
    margin: 55px 0;
    border-radius: 0 70px 0 70px;
    overflow: hidden
}

.article-sidebar {
    position: sticky;
    top: 130px;
    border-top: 1px solid var(--line)
}

.article-sidebar div {
    padding: 22px 0;
    border-bottom: 1px solid var(--line)
}

.article-sidebar span {
    display: block;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .62rem;
    margin-bottom: 8px;
    color: #777
}

.article-sidebar a {
    font-family: var(--serif);
    font-size: 1.35rem
}

@media(max-width:900px) {
    .page-hero {
        padding: 145px 0 75px;
        border-radius: 0 0 65px 0
    }

    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .activity-grid {
        grid-template-columns: 1fr 1fr
    }

    .month-group {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .content-layout {
        grid-template-columns: 1fr
    }

    .article-sidebar {
        position: relative;
        top: auto
    }

    .inner-page .menu-toggle {
        display: flex
    }
}

@media(max-width:600px) {
    .activity-grid {
        grid-template-columns: 1fr
    }

    .calendar-event {
        grid-template-columns: 55px 1fr 36px;
        gap: 12px
    }

    .calendar-event h3 {
        font-size: 1.55rem
    }

    .calendar-event p {
        font-size: .84rem
    }

    .month-title {
        font-size: 2.7rem
    }

    .page-hero h1 {
        font-size: clamp(3.8rem, 18vw, 6rem)
    }
}

/* Home refinement: immersive hero, seven pillars and dated agenda */
.hero-rail {
    display: none !important
}

.hero {
    width: calc(100% - 28px) !important;
    margin: 0 14px;
    min-height: calc(100svh - 14px);
    border-radius: 0 0 120px 0 !important
}

.hero-image {
    object-position: center 42%
}

.hero-shade {
    background: linear-gradient(90deg, rgba(7, 6, 6, .78), rgba(7, 6, 6, .18) 70%), linear-gradient(0deg, rgba(7, 6, 6, .55), transparent 55%)
}

.hero-content {
    width: min(100% - 90px, 1280px);
    padding-top: 27vh
}

.hero h1 {
    font-size: clamp(4.8rem, 10vw, 10.4rem)
}

.hero-service {
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 32px 0 32px 0;
    background: rgba(20, 17, 15, .2);
    backdrop-filter: blur(8px)
}

.site-header .brand {
    width: 245px;
    height: 100px;
    transition: width .4s ease, height .4s ease;
}

.site-header.scrolled .brand {
    width: 205px;
    height: 70px;
}

.agenda-all {
    margin-top: 42px
}

.event-date-block {
    width: 66px;
    height: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 24px 0 24px 0
}

.event-date-block strong {
    font-family: var(--serif);
    font-size: 2.15rem;
    font-weight: 400;
    line-height: .9
}

.event-date-block span {
    font-size: .58rem;
    letter-spacing: .14em;
    margin-top: 7px
}

.pillars-content {
    padding-top: 115px;
    padding-bottom: 115px
}

.pillars-intro {
    color: #b8b0a8;
    font-size: 1.05rem;
    max-width: 620px;
    margin: -35px 0 60px
}

.pillars-accordion {
    border-top: 1px solid rgba(255, 255, 255, .18)
}

.pillars-accordion details {
    border-bottom: 1px solid rgba(255, 255, 255, .18)
}

.pillars-accordion summary {
    position: relative;
    display: grid;
    grid-template-columns: 40px 1fr 28px;
    align-items: center;
    gap: 14px;
    padding: 25px 0;
    cursor: pointer;
    list-style: none
}

.pillars-accordion summary::-webkit-details-marker {
    display: none
}

.pillars-accordion summary>span {
    position: static;
    color: var(--orange);
    font-size: .65rem
}

.pillars-accordion summary h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 400
}

.pillars-accordion summary h3 small {
    display: inline-block;
    margin-left: 12px;
    font-family: var(--sans);
    font-size: .64rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #aaa29a
}

.pillars-accordion summary>i {
    justify-self: end;
    transition: transform .25s
}

.pillars-accordion details[open] summary>i {
    transform: rotate(45deg)
}

.pillar-detail {
    padding: 0 28px 32px 54px
}

.pillar-detail>p {
    color: #c7c0b8;
    max-width: 720px;
    margin: 0 0 20px
}

.scriptures {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.scriptures a {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    transition: .2s
}

.scriptures a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--ink)
}

.footer-brand>p {
    max-width: 440px;
    margin: 26px 0 0;
    color: rgba(23, 21, 19, .72)
}

@media(max-width:1100px) {
    .hero {
        width: calc(100% - 20px) !important;
        margin: 0 10px;
        border-radius: 0 0 80px 0 !important
    }

    .site-header .brand {
        width: 180px;
        height: 50px
    }

    .site-header.scrolled .brand {
        width: 165px;
        height: 44px
    }

    .hero-content {
        width: calc(100% - 50px)
    }

    .pillars-content {
        padding-top: 90px;
        padding-bottom: 90px
    }
}

@media(max-width:560px) {
    .hero {
        width: calc(100% - 12px) !important;
        margin: 0 6px;
        min-height: 94svh;
        border-radius: 0 0 52px 0 !important
    }

    .hero h1 {
        font-size: clamp(4.1rem, 18vw, 6.2rem)
    }

    .hero-content {
        width: calc(100% - 40px);
        padding-top: 25vh
    }

    .site-header .brand,
    .site-header.scrolled .brand {
        width: 155px;
        height: 44px
    }

    .hero-service {
        display: block;
        right: 20px;
        bottom: 22px;
        padding: 12px 15px;
        border-radius: 20px 0 20px 0
    }

    .hero-service span {
        font-size: .52rem
    }

    .hero-service strong {
        font-size: .64rem
    }

    .event {
        grid-template-columns: 58px 1fr 34px
    }

    .event-date-block {
        width: 54px;
        height: 64px;
        border-radius: 18px 0 18px 0
    }

    .event-date-block strong {
        font-size: 1.8rem
    }

    .pillars-intro {
        margin-top: -20px
    }

    .pillars-accordion summary {
        grid-template-columns: 28px 1fr 22px;
        gap: 8px
    }

    .pillars-accordion summary h3 {
        font-size: 1.55rem
    }

    .pillars-accordion summary h3 small {
        display: block;
        margin: 3px 0 0
    }

    .pillar-detail {
        padding-left: 36px
    }

    .scriptures a {
        font-size: .58rem
    }
}

.footer-brand img {
    display: none
}

.hero {
    width: 100% !important;
    margin: 0 !important;
    min-height: 100svh !important;
    border-radius: 0 !important
}

.hero-service {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    backdrop-filter: none !important
}

.event-date-block {
    width: 60px !important;
    height: auto !important;
    align-items: flex-start !important;
    border: 0 !important;
    border-radius: 0 !important
}

.event-date-block strong {
    color: var(--orange);
    font-size: 2.5rem !important
}

.event-date-block span {
    margin-left: 3px
}

.site-footer {
    margin: 0 0 0 14px !important;
    border-radius: 100px 0 0 0 !important;
    padding-bottom: 32px
}

.detail-hero {
    position: relative;
    min-height: 88svh;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 170px 0 80px;
    overflow: hidden
}

.detail-hero>img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover
}

.detail-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 8, 7, .82), rgba(10, 8, 7, .05) 70%)
}

.detail-hero .section-shell {
    position: relative;
    z-index: 1
}

.detail-hero h1 {
    max-width: 1000px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(4.2rem, 9vw, 9rem);
    font-weight: 400;
    line-height: .86;
    letter-spacing: -.05em
}

.detail-hero h1 em {
    color: #f4a98c;
    font-weight: 400
}

.activity-facts {
    position: relative;
    z-index: 2;
    background: var(--orange);
    margin: -1px 14px 0;
    border-radius: 0 0 70px 0
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 0
}

.fact span {
    display: block;
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 8px
}

.fact strong {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 400
}

.detail-content {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 10vw
}

.detail-content .intro {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.13;
    margin: 0 0 45px
}

.detail-content p {
    color: #5f5851;
    font-size: 1.05rem
}

.detail-side {
    border-top: 1px solid var(--line)
}

.detail-side>div {
    padding: 24px 0;
    border-bottom: 1px solid var(--line)
}

.detail-side span {
    display: block;
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .13em;
    margin-bottom: 8px;
    color: #777
}

.listing-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 55px
}

.filter-chip {
    padding: 9px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em
}

.filter-chip.active,
.filter-chip:hover {
    background: var(--ink);
    color: #fff
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px
}

.story-card {
    grid-column: span 4;
    background: var(--cream);
    overflow: hidden;
    border-radius: 0 45px 0 45px
}

.story-card.featured {
    grid-column: span 8
}

.story-card figure {
    margin: 0;
    height: 310px;
    overflow: hidden
}

.story-card.featured figure {
    height: 480px
}

.story-card img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.story-card:hover img {
    transform: scale(1.03)
}

.story-card-body {
    padding: 28px
}

.story-card-body span {
    color: var(--orange);
    font-size: .64rem;
    text-transform: uppercase;
    letter-spacing: .12em
}

.story-card h2 {
    font-size: clamp(1.9rem, 3vw, 3.3rem);
    margin: 12px 0
}

.story-card p {
    color: #696159
}

.blog-hero {
    padding: 180px 0 80px;
    background: var(--cream)
}

.blog-hero h1 {
    max-width: 1050px;
    font-family: var(--serif);
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 400;
    line-height: .88;
    letter-spacing: -.05em;
    margin: 22px 0 35px
}

.blog-meta {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .1em
}

.blog-cover {
    width: min(100% - 28px, 1450px);
    height: min(72vw, 780px);
    margin: auto;
    border-radius: 0 80px 0 80px;
    overflow: hidden
}

.blog-cover img {
    height: 100%;
    object-fit: cover
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) 230px;
    gap: 10vw;
    align-items: start
}

.blog-copy .lead {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.2;
    color: var(--ink)
}

.blog-copy p {
    font-size: 1.08rem;
    color: #544e48
}

.blog-copy h2 {
    font-size: clamp(2.5rem, 4vw, 4.4rem);
    margin: 60px 0 24px
}

.blog-copy blockquote {
    margin: 60px 0;
    padding-left: 28px;
    border-left: 3px solid var(--orange);
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.12
}

.share-panel {
    position: sticky;
    top: 120px;
    border-top: 1px solid var(--line)
}

.share-panel div {
    padding: 22px 0;
    border-bottom: 1px solid var(--line)
}

.share-panel span {
    display: block;
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .13em;
    margin-bottom: 8px;
    color: #777
}

@media(max-width:900px) {
    .site-footer {
        margin-left: 7px !important;
        border-radius: 60px 0 0 0 !important
    }

    .facts-grid {
        grid-template-columns: 1fr 1fr
    }

    .detail-content,
    .blog-layout {
        grid-template-columns: 1fr
    }

    .stories-grid {
        grid-template-columns: 1fr
    }

    .story-card,
    .story-card.featured {
        grid-column: auto
    }

    .share-panel {
        position: relative;
        top: auto
    }

    .detail-hero {
        min-height: 75svh
    }

    .blog-cover {
        border-radius: 0 50px 0 50px
    }
}

@media(max-width:560px) {
    .hero-service {
        right: 18px !important;
        bottom: 24px !important
    }

    .facts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }

    .activity-facts {
        margin: 0 6px;
        border-radius: 0 0 45px 0
    }

    .detail-hero h1 {
        font-size: clamp(3.8rem, 17vw, 6rem)
    }

    .story-card figure,
    .story-card.featured figure {
        height: 70vw
    }

    .blog-cover {
        width: calc(100% - 12px);
        height: 90vw;
        border-radius: 0 34px 0 34px
    }

    .blog-hero {
        padding-top: 145px
    }

    .blog-hero h1 {
        font-size: clamp(3.6rem, 16vw, 5.8rem)
    }
}

.service-grid {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 1.15fr) !important;
    align-items: stretch !important;
    gap: clamp(40px, 7vw, 110px) !important
}

.service-grid>div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.service-grid h2 {
    max-width: 620px
}

.service-panel {
    background: var(--ink);
    color: var(--paper);
    padding: 34px 38px;
    border-radius: 0 44px 0 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 34px
}

.service-panel .service-details {
    grid-template-columns: 1fr 1.2fr;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .18)
}

.service-panel .service-action {
    justify-content: space-between
}

.service-panel .service-action p {
    color: #cfc7bf
}

.service-panel .circle-link {
    order: 2;
    background: var(--orange);
    color: var(--ink);
    border: 0
}

.pillars-image {
    border-radius: 0 !important
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 70px
}

.pagination a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: .76rem;
    transition: .2s
}

.pagination .page-number:hover,
.pagination .page-number.active {
    background: var(--orange);
    color: var(--ink)
}

.pagination .page-arrow {
    border: 1px solid var(--line)
}

.pagination .page-arrow:hover {
    background: var(--ink);
    color: #fff
}

.pagination .disabled {
    opacity: .3;
    pointer-events: none
}

@media(max-width:900px) {
    .service-grid {
        grid-template-columns: 1fr !important
    }

    .service-panel {
        border-radius: 0 36px 0 36px
    }

    .service-panel .service-details {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:560px) {
    .service-panel {
        padding: 28px 24px;
        border-radius: 0 28px 0 28px
    }

    .service-panel .service-details {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .pagination {
        margin-top: 50px
    }

    .pagination a {
        width: 38px;
        height: 38px
    }
}

/* Activity detail refinements */
.activity-facts {
    width: 100%;
    margin: 0 !important;
    padding: 0 max(28px, calc((100vw - 1240px)/2)) !important;
    border-radius: 0 !important;
    background: var(--ink) !important;
    color: #fff !important
}

.activity-facts .section-shell {
    width: 100%
}

.activity-facts .fact span {
    color: rgba(255, 255, 255, .58)
}

.activity-facts .fact strong {
    color: #fff
}

.expectation-block {
    margin-top: 52px;
    padding-top: 42px;
    border-top: 1px solid var(--line)
}

.expectation-block>p {
    max-width: 680px;
    color: #665f58
}

.expectation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px
}

.expectation-grid article {
    min-height: 220px;
    padding: 28px;
    background: #f2eee8;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.expectation-grid article>span {
    font: 500 .72rem/1 var(--sans);
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--orange)
}

.expectation-grid h3 {
    margin: 34px 0 10px;
    font-size: clamp(1.75rem, 2.5vw, 2.7rem)
}

.expectation-grid p {
    margin: 0;
    color: #665f58
}

.activity-cta {
    margin-top: 14px;
    padding: 34px;
    background: var(--orange);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.activity-cta h3 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3.2rem)
}

.activity-cta p {
    margin: 8px 0 0;
    max-width: 620px;
    color: var(--ink)
}

/* Blog detail: photography and title form one strong opening */
.blog-hero-image {
    position: relative;
    min-height: 88svh;
    padding: 180px 0 82px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #111;
    color: #fff
}

.blog-hero-image>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.blog-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .12) 15%, rgba(0, 0, 0, .82) 100%)
}

.blog-hero-image .section-shell {
    position: relative;
    z-index: 2;
    width: min(100% - 48px, 1240px)
}

.blog-hero-image h1 {
    max-width: 1040px;
    margin: 14px 0 26px;
    color: #fff;
    text-wrap: balance
}

.blog-hero-image .eyebrow,
.blog-hero-image .blog-meta {
    color: #fff
}

.blog-page .site-header {
    background: transparent;
    color: #fff;
    box-shadow: none
}

.blog-page .site-header .brand img {
    filter: brightness(0) invert(1)
}

.blog-page .site-header.scrolled {
    background: rgba(252, 250, 247, .94);
    color: var(--ink);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06)
}

.blog-page .site-header.scrolled .brand img {
    filter: none
}

.share-icons {
    display: flex;
    gap: 9px;
    flex-wrap: wrap
}

.share-icons a {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font: 400 1rem/1 var(--sans) !important;
    transition: .2s ease
}

.share-icons a:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff
}

@media(max-width:760px) {
    .activity-facts {
        padding: 0 28px !important
    }

    .expectation-grid {
        grid-template-columns: 1fr
    }

    .expectation-grid article {
        min-height: auto
    }

    .activity-cta {
        align-items: flex-start;
        flex-direction: column
    }

    .blog-hero-image {
        min-height: 78svh;
        padding: 140px 0 56px
    }

    .blog-hero-image .section-shell {
        width: calc(100% - 36px)
    }
}

.eyebrow {
    display: none
}

.pillars .eyebrow,
.contact .eyebrow,
.next-service .eyebrow {
    display: block
}

.photo-page .site-header {
    background: transparent;
    color: #fff;
    box-shadow: none
}

.photo-page .site-header .brand img {
    filter: brightness(0) invert(1)
}

.photo-page .site-header.scrolled {
    background: rgba(252, 250, 247, .94);
    color: var(--ink);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06)
}

.photo-page .site-header.scrolled .brand img {
    filter: none
}

.photo-page .detail-hero:before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0 0 auto;
    height: 190px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .62), transparent);
    pointer-events: none
}

.photo-page .detail-hero .section-shell {
    z-index: 2
}

.blog-hero-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, .58) 0, rgba(0, 0, 0, .08) 24%, rgba(0, 0, 0, .84) 100%)
}

.activity-story figure {
    margin: 48px 0;
    overflow: hidden
}

.activity-story figure img {
    aspect-ratio: 16/10;
    object-fit: cover
}

.activity-story h2 {
    margin: 48px 0 22px;
    font-size: clamp(2.6rem, 4vw, 4.6rem)
}

.activity-story a {
    text-decoration: underline;
    text-underline-offset: 4px
}

.share-panel .share-icons {
    padding: 0;
    border: 0
}

.footer-bottom p:nth-child(2) a {
    border-bottom: 1px solid currentColor
}

@media(max-width:560px) {
    .footer-bottom {
        grid-template-columns: 1fr
    }

    .footer-bottom p:nth-child(2) {
        display: block;
        text-align: left
    }

    .footer-bottom>a {
        text-align: left;
        margin-top: 8px
    }
}

/* Headings keep their intended width after removing the small eyebrow labels. */
.split-heading {
    grid-template-columns: 1fr;
    margin-bottom: 64px
}

.split-heading h2 {
    max-width: 980px
}

@media(max-width:900px) {
    .split-heading {
        margin-bottom: 42px
    }
}

/* Giving + building fund */
.giving-hero {
    position: relative;
    min-height: 94svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #151311;
    color: #fff;
    padding: 180px 0 90px
}

.giving-hero>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%
}

.giving-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .08) 35%, rgba(0, 0, 0, .82)), linear-gradient(90deg, rgba(0, 0, 0, .66), transparent 70%)
}

.giving-hero-content {
    position: relative;
    z-index: 2
}

.giving-hero h1 {
    max-width: 950px;
    margin: 0;
    font: 400 clamp(4.7rem, 10vw, 10rem)/.82 var(--serif);
    letter-spacing: -.055em
}

.giving-hero h1 em {
    color: #f2a98e;
    font-weight: 400
}

.giving-hero-content>p {
    max-width: 600px;
    margin: 38px 0 32px;
    font-size: 1.08rem
}

.giving-intro {
    background: var(--paper)
}

.giving-intro-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 10vw;
    align-items: end
}

.giving-intro-grid>div>p:last-child {
    color: #625b54
}

.giving-lead {
    font: 400 clamp(1.65rem, 2.6vw, 2.55rem)/1.2 var(--serif);
    color: inherit
}

.giving-route-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 80px
}

.giving-route {
    position: relative;
    min-height: 390px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.giving-route-orange {
    background: var(--orange)
}

.giving-route-dark {
    background: var(--ink);
    color: #fff
}

.giving-route>span {
    font-size: .65rem;
    letter-spacing: .14em
}

.giving-route h3 {
    margin: 0 0 18px;
    font: 400 clamp(2.7rem, 4vw, 4.8rem)/.93 var(--serif);
    letter-spacing: -.04em
}

.giving-route p {
    max-width: 430px;
    margin: 0;
    color: inherit;
    opacity: .74
}

.giving-route>i {
    position: absolute;
    right: 32px;
    top: 32px;
    font-size: 1.35rem;
    transition: transform .25s
}

.giving-route:hover>i {
    transform: translate(6px, 6px)
}

.giving-methods {
    background: var(--cream)
}

.giving-heading {
    display: grid;
    grid-template-columns: 1.15fr .65fr;
    gap: 10vw;
    align-items: end;
    margin-bottom: 75px
}

.giving-heading>p {
    color: #625b54;
    margin: 0
}

.giving-method-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 18px
}

.giving-method {
    background: var(--paper);
    padding: 36px;
    min-height: 315px;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.giving-method-featured {
    grid-row: span 2;
    min-height: 648px;
    background: var(--orange)
}

.giving-method>span {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .11em
}

.giving-method>span i {
    margin-right: 8px
}

.giving-method h3 {
    font-size: clamp(2.3rem, 4vw, 4.8rem);
    margin: auto 0 22px
}

.giving-method p {
    color: #625b54;
    margin: 0 0 24px
}

.bank-details {
    display: grid;
    gap: 3px;
    margin: 20px 0 34px
}

.bank-details small {
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .6rem
}

.bank-details strong {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    word-break: break-word
}

.building-fund {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 960px;
    background: var(--ink);
    color: #fff
}

.building-fund-image {
    min-height: 720px
}

.building-fund-image img {
    height: 100%;
    object-fit: cover
}

.building-fund-content {
    padding: 110px clamp(40px, 7vw, 110px);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.building-fund-content h2 {
    margin-bottom: 42px
}

.building-fund-content>p:not(.giving-lead) {
    color: #bcb3aa
}

.fund-reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 48px 0
}

.fund-reasons>div {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .22)
}

.fund-reasons span {
    font-size: .62rem;
    color: var(--orange)
}

.fund-reasons h3 {
    font: 400 1.8rem/1.1 var(--serif);
    margin: 20px 0 10px
}

.fund-reasons p {
    color: #aaa29a;
    margin: 0
}

.fund-levels {
    background: var(--paper)
}

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

.level-grid article {
    min-height: 300px;
    padding: 26px;
    background: var(--cream);
    display: flex;
    flex-direction: column
}

.level-grid article>span {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .65rem
}

.level-grid strong {
    margin: auto 0 0;
    font: 400 clamp(3.2rem, 5vw, 5.7rem)/1 var(--serif)
}

.level-grid small {
    text-transform: uppercase;
    letter-spacing: .1em
}

.level-grid .level-featured {
    background: var(--orange)
}

.fund-actions {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px
}

.giving-note {
    margin-top: 40px;
    color: #756e66;
    font-size: .8rem
}

.giving-note i {
    margin-right: 8px
}

.giving-closing {
    background: var(--orange);
    text-align: center
}

.giving-closing p {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .68rem
}

.giving-closing h2 {
    max-width: 1050px;
    margin: 25px auto 45px
}

.giving-closing h2 em {
    color: #fff
}

@media(max-width:900px) {
    .giving-hero {
        min-height: 84svh
    }

    .giving-intro-grid,
    .giving-heading {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .giving-route-grid {
        margin-top: 55px
    }

    .giving-method-grid {
        grid-template-columns: 1fr
    }

    .giving-method-featured {
        grid-row: auto;
        min-height: 520px
    }

    .building-fund {
        grid-template-columns: 1fr
    }

    .building-fund-image {
        min-height: 70vw
    }

    .building-fund-content {
        padding: 85px 28px
    }

    .level-grid {
        grid-template-columns: 1fr 1fr
    }

    .fund-actions {
        align-items: flex-start;
        flex-direction: column
    }
}

@media(max-width:560px) {
    .giving-hero {
        padding: 140px 0 55px;
        min-height: 82svh
    }

    .giving-hero h1 {
        font-size: clamp(4rem, 18vw, 6.4rem)
    }

    .giving-route-grid,
    .level-grid {
        grid-template-columns: 1fr
    }

    .giving-route {
        min-height: 310px;
        padding: 28px
    }

    .giving-method {
        padding: 28px
    }

    .giving-method-featured {
        min-height: 470px
    }

    .fund-reasons {
        grid-template-columns: 1fr
    }

    .building-fund-image {
        min-height: 100vw
    }

    .level-grid article {
        min-height: 240px
    }

    .giving-closing {
        text-align: left
    }
}

/* Giving page v2 — editorial, calm and aligned with the new site */
.give-hero {
    position: relative;
    min-height: 96svh;
    padding: 180px 0 80px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #111;
    color: #fff
}

.give-hero>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%
}

.give-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .08) 35%, rgba(0, 0, 0, .82)), linear-gradient(90deg, rgba(0, 0, 0, .4), transparent 70%)
}

.give-hero-inner {
    position: relative;
    z-index: 2
}

.give-hero h1 {
    margin: 0;
    font: 400 clamp(4.8rem, 10vw, 10rem)/.82 var(--serif);
    letter-spacing: -.055em
}

.give-hero h1 em {
    color: #f2a98e;
    font-weight: 400
}

.give-hero-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: end;
    margin-top: 45px
}

.give-hero-bottom p {
    max-width: 570px;
    margin: 0;
    font-size: 1.08rem
}

.give-opening-grid {
    display: grid;
    grid-template-columns: 1.1fr .7fr;
    gap: 11vw;
    align-items: end
}

.give-large-copy {
    font: 400 clamp(1.65rem, 2.6vw, 2.6rem)/1.2 var(--serif);
    color: inherit
}

.give-opening-grid>div>p:last-child {
    color: #625b54
}

.give-general {
    background: var(--cream)
}

.give-section-heading {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 75px
}

.give-section-heading>span,
.give-fund-text>span,
.give-form-intro>span,
.give-once span {
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: .65rem;
    font-weight: 700
}

.give-options {
    border-top: 1px solid var(--line)
}

.give-options article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    padding: 44px 0;
    border-bottom: 1px solid var(--line)
}

.give-options article>div:first-child>span {
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .62rem;
    color: var(--orange);
    font-weight: 700
}

.give-options h3 {
    margin: 0;
    font: 400 clamp(2rem, 3vw, 3.4rem)/1 var(--serif)
}

.give-option-copy p {
    max-width: 520px;
    margin: 0 0 24px;
    color: #625b54
}

.give-option-copy dl {
    margin: 0;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 6px 24px
}

.give-option-copy dt {
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .6rem;
    color: #756e66
}

.give-option-copy dd {
    margin: 0;
    font-weight: 600
}

.give-fund-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 930px;
    background: var(--ink);
    color: #fff
}

.give-fund-photo {
    min-height: 680px
}

.give-fund-photo img {
    height: 100%;
    object-fit: cover
}

.give-fund-text {
    padding: 105px clamp(40px, 7vw, 105px);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.give-fund-text>span {
    color: var(--orange);
    margin-bottom: 34px
}

.give-fund-text h2 {
    margin-bottom: 42px
}

.give-fund-text>p:not(.give-large-copy) {
    color: #bcb3aa
}

.give-fund-points {
    margin: 44px 0;
    border-top: 1px solid rgba(255, 255, 255, .2)
}

.give-fund-points p {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 28px;
    margin: 0;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    color: #aaa29a
}

.give-fund-points strong {
    color: #fff;
    font-weight: 500
}

.give-form-section {
    background: var(--paper)
}

.give-form-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 10vw;
    align-items: start
}

.give-form-intro {
    position: sticky;
    top: 125px
}

.give-form-intro>span {
    color: var(--orange)
}

.give-form-intro h2 {
    margin: 28px 0 36px
}

.give-form-intro>p:not(.give-tax-note) {
    color: #625b54
}

.give-tax-note {
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: .78rem;
    color: #756e66
}

.give-tax-note i {
    margin-right: 8px
}

.give-form fieldset {
    margin: 0 0 52px;
    padding: 0;
    border: 0
}

.give-form legend {
    width: 100%;
    padding: 0 0 18px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--line);
    font: 400 1.6rem/1.2 var(--serif)
}

.give-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0
}

.give-amounts legend {
    grid-column: 1/-1
}

.give-amounts label {
    cursor: pointer
}

.give-amounts input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.give-amounts label span {
    display: flex;
    min-height: 140px;
    padding: 20px;
    border: 1px solid var(--line);
    border-right: 0;
    flex-direction: column;
    justify-content: flex-end;
    transition: .2s
}

.give-amounts label:last-child span {
    border-right: 1px solid var(--line)
}

.give-amounts strong {
    font: 400 2.5rem/1 var(--serif)
}

.give-amounts small {
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .58rem;
    margin-top: 8px
}

.give-amounts input:checked+span {
    background: var(--orange);
    border-color: var(--orange)
}

.give-fields {
    display: grid;
    gap: 22px
}

.give-fields-name {
    grid-template-columns: 1fr .55fr 1fr
}

.give-fields-half {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 22px
}

.give-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .62rem
}

.give-form input[type=text],
.give-form input[type=email],
.give-form input[type=tel] {
    width: 100%;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid var(--ink);
    border-radius: 0;
    background: transparent;
    font: 400 1rem var(--sans);
    outline: 0
}

.give-form input:focus {
    border-color: var(--orange)
}

.give-consent {
    display: grid !important;
    grid-template-columns: 20px 1fr;
    gap: 14px !important;
    align-items: start;
    margin: 10px 0 36px;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: .85rem !important
}

.give-consent input {
    width: 18px;
    height: 18px;
    accent-color: var(--orange)
}

.give-form-status {
    font-size: .72rem;
    color: #807970;
    margin-top: 18px
}

.give-once {
    background: var(--orange)
}

.give-once-inner {
    display: grid;
    grid-template-columns: 1.1fr .7fr;
    gap: 10vw;
    align-items: end
}

.give-once h2 {
    margin: 25px 0 0
}

.give-once-inner>div:last-child p {
    margin: 0 0 28px
}

.give-once .button-light {
    background: var(--ink);
    color: #fff
}

@media(max-width:900px) {
    .give-hero {
        min-height: 86svh
    }

    .give-hero-bottom,
    .give-opening-grid,
    .give-form-layout,
    .give-once-inner {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .give-section-heading {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .give-options article {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .give-fund-story {
        grid-template-columns: 1fr
    }

    .give-fund-photo {
        min-height: 70vw
    }

    .give-fund-text {
        padding: 85px 28px
    }

    .give-form-intro {
        position: relative;
        top: auto
    }

    .give-fields-name {
        grid-template-columns: 1fr 1fr
    }

    .give-fields-name label:last-child {
        grid-column: 1/-1
    }
}

@media(max-width:560px) {
    .give-hero {
        min-height: 82svh;
        padding: 140px 0 55px
    }

    .give-hero h1 {
        font-size: clamp(4rem, 18vw, 6.4rem)
    }

    .give-hero-bottom {
        margin-top: 32px
    }

    .give-section-heading {
        margin-bottom: 48px
    }

    .give-options article {
        padding: 34px 0
    }

    .give-option-copy dl {
        grid-template-columns: 1fr
    }

    .give-option-copy dd {
        margin-bottom: 14px
    }

    .give-fund-photo {
        min-height: 105vw
    }

    .give-fund-points p {
        grid-template-columns: 1fr;
        gap: 8px
    }

    .give-amounts {
        grid-template-columns: 1fr 1fr
    }

    .give-amounts label:nth-child(3) span {
        border-right: 1px solid var(--line)
    }

    .give-amounts label span {
        min-height: 115px
    }

    .give-fields-name,
    .give-fields-half {
        grid-template-columns: 1fr
    }

    .give-fields-name label:last-child {
        grid-column: auto
    }

    .give-fields-half {
        margin-bottom: 22px
    }
}

/* Clear visual transition between the final giving CTA and orange footer. */
.give-once {
    background: var(--ink);
    color: #fff
}

.give-once h2 em {
    color: var(--orange)
}

.give-once-inner>div:last-child p {
    color: #c8c0b8
}

.give-once .button-light {
    background: var(--orange);
    color: var(--ink)
}

.give-once .button-light:hover {
    background: #fff;
    color: var(--ink)
}

/* Giving page clarity pass */
.giving-page-v2 .section {
    padding: 110px 0
}

.give-hero {
    min-height: 82svh
}

.give-overview {
    padding: 105px 0;
    background: var(--paper)
}

.give-overview-intro {
    display: grid;
    grid-template-columns: 1fr .65fr;
    gap: 10vw;
    align-items: end;
    margin-bottom: 65px
}

.give-overview-intro p {
    max-width: 480px;
    margin: 0;
    color: #625b54
}

.give-overview-nav {
    border-top: 1px solid var(--line)
}

.give-overview-nav a {
    display: grid;
    grid-template-columns: 55px 1.1fr 1fr 24px;
    gap: 25px;
    align-items: center;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
    transition: .2s
}

.give-overview-nav a:hover {
    padding-left: 14px;
    color: var(--orange)
}

.give-overview-nav span {
    font-size: .62rem
}

.give-overview-nav strong {
    font: 400 clamp(1.45rem, 2.2vw, 2.15rem)/1.1 var(--serif)
}

.give-overview-nav small {
    color: #756e66
}

.give-overview-nav i {
    justify-self: end
}

.give-section-heading {
    margin-bottom: 52px
}

.give-options article {
    padding: 34px 0
}

.give-fund-story {
    min-height: 790px
}

.give-fund-text {
    padding-top: 80px;
    padding-bottom: 80px
}

.give-fund-text h2 {
    margin-bottom: 28px
}

.give-fund-points {
    margin: 32px 0
}

.give-form fieldset {
    margin-bottom: 42px
}

.give-once {
    background: var(--paper);
    color: var(--ink);
    border-top: 1px solid var(--line)
}

.give-once h2 em {
    color: var(--orange)
}

.give-once-inner>div:last-child p {
    color: #625b54
}

.give-once .button-light {
    background: var(--ink);
    color: #fff
}

.give-once .button-light:hover {
    background: var(--orange);
    color: var(--ink)
}

@media(max-width:900px) {
    .giving-page-v2 .section {
        padding: 85px 0
    }

    .give-overview {
        padding: 85px 0
    }

    .give-overview-intro {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 48px
    }

    .give-overview-nav a {
        grid-template-columns: 38px 1fr 22px
    }

    .give-overview-nav small {
        display: none
    }

    .give-fund-story {
        min-height: auto
    }
}

@media(max-width:560px) {
    .giving-page-v2 .section {
        padding: 70px 0
    }

    .give-overview {
        padding: 70px 0
    }

    .give-overview-nav a {
        gap: 12px;
        padding: 22px 0
    }

    .give-overview-nav strong {
        font-size: 1.35rem
    }
}

.site-header.scrolled,
.blog-page .site-header.scrolled,
.photo-page .site-header.scrolled {
    background: var(--paper) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important
}