/* ==========================================================================
   Luxury Core Variables & Design System Theme Setting Configuration
   ========================================================================== */
:root {
    --luxury-black: #0A0A0A;
    --luxury-gold: #D4AF37;
    --rose-gold: #B76E79;
    --luxury-ivory: #FDFBF7;
    --pure-white: #FFFFFF;
    --muted-grey: #8E8E93;
    --glass-background: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Optimization Core Engine Standard System */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Forced custom aesthetic element tracking node overrides */
}

html {
    scroll-behavior: smooth;
    background-color: var(--luxury-black);
    color: var(--luxury-ivory);
    font-family: var(--font-body);
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--luxury-black);
    overflow-x: hidden;
}

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

/* ==========================================================================
   Advanced FX Utilities (Preloader, Progress bars, Smooth interaction handles)
   ========================================================================== */
.page-loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--luxury-black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1);
}

.loader-content { text-align: center; }
.loader-logo {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    letter-spacing: 8px;
    color: var(--luxury-gold);
    margin-bottom: 20px;
}

.loader-line {
    width: 200px; height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0 auto 15px auto;
    position: relative; overflow: hidden;
}

.loader-line span {
    position: absolute; top:0; left: -100%;
    width: 100%; height: 100%;
    background: var(--luxury-gold);
    animation: loaderShift 2s infinite ease-in-out;
}

@keyframes loaderShift {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.scroll-progress {
    position: fixed; top: 0; left: 0; width: 0%; height: 3px;
    background: linear-gradient(to right, var(--luxury-gold), var(--rose-gold));
    z-index: 10000;
}

.cursor-glow {
    position: fixed; width: 20px; height: 20px;
    border: 1px solid var(--luxury-gold);
    border-radius: 50%; pointer-events: none;
    transform: translate(-50%, -50%); z-index: 10001;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

/* Glassmorphic Engine Framework Implementation */
.card-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Button UI Components */
.btn {
    display: inline-block;
    padding: 16px 35px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
}

.btn-gold {
    background-color: var(--luxury-gold);
    color: var(--luxury-black);
}

.btn-gold:hover {
    background-color: var(--pure-white);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--pure-white);
}

.btn-outline:hover {
    border-color: var(--luxury-gold);
    background: rgba(212, 175, 55, 0.05);
}

/* Headers System Section Elements */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--rose-gold);
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--luxury-ivory);
}

.accent-line {
    width: 50px; height: 1px;
    background: var(--luxury-gold);
    margin: 20px auto 0 auto;
}

/* ==========================================================================
   2. Header & Main Mega Navigation System Layout
   ========================================================================== */
.main-header {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 30px 0; z-index: 900;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to bottom, rgba(10,10,10,0.8), transparent);
    transition: var(--transition-smooth);
}

.main-header.sticky {
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

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

.brand-logo a { text-decoration: none; text-align: center; }
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem; letter-spacing: 6px;
    color: var(--luxury-ivory); display: block;
}

.logo-subtext {
    font-size: 0.55rem; letter-spacing: 4px;
    color: var(--luxury-gold); display: block; margin-top: 4px;
}

.nav-list { display: flex; list-style: none; gap: 40px; }
.nav-link {
    text-decoration: none; color: var(--luxury-ivory);
    font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 2px; font-weight: 400; padding: 10px 0;
    transition: var(--transition-smooth);
}

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

/* Mega Menu Drop Panel Layout */
.drop-trigger { position: relative; }
.mega-menu {
    position: fixed; top: 100%; left: 0; width: 100%;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--glass-border);
    padding: 50px 80px; opacity: 0; visibility: hidden;
    transform: translateY(20px); transition: var(--transition-smooth);
}

.drop-trigger:hover .mega-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}

.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.mega-col h4 {
    font-family: var(--font-heading); color: var(--luxury-gold);
    font-size: 1rem; margin-bottom: 20px; letter-spacing: 1px;
}

.mega-col a {
    display: block; color: var(--muted-grey); text-decoration: none;
    font-size: 0.85rem; margin-bottom: 12px; transition: var(--transition-smooth);
}

.mega-col a:hover { color: var(--luxury-ivory); padding-left: 5px; }

.mega-img-card { position: relative; height: 200px; overflow: hidden; }
.mega-img-card img { width: 100%; height: 100%; object-fit: cover; }

/* Utilities Operations */
.header-actions { display: flex; align-items: center; gap: 25px; }
.search-container { display: flex; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 4px; }
.search-input { background: none; border: none; outline: none; color: white; font-size: 0.8rem; width: 150px; }
.action-btn { background: none; border: none; font-size: 1.1rem; position: relative; }
.badge-count {
    position: absolute; top: -8px; right: -8px;
    background: var(--rose-gold); color: white; font-size: 0.6rem;
    padding: 2px 5px; border-radius: 50%;
}

.mobile-nav-toggle { display: none; background: none; border: none; }

/* ==========================================================================
   3. Immersive Hero Theater Configuration Panel
   ========================================================================== */
.hero-section {
    position: relative; height: 100vh; width: 100%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; text-align: center;
}

.hero-video-bg {
    position: absolute; top:50%; left: 50%; min-width: 100%; min-height: 100%;
    width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, var(--luxury-black), rgba(10,10,10,0.4));
}

.hero-content { position: relative; z-index: 10; max-width: 900px; padding: 0 20px; }
.hero-tagline { font-size: 0.85rem; letter-spacing: 6px; color: var(--luxury-gold); margin-bottom: 20px; }
.hero-title { font-family: var(--font-heading); font-size: 5.5rem; line-height: 1.1; margin-bottom: 30px; font-weight: 400; }
.hero-title span { display: inline-block; }
.gold-text { color: transparent; -webkit-text-stroke: 1px var(--luxury-gold); }
.hero-desc { font-size: 1.05rem; font-weight: 200; line-height: 1.8; color: #E5E5EA; margin-bottom: 40px; }
.hero-cta-group { display: flex; justify-content: center; gap: 20px; }

/* ==========================================================================
   4. Categories Architecture
   ========================================================================== */
.categories-section { padding: 140px 0; background: var(--luxury-black); }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.category-card {
    position: relative; height: 550px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.03);
}

.category-img-wrapper { width: 100%; height: 100%; transition: var(--transition-smooth); }
.category-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: var(--transition-smooth); }
.category-card:hover .category-img-wrapper img { transform: scale(1.08); }

.category-info-panel {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 40px; background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
    z-index: 5; transition: var(--transition-smooth);
}

.category-info-panel h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 8px; font-weight: 400; }
.category-info-panel p { font-size: 0.85rem; color: var(--muted-grey); margin-bottom: 20px; }
.category-link { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--luxury-gold); text-decoration: none; }

/* ==========================================================================
   5. E-Commerce Product Marketplace Engine Grid Layout
   ========================================================================== */
.featured-section { padding: 60px 0 140px 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.product-card { background: rgba(255,255,255,0.01); border: 1px solid rgba(255,255,255,0.02); padding: 15px; }
.product-media { position: relative; height: 450px; overflow: hidden; margin-bottom: 25px; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.product-card:hover .product-media img { transform: scale(1.04); }

.prod-badge {
    position: absolute; top: 20px; left: 20px; font-size: 0.65rem;
    text-transform: uppercase; letter-spacing: 1px; padding: 5px 12px; z-index: 10;
}

.new-badge { background: var(--luxury-gold); color: var(--luxury-black); }
.heritage-badge { background: var(--luxury-black); border: 1px solid var(--luxury-gold); color: var(--luxury-gold); }

.product-actions-overlay {
    position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 15px; z-index: 10; opacity: 0; transition: var(--transition-smooth);
}

.product-card:hover .product-actions-overlay { bottom: 30px; opacity: 1; }
.action-circle-btn {
    width: 45px; height: 45px; border-radius: 50%; background: var(--pure-white);
    border: none; display: flex; align-items: center; justify-content: center;
    transition: var(--transition-smooth);
}

.action-circle-btn:hover { background: var(--luxury-gold); transform: translateY(-3px); }

.product-details h3 { font-size: 1rem; font-weight: 400; margin-bottom: 10px; color: var(--luxury-ivory); }
.prod-price { font-family: var(--font-heading); color: var(--luxury-gold); font-size: 1.1rem; margin-bottom: 20px; }
.product-details .btn { width: 100%; text-align: center; }

/* ==========================================================================
   6. Statistics Counter UI Block Elements
   ========================================================================== */
.metrics-section { padding: 100px 0; background: linear-gradient(rgba(10,10,10,1), rgba(20,20,20,0.5)); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.metric-block { padding: 50px 30px; text-align: center; }
.metric-icon { font-size: 2rem; margin-bottom: 15px; display: block; }
.counter-number { font-family: var(--font-heading); font-size: 3rem; color: var(--luxury-gold); font-weight: 500; margin-bottom: 10px; }
.counter-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted-grey); }

/* ==========================================================================
   7. Auto-Scrolling Runway Framework Layout
   ========================================================================== */
.slider-showcase-section { padding: 100px 0; overflow: hidden; }
.horizontal-slider-wrapper { width: 100%; display: flex; position: relative; }
.slide-track { display: flex; width: calc(350px * 8); animation: infiniteSliderMarquee 30s linear infinite; gap: 30px; }
.slide-track:hover { animation-play-state: paused; }
.slide-item { width: 350px; flex-shrink: 0; text-align: center; }
.slide-item img { width: 100%; height: 450px; object-fit: cover; border: 1px solid rgba(255,255,255,0.05); margin-bottom: 15px; }
.slide-item h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 400; color: var(--luxury-gold); }

@keyframes infiniteSliderMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 4)); }
}

/* ==========================================================================
   8. Material Tabs Showcase System
   ========================================================================== */
.fabric-section { padding: 120px 0; background: #0F0F0F; }
.tabs-header-row { display: flex; justify-content: center; gap: 40px; margin-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.tab-trigger {
    background: none; border: none; color: var(--muted-grey);
    font-family: var(--font-heading); font-size: 1.2rem; padding: 15px 25px;
    letter-spacing: 1px; transition: var(--transition-smooth); position: relative;
}

.tab-trigger.active { color: var(--luxury-gold); }
.tab-trigger.active::after {
    content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 1px; background: var(--luxury-gold);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: panelFade 0.8s forwards; }
.tab-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.panel-desc h3 { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 400; margin-bottom: 20px; color: var(--luxury-gold); }
.panel-desc p { line-height: 1.8; color: #D1D1D6; font-size: 1rem; }
.panel-media img { width: 100%; height: 400px; object-fit: cover; border: 1px solid rgba(255,255,255,0.05); }

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

/* ==========================================================================
   9. Cinematic Video Story Section
   ========================================================================== */
.video-story-section { position: relative; height: 75vh; overflow: hidden; width: 100%; }
.video-story-wrapper { width: 100%; height: 100%; position: relative; }
.story-video { width: 100%; height: 100%; object-fit: cover; }
.video-story-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(10,10,10,0.5); display: flex; align-items: center; justify-content: center;
}

.story-center-card { padding: 60px; max-width: 550px; text-align: center; }
.story-center-card h3 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 15px; color: var(--luxury-gold); }
.story-center-card p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 30px; color: var(--luxury-ivory); }
.play-btn {
    width: 70px; height: 70px; border-radius: 50%; background: var(--luxury-gold);
    border: none; color: var(--luxury-black); font-size: 1.5rem; display: inline-flex;
    align-items: center; justify-content: center; transition: var(--transition-smooth);
}

.play-btn:hover { background: var(--pure-white); transform: scale(1.1); }

/* ==========================================================================
   10. Testimonials Carousel Layout Panel
   ========================================================================== */
.testimonials-section { padding: 120px 0; }
.testimonial-carousel-container { position: relative; max-width: 800px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.testimonial-card { width: 100%; flex-shrink: 0; padding: 50px; text-align: center; margin: 0 10px; }
.star-rating { color: var(--luxury-gold); margin-bottom: 20px; font-size: 0.9rem; }
.testimonial-quote { font-family: var(--font-heading); font-size: 1.4rem; font-style: italic; line-height: 1.8; margin-bottom: 25px; color: #E5E5EA; }
.bride-name { font-size: 1rem; font-weight: 500; color: var(--luxury-gold); }
.bride-loc { font-size: 0.75rem; color: var(--muted-grey); }

/* ==========================================================================
   11. Instagram Masonry Grid System Layouts
   ========================================================================== */
.instagram-section { padding: 80px 0; }
.masonry-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.masonry-item { position: relative; overflow: hidden; height: 350px; }
.masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.masonry-item:hover img { transform: scale(1.05); filter: brightness(0.8); }

/* ==========================================================================
   12. FAQ Accordion Section Layout Panel
   ========================================================================== */
.faq-section { padding: 100px 0; background: #0B0B0B; }
.faq-accordion-wrapper { max-width: 800px; margin: 0 auto; }
.faq-node { border-bottom: 1px solid rgba(255,255,255,0.05); padding: 15px 0; }
.faq-trigger {
    width: 100%; background: none; border: none; text-align: left;
    font-family: var(--font-heading); font-size: 1.15rem; padding: 20px 0;
    color: var(--luxury-ivory); display: flex; justify-content: space-between;
    align-items: center; transition: var(--transition-smooth);
}

.faq-trigger:hover { color: var(--luxury-gold); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; }
.faq-body p { padding-bottom: 20px; color: var(--muted-grey); line-height: 1.7; font-size: 0.95rem; }

/* ==========================================================================
   13. Blog Section Architectural Components
   ========================================================================== */
.blog-section { padding: 120px 0; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.blog-card { padding: 20px; }
.blog-media { height: 350px; overflow: hidden; margin-bottom: 25px; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.blog-card:hover .blog-media img { transform: scale(1.03); }
.blog-date { font-size: 0.75rem; text-transform: uppercase; color: var(--rose-gold); letter-spacing: 2px; display: block; margin-bottom: 10px; }
.blog-info h3 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 15px; font-weight: 400; }
.blog-info p { color: var(--muted-grey); line-height: 1.6; font-size: 0.95rem; margin-bottom: 20px; }
.read-more-btn { color: var(--luxury-gold); text-decoration: none; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* ==========================================================================
   14. Newsletter Custom Architecture
   ========================================================================== */
.newsletter-section { padding: 100px 0; background: linear-gradient(to top, #0A0A0A, #141414); }
.newsletter-inner-panel { max-width: 800px; margin: 0 auto; padding: 80px 40px; text-align: center; }
.newsletter-inner-panel h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 20px; }
.newsletter-inner-panel p { color: var(--muted-grey); font-size: 0.95rem; margin-bottom: 40px; line-height: 1.7; }
.newsletter-form { display: flex; flex-direction: column; align-items: center; gap: 30px; width: 100%; max-width: 500px; margin: 0 auto; }
.input-glow-group { position: relative; width: 100%; }
.luxury-input {
    width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 12px 0; color: white; font-size: 1rem; outline: none; transition: var(--transition-smooth);
}

.luxury-input:focus { border-bottom-color: var(--luxury-gold); }
.luxury-label {
    position: absolute; left: 0; top: 12px; color: var(--muted-grey);
    pointer-events: none; transition: var(--transition-smooth); font-size: 0.95rem;
}

.luxury-input:focus ~ .luxury-label,
.luxury-input:not(:placeholder-shown) ~ .luxury-label {
    top: -15px; font-size: 0.75rem; color: var(--luxury-gold); letter-spacing: 1px;
}

/* ==========================================================================
   15. Sliding Dynamic Side Drawers Engine
   ========================================================================== */
.side-drawer {
    position: fixed; top: 0; right: -450px; width: 450px; height: 100%;
    background: #0E0E0E; border-left: 1px solid var(--glass-border);
    z-index: 2000; padding: 40px; display: flex; flex-direction: column;
    transition: var(--transition-smooth);
}

.side-drawer.open { right: 0; box-shadow: -10px 0 40px rgba(0,0,0,0.5); }
.drawer-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 20px; }
.drawer-header h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--luxury-gold); }
.drawer-close { background: none; border: none; color: white; font-size: 1.2rem; }
.drawer-content { flex-grow: 1; overflow-y: auto; padding: 30px 0; }
.drawer-footer { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }
.empty-msg { color: var(--muted-grey); font-style: italic; text-align: center; margin-top: 30px; }
.drawer-item-row { display: flex; justify-content: space-between; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.02); }

/* Quick View Structural Modal Layout overlays */
.modal-overlay {
    position: fixed; top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.8); z-index: 3000; display: none;
    align-items: center; justify-content: center; padding: 20px;
}

.modal-overlay.open { display: flex; }
.modal-wrapper { max-width: 900px; width: 100%; position: relative; padding: 40px; }
.modal-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: white; font-size: 1.5rem; }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.modal-media-frame img { width: 100%; height: 450px; object-fit: cover; }
.modal-info-frame { display: flex; flex-direction: column; justify-content: center; }
.modal-info-frame h2 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 15px; color: var(--luxury-ivory); }
.modal-price { font-size: 1.4rem; color: var(--luxury-gold); margin-bottom: 20px; }
.modal-desc { font-size: 0.95rem; line-height: 1.7; color: var(--muted-grey); margin-bottom: 30px; }

/* ==========================================================================
   16. Corporate Luxury Footer Block Element
   ========================================================================== */
.main-footer { background: #050505; border-top: 1px solid rgba(255,255,255,0.03); padding: 100px 0 40px 0; }
.footer-top-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand-summary h2 { margin-bottom: 20px; }
.footer-brand-summary p { color: var(--muted-grey); line-height: 1.7; font-size: 0.95rem; margin-bottom: 25px; }
.social-links-row a { text-decoration: none; font-size: 1.3rem; margin-right: 15px; }
.footer-links-column h4 { font-family: var(--font-heading); color: var(--luxury-gold); font-size: 1rem; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links-column ul { list-style: none; }
.footer-links-column li { margin-bottom: 15px; }
.footer-links-column a { color: var(--muted-grey); text-decoration: none; font-size: 0.9rem; transition: var(--transition-smooth); }
.footer-links-column a:hover { color: var(--luxury-ivory); padding-left: 5px; }
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.03); padding-top: 40px; text-align: center; color: #444; font-size: 0.8rem; }

/* Structural Global Animation Tracking helper classes */
.reveal-item { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal-item.visible { opacity: 1; transform: translateY(0); }
.w-100 { width: 100%; }
.m-0 { margin: 0; }