.about-redesign {
    width: 100%;
    overflow: hidden;
    background: #f5f0e9;
}

.about-redesign__canvas {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/*
 * style.css makes .header-inner fixed at this breakpoint, overlaying
 * page content. The homepage compensates with padding-top on its own
 * first section (.banner_area); this page never had that, so the
 * fixed header covered the top of this canvas image. Matches the
 * measured fixed-header height.
 *
 * Uses margin-top, not padding-top: .about-redesign__story-trigger is
 * positioned with top/left percentages resolved against this
 * element's own box (it's the nearest positioned ancestor).
 * padding-top would inflate that box's height, throwing off the
 * percentage math and detaching the trigger from the "Read My Story"
 * text it sits on. margin-top pushes the whole canvas down in the
 * page flow without changing its own box, so the trigger stays put.
 */
@media screen and (max-width: 775px) {
    .about-redesign__canvas {
        margin-top: 77px;
    }
}

.about-redesign__canvas > img {
    display: block;
    width: 100%;
    height: auto;
}

.about-redesign__story-trigger {
    position: absolute;
    z-index: 2;
    top: 44.15%;
    left: 4.2%;
    width: 18.2%;
    height: 2.15%;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.about-redesign__story-trigger:focus-visible {
    outline: 4px solid #c89b51;
    outline-offset: 4px;
}

/*
 * Hover/active feedback - previously this had zero visual response
 * beyond a keyboard focus ring. hover:hover + pointer:fine keeps this
 * to real mouse hover; :active covers touch/tap with the same
 * treatment.
 */
@media (hover: hover) and (pointer: fine) {
    .about-redesign__story-trigger:hover {
        transform: scale(1.06);
        background: rgba(200, 155, 81, 0.22);
        box-shadow: 0 0 0 2px rgba(200, 155, 81, 0.7);
    }
}

.about-redesign__story-trigger:active {
    transform: scale(0.96);
    background: rgba(200, 155, 81, 0.3);
    box-shadow: 0 0 0 2px rgba(200, 155, 81, 0.7);
}

@media (prefers-reduced-motion: reduce) {
    .about-redesign__story-trigger {
        transition: none;
    }

    .about-redesign__story-trigger:hover,
    .about-redesign__story-trigger:active {
        transform: none;
    }
}

.founder-story {
    position: fixed;
    inset: 0;
    width: 100vw;
    max-width: none;
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding: 0;
    border: 0;
    color: #231c18;
    background: #f5f0e9;
}

.founder-story::backdrop {
    background: rgba(8, 10, 8, 0.86);
    backdrop-filter: blur(5px);
}

.founder-story__shell {
    min-height: 100%;
    background:
        radial-gradient(circle at 100% 0%, rgba(202, 161, 91, 0.16), transparent 36rem),
        linear-gradient(135deg, #fbf8f3 0%, #f1e8dd 100%);
}

.founder-story__header {
    position: sticky;
    z-index: 3;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px clamp(24px, 6vw, 96px);
    border-bottom: 1px solid rgba(148, 77, 50, 0.22);
    background: rgba(251, 248, 243, 0.95);
    backdrop-filter: blur(18px);
}

.founder-story__eyebrow {
    margin: 0 0 3px;
    color: #955039;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.founder-story__header h1 {
    margin: 0;
    color: #1e1a18;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(38px, 5vw, 70px);
    font-weight: 400;
    line-height: 1;
}

.founder-story__close--icon {
    display: grid;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    place-items: center;
    padding: 0 0 5px;
    border: 1px solid rgba(148, 77, 50, 0.38);
    border-radius: 50%;
    color: #603727;
    background: #fff;
    font-family: Arial, sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.founder-story__content {
    width: min(860px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(48px, 8vw, 110px) 0 80px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.85;
}

.founder-story__content p {
    margin: 0 0 1.6em;
}

.founder-story__lead {
    padding-left: clamp(20px, 4vw, 42px);
    border-left: 4px solid #c89b51;
    color: #72412f;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.5;
}

.founder-story__section {
    margin-top: clamp(52px, 8vw, 90px);
    padding-top: clamp(42px, 6vw, 68px);
    border-top: 1px solid rgba(148, 77, 50, 0.25);
}

.founder-story__section h2 {
    margin: 0 0 30px;
    color: #1d342c;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 400;
    line-height: 1.13;
}

.founder-story__closing {
    margin-top: 2.4em !important;
    color: #72412f;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(23px, 3vw, 34px);
    line-height: 1.5;
}

.founder-story__close--button {
    display: block;
    min-width: 190px;
    margin: 58px auto 0;
    padding: 15px 28px;
    border: 1px solid #955039;
    border-radius: 999px;
    color: #fff;
    background: #955039;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
}

.founder-story__close:hover,
.founder-story__close:focus-visible {
    color: #fff;
    background: #1d342c;
    outline: 3px solid rgba(200, 155, 81, 0.45);
    outline-offset: 3px;
}

body:has(.founder-story[open]) {
    overflow: hidden;
}

@media (max-width: 767px) {
    .founder-story__header {
        padding: 18px 20px;
    }

    .founder-story__close--icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        font-size: 34px;
    }

    .founder-story__content {
        width: min(100% - 36px, 860px);
        padding-top: 42px;
        font-size: 17px;
        line-height: 1.7;
    }
}
