:root {
    --cbf-black: #0f0f10;
    --cbf-ink: #17181a;
    --cbf-charcoal: #2d3034;
    --cbf-gray: #656b72;
    --cbf-silver: #b9bec4;
    --cbf-offwhite: #f4f1ec;
    --cbf-white: #ffffff;
    --cbf-shadow: 0 28px 60px rgba(15, 15, 16, 0.14);
    --cbf-radius: 28px;
    --cbf-page-background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 32%),
        linear-gradient(180deg, #ece8e2 0%, var(--cbf-offwhite) 24%, #fbfbfa 100%);
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
    background: var(--cbf-page-background);
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--cbf-charcoal);
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
    background: var(--cbf-page-background);
}

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

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

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

.section {
    padding: 6rem 0;
}

.section-kicker,
.eyebrow,
.service-number,
.location-card span {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.77rem;
    font-weight: 700;
}

.section-title,
.hero-section h1,
.contact-card h3,
.detail-title,
.page-hero-title,
.brand-name {
    font-family: "Cormorant Garamond", serif;
}

.site-nav {
    padding: 1.4rem 0;
    position: relative;
    z-index: 5;
}

.site-nav-dark {
    background: rgba(244, 241, 236, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(23, 24, 26, 0.08);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    padding: 0.2rem 0;
}

.brand-mark {
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    position: relative;
    flex: 0 0 auto;
}

.brand-mark picture {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
}

.brand-mark img {
    width: 86%;
    height: 86%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.brand-type {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.brand-name {
    font-size: 1.9rem;
    line-height: 0.9;
    letter-spacing: 0.08em;
    color: #d7dbe0;
}

.brand-tagline {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: rgba(226, 230, 235, 0.92);
    margin-top: 0.4rem;
}

.site-nav-dark .brand-name {
    color: var(--cbf-ink);
}

.site-nav-dark .brand-tagline {
    color: rgba(23, 24, 26, 0.62);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.nav-link {
    color: #d7dbe0;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-left: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
}

.nav-link:hover,
.nav-link:focus {
    color: #eef1f4;
    background: rgba(215, 219, 224, 0.12);
}

.nav-link-dark {
    color: rgba(23, 24, 26, 0.8);
}

.nav-link.active {
    color: var(--cbf-ink);
    background: rgba(244, 241, 236, 0.96);
}

.nav-link-dark.active {
    color: var(--cbf-white);
    background: var(--cbf-charcoal);
}

.nav-cta {
    border-radius: 999px;
    padding-inline: 1.4rem;
    font-weight: 700;
    border-width: 1px;
}

.btn-light.nav-cta {
    background: rgba(215, 219, 224, 0.14);
    color: #eef1f4;
    border-color: rgba(215, 219, 224, 0.42);
    backdrop-filter: blur(8px);
}

.btn-light.nav-cta:hover,
.btn-light.nav-cta:focus {
    background: rgba(238, 241, 244, 0.22);
    color: var(--cbf-white);
    border-color: rgba(238, 241, 244, 0.58);
}

.nav-cta-dark {
    background: var(--cbf-charcoal);
    color: var(--cbf-white);
    border-color: var(--cbf-charcoal);
}

.nav-cta-dark:hover,
.nav-cta-dark:focus {
    background: var(--cbf-black);
    color: var(--cbf-white);
    border-color: var(--cbf-black);
}

.hero-section {
    --hero-home-mobile: url("../../images/Hero-Images/Teddy-Headshot-Mobile.webp");
    --hero-home-tablet: url("../../images/Hero-Images/Teddy-Headshot-Tablet.webp");
    --hero-home-desktop: url("../../images/Hero-Images/Teddy-Headshot-Desktop.webp");
    color: #d7dbe0;
    position: relative;
    background:
        linear-gradient(90deg, rgba(15, 15, 16, 0.72), rgba(45, 48, 52, 0.46)),
        linear-gradient(180deg, rgba(15, 15, 16, 0.08), rgba(15, 15, 16, 0.48)),
        var(--hero-home-mobile) center/cover no-repeat;
}

.hero-section-home {
    min-height: auto;
}

.hero-section::after {
    content: none;
}

@media (min-width: 768px) {
    .hero-section {
        background:
            linear-gradient(90deg, rgba(15, 15, 16, 0.72), rgba(45, 48, 52, 0.46)),
            linear-gradient(180deg, rgba(15, 15, 16, 0.08), rgba(15, 15, 16, 0.48)),
            var(--hero-home-tablet) center/cover no-repeat;
    }
}

@media (min-width: 992px) {
    .hero-section-home {
        background:
            linear-gradient(90deg, rgba(15, 15, 16, 0.72), rgba(45, 48, 52, 0.46)),
            linear-gradient(180deg, rgba(15, 15, 16, 0.08), rgba(15, 15, 16, 0.48)),
            var(--hero-home-desktop) center 12%/cover no-repeat;
    }

    .hero-section-home .hero-content {
        min-height: 42rem;
        padding-top: 4rem;
        padding-bottom: 4.25rem;
    }
}

@media (min-width: 1200px) {
    .page-hero-content {
        min-height: 40rem;
        padding-top: 4.75rem;
        padding-bottom: 5.75rem;
    }

    .page-hero-image {
        object-position: center 18%;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 4rem;
    padding-bottom: 5rem;
    min-height: 34rem;
    display: flex;
    align-items: center;
}

.hero-text {
    width: min(100%, 46rem);
}

.eyebrow {
    color: rgba(226, 230, 235, 0.82);
    margin-bottom: 0.7rem;
}

.hero-section h1 {
    font-size: clamp(3rem, 5vw, 4.9rem);
    line-height: 0.98;
    max-width: none;
    margin-bottom: 1rem;
    color: #d7dbe0;
}

.hero-section .lead {
    max-width: 38rem;
    color: rgba(226, 230, 235, 0.88);
    font-size: 1.04rem;
    line-height: 1.8;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    max-width: 50rem;
}

.hero-fact {
    padding: 0.2rem 1.2rem 0.2rem 0;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-fact:last-child {
    border-right: 0;
}

.hero-fact span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 0.55rem;
}

.hero-fact strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: var(--cbf-white);
}

.hero-info-strip {
    margin-top: -1.5rem;
    position: relative;
    z-index: 2;
    padding-bottom: 0.75rem;
}

.hero-facts-strip {
    margin-top: 0;
    max-width: none;
    gap: 0;
    padding: 1.15rem 1.35rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(23, 24, 26, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(15, 15, 16, 0.08);
    backdrop-filter: blur(8px);
}

.hero-facts-strip .hero-fact {
    padding: 0 1.1rem;
    border-right: 1px solid rgba(23, 24, 26, 0.08);
}

.hero-facts-strip .hero-fact span {
    color: rgba(45, 48, 52, 0.48);
}

.hero-facts-strip .hero-fact strong {
    color: var(--cbf-ink);
    font-size: 1.22rem;
}

.btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 0.95rem 1.55rem;
}

.btn-primary {
    background: var(--cbf-white);
    color: var(--cbf-ink);
    border-color: var(--cbf-white);
}

.btn-primary:hover,
.btn-primary:focus {
    background: #e7e7e7;
    color: var(--cbf-ink);
    border-color: #e7e7e7;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    color: var(--cbf-ink);
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    color: var(--cbf-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.77rem;
}

.section-kicker {
    color: var(--cbf-gray);
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 0.98;
    color: var(--cbf-ink);
    margin-bottom: 1rem;
}

.facility-copy,
.contact-section p,
#about p,
.accent-panel p,
.detail-card p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #4a4f55;
}

.image-stack {
    position: relative;
    min-height: 560px;
}

.image-rotator {
    overflow: hidden;
}

.primary-image,
.secondary-image {
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--cbf-shadow);
}

.primary-image {
    width: min(100%, 530px);
    height: 560px;
}

.image-rotator .rotator-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 900ms ease;
}

.image-rotator .rotator-slide.is-active {
    opacity: 1;
}

.rotator-dots {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.rotator-dots span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.45);
    transition: background-color 250ms ease, transform 250ms ease;
}

.rotator-dots span.is-active {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.08);
}

.secondary-image {
    width: 260px;
    height: 320px;
    position: absolute;
    right: 0;
    bottom: -2rem;
    border: 8px solid rgba(255, 255, 255, 0.95);
}

.location-card {
    display: block;
    margin-top: 2rem;
    padding: 1.4rem 1.6rem;
    background: var(--cbf-white);
    border-left: 4px solid var(--cbf-charcoal);
    box-shadow: 0 16px 34px rgba(23, 24, 26, 0.08);
}

.location-link {
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.location-link:hover,
.location-link:focus {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(20, 20, 20, 0.12);
}

.location-card strong {
    display: block;
    font-size: 1.1rem;
    margin-top: 0.35rem;
}

.service-number {
    color: rgba(255, 255, 255, 0.55);
}

.gallery-card {
    background: var(--cbf-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 15, 16, 0.09);
    position: relative;
}

.gallery-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.gallery-card figcaption {
    padding: 1.2rem 1.3rem 1.4rem;
    font-weight: 600;
}

.homepage-feature img {
    height: 28rem;
}

.homepage-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#about .reveal {
    max-width: 44rem;
}

.detail-card {
    height: 100%;
    background: var(--cbf-white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(15, 15, 16, 0.08);
}

.bio-card {
    display: grid;
    grid-template-columns: minmax(17rem, 24rem) minmax(0, 1fr);
    gap: 2rem;
    align-items: stretch;
    padding: 0.5rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 241, 236, 0.9));
    box-shadow: 0 24px 60px rgba(15, 15, 16, 0.08);
}

.bio-photo-placeholder {
    min-height: 21rem;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(185, 190, 196, 0.45), rgba(244, 241, 236, 0.92));
    border: 1px dashed rgba(23, 24, 26, 0.22);
    border-radius: 24px;
    color: var(--cbf-charcoal);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    padding: 1.5rem;
}

.bio-photo {
    margin: 0;
    min-height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #d8d3ca;
    box-shadow: 0 16px 36px rgba(15, 15, 16, 0.14);
}

.bio-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 24rem;
    object-fit: cover;
    object-position: center 20%;
}

.bio-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.75rem 0.25rem 0.75rem 0;
}

.bio-copy p:last-child {
    margin-bottom: 0;
}

.facility-feature img {
    height: 100%;
    min-height: 34rem;
}

.facility-feature figcaption {
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    padding: 1rem 1.1rem;
    color: var(--cbf-white);
    background: linear-gradient(180deg, rgba(15, 15, 16, 0.1), rgba(15, 15, 16, 0.88));
    border-radius: 18px;
    font-weight: 600;
}

.facility-feature-small img {
    min-height: 16rem;
}

.feature-column {
    display: grid;
    grid-template-rows: minmax(16rem, 1fr) minmax(0, auto);
    gap: 1.25rem;
    height: 100%;
}

.feature-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 241, 236, 0.92));
}

.accent-panel .feature-panel .section-kicker,
.accent-panel .feature-panel .detail-title,
.accent-panel .feature-panel p,
.accent-panel .feature-panel li {
    color: var(--cbf-ink);
}

.facility-feature,
.feature-panel {
    height: 100%;
}

.feature-grid > [class*="col-"] {
    display: flex;
}

.feature-grid > [class*="col-"] > * {
    width: 100%;
}

.feature-list {
    margin: 0;
    padding-left: 1.2rem;
    color: #4a4f55;
    line-height: 1.9;
}

.feature-list li + li {
    margin-top: 0.35rem;
}

.approach-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.9fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 28px 60px rgba(10, 10, 10, 0.16);
    overflow: hidden;
}

.approach-copy {
    max-width: 36rem;
}

.approach-focus {
    margin-top: 1.75rem;
    padding: 1.4rem 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 242, 235, 0.98));
    border-radius: 24px;
    border: 1px solid rgba(23, 24, 26, 0.12);
    box-shadow: 0 18px 40px rgba(15, 15, 16, 0.14);
}

.accent-panel .approach-focus .section-kicker {
    color: #2a3136;
}

.approach-focus .feature-list,
.approach-focus .feature-list li {
    color: #17181a;
}

.approach-focus .feature-list li::marker {
    color: #76614c;
}

.approach-focus .feature-list li {
    font-weight: 600;
}

.approach-list {
    margin-top: 0.4rem;
}

.approach-visual {
    position: relative;
    min-height: 34rem;
}

.approach-visual::before {
    content: "";
    position: absolute;
    inset: 2.2rem 1.2rem 1.2rem 2.2rem;
    border-radius: 32px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.approach-photo-layer {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    border: 10px solid rgba(255, 255, 255, 0.96);
    box-shadow: 0 26px 48px rgba(0, 0, 0, 0.22);
    background: rgba(255, 255, 255, 0.98);
}

.approach-photo-back {
    width: 48%;
    top: 1.2rem;
    left: 0;
    z-index: 3;
    transform: rotate(-6deg);
}

.approach-photo-front {
    width: 74%;
    right: 0;
    bottom: 0;
    z-index: 1;
    transform: rotate(3deg);
}

.approach-photo-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approach-photo-back img {
    min-height: 18rem;
}

.approach-photo-front img {
    min-height: 28rem;
}

.gallery-card.wofford-brand-card {
    padding: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 241, 236, 0.95));
}

.gallery-card.wofford-brand-card img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    object-fit: contain;
}

.detail-title {
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: 0.9rem;
    color: var(--cbf-ink);
}

.accent-panel {
    background:
        linear-gradient(135deg, rgba(23, 24, 26, 0.96), rgba(72, 76, 82, 0.9)),
        linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 55%);
    color: var(--cbf-white);
}

.accent-panel .section-title,
.accent-panel .section-kicker,
.accent-panel p {
    color: var(--cbf-white);
}

.accent-panel .contact-card,
.accent-panel .contact-card h3,
.accent-panel .contact-card p,
.accent-panel .contact-card a,
.accent-panel .contact-card .obfuscated-link {
    color: var(--cbf-ink);
}

#about.accent-panel .section-title,
#about.accent-panel .section-kicker,
#about.accent-panel p {
    color: var(--cbf-white);
}

.team-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--cbf-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

.contact-card {
    background: var(--cbf-white);
    border-radius: var(--cbf-radius);
    padding: 2rem;
    box-shadow: 0 22px 55px rgba(15, 15, 16, 0.11);
}

.contact-card-photo {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(244, 241, 236, 0.84), rgba(255, 255, 255, 0.72)),
        url("../../images/Charming-Bay-Farm-Bruno-Pasture.webp") center/cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

#contact .contact-card,
#contact .contact-card h3,
#contact .contact-card p,
#contact .contact-card a,
#contact .contact-card .obfuscated-link {
    color: var(--cbf-ink) !important;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.55rem;
}

.contact-card a,
.detail-card a {
    color: var(--cbf-ink);
}

.obfuscated-link {
    word-break: break-word;
}

.page-hero {
    position: relative;
}

.page-hero-media {
    position: relative;
    color: #d7dbe0;
}

.page-hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 15, 16, 0.82), rgba(45, 48, 52, 0.48));
    z-index: 1;
}

.page-hero-picture {
    position: absolute;
    inset: 0;
    margin: 0;
}

.page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-hero-media .site-nav,
.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    padding-top: 4rem;
    padding-bottom: 5rem;
    min-height: 34rem;
    display: flex;
    align-items: center;
}

.page-hero-title {
    font-size: clamp(3rem, 5vw, 4.9rem);
    line-height: 0.98;
    margin-bottom: 1rem;
    color: #d7dbe0;
}

.page-hero .eyebrow {
    color: rgba(226, 230, 235, 0.82);
}

.page-hero-copy {
    max-width: 38rem;
    color: rgba(226, 230, 235, 0.88);
    font-size: 1.04rem;
    line-height: 1.8;
}

.site-footer {
    padding: 2.15rem 0 1.75rem;
    background:
        linear-gradient(180deg, rgba(15, 15, 16, 0.96), rgba(45, 48, 52, 0.98)),
        linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 55%);
    color: rgba(226, 230, 235, 0.88);
}

.footer-shell {
    display: grid;
    gap: 1.2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
    gap: 1.25rem 1.5rem;
    align-items: start;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(215, 219, 224, 0.14);
}

.footer-brand {
    max-width: 18rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 210px);
    margin-bottom: 0.65rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(180deg, rgba(244, 241, 236, 0.98), rgba(232, 228, 221, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 22px;
    box-shadow: 0 16px 32px rgba(10, 10, 10, 0.16);
}

.footer-logo picture,
.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(185, 190, 196, 0.72);
    margin-bottom: 0.7rem;
}

.footer-nav {
    display: grid;
    gap: 0.4rem;
    font-size: 0.96rem;
}

.footer-nav a,
.footer-credit a {
    color: #d7dbe0;
}

.footer-nav a:hover,
.footer-credit a:hover {
    color: #eef1f4;
}

.footer-photo-credit {
    margin: 0;
    color: rgba(185, 190, 196, 0.74);
    font-size: 0.9rem;
}

.footer-photo-credit a {
    color: #d7dbe0;
}

.footer-photo-credit a:hover {
    color: #eef1f4;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding-top: 0.1rem;
    color: rgba(185, 190, 196, 0.74);
    font-size: 0.9rem;
}

.back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 40;
    width: 3.5rem;
    height: 3.5rem;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 15, 16, 0.88);
    color: var(--cbf-white);
    box-shadow: 0 18px 34px rgba(15, 15, 16, 0.22);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease, bottom 180ms ease;
}

.back-to-top span {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top.is-lifted {
    bottom: 6.75rem;
}

.back-to-top:hover,
.back-to-top:focus-visible {
    background: rgba(23, 24, 26, 0.98);
}

.error-header {
    background: linear-gradient(180deg, rgba(15, 15, 16, 0.98), rgba(45, 48, 52, 0.96));
}

.error-header .site-nav,
.error-header .site-nav-dark {
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
}

.error-header .site-nav-dark .brand-name,
.error-header .site-nav-dark .brand-tagline,
.error-header .site-nav-dark .nav-link-dark {
    color: #d7dbe0;
}

.error-header .site-nav-dark .nav-link-dark:hover,
.error-header .site-nav-dark .nav-link-dark:focus {
    color: #eef1f4;
    background: rgba(215, 219, 224, 0.12);
}

.error-header .site-nav-dark .nav-link-dark.active {
    color: var(--cbf-white);
    background: rgba(215, 219, 224, 0.16);
}

.error-shell {
    min-height: calc(100vh - 16rem);
    display: flex;
    align-items: center;
}

.error-card {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
}

.error-code {
    margin: 0 0 0.35rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4rem, 12vw, 7rem);
    line-height: 0.9;
    color: var(--cbf-ink);
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.error-actions .btn-dark {
    background: var(--cbf-charcoal);
    border-color: var(--cbf-charcoal);
    color: var(--cbf-white);
}

.error-actions .btn-dark:link,
.error-actions .btn-dark:visited,
.error-actions .btn-dark span {
    color: var(--cbf-white);
}

.error-actions .btn-dark:hover,
.error-actions .btn-dark:focus {
    background: var(--cbf-black);
    border-color: var(--cbf-black);
    color: var(--cbf-white);
}

.legal-copy {
    max-width: 56rem;
}

.legal-copy h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--cbf-ink);
    margin: 2rem 0 0.75rem;
}

.legal-copy p {
    font-size: 1rem;
    line-height: 1.8;
    color: #45484d;
    margin-bottom: 1rem;
}

.legal-copy a {
    color: var(--cbf-ink);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.legal-list {
    margin: 0 0 1.25rem 1.25rem;
    padding: 0;
    color: #45484d;
}

.legal-list li {
    line-height: 1.8;
    margin-bottom: 0.55rem;
}

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

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

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(12, 12, 12, 0.88);
        border-radius: 22px;
        padding: 1rem 1rem 1.15rem;
        margin-top: 1rem;
    }

    .site-nav-dark .navbar-collapse {
        background: rgba(255, 255, 255, 0.96);
    }

    .nav-link {
        margin-left: 0;
        margin-bottom: 0.35rem;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-content {
        padding-top: 3rem;
        padding-bottom: 3.5rem;
        min-height: 28rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-facts {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .hero-fact {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        padding: 0 0 0.9rem;
    }

    .hero-fact:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .hero-info-strip {
        margin-top: -1rem;
    }

    .hero-facts-strip {
        gap: 0;
        padding: 1rem 1.1rem;
    }

    .hero-facts-strip .hero-fact {
        padding: 0 0 0.9rem;
        border-right: 0;
        border-bottom: 1px solid rgba(23, 24, 26, 0.08);
    }

    .hero-facts-strip .hero-fact:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .image-stack {
        min-height: auto;
    }

    .image-rotator {
        min-height: 300px;
    }

    .image-rotator .rotator-slide {
        position: static;
        opacity: 1;
    }

    .image-rotator .rotator-slide:not(.is-active) {
        display: none;
    }

    .rotator-dots {
        left: 1rem;
        bottom: 1rem;
    }

    .secondary-image {
        position: static;
        width: 100%;
        margin-top: 1rem;
        height: 260px;
    }

    .brand-name {
        font-size: 1.55rem;
    }

    .brand-tagline {
        font-size: 0.64rem;
    }

    .nav-cta {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }

    .brand-mark {
        width: 94px;
        height: 94px;
    }
}

@media (max-width: 767.98px) {
    .container,
    .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .navbar > .container {
        align-items: flex-start;
    }

    .navbar-brand.brand-lockup {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 5rem);
        margin-right: 0.75rem;
        white-space: normal;
    }

    .navbar-toggler {
        margin-left: auto;
        margin-top: 0.6rem;
        padding: 0.7rem 0.85rem;
        border-radius: 999px;
        background: rgba(12, 12, 12, 0.28);
        backdrop-filter: blur(8px);
    }

    .site-nav-dark .navbar-toggler {
        background: rgba(255, 255, 255, 0.92);
        border-color: rgba(23, 24, 26, 0.12);
    }

    .site-nav-dark .navbar-toggler-icon {
        filter: none;
    }

    .section {
        padding: 4.5rem 0;
    }

    .brand-lockup {
        gap: 0.75rem;
    }

    .brand-mark {
        width: 84px;
        height: 84px;
    }

    .brand-type {
        min-width: 0;
    }

    .brand-name {
        font-size: 1.32rem;
    }

    .brand-tagline {
        font-size: 0.56rem;
        letter-spacing: 0.14em;
    }

    .hero-section h1 {
        font-size: clamp(2.5rem, 11vw, 3.4rem);
        max-width: none;
    }

    .hero-info-strip {
        margin-top: -0.8rem;
    }

    .homepage-feature img {
        height: 22rem;
    }

    .hero-facts-strip {
        padding: 0.95rem 1rem;
        border-radius: 20px;
    }

    .hero-facts-strip .hero-fact strong {
        font-size: 1.12rem;
    }

    .hero-content {
        padding-top: 2.5rem;
        padding-bottom: 3.5rem;
        min-height: 22rem;
    }

    .page-hero-content {
        padding-top: 2.5rem;
        padding-bottom: 3.5rem;
        min-height: 22rem;
    }

    .team-card,
    .contact-card,
    .detail-card {
        padding: 1.5rem;
    }

    .primary-image,
    .gallery-card img {
        height: 300px;
    }

    .facility-feature img,
    .facility-feature-small img {
        height: 20rem;
        min-height: 20rem;
    }

    .feature-column {
        grid-template-rows: auto auto;
    }

    .bio-card {
        grid-template-columns: 1fr;
    }

    .approach-shell {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .approach-copy {
        max-width: none;
    }

    .approach-visual {
        min-height: 24rem;
    }

    .approach-visual::before {
        inset: 1.25rem 0.5rem 0.5rem 1.25rem;
        border-radius: 24px;
    }

    .approach-photo-layer {
        border-width: 6px;
        border-radius: 22px;
    }

    .approach-photo-back {
        width: 46%;
        top: 0.75rem;
    }

    .approach-photo-front {
        width: 78%;
    }

    .approach-photo-back img {
        min-height: 12rem;
    }

    .approach-photo-front img {
        min-height: 20rem;
    }

    .page-hero-title {
        font-size: clamp(2.5rem, 11vw, 3.4rem);
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .back-to-top {
        right: 1rem;
        width: 3.2rem;
        height: 3.2rem;
    }
}

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

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

    .image-rotator .rotator-slide,
    .rotator-dots span {
        transition: none;
    }
}

.instagram-ribbon-section {
    padding-top: 3.25rem;
}

.instagram-ribbon {
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 48px rgba(10, 10, 10, 0.16);
}

.instagram-ribbon-title {
    max-width: 34rem;
    margin-bottom: 0.85rem;
}

.instagram-ribbon-copy {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.84);
}

.instagram-ribbon-actions {
    margin-top: 1.5rem;
}

.instagram-ribbon-panel {
    height: 100%;
    padding: 1.6rem 1.75rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(244, 241, 236, 0.98), rgba(233, 228, 220, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 18px 36px rgba(10, 10, 10, 0.12);
}

.instagram-ribbon-panel .section-kicker {
    color: rgba(45, 48, 52, 0.62);
    margin-bottom: 0.7rem;
}

.instagram-ribbon-panel strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.1rem;
    line-height: 1;
    color: var(--cbf-ink);
    margin-bottom: 0.7rem;
}

.instagram-ribbon-panel p {
    margin: 0;
    color: #4a4f55;
    line-height: 1.8;
}

@media (max-width: 767.98px) {
    
.instagram-ribbon-section {
        padding-top: 2.25rem;
    }

    .instagram-ribbon {
        padding: 1.4rem;
        border-radius: 24px;
    }

    .instagram-ribbon-panel {
        padding: 1.35rem 1.4rem;
    }
}
.instagram-icon {
    display: inline-block;
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
}

.nav-social-item {
    margin-left: 0.4rem;
}

.nav-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
}

.nav-social-label {
    display: none;
}

@media (min-width: 992px) {
    .nav-social-link {
        width: 2.8rem;
        height: 2.8rem;
        margin-left: 0.25rem;
        padding: 0;
        border-radius: 999px;
    }
}
.instagram-chip,
.instagram-ribbon-button {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.instagram-chip {
    margin-bottom: 1rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #eef1f4;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.instagram-chip-icon,
.instagram-button-icon {
    width: 1rem;
    height: 1rem;
}

.instagram-ribbon-button {
    justify-content: center;
}

.instagram-ribbon-panel .section-kicker {
    color: inherit;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .nav-social-item {
        width: 100%;
        margin-left: 0;
    }

    .nav-social-link {
        width: 100%;
        justify-content: flex-start;
        margin-left: 0;
    }

    .nav-social-label {
        display: inline;
    }

    .nav-cta-item {
        margin-top: 0.25rem;
    }
}

@media (max-width: 767.98px) {
    .instagram-chip {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.85rem;
    }

    .instagram-ribbon-actions {
        margin-top: 1.25rem;
    }

    .instagram-ribbon-button {
        width: 100%;
    }

    .instagram-ribbon-panel strong {
        font-size: 1.85rem;
    }
}

.contact-instagram-card {
    text-align: center;
}

.contact-instagram-heading {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}

.contact-instagram-heading .section-kicker {
    margin: 0;
}

.contact-instagram-icon {
    width: 1rem;
    height: 1rem;
    color: var(--cbf-charcoal);
}

.contact-instagram-link {
    font-weight: 700;
}

@media (max-width: 767.98px) {
    
.contact-instagram-card {
        text-align: left;
    }

    .contact-instagram-heading {
        margin-bottom: 0.75rem;
    }
}
.instagram-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.instagram-inline-icon,
.nav-social-icon {
    transition: transform 180ms ease, color 180ms ease;
}

.instagram-inline-icon {
    width: 0.95rem;
    height: 0.95rem;
}

.nav-social-link,
.instagram-inline-link,
.contact-instagram-link,
.instagram-ribbon-button,
.instagram-chip,
.instagram-ribbon-panel {
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav-social-link:hover,
.nav-social-link:focus-visible {
    transform: translateY(-1px);
}

.nav-social-link:hover .nav-social-icon,
.nav-social-link:focus-visible .nav-social-icon,
.instagram-inline-link:hover .instagram-inline-icon,
.instagram-inline-link:focus-visible .instagram-inline-icon {
    transform: scale(1.08);
}

.instagram-inline-link:hover,
.instagram-inline-link:focus-visible,
.contact-instagram-link:hover,
.contact-instagram-link:focus-visible {
    color: #eef1f4;
}

.instagram-ribbon {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(233, 228, 220, 0.16), transparent 26%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
}

.instagram-ribbon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 42%);
    pointer-events: none;
}

.instagram-ribbon > * {
    position: relative;
    z-index: 1;
}

.instagram-chip {
    box-shadow: 0 12px 24px rgba(10, 10, 10, 0.12);
}

.instagram-ribbon-button {
    gap: 0.7rem;
    box-shadow: 0 16px 28px rgba(10, 10, 10, 0.18);
}

.instagram-ribbon-button:hover,
.instagram-ribbon-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(10, 10, 10, 0.22);
}

.instagram-ribbon-panel:hover,
.instagram-ribbon-panel:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(10, 10, 10, 0.16);
}

.contact-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.contact-instagram-link:hover,
.contact-instagram-link:focus-visible {
    color: var(--cbf-black);
}

@media (max-width: 767.98px) {
    .nav-social-link:hover,
    .nav-social-link:focus-visible,
    .instagram-ribbon-button:hover,
    .instagram-ribbon-button:focus-visible,
    .instagram-ribbon-panel:hover,
    .instagram-ribbon-panel:focus-within {
        transform: none;
    }
}

.footer-nav-block .instagram-inline-link {
    justify-self: start;
    align-items: center;
    min-height: 1.6rem;
}

.footer-nav-block .instagram-inline-icon {
    width: 0.9rem;
    height: 0.9rem;
}

.footer-nav-block .instagram-inline-link span {
    line-height: 1.4;
}

.footer-nav-block {
    display: grid;
    align-content: start;
    gap: 0.25rem;
}

.footer-nav {
    gap: 0.48rem;
}

.footer-nav a {
    line-height: 1.45;
}

.instagram-ribbon-image {
    display: block;
    padding: 0.5rem;
    overflow: hidden;
}

.instagram-ribbon-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
}

.instagram-ribbon-image:hover,
.instagram-ribbon-image:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(10, 10, 10, 0.16);
}

.footer-top {
    grid-template-columns: minmax(0, 1.05fr) repeat(2, minmax(0, 0.9fr));
    gap: 1.3rem 1.65rem;
}

.footer-brand {
    display: grid;
    align-content: start;
    gap: 0.35rem;
    max-width: 16rem;
}

.footer-connect-list {
    gap: 0.75rem;
}

.footer-connect-item {
    display: grid;
    gap: 0.18rem;
}

.footer-connect-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(185, 190, 196, 0.62);
}

.footer-connect-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    color: #d7dbe0;
    line-height: 1.45;
}

.footer-connect-link:hover,
.footer-connect-link:focus-visible {
    color: #eef1f4;
}

.footer-connect-list .instagram-inline-link {
    justify-self: start;
}

.footer-inner p {
    margin: 0;
}

.footer-inner p:first-child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.55rem;
}

.footer-legal-links {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem 0.55rem;
    margin-left: 0.35rem;
    white-space: normal;
}

.footer-legal-links a {
    color: #d7dbe0;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
    color: #eef1f4;
}

.wofford-home-card {
    max-width: 31rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0.55rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 228, 220, 0.94));
    box-shadow: 0 22px 44px rgba(10, 10, 10, 0.16);
}

.wofford-home-card img {
    border-radius: 18px;
}

.wofford-media-row {
    --bs-gutter-x: 1.75rem;
}

.wofford-section-header {
    text-align: left;
    max-width: 45rem;
    margin: 0;
}

.wofford-section-copy {
    max-width: 43rem;
    margin: 0;
}

.owner-contact-shell {
    position: relative;
    max-width: 35rem;
    margin: 0 auto;
    padding: 2.5rem 2.25rem;
    text-align: center;
    border-radius: 28px;
    border: 1px solid rgba(23, 24, 26, 0.08);
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.7), transparent 34%),
        linear-gradient(180deg, rgba(248, 245, 239, 0.97), rgba(242, 238, 231, 0.95));
    box-shadow: 0 20px 55px rgba(15, 15, 16, 0.08);
    overflow: hidden;
}

.owner-contact-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 22%, rgba(162, 123, 63, 0.09), transparent 26%),
        radial-gradient(circle at 24% 84%, rgba(115, 133, 110, 0.08), transparent 30%);
    pointer-events: none;
}

.owner-contact-shell .section-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: rgba(45, 48, 52, 0.74);
}

.owner-contact-shell .detail-title {
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
    font-size: clamp(2.45rem, 5vw, 3.2rem);
}

.owner-contact-role {
    position: relative;
    z-index: 1;
    margin-bottom: 0.85rem;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(45, 48, 52, 0.68);
}

.owner-contact-copy {
    position: relative;
    z-index: 1;
    max-width: 29rem;
    margin: 0 auto 1.1rem;
    font-size: 1.02rem;
    line-height: 1.8;
    color: #4a4f55;
}

.owner-contact-phone {
    position: relative;
    z-index: 1;
    margin: 0;
}

.owner-contact-link,
.owner-contact-phone .obfuscated-link {
    color: var(--cbf-ink);
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.wofford-team-card {
    width: 100%;
    max-width: 35rem;
    margin-left: 0;
    overflow: hidden;
}

.wofford-team-card img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: cover;
    border-radius: 0;
}

.wofford-side-card-shell {
    display: flex;
    height: 100%;
    align-items: stretch;
    justify-content: stretch;
    padding-top: 0.35rem;
}

.wofford-mark-card {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: linear-gradient(180deg, rgba(8, 8, 9, 0.98), rgba(20, 20, 22, 0.96));
    border: 1px solid rgba(192, 164, 112, 0.34);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.wofford-mark-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
    background: #0b0b0c;
}

@media (max-width: 991.98px) {
    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 18rem;
    }

    .wofford-home-card {
        max-width: 27rem;
    }

    .wofford-media-row {
        --bs-gutter-x: 1.5rem;
    }

    .wofford-section-header {
        max-width: none;
        margin-bottom: 0.6rem;
    }

    .wofford-section-copy {
        max-width: none;
    }

    .wofford-team-card {
        max-width: 26rem;
    }

    .wofford-side-card-shell {
        height: auto;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 0;
    }

    .wofford-mark-card {
        width: min(100%, 24rem);
        height: auto;
        padding: 0.65rem;
    }

    .wofford-mark-card img {
        height: auto;
    }
}

@media (max-width: 767.98px) {
    .footer-nav-block .instagram-inline-link {
        min-height: 0;
    }

    .footer-nav {
        gap: 0.45rem;
    }

    .instagram-ribbon-image {
        padding: 0.35rem;
    }

    .instagram-ribbon-image:hover,
    .instagram-ribbon-image:focus-visible {
        transform: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .footer-inner p:first-child {
        align-items: flex-start;
    }

    .footer-legal-links {
        margin-left: 0;
        margin-top: 0.2rem;
    }

    .wofford-home-card {
        max-width: 100%;
        padding: 0.35rem;
    }

    .wofford-media-row {
        --bs-gutter-x: 1rem;
    }

    .wofford-section-header {
        text-align: left !important;
        max-width: none;
    }

    .wofford-section-copy {
        max-width: none;
    }

    .wofford-team-card {
        max-width: 100%;
        margin-top: 1rem !important;
    }

    .wofford-side-card-shell {
        justify-content: center;
    }

    .wofford-mark-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 0.45rem;
    }
}


.contact-card-grid > [class*="col-"] {
    display: flex;
}

.contact-card-grid .detail-card {
    width: 100%;
}

.contact-detail-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.9rem;
}

.contact-detail-card .section-kicker,
.contact-instagram-heading .section-kicker {
    margin: 0;
    color: rgba(45, 48, 52, 0.62);
}

.contact-detail-card .detail-title {
    margin-bottom: 0;
    font-size: clamp(2rem, 3vw, 2.45rem);
}

.contact-detail-card p {
    margin: 0;
}

.contact-detail-copy {
    max-width: 30rem;
}

.contact-card-link,
.contact-address-link,
.contact-instagram-link {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.contact-card-link:hover,
.contact-card-link:focus-visible,
.contact-address-link:hover,
.contact-address-link:focus-visible,
.contact-instagram-link:hover,
.contact-instagram-link:focus-visible {
    color: var(--cbf-black);
}

.contact-address-card,
.contact-instagram-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 241, 236, 0.92));
}

.contact-address-link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    line-height: 1.6;
}

.contact-instagram-card {
    text-align: left;
    justify-content: center;
}

.contact-instagram-heading {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0;
}

.contact-instagram-icon,
.contact-instagram-link-icon {
    width: 1rem;
    height: 1rem;
    color: var(--cbf-charcoal);
}

.contact-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

@media (max-width: 767.98px) {
    .contact-detail-card {
        gap: 0.75rem;
    }
}

.contact-intro-row {
    align-items: start;
    margin-bottom: 2.4rem !important;
}

.contact-intro-copy {
    max-width: 34rem;
    padding-top: 0.35rem;
}

.contact-card-grid {
    row-gap: 1.5rem;
}

.contact-primary-card,
.contact-feature-card {
    border: 1px solid rgba(23, 24, 26, 0.08);
}

.contact-primary-card {
    min-height: 100%;
    gap: 0.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 246, 242, 0.95));
}

.contact-primary-card .detail-title {
    font-size: clamp(1.75rem, 2.2vw, 2.05rem);
    line-height: 1.02;
}

.contact-feature-card {
    min-height: 100%;
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
}

.contact-feature-card .detail-title {
    font-size: clamp(2.1rem, 3vw, 2.55rem);
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.contact-address-card {
    justify-content: flex-start;
}

.contact-address-link {
    font-size: 1.05rem;
}

.contact-instagram-card {
    justify-content: flex-start;
}

@media (max-width: 991.98px) {
    .contact-intro-row {
        margin-bottom: 2rem !important;
    }

    .contact-intro-copy {
        max-width: none;
        padding-top: 0;
    }
}

@media (max-width: 767.98px) {
    .contact-primary-card .detail-title,
    .contact-feature-card .detail-title {
        font-size: clamp(1.9rem, 8vw, 2.25rem);
    }

    .contact-feature-card {
        padding-top: 1.85rem;
        padding-bottom: 1.85rem;
    }
}

/* contact-mobile polish */
@media (max-width: 767.98px) {
    .contact-intro-row {
        margin-bottom: 1.5rem !important;
        row-gap: 0.75rem !important;
    }

    .contact-intro-copy {
        font-size: 1rem;
        line-height: 1.75;
    }

    .contact-card-grid {
        row-gap: 1rem;
    }

    .contact-primary-card,
    .contact-feature-card {
        padding: 1.35rem;
        border-radius: 22px;
    }

    .contact-detail-card {
        gap: 0.7rem;
    }

    .contact-card-link,
    .contact-address-link,
    .contact-instagram-link {
        width: 100%;
    }

    .contact-address-link,
    .contact-instagram-link {
        font-size: 1rem;
        line-height: 1.55;
    }

    .contact-instagram-heading {
        gap: 0.5rem;
    }
}

/* about-mobile bio padding */
@media (max-width: 767.98px) {
    .bio-card {
        padding: 0.75rem;
    }

    .bio-copy {
        padding: 1.25rem 1.25rem 1.35rem;
    }

    .bio-photo-placeholder {
        min-height: 16rem;
    }

    .owner-contact-shell {
        padding: 2rem 1.6rem;
        border-radius: 24px;
    }

    .owner-contact-shell .section-kicker {
        margin-bottom: 0.85rem;
    }

    .owner-contact-copy {
        margin-bottom: 1rem;
        font-size: 1rem;
        line-height: 1.75;
    }

    .approach-shell {
        padding: 1.6rem 1.25rem;
    }

    .approach-focus {
        padding: 1.25rem;
    }
}
