:root {
    --text: #ffffff;
    --muted: #c4c4c4;
    --accent: #d4a574;
    --accent-light: #e6b89c;
    --text-secondary: #c4c4c4;
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1512;
}

/* ========================================
   BASE / ACCESSIBILITY
   ======================================== */

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    z-index: 1000;
    padding: 10px 14px;
    background: #e6b89c;
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #e6b89c;
    outline-offset: 3px;
}

/* ========================================
   CONTACTS PAGE
   ======================================== */

.contacts-hero-v2 {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.contacts-hero-v2::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(230, 184, 156, 0.15);
    transform: rotate(45deg);
    animation: rotate-v2 20s linear infinite;
}

.contacts-hero-v2::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(230, 184, 156, 0.1);
    animation: rotate-v2 15s linear infinite reverse;
}

@keyframes rotate-v2 {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

.contacts-hero-v2-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contacts-hero-v2-left {
    position: relative;
}

.contacts-hero-v2 .big-text {
    font-family: 'Cinzel', serif;
    font-size: 8rem;
    color: rgba(230, 184, 156, 0.05);
    position: absolute;
    top: -80px;
    left: -40px;
    font-weight: 700;
    letter-spacing: 10px;
    user-select: none;
    pointer-events: none;
}

.contacts-hero-v2 h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: 300;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}

.contacts-hero-v2 h1 span {
    display: block;
    color: #e6b89c;
    font-size: 2.5rem;
    margin-top: 15px;
}

.contacts-hero-v2 .description {
    font-size: 1.1rem;
    color: #c4c4c4;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.contacts-hero-v2 .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: #e6b89c;
    border: 2px solid #e6b89c;
    color: #0a0a0a;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contacts-hero-v2 .cta-button:hover {
    background: transparent;
    color: #e6b89c;
    box-shadow: 0 10px 30px rgba(230, 184, 156, 0.3);
}

.contacts-hero-v2-right {
    position: relative;
}

.contacts-hero-v2 .info-grid {
    display: grid;
    gap: 30px;
}

.contacts-hero-v2 .info-item {
    background: rgba(26, 21, 18, 0.6);
    border: 2px solid rgba(230, 184, 156, 0.2);
    padding: 35px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.contacts-hero-v2 .info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #e6b89c;
    transform: translateX(-3px);
    transition: transform 0.3s ease;
}

.contacts-hero-v2 .info-item:hover::before {
    transform: translateX(0);
}

.contacts-hero-v2 .info-item:hover {
    background: rgba(230, 184, 156, 0.1);
    border-color: #e6b89c;
}

.contacts-hero-v2 .info-label {
    font-size: 0.75rem;
    color: #b4b4b4;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 600;
}

.contacts-hero-v2 .info-value {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 400;
}

.contacts-hero-v2 .info-value a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacts-hero-v2 .info-value a:hover {
    color: #e6b89c;
}

@media (max-width: 1024px) {
    .contacts-hero-v2-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contacts-hero-v2 h1 {
        font-size: 2.5rem;
    }

    .contacts-hero-v2 .big-text {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .contacts-hero-v2 {
        min-height: auto;
        padding: 80px 0;
    }

    .contacts-hero-v2-wrapper {
        padding: 0 20px;
        gap: 40px;
    }

    .contacts-hero-v2 h1 {
        font-size: 2.2rem;
    }

    .contacts-hero-v2 h1 span {
        font-size: 1.7rem;
    }

    .contacts-hero-v2 .description {
        font-size: 1rem;
    }

    .contacts-hero-v2 .info-item {
        padding: 24px 20px;
    }
}

.contact-note {
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b4b4b4;
    max-width: 460px;
}

.contact-note span {
    color: #e6b89c;
}

/* ========================================
   WORK PROCESS
   ======================================== */

.work-process {
    padding: 120px 20px;
    background: linear-gradient(to bottom, #18110e 0%, #120f0d 18%, #0a0a0a 100%);
}

.work-process .container {
    max-width: 1100px;
    margin: 0 auto;
}

.process-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.process-intro {
    max-width: 720px;
}

.process-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 1px;
    font-weight: 300;
    line-height: 1.2;
}

.process-description {
    font-size: 1.08rem;
    color: #c4c4c4;
    line-height: 1.8;
    margin: 0;
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.advantage-item {
    padding: 24px;
    background: rgba(26, 21, 18, 0.34);
    border: 1px solid rgba(230, 184, 156, 0.14);
    border-left: 3px solid #e6b89c;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(230, 184, 156, 0.08);
    transform: translateY(-4px);
}

.advantage-content {
    display: flex;
    flex-direction: column;
}

.advantage-title {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    color: #ffffff;
    margin: 0 0 10px;
    font-weight: 400;
    line-height: 1.4;
}

.advantage-text {
    color: #b4b4b4;
    line-height: 1.7;
    font-size: 0.98rem;
    margin: 0;
}

.steps-card {
    background: rgba(26, 21, 18, 0.38);
    border: 1px solid rgba(230, 184, 156, 0.18);
    padding: 40px 34px;
}

.steps-label {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b4b4b4;
    margin: 0 0 28px;
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
}

.step-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(230, 184, 156, 0.08);
}

.step-number {
    flex-shrink: 0;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: rgba(230, 184, 156, 0.45);
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
}

.step-content {
    display: flex;
    flex-direction: column;
}

.step-title {
    font-family: 'Cinzel', serif;
    font-size: 1.08rem;
    color: #e6b89c;
    margin: 0 0 6px;
    font-weight: 400;
    line-height: 1.4;
}

.step-text {
    color: #c4c4c4;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .process-title {
        font-size: 2.6rem;
    }

    .advantages-list,
    .steps-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .work-process {
        padding: 80px 20px;
    }

    .process-layout {
        gap: 36px;
    }

    .process-title {
        font-size: 2rem;
        margin-bottom: 18px;
    }

    .process-description {
        font-size: 1rem;
        line-height: 1.75;
    }

    .advantages-list {
        gap: 18px;
    }

    .advantage-item {
        padding: 18px;
    }

    .advantage-title {
        font-size: 1.05rem;
    }

    .advantage-text {
        font-size: 0.95rem;
    }

    .steps-card {
        padding: 28px 20px;
    }

    .steps-label {
        margin-bottom: 20px;
    }

    .steps-list {
        gap: 16px;
    }

    .step-block {
        padding: 18px 16px;
        gap: 12px;
    }

    .step-number {
        font-size: 1.25rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-text {
        font-size: 0.92rem;
    }
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-slider {
    padding: 120px 20px;
    background: #1a1512;
}

.testimonials-slider .testimonials-container {
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-slider h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: #fff;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
    letter-spacing: 2px;
}

.testimonial-slider-wrapper {
    position: relative;
    min-height: 300px;
}

.testimonial-slide {
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.testimonial-content {
    text-align: center;
}

.quote-mark {
    font-family: 'Cinzel', serif;
    font-size: 6rem;
    color: #e6b89c;
    line-height: 0.5;
    margin-bottom: 30px;
    opacity: 0.2;
}

.testimonial-large-text {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 60px;
    font-weight: 300;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid rgba(230, 184, 156, 0.2);
}

.author-info {
    text-align: left;
}

.author-name {
    font-family: 'Cinzel', serif;
    color: #e6b89c;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-detail {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-btn {
    background: none;
    border: 1px solid rgba(230, 184, 156, 0.3);
    color: #e6b89c;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.nav-btn:hover {
    background: rgba(230, 184, 156, 0.1);
    border-color: #e6b89c;
}

.nav-count {
    color: #b4b4b4;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-slider {
        padding: 80px 20px;
    }

    .testimonials-slider h2 {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .testimonial-large-text {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .testimonial-footer {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .author-info {
        text-align: center;
    }
}

/* ========================================
   FAQ
   ======================================== */

.faq-columns {
    padding: 120px 20px;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.faq-columns::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 184, 156, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.faq-columns .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.faq-columns h2 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 1px;
}

.faq-columns .faq-left p {
    color: #b4b4b4;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

.faq-stats {
    display: flex;
    gap: 50px;
    padding: 40px;
    background: rgba(26, 21, 18, 0.5);
    border-left: 3px solid #e6b89c;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #e6b89c;
    font-weight: 700;
}

.stat-text {
    color: #b4b4b4;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-columns .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.faq-columns .faq-item:hover {
    border-bottom-color: rgba(230, 184, 156, 0.3);
}

.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 35px 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    color: inherit;
    font: inherit;
}

.faq-header span {
    font-family: 'Cinzel', serif;
    color: #e6b89c;
    font-size: 1.4rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-columns .faq-item:hover .faq-header span,
.faq-header[aria-expanded="true"] span {
    color: #fff;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #e6b89c;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-header[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 0 35px;
}

.faq-content[hidden] {
    display: none;
}

.faq-content p {
    color: #c4c4c4;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.faq-content li {
    color: #c4c4c4;
    margin-bottom: 12px;
    line-height: 1.7;
}

.faq-content li strong {
    color: #e6b89c;
}

.faq-cta {
    margin-top: 80px;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(26, 21, 18, 0.6) 0%, rgba(26, 21, 18, 0.3) 100%);
    border: 2px solid rgba(230, 184, 156, 0.2);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e6b89c, transparent);
}

.faq-cta > p:first-child {
    font-size: 1.3rem;
    color: #b4b4b4;
    margin-bottom: 15px;
}

.faq-cta h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 400;
}

.faq-contacts {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 40px;
    background: rgba(10, 10, 10, 0.6);
    border: 2px solid rgba(230, 184, 156, 0.2);
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    min-width: 180px;
}

.contact-link:hover {
    border-color: #e6b89c;
    background: rgba(230, 184, 156, 0.1);
    transform: translateY(-5px);
}

.contact-link:hover .contact-icon {
    color: #e6b89c;
    transform: scale(1.1);
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: #b4b4b4;
    transition: all 0.3s ease;
}

.contact-link span {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.faq-response-time {
    font-size: 0.95rem;
    color: #e6b89c;
    font-style: italic;
    margin-top: 30px;
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .faq-columns .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-columns h2 {
        font-size: 2.5rem;
    }

    .faq-stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .faq-columns {
        padding: 80px 20px;
    }

    .faq-columns .container {
        gap: 50px;
    }

    .faq-columns h2 {
        font-size: 2rem;
    }

    .faq-columns .faq-left p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .faq-stats {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-text {
        font-size: 0.85rem;
    }

    .faq-header {
        padding: 25px 0;
        gap: 15px;
    }

    .faq-header span {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .faq-content {
        font-size: 0.95rem;
        padding: 0 0 25px;
    }

    .faq-content p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .faq-content ul {
        padding-left: 20px;
        margin: 15px 0;
    }

    .faq-content li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .faq-cta {
        margin-top: 60px;
        padding: 40px 20px;
    }

    .faq-cta > p:first-child {
        font-size: 1.1rem;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
        margin-bottom: 35px;
    }

    .faq-contacts {
        gap: 20px;
    }

    .contact-link {
        padding: 25px 30px;
        min-width: 150px;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
    }

    .contact-link span {
        font-size: 1rem;
    }

    .faq-response-time {
        font-size: 0.9rem;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .faq-columns {
        padding: 60px 15px;
    }

    .faq-columns h2 {
        font-size: 1.8rem;
    }

    .faq-columns .faq-left p {
        font-size: 0.95rem;
    }

    .faq-header {
        padding: 20px 0;
    }

    .faq-header span {
        font-size: 1rem;
        padding-right: 10px;
    }

    .faq-cta {
        padding: 30px 15px;
    }

    .faq-cta > p:first-child {
        font-size: 1rem;
    }

    .faq-cta h3 {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .faq-contacts {
        flex-direction: column;
        gap: 15px;
    }

    .contact-link {
        min-width: auto;
        padding: 20px;
        flex-direction: row;
        justify-content: center;
    }

    .contact-icon {
        width: 30px;
        height: 30px;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1512 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(230, 184, 156, 0.3), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(230, 184, 156, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(230, 184, 156, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-family: 'Cinzel', 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: #c4c4c4;
    font-weight: 500;
}

.logo-photo {
    color: #e6b89c;
    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: #b4b4b4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #e6b89c;
}

.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(230, 184, 156, 0.12);
    border: 1px solid rgba(230, 184, 156, 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(230, 184, 156, 0.25);
    border-color: #e6b89c;
}

.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: #0a0a0a;
    padding: 16px 20px 16px;
    border-top: 1px solid rgba(230, 184, 156, 0.2);
}

.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: #b4b4b4;
    text-align: center;
}

.site-footer__credits span {
    color: #e6b89c;
    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;
    }
}