.sc-about-hero {
    text-align: center;
}

.sc-about-hero .sc-page-breadcrumb {
    justify-content: center;
}

.sc-about-hero .sc-page-meta {
    max-width: 620px;
    margin-inline: auto;
}

.sc-about-hero .sc-page-title {
    max-width: 760px;
    margin-inline: auto;
}

.sc-about-banner {
    padding: 0 0 40px;
    margin-top: -8px;
}

.sc-about-banner-frame {
    position: relative;
}

.sc-about-banner-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(20, 20, 20, 0.28) 0%,
        rgba(20, 20, 20, 0.06) 28%,
        rgba(20, 20, 20, 0.06) 72%,
        rgba(20, 20, 20, 0.28) 100%
    );
    pointer-events: none;
}

.sc-about-banner-frame img {
    display: block;
    width: 100%;
    min-height: 300px;
    max-height: 440px;
    object-fit: cover;
    object-position: center;
}

.sc-about-banner-title {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px 32px;
    text-align: center;
    pointer-events: none;
}

.sc-about-banner-title .sc-about-section-title {
    max-width: 640px;
    color: var(--sc-black);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 24px rgba(255, 255, 255, 0.75);
}

.sc-about-banner-title .sc-about-section-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 2px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--sc-gold), transparent);
}

.sc-about-body {
    padding: 40px 0 32px;
    background: var(--sc-bg);
}

.sc-about-body--compact {
    padding-top: 12px;
}

.sc-about-section-head {
    text-align: center;
    margin-bottom: 28px;
}

.sc-about-section-title {
    margin: 0;
    font-family: var(--sc-serif);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--sc-black);
}

.sc-about-intro-card {
    gap: 36px;
    padding: 32px;
    background: linear-gradient(145deg, #ffffff 0%, #fdfbf7 100%);
    border: 1px solid rgba(184, 148, 31, 0.14);
    box-shadow: 0 18px 44px rgba(20, 20, 20, 0.06);
}

.sc-about-intro-card .sc-service-media {
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(20, 20, 20, 0.1);
    outline: 1px solid rgba(184, 148, 31, 0.12);
    outline-offset: 4px;
}

.sc-about-intro-card .sc-service-prose > p:first-child {
    font-family: var(--sc-serif);
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.55;
    color: var(--sc-black);
}

.sc-about-story {
    position: relative;
    padding: 56px 0 64px;
    background:
        linear-gradient(180deg, var(--sc-bar) 0%, #f7f2e8 100%);
    border-top: 1px solid var(--sc-line);
    border-bottom: 1px solid var(--sc-line);
}

.sc-about-story::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(120px, 24%);
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--sc-gold), #b8941f);
}

.sc-about-story-intro {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.sc-about-story-intro .sc-about-section-title {
    font-family: var(--sc-display);
    font-size: clamp(24px, 2.8vw, 34px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sc-about-story-lead {
    margin-top: 18px;
    color: #3a3a3a;
    font-size: 16px;
    line-height: 1.8;
}

.sc-about-story-lead p {
    margin: 0 0 14px;
}

.sc-about-story-lead p:last-child {
    margin-bottom: 0;
}

.sc-about-splits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.sc-about-split-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
    align-items: stretch;
    background: var(--sc-white);
    border: 1px solid rgba(184, 148, 31, 0.12);
    box-shadow: 0 14px 34px rgba(20, 20, 20, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sc-about-split-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(20, 20, 20, 0.1);
}

.sc-about-split-card .sc-service-media {
    min-height: 220px;
    border-radius: 0;
}

.sc-about-split-card .sc-service-media img {
    min-height: 220px;
}

.sc-about-split-card .sc-service-copy {
    padding: 24px 24px 28px;
}

.sc-about-split-card .sc-service-title {
    position: relative;
    padding-top: 14px;
    margin-bottom: 12px;
    font-size: clamp(22px, 2.2vw, 28px);
}

.sc-about-split-card .sc-service-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sc-gold), #b8941f);
}

.sc-about-reviews {
    padding: 56px 0 72px;
    background: linear-gradient(180deg, var(--sc-black) 0%, var(--sc-black-soft) 100%);
}

.sc-about-cta {
    position: relative;
    z-index: 2;
    padding: 0 0 72px;
    margin-top: -40px;
    background: linear-gradient(180deg, transparent 0%, var(--sc-bg) 42%);
}

.sc-about-cta .sc-services-cta-inner--light {
    background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 52%, #f5ecd3 100%);
    border: 1px solid rgba(184, 148, 31, 0.2);
    box-shadow:
        0 24px 48px rgba(20, 20, 20, 0.12),
        0 8px 24px rgba(184, 148, 31, 0.1);
}

.sc-about-cta .sc-services-cta-kicker {
    color: var(--sc-pink);
}

.sc-about-cta .sc-services-cta-title {
    color: var(--sc-black);
}

.sc-about-cta .sc-services-cta-text {
    color: var(--sc-muted);
}

.sc-service-copy.is-full {
    grid-column: 1 / -1;
}

@media (max-width: 991px) {
    .sc-about-body {
        padding-top: 32px;
    }

    .sc-about-splits {
        grid-template-columns: 1fr;
    }

    .sc-about-story {
        padding: 48px 0 52px;
    }
}

@media (max-width: 767px) {
    .sc-about-body {
        padding: 28px 0 20px;
    }

    .sc-about-section-head {
        margin-bottom: 20px;
    }

    .sc-about-intro-card {
        padding: 20px 18px;
        gap: 20px;
    }

    .sc-about-story-intro {
        margin-bottom: 28px;
    }

    .sc-about-reviews {
        padding-top: 44px;
        padding-bottom: 56px;
    }

    .sc-about-cta {
        margin-top: -28px;
        padding-bottom: 56px;
    }

    .sc-about-banner-frame img {
        min-height: 240px;
    }
}
