* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #F5F1ED;
    --bg-secondary: #EBE5DD;
    --accent: #D4C4B8;
    --text-primary: #2D2D2D;
    --text-secondary: #5A5A5A;
    --warm-taupe: #C9B8A8;
    --white: #FFFFFF;
    --dark: #1A1A1A;


    --brown: #764922;
    --beige-light: #f2e7db;
    --beige-dark: #f8e7d7;
    --brown-dark: #663112;

}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
}

h1,
h2,
h3,
h4 {
    font-family: 'Manrope', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Header */
header {
    background-color: var(--bg-primary);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm-taupe);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.contacts-header {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contacts-header a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.contacts-header a:hover {
    color: var(--brown);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s;
    background: transparent;
}

.social-icons a svg {
    width: 20px;
    height: 20px;
}

.social-icons a:hover {
    background: var(--brown);
    border-color: var(--brown);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 83px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -10%;
    width: 60%;
    height: 120%;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-radius: 50%;
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-text .subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 365px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--brown);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

/* Hero Features - List with Dots */
.hero-features ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
    line-height: 1.5;
    padding-left: 4px;
    transition: all 0.3s ease;
}

/* Кастомная точка-маркер */
.hero-features li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--brown);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-features li {
        font-size: 15px;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .hero-features ul {
        gap: 12px;
        margin-bottom: 35px;
    }

    .hero-features li {
        font-size: 14px;
        gap: 10px;
    }

    .hero-features li::before {
        width: 7px;
        height: 7px;
        min-width: 7px;
    }
}

@media (max-width: 576px) {
    .hero-features ul {
        gap: 10px;
        margin-bottom: 30px;
    }

    .hero-features li {
        font-size: 14px;
    }
}

#fotograf,
#arenda {
    scroll-margin-top: 100px;
}

#equipment {
    scroll-margin-top: 80px;
}

.feature-item {
    background: var(--bg-secondary);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s;
    border: 1px solid transparent;
    cursor: pointer;
}

.feature-item:hover {
    background: var(--white);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--brown);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn:hover {
    background-color: var(--warm-taupe);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--brown);
    color: var(--brown-dark);
    margin-left: 15px;
    padding-block: 16px;
}

.btn-outline:hover {
    background: var(--brown);
    color: var(--white);
}

.hero-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.hero-video video {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* Section Title */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    position: relative;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 350px;
    background-color: var(--bg-secondary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.service-image__wrapper {
    width: 200px;
    height: 200px;
    background: var(--white);
    border-radius: 50%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.service-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.service-info {
    padding: 30px 25px;
}

.service-card h3 {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.service-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    transform: translateX(-50%);
}

.service-info p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.6;
}

.price {
    display: block;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.project-image {
    height: 350px;
    background-color: var(--bg-primary);
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-info {
    padding: 30px;
}

.project-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.project-info p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.projects-cta {
    text-align: center;
    margin-top: 60px;
}

.projects-cta .btn {
    width: 200px;
}

/* Project Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    overflow-y: auto;
}

.modal.active {
    display: block;
}

.modal-content {
    background: var(--white);
    max-width: 1100px;
    margin: 50px auto;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 35px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brown);
    color: var(--white);
}

.modal-close:hover {
    background: var(--warm-taupe);
    color: var(--white);
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 50px;
    background: var(--bg-primary);
}

.modal-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.modal-description {
    padding: 50px;
}

.modal-description h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 800;
}

.modal-description p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 15px;
}

.modal-description .project-details {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.modal-description .project-details p {
    margin-bottom: 12px;
    font-weight: 500;
}

.modal-description .project-details strong {
    color: var(--text-primary);
}

/* Contact Form Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 4000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.contact-modal.active {
    display: flex;
}

.contact-modal-content {
    background: var(--white);
    max-width: 600px;
    width: 100%;
    border-radius: 25px;
    padding: 50px;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 32px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.contact-modal h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-modal .modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--bg-secondary);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
    background: var(--bg-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--warm-taupe);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--text-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.submit-btn:hover {
    background: var(--warm-taupe);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contacts {
    padding: 100px 0;
    background-color: var(--white);
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-info h3 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 800;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--brown);
    width: 24px;
    font-size: 18px;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--brown);
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-social a {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-primary);
    transition: all 0.3s;
    border: 2px solid transparent;
    text-decoration: none;
}

.contact-social a:hover {
    background: var(--warm-taupe);
    color: var(--white);
    transform: translateY(-5px);
    border-color: var(--warm-taupe);
}

.map {
    background-color: var(--bg-primary);
    border-radius: 20px;
    height: 350px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background-color: var(--text-primary);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    transition: all 0.3s;
    background: transparent;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--warm-taupe);
    border-color: var(--warm-taupe);
    transform: translateY(-3px);
}

.footer-bottom {
    justify-content: space-between;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--warm-taupe);
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.success-message.active {
    display: block;
}

.success-message i {
    font-size: 64px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.success-message p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1199px) {
    .hero-text h1 {
        font-size: 56px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        padding-top: 50px;
        padding-bottom: 80px;
    }

    .hero::before {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-video video {
        height: 500px;
    }

    .section-title {
        font-size: 40px;
    }

    .modal-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacts-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-modal-content {
        padding: 35px 25px;
    }

}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-features {
        flex-direction: column;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 575px) {

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}





/* Gallery Section - CSS Grid */
.gallery {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    grid-auto-rows: 240px;
    /* фиксированная высота строки */
}

.gallery-item {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* Вертикальные фото занимают 2 строки */
.gallery-item.portrait {
    grid-row: span 2;
}

/* Адаптивность */
@media (max-width: 1199px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 260px;
    }

    /* Сброс явного позиционирования (если было) */
    .gallery-item {
        grid-row: auto !important;
        grid-column: auto !important;
    }

    .gallery-item.portrait {
        grid-row: span 2 !important;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    .gallery-item.portrait {
        grid-row: span 2 !important;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-auto-rows: 220px;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .gallery-item {
        grid-row: auto !important;
    }

    .gallery-item.portrait {
        grid-row: auto !important;
        /* на мобильных вертикальные фото не растягиваются */
    }

    .gallery-item img {
        height: auto;
        max-height: 500px;
    }
}

/* Mobile menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.burger-menu span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 85px;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100% - 85px);
    background: var(--white);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: left 0.3s ease;
    padding: 40px 40px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--brown);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
    }

}

@media (max-width: 575px) {
    .contacts-header .social-icons {
        display: none;
    }
}

@media (min-width: 991px) {

    .mobile-nav,
    .overlay,
    .burger-menu {
        display: none;
    }
}



/* ===== Секция с табами и карточками ===== */
.equipment-section {
    padding: 60px 0 80px;
    background-color: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

/* ===== Табы ===== */
.tabs-container {
    margin-bottom: 40px;
}

.tabs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 5px;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid rgba(118, 73, 34, 0.15);
    padding-bottom: 6px;
}

.tabs-list li {
    margin: 0;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 10px 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 30px 30px 0 0;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.02em;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(118, 73, 34, 0.06);
}

.tab-btn.active {
    color: var(--brown);
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.04);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brown);
    border-radius: 3px 3px 0 0;
}

/* Мобильный select (как в Tilda) */
.tabs-select-wrapper {
    display: none;
    margin-bottom: 20px;
}

.tabs-select-wrapper select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--bg-secondary);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    background: var(--white);
    color: var(--text-primary);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5A5A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.tabs-select-wrapper select:focus {
    outline: none;
    border-color: var(--brown);
}

/* ===== Контент вкладок ===== */
.tab-content {
    /* display: none; */
    animation: fadeIn 0.3s ease;
}

/* .tab-content.active {
    display: block;
} */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Сетка карточек (4 колонки) ===== */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ===== Карточка ===== */
.equipment-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

.equipment-image {
    height: auto;
    background-color: var(--bg-secondary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.equipment-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    border-radius: 10px;
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--brown);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 14px;
    border-radius: 50px;
}

.equipment-body {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.equipment-name {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.equipment-model {
    font-size: 15px;
    font-weight: 500;
    color: var(--brown);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.equipment-quantity {
    font-weight: 700;
}

.equipment-description {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.equipment-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.equipment-specs span {
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.equipment-specs span::before {
    content: "•";
    color: var(--brown);
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 18px 36px;
    background-color: var(--brown);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 10px;
    align-self: flex-start;
}

.btn:hover {
    background-color: var(--warm-taupe);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--brown);
    color: var(--brown-dark);
    padding: 16px 34px;
}

.btn-outline:hover {
    background: var(--brown);
    color: var(--white);
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

/* Заглушка для пустых вкладок */
.placeholder-content {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 20px;
    border: 2px dashed var(--accent);
}

.placeholder-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.placeholder-content p {
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto;
}

/* ===== Адаптивность ===== */
@media (max-width: 1199px) {
    .equipment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== Адаптивность ===== */
@media (max-width: 1199px) {
    .equipment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 34px;
    }

    .equipment-image {
        height: auto;
    }

    .tabs-list {
        display: none;
    }

    .tabs-select-wrapper {
        display: block;
    }
}

@media (max-width: 576px) {
    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .equipment-section {
        padding: 40px 0 50px;
    }

    .section-title {
        font-size: 28px;
    }

    .equipment-image {
        height: auto;
    }

    .equipment-body {
        padding: 18px 18px 22px;
    }
}


/* How to Find Section */
.how-to-find-section {
    padding: 80px 0;
    background-color: var(--white);
}

.find-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.find-tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--bg-primary);
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.find-tab-btn .tab-icon {
    font-size: 20px;
}

.find-tab-btn:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.find-tab-btn.active {
    background: var(--brown);
    color: var(--white);
    border-color: var(--brown);
    box-shadow: 0 4px 15px rgba(118, 73, 34, 0.3);
}

.find-slider-container {
    display: none;
    position: relative;
}

.find-slider-container.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.find-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.find-slide {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    display: block;
    text-decoration: none;
}

.find-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(118, 73, 34, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-icon {
    font-size: 40px;
    color: var(--white);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.find-slide:hover img {
    transform: scale(1.1);
}

.find-slide:hover .slide-overlay {
    opacity: 1;
}

.find-slide:hover .zoom-icon {
    transform: scale(1);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--accent);
    font-size: 24px;
    color: var(--brown);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--brown);
    border-color: var(--brown);
    color: var(--white);
    transform: translateY(-2px);
}

.find-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--bg-secondary);
}

.find-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--bg-primary);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.find-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: var(--bg-secondary);
}

.info-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
}

.info-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
    .find-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .find-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .find-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .find-slider {
        grid-template-columns: 1fr;
    }

    .find-tab-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .find-info-card {
        padding: 20px;
    }
}



/* Find Cards */
.find-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.find-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.find-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--brown);
}

.find-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.find-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.find-card:hover .find-card-image img {
    transform: scale(1.1);
}

.find-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(118, 73, 34, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.find-card:hover .find-card-overlay {
    opacity: 1;
}

.find-card-icon {
    font-size: 48px;
    color: var(--white);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.find-card:hover .find-card-icon {
    transform: scale(1);
}

.find-card-content {
    padding: 25px;
    text-align: center;
}

.find-card-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
}

.find-card-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

/* Find Gallery Modal */
.find-gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 5000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.find-gallery-modal.active {
    display: flex;
}

.find-gallery-modal-content {
    position: relative;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.find-gallery-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s;
    z-index: 10;
}

.find-gallery-close:hover {
    color: var(--brown);
    transform: rotate(90deg);
}

.find-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.find-gallery-nav:hover {
    background: var(--brown);
    transform: translateY(-50%) scale(1.1);
}

.find-gallery-prev {
    left: -80px;
}

.find-gallery-next {
    right: -80px;
}

.find-gallery-image-wrapper {
    width: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
}

.find-gallery-image-wrapper img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 15px;
}

.find-gallery-counter {
    margin-top: 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    background: rgba(118, 73, 34, 0.8);
    padding: 10px 25px;
    border-radius: 50px;
}

.find-gallery-title {
    margin-top: 15px;
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .find-gallery-prev {
        left: 10px;
    }

    .find-gallery-next {
        right: 10px;
    }

    .find-gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .find-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .find-card-image {
        height: 250px;
    }

    .find-gallery-counter {
        font-size: 16px;
        padding: 8px 20px;
    }

    .find-gallery-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .find-gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .find-gallery-close {
        top: -45px;
    }
}