/*
====================================================
HERO - ARMENIA CRYSTAL
Luxury Brand Edition
====================================================
*/

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #050505;
}

/* ====================================================
   BACKGROUND
==================================================== */

.hero-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(212, 175, 55, 0.10),
            transparent 40%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(212, 175, 55, 0.05),
            transparent 35%
        );
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.45) 45%,
            rgba(0, 0, 0, 0.15) 100%
        );
    pointer-events: none;
}

/* ====================================================
   LAYOUT
==================================================== */

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 46% 54%;
    gap: 90px;
    align-items: center;
    padding: 110px 0 90px;
}

.hero-content {
    max-width: 620px;
}

/* ====================================================
   TYPOGRAPHY
==================================================== */

.hero-kicker {
    display: inline-block;
    margin-bottom: 28px;
    color: #D4AF37;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(64px, 6vw, 86px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -2px;
}

.hero-subtitle {
    margin: 0 0 28px;
    color: #f4f4f4;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.15;
}

.hero-description {
    max-width: 600px;
    margin: 0 0 42px;
    color: #bdbdbd;
    font-size: 18px;
    line-height: 1.9;
}

/* ====================================================
   BUTTONS
==================================================== */

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 17px 34px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.btn-primary {
    border: 1px solid #D4AF37;
    background: #D4AF37;
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: transparent;
    color: #ffffff;
}

.btn-secondary:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

/* ====================================================
   STATISTICS
==================================================== */

.hero-stats {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
}

.stat-label {
    color: #D4AF37;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ====================================================
   HERO IMAGE
==================================================== */

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 880px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: inherit;
    pointer-events: none;
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* ====================================================
   SCROLL INDICATOR
==================================================== */

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #888888;
    cursor: pointer;
    transform: translateX(-50%);
}

.scroll-indicator span {
    width: 2px;
    height: 44px;
    background: #D4AF37;
    animation: scrollLine 2s infinite ease-in-out;
}

.scroll-indicator p {
    margin: 0;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes scrollLine {
    0%,
    100% {
        opacity: 0.30;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* ====================================================
   LUXURY STRIP
==================================================== */

.hero-strip {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: #080808;
}

.hero-strip-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.strip-item {
    color: #D4AF37;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.strip-divider {
    color: #666666;
}

/* ====================================================
   ANIMATION HELPERS
==================================================== */

.hero-kicker,
.hero-title,
.hero-subtitle,
.hero-description,
.hero-buttons,
.hero-stats,
.hero-image {
    will-change: transform, opacity;
}

/* ====================================================
   RESPONSIVE - LAPTOP
==================================================== */

@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
        padding: 105px 0 80px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-stats {
        gap: 36px;
    }
}

/* ====================================================
   RESPONSIVE - TABLET
==================================================== */

@media (max-width: 1100px) {
    .hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 55px;
        padding: 115px 0 85px;
        text-align: center;
    }

    .hero-content {
        max-width: 760px;
        margin: 0 auto;
    }

    .hero-description {
        max-width: 700px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        justify-content: center;
    }

    .hero-image {
        max-width: 820px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ====================================================
   RESPONSIVE - MOBILE
==================================================== */

@media (max-width: 768px) {
    .hero-container {
        gap: 42px;
        padding: 105px 0 70px;
    }

    .hero-kicker {
        margin-bottom: 20px;
        font-size: 11px;
        letter-spacing: 3px;
    }

    .hero-title {
        font-size: clamp(54px, 15vw, 68px);
        letter-spacing: -1px;
    }

    .hero-subtitle {
        margin-bottom: 22px;
        font-size: 30px;
    }

    .hero-description {
        margin-bottom: 32px;
        font-size: 16px;
        line-height: 1.75;
    }

    .hero-buttons {
        flex-direction: column;
        margin-bottom: 42px;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    .hero-stat {
        align-items: center;
    }

    .hero-image {
        border-radius: 20px;
    }

    .hero-strip {
        padding: 18px 0;
    }

    .hero-strip-container {
        gap: 12px 18px;
    }

    .strip-item {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
}

/* ====================================================
   REDUCED MOTION
==================================================== */

@media (prefers-reduced-motion: reduce) {
    .hero-image img,
    .btn,
    .scroll-indicator span {
        animation: none;
        transition: none;
    }
}