/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #FAF6F0;
    --brown: #3D2B1F;
    --gold: #C5A55A;
    --gold-light: #D4B96E;
    --white: #FFFFFF;
    --text: #4A3728;
    --text-light: #7A6A5E;
    --bg-warm: #F5EDE3;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--brown);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.section-title--light {
    color: var(--cream);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn--primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn--primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 165, 90, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn--outline:hover {
    background: var(--cream);
    color: var(--brown);
    transform: translateY(-2px);
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 100;
    display: flex;
    background: rgba(61, 43, 31, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 4px;
    gap: 2px;
}

.lang-btn {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.lang-btn.active {
    background: var(--gold);
    color: var(--white);
}

.lang-btn:hover:not(.active) {
    color: var(--white);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/photo-6.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(61, 43, 31, 0.55) 0%,
        rgba(61, 43, 31, 0.7) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    max-width: 700px;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero__socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* ===== WHY US ===== */
.why {
    padding: 4rem 0;
    background: var(--white);
}

.why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.why__card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: var(--cream);
    transition: transform 0.3s ease;
}

.why__card:hover {
    transform: translateY(-4px);
}

.why__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
}

.why__icon svg {
    width: 28px;
    height: 28px;
}

.why__card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.why__card-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== STEPS ===== */
.steps {
    padding: 4rem 0;
    background: var(--bg-warm);
}

.steps__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.steps__item {
    text-align: center;
    position: relative;
}

.steps__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brown);
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.steps__item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.steps__item-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 4rem 0;
    background: var(--white);
}

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

.gallery__item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

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

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    z-index: 1001;
    padding: 8px;
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    line-height: 1;
    z-index: 1001;
    transition: background 0.3s;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox__prev {
    left: 12px;
}

.lightbox__next {
    right: 12px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 4rem 0;
    background: var(--brown);
    text-align: center;
}

.contact__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.contact__phone {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.contact__phone:hover {
    color: var(--gold);
}

.contact__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.contact__city {
    font-size: 0.9rem;
    color: rgba(250, 246, 240, 0.5);
}

/* ===== FOOTER ===== */
.footer {
    padding: 1.5rem 0;
    background: #2A1D14;
    text-align: center;
    color: rgba(250, 246, 240, 0.4);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE — TABLET (600px+) ===== */
@media (min-width: 600px) {
    .hero__title {
        font-size: 3rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2.1rem;
    }

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

    .steps__grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: none;
        gap: 1.5rem;
    }

    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .gallery__item:first-child {
        grid-column: span 3;
        aspect-ratio: 21/9;
    }

    .contact__actions {
        flex-direction: row;
        justify-content: center;
    }

    .contact__phone {
        font-size: 2.2rem;
    }
}

/* ===== RESPONSIVE — DESKTOP (900px+) ===== */
@media (min-width: 900px) {
    .hero__title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.3rem;
        margin-bottom: 3rem;
    }

    .why {
        padding: 5rem 0;
    }

    .why__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .why__card {
        padding: 2.5rem 1.5rem;
    }

    .steps {
        padding: 5rem 0;
    }

    .gallery {
        padding: 5rem 0;
    }

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

    .contact {
        padding: 5rem 0;
    }
}
