/* ==========================================================================
   VP STYLES — BESPOKE LUXURY ATELIER DESIGN SYSTEM
   Solid High-End Dark Luxury (Zero Glassmorphism) & Highly Responsive
   ========================================================================== */

/* --- RESET & DESIGN TOKENS --- */
:root {
    --bg-dark: #090a08;
    --bg-surface: #11120f;
    --bg-card: #151613;
    --bg-card-elevated: #1a1b17;
    --bg-card-featured: #131722;
    --border-subtle: #242520;
    --border-mid: #33342d;
    --border-gold: rgba(201, 162, 74, 0.35);
    
    --text-main: #FFFFFF;
    --text-muted: #A3A49E;
    --text-dim: #73746E;
    
    --gold: #c9a24a;
    --gold-light: #e0be6c;
    --gold-glow: rgba(201, 162, 74, 0.4);
    
    --blue: #1e5fd8;
    --blue-glow: rgba(30, 95, 216, 0.5);
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --shadow-solid: 0 14px 40px rgba(0, 0, 0, 0.8);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.7);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 999px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease, opacity 0.25s ease;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img, video, canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #090a08;
}
::-webkit-scrollbar-thumb {
    background: #2e3028;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* --- SCROLL ANIMATIONS: REVEAL UP & TYPEWRITER WRITING --- */
.reveal-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-up.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

.reveal-writing {
    opacity: 0;
    transition: opacity 0.3s ease;
    min-height: 1.1em;
}

.reveal-writing.is-writing,
.reveal-writing.writing-complete {
    opacity: 1;
}

.typewriter-cursor {
    display: inline-block;
    color: var(--gold);
    font-weight: 300;
    margin-left: 2px;
    animation: blinkCursor 0.75s infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* --- TOAST NOTIFICATION --- */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #171814;
    color: #ffffff;
    border: 1px solid var(--gold);
    border-left: 4px solid var(--gold);
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9);
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    pointer-events: none;
    max-width: 380px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   VIP EMAIL CONFIRMATION MODAL
   ========================================================================== */
.email-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.email-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.email-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.email-modal__card {
    position: relative;
    z-index: 2;
    background: #121310;
    border: 1px solid var(--border-mid);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 580px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95);
    padding: 32px 30px;
    transform: scale(0.95) translateY(15px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.email-modal.open .email-modal__card {
    transform: scale(1) translateY(0);
}

.email-modal__close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--text-dim);
    transition: color 0.2s ease;
}

.email-modal__close:hover {
    color: #ffffff;
}

.email-modal__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.email-modal__icon {
    font-size: 1.8rem;
    background: #1a1b16;
    padding: 10px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.email-modal__badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.email-modal__subject {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.email-modal__meta {
    background: #171814;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.78rem;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-label {
    color: var(--text-dim);
    width: 50px;
    font-weight: 600;
}

.meta-value {
    color: var(--text-muted);
}

.meta-value strong {
    color: #ffffff;
}

.meta-value a {
    color: var(--gold);
}

.meta-value--status {
    color: #25D366;
    font-weight: 700;
}

.email-modal__body {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 20px;
    margin-bottom: 22px;
}

.email-modal__body .greeting {
    font-weight: 600;
    color: #ffffff;
}

.email-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 6px;
}

.email-benefits li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

.email-modal__body .quote {
    color: var(--gold);
    font-size: 0.88rem;
    margin-top: 4px;
}

.email-signoff {
    font-size: 0.78rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.email-signoff a {
    color: var(--gold);
}

.email-modal__footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* ==========================================================================
   NAVIGATION BAR (SOLID DARK LUXURY)
   ========================================================================== */
.main-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 48px;
    background: #0b0c09;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}

.logo-mark {
    background: var(--gold);
    color: #000000;
    font-weight: 900;
    font-size: 0.95rem;
    padding: 3px 7px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-main);
}

.nav-desktop {
    background: #141512;
    padding: 8px 24px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
}

.nav-desktop ul {
    display: flex;
    gap: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
}

.nav-desktop ul li {
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-desktop ul li:hover,
.nav-desktop ul li.active {
    color: var(--text-main);
}

.nav-desktop ul li.active a {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #151613;
    border: 1px solid var(--border-subtle);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.25s ease;
}

.nav-email-btn:hover {
    border-color: var(--gold);
    color: #ffffff;
    background: #1d1e19;
}

.nav-email-btn svg {
    color: var(--gold);
}

.nav-cta-btn {
    background: #25D366;
    color: #000000;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
}

.nav-cta-btn:hover {
    background: #20ba5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    padding: 0;
    background: transparent;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    height: 2.5px;
    width: 100%;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Drawer Menu */
.mobile-menu {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: #0d0e0b;
    border-bottom: 2px solid var(--border-subtle);
    padding: 24px 28px;
    z-index: 99;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.95);
    display: none;
    flex-direction: column;
    gap: 16px;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-link {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid #1a1b16;
    display: block;
}

.mobile-link:hover {
    color: var(--gold);
}

.mobile-link--email {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.5px;
}

.mobile-link--wa {
    color: #25D366;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   BUTTON SYSTEM (SOLID LUXURY)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: #ffffff;
    color: #0d0e0b;
    border: 1px solid #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 74, 0.35);
}

.btn-secondary {
    background: #171814;
    color: var(--text-main);
    border: 1px solid var(--border-mid);
}

.btn-secondary:hover {
    background: #23241e;
    border-color: var(--gold);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   MODERN LUXURY HERO SECTION (VP STYLES)
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: #080907;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 48px 40px;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(201, 162, 74, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
}

/* --- Top Navigation --- */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 10;
    margin-bottom: 20px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 23, 19, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 10px;
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.nav-pill {
    color: #9a9b95;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 999px;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.nav-pill:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-pill.active {
    color: #000000;
    background: #ffffff;
    font-weight: 700;
}

.nav-right .sign-in {
    background: #171813;
    border: 1px solid rgba(201, 162, 74, 0.4);
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
}

.nav-right .sign-in:hover {
    background: var(--gold);
    color: #000000;
    box-shadow: 0 4px 15px rgba(201, 162, 74, 0.35);
}

/* --- Main Content Area --- */
.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 48px;
    width: 100%;
    max-width: 1340px;
    margin: 20px auto 36px;
    position: relative;
    z-index: 5;
}

/* Left Side: Text & CTA */
.text-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eyebrow-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
    color: #b5b6af;
    letter-spacing: 0.2px;
    margin: 0;
}

.main-headline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(4.5rem, 9.5vw, 8.5rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-headline .logo-mark {
    color: var(--gold);
    font-size: 0.65em;
    display: inline-block;
    transform: translateY(-4px);
    text-shadow: 0 0 20px rgba(201, 162, 74, 0.6);
}

.sub-headline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7.2rem);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: 4px;
    color: #ffffff;
    margin: -10px 0 10px;
    text-transform: uppercase;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.cta-wrapper .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 999px;
    transition: all 0.28s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: none;
}

.cta-wrapper .btn-primary:hover {
    background: var(--gold);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 74, 0.4);
}

.arrow-circle {
    width: 26px;
    height: 26px;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.cta-wrapper .btn-primary:hover .arrow-circle {
    transform: translate(2px, -2px);
    background: #000000;
}

.link-secondary {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: rgba(201, 162, 74, 0.6);
    transition: all 0.2s ease;
}

.link-secondary:hover {
    color: var(--gold);
    text-decoration-color: var(--gold);
}

/* Right Side: Hero Image */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
    background: #11120e;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.03);
}

/* --- Bottom Cards Section (Styled Similar to Pricing Cards with Animated Borders) --- */
.bottom-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
    max-width: 1340px;
    margin: 40px auto 0;
    z-index: 5;
    align-items: stretch;
}

.bottom-cards .collection-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: #171814;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.bottom-cards .collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 30px rgba(201, 162, 74, 0.25);
}

.bottom-cards .collection-card--featured:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 35px var(--blue-glow);
}

.bottom-cards .collection-card::before {
    content: "";
    position: absolute;
    inset: -120%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 300deg,
        var(--gold) 330deg,
        #ffffff 350deg,
        var(--gold) 360deg
    );
    animation: spinBorder 6s linear infinite;
    z-index: 0;
}

.bottom-cards .collection-card--featured::before {
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 280deg,
        var(--blue) 320deg,
        #ffffff 345deg,
        var(--blue) 360deg
    );
    animation-duration: 5s;
}

.bottom-cards .card-inner {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    background: #11120e;
    padding: 28px 24px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bottom-cards .collection-card--featured .card-inner {
    background: #0f121a;
}

.bottom-cards .card-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.bottom-cards .collection-card--featured .card-tag {
    color: #5c9aff;
}

.bottom-cards h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    color: #ffffff;
}

.bottom-cards .card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin-bottom: 18px;
    min-height: 40px;
}

.bottom-cards .card-img-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    aspect-ratio: 4 / 5;
    margin-bottom: 20px;
    border: 1px solid var(--border-mid);
    width: 100%;
    height: auto;
}

.bottom-cards .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.bottom-cards .collection-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.bottom-cards .card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
    flex-grow: 1;
    padding: 0;
}

.bottom-cards .card-list li {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: #d1d2cc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bottom-cards .card-list li::before {
    content: "✦";
    color: var(--gold);
    font-size: 0.8rem;
}

.bottom-cards .collection-card--featured .card-list li::before {
    color: #5c9aff;
}

.bottom-cards .card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 20px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border-mid);
    transition: all 0.25s ease;
    margin-top: auto;
}

.bottom-cards .collection-card:hover .card-cta {
    background: var(--gold);
    color: #000000;
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(201, 162, 74, 0.3);
}

.bottom-cards .collection-card--featured:hover .card-cta {
    background: var(--blue);
    color: #ffffff;
    border-color: var(--blue);
    box-shadow: 0 6px 20px rgba(30, 95, 216, 0.4);
}

/* Media Queries for Hero Responsiveness */
@media (max-width: 1024px) {
    .bottom-cards {
        gap: 20px;
    }
    .card-img-wrapper {
        height: 320px;
    }
}

@media (max-width: 980px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-image-container {
        height: 380px;
    }
    .bottom-cards {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .card-img-wrapper {
        height: 360px;
    }
    .hero-section {
        padding: 24px 20px 34px;
    }
}

@media (max-width: 600px) {
    .top-nav {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }
    .nav-left {
        overflow-x: auto;
        padding: 4px 8px;
    }
    .nav-pill {
        padding: 6px 12px;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    .nav-right {
        text-align: center;
    }
    .nav-right .sign-in {
        display: block;
        width: 100%;
    }
    .main-headline {
        font-size: 4.2rem;
    }
    .sub-headline {
        font-size: 3.4rem;
    }
}

/* ==========================================================================
   SECOND SECTION: PERFORMANCE SCROLL TRACK (CANVAS IMAGE SEQUENCE)
   ========================================================================== */
.hero-scroll-track {
    position: relative;
    height: 220vh;
    width: 100%;
}

.hero {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 60px 60px;
    overflow: hidden;
    background: #000000;
}

.hero-video-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}

.scroll-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #000000;
    display: block;
}

.hero-video-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at center, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.85) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.85) 100%);
}

.hero-left {
    position: relative;
    max-width: 500px;
    z-index: 10;
    margin-left: 20px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.02;
    text-transform: uppercase;
    margin-bottom: 22px;
    letter-spacing: -1.2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}

.hero-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.hero-desc strong {
    color: var(--text-main);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Scroll Status Hint */
.scroll-status {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0.75;
    pointer-events: none;
}

.scroll-status span {
    font-size: 0.62rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--text-muted);
}

.scroll-mouse {
    width: 16px;
    height: 26px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 2px;
    height: 5px;
    background: #fff;
    border-radius: 1px;
    position: absolute;
    top: 4px;
    animation: scrollAnim 1.6s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  80% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ==========================================================================
   THIRD SECTION: CRAFT SHOWCASE (EXTRA LARGE AGBADA STAND IN THE CENTER)
   ========================================================================== */
.craft-section {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    width: 100%;
    background: #000000;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.card {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    border-radius: 0;
    overflow: hidden;
    background: #000000;
    border: none;
    box-shadow: none;
}

.bg-type {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    pointer-events: none;
    user-select: none;
}

.bg-type span {
    display: block;
    font-size: clamp(4.5rem, 14vw, 13rem);
    font-weight: 800;
    line-height: 0.82;
    letter-spacing: -0.04em;
    color: rgba(201, 162, 74, 0.22);
    text-transform: uppercase;
    white-space: nowrap;
}

.bg-type span:nth-child(2) {
    margin-left: 10%;
    color: rgba(255, 255, 255, 0.08);
}

/* CENTER AGBADA STAND (EXTRA LARGE, PROMINENT & DEAD CENTER) */
.model.model--agbada-center {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 108%;
    max-height: 100vh;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.agbada-stand-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    filter: contrast(1.1) saturate(1.2) drop-shadow(0 30px 80px rgba(0, 0, 0, 0.98));
    transform: scale(1.28);
    transform-origin: bottom center;
}

.model.model--agbada-center::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(
        ellipse at center bottom,
        rgba(201, 162, 74, 0.35) 0%,
        rgba(201, 162, 74, 0.1) 45%,
        transparent 75%
    );
    z-index: -1;
    pointer-events: none;
}

.desc {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    max-width: 260px;
}

.desc p {
    font-size: 0.78rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.desc a {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.desc a:hover {
    color: #ffffff;
    border-color: #ffffff;
}

/* VP STYLES Brand Card */
.showreel-wrapper {
    position: absolute;
    right: 40px;
    bottom: 90px;
    z-index: 5;
}

.showreel {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #11120e;
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-md);
    padding: 14px 20px 14px 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-solid);
}

.showreel:hover {
    background: #181914;
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.9), 0 0 25px rgba(201, 162, 74, 0.2);
}

.showreel__thumb {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.showreel__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 3px;
    transition: transform 0.4s ease;
}

.showreel:hover .showreel__thumb img {
    transform: scale(1.06);
}

.showreel__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.showreel__kicker {
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.showreel__title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}

.showreel__phone {
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.showreel__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #25D366;
    margin-top: 4px;
}

.bottombar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 22px 48px 24px;
    border-top: 1px solid var(--border-subtle);
    background: #090a08;
}

.bottombar span {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.bottombar span:nth-child(1) { text-align: left; }
.bottombar span:nth-child(2) { text-align: center; }
.bottombar span:nth-child(3) { text-align: center; }
.bottombar span:nth-child(4) { text-align: right; }

/* ==========================================================================
   FOURTH SECTION: PRICING SHOWCASE (SINGLE TITLE, SOLID LUXURY)
   ========================================================================== */
.pricing-section {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    width: 100%;
    background: #090a08;
    padding: 110px 36px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricing-headline {
    text-align: center;
    position: relative;
    z-index: 5;
    margin-bottom: 55px;
    width: 100%;
    max-width: 800px;
}

.pricing-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.pricing-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 14px;
}

.pricing-title span {
    color: var(--gold);
    text-shadow: 0 0 25px var(--gold-glow);
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-grid {
    position: relative;
    z-index: 5;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: #171814;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 30px rgba(201, 162, 74, 0.2);
}

.pricing-card--featured:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 35px var(--blue-glow);
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: -120%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 300deg,
        var(--gold) 330deg,
        #ffffff 350deg,
        var(--gold) 360deg
    );
    animation: spinBorder 6s linear infinite;
    z-index: 0;
}

.pricing-card--featured::before {
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 280deg,
        var(--blue) 320deg,
        #ffffff 345deg,
        var(--blue) 360deg
    );
    animation-duration: 5s;
}

@keyframes spinBorder {
    to { transform: rotate(360deg); }
}

.pricing-card__inner {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    background: #11120e;
    padding: 32px 28px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-card--featured .pricing-card__inner {
    background: #0f121a;
}

.pricing-card__eyebrow {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.pricing-card--featured .pricing-card__eyebrow {
    color: #5c9aff;
}

.pricing-card__title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    color: #ffffff;
}

.pricing-card__price {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: #ffffff;
}

.pricing-card__price small {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 4px;
}

.pricing-card__desc {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 22px;
    min-height: 42px;
}

.pricing-card__image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    aspect-ratio: 4 / 5;
    margin-bottom: 24px;
    border: 1px solid var(--border-mid);
}

.pricing-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.pricing-card:hover .pricing-card__image img {
    transform: scale(1.04);
}

.pricing-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    flex-grow: 1;
}

.pricing-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card__list li::before {
    content: "";
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    border-radius: 50%;
    background: #1e1f19;
    border: 1px solid var(--gold);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23c9a24a' stroke-width='2.2'><path d='M3.5 8.5l3 3 6-6'/></svg>");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-card--featured .pricing-card__list li::before {
    border-color: #5c9aff;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%235c9aff' stroke-width='2.2'><path d='M3.5 8.5l3 3 6-6'/></svg>");
}

.pricing-card__cta {
    display: block;
    text-align: center;
    padding: 14px 22px;
    border-radius: var(--radius-full);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background: #171814;
    border: 1px solid var(--border-mid);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card__cta:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.pricing-card--featured .pricing-card__cta {
    background: var(--blue);
    border-color: var(--blue);
    color: #ffffff;
    box-shadow: 0 0 25px var(--blue-glow);
}

.pricing-card--featured .pricing-card__cta:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   DEDICATED VIP DROPS & FITTINGS SUBSCRIPTION SECTION
   ========================================================================== */
.subscribe-section {
    position: relative;
    z-index: 10;
    width: 100%;
    background: #090a08;
    padding: 40px 36px 100px;
    display: flex;
    justify-content: center;
}

.subscribe-box {
    width: 100%;
    max-width: 1000px;
    background: #11120e;
    border: 1px solid var(--border-mid);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 50px 45px;
    box-shadow: var(--shadow-solid);
    text-align: center;
}

.subscribe-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.subscribe-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #ffffff;
    margin-bottom: 14px;
}

.subscribe-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 32px;
}

.subscribe-form {
    max-width: 580px;
    margin: 0 auto;
}

.subscribe-form .input-group {
    display: flex;
    gap: 10px;
    background: #181914;
    padding: 6px;
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-full);
    transition: border-color 0.25s ease;
}

.subscribe-form .input-group:focus-within {
    border-color: var(--gold);
}

.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 20px;
    font-size: 0.88rem;
    color: #ffffff;
}

.subscribe-form input::placeholder {
    color: var(--text-dim);
}

.subscribe-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #000000;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
}

.subscribe-submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 162, 74, 0.4);
}

.subscribe-privacy {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 14px;
}

/* ==========================================================================
   FOOTER (SOLID DARK LUXURY, CONTACT DIRECTLY VIA EMAIL)
   ========================================================================== */
.footer {
    position: relative;
    background: #070705;
    padding: 0 48px 50px;
    overflow: hidden;
    color: #fff;
    border-top: 1px solid var(--border-subtle);
}

.footer__glow {
    position: relative;
    padding: 70px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 60px;
}

.footer__glow h2 {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 24px;
}

.footer__cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #fff;
    color: #000;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.footer__cta:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 74, 0.3);
}

.footer__cta--email {
    background: #171814;
    color: #ffffff;
    border: 1px solid var(--border-mid);
}

.footer__cta--email:hover {
    background: #22231e;
    border-color: var(--gold);
    color: #ffffff;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-subtle);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__logo {
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.footer__tagline {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer__direct-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.footer__email-link,
.footer__phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer__email-link:hover,
.footer__phone-link:hover {
    color: #ffffff;
}

.footer__col h4 {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__col a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

.footer__news {
    max-width: 1280px;
    margin: 0 auto 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #11120e;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 30px 36px;
}

.footer__news-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

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

.footer__form {
    position: relative;
    flex: 1;
    max-width: 480px;
}

.footer__form input {
    width: 100%;
    background: #171814;
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-full);
    padding: 14px 60px 14px 22px;
    font-size: 0.82rem;
    color: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

.footer__form input:focus {
    border-color: var(--gold);
}

.footer__form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--gold);
    color: #000;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.2s;
}

.footer__form button:hover {
    transform: translateY(-50%) scale(1.08);
    background: var(--gold-light);
}

.footer__bottom {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer__bottom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

.footer__bottom div:last-child {
    text-align: right;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1100px) {
    .main-nav-bar {
        padding: 16px 30px;
    }
    .showcase-container {
        gap: 30px;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 820px;
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .footer__brand {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .main-nav-bar {
        padding: 16px 20px;
    }
    .nav-email-btn {
        display: none;
    }
    
    /* Collection Section */
    .collection-section {
        padding: 100px 24px 60px;
        min-height: auto;
    }
    .showcase-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    .showcase-left {
        max-width: 100%;
        padding: 26px 22px;
    }
    .showcase-right {
        width: 100%;
    }

    /* Craft Section */
    .bg-type span {
        font-size: clamp(3.5rem, 11vw, 6rem);
    }
    .model.model--agbada-center {
        height: 85%;
    }
    .agbada-stand-img {
        transform: scale(1.08);
    }
    .desc {
        left: 20px;
        top: auto;
        bottom: 120px;
        transform: none;
        max-width: 220px;
    }
    .showreel-wrapper {
        right: 20px;
        bottom: 80px;
    }
    .showreel {
        padding: 10px 14px;
    }
    .bottombar {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 16px 24px;
    }
    .bottombar span:nth-child(2) { text-align: right; }
    .bottombar span:nth-child(3) { text-align: left; }
    .bottombar span:nth-child(4) { text-align: right; }

    /* Footer */
    .footer {
        padding: 0 24px 40px;
    }
    .footer__news {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
    .footer__form {
        width: 100%;
        max-width: 100%;
    }
    .footer__bottom {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: left;
    }
    .footer__bottom div:last-child {
        text-align: left;
    }
}

@media (max-width: 680px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }
    .pricing-section {
        padding: 80px 20px 90px;
    }
    .subscribe-box {
        padding: 35px 20px;
    }
    .subscribe-form .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 12px;
    }
    .subscribe-form input {
        background: #181914;
        border: 1px solid var(--border-mid);
        border-radius: var(--radius-full);
        width: 100%;
    }
    .subscribe-submit-btn {
        width: 100%;
        justify-content: center;
    }
    .hero {
        padding: 100px 24px 40px;
    }
    .hero-left {
        margin-left: 0;
    }
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer__brand {
        grid-column: span 1;
    }
    .email-modal__card {
        padding: 24px 18px;
    }
    .email-modal__footer {
        flex-direction: column;
    }
    .email-modal__footer .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .showcase-title {
        font-size: 2.5rem;
    }
    .showcase-actions .btn {
        width: 100%;
    }
    .desc {
        display: none;
    }
    .model.model--agbada-center {
        height: 78%;
    }
    .agbada-stand-img {
        transform: scale(1.0);
    }
    .showreel-wrapper {
        left: 20px;
        right: 20px;
        bottom: 70px;
    }
    .showreel {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ==========================================================================
   VIP CONFIRMATION MODAL & TOAST NOTIFICATION
   ========================================================================== */
.vip-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.vip-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.vip-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.vip-modal__card {
    position: relative;
    max-width: 520px;
    width: 100%;
    background: #11120e;
    border: 1px solid #2b2c25;
    border-top: 4px solid var(--gold);
    border-radius: 18px;
    padding: 38px 32px 30px;
    text-align: center;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.vip-modal.open .vip-modal__card {
    transform: translateY(0) scale(1);
}

.vip-modal__close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.vip-modal__close:hover {
    color: #ffffff;
}

.vip-modal__badge {
    display: inline-block;
    background: rgba(201, 162, 74, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.vip-modal__icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    background: rgba(201, 162, 74, 0.1);
    border: 1px solid rgba(201, 162, 74, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-modal__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.vip-modal__desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 22px;
}

.vip-modal__email {
    color: var(--gold);
    font-weight: 700;
}

.vip-modal__info {
    background: #171813;
    border: 1px solid #282922;
    border-radius: 12px;
    padding: 16px 18px;
    text-align: left;
    margin-bottom: 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vip-modal__info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.84rem;
    color: #d8d9d4;
    line-height: 1.5;
}

.vip-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vip-modal__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold);
    color: #000000;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 999px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(201, 162, 74, 0.35);
}

.vip-modal__cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 74, 0.5);
}

.vip-modal__done-btn {
    background: transparent;
    border: 1px solid #33342d;
    color: var(--text-dim);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 11px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vip-modal__done-btn:hover {
    border-color: #55564c;
    color: #ffffff;
}

/* Toast Container */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
    background: #151612;
    border: 1px solid var(--gold);
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 90vw;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast.toast-error {
    border-color: #e55353;
    background: #201313;
    color: #ffd6d6;
}

/* Button Loading State & Spinner */
.subscribe-submit-btn:disabled,
#footer-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.spinner-icon {
    animation: spin 0.85s linear infinite;
}

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

