/* Modern Reset & Base Rules */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-midnight: #000000;
    /* Switched to pure black for better logo integration */
    --color-gold: #f2ca50;
    --color-silver: #e2e2e2;
    --color-text: #e2e2e2;
    --font-serif: 'Prata', serif;
    --font-sans: 'Jost', sans-serif;
    --spacing-base: 1.5rem;
    --spacing-xl: 4rem;
    --spacing-hero: 8rem;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--color-midnight);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Watermark Logo Background */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vh;
    height: 60vh;
    background-image: url('images/logo/logo_watermark.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    /* Reinforced Visibility */
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1,
h2,
h3,
blockquote {
    font-family: var(--font-serif);
    font-weight: 400;
}

h1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-title {
    position: relative;
    padding-left: 2rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 2px;
    height: 100%;
    background-color: var(--color-gold);
}

.section-title-center {
    font-family: var(--font-serif);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 5rem;
    letter-spacing: 0.1em;
}

.body-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 60ch;
    margin-bottom: 2rem;
}

/* Header & Nav */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5));
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.logo-container,
.main-nav {
    position: relative;
    z-index: 2;
}

.logo {
    height: 130px;
    /* Enlarged for premium presence */
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-silver);
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.2rem;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.dropdown:hover .dropbtn {
    color: var(--color-gold);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.95);
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    border: 1px solid rgba(242, 202, 80, 0.2);
    top: 100%;
    left: 0;
    margin-top: 0;
    /* Fixed: Removed gap that caused hover menu to close */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.dropdown-content a {
    color: var(--color-silver);
    padding: 1rem 1.5rem;
    text-decoration: none;
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: rgba(242, 202, 80, 0.1);
    color: var(--color-gold);
    padding-left: 2rem;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Carousel Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    /* Added for centering ability */
    align-items: center;
    overflow: hidden;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 25vw;
    height: 60vh;
    background-size: cover;
    background-position: center top;
    border-radius: 4px;
    border: 1px solid var(--color-gold);
    /* Added golden frame */
    opacity: 0;
    filter: grayscale(100%);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
}


/* Bottom Silhouette Mask Overlay */
.carousel-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    background-image: url('images/masques_motifs/fashion.png');
    background-size: contain;
    background-position: bottom center;
    background-repeat: repeat-x;
    z-index: 2;
    opacity: 0.3;
    /* Subtle presence */
    filter: brightness(0);
    /* Make silhouettes pure black */
}

.carousel-slide.active {
    left: 50%;
    width: 35vw;
    height: 80vh;
    opacity: 1;
    filter: grayscale(0%);
    z-index: 3;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(242, 202, 80, 0.4);
}

.carousel-slide.prev {
    left: 15%;
    opacity: 0.6;
    filter: grayscale(100%);
    z-index: 2;
}

.carousel-slide.next {
    left: 85%;
    opacity: 0.6;
    filter: grayscale(100%);
    z-index: 2;
}

.carousel-slide.hidden-left {
    left: -20%;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.carousel-slide.hidden-right {
    left: 120%;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    display: none;
    /* Removed shadow to make images fully visible */
}

/* Shared Secondary Hero Carousel (Fade) */
.hero-carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 15%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    filter: grayscale(100%) brightness(0.7);
    z-index: 0;
}

.hero-carousel-slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    bottom: 8%;
    /* Moved to bottom */
    left: 50%;
    transform: translateX(-50%);
    /* Centered horizontally */
    z-index: 10;
    width: 90%;
    max-width: 1000px;
    text-align: center;
    /* Centered text */
}

.hero-label {
    font-family: var(--font-sans);
    letter-spacing: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.atelier-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 0.4em;
    color: var(--color-gold);
    text-transform: uppercase;
}

.hero-title span {
    color: var(--color-gold);
    font-style: italic;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-gold);
    color: #000;
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.1rem;
    margin-top: 2rem;
    /* Reduced for bottom alignment */
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateX(10px);
}

/* Heritage Section */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.heritage {
    padding: var(--spacing-hero) 0;
}

.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.heritage-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid var(--color-gold);
    /* Unified styling */
    box-shadow: 0 0 20px rgba(242, 202, 80, 0.2);
}

.link-gold {
    color: var(--color-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    border-bottom: 1px solid var(--color-gold);
}

/* Collections & Lookbook */
.featured-collection {
    padding: var(--spacing-hero) 0;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.look-card {
    position: relative;
    overflow: hidden;
    background-color: #0c0c0c;
}

.look-card img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    transition: transform 1.2s ease;
    border: 1px solid var(--color-gold);
    /* Unified styling */
    box-shadow: 0 0 30px rgba(242, 202, 80, 0.25);
}

.look-card:hover img {
    transform: scale(1.05);
}

.asym-down {
    margin-top: 10rem;
}

.look-info {
    padding: 2rem 0;
}

.look-card p {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: var(--color-gold);
}

/* Quote Section / Parallax Gap */
.quote-section {
    padding: var(--spacing-hero) 0;
    text-align: center;
    background-image: url('images/init/init_wedding_5.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.quote-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Darken for text legibility */
    z-index: 1;
}

.quote-section .container {
    position: relative;
    z-index: 2;
}

.main-quote {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.3;
    font-style: italic;
    color: var(--color-gold);
    max-width: 1100px;
    margin: 0 auto;
    opacity: 0.9;
}

.main-quote cite {
    display: block;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    margin-top: 4rem;
    color: var(--color-silver);
}

/* Footer */
.main-footer {
    padding: var(--spacing-hero) 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.main-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 100%;
    background-image: url('images/masques_motifs/fashion.png');
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.main-footer>* {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.logo-small {
    height: 110px;
    /* Enlarged for footer signature */
    margin-bottom: 2rem;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
    margin-bottom: 2.5rem;
    color: var(--color-gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    padding-top: 3rem;
}

/* Special Layouts for Secondary Pages */
.hero-secondary {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Contain the glitter */
    background: linear-gradient(to bottom, #000, #0a0a0a);
}

/* Fairy Golden Dust Particles - Enhanced Variety & Speed */
.hero::before,
.hero::after,
.hero-secondary::before,
.hero-secondary::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 300%;
    pointer-events: none;
    z-index: 1;
    /* Default for secondary headers */
}

.hero::before,
.hero::after {
    z-index: -1;
    /* Backstage for the main landing hero */
}

.hero::before,
.hero-secondary::before {
    background-image:
        radial-gradient(1.2px 1.2px at 15px 35px, var(--color-gold), rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 80px 10px, #ffa500, rgba(0, 0, 0, 0)),
        radial-gradient(0.8px 0.8px at 50px 80px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1.5px 1.5px at 20px 60px, #ffd700, rgba(0, 0, 0, 0));
    background-size: 100px 100px;
    /* Reduced for high density */
    opacity: 0.6;
    animation: glitterFall 8s linear infinite;
    /* Faster for a more energetic effect */
}

.hero::after,
.hero-secondary::after {
    background-image:
        radial-gradient(2px 2px at 40px 90px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(0.5px 0.5px at 10px 10px, var(--color-gold), rgba(0, 0, 0, 0)),
        radial-gradient(1.5px 1.5px at 90px 40px, #ffa500, rgba(0, 0, 0, 0)),
        radial-gradient(1.2px 1.2px at 60px 120px, #fff, rgba(0, 0, 0, 0));
    background-size: 130px 130px;
    /* Varied density layer */
    opacity: 0.5;
    animation: glitterFall 12s linear infinite;
    animation-delay: -4s;
}

@keyframes glitterFall {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(33.33%);
    }
}



.page-title {
    font-size: clamp(3.5rem, 10vw, 6rem);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 30px rgba(242, 202, 80, 0.4);
    width: 100%;
    text-align: center;
}

/* Form Styles for Sur Mesure */
.contact-form {
    max-width: 800px;
    margin: 4rem auto;
}

.form-group {
    margin-bottom: 3rem;
}

.form-group label {
    display: block;
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(242, 202, 80, 0.3);
    color: #fff;
    padding: 1rem 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

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

/* Lightbox / Galerie plein écran */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    box-shadow: 0 0 100px rgba(242, 202, 80, 0.15);
    /* Soft Golden Aura */
    border: none;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 3rem;
    cursor: pointer;
    font-family: var(--font-serif);
    transition: transform 0.3s ease;
    padding: 2rem;
    z-index: 10;
}

.lightbox-btn:hover {
    transform: translateY(-50%) scale(1.2);
}

.lightbox-prev {
    left: 2%;
}

.lightbox-next {
    right: 2%;
}

.lightbox-close {
    position: absolute;
    top: 3%;
    right: 3%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: var(--font-sans);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    height: 500px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    border: 1px solid var(--color-gold);
    box-shadow: 0 0 20px rgba(242, 202, 80, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Footer Copyright Branding Motif */
.footer-bottom {
    position: relative;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    overflow: hidden;
    z-index: 1;
}


.footer-bottom::before {
    display: none;
}

@keyframes sealColorPulse {

    0%,
    100% {
        filter: brightness(0) invert(79%) sepia(74%) saturate(614%) hue-rotate(352deg) brightness(101%) contrast(92%);
        opacity: 0.18;
    }

    50% {
        filter: brightness(0) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
        opacity: 0.42;
    }
}

/* ===================================================
   RESPONSIVE - HAMBURGER MENU (Mobile & Tablet)
   =================================================== */

/* --- Hamburger Button --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(242, 202, 80, 0.4);
    border-radius: 4px;
    cursor: pointer;
    z-index: 2002;
    position: relative;
    padding: 8px;
    order: 3;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-gold, #f2ca50);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.3s ease;
    transform-origin: center;
}

/* Animated X when open */
.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

/* ---- Tablet (<=900px) ---- */
@media (max-width: 900px) {

    .main-header {
        padding: 0.71rem 4%;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        visibility: hidden;
        width: min(320px, 85vw);
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(242, 202, 80, 0.15);
        display: flex;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
        z-index: 2001;
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
    }

    .main-nav.nav-open {
        transform: translateX(0);
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .main-nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        width: 100%;
    }

    .main-nav ul li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .main-nav a {
        display: block;
        padding: 1.1rem 0.5rem;
        font-size: 0.9rem;
        letter-spacing: 0.18em;
        color: rgba(255, 255, 255, 0.8);
        transition: color 0.2s, padding-left 0.2s;
    }

    .main-nav a:hover {
        color: var(--color-gold, #f2ca50);
        padding-left: 1rem;
    }

    /* Dropdown inside mobile panel */
    .dropdown-content {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        min-width: unset;
    }

    .dropdown.open .dropdown-content {
        display: block;
    }

    .dropdown>.dropbtn::after {
        content: ' ›';
        transition: transform 0.2s;
        display: inline-block;
    }

    .dropdown.open>.dropbtn::after {
        transform: rotate(90deg);
    }

    /* Overlay backdrop */
    .main-nav::before {
        display: none;
        /* Disable the brand seal in mobile nav panel */
    }

    .logo {
        height: 95px;
    }

    .heritage-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .p-4 {
        padding: 2rem;
    }
}

/* ---- Smartphone (<=480px) ---- */
@media (max-width: 480px) {
    .main-header {
        padding: 0.50rem 4%;
    }

    .logo {
        height: 80px;
    }

    .main-nav {
        width: 100%;
        border-left: none;
    }

    .heritage-grid {
        gap: 1.5rem;
    }

    .p-4 {
        padding: 1.5rem;
    }

    .pr-2 {
        padding-right: 0;
    }

    .border-left-gold {
        border-left: none;
        padding-left: 0;
    }

    .mt-3 {
        margin-top: 2rem;
    }
}

/* ---- Utility Classes (replacing inline styles) ---- */
.text-gold {
    color: var(--color-gold);
}

.text-white {
    color: #fff;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.75);
}

.font-serif {
    font-family: var(--font-serif);
}

.font-sans {
    font-family: var(--font-sans);
}

.italic {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
}

.letter-wide {
    letter-spacing: 0.2rem;
}

.letter-wider {
    letter-spacing: 0.4em;
}

.letter-tight {
    letter-spacing: 0.1em;
}

.font-xs {
    font-size: 0.75rem;
}

.font-sm {
    font-size: 0.8rem;
}

.font-md {
    font-size: 1.25rem;
}

.font-lg {
    font-size: 2rem;
}

.leading-relaxed {
    line-height: 1.8;
}

.mt-05 {
    margin-top: 0.5rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-15 {
    margin-bottom: 1.5rem;
}

.mr-15 {
    margin-right: 1.5rem;
}

.py-section {
    padding: 4rem 5%;
}

.text-center {
    text-align: center;
}

.glitter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: glitterFall 25s linear infinite;
    pointer-events: none;
}

.footer-social-link {
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.form-status {
    display: none;
    margin-top: 1rem;
    color: var(--color-gold);
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-size: 0.8rem;
}

.trap-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.active-nav {
    color: var(--color-gold);
}

.portal-card-special {
    border-style: double !important;
    border-width: 3px !important;
}

.portal-card-special h3 {
    letter-spacing: 0.2rem;
}

/* ---- Additional Utility Classes ---- */
.opacity-60 {
    opacity: 0.6;
}

.text-center {
    text-align: center;
}

.border-left-gold {
    border-left: 1px solid var(--color-gold);
}

.border-left-gold-2 {
    border-left: 2px solid var(--color-gold);
}

.pl-15 {
    padding-left: 1.5rem;
}

.pl-2 {
    padding-left: 2rem;
}

.pr-2 {
    padding-right: 2rem;
}

.pt-5 {
    padding-top: 5rem;
}

.mb-08 {
    margin-bottom: 0.8rem;
}

.mb-04 {
    margin-bottom: 0.4rem;
}

.p-4 {
    padding: 4rem;
}

.max-w-full {
    max-width: 100%;
}

.bg-dark-subtle {
    background: rgba(10, 10, 10, 0.6);
}

.border-gold-subtle {
    border: 1px solid rgba(242, 202, 80, 0.2);
}

.box-shadow-luxury {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.border-top-gold-subtle {
    border-top: 1px solid rgba(242, 202, 80, 0.1);
}

.border-top-white-subtle {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bg-dark {
    background-color: #050505;
}

.heritage-list {
    list-style: none;
    margin-bottom: 2rem;
}

.heritage-list li {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.blockquote-italic {
    font-style: italic;
    border-left: 2px solid var(--color-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.form-select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(242, 202, 80, 0.3);
    color: #fff;
    padding: 1rem 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    cursor: pointer;
}

.form-select option {
    color: #000;
}

.btn-submit-full {
    width: 100%;
    border: none;
    cursor: pointer;
    text-align: center;
    margin-top: 1rem;
}

.form-status-landing {
    display: none;
    margin-top: 2rem;
    color: var(--color-gold);
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    font-size: 0.8rem;
    text-align: center;
    padding: 1rem;
    border: 1px dashed var(--color-gold);
}

.contact-direct-label {
    color: var(--color-gold);
    font-family: var(--font-sans);
    letter-spacing: 0.2rem;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
}

.contact-direct-text {
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
}

.contact-direct-text+.contact-direct-text {
    margin-bottom: 0.4rem;
}

.flex-col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.m-0 {
    margin: 0;
}

.mt-4 {
    margin-top: 4rem;
}

.heritage-grid-2col {
    grid-template-columns: 1fr 1.2fr;
}

.section-spacing-hero {
    padding: var(--spacing-hero) 0;
}

.glitter-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: glitterFall 25s linear infinite;
    background-image:
        radial-gradient(4px 4px at 20px 30px, var(--color-gold), rgba(0, 0, 0, 0)),
        radial-gradient(3px 3px at 150px 150px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(4.5px 4.5px at 80px 200px, var(--color-gold), rgba(0, 0, 0, 0)),
        radial-gradient(2.5px 2.5px at 250px 50px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(3.5px 3.5px at 180px 300px, var(--color-gold), rgba(0, 0, 0, 0)),
        radial-gradient(4px 4px at 50px 100px, #fff, rgba(0, 0, 0, 0));
    background-size: 350px 350px;
    opacity: 0.6;
    pointer-events: none;
}

.max-w-650 {
    max-width: 650px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ---- Skip Navigation (Accessibility) ---- */
.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--color-gold);
    color: #000;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}