/* ── Dakshayani Design System ── */
:root {
    /* Colors from DNA */
    --lux-crimson: #7B0D1E;
    --lux-deep: #4A0810;
    --lux-gold: #C9A84C;
    --lux-gold-light: #E8C97A;
    --lux-gold-pale: #F5E6B8;
    --lux-ivory: #FAF6EE;
    --lux-ivory-dark: #F0E8D8;
    --lux-charcoal: #1A1410;
    --lux-warm-gray: #8A7E72;

    /* Fonts */
    --font-display: 'Cormorant Garamond', serif;
    --font-label: 'Cinzel', serif;
    --font-body: 'EB Garamond', serif;
    --font-modern: 'DM Sans', sans-serif;

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --transition-slow: 1.2s var(--ease-out);
    --transition-md: 0.6s var(--ease-out);
}

/* ── Reset & Global ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--lux-ivory);
    color: var(--lux-charcoal);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none; /* Hide default cursor for custom cursor experience */
}

/* ── Custom Cursor ── */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--lux-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease-out;
}

/* ── Grain Texture Overlay ── */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9000;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container.narrow {
    max-width: 800px;
}

.italic { font-style: italic; }
.gold { 
    color: var(--lux-gold); 
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

/* ── Typography ── */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 500;
}

.label {
    display: block;
    font-family: var(--font-label);
    font-size: 12px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--lux-gold);
    margin-bottom: 20px;
}

/* ── Hero Section ── */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.parallax-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    transform: translateY(0);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 20, 16, 0.7) 0%, rgba(26, 20, 16, 0.2) 100%);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 0;
    z-index: 100;
    transition: var(--transition-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 2px;
    border-radius: 50%;
}

.brand-name {
    font-family: var(--font-label);
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--lux-ivory);
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--lux-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--lux-gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.status-text {
    font-family: var(--font-label);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lux-gold-pale);
}

.hero-content {
    color: var(--lux-ivory);
    position: relative;
    z-index: 10;
}

.eyebrow {
    display: block;
    font-family: var(--font-label);
    font-size: 12px;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    color: var(--lux-gold);
    margin-bottom: 30px;
}

.main-title {
    font-size: clamp(60px, 10vw, 140px);
    line-height: 0.9;
    margin-bottom: 40px;
}

.main-title .line {
    display: block;
}

.hero-subtext {
    font-size: 24px;
    max-width: 600px;
    opacity: 0.8;
    margin-bottom: 50px;
    font-style: italic;
}

.hero-teaser {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    display: inline-block;
}

.teaser-text {
    font-family: var(--font-label);
    font-size: 14px;
    letter-spacing: 0.8em;
    text-transform: uppercase;
    opacity: 0.7;
}

.btn-primary {
    display: inline-block;
    padding: 20px 45px;
    background: var(--lux-gold);
    color: var(--lux-deep);
    font-family: var(--font-label);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--lux-gold-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ── Scroll Indicator ── */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--lux-gold);
    opacity: 0.6;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--lux-gold);
    border-radius: 15px;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 2px;
    height: 8px;
    background: var(--lux-gold);
    margin-top: 8px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

.scroll-indicator span {
    font-family: var(--font-label);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ── Story Section ── */
.story {
    padding: 180px 0;
    background-color: var(--lux-ivory);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-title {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--lux-charcoal);
}

.story-text p {
    font-size: 22px;
    color: var(--lux-warm-gray);
    margin-bottom: 50px;
    max-width: 550px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.feature-num {
    font-family: var(--font-display);
    font-size: 24px;
    font-style: italic;
    color: var(--lux-gold);
}

.feature-name {
    font-family: var(--font-label);
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.story-visual {
    position: relative;
}

.image-stack {
    position: relative;
}

.img-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    box-shadow: 30px 30px 60px rgba(26, 20, 16, 0.1);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) sepia(0.1);
}

.glass-card {
    position: absolute;
    bottom: -40px;
    right: -40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 300px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.glass-card .card-title {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--lux-deep);
}

.glass-card p {
    font-family: var(--font-label);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lux-gold);
    margin: 0;
}

/* ── Footer ── */
footer {
    padding: 80px 0;
    border-top: 1px solid rgba(26, 20, 16, 0.05);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    opacity: 0.5;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.5;
}

/* ── Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.5s var(--ease-out), transform 1.5s var(--ease-out);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1.5s var(--ease-out), transform 1.5s var(--ease-out);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1.5s var(--ease-out), transform 1.5s var(--ease-out);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: opacity 1.5s var(--ease-out), transform 1.5s var(--ease-out);
}

.reveal.active, .reveal-left.active, .reveal-right.active, .reveal-scale.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Staggered Delay Utilities */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

.animate-fade-in {
    animation: fadeIn 2s var(--ease-out) forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 1.2s var(--ease-out) forwards;
}

.animate-slide-up-delayed {
    opacity: 0;
    animation: slideUp 1.2s var(--ease-out) 0.3s forwards;
}

.animate-slide-up-more {
    opacity: 0;
    animation: slideUp 1.2s var(--ease-out) 0.6s forwards;
}

.animate-fade-in-slow {
    opacity: 0;
    animation: fadeIn 2s var(--ease-out) 1s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Mobile Responsiveness ── */
@media (max-width: 991px) {
    .cursor, .cursor-follower { display: none; }
    body { cursor: auto; }
    .nav-container { padding: 0 30px; }
    .story-grid { grid-template-columns: 1fr; gap: 60px; }
    .section-title { font-size: 60px; }
    .waitlist-card { padding: 60px 40px; }
}

@media (max-width: 767px) {
    .main-title { font-size: 70px; }
    .hero-subtext { font-size: 20px; }
    .story { padding: 100px 0; }
    .footer-content { flex-direction: column; gap: 40px; text-align: center; }
}
