@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   ELITE DESIGN SYSTEM — WARDAH GABRIELLE
   Global token architecture for flagship premium brand
   ============================================================ */

:root {
    /* Neutral Foundation — Warm & Calm */
    --ink:          #111827;
    --ink-mid:      #1f2937;
    --charcoal:     #374151;
    --slate-600:    #4b5563;
    --slate-500:    #6b7280;
    --slate-400:    #9ca3af;
    --slate-200:    #e5e7eb;
    --slate-100:    #f3f4f6;
    --slate-50:     #f9fafb;
    --warm-50:      #fafaf9;
    --stone-50:     #FDFBF7; /* Luxury Ivory Foundation */
    --white:        #ffffff;

    /* Legacy aliases */
    --slate-900:    #111827;
    --slate-950:    #030712;
    --dark:         var(--ink);

    /* Primary Accent — Soft Powder Blue */
    --blue:         #6B96B8;
    --blue-dark:    #4F7A9E;
    --blue-light:   #8AADCA;
    --blue-muted:   rgba(107, 150, 184, 0.10);
    --blue-subtle:  rgba(107, 150, 184, 0.06);

    /* Secondary Accent — Blush / Dusty Rose */
    --rose:         #C4A5A5;
    --rose-dark:    #A88080;
    --rose-light:   #D4BBBB;
    --rose-muted:   rgba(196, 165, 165, 0.10);

    /* Accent aliases */
    --accent:        var(--blue);
    --accent-dark:   var(--blue-dark);
    --accent-light:  var(--blue-light);
    --accent-glow: rgba(0, 0, 0, 0.15);
    --accent2:       var(--rose);
    --accent2-dark:  var(--rose-dark);

    /* Layout */
    --container-max:    1320px;
    --container-pad:    clamp(24px, 5vw, 64px);

    /* Radius */
    --radius-sm:    8px;
    --radius-md:    16px;
    --radius-lg:    24px;
    --radius-xl:    28px;
    --radius-2xl:   40px;
    --radius-full:  9999px;

        /* Shadows — ultra-refined, multi-layered (Stripe-level) */
    --shadow-xs:    0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02);
    --shadow-sm:    0 2px 4px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.02);
    --shadow-md:    0 4px 6px rgba(0,0,0,0.03), 0 12px 24px rgba(0,0,0,0.03);
    --shadow-lg:    0 8px 16px rgba(0,0,0,0.03), 0 24px 48px rgba(0,0,0,0.05);
    --shadow-xl:    0 12px 24px rgba(0,0,0,0.03), 0 32px 64px rgba(0,0,0,0.06);

    /* Legacy shadow aliases */
    --shadow-3d-sm:  var(--shadow-sm);
    --shadow-3d-md:  var(--shadow-md);
    --shadow-3d-lg:  var(--shadow-lg);
    --shadow-3d-xl:  var(--shadow-xl);

    /* Motion */
    --ease-luxury:  cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast:   all 0.25s var(--ease-smooth);
    --transition-smooth: all 0.6s var(--ease-luxury);
    --transition-slow:   all 0.9s var(--ease-luxury);
}

/* ============================================================
   BASE RESET
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    zoom: 0.8;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.65;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */

/* Display — Editorial, refined */
h1, h2, .display {
    font-family: 'Cormorant Garamond', 'Outfit', serif;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
}

/* Functional headers */
h3, h4, h5, h6, .font-outfit {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink);
}

p {
    line-height: 1.7;
    color: var(--slate-500);
}

/* ============================================================
   LAYOUT SYSTEM
   ============================================================ */

.container-custom {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
}

.section-padding {
    padding: 160px 0;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.bg-white      { background-color: var(--white); }
.bg-slate-50   { background-color: var(--slate-50); }
.bg-slate-100  { background-color: var(--slate-100); }
.bg-slate-950  { background-color: var(--ink); }
.bg-ink        { background-color: var(--ink); }
.bg-stone      { background-color: var(--stone-50); }
.bg-luxury     { background-color: var(--stone-50); }

.text-gradient {
    color: var(--slate-950);
}

.shadow-3d   { box-shadow: var(--shadow-md); }
.shadow-3d-lg { box-shadow: var(--shadow-lg); }
.shadow-3d-xl { box-shadow: var(--shadow-xl); }

/* ============================================================
   BUTTON SYSTEM — Unified, premium, structured
   ============================================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--ink);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 9999px; /* Pill shape for premium feel */
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--slate-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    color: var(--ink);
    padding: 14px 32px;
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-xs);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.btn-secondary:hover {
    border-color: var(--slate-300);
    color: var(--ink);
    background: var(--slate-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:active {
    transform: translateY(0);
}



/* ============================================================
   NAVIGATION — World-class premium
   ============================================================ */

.luxury-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: clamp(12px, 2vw, 24px) var(--container-pad);
    transition: padding 0.5s var(--ease-luxury), background 0.5s var(--ease-luxury);
}

.luxury-nav.scrolled {
    padding: clamp(8px, 1vw, 12px) var(--container-pad);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.04);
}

.luxury-nav-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    z-index: 1100;
}

/* Desktop Nav */
.desktop-nav {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 52px;
    }
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate-500);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.25s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blue);
    transition: width 0.3s var(--ease-luxury);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

/* Dropdown */
.nav-dropdown-wrapper {
    position: relative;
    padding: 20px 0;
    margin: -20px 0;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--ease-luxury);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-dropdown-wrapper:hover .nav-dropdown,
.nav-dropdown-wrapper:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--slate-500);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: var(--transition-fast);
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--slate-50);
    color: var(--ink);
}

/* Nav CTA */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav-cta {
    display: none;
    background: var(--ink);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 9999px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
    box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255,255,255,0.1);
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .btn-nav-cta {
        display: inline-flex;
        align-items: center;
    }
}

.btn-nav-cta:hover {
    background: var(--slate-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    color: var(--ink);
    transition: var(--transition-fast);
}

.mobile-menu-toggle:hover {
    border-color: var(--ink);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ============================================================
   MOBILE OVERLAY MENU
   ============================================================ */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-luxury), visibility 0.4s;
}

.mobile-menu-overlay.menu-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(12px, 2vw, 24px) var(--container-pad);
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-menu-links {
    flex: 1;
    overflow-y: auto;
    padding: 48px var(--container-pad);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-link {
    text-decoration: none;
    font-size: clamp(2rem, 6vw, 3rem);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.2;
    transition: color 0.25s ease;
    transform: translateY(20px);
    opacity: 0;
    padding: 8px 0;
}

.mobile-menu-overlay.menu-open .mobile-link {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.6s var(--ease-luxury), opacity 0.6s ease, color 0.25s ease;
}

.mobile-menu-overlay.menu-open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu-overlay.menu-open .mobile-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu-overlay.menu-open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu-overlay.menu-open .mobile-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu-overlay.menu-open .mobile-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu-overlay.menu-open .mobile-link:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu-overlay.menu-open .mobile-link:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu-overlay.menu-open .mobile-link:nth-child(8) { transition-delay: 0.40s; }
.mobile-menu-overlay.menu-open .mobile-link:nth-child(9) { transition-delay: 0.45s; }

.mobile-link.active,
.mobile-link:hover {
    color: white;
}

.mobile-link.nested {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.3);
}

.mobile-menu-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 500;
    margin-top: 24px;
    margin-bottom: 4px;
    padding: 0;
}

.mobile-menu-footer {
    padding: clamp(12px, 2vw, 24px) var(--container-pad);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu-overlay.menu-open .mobile-menu-footer {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.7s var(--ease-luxury) 0.4s, opacity 0.7s ease 0.4s;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section-header {
    margin-bottom: 80px;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}

/* ============================================================
   CARDS & SURFACES
   ============================================================ */

.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02), 0 16px 32px rgba(0,0,0,0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--rose-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-luxury);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: transparent;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    overflow: hidden;
}

.service-card h3 {
    font-size: 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--slate-500);
    margin-bottom: 32px;
    font-size: 0.9375rem;
    line-height: 1.65;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    text-decoration: none;
    transition: gap 0.3s ease, color 0.25s ease;
    margin-top: auto;
}

.service-link:hover {
    gap: 12px;
    color: var(--blue-dark);
}

.service-link:hover {
    gap: 12px;
}

/* Hover 3D */
.hover-3d {
    transition: var(--transition-smooth);
}
.hover-3d:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Testimonial cards */
.testi-card {
    background: var(--white);
    padding: 44px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-100);
    transition: var(--transition-smooth);
}

.testi-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

/* Product cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--slate-100);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--slate-200);
}

.product-card .img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-luxury);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 28px 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-price {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rose);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--ink);
    line-height: 1.3;
}

.product-desc {
    color: var(--slate-500);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.product-btn {
    margin-top: auto;
    padding: 13px 20px;
    background: var(--slate-50);
    color: var(--ink);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--slate-100);
}

.product-card:hover .product-btn {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

/* FAQ */
.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-100);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--slate-200);
}

.faq-trigger {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.45s ease;
    padding: 0 32px;
    color: var(--slate-500);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.faq-item.active .faq-content {
    max-height: 300px;
    padding-bottom: 28px;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--slate-400);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ============================================================
   STATS
   ============================================================ */

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--slate-400);
}

/* ============================================================
   FOOTER & CTA BAND
   ============================================================ */

.footer-cta-container {
    position: relative;
    margin-bottom: -100px;
    z-index: 50;
    padding: 0 var(--container-pad);
}

.footer-cta-card {
    background: var(--ink);
    border-radius: var(--radius-xl);
    padding: 72px 80px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.footer-cta-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-illu {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 5px;
    border-radius: var(--radius-sm);
    width: 100%;
    max-width: 480px;
    margin-top: 28px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: var(--white);
    flex: 1;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-form button {
    background: var(--white);
    color: var(--ink);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--slate-100);
}

footer {
    background: var(--white);
    padding: 180px 0 52px;
    border-top: 1px solid var(--slate-100);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--slate-100);
}

.footer-col h4 {
    color: var(--ink);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 28px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    text-decoration: none;
    color: var(--slate-400);
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.25s ease;
    letter-spacing: 0.01em;
}

.footer-links a:hover {
    color: var(--ink);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--slate-400);
    font-size: 0.8125rem;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
}

.footer-bottom-links a {
    text-decoration: none;
    color: var(--slate-400);
    font-size: 0.8125rem;
    transition: color 0.25s;
}

.footer-bottom-links a:hover {
    color: var(--ink);
}

/* ============================================================
   GSAP / ANIMATION HELPERS
   ============================================================ */

.reveal-up    { transform: translateY(30px); opacity: 0; }
.reveal-down  { transform: translateY(-30px); opacity: 0; }
.reveal-left  { transform: translateX(30px); opacity: 0; }
.reveal-right { transform: translateX(-30px); opacity: 0; }
.reveal-scale { transform: scale(0.95); opacity: 0; }
.reveal-img { display: block; }

/* Marquee */
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    display: flex;
    animation: marquee 40s linear infinite;
}

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--ink);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
}

/* Services grid layout */
.services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.services-grid > * {
    grid-column: span 1 !important;
}

/* Catalog / 3-col product grid */
.catalog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.catalog-grid > * {
    grid-column: span 1 !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 1024px) {
    .grid-12 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .grid-12 > * {
        grid-column: 1 / -1 !important;
    }
    .services-grid,
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content {
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 52px 40px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-pad: clamp(20px, 5vw, 32px);
    }
    .section-padding {
        padding: 100px 0;
    }
    .services-grid,
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-cta-card {
        padding: 40px 28px;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-bottom-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   EDITORIAL ENHANCEMENTS
   ============================================================ */
.img-editorial {
    filter: contrast(1.02) saturate(1.04) brightness(1.01);
    transition: var(--transition-smooth);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card:hover .img-editorial {
    filter: contrast(1.05) saturate(1.08) brightness(1.02);
    transform: scale(1.04);
}

/* LUXURY PRODUCT SLIDER */
.luxury-slider { position: relative; overflow: hidden; }
.slider-track { display: flex; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); height: 100%; }
.slider-btn { transition: all 0.3s ease; z-index: 10; opacity: 0; transform: scale(0.9); }
.luxury-slider:hover .slider-btn { opacity: 1; transform: scale(1); }
.slider-btn:hover { background: var(--blue) !important; color: white !important; transform: scale(1.1); }
.dot { transition: all 0.3s ease; cursor: pointer; }
.dot.active { width: 24px !important; border-radius: 4px !important; background: white !important; }



/* Mobile Mobile Hero Reduction Patch */
@media (max-width: 768px) {
    .hero-image-mobile-reduce {
        max-width: 75%;
        margin: 0 auto;
    }
}
