/* =========================================================
   LUXORA
   LUXURY BLACK & GOLD
========================================================= */

:root {

    --black: #050505;
    --black-soft: #0b0b0b;
    --black-card: #101010;

    --gold: #d4af37;
    --gold-light: #f5d76e;
    --gold-soft: #b9952f;

    --white: #ffffff;
    --text: #eeeeee;
    --muted: #a7a7a7;

    --border: rgba(212, 175, 55, 0.28);

    --gold-gradient:
        linear-gradient(
            135deg,
            #a77a16 0%,
            #d4af37 30%,
            #ffe58a 50%,
            #d4af37 70%,
            #a77a16 100%
        );

    --shadow-gold:
        0 0 30px rgba(212, 175, 55, 0.12);

    --container: 1200px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Inter", sans-serif;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(212, 175, 55, 0.07),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 60%,
            rgba(212, 175, 55, 0.04),
            transparent 35%
        ),
        var(--black);

    color: var(--text);

    min-height: 100vh;

    overflow-x: hidden;

}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 999;

    background:
        rgba(5, 5, 5, 0.92);

    border-bottom:
        1px solid var(--border);

    backdrop-filter:
        blur(18px);

}

.navbar {

    width: min(
        var(--container),
        calc(100% - 40px)
    );

    min-height: 82px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.brand-logo img {

    width: 180px;

    height: 60px;

    object-fit: contain;

    transition:
        transform 0.3s ease,
        filter 0.3s ease;

}

.brand-logo:hover img {

    transform:
        scale(1.04);

    filter:
        drop-shadow(
            0 0 12px
            rgba(212, 175, 55, 0.55)
        );

}

.nav-actions {

    display: flex;

    align-items: center;

    gap: 12px;

}


/* =========================================================
   BUTTON
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding:
        0 25px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing:
        2px;

    border-radius:
        2px;

    transition:
        all 0.3s ease;

}

.btn-login {

    border:
        1px solid
        rgba(255,255,255,0.45);

    color:
        var(--white);

    background:
        transparent;

}

.btn-login:hover {

    border-color:
        var(--gold);

    color:
        var(--gold-light);

}

.btn-gold {

    color:
        #090909;

    background:
        var(--gold-gradient);

    box-shadow:
        0 8px 25px
        rgba(212,175,55,0.18);

}

.btn-gold:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 35px
        rgba(212,175,55,0.3);

}

.btn-primary {

    color:
        #080808;

    background:
        var(--gold-gradient);

    gap: 15px;

}

.btn-primary:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(212,175,55,0.28);

}

.btn-outline {

    border:
        1px solid
        rgba(212,175,55,0.5);

    color:
        var(--gold-light);

}

.btn-outline:hover {

    background:
        rgba(212,175,55,0.08);

    border-color:
        var(--gold);

}

.btn.large {

    min-height:
        54px;

    padding:
        0 32px;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    padding:
        90px 20px
        100px;

}

.hero::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    left: -250px;

    top: 100px;

    border-radius: 50%;

    background:
        rgba(212,175,55,0.06);

    filter:
        blur(100px);

    pointer-events: none;

}

.hero-container {

    width:
        min(
            var(--container),
            100%
        );

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        500px 1fr;

    align-items:
        center;

    gap:
        90px;

}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

}

.gold-frame {

    position:
        relative;

    width:
        500px;

    height:
        500px;

    padding:
        9px;

    background:
        var(--gold-gradient);

    box-shadow:
        0 25px 70px
        rgba(0,0,0,0.6),

        0 0 45px
        rgba(212,175,55,0.12);

}

.gold-frame::before {

    content: "";

    position:
        absolute;

    inset:
        18px;

    border:
        1px solid
        rgba(255,255,255,0.45);

    pointer-events:
        none;

    z-index:
        2;

}

.gold-frame img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    filter:
        saturate(0.95);

    transition:
        transform 0.6s ease;

}

.gold-frame:hover img {

    transform:
        scale(1.035);

}


/* =========================================================
   DECORATIVE CORNERS
========================================================= */

.corner {

    position:
        absolute;

    width:
        35px;

    height:
        35px;

    z-index:
        4;

    pointer-events:
        none;

}

.corner-top-left {

    top: 0;

    left: 0;

    border-top:
        3px solid var(--gold-light);

    border-left:
        3px solid var(--gold-light);

}

.corner-top-right {

    top: 0;

    right: 0;

    border-top:
        3px solid var(--gold-light);

    border-right:
        3px solid var(--gold-light);

}

.corner-bottom-left {

    bottom: 0;

    left: 0;

    border-bottom:
        3px solid var(--gold-light);

    border-left:
        3px solid var(--gold-light);

}

.corner-bottom-right {

    bottom: 0;

    right: 0;

    border-bottom:
        3px solid var(--gold-light);

    border-right:
        3px solid var(--gold-light);

}


/* =========================================================
   VISUAL CAPTION
========================================================= */

.visual-caption {

    display:
        flex;

    align-items:
        center;

    gap:
        14px;

    margin-top:
        20px;

    color:
        var(--gold-light);

    font-size:
        10px;

    font-weight:
        600;

    letter-spacing:
        4px;

}

.visual-caption span {

    width:
        35px;

    height:
        1px;

    background:
        var(--gold);

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    max-width:
        600px;

}

.eyebrow {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    color:
        var(--gold-light);

    font-size:
        10px;

    letter-spacing:
        4px;

    font-weight:
        600;

    margin-bottom:
        24px;

}

.eyebrow .line {

    width:
        30px;

    height:
        1px;

    background:
        var(--gold);

}

.hero-content h1 {

    font-family:
        "Cinzel",
        serif;

    font-size:
        clamp(
            3rem,
            6vw,
            5.3rem
        );

    line-height:
        1.02;

    font-weight:
        600;

    letter-spacing:
        -2px;

    color:
        var(--white);

    margin-bottom:
        25px;

}

.hero-content h1 strong {

    display:
        block;

    font-weight:
        700;

    background:
        var(--gold-gradient);

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;

    text-shadow:
        0 5px 30px
        rgba(212,175,55,0.12);

}

.hero-description {

    color:
        var(--muted);

    font-size:
        16px;

    line-height:
        1.9;

    max-width:
        570px;

    margin-bottom:
        32px;

}


/* =========================================================
   HERO FEATURES
========================================================= */

.hero-features {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        12px;

    margin-bottom:
        32px;

}

.feature-item {

    display:
        flex;

    align-items:
        center;

    gap:
        14px;

    padding:
        14px;

    border:
        1px solid
        rgba(212,175,55,0.13);

    background:
        rgba(255,255,255,0.015);

    transition:
        all 0.3s ease;

}

.feature-item:hover {

    border-color:
        rgba(212,175,55,0.4);

    background:
        rgba(212,175,55,0.04);

    transform:
        translateY(-2px);

}

.feature-icon {

    width:
        38px;

    height:
        38px;

    flex-shrink:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--gold-light);

    border:
        1px solid
        var(--border);

    font-size:
        17px;

}

.feature-item strong {

    display:
        block;

    color:
        var(--white);

    font-size:
        12px;

    margin-bottom:
        3px;

}

.feature-item span {

    color:
        #777;

    font-size:
        10px;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {

    display:
        flex;

    gap:
        12px;

    flex-wrap:
        wrap;

}

.trust-line {

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    margin-top:
        25px;

    color:
        #777;

    font-size:
        9px;

    letter-spacing:
        3px;

}

.gold-dot {

    width:
        5px;

    height:
        5px;

    border-radius:
        50%;

    background:
        var(--gold);

}


/* =========================================================
   FEATURE STRIP
========================================================= */

.feature-strip {

    border-top:
        1px solid
        rgba(212,175,55,0.12);

    border-bottom:
        1px solid
        rgba(212,175,55,0.12);

    background:
        #090909;

}

.feature-strip-container {

    width:
        min(
            var(--container),
            calc(100% - 40px)
        );

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

}

.strip-card {

    display:
        flex;

    gap:
        20px;

    padding:
        35px 30px;

    border-right:
        1px solid
        rgba(212,175,55,0.1);

}

.strip-card:last-child {
    border-right: none;
}

.strip-number {

    font-family:
        "Cinzel",
        serif;

    color:
        var(--gold);

    font-size:
        13px;

}

.strip-card h3 {

    font-family:
        "Cinzel",
        serif;

    color:
        var(--white);

    font-size:
        17px;

    margin-bottom:
        7px;

}

.strip-card p {

    color:
        #777;

    font-size:
        12px;

    line-height:
        1.7;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.about-section,
.seo-section {

    width:
        min(
            var(--container),
            calc(100% - 40px)
        );

    margin:
        auto;

    padding:
        110px 0;

}

.section-heading {

    text-align:
        center;

    margin-bottom:
        60px;

}

.section-label {

    display:
        block;

    color:
        var(--gold);

    font-size:
        10px;

    letter-spacing:
        4px;

    font-weight:
        600;

    margin-bottom:
        18px;

}

.section-heading h2 {

    font-family:
        "Cinzel",
        serif;

    font-size:
        clamp(
            2rem,
            4vw,
            3.2rem
        );

    line-height:
        1.2;

    color:
        var(--white);

}

.section-heading h2 span {

    display:
        block;

    background:
        var(--gold-gradient);

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;

}

.heading-line {

    width:
        70px;

    height:
        2px;

    margin:
        22px auto 0;

    background:
        var(--gold);

}


/* =========================================================
   ABOUT
========================================================= */

.about-content {

    display:
        grid;

    grid-template-columns:
        420px 1fr;

    align-items:
        center;

    gap:
        80px;

}

.small-frame {

    padding:
        7px;

    background:
        var(--gold-gradient);

    position:
        relative;

}

.small-frame::after {

    content: "";

    position:
        absolute;

    width:
        70%;

    height:
        70%;

    right:
        -20px;

    bottom:
        -20px;

    border:
        1px solid
        rgba(212,175,55,0.25);

    z-index:
        -1;

}

.small-frame img {

    width:
        100%;

    aspect-ratio:
        1 / 1;

    object-fit:
        cover;

}

.about-text p {

    color:
        var(--muted);

    font-size:
        14px;

    line-height:
        1.95;

    margin-bottom:
        18px;

}

.about-text strong {

    color:
        var(--gold-light);

}

.text-link {

    display:
        inline-flex;

    gap:
        12px;

    margin-top:
        12px;

    color:
        var(--gold-light);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        2px;

}

.text-link:hover span {

    transform:
        translateX(5px);

}

.text-link span {

    transition:
        transform 0.3s ease;

}


/* =========================================================
   PREMIUM BANNER
========================================================= */

.premium-banner {

    padding:
        0 20px
        100px;

}

.premium-banner-inner {

    width:
        min(
            var(--container),
            100%
        );

    min-height:
        380px;

    margin:
        auto;

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    text-align:
        center;

    overflow:
        hidden;

    border:
        1px solid
        rgba(212,175,55,0.3);

    background:

        radial-gradient(
            circle at center,
            rgba(212,175,55,0.12),
            transparent 50%
        ),

        #0b0b0b;

}

.banner-content {

    position:
        relative;

    z-index:
        2;

    max-width:
        650px;

    padding:
        40px 20px;

}

.banner-content > span {

    color:
        var(--gold);

    font-size:
        10px;

    letter-spacing:
        4px;

}

.banner-content h2 {

    font-family:
        "Cinzel",
        serif;

    font-size:
        clamp(
            2rem,
            4vw,
            3.5rem
        );

    line-height:
        1.2;

    margin:
        15px 0;

}

.banner-content h2 strong {

    display:
        block;

    background:
        var(--gold-gradient);

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;

}

.banner-content p {

    color:
        var(--muted);

    font-size:
        14px;

    line-height:
        1.8;

    margin:
        0 auto 25px;

    max-width:
        500px;

}

.banner-decoration {

    position:
        absolute;

    width:
        220px;

    height:
        220px;

    border:
        1px solid
        rgba(212,175,55,0.15);

    transform:
        rotate(45deg);

}

.banner-decoration.left {

    left:
        -140px;

}

.banner-decoration.right {

    right:
        -140px;

}


/* =========================================================
   SEO GRID
========================================================= */

.seo-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        18px;

}

.seo-card {

    padding:
        35px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.008)
        );

    border:
        1px solid
        rgba(212,175,55,0.14);

    position:
        relative;

}

.seo-card::before {

    content: "";

    position:
        absolute;

    left:
        0;

    top:
        0;

    width:
        3px;

    height:
        45px;

    background:
        var(--gold);

}

.seo-card h3 {

    font-family:
        "Cinzel",
        serif;

    color:
        var(--gold-light);

    font-size:
        18px;

    margin-bottom:
        18px;

}

.seo-card p {

    color:
        #858585;

    font-size:
        13px;

    line-height:
        1.9;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding:
        60px 20px 40px;

    text-align:
        center;

    border-top:
        1px solid
        rgba(212,175,55,0.12);

    background:
        #030303;

}

.site-footer > img {

    width:
        150px;

    height:
        50px;

    object-fit:
        contain;

    margin:
        25px auto 15px;

}

.footer-decoration {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        15px;

}

.footer-decoration span {

    width:
        50px;

    height:
        1px;

    background:
        rgba(212,175,55,0.35);

}

.footer-decoration b {

    color:
        var(--gold);

    font-size:
        14px;

}

.footer-tagline {

    color:
        var(--gold);

    font-size:
        9px;

    letter-spacing:
        3px;

    margin-bottom:
        25px;

}

.footer-links {

    display:
        flex;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        25px;

    margin-bottom:
        25px;

}

.footer-links a {

    color:
        #777;

    font-size:
        11px;

    transition:
        color 0.3s ease;

}

.footer-links a:hover {

    color:
        var(--gold-light);

}

.copyright {

    color:
        #444;

    font-size:
        10px;

    letter-spacing:
        1px;

}

.copyright span {

    color:
        var(--gold);

}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1050px) {

    .hero-container {

        grid-template-columns:
            420px 1fr;

        gap:
            50px;

    }

    .gold-frame {

        width:
            420px;

        height:
            420px;

    }

    .about-content {

        grid-template-columns:
            360px 1fr;

        gap:
            50px;

    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    .navbar {

        min-height:
            75px;

    }

    .hero {

        padding:
            60px 20px
            80px;

    }

    .hero-container {

        grid-template-columns:
            1fr;

        gap:
            55px;

    }

    .hero-visual {

        order:
            1;

    }

    .hero-content {

        order:
            2;

        max-width:
            700px;

        margin:
            auto;

        text-align:
            center;

    }

    .eyebrow {

        justify-content:
            center;

    }

    .hero-description {

        margin-left:
            auto;

        margin-right:
            auto;

    }

    .hero-buttons {

        justify-content:
            center;

    }

    .trust-line {

        justify-content:
            center;

    }

    .feature-strip-container {

        grid-template-columns:
            1fr;

    }

    .strip-card {

        border-right:
            none;

        border-bottom:
            1px solid
            rgba(212,175,55,0.1);

    }

    .strip-card:last-child {

        border-bottom:
            none;

    }

    .about-content {

        grid-template-columns:
            1fr;

        max-width:
            600px;

        margin:
            auto;

    }

    .about-image {

        max-width:
            420px;

        margin:
            auto;

    }

    .about-text {

        text-align:
            center;

    }

    .seo-grid {

        grid-template-columns:
            1fr;

        max-width:
            650px;

        margin:
            auto;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .navbar {

        width:
            calc(100% - 24px);

    }

    .brand-logo img {

        width:
            135px;

        height:
            48px;

    }

    .nav-actions {

        gap:
            6px;

    }

    .btn {

        min-height:
            42px;

        padding:
            0 14px;

        font-size:
            9px;

        letter-spacing:
            1.2px;

    }

    .hero {

        padding:
            45px 14px
            60px;

    }

    .gold-frame {

        width:
            min(
                100%,
                330px
            );

        height:
            auto;

        aspect-ratio:
            1 / 1;

    }

    .hero-content h1 {

        font-size:
            2.55rem;

        letter-spacing:
            -1px;

    }

    .hero-description {

        font-size:
            13px;

    }

    .hero-features {

        grid-template-columns:
            1fr;

        text-align:
            left;

    }

    .hero-buttons {

        flex-direction:
            column;

    }

    .hero-buttons .btn {

        width:
            100%;

    }

    .trust-line {

        font-size:
            7px;

        letter-spacing:
            1.5px;

    }

    .about-section,
    .seo-section {

        width:
            calc(100% - 28px);

        padding:
            75px 0;

    }

    .section-heading {

        margin-bottom:
            40px;

    }

    .section-heading h2 {

        font-size:
            1.9rem;

    }

    .premium-banner {

        padding:
            0 14px
            70px;

    }

    .premium-banner-inner {

        min-height:
            350px;

    }

    .banner-content h2 {

        font-size:
            2rem;

    }

    .banner-content p {

        font-size:
            12px;

    }

    .seo-card {

        padding:
            25px;

    }

    .footer-links {

        gap:
            15px;

    }

}