/* LRUX† — visual system
   Tailwind handles utilities; this file handles brand typography,
   hero transitions, image treatment and small responsive details. */

:root {
    --lrux-gold: #d6b26a;
    --lrux-gold-soft: #ead09a;
    --lrux-black: #050505;
}

html {
    scroll-behavior: smooth;
    background: var(--lrux-black);
}

body {
    background:
        radial-gradient(circle at 50% 0%, rgba(115, 85, 35, 0.08), transparent 35%),
        var(--lrux-black);
}

/* Font roles */
.font-didot {
    font-family: Didot, "Bodoni Moda", "Bodoni 72", "Times New Roman", serif;
}
.font-bodoni {
    font-family: "Bodoni Moda", Didot, "Bodoni 72", serif;
}
.font-cormorant {
    font-family: "Cormorant Garamond", Georgia, serif;
}
.font-eb {
    font-family: "EB Garamond", Georgia, serif;
}
.font-ui {
    font-family: Inter, Arial, sans-serif;
}

/* Hero */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.025);
    transition:
        opacity 1.8s cubic-bezier(.22,.61,.36,1),
        transform 7s cubic-bezier(.22,.61,.36,1);
    pointer-events: none;
}
.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.72) contrast(1.06) brightness(.68);
}
.hero-overlay {
    background:
        linear-gradient(180deg, rgba(0,0,0,.60) 0%, rgba(0,0,0,.15) 38%, rgba(0,0,0,.78) 100%),
        radial-gradient(circle at 50% 45%, transparent 0%, rgba(0,0,0,.48) 100%);
}
.hero-copy {
    text-shadow: 0 2px 25px rgba(0,0,0,.75);
}

/* Content */
.content-section {
    background: #050505;
}
.image-panel {
    min-height: 65vh;
    overflow: hidden;
}
.image-panel img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 65vh;
    object-fit: cover;
    filter: saturate(.75) contrast(1.05) brightness(.76);
    transition: transform 1.4s cubic-bezier(.22,.61,.36,1), filter 1.4s ease;
}
.image-panel:hover img {
    transform: scale(1.025);
    filter: saturate(.85) contrast(1.06) brightness(.84);
}
.copy-panel {
    padding: 5rem 2rem;
}
.gold-title {
    color: var(--lrux-gold-soft);
    font-size: clamp(2.7rem, 5vw, 5.3rem);
    line-height: .95;
    letter-spacing: -.025em;
    font-weight: 500;
}

/* Prevent missing Hero_004-007 from showing broken-image icons.
   Once those files are added, they become active automatically. */
.hero-slide img[data-missing="true"] {
    display: none;
}

@media (max-width: 1023px) {
    .image-panel,
    .image-panel img {
        min-height: 52vh;
    }
    .copy-panel {
        padding: 4.5rem 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .hero-slide,
    .hero-slide.is-active,
    .image-panel img {
        transition: none;
        transform: none;
    }
}
