/* ==========================================================================
   EMERALD CLOTHING — Haute Couture & Bespoke Luxury
   Coming Soon Design System & Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --color-bg: #030705;
    --color-bg-alt: #07120c;
    --color-surface: rgba(9, 24, 17, 0.65);
    --color-surface-hover: rgba(14, 38, 27, 0.85);
    --color-border: rgba(16, 185, 129, 0.2);
    --color-border-glow: rgba(0, 245, 140, 0.4);
    
    --color-emerald-primary: #10b981;
    --color-emerald-light: #34d399;
    --color-emerald-vibrant: #00f58c;
    --color-emerald-glow: rgba(0, 245, 140, 0.35);
    --color-emerald-dark: #064e3b;
    
    --color-gold-light: #fef08a;
    --color-gold-base: #d4af37;
    --color-gold-dark: #996515;
    --color-gold-glow: rgba(212, 175, 55, 0.3);
    
    --color-text-primary: #f8fafc;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;
    
    --font-heading: 'Cinzel', serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: radial-gradient(circle at 50% 0%, #0d2e20 0%, #06150e 45%, #030705 100%);
    position: relative;
    line-height: 1.6;
}

/* Dynamic Interactive Ambient Canvas & Background Lighting */
#ambient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.mouse-glow-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(212, 175, 55, 0.04) 40%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    transition: width 0.3s, height 0.3s;
    filter: blur(40px);
}

/* Layout Wrapper */
.app-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Glassmorphism Utility */
.glass-panel {
    background: var(--color-surface);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.glass-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.glass-panel:hover {
    border-color: var(--color-border-glow);
    box-shadow: 0 25px 60px rgba(0, 245, 140, 0.12), 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Top Navigation Bar */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0 1.5rem;
    position: relative;
    z-index: 20;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: var(--color-text-primary);
}

.header-logo-mark {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.4));
    transition: var(--transition-smooth);
}

.header-brand:hover .header-logo-mark {
    transform: scale(1.05) rotate(3deg);
    filter: drop-shadow(0 0 20px var(--color-emerald-vibrant));
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.btn-pill-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-primary);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-pill-icon:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--color-emerald-primary);
    color: var(--color-emerald-vibrant);
    transform: translateY(-2px);
    box-shadow: 0 0 15px var(--color-emerald-glow);
}

.showroom-badge-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold-light);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.showroom-badge-link:hover {
    background: rgba(212, 175, 55, 0.22);
    border-color: var(--color-gold-base);
    color: #ffffff;
    box-shadow: 0 0 20px var(--color-gold-glow);
    transform: translateY(-2px);
}

/* Main Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 1rem 4rem;
    position: relative;
}

/* Emblem & 3D Logo Showcase */
.emblem-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    perspective: 1000px;
}

.emblem-glow-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 245, 140, 0.4) 0%, rgba(212, 175, 55, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(25px);
    animation: pulseAura 4s ease-in-out infinite alternate;
}

.emblem-ring-outer {
    position: absolute;
    width: 210px;
    height: 210px;
    border: 1px dashed rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    animation: rotateSlow 30s linear infinite;
}

.emblem-ring-inner {
    position: absolute;
    width: 175px;
    height: 175px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: rotateSlow 20s linear infinite reverse;
}

.emblem-logo-img {
    width: 140px;
    height: auto;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 25px rgba(0, 245, 140, 0.5));
    transition: transform 0.2s cubic-bezier(0.2, 0, 0.2, 1);
}

/* Badge */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.4rem;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-emerald-light);
    margin-bottom: 1.8rem;
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-emerald-vibrant);
    box-shadow: 0 0 10px var(--color-emerald-vibrant);
    animation: blink 2s infinite ease-in-out;
}

/* Hero Typography */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    max-width: 900px;
    background: linear-gradient(135deg, #ffffff 20%, #d1fae5 50%, #d4af37 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
    font-style: italic;
    color: #cbd5e1;
    max-width: 720px;
    line-height: 1.6;
    margin-bottom: 3.5rem;
    font-weight: 300;
}

/* Countdown Timer */
.countdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 780px;
    margin-bottom: 3.5rem;
}

.timer-card {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.12) 0%, rgba(6, 21, 14, 0.85) 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-md);
    padding: 1.6rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: var(--transition-spring);
}

.timer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-25deg);
    transition: 0.8s;
}

.timer-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-emerald-vibrant);
    box-shadow: 0 20px 45px rgba(0, 245, 140, 0.2);
}

.timer-card:hover::after {
    left: 140%;
}

.timer-num {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.4rem;
    text-shadow: 0 0 20px rgba(0, 245, 140, 0.4);
    font-variant-numeric: tabular-nums;
}

.timer-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold-base);
}

/* VIP Access Form Section */
.subscribe-section {
    width: 100%;
    max-width: 640px;
    margin-bottom: 4.5rem;
}

.subscribe-card {
    padding: 2.5rem;
    text-align: center;
}

.subscribe-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.subscribe-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-inputs-row {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

.input-luxury {
    flex: 1;
    background: rgba(3, 7, 5, 0.8);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    outline: none;
}

.input-luxury::placeholder {
    color: #64748b;
}

.input-luxury:focus {
    border-color: var(--color-emerald-vibrant);
    box-shadow: 0 0 18px rgba(0, 245, 140, 0.25);
    background: rgba(4, 15, 10, 0.95);
}

.btn-luxury-primary {
    background: linear-gradient(135deg, #10b981 0%, #047857 50%, #064e3b 100%);
    border: 1px solid rgba(52, 211, 153, 0.5);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 1.1rem 2.2rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
}

.btn-luxury-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.btn-luxury-primary:hover {
    background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #047857 100%);
    border-color: #6ee7b7;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 245, 140, 0.45);
}

.btn-luxury-primary:hover::before {
    opacity: 1;
}

.btn-luxury-primary:active {
    transform: translateY(0);
}

.form-footnote {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 0.8rem;
}

/* Collections Teaser Section */
.collections-teaser-section {
    padding: 2rem 0 5rem;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold-base);
    margin-bottom: 0.6rem;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.collection-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.2rem;
    background: #06110a;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.card-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
    filter: brightness(0.9) contrast(1.1);
}

.card-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 7, 5, 0.1) 0%, rgba(3, 7, 5, 0.6) 50%, rgba(3, 7, 5, 0.95) 100%);
    pointer-events: none;
}

.collection-card:hover {
    border-color: var(--color-emerald-vibrant);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 245, 140, 0.18);
}

.collection-card:hover .card-bg-image {
    transform: scale(1.08);
    opacity: 0.85;
}

.card-content {
    position: relative;
    z-index: 5;
}

.card-badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 0.8rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.card-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* Craftsmanship & Pillars */
.pillars-section {
    padding: 3rem 0 6rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pillar-item {
    padding: 2.2rem;
    text-align: left;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--color-emerald-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.4rem;
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.pillar-desc {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    padding: 3rem 0 2.5rem;
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon-link:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--color-emerald-primary);
    color: var(--color-emerald-vibrant);
    transform: translateY(-3px);
}

/* Modal: VIP Pass Card */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 4, 0.85);
    backdrop-filter: blur(16px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.vip-card-modal {
    width: 100%;
    max-width: 520px;
    background: radial-gradient(circle at 50% 0%, #0f3826 0%, #06180f 50%, #030a06 100%);
    border: 2px solid var(--color-gold-base);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    position: relative;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(212, 175, 55, 0.25);
    transform: scale(0.85) translateY(20px);
    transition: var(--transition-spring);
}

.modal-backdrop.active .vip-card-modal {
    transform: scale(1) translateY(0);
}

.vip-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.vip-modal-close:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

.vip-badge-ribbon {
    display: inline-block;
    padding: 0.4rem 1.4rem;
    background: linear-gradient(90deg, #d4af37, #fef08a, #d4af37);
    color: #030705;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.vip-code-box {
    background: rgba(3, 7, 5, 0.85);
    border: 1px dashed var(--color-gold-base);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.vip-code-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold-light);
}

.vip-code-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.15em;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Animations */
@keyframes pulseAura {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.15); opacity: 1; }
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .countdown-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .form-inputs-row {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .app-container {
        padding: 0 1.25rem;
    }
    
    .site-header {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .hero-section {
        padding: 2rem 0 3rem;
    }
    
    .subscribe-card {
        padding: 1.8rem 1.25rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
