body.route-about {
    background: #ffffff;
}

body.route-about .about-page {
    padding: 24px 0 clamp(64px, 8vw, 110px);
    background:
        radial-gradient(circle at 6% 10%, rgba(198, 154, 57, 0.08), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f7faf7 100%);
}

body.route-about .about-shell {
    display: grid;
    gap: 24px;
}

body.route-about .about-breadcrumb {
    display: flex;
    gap: 9px;
    align-items: center;
    color: #657068;
    font-size: 13px;
}

body.route-about .about-breadcrumb a {
    text-decoration: none;
}

body.route-about .about-breadcrumb strong {
    color: #172019;
    font-weight: 700;
}

body.route-about .about-hero {
    display: grid;
    grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.7fr);
    gap: 34px;
    align-items: stretch;
}

body.route-about .about-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
}

body.route-about .about-eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #2f6b45;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.route-about .about-eyebrow i,
body.route-about .about-section-heading span {
    color: #c69a39;
}

body.route-about .about-hero-copy h1 {
    margin: 0 0 16px;
    color: #123b24;
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: 0;
}

body.route-about .about-hero-copy > p {
    max-width: 560px;
    margin: 0 0 20px;
    color: #657068;
    font-size: 15px;
    line-height: 1.75;
}

body.route-about .about-hero-facts {
    display: grid;
    gap: 10px;
}

body.route-about .about-hero-fact {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 10px;
    align-items: center;
}

body.route-about .about-hero-fact > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid #d7e4d9;
    border-radius: 50%;
    color: #2f6b45;
    background: #fff;
}

body.route-about .about-hero-fact strong,
body.route-about .about-trust-item strong,
body.route-about .about-company-photo-caption strong {
    display: block;
    color: #123b24;
    font-size: 13px;
}

body.route-about .about-hero-fact small,
body.route-about .about-trust-item span,
body.route-about .about-company-photo-caption span {
    display: block;
    color: #657068;
    font-size: 12px;
}

body.route-about .about-company-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

body.route-about .about-company-photo-frame {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 4 / 5;
    background: linear-gradient(145deg, #eef3ef, #e0e9e2);
    box-shadow: 0 12px 36px rgba(18, 59, 36, 0.08);
}

body.route-about .about-company-photo-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

body.route-about .about-company-photo:hover img {
    transform: scale(1.025);
}

body.route-about .about-company-photo-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    color: #2f6b45;
    text-align: center;
    background: linear-gradient(145deg, #f3f7f3, #e7f0e9);
}

body.route-about .about-company-photo-fallback i {
    display: block;
    margin-bottom: 8px;
    font-size: 32px;
}

body.route-about .about-company-photo-caption {
    padding: 10px 4px 0;
    text-align: center;
}

body.route-about .about-company-photo-caption span {
    line-height: 1.45;
}

body.route-about .about-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #e4e9e4;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(18, 59, 36, 0.04);
}

body.route-about .about-trust-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 11px;
    align-items: center;
    padding: 18px 20px;
    border-right: 1px solid #e4e9e4;
}

body.route-about .about-trust-item:last-child {
    border-right: 0;
}

body.route-about .about-trust-item i,
body.route-about .about-why-item > i {
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #2f6b45;
    background: #edf5ef;
}

body.route-about .about-trust-item i {
    width: 42px;
    height: 42px;
    font-size: 19px;
}

body.route-about .about-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.88fr;
    gap: 14px;
}

body.route-about .about-profile-card {
    position: relative;
    overflow: hidden;
    min-height: 170px;
    padding: 26px;
    border: 1px solid #e4e9e4;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(18, 59, 36, 0.05);
}

body.route-about .about-profile-card-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: start;
}

body.route-about .about-profile-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    color: #2f6b45;
    background: #f7f0df;
    font-size: 25px;
}

body.route-about .about-profile-card h2 {
    margin: 0 0 7px;
    color: #123b24;
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-size: 23px;
    letter-spacing: 0;
}

body.route-about .about-profile-card p {
    margin: 0;
    color: #657068;
    font-size: 13px;
    line-height: 1.65;
}

body.route-about .about-leaf-art {
    position: absolute;
    right: -18px;
    bottom: -22px;
    color: rgba(47, 107, 69, 0.08);
    font-size: 112px;
    transform: rotate(-24deg);
}

body.route-about .about-hours-list {
    display: grid;
    gap: 7px;
    margin-top: 6px;
}

body.route-about .about-hours-row {
    display: grid;
    grid-template-columns: minmax(76px, 0.8fr) 1.25fr;
    gap: 10px;
    color: #657068;
    font-size: 11.5px;
}

body.route-about .about-hours-row strong {
    color: #172019;
}

body.route-about .about-hours-row.is-today,
body.route-about .about-hours-row.is-today strong {
    color: #2f6b45;
    font-weight: 800;
}

body.route-about .about-hours-row.is-closed span {
    color: #a33b31;
    font-weight: 800;
}

body.route-about .about-delivery-note {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e4e9e4;
    color: #657068;
    font-size: 11px;
}

body.route-about .about-delivery-note i {
    color: #c69a39;
}

body.route-about .about-why-section {
    padding: 4px 0 2px;
}

body.route-about .about-section-heading {
    margin-bottom: 18px;
    text-align: center;
}

body.route-about .about-section-heading span {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

body.route-about .about-section-heading h2,
body.route-about .about-cta h2 {
    margin: 0;
    color: #123b24;
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    letter-spacing: 0;
}

body.route-about .about-section-heading h2 {
    font-size: 27px;
}

body.route-about .about-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #e4e9e4;
    border-bottom: 1px solid #e4e9e4;
}

body.route-about .about-why-item {
    padding: 24px 18px;
    border-right: 1px solid #e4e9e4;
    text-align: center;
}

body.route-about .about-why-item:last-child {
    border-right: 0;
}

body.route-about .about-why-item > i {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    color: #2f6b45;
    background: #f7f0df;
    font-size: 21px;
}

body.route-about .about-why-item h3 {
    margin: 0 0 5px;
    color: #123b24;
    font-size: 13px;
}

body.route-about .about-why-item p {
    margin: 0;
    color: #657068;
    font-size: 11.5px;
    line-height: 1.55;
}

body.route-about .about-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    min-height: 120px;
    padding: 24px 30px;
    border: 1px solid #e4dcc6;
    border-radius: 22px;
    background:
        radial-gradient(circle at 0 50%, rgba(47, 107, 69, 0.12), transparent 26%),
        radial-gradient(circle at 100% 50%, rgba(198, 154, 57, 0.16), transparent 28%),
        #fbfaf5;
}

body.route-about .about-cta h2 {
    margin-bottom: 5px;
    font-size: 26px;
}

body.route-about .about-cta p {
    margin: 0;
    color: #657068;
    font-size: 13px;
}

body.route-about .about-cta-actions {
    display: flex;
    gap: 10px;
}

@media (max-width: 1050px) {
    body.route-about .about-hero {
        grid-template-columns: 1fr;
    }

    body.route-about .about-hero-copy {
        max-width: 760px;
    }

    body.route-about .about-company-photo-frame {
        aspect-ratio: 4 / 3;
    }

    body.route-about .about-profile-grid {
        grid-template-columns: 1fr 1fr;
    }

    body.route-about .about-hours-card {
        grid-column: 1 / -1;
    }

    body.route-about .about-hours-list {
        grid-template-columns: 1fr 1fr;
        column-gap: 26px;
    }
}

@media (max-width: 760px) {
    body.route-about .about-page {
        padding-top: 18px;
    }

    body.route-about .about-hero {
        gap: 20px;
    }

    body.route-about .about-hero-copy h1 {
        margin-bottom: 12px;
        font-size: clamp(34px, 10vw, 46px);
    }

    body.route-about .about-hero-copy > p {
        margin-bottom: 16px;
        font-size: 14px;
    }

    body.route-about .about-hero-facts {
        display: none;
    }

    body.route-about .about-company-gallery {
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
    }

    body.route-about .about-company-photo {
        min-width: 72%;
        scroll-snap-align: start;
    }

    body.route-about .about-company-photo-frame {
        border-radius: 14px;
    }

    body.route-about .about-company-photo-caption {
        text-align: left;
    }

    body.route-about .about-trust-strip,
    body.route-about .about-profile-grid {
        grid-template-columns: 1fr;
    }

    body.route-about .about-trust-item {
        padding: 14px 16px;
        border-right: 0;
        border-bottom: 1px solid #e4e9e4;
    }

    body.route-about .about-trust-item:last-child {
        border-bottom: 0;
    }

    body.route-about .about-profile-card {
        min-height: 0;
        padding: 20px;
        border-radius: 17px;
    }

    body.route-about .about-profile-card-inner {
        grid-template-columns: 50px 1fr;
        gap: 13px;
    }

    body.route-about .about-profile-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    body.route-about .about-profile-card h2 {
        font-size: 21px;
    }

    body.route-about .about-hours-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    body.route-about .about-hours-row {
        grid-template-columns: 92px 1fr;
    }

    body.route-about .about-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.route-about .about-why-item {
        padding: 19px 12px;
    }

    body.route-about .about-why-item:nth-child(2) {
        border-right: 0;
    }

    body.route-about .about-why-item:nth-child(-n+2) {
        border-bottom: 1px solid #e4e9e4;
    }

    body.route-about .about-cta {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px;
    }

    body.route-about .about-cta-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 440px) {
    body.route-about .about-company-photo {
        min-width: 82%;
    }

    body.route-about .about-why-item p {
        font-size: 10.5px;
    }

    body.route-about .about-cta-actions {
        grid-template-columns: 1fr;
    }
}
