/* ================================================================
   TerraFloor — about.css
   ================================================================ */

/* ---- Hero ---- */
.about-hero {
    padding-block: 48px 60px;
}

/* Заголовок + подзаголовок над фото */
.about-hero__head {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
}

.about-hero__title {
    color: var(--color-black);
    font-size: 54px;
    line-height: 57px;
    font-weight: 600;
    margin: 0;
    flex-shrink: 0;
}

.about-hero__subtitle {
    color: var(--color-gray);
    font-size: 15px;
    line-height: 21px;
    margin: 0;
    flex: 1;
    padding-top: 10px;
}

/* ---- Галерея ---- */
.about-gallery {
    position: relative;
}

/* Главное фото */
.about-gallery__main {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 528px;
}
.about-gallery__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}

/* Бейдж снизу слева */
.about-gallery__badge {
    position: absolute;
    left: 46px;
    bottom: 48px;
    max-width: 548px;
    background: rgba(255, 255, 255, 0.87);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 26px;
    border: 6px solid rgba(249, 249, 249, 0.36);
    padding: 30px 21px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.about-gallery__badge-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-gallery__badge-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}
.about-gallery__badge-text {
    color: var(--color-black);
    font-size: 17px;
    line-height: 23px;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    flex: 1;
}

/* Миниатюры — вертикально справа поверх фото */
.about-gallery__thumbs-overlay {
    position: absolute;
    right: 69px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 17px;
    align-items: center;
    z-index: 2;
    width: 137px;
}

/* Первая миниатюра — крупная с рамкой */
.about-gallery__thumb--large {
    width: 169px;
    height: 111px;
    border: 5px solid #f6f0eb;
}

.about-gallery__thumb {
    width: 100%;
    height: 90px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid transparent;
    padding: 0;
    background: var(--color-light-gray);
    cursor: pointer;
    transition: border-color 0.2s;
    flex-shrink: 0;
}
.about-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-gallery__thumb.is-active {
    border-color: var(--color-brown);
}

/* ================================================================
   Адаптив Hero
   ================================================================ */
@media (max-width: 1280px) {
    .about-hero__title         { font-size: 40px; line-height: 46px; }
    .about-gallery__main       { height: 420px; }
    .about-gallery__thumbs-overlay { right: 30px; width: 110px; }
    .about-gallery__thumb--large   { width: 130px; height: 86px; }
    .about-gallery__thumb          { height: 72px; }
}

@media (max-width: 1024px) {
    .about-hero__head          { flex-direction: column; gap: 16px; }
    .about-gallery__main       { height: 360px; border-radius: 20px; }
    .about-gallery__thumbs-overlay { right: 16px; }
    .about-gallery__badge      { left: 20px; bottom: 20px; max-width: calc(100% - 180px); }
}

/* Мобайл: миниатюры уходят под фото */
@media (max-width: 768px) {
    .about-hero__title         { font-size: 28px; line-height: 34px; }
    .about-gallery__main       { height: 280px; border-radius: 16px; }
    .about-gallery__thumbs-overlay {
        position: static;
        transform: none;
        flex-direction: row;
        width: 100%;
        margin-top: 12px;
        gap: 10px;
    }
    .about-gallery__thumb--large {
        width: auto;
        height: 70px;
        flex: 1;
    }
    .about-gallery__thumb { height: 70px; flex: 1; }
    .about-gallery__badge {
        left: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
        padding: 16px;
    }

.about-gallery__main {
    overflow: visible;
    
}
.about-gallery__main img{
   
    border-radius: 16px;
}

.about-gallery__badge-text {
    font-size: 12px;
    line-height: 15px;
}
.about-gallery__badge-icon img {
    width: 35px;
    height: 35px;
}
.about-gallery__badge {
   border-radius: 12px;
    padding: 10px;
}


}


/* ---- Секция География ---- */
.about-geo {
    padding-block: 60px;
}

.about-geo__photo {
    border-radius: 40px;
    height: 460px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px;
}

.about-geo__photo-content {
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
}

.about-geo__eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #F6F0EB;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.about-geo__eyebrow-line {
    display: block;
    width: 19px;
    height: 0;
    border-top: 2px solid var(--color-brown);
    flex-shrink: 0;
}

.about-geo__title {
    color: var(--color-white);
    font-size: 45px;
    line-height: 51px;
    font-weight: 600;
    margin: 0;
}

.about-geo__desc {
    color: var(--color-white);
    font-size: 15px;
    line-height: 21px;
    margin: 0;
    opacity: 0.9;
}

/* Карточки 3 в ряд */
.about-geo__cards {
    display: flex;
    gap: 30px;
}

.about-geo__card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 17px;
  border-radius: 20px;
background: linear-gradient(180deg, #FDF9F6 0%, #F8F8F8 100%);
padding: 38px 40px;
}

.about-geo__card-title {
    color: var(--color-black);
    font-size: 28px;
    line-height: 34px;
    font-weight: 500;
    margin: 0;
}

.about-geo__card-text {
    color: var(--color-gray);
    font-size: 15px;
    line-height: 21px;
    margin: 0;
}

/* Адаптив */
@media (max-width: 1280px) {
    .about-geo__title { font-size: 34px; line-height: 40px; }
}

@media (max-width: 1024px) {
    .about-geo__photo { height: 360px; border-radius: 28px; }
    .about-geo__title { font-size: 28px; line-height: 34px; }
}

@media (max-width: 768px) {
    .about-geo__photo   { height: 300px; border-radius: 20px; }
    .about-geo__photo-content { padding: 24px; }
    .about-geo__title   { font-size: 22px; line-height: 28px; }
    .about-geo__cards   { flex-direction: column; gap: 0; }
    .about-geo__card    { padding: 20px; }
    .about-geo__card-title { font-size: 20px; }
}


.about-text {
    padding-block: 60px;
}