.about-intro {
    padding: 7rem 1rem 4rem;
    background-color: #faf5ef;
    position: relative;
    overflow: hidden;
}

.about-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d65049, transparent);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-content {
    position: relative;
}

.intro-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #d65049;
    margin-bottom: 1rem;
    display: block;
}

.intro-content h1 {
    font-family: "Literata", serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    color: #443f3c;
    margin-bottom: 1.5rem;
}

.intro-content h1 span {
    color: #d65049;
    font-style: italic;
    display: inline-block;
    position: relative;
}

.intro-content h1 span::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(214, 80, 73, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.intro-text {
    color: #5f5a56;
    line-height: 1.8;
    font-size: 1rem;
    max-width: 500px;
    margin-bottom: 2rem;
}

.intro-stat {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
}

.intro-stat-item {
    text-align: left;
}

.intro-stat-number {
    font-family: "Unbounded", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #d65049;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.intro-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a69e98;
}

.intro-visual {
    position: relative;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.visual-duo {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 450px;
}

.visual-duo-item {
    flex: 1;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 30px -10px rgba(68, 63, 60, 0.25);
    transition: transform 0.4s ease;
}

.visual-duo-item:hover {
    transform: translateY(-8px);
}

.visual-duo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.visual-duo-item:hover img {
    transform: scale(1.05);
}

.visual-duo-item:first-child {
    transform: rotate(-2deg);
}

.visual-duo-item:last-child {
    transform: rotate(2deg) translateY(15px);
}

/* Основной контент */
.about-main {
    padding: 3rem 1rem 5rem;
    background-color: #faf5ef;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Секция миссии */
.mission-section {
    margin-bottom: 6rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content {
    position: relative;
}

.mission-label {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #d65049;
    margin-bottom: 1rem;
    background-color: rgba(214, 80, 73, 0.08);
    padding: 0.3rem 1rem;
    border-radius: 40px;
}

.mission-content h2 {
    font-family: "Literata", serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #443f3c;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.mission-content h2 span {
    color: #d65049;
    font-style: italic;
}

.mission-content p {
    color: #5f5a56;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.mission-quote {
    background-color: #fff;
    padding: 2rem;
    border-radius: 24px;
    position: relative;
    margin-top: 2rem;
    box-shadow: 0 15px 30px -10px rgba(68, 63, 60, 0.1);
    border: 1px solid rgba(214, 80, 73, 0.2);
}

.mission-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: #d65049;
    opacity: 0.2;
    font-family: "Literata", serif;
}

.mission-quote p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    color: #443f3c;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.quote-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-author div {
    font-size: 0.85rem;
}

.quote-author div strong {
    display: block;
    color: #443f3c;
}

.quote-author div span {
    color: #d65049;
    font-size: 0.75rem;
}

.mission-visual {
    position: relative;
}

.visual-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
}

.collage-piece {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 20px 30px -10px rgba(68, 63, 60, 0.2);
    transition: transform 0.5s ease;
}

.collage-piece:hover {
    transform: scale(1.02);
}

.collage-piece img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.collage-piece:hover img {
    transform: scale(1.1);
}

.piece-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.piece-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    aspect-ratio: 1 / 2;
}

.piece-3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

/* Секция ценностей */
.values-section {
    margin-bottom: 6rem;
    padding: 4rem 0;
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0 30px 50px -20px rgba(68, 63, 60, 0.15);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #d65049;
    margin-bottom: 0.5rem;
    background-color: rgba(214, 80, 73, 0.08);
    padding: 0.2rem 1rem;
    border-radius: 40px;
}

.section-header h2 {
    font-family: "Literata", serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #443f3c;
}

.section-header h2 span {
    color: #d65049;
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: #faf5ef;
    border-radius: 30px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d65049, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.value-card:hover::before {
    transform: translateX(100%);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 80, 73, 0.3);
    box-shadow: 0 25px 40px -15px rgba(214, 80, 73, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    position: relative;
    color: #d65049;
    transition: all 0.4s ease;
}

.value-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon svg {
    stroke-width: 2;
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #443f3c;
    font-weight: 500;
}

.value-card p {
    font-size: 0.9rem;
    color: #5f5a56;
    line-height: 1.6;
    flex: 1;
}

/* Секция команды */
.team-section {
    margin-bottom: 6rem;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header .section-subtitle {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #d65049;
    margin-bottom: 0.5rem;
    background-color: rgba(214, 80, 73, 0.08);
    padding: 0.2rem 1rem;
    border-radius: 40px;
}

.team-header h2 {
    font-family: "Literata", serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #443f3c;
}

.team-header h2 span {
    color: #d65049;
    font-style: italic;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.team-card {
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 30px -10px rgba(68, 63, 60, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 40px -15px rgba(214, 80, 73, 0.2);
}

.team-image {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.team-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(68, 63, 60, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-image::after {
    opacity: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: #443f3c;
    font-weight: 500;
}

.team-role {
    color: #d65049;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.2rem 1rem;
    background-color: rgba(214, 80, 73, 0.08);
    border-radius: 40px;
}

.team-bio {
    font-size: 0.9rem;
    color: #5f5a56;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Секция контактов */
.contact-section {
    background: linear-gradient(135deg, #443f3c, #2a2725);
    border-radius: 40px;
    padding: 3rem;
    color: #faf5ef;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(214, 80, 73, 0.15), transparent 50%);
    z-index: -1;
}

.contact-info h2 {
    font-family: "Literata", serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.contact-info h2 span {
    color: #d65049;
    font-style: italic;
}

.contact-info p {
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 400px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(214, 80, 73, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #d65049;
}

.contact-text {
    font-size: 0.95rem;
}

.contact-text small {
    display: block;
    font-size: 0.65rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-form {
    background-color: #faf5ef;
    padding: 2rem;
    border-radius: 30px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid #dcc8b7;
    border-radius: 50px;
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: #fff;
    color: #443f3c;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.form-group textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d65049;
    box-shadow: 0 0 0 3px rgba(214, 80, 73, 0.1);
}

.contact-form button {
    background-color: #d65049;
    color: #faf5ef;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.contact-form button:hover {
    background-color: #443f3c;
    transform: translateY(-2px);
}
/* АДАПТАЦИЯ ДЛЯ ЭКРАНОВ 770-992px */
@media (min-width: 770px) and (max-width: 992px) {
    .mission-visual .visual-collage {
        max-width: 450px;
        margin: 0 auto;
    }

    .mission-visual .collage-piece {
        border-radius: 16px;
    }

    .mission-visual .piece-2 {
        aspect-ratio: 1 / 1.8;
    }

    .team-section {
        margin-bottom: 4rem;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .team-card {
        max-width: none;
        margin: 0;
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .team-image {
        aspect-ratio: 1 / 1.1;
        max-height: 220px;
    }

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-info {
        padding: 1rem 0.8rem;
    }

    .team-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.1rem;
    }

    .team-role {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
        padding: 0.15rem 0.8rem;
    }

    .team-bio {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .intro-visual .visual-duo {
        max-width: 400px;
        margin: 0 auto;
    }

    .visual-duo-item {
        aspect-ratio: 3/4;
        border-radius: 16px;
    }

    .mission-quote {
        padding: 1.5rem;
    }

    .mission-quote p {
        font-size: 1rem;
    }
}

/* Дополнительная корректировка для очень узких экранов в этом диапазоне */
@media (min-width: 770px) and (max-width: 850px) {
    .team-grid {
        gap: 0.8rem;
    }

    .team-info h3 {
        font-size: 1rem;
    }

    .team-role {
        font-size: 0.65rem;
    }

    .team-bio {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }
}

/* Дополнительная корректировка для плавного перехода */
@media (max-width: 992px) {
    .team-grid {
        justify-content: center;
    }

    .mission-visual {
        display: flex;
        justify-content: center;
    }
}
/* АДАПТАЦИЯ */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-intro {
        padding: 6rem 1rem 3rem;
    }

    .intro-stat {
        gap: 1.5rem;
    }

    .intro-stat-number {
        font-size: 1.6rem;
    }

    .values-section {
        padding: 3rem 0;
    }

    .value-card {
        padding: 1.8rem 1.2rem;
    }

    .team-grid {
        gap: 1.2rem;
    }

    .contact-section {
        padding: 2rem;
    }

    .visual-collage {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 680px) {
    .about-intro {
        padding: 6rem 1.5rem 3rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .team-card {
        flex-direction: row;
        align-items: center;
        border-radius: 20px;
    }

    .team-image {
        width: 120px;
        height: 120px;
        aspect-ratio: 1;
        flex-shrink: 0;
        border-radius: 20px 0 0 20px;
    }

    .team-image::after {
        display: none;
    }

    .team-info {
        flex: 1;
        padding: 1rem;
        text-align: left;
    }

    .team-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.1rem;
    }

    .team-role {
        margin-bottom: 0.5rem;
        font-size: 0.7rem;
    }

    .team-bio {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

@media (max-width: 580px) {
    .about-intro {
        padding: 6rem 1.2rem 3rem;
    }

    .intro-content h1 {
        font-size: 2rem;
    }

    .intro-stat {
        flex-direction: column;
        gap: 1rem;
    }

    .mission-content h2 {
        font-size: 1.8rem;
    }

    .values-grid {
        gap: 1rem;
        padding: 0 1.2rem;
    }

    .value-card {
        padding: 1.5rem 1rem;
    }

    .value-card h3 {
        font-size: 1.1rem;
    }

    .value-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .about-intro {
        padding: 5rem 1.2rem 2.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .value-card p {
        font-size: 0.95rem;
    }

    .contact-section {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 360px) {
    .about-intro {
        padding: 5rem 1rem 2.5rem;
    }

    .values-grid {
        max-width: 280px;
    }

    .value-card {
        padding: 1.5rem 1.2rem;
    }

    .team-card {
        flex-direction: row;
    }

    .team-image {
        width: 100px;
        height: 100px;
    }

    .team-info {
        padding: 0.8rem;
    }

    .team-info h3 {
        font-size: 1rem;
    }

    .team-role {
        font-size: 0.65rem;
        margin-bottom: 0.3rem;
    }

    .team-bio {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .contact-section {
        padding: 1rem;
        border-radius: 24px;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 1rem;
    }
}

