.about-hero {
    background:
        linear-gradient(rgba(15, 15, 15, 0.70), rgba(15, 15, 15, 0.70)),
        url("images/office-background.jpg");
    background-size: cover;
    background-position: center;
    color: var(--ovis-white);
    min-height: 520px;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    width: 100%;
    padding: 90px 0;
}

.about-hero-content {
    max-width: 820px;
}

.about-hero h1 {
    font-size: 58px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 24px;
}

.about-hero-text {
    font-size: 19px;
    max-width: 760px;
    color: #f4f4f4;
}

.narrow-container {
    max-width: 980px;
}

.about-intro-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.about-copy {
    position: relative;
    background-color: rgba(255, 255, 255, 0.94);
    border-left: 5px solid var(--ovis-red);
    border-radius: 14px;
    padding: 34px 34px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.about-copy::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: -18px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(215,25,32,0.16) 0%, rgba(215,25,32,0) 70%);
    pointer-events: none;
}

.about-copy p {
    color: var(--ovis-dark-gray);
    font-size: 17px;
    margin-bottom: 18px;
}

.about-copy p:last-child {
    margin-bottom: 0;
}

.values-section {
    padding: 95px 0;
    background: linear-gradient(180deg, #f3f4f7 0%, #eceff3 100%);
}

.accordion-list {
    margin-top: 22px;
    border-top: 1px solid #d8dbe1;
}

.accordion-item {
    border-bottom: 1px solid #d8dbe1;
    background-color: transparent;
}

.accordion-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 24px 42px 24px 0;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--ovis-black);
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: 400;
    color: var(--ovis-red);
}

.accordion-item[open] summary::after {
    content: "−";
}

.accordion-item[open] summary {
    color: var(--ovis-red);
}

.accordion-content {
    padding: 0 0 24px 0;
    max-width: 900px;
}

.accordion-content p {
    color: var(--ovis-dark-gray);
    font-size: 17px;
}

.mission-vision-section {
    padding: 95px 0;
    background-color: #ffffff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.mv-card {
    background-color: var(--ovis-white);
    border: 1px solid var(--ovis-border);
    border-radius: 14px;
    padding: 34px 30px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.mv-card h2 {
    font-size: 34px;
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 18px;
}

.mv-card p {
    color: var(--ovis-dark-gray);
    font-size: 17px;
    margin-bottom: 16px;
}

.dark-card {
    background: linear-gradient(180deg, #2c2f36 0%, #191b1f 100%);
    color: var(--ovis-white);
    border: none;
}

.dark-card h2,
.dark-card p {
    color: var(--ovis-white);
}

.dark-card .mini-label {
    color: var(--ovis-red);
}

.founder-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f4f5f7 0%, #eceef2 100%);
}

.founder-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 34px;
    align-items: start;
}

.founder-image-wrap {
    position: relative;
}

.founder-image-wrap::before {
    content: "";
    position: absolute;
    left: -14px;
    bottom: -14px;
    width: 115px;
    height: 115px;
    background: linear-gradient(135deg, var(--ovis-red), #8e1116);
    border-radius: 24px;
    z-index: 0;
    opacity: 0.95;
}

.founder-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 320px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.founder-content {
    padding-top: 8px;
}

.quote-mark {
    font-size: 96px;
    line-height: 0.8;
    color: #c72a2f;
    margin-bottom: 10px;
    font-weight: 800;
}

.founder-content h2 {
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 18px;
}

.founder-content p {
    color: var(--ovis-dark-gray);
    font-size: 17px;
    margin-bottom: 16px;
}

.founder-perspective {
    margin-top: 22px;
    background-color: var(--ovis-white);
    border-left: 5px solid var(--ovis-red);
    border-radius: 12px;
    padding: 24px 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.founder-perspective h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.founder-perspective blockquote {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: var(--ovis-black);
    margin: 10px 0 10px;
}

.founder-signoff {
    font-weight: 700;
    color: var(--ovis-dark-gray);
}

@media (max-width: 1100px) {
    .mission-vision-grid,
    .founder-layout {
        grid-template-columns: 1fr;
    }

    .founder-image-wrap {
        justify-self: center;
    }
}

@media (max-width: 980px) {
    .about-hero h1 {
        font-size: 44px;
    }
}

@media (max-width: 640px) {
    .about-hero {
        min-height: 430px;
    }

    .about-hero h1 {
        font-size: 34px;
    }

    .about-hero-text,
    .about-copy p,
    .accordion-content p,
    .mv-card p,
    .founder-content p,
    .founder-perspective blockquote {
        font-size: 16px;
    }

    .mv-card h2,
    .founder-content h2 {
        font-size: 30px;
    }

    .accordion-item summary {
        font-size: 15px;
    }
}