/* ===================================================
   NOIR & GOLD — Main Stylesheet
   =================================================== */

/* ── Variables ── */
:root {
    --black: #000;
    --dark-1: #0a0a0a;
    --dark-2: #0f0f0f;
    --dark-3: #151515;
    --dark-4: #1a1a1a;
    --dark-5: #222;
    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --gold-dark: #8a6d2b;
    --white: #fff;
    --gray-1: #f0ece2;
    --gray-2: #bbb;
    --gray-3: #888;
    --gray-4: #555;
    --gray-5: #333;
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-sub: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --transition: .4s cubic-bezier(.25,.46,.45,.94);
    --transition-fast: .25s ease;
    --transition-slow: .8s cubic-bezier(.25,.46,.45,.94);
    --header-h: 80px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-2);
    background: var(--dark-1);
    overflow-x: hidden;
    cursor: none;
}
a { color: var(--gold); text-decoration: none; transition: color var(--transition-fast); cursor: none; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--black); }

/* ── Utility ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container--sm { max-width: 900px; }
.text-center { text-align: center; }
.gold { color: var(--gold); }
.section { padding: 8rem 0; position: relative; }
.section__label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: .75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}
.section__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section__divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-bottom: 2rem;
}
.section__divider.center { margin-left: auto; margin-right: auto; }
.section__text { max-width: 560px; margin-bottom: 1rem; font-size: 1.05rem; }

/* ── Noise Overlay ── */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* ── Custom Cursor ── */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s, background .3s, opacity .3s;
    mix-blend-mode: difference;
}
.cursor-follower {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width .4s ease, height .4s ease, border-color .3s, opacity .3s;
    opacity: .5;
}
body.cursor-hover .cursor { width: 40px; height: 40px; background: rgba(201,168,76,.15); }
body.cursor-hover .cursor-follower { width: 60px; height: 60px; border-color: var(--gold-light); opacity: .8; }
@media (max-width: 1024px) { .cursor, .cursor-follower { display: none !important; } body { cursor: auto; } a, button { cursor: pointer; } }

/* ── Age Gate ── */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .8s ease, visibility .8s ease;
}
.age-gate.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.age-gate__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.95);
    backdrop-filter: blur(20px);
}
.age-gate__content {
    position: relative;
    text-align: center;
    padding: 4rem 3rem;
    max-width: 480px;
    border: 1px solid rgba(201,168,76,.2);
}
.age-gate__logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}
.age-gate__logo span { color: var(--gold); }
.age-gate__ornament { color: var(--gold); font-size: 1.2rem; margin: 1.5rem 0; }
.age-gate__title { font-family: var(--font-heading); color: var(--white); font-size: 1.5rem; margin-bottom: .75rem; }
.age-gate__text { color: var(--gray-3); margin-bottom: .5rem; font-size: .95rem; }
.age-gate__question { color: var(--white); font-weight: 500; margin: 1.5rem 0; font-size: 1.1rem; }
.age-gate__buttons { display: flex; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; }
.age-gate__disclaimer { font-size: .7rem; color: var(--gray-4); }

/* ── Preloader ── */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease .2s, visibility .6s ease .2s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; }
.preloader__logo { display: flex; gap: 2px; justify-content: center; margin-bottom: 2rem; }
.preloader__letter {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    animation: preloaderLetter .5s forwards;
    animation-delay: calc(var(--i) * .1s + .3s);
}
.preloader__amp { color: var(--gold); margin: 0 4px; }
.preloader__bar { width: 200px; height: 1px; background: var(--dark-5); margin: 0 auto; overflow: hidden; }
.preloader__progress { width: 0; height: 100%; background: var(--gold); animation: preloaderBar 2s ease-in-out forwards .5s; }

@keyframes preloaderLetter { to { opacity: 1; transform: translateY(0); } }
@keyframes preloaderBar { to { width: 100%; } }

/* ── Header / Nav ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.header.scrolled {
    background: rgba(10,10,10,.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(201,168,76,.1);
    height: 70px;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav__logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    transition: color var(--transition-fast);
}
.nav__logo:hover { color: var(--white); }
.nav__logo .gold { color: var(--gold); }
.nav__links { display: flex; gap: 2.5rem; }
.nav__link {
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-2);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav__link:hover, .nav__link.is-active { color: var(--gold); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 1.5rem; }
.nav__cta { font-size: .75rem; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--white);
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav__links, .nav__cta { display: none; }
    .hamburger { display: flex; }
}

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(0,0,0,.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__inner { text-align: center; }
.mobile-menu__links { margin-bottom: 3rem; }
.mobile-menu__links li {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .5s ease, transform .5s ease;
    transition-delay: calc(var(--i) * .1s + .2s);
}
.mobile-menu.is-open .mobile-menu__links li { opacity: 1; transform: translateY(0); }
.mobile-menu__links a {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    display: block;
    padding: .3em 0;
    transition: color var(--transition-fast);
}
.mobile-menu__links a:hover, .mobile-menu__links a.is-active { color: var(--gold); }
.mobile-menu__footer { color: var(--gray-4); font-size: .85rem; }
.mobile-menu__footer p { font-family: var(--font-sub); font-style: italic; font-size: 1.1rem; color: var(--gray-3); margin-bottom: 1rem; }
.mobile-menu__social { display: flex; gap: 1.5rem; justify-content: center; }
.mobile-menu__social a { color: var(--gray-3); letter-spacing: 2px; text-transform: uppercase; font-size: .7rem; }
.mobile-menu__social a:hover { color: var(--gold); }

/* ── Buttons ── */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    cursor: none;
}
.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-color: var(--gold);
}
.btn--gold:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 30px rgba(201,168,76,.15);
}
.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.3);
}
.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 30px rgba(201,168,76,.1);
}
.btn--sm { padding: .7rem 1.8rem; font-size: .7rem; }
.btn--full { width: 100%; text-align: center; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 1rem;
}
.link-arrow svg { transition: transform var(--transition); }
.link-arrow:hover svg { transform: translateX(6px); }

/* ── Hero (Home) ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg-img {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.7) 0%,
        rgba(0,0,0,.5) 40%,
        rgba(0,0,0,.6) 70%,
        rgba(10,10,10,1) 100%
    );
}
@keyframes heroZoom { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }

.hero__content { position: relative; text-align: center; z-index: 2; }
.hero__subtitle {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero__title .anim-line { display: block; }
.hero__desc {
    font-family: var(--font-sub);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--gray-2);
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}
.hero__ctas { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    z-index: 2;
}
.hero__scroll span { font-size: .65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-3); }
.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Hero Corners */
.hero__corners { position: absolute; inset: 2rem; z-index: 2; pointer-events: none; }
.corner {
    position: absolute;
    width: 40px;
    height: 40px;
}
.corner::before, .corner::after {
    content: '';
    position: absolute;
    background: var(--gold);
    opacity: .3;
}
.corner--tl { top: 0; left: 0; }
.corner--tl::before { top: 0; left: 0; width: 40px; height: 1px; }
.corner--tl::after { top: 0; left: 0; width: 1px; height: 40px; }
.corner--tr { top: 0; right: 0; }
.corner--tr::before { top: 0; right: 0; width: 40px; height: 1px; }
.corner--tr::after { top: 0; right: 0; width: 1px; height: 40px; }
.corner--bl { bottom: 0; left: 0; }
.corner--bl::before { bottom: 0; left: 0; width: 40px; height: 1px; }
.corner--bl::after { bottom: 0; left: 0; width: 1px; height: 40px; }
.corner--br { bottom: 0; right: 0; }
.corner--br::before { bottom: 0; right: 0; width: 40px; height: 1px; }
.corner--br::after { bottom: 0; right: 0; width: 1px; height: 40px; }

/* ── Page Hero (Sub Pages) ── */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.page-hero--short { min-height: 50vh; }
.page-hero__bg {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(10,10,10,.95));
}
.page-hero__content { position: relative; text-align: center; z-index: 2; padding-top: var(--header-h); }
.page-hero__label {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}
.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.page-hero__desc {
    font-family: var(--font-sub);
    font-size: 1.2rem;
    color: var(--gray-2);
    font-weight: 300;
    letter-spacing: 1px;
}

/* ── Intro Section ── */
.intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.intro__image { position: relative; }
.intro__img-wrapper { position: relative; overflow: hidden; }
.intro__img {
    width: 100%;
    padding-bottom: 130%;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
}
.intro__img-wrapper:hover .intro__img { transform: scale(1.05); }
.intro__img-border {
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(201,168,76,.3);
    pointer-events: none;
}
.intro__badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--dark-1);
    border: 1px solid rgba(201,168,76,.3);
    padding: 1.5rem;
    text-align: center;
}
.intro__badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.intro__badge-text {
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-3);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .intro__grid { grid-template-columns: 1fr; gap: 3rem; }
    .intro__image { order: -1; }
}

/* ── Spirit Cards ── */
.featured__grid, .collection__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.spirit-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,.05);
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.spirit-card:hover {
    border-color: rgba(201,168,76,.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 40px rgba(201,168,76,.05);
}
.spirit-card__image { position: relative; overflow: hidden; }
.spirit-card__img {
    width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .8s ease;
}
.spirit-card:hover .spirit-card__img { transform: scale(1.1); }
.spirit-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7), transparent 50%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}
.spirit-card__badge {
    background: var(--gold);
    color: var(--black);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: .4rem .8rem;
}
.spirit-card__body { padding: 1.75rem; }
.spirit-card__category {
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.spirit-card__name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin: .5rem 0 .75rem;
}
.spirit-card__desc {
    font-size: .9rem;
    color: var(--gray-3);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.spirit-card__footer { display: flex; align-items: center; justify-content: space-between; }
.spirit-card__price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
}
.spirit-card__link {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-2);
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding-bottom: 2px;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}
.spirit-card__link:hover { color: var(--gold); border-color: var(--gold); }

/* Card hidden state for filter animation */
.spirit-card.is-hidden {
    opacity: 0;
    transform: scale(.9);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

/* ── Parallax Quote ── */
.parallax-quote {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}
.parallax-quote__bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.parallax-quote__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.75);
}
.parallax-quote__content { position: relative; text-align: center; max-width: 800px; margin: 0 auto; }
.parallax-quote__mark {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--gold);
    line-height: 1;
    opacity: .4;
}
.parallax-quote__text {
    font-family: var(--font-sub);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--white);
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.parallax-quote__cite {
    font-family: var(--font-body);
    font-size: .8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
}

/* ── Experience Cards ── */
.experience__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}
.exp-card {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,.05);
    background: var(--dark-3);
    transition: border-color var(--transition), transform var(--transition);
}
.exp-card:hover { border-color: rgba(201,168,76,.25); transform: translateY(-5px); }
.exp-card__icon { color: var(--gold); margin-bottom: 1.5rem; }
.exp-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
}
.exp-card__text { font-size: .95rem; color: var(--gray-3); }

@media (max-width: 768px) { .experience__grid { grid-template-columns: 1fr; } }

/* ── Testimonials ── */
.testimonials { background: var(--dark-2); }
.testimonials__slider { position: relative; max-width: 700px; margin: 3rem auto 0; min-height: 200px; }
.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .6s ease, transform .6s ease;
    pointer-events: none;
}
.testimonial.is-active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.testimonial__stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 1.5rem; font-size: 1.1rem; }
.testimonial__text {
    font-family: var(--font-sub);
    font-size: 1.3rem;
    color: var(--white);
    font-style: italic;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.testimonial__name { display: block; color: var(--gold); font-weight: 500; font-size: .9rem; letter-spacing: 1px; }
.testimonial__role { display: block; color: var(--gray-4); font-size: .8rem; margin-top: .25rem; }

.testimonials__controls { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-top: 2.5rem; }
.testimonials__btn {
    color: var(--gray-3);
    transition: color var(--transition-fast);
    padding: .5rem;
}
.testimonials__btn:hover { color: var(--gold); }
.testimonials__dots { display: flex; gap: .75rem; }
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-5);
    transition: background var(--transition-fast), transform var(--transition-fast);
    cursor: pointer;
}
.dot.is-active { background: var(--gold); transform: scale(1.3); }

/* ── Newsletter ── */
.newsletter { background: var(--dark-3); border-top: 1px solid rgba(201,168,76,.1); border-bottom: 1px solid rgba(201,168,76,.1); }
.newsletter__inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.newsletter__form { display: flex; gap: 1rem; flex-shrink: 0; }
.newsletter__input {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--white);
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: .9rem;
    width: 300px;
    transition: border-color var(--transition-fast);
    outline: none;
}
.newsletter__input:focus { border-color: var(--gold); }
.newsletter__input::placeholder { color: var(--gray-4); }

@media (max-width: 768px) {
    .newsletter__inner { flex-direction: column; text-align: center; }
    .newsletter__form { flex-direction: column; width: 100%; }
    .newsletter__input { width: 100%; }
}

/* ── Story Section ── */
.story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.story__image { position: relative; }
.story__img {
    width: 100%;
    padding-bottom: 120%;
    background-size: cover;
    background-position: center;
}
.story__img-accent {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: -2rem;
    bottom: -2rem;
    border: 1px solid rgba(201,168,76,.2);
    z-index: -1;
}
.story__text p { margin-bottom: 1.25rem; font-size: 1.05rem; }
.story__text em { color: var(--gold); font-family: var(--font-sub); font-size: 1.15rem; }

@media (max-width: 900px) {
    .story__grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── Values ── */
.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.value-card {
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,.05);
    background: var(--dark-3);
    transition: border-color var(--transition), transform var(--transition);
}
.value-card:hover { border-color: rgba(201,168,76,.25); transform: translateY(-4px); }
.value-card__num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}
.value-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: .75rem;
}
.value-card__text { color: var(--gray-3); font-size: .95rem; }

@media (max-width: 768px) { .values__grid { grid-template-columns: 1fr; } }

/* ── Timeline ── */
.timeline { position: relative; max-width: 700px; margin: 3rem auto 0; padding-left: 3rem; }
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
}
.timeline__item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 1rem;
}
.timeline__dot {
    position: absolute;
    left: -3.4rem;
    top: .5rem;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(201,168,76,.4);
}
.timeline__card {
    padding: 1.5rem 2rem;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,.05);
}
.timeline__year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: .5rem;
}
.timeline__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: .5rem;
}
.timeline__card p { font-size: .9rem; color: var(--gray-3); }

/* ── Stats ── */
.stats {
    background: var(--dark-3);
    border-top: 1px solid rgba(201,168,76,.1);
    border-bottom: 1px solid rgba(201,168,76,.1);
    padding: 5rem 0;
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat__number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: .75rem;
}
.stat__label {
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-3);
}
@media (max-width: 768px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Collection Filters ── */
.collection__filters {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.filter-btn {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-3);
    padding: .6rem 1.5rem;
    border: 1px solid rgba(255,255,255,.1);
    background: transparent;
    transition: all var(--transition-fast);
    cursor: pointer;
}
.filter-btn:hover, .filter-btn.is-active {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201,168,76,.08);
}

.collection__grid {
    transition: all .4s ease;
}

/* ── Spotlight ── */
.spotlight__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.spotlight__img {
    width: 100%;
    padding-bottom: 130%;
    background-size: cover;
    background-position: center;
}
.spotlight__price-tag {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.spotlight__content p { margin-bottom: 1rem; font-size: 1.05rem; }
.spotlight__details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
}
.spotlight__detail-label {
    display: block;
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-4);
    margin-bottom: .25rem;
}
.spotlight__detail-value {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
}

@media (max-width: 900px) {
    .spotlight__inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── Contact ── */
.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 5rem;
    align-items: start;
}
.contact__info { padding-top: 1rem; }
.contact__info-block { margin-bottom: 2.5rem; }
.contact__info-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: .75rem;
}
.contact__info-block p { font-size: .95rem; line-height: 1.8; }
.contact__link {
    color: var(--gray-2);
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: color var(--transition-fast), border-color var(--transition-fast);
}
.contact__link:hover { color: var(--gold); border-color: var(--gold); }
.contact__social { display: flex; gap: 1.5rem; }
.contact__social-link {
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-3);
}
.contact__social-link:hover { color: var(--gold); }

@media (max-width: 900px) {
    .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── Forms ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label {
    display: block;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-3);
    margin-bottom: .5rem;
}
.form-input {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--white);
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: .9rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
}
.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.form-input::placeholder { color: var(--gray-4); }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── Map ── */
.visit__map { border: 1px solid rgba(255,255,255,.05); overflow: hidden; }

/* ── FAQ ── */
.faq__item {
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.faq__question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color var(--transition-fast);
    cursor: pointer;
}
.faq__question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform var(--transition-fast);
    font-weight: 300;
}
.faq__item.is-open .faq__question::after { transform: rotate(45deg); }
.faq__question:hover { color: var(--gold); }
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease, padding .5s ease;
}
.faq__item.is-open .faq__answer { max-height: 300px; padding-bottom: 1.5rem; }
.faq__answer p { font-size: .95rem; color: var(--gray-3); line-height: 1.8; }

/* ── Footer ── */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(201,168,76,.1);
}
.footer__top { padding: 5rem 0 3rem; }
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
}
.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}
.footer__logo:hover { color: var(--white); }
.footer__tagline { font-size: .9rem; color: var(--gray-4); margin-bottom: 1.5rem; line-height: 1.7; }
.footer__social { display: flex; gap: 1rem; }
.footer__social-link {
    color: var(--gray-4);
    transition: color var(--transition-fast), transform var(--transition-fast);
}
.footer__social-link:hover { color: var(--gold); transform: translateY(-2px); }
.footer__heading {
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.footer__list li { margin-bottom: .75rem; }
.footer__list a {
    font-size: .85rem;
    color: var(--gray-4);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer__list a:hover { color: var(--gold); padding-left: 4px; }
.footer__text { font-size: .85rem; color: var(--gray-4); margin-bottom: 1.25rem; }
.footer__input-wrap { display: flex; border: 1px solid rgba(255,255,255,.1); }
.footer__input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    padding: .8rem 1rem;
    font-family: var(--font-body);
    font-size: .85rem;
    outline: none;
}
.footer__input::placeholder { color: var(--gray-4); }
.footer__submit {
    color: var(--gold);
    padding: .8rem 1rem;
    transition: background var(--transition-fast);
}
.footer__submit:hover { background: rgba(201,168,76,.1); }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.05);
    padding: 1.5rem 0;
}
.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    font-size: .75rem;
    color: var(--gray-5);
}

@media (max-width: 900px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom-inner { flex-direction: column; gap: .5rem; text-align: center; }
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--dark-3);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--black); }

/* ── Responsive ── */
@media (max-width: 480px) {
    .section { padding: 5rem 0; }
    .container { padding: 0 1.25rem; }
    .featured__grid, .collection__grid { grid-template-columns: 1fr; }
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-1); }
::-webkit-scrollbar-thumb { background: var(--dark-5); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }