            /* === Глобальные стили === */
            :root {
            --accent: #9F7D63;
            }
            * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            }
            body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background-color: #0b0b0b;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
            }

            html {
    scroll-behavior: smooth;
}
/* =============================================
   HERO — Portrait Page
   ============================================= */

.hero-portrait {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background:
        radial-gradient(circle at 25% 25%, rgba(159, 125, 99, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(159, 125, 99, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

/* Shimmer — фоновая анимация */
.hero-portrait::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(159, 125, 99, 0.01) 50%,
        transparent 100%
    );
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50%      { transform: translateX(100%); }
}

/* Сетка */
.hero-portrait .hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ── Текстовая часть ── */

.hero-text h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 200;
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title-main {
    display: block;
    color: #ffffff;
}

.hero-title-accent {
    display: block;
    color: var(--accent);
    font-weight: 300;
    position: relative;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 48px;
    max-width: 480px;
    animation: fadeInUp 1s ease 0.2s both;
}

.subtitle-accent {
    color: rgba(159, 125, 99, 0.8);
    font-weight: 500;
    font-size: 0.95em;
}

/* ── Кнопки ── */

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: var(--accent);
    color: #0b0b0b;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(159, 125, 99, 0.4);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translate(3px, -3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 32px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(159, 125, 99, 0.3);
    color: var(--accent);
}

/* ── Визуальная часть ── */

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease 0.4s both;
}

.hero-image-main {
    width: 100%;
    max-width: 420px;
    height: 560px;
    position: relative;
    z-index: 2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-image-main::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    border: 1px solid rgba(159, 125, 99, 0.2);
    border-radius: 8px;
    z-index: -1;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: contrast(1.1) brightness(1.05);
}

.hero-visual:hover .hero-image-main img {
    transform: scale(1.05);
}

/* Декоративный пульс */
.hero-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(159, 125, 99, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
    will-change: transform;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}

/* ── Анимации появления ── */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =============================================
   АДАПТИВ
   ============================================= */

@media (max-width: 1100px) {
    .hero-portrait .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        height: 500px;
        margin: 0 auto;
        order: -1;
    }

    .hero-image-main {
        max-width: 360px;
        height: 480px;
    }

    .hero-title-accent::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
    }
}

@media (max-width: 768px) {
    .hero-portrait {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-portrait .hero-content {
        gap: 50px;
    }

    /* Скрываем shimmer на мобильных — экономия батареи */
    .hero-portrait::before {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
        order: -1;
    }

    .hero-image-main {
        max-width: 300px;
        height: 380px;
    }

    .hero-decoration {
        width: 350px;
        height: 350px;
    }

    .hero-title-accent::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
    }
}

@media (max-width: 480px) {
    .hero-portrait {
        padding: 80px 15px 40px;
    }

    .hero-portrait .hero-content {
        gap: 40px;
    }

    .hero-visual {
        height: 350px;
    }

    .hero-image-main {
        max-width: 100%;
        height: 330px;
    }

    .hero-image-main::before {
        top: -15px;
        left: -15px;
        width: calc(100% + 30px);
        height: calc(100% + 30px);
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .hero-text h1 {
        letter-spacing: -0.5px;
    }

    .hero-visual {
        height: 320px;
    }

    .hero-image-main {
        height: 300px;
    }
}

/* =============================================
   ACCESSIBILITY & PERFORMANCE
   ============================================= */

@media (prefers-reduced-motion: reduce) {
    .hero-portrait,
    .hero-portrait *,
    .hero-portrait *::before,
    .hero-portrait *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
        

    /* =============================================
   СЕКЦИЯ «ФИЛОСОФИЯ»
   ============================================= */

.philosophy-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 20px;
    background: linear-gradient(180deg, #0b0b0b 0%, #151515 100%);
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(159, 125, 99, 0.03) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ----- Визуальная часть ----- */

.philosophy-visual {
    position: relative;
    height: 700px;
}

.philosophy-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.philosophy-image::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(159, 125, 99, 0.15);
    border-radius: 8px;
    z-index: -1;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.05);
    transition: transform 0.8s ease;
}

.philosophy-visual:hover .philosophy-image img {
    transform: scale(1.05);
}

.philosophy-decoration {
    position: absolute;
    bottom: -20%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(159, 125, 99, 0.06) 0%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: 0;
}

/* ----- Текстовая часть ----- */

.philosophy-content {
    max-width: 560px;
    margin-left: auto;
}

.philosophy-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.philosophy-content h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 32px;
    color: #ffffff;
    letter-spacing: -1px;
}

.philosophy-highlight {
    color: var(--accent);
    font-weight: 400;
}

.philosophy-text {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.philosophy-quote {
    border-left: 3px solid var(--accent);
    padding-left: 28px;
    margin: 40px 0;
}

.philosophy-quote p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    font-weight: 300;
    margin: 0 0 8px;
}

.philosophy-quote cite {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: normal;
    letter-spacing: 0.5px;
}

.philosophy-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.signature-line {
    width: 60px;
    height: 1px;
    background: rgba(159, 125, 99, 0.4);
}

.signature-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

/* ----- Адаптив ----- */

@media (max-width: 1100px) {
    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .philosophy-content {
        max-width: 100%;
        margin-left: 0;
        order: 2;
    }

    .philosophy-visual {
        height: 600px;
        max-width: 600px;
        margin: 0 auto;
        order: 1;
    }
}

@media (max-width: 768px) {
    .philosophy-section {
        padding: 80px 20px;
        min-height: auto;
    }

    .philosophy-visual {
        height: 500px;
    }

    .philosophy-quote {
        padding-left: 20px;
        margin: 32px 0;
    }

    .philosophy-quote p {
        font-size: 1.05rem;
    }

    .philosophy-decoration {
        width: 300px;
        height: 300px;
        bottom: -15%;
        right: -10%;
    }
}

@media (max-width: 480px) {
    .philosophy-section {
        padding: 60px 15px;
    }

    .philosophy-visual {
        height: 450px;
    }

    .philosophy-image::before {
        top: -20px;
        left: -20px;
    }

    .philosophy-label {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
}

/* =============================================
   СЕКЦИЯ «ГАЛЛЕРЕЯ»
   ============================================= */
    .gallery-section {
        padding: 120px 20px;
        background: #0b0b0b;
        position: relative;
        overflow: hidden;
    }

    .gallery-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(159, 125, 99, 0.02) 0%, transparent 70%);
        pointer-events: none;
    }

    .gallery-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .gallery-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .gallery-label {
        display: inline-block;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--accent);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .gallery-header h2 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 300;
        line-height: 1.2;
        color: #ffffff;
        letter-spacing: -1px;
        margin-bottom: 24px;
    }

    .gallery-highlight {
        color: var(--accent);
        font-weight: 400;
    }

    .gallery-subtitle {
        font-size: clamp(1.05rem, 2vw, 1.2rem);
        color: rgba(255, 255, 255, 0.6);
        max-width: 600px;
        margin: 0 auto;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        aspect-ratio: 3/4;
        background: #1a1a1a;
        cursor: pointer;
        transition: transform 0.4s ease;
        contain: layout style paint;
    }

    .gallery-item:nth-child(3n+1) {
        aspect-ratio: 4/5;
    }

    .gallery-item:nth-child(4n+2) {
        aspect-ratio: 3/4;
    }

    .gallery-item:nth-child(5n+3) {
        aspect-ratio: 2/3;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .gallery-item:hover {
        transform: translateY(-8px);
        z-index: 10;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.8) 100%
        );
        opacity: 0;
        transition: opacity 0.4s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 28px;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay-title {
        font-size: 1.1rem;
        font-weight: 500;
        color: #ffffff;
        margin: 0 0 8px 0;
        transform: translateY(20px);
        transition: transform 0.4s ease 0.1s;
    }

    .gallery-overlay-category {
        font-size: 0.9rem;
        color: rgba(159, 125, 99, 0.8);
        letter-spacing: 0.5px;
        margin: 0;
        transform: translateY(20px);
        transition: transform 0.4s ease 0.2s;
    }

    .gallery-item:hover .gallery-overlay-title,
    .gallery-item:hover .gallery-overlay-category {
        transform: translateY(0);
    }

    .gallery-zoom {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(159, 125, 99, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.3s ease;
    }

    .gallery-item:hover .gallery-zoom {
        opacity: 1;
        transform: scale(1);
    }

    .gallery-zoom svg {
        width: 20px;
        height: 20px;
        color: #0b0b0b;
    }

    @media (max-width: 1024px) {
        .gallery-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .gallery-section {
            padding: 80px 20px;
        }

        .gallery-header {
            margin-bottom: 60px;
        }

        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .gallery-item,
        .gallery-item:nth-child(3n+1),
        .gallery-item:nth-child(4n+2),
        .gallery-item:nth-child(5n+3) {
            aspect-ratio: 3/4;
        }

        .gallery-overlay {
            padding: 20px;
        }

        .gallery-overlay-title {
            font-size: 1rem;
        }

        .gallery-overlay-category {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 480px) {
        .gallery-section {
            padding: 60px 15px;
        }

        .gallery-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .gallery-item {
            aspect-ratio: 3/4;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .gallery-item,
        .gallery-item img,
        .gallery-overlay,
        .gallery-overlay-title,
        .gallery-overlay-category,
        .gallery-zoom {
            transition: none !important;
        }
    }

    /* === Секция "Что важно в портрете" === */
    /* === Секция "Что важно в портрете" === */
    /* === Секция "Что важно в портрете" === */
    .principles-section {
        padding: 160px 20px;
        background: #1a1a1a;
    }

    .principles-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* === Заголовок секции === */
    .principles-header {
        text-align: center;
        margin-bottom: 100px;
    }

    .principles-label {
        display: inline-block;
        font-size: 0.8rem;
        font-weight: 400;
        color: rgba(159, 125, 99, 0.7);
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 24px;
    }

    .principles-header h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 300;
        line-height: 1.3;
        color: #ffffff;
        letter-spacing: -0.5px;
        margin: 0;
    }

    /* === Сетка принципов === */
    .principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
}

    .principle-card {
        background: #1a1a1a;
        padding: 60px 40px;
        position: relative;
        transition: background-color 0.4s ease;
    }

    .principle-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--accent);
        transition: width 0.6s ease;
    }

    .principle-card:hover::before {
        width: 100%;
    }

    .principle-card:hover {
        background: rgba(159, 125, 99, 0.04);
    }

    /* Номер принципа */
    .principle-number {
        font-size: 0.75rem;
        font-weight: 400;
        color: rgba(159, 125, 99, 0.6);
        letter-spacing: 2px;
        margin-bottom: 32px;
        display: block;
        transition: color 0.3s ease;
    }

    .principle-card:hover .principle-number {
        color: var(--accent);
    }

    /* Иконка */
    .principle-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 32px;
        color: rgba(159, 125, 99, 0.5);
        stroke-width: 1;
        transition: color 0.4s ease, transform 0.4s ease;
    }

    .principle-card:hover .principle-icon {
        color: var(--accent);
        transform: translateY(-4px);
    }

    /* Текст */
    .principle-card h3 {
        font-size: 1.3rem;
        font-weight: 400;
        color: #ffffff;
        margin-bottom: 20px;
        line-height: 1.4;
        letter-spacing: -0.3px;
        transition: color 0.3s ease;
    }

    .principle-card:hover h3 {
        color: var(--accent);
    }

    .principle-card p {
        font-size: 0.95rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.65);
        font-weight: 300;
        margin: 0;
    }

    /* === Адаптив === */
    @media (max-width: 1024px) {
        .principles-section {
            padding: 120px 20px;
        }

        .principles-grid {
            grid-template-columns: 1fr;
        }

        .principle-card {
            padding: 50px 36px;
        }

        .principles-header {
            margin-bottom: 80px;
        }
    }

    @media (max-width: 768px) {
        .principles-section {
            padding: 100px 20px;
        }

        .principles-header {
            margin-bottom: 60px;
        }

        .principle-card {
            padding: 40px 28px;
        }

        .principle-icon {
            width: 36px;
            height: 36px;
            margin-bottom: 24px;
        }

        .principle-card h3 {
            font-size: 1.2rem;
        }

        .principle-card p {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .principles-section {
            padding: 80px 15px;
        }

        .principle-card {
            padding: 36px 24px;
        }

        .principle-number {
            font-size: 0.7rem;
            margin-bottom: 24px;
        }

        .principle-icon {
            width: 32px;
            height: 32px;
        }

        .principle-card h3 {
            font-size: 1.1rem;
            margin-bottom: 16px;
        }
    }

    /* === Accessibility === */
    @media (prefers-reduced-motion: reduce) {

        .principle-card,
        .principle-card::before,
        .principle-icon,
        .principle-number,
        .principle-card h3 {
            transition: none;
        }
    }

    /* === Секция "Как проходит фотосъёмка" === */
     /* === Секция "Как проходит фотосъёмка" === */
      /* === Секция "Как проходит фотосъёмка" === */
    .process-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 120px 20px;
        background: linear-gradient(180deg, #0b0b0b 0%, #151515 100%);
        position: relative;
        overflow: hidden;
    }

    .process-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: radial-gradient(ellipse at center, rgba(159, 125, 99, 0.03) 0%, transparent 70%);
        pointer-events: none;
    }

    .process-container {
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 100px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    /* === Текстовая часть (слева) === */
    .process-content {
        max-width: 560px;
    }

    .process-label {
        display: inline-block;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--accent);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 24px;
    }

    .process-content h2 {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        font-weight: 300;
        line-height: 1.15;
        margin-bottom: 32px;
        color: #ffffff;
        letter-spacing: -1px;
    }

    .process-highlight {
        color: var(--accent);
        font-weight: 400;
    }

    .process-intro {
        font-size: clamp(1.05rem, 2vw, 1.2rem);
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 48px;
    }

    /* === Список этапов === */
    .process-steps {
        display: flex;
        flex-direction: column;
        gap: 32px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .process-step {
        position: relative;
        padding-left: 60px;
        transition: padding-left 0.3s ease;
    }

    /* Номер этапа */
    .step-number {
        position: absolute;
        left: 0;
        top: 0;
        font-size: 1.8rem;
        font-weight: 200;
        color: rgba(159, 125, 99, 0.3);
        line-height: 1;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .process-step:hover .step-number {
        color: var(--accent);
        transform: translateX(-4px);
    }

    /* Заголовок этапа */
    .step-title {
        font-size: 1.25rem;
        font-weight: 400;
        color: #ffffff;
        margin-bottom: 8px;
        line-height: 1.3;
        letter-spacing: -0.3px;
        transition: color 0.3s ease;
    }

    .process-step:hover .step-title {
        color: var(--accent);
    }

    /* Описание этапа */
    .step-description {
        font-size: 0.95rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 300;
        margin: 0;
    }

    /* === Визуальная часть (справа) === */
    .process-visual {
        position: relative;
        height: 700px;
    }

    .process-image {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    }

    .process-image::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 100%;
        height: 100%;
        border: 1px solid rgba(159, 125, 99, 0.15);
        border-radius: 8px;
        z-index: -1;
    }

    .process-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
        filter: grayscale(20%) contrast(1.05);
    }

    .process-visual:hover .process-image img {
        transform: scale(1.05);
    }

    /* Декоративный элемент */
    .process-decoration {
        position: absolute;
        bottom: -20%;
        left: -15%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(159, 125, 99, 0.06) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 0;
    }

    /* === Адаптив === */
    @media (max-width: 1100px) {
        .process-container {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .process-content {
            max-width: 100%;
            order: 2;
        }

        .process-visual {
            height: 600px;
            max-width: 600px;
            margin: 0 auto;
            order: 1;
        }
    }

    @media (max-width: 768px) {
        .process-section {
            padding: 80px 20px;
        }

        .process-visual {
            height: 500px;
        }

        .process-steps {
            gap: 28px;
        }

        .process-step {
            padding-left: 50px;
        }

        .step-number {
            font-size: 1.5rem;
        }

        .process-decoration {
            width: 300px;
            height: 300px;
            bottom: -15%;
            left: -10%;
        }
    }

    @media (max-width: 480px) {
        .process-section {
            padding: 60px 15px;
        }

        .process-visual {
            height: 450px;
        }

        .process-image::before {
            top: -20px;
            right: -20px;
        }

        .process-label {
            font-size: 0.8rem;
            letter-spacing: 1.5px;
        }

        .process-intro {
            margin-bottom: 36px;
        }

        .process-steps {
            gap: 24px;
        }

        .step-title {
            font-size: 1.1rem;
        }

        .step-description {
            font-size: 0.9rem;
        }
    }

    /* === Accessibility === */
    @media (prefers-reduced-motion: reduce) {

        .process-image img,
        .step-number,
        .step-title,
        .process-step {
            transition: none;
        }
    }

    /* === Секция "Отзыв клиента" === */
    /* === Секция "Отзыв клиента" === */
    /* ============================================
   Секция "Отзыв клиента"
   ============================================ */
.testimonial-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px;
    background: linear-gradient(180deg, #0b0b0b 0%, #151515 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(159, 125, 99, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Фото клиента */
.testimonial-photo {
    position: relative;
    margin: 0;
}

.testimonial-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.testimonial-image-wrapper::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(159, 125, 99, 0.2);
    border-radius: 8px;
    z-index: -1;
}

.testimonial-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.05);
    transition: transform 0.6s ease;
}

.testimonial-photo:hover .testimonial-image-wrapper img {
    transform: scale(1.05);
}

.testimonial-decoration {
    position: absolute;
    bottom: -10%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(159, 125, 99, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Контент отзыва */
.testimonial-content {
    max-width: 680px;
}

.testimonial-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.testimonial-quote {
    position: relative;
    margin: 0 0 48px 0;
    padding: 0;
    border: none;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: -40px;
    font-size: 80px;
    color: rgba(159, 125, 99, 0.15);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: -0.2px;
    position: relative;
    padding-left: 40px;
    margin: 0;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), rgba(159, 125, 99, 0.2));
}

.testimonial-story {
    margin-bottom: 40px;
}

.testimonial-story p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.testimonial-story p:last-child {
    margin-bottom: 0;
}

.testimonial-author {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-name {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: -0.3px;
    font-style: normal;
}

.author-context {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    font-weight: 300;
}

/* Адаптив — отзыв */
@media (max-width: 1100px) {
    .testimonial-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .testimonial-photo {
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonial-content {
        max-width: 100%;
    }

    .testimonial-text {
        padding-left: 30px;
    }

    .quote-icon {
        left: -30px;
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 80px 20px;
    }

    .testimonial-container {
        gap: 50px;
    }

    .testimonial-photo {
        max-width: 350px;
    }

    .testimonial-label {
        margin-bottom: 24px;
    }

    .testimonial-quote {
        margin-bottom: 36px;
    }

    .testimonial-text {
        padding-left: 24px;
    }

    .quote-icon {
        left: -20px;
        font-size: 50px;
        top: -15px;
    }

    .testimonial-story {
        margin-bottom: 32px;
    }

    .testimonial-author {
        padding-top: 32px;
    }

    .testimonial-decoration {
        width: 250px;
        height: 250px;
        bottom: -5%;
        right: -15%;
    }
}

@media (max-width: 480px) {
    .testimonial-section {
        padding: 60px 15px;
    }

    .testimonial-container {
        gap: 40px;
    }

    .testimonial-photo {
        max-width: 100%;
    }

    .testimonial-image-wrapper::before {
        top: -15px;
        left: -15px;
    }

    .testimonial-label {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }

    .testimonial-text {
        padding-left: 20px;
    }

    .quote-icon {
        left: -15px;
        font-size: 40px;
        top: -10px;
    }

    .author-name {
        font-size: 1.05rem;
    }

    .testimonial-decoration {
        width: 200px;
        height: 200px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-image-wrapper img {
        transition: none;
    }
}


/* ============================================
   FAQ + CTA секция
   ============================================ */
.faq-cta-section {
    min-height: 80vh;
    padding: 100px 20px;
    background: #0f0f0f;
    position: relative;
}

.faq-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.faq-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 120px;
    align-items: start;
}

/* FAQ */
.faq-column {
    padding-right: 40px;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.section-tag span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 200;
    color: #ffffff;
    margin-bottom: 60px;
    line-height: 1.1;
}

.faq-title strong {
    font-weight: 500;
    color: var(--accent);
}

.faq-list {
    counter-reset: faq-counter;
}

.faq-item {
    margin-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    counter-increment: faq-counter;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item::before {
    content: counter(faq-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 28px;
    font-size: 0.8rem;
    color: rgba(159, 125, 99, 0.5);
    font-weight: 500;
}

.faq-question {
    padding: 28px 30px 28px 50px;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    line-height: 1.4;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question {
    color: #ffffff;
    padding-left: 55px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 50px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 50px 28px;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
    color: var(--accent);
}

/* CTA */
.cta-column {
    position: sticky;
    top: 100px;
}

.cta-inner {
    background: rgba(159, 125, 99, 0.03);
    border: 1px solid rgba(159, 125, 99, 0.1);
    border-radius: 8px;
    padding: 48px;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    line-height: 1.6;
}


/* ============================================
   Контакты — УЛУЧШЕННЫЕ HOVER-ЭФФЕКТЫ
   ============================================ */
.contact-list {
    margin-bottom: 40px;
}

/* --- Базовый контакт --- */
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    padding-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition:
        padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s ease,
        border-color 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
}

/* --- Primary контакт (Instagram) --- */
.contact-item.primary {
    background: rgba(159, 125, 99, 0.03);
    border-radius: 8px;
    padding: 20px 16px;
    border: 1px solid rgba(159, 125, 99, 0.1);
    margin-bottom: 16px;
}

/* --- Иконка --- */
.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(159, 125, 99, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-icon img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.contact-item.primary .contact-icon {
    background: rgba(159, 125, 99, 0.2);
}

/* --- Текст --- */
.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.contact-item.primary .contact-label {
    color: var(--accent);
}

.contact-value {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-item.primary .contact-value {
    color: #ffffff;
    font-weight: 500;
}

/* ============================================
   HOVER — обычные контакты (Telegram, Email)
   ============================================ */
.contact-item:hover {
    padding-left: 8px;
}

.contact-item:hover .contact-icon {
    background: rgba(159, 125, 99, 0.2);
    transform: scale(1.05);
}

.contact-item:hover .contact-icon img {
    transform: scale(1.1);
}

.contact-item:hover .contact-label {
    color: rgba(255, 255, 255, 0.6);
}

.contact-item:hover .contact-value {
    color: var(--accent);
    transform: translateX(2px);
}

/* ============================================
   HOVER — primary контакт (Instagram)
   ============================================ */
.contact-item.primary:hover {
    background: rgba(159, 125, 99, 0.06);
    border-color: rgba(159, 125, 99, 0.25);
    padding-left: 20px;
}

.contact-item.primary:hover .contact-icon {
    background: rgba(159, 125, 99, 0.3);
    transform: scale(1.08);
}

.contact-item.primary:hover .contact-icon img {
    transform: scale(1.15);
}

.contact-item.primary:hover .contact-label {
    color: var(--accent);
}

.contact-item.primary:hover .contact-value {
    color: var(--accent);
    transform: translateX(3px);
}


/* --- Кнопка --- */
.action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.button-icon {
    width: 18px;
    height: 18px;
    transition: filter 0.3s ease;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.action-button:hover {
    color: #0f0f0f;
}

.action-button:hover::before {
    width: 100%;
}

.action-button:hover .button-icon {
    filter: brightness(0) saturate(100%);
}


/* ============================================
   Адаптив — FAQ + CTA
   ============================================ */
@media (max-width: 1024px) {
    .faq-cta-container {
        gap: 80px;
    }

    .faq-column {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .faq-cta-section {
        padding: 60px 20px;
    }

    .faq-cta-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cta-column {
        position: static;
    }

    .faq-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .cta-inner {
        padding: 36px 28px;
    }
}

@media (max-width: 480px) {
    .faq-cta-section {
        padding: 50px 15px;
    }

    .faq-title {
        font-size: 1.75rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 24px 30px 24px 40px;
    }

    .faq-item::before {
        top: 24px;
    }

    .cta-inner {
        padding: 32px 24px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
    }

    .contact-icon img {
        width: 18px;
        height: 18px;
    }

    /* Убираем сдвиг на мобилках — палец не наводит */
    .contact-item:hover {
        padding-left: 0;
    }

    .contact-item.primary:hover {
        padding-left: 16px;
    }

    .contact-item:hover .contact-value {
        transform: none;
    }

    .contact-item.primary:hover .contact-value {
        transform: none;
    }
}


/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    .faq-answer,
    .faq-question,
    .faq-item,
    .contact-item,
    .contact-icon,
    .contact-icon img,
    .contact-label,
    .contact-value,
    .action-button,
    .action-button::before,
    .button-icon {
        transition: none !important;
    }
}

            /* === Footer === */
            .footer {
            background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
            padding: 0 20px 20px;
            position: relative;
            }
            .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(159, 125, 99, 0.3), transparent);
            }
            .footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center top, rgba(159, 125, 99, 0.04) 0%, transparent 70%);
            pointer-events: none;
            }
            .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
            }
            /* === Лого === */
            .footer-logo {
            font-family: 'Times New Roman', Times, serif;
            font-size: 1.15rem;
            letter-spacing: 0.05em;
            text-transform: lowercase;
            font-weight: 400;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            flex: 1;
            }
            .logo-memei {
            color: rgba(224, 224, 224, 0.9);
            font-weight: 500;
            }
            .logo-photo {
            color: var(--accent);
            opacity: 0.8;
            margin-left: 2px;
            transition: opacity 0.3s ease;
            }
            .footer-logo:hover .logo-photo {
            opacity: 1;
            }
            .footer-logo:hover {
            transform: translateY(-2px);
            }
            .footer-nav {
            display: flex;
            gap: 32px;
            flex: 1;
            justify-content: flex-end;
            }
            .footer-nav a {
            font-size: 0.85rem;
            color: rgba(224, 224, 224, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            }
            .footer-nav a:hover {
            color: var(--accent);
            }
            /* Соцсети в футере */
            .footer-social {
            display: flex;
            justify-content: center;
            flex: 1;
            }
            .social-icons {
            display: flex;
            gap: 18px;
            align-items: center;
            justify-content: center;
            }
            .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(159, 125, 99, 0.12);
            border: 1px solid rgba(159, 125, 99, 0.35);
            transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
            }
            .social-icons a:hover {
            transform: scale(1.12);
            background: rgba(159, 125, 99, 0.25);
            border-color: var(--accent);
            }
            .social-icons img {
            width: 20px;
            height: 20px;
            }
            /* Адаптив */
            @media (max-width: 768px) {
            .footer {
            padding: 0 20px 40px;
            }
            .footer-bottom {
            flex-direction: column;
            gap: 24px;
            text-align: center;
            margin-top: 0;
            }
            .footer-logo, 
            .footer-social, 
            .footer-nav {
            flex: none;
            }
            .footer-logo {
            font-size: 1.05rem;
            order: 1;
            }
            .footer-social {
            order: 2;
            }
            .footer-nav {
            order: 3;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            }
            .social-icons {
            gap: 16px;
            }
            }
            @media (max-width: 480px) {
            .footer {
            padding: 0 15px 30px;
            }
            .footer-logo {
            font-size: 0.95rem;
            letter-spacing: 0.03em;
            }
            }
            /* === Powered by / Site credits === */
            .site-footer {
            background: #050505;
            padding: 16px 20px 16px;
            border-top: 1px solid rgba(159, 125, 99, 0.4);
            }
            .site-footer__content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            }
            .site-footer__credits {
            text-align: center;
            width: 100%;
            }
            .site-footer__credits p {
            margin: 0;
            font-size: 0.8rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(224, 224, 224, 0.5);
            text-align: center;
            }
            .site-footer__credits span {
            color: var(--accent);
            font-weight: 500;
            }
            @media (max-width: 480px) {
            .site-footer {
            padding: 14px 15px 24px;
            }
            .site-footer__credits p {
            font-size: 0.75rem;
            letter-spacing: 0.12em;
            }
            }

            /* ═══════════════════════════════════════
   Галерея — ссылки-элементы
   ═══════════════════════════════════════ */
a.gallery-item {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ═══════════════════════════════════════
   Fancybox — кастомизация
   ═══════════════════════════════════════ */
.fancybox__container {
    --fancybox-bg: rgba(0, 0, 0, 0.95);
}

.fancybox__caption {
    color: #9F7D63;
    font-size: 1rem;
}