*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #080608;
    --deep: #0e0b12;
    --purple: #1a0f2e;
    --violet: #2d1650;
    --gold: #c9a84c;
    --gold2: #e8d08a;
    --rose: #b06080;
    --cream: #f5ede0;
    --muted: #7a6e80;
    --font-d: 'Playfair Display', serif;
    --font-b: 'Raleway', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: var(--font-b);
    font-weight: 300;
    cursor: none;
    overflow-x: hidden;
}

/* CURSOR */
#cur {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: transform 0.15s;
}

#cur-ring {
    position: fixed;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 168, 76, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease;
}

/* LOADER */
#loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.ld-title {
    font-family: var(--font-d);
    font-size: 3.5rem;
    letter-spacing: 0.6em;
    color: var(--cream);
    opacity: 0;
    animation: lf 0.9s 0.3s forwards;
}

.ld-sub {
    font-size: 0.6rem;
    letter-spacing: 0.7em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    animation: lf 0.7s 0.8s forwards;
}

.ld-bar-wrap {
    width: 180px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.ld-bar {
    height: 100%;
    background: linear-gradient(to right, var(--rose), var(--gold));
    animation: lb 2s 0.6s ease forwards;
    width: 0;
}

@keyframes lf {
    to {
        opacity: 1;
    }
}

@keyframes lb {
    to {
        width: 100%;
    }
}

#loader.gone {
    animation: lg 0.7s 0.2s forwards;
}

@keyframes lg {
    to {
        opacity: 0;
        pointer-events: none;
    }
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 70px;
    transition: all 0.5s;
}

nav.s {
    background: rgba(8, 6, 8, 0.93);
    backdrop-filter: blur(16px);
    padding: 20px 70px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.logo {
    font-family: var(--font-d);
    font-size: 1.5rem;
    letter-spacing: 0.5em;
    color: var(--cream);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 44px;
    list-style: none;
}

.nav-links a {
    color: rgba(245, 237, 224, 0.6);
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 22, 80, 0.7) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.hero-glow2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 96, 128, 0.25) 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    z-index: 0;
    animation: glowPulse 6s 1s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 140px 20px 0;
    max-width: 900px;
}

.h-eye {
    font-size: 0.65rem;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    animation: fu 0.8s 2.4s forwards;
}

.h-title {
    font-family: var(--font-d);
    font-size: clamp(4.5rem, 11vw, 10rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: 0.04em;
    color: var(--cream);
    margin-bottom: 16px;
    opacity: 0;
    animation: fu 1s 2.6s forwards;
}

.h-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold), var(--rose), var(--gold2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.h-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 28px auto;
    opacity: 0;
    animation: fu 0.7s 2.9s forwards;
}

.h-sub {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 237, 224, 0.5);
    margin-bottom: 48px;
    line-height: 2.2;
    opacity: 0;
    animation: fu 0.8s 3s forwards;
}

.h-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fu 0.8s 3.2s forwards;
}

.btn-primary {
    padding: 15px 44px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--rose));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--black);
    border-color: transparent;
}

.btn-primary:hover::before {
    transform: scaleX(1);
}

.btn-ghost {
    padding: 15px 44px;
    border: 1px solid rgba(245, 237, 224, 0.2);
    color: rgba(245, 237, 224, 0.5);
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: all 0.4s;
}

.btn-ghost:hover {
    border-color: rgba(245, 237, 224, 0.5);
    color: var(--cream);
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeOnly 0.8s 3.6s forwards;
}

@keyframes fadeOnly {
    to {
        opacity: 1;
    }
}

.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--muted);
}

.scroll-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    animation: dotBounce 1.8s ease-in-out infinite;
}

@keyframes dotBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

@keyframes fu {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MARQUEE */
.marquee-wrap {
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.marquee-track {
    display: inline-flex;
    gap: 50px;
    animation: mq 28s linear infinite;
}

.mi {
    font-family: var(--font-d);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: rgba(201, 168, 76, 0.5);
    font-style: italic;
}

.md {
    color: rgba(201, 168, 76, 0.25);
    font-size: 0.6rem;
}

@keyframes mq {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* SECTIONS */
section {
    padding: 130px 70px;
}

.reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal.v {
    opacity: 1;
    transform: translateY(0);
}

.rd1 {
    transition-delay: 0.1s;
}

.rd2 {
    transition-delay: 0.22s;
}

.rd3 {
    transition-delay: 0.36s;
}

.rd4 {
    transition-delay: 0.5s;
}

/* INTRO */
.intro {
    background: var(--deep);
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.intro-visual {
    position: relative;
    height: 600px;
}

.bottle-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 360px;
    animation: bottleFloat 5s ease-in-out infinite;
}

@keyframes bottleFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0) rotate(-2deg);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-18px) rotate(2deg);
    }
}

.bottle {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(45, 22, 80, 0.9) 0%, rgba(14, 11, 18, 0.95) 50%, rgba(45, 22, 80, 0.5) 100%);
    border-radius: 12px 12px 20px 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.3);
    box-shadow: 0 0 80px rgba(45, 22, 80, 0.8), 0 0 30px rgba(201, 168, 76, 0.1), inset 0 0 40px rgba(176, 96, 128, 0.1);
}

.bottle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.bottle::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Ccircle cx='2' cy='2' r='0.5' fill='rgba(201,168,76,0.08)'/%3E%3C/svg%3E");
}

.bottle-label {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 80%;
}

.bottle-name {
    font-family: var(--font-d);
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 0.2em;
}

.bottle-sub {
    font-size: 0.5rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.5);
    margin-top: 4px;
}

.bottle-cap {
    width: 60px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.6), rgba(201, 168, 76, 0.2));
    border-radius: 4px 4px 0 0;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-bottom: none;
}

.b-orb1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 22, 80, 0.6), transparent);
    top: -60px;
    right: -60px;
    filter: blur(40px);
    animation: orbAnim 7s ease-in-out infinite;
}

.b-orb2 {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 96, 128, 0.4), transparent);
    bottom: -40px;
    left: -40px;
    filter: blur(40px);
    animation: orbAnim 9s 2s ease-in-out infinite;
}

@keyframes orbAnim {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.ring1, .ring2, .ring3 {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 4s ease-in-out infinite;
}

.ring1 {
    width: 300px;
    height: 300px;
}

.ring2 {
    width: 420px;
    height: 420px;
    animation-delay: 0.8s;
}

.ring3 {
    width: 540px;
    height: 540px;
    animation-delay: 1.6s;
}

@keyframes ringPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.04);
    }
}

.intro-text .sl {
    font-size: 0.62rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.intro-text h2 {
    font-family: var(--font-d);
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 28px;
}

.intro-text h2 em {
    font-style: italic;
    color: var(--rose);
}

.gold-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 32px 0;
}

.intro-text p {
    color: var(--muted);
    line-height: 2.1;
    font-size: 0.88rem;
    margin-bottom: 18px;
}

.i-stats {
    display: flex;
    gap: 44px;
    margin-top: 44px;
}

.istat span:first-child {
    font-family: var(--font-d);
    font-size: 2.8rem;
    color: var(--gold);
    display: block;
    font-weight: 300;
}

.istat span:last-child {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
    display: block;
}

/* FRAGRANCES */
.fragrances {
    background: var(--black);
}

.frag-header {
    max-width: 1300px;
    margin: 0 auto 72px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.frag-header h2 {
    font-family: var(--font-d);
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
}

.frag-header h2 em {
    font-style: italic;
    color: var(--gold);
}

.frag-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 3px;
}

.frag-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
    cursor: none;
}

.fc-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.frag-card:hover .fc-bg {
    transform: scale(1.1);
}

.fc-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.fc1 {
    background: #0e0b12;
}

.fc2 {
    background: #1a0810;
}

.fc3 {
    background: #080c18;
}

.fc4 {
    background: #100c00;
}

.fc5 {
    background: #0e0b18;
}

.fc6 {
    background: #00100e;
}

.fc-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    transition: all 0.8s;
}

.frag-card:hover .fc-orb {
    opacity: 1 !important;
    transform: scale(1.4);
}

.fc-content {
    position: absolute;
    inset: 0;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.fc-badge {
    position: absolute;
    top: 24px;
    left: 28px;
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 5px 12px;
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.3);
}

.fc-ml {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 0.7rem;
    color: rgba(245, 237, 224, 0.4);
    letter-spacing: 0.1em;
}

.fc-emoji {
    font-size: 2.8rem;
    margin-bottom: 14px;
    display: block;
    transform: translateY(0);
    transition: transform 0.4s ease;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.4));
}

.frag-card:hover .fc-emoji {
    transform: translateY(-8px);
}

.fc-name {
    font-family: var(--font-d);
    font-size: 1.7rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 6px;
}

.fc-family {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 237, 224, 0.4);
    margin-bottom: 14px;
}

.fc-notes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.note {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    color: rgba(245, 237, 224, 0.5);
    border: 1px solid rgba(245, 237, 224, 0.12);
    padding: 3px 10px;
}

.fc-desc {
    font-size: 0.78rem;
    color: rgba(245, 237, 224, 0.6);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.5s;
    opacity: 0;
}

.frag-card:hover .fc-desc {
    max-height: 100px;
    opacity: 1;
}

.fc-price {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fc-price span {
    font-family: var(--font-d);
    font-size: 1.2rem;
    color: var(--gold);
}

.fc-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: all 0.35s;
    cursor: none;
}

.frag-card:hover .fc-btn {
    background: linear-gradient(135deg, var(--gold), var(--rose));
    color: var(--black);
    border-color: transparent;
    transform: rotate(90deg);
}

/* OLFACTORY */
.olfactory {
    background: var(--purple);
}

.olf-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.olf-inner h2 {
    font-family: var(--font-d);
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 300;
    color: var(--cream);
    text-align: center;
    margin-bottom: 16px;
}

.olf-inner h2 em {
    font-style: italic;
    color: var(--gold);
}

.olf-sub {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-bottom: 80px;
}

.pyramid {
    max-width: 600px;
    margin: 0 auto;
}

.pyr-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.pyr-row:nth-child(2) {
    transform: scale(0.92);
}

.pyr-row:nth-child(3) {
    transform: scale(0.82);
}

.pyr-label {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 10px;
}

.note-pill {
    padding: 10px 20px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--cream);
    transition: all 0.4s;
    cursor: none;
}

.note-pill:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* QUOTE */
.quote-sec {
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-sec::before {
    content: '"';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-d);
    font-size: 36rem;
    color: rgba(201, 168, 76, 0.025);
    line-height: 1;
    pointer-events: none;
}

.quote-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

blockquote {
    font-family: var(--font-d);
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.55;
    margin-bottom: 44px;
}

blockquote em {
    color: var(--gold);
    font-style: normal;
}

.q-div {
    width: 36px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 16px;
}

.q-auth {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
}

.q-role {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
}

/* EXPERIENCE */
.experience {
    background: var(--deep);
}

.exp-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.exp-inner h2 {
    font-family: var(--font-d);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 72px;
    text-align: center;
}

.exp-inner h2 em {
    font-style: italic;
    color: var(--rose);
}

.exp-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1px;
    background: rgba(201, 168, 76, 0.08);
}

.exp-card {
    background: var(--deep);
    padding: 52px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.5s;
}

.exp-card:hover {
    background: rgba(45, 22, 80, 0.5);
}

.exp-num {
    font-family: var(--font-d);
    font-size: 6rem;
    color: rgba(201, 168, 76, 0.07);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.5s;
}

.exp-card:hover .exp-num {
    color: rgba(201, 168, 76, 0.18);
}

.exp-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    display: block;
}

.exp-title {
    font-family: var(--font-d);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 14px;
}

.exp-text {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 2;
}

.exp-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(to right, var(--rose), var(--gold));
    transition: width 0.6s ease;
}

.exp-card:hover .exp-line {
    width: 100%;
}

/* NEWSLETTER */
.newsletter {
    background: linear-gradient(135deg, var(--purple) 0%, var(--black) 100%);
    text-align: center;
    padding: 100px 70px;
    position: relative;
    overflow: hidden;
}

.nl-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 96, 128, 0.12), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: glowPulse 5s ease-in-out infinite;
}

.nl-inner {
    max-width: 660px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nl-inner h2 {
    font-family: var(--font-d);
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 16px;
}

.nl-inner h2 em {
    font-style: italic;
    color: var(--gold);
}

.nl-inner p {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 44px;
    line-height: 1.9;
    letter-spacing: 0.05em;
}

.nl-form {
    display: flex;
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.nl-form input {
    flex: 1;
    padding: 16px 22px;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-b);
    font-size: 0.78rem;
    color: var(--cream);
    letter-spacing: 0.1em;
}

.nl-form input::placeholder {
    color: rgba(245, 237, 224, 0.25);
}

.nl-form button {
    padding: 16px 26px;
    background: linear-gradient(135deg, var(--gold), var(--rose));
    border: none;
    color: var(--black);
    font-family: var(--font-b);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: none;
    transition: opacity 0.3s;
    font-weight: 400;
}

.nl-form button:hover {
    opacity: 0.85;
}

/* FOOTER */
footer {
    background: var(--black);
    padding: 80px 70px 44px;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.ft {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.ft-logo {
    font-family: var(--font-d);
    font-size: 2.2rem;
    letter-spacing: 0.4em;
    color: var(--cream);
    display: block;
    margin-bottom: 18px;
}

.ft-tag {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 2;
    max-width: 230px;
}

.ft-col h4 {
    font-size: 0.6rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.ft-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.ft-col a {
    font-size: 0.78rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

.ft-col a:hover {
    color: var(--cream);
}

.ft-bot {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ft-bot p {
    font-size: 0.68rem;
    color: rgba(122, 110, 128, 0.45);
    letter-spacing: 0.1em;
}

.socials {
    display: flex;
    gap: 14px;
}

.socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.72rem;
    transition: all 0.3s;
}

.socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* INTERACTIVE MIST */
#mist-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

@media (max-width: 900px) {
    nav {
        padding: 22px 28px;
    }

    nav.s {
        padding: 16px 28px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 80px 28px;
    }

    .intro {
        grid-template-columns:1fr;
    }

    .intro-visual {
        height: 380px;
    }

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

    .exp-grid {
        grid-template-columns:1fr 1fr;
    }

    .ft {
        grid-template-columns:1fr 1fr;
        gap: 40px;
    }

    .newsletter {
        padding: 70px 28px;
    }
}

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

    .exp-grid {
        grid-template-columns:1fr;
    }

    .ft {
        grid-template-columns:1fr;
    }

    .frag-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .i-stats {
        flex-wrap: wrap;
    }
}