:root {
    --sand: #faf3ec;
    --sand-soft: #fff8f4;
    --brand: #c04f2d;
    --brand-deep: #a0462e;
    --link: #d0603b;
    --text: #1f1f1f;
    --muted: #6d625d;
    --line: rgba(192, 79, 45, 0.14);
}

body {
    background: #fff;
    color: var(--text);
}

/* Hero */
.about-hero {
    position: relative;
    color: #1f1f1f;
    background: linear-gradient(90deg, #f7f1ec 0%, #fbf7f4 55%, #f4ebe5 100%);
    padding: 42px 0 38px;
    border-bottom: 1px solid rgba(192, 79, 45, 0.05);
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    top: -210px;
    right: -120px;
    background: radial-gradient(circle, rgba(192,79,45,0.10) 0%, rgba(192,79,45,0.00) 68%);
    pointer-events: none;
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    left: -120px;
    bottom: -200px;
    background: radial-gradient(circle, rgba(250,165,85,0.08) 0%, rgba(250,165,85,0.00) 70%);
    pointer-events: none;
}

.about-hero .container {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
}

.about-hero__title {
    color: #1b1b1b;
    margin: 0 0 10px;
    font-size: clamp(1.9rem, 2.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about-hero__desc {
    color: #4a4643;
    font-size: 16px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}


/* Content */
.about-content.container {
    max-width: 1140px;
    margin: 76px auto;
    padding: 0 16px;
}

.about-row {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 96px;
}

.about-col {
    min-width: 0;
}

.about-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand);
}

.about-title {
    font-weight: 800;
    margin: 0 0 16px;
    font-size: clamp(1.8rem, 2.1vw, 2.45rem);
    line-height: 1.15;
    color: #1c1c1c;
}

.about-text {
    max-width: 620px;
    line-height: 1.9;
    color: #4c4541;
    font-size: 16.5px;
    margin: 0 0 16px;
}

.about-list {
    margin: 8px 0 0;
    padding-left: 20px;
    line-height: 1.95;
    color: #4c4541;
    font-size: 16.5px;
}

    .about-list li::marker {
        color: var(--brand);
    }

/* Highlights / chips */
.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.about-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff8f4;
    border: 1px solid var(--line);
    color: #7b4a38;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(0,0,0,.03);
}

/* Images */
.about-image {
    position: relative;
}

    .about-image img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        object-position: 55% 68%;
        border-radius: 20px;
        display: block;
    }

/* Optional subtle frame */
.about-image::after {
    content: "";
    position: absolute;
    inset: 14px -14px -14px 14px;
    border: 1px solid rgba(192, 79, 45, 0.10);
    border-radius: 22px;
    z-index: -1;
}

/* Reveal */
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateX(0);
    transition: opacity .8s ease, transform .8s ease;
    will-change: transform, opacity;
}

    .reveal-left.reveal-ready {
        transform: translateX(-50px);
    }

    .reveal-right.reveal-ready {
        transform: translateX(50px);
    }

.reveal-show {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Responsive */
@media (max-width: 991px) {
    .about-hero {
        padding: 46px 0 42px;
    }

    .about-content.container {
        margin: 56px auto;
    }

    .about-row {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 64px;
    }

        .about-row .about-image {
            order: 2;
        }

    .about-text,
    .about-list {
        max-width: 100%;
    }

    .about-image img {
        height: 320px;
        border-radius: 16px;
    }

    .about-image::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .about-hero__desc {
        font-size: 15.5px;
        line-height: 1.75;
    }

    .about-title {
        margin-bottom: 14px;
    }

    .about-text,
    .about-list {
        font-size: 15.5px;
        line-height: 1.85;
    }

    .about-chip {
        font-size: 13px;
        padding: 9px 14px;
        min-height: 36px;
    }

    .about-image img {
        height: 260px;
    }
}
