:root {
            /* Palette — Warm Alabaster & Espresso */
            --bg-pure: #FAF9F6;
            --bg-surface: #F5EDE0;
            --bg-linen: #F6F2EC;
            --bg-card: #FFFFFF;
            --text-primary: #111111;
            --text-secondary: #0F0E0E;
            --text-muted: rgba(0, 0, 0, 0.6);
            --text-card-muted: rgba(0, 0, 0, 0.5);
            --brand-gold: #5A3305;
            --copper-sand: #E29578;
            --sovereign-gold: #DA821B;
            --aura-amber: #D48F4F;
            --veri-jade: #A6CFB8;
            --medical-green: #008B5B;
            --veri-magenta: #DC308F;
            --veri-lavender: #D0A8C9;
            --veri-blue: #457BF1;

            /* Legacy aliases */
            --sabbia: var(--bg-pure);
            --testo: var(--text-secondary);
            --testo-muted: var(--text-muted);
            --oro: var(--sovereign-gold);
            --oro-dark: var(--brand-gold);
            --oro-light: var(--aura-amber);
            --petrolio: var(--text-primary);

            /* Radius */
            --radius-lg: 32px;
            --radius-btn: 16px;
            --radius-sm: 12px;
            --radius-md: 16px;
            --radius-xl: 40px;

            /* Typography */
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-serif: 'Newsreader', Georgia, serif;
            --font-title: 'Outfit', sans-serif;

            /* Shadows */
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            background-color: var(--sabbia);
            background-image: radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.03) 1px, transparent 0);
            background-size: 40px 40px;
            font-family: var(--font-body);
            color: var(--testo);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-title);
            color: var(--text-primary);
            line-height: 1.1;
            font-weight: 500;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: 4rem;
            margin-bottom: 16px;
        }

        h2 {
            font-size: 3.2rem;
            margin-bottom: 24px;
        }

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

        p {
            font-size: 1.125rem;
            color: var(--testo-muted);
            margin-bottom: 20px;
            line-height: 1.7;
        }

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

        .section {
            padding: 100px 0;
        }

        .section-alt {
            background: var(--bg-linen);
        }

        .subtitle-majestic {
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 700;
            font-size: 0.75rem;
            color: var(--testo-muted);
            margin-bottom: 15px;
            display: block;
        }

        .majestic-italic {
            font-family: var(--font-serif);
            font-style: italic;
            font-weight: 400;
            color: var(--oro);
        }

        /* Buttons */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--sovereign-gold);
            color: #fff;
            font-family: var(--font-title);
            font-weight: 600;
            font-size: 1rem;
            padding: 16px 32px;
            border-radius: var(--radius-btn);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 16px rgba(218, 130, 27, 0.25);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: var(--brand-gold);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(218, 130, 27, 0.35);
            color: #fff;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--text-primary);
            font-family: var(--font-title);
            font-weight: 500;
            font-size: 1rem;
            padding: 16px 32px;
            border-radius: var(--radius-btn);
            text-decoration: none;
            border: 1.5px solid rgba(0, 0, 0, 0.2);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
        }

        .btn-secondary:hover {
            border-color: var(--sovereign-gold);
            color: var(--sovereign-gold);
            transform: translateY(-2px);
        }

        /* MAJESTIC HUB PANEL */
        .majestic-hub-panel {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            z-index: 10000;
            transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 32px 36px 120px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
            overscroll-behavior: contain;
            -webkit-overflow-scrolling: touch;
        }

        .majestic-hub-panel.is-open {
            right: 0;
        }

        .hub-close {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            color: var(--text-primary);
            opacity: 0.5;
            transition: opacity 0.3s;
            padding: 10px;
        }

        .hub-close:hover {
            opacity: 1;
        }

        .hub-close svg {
            width: 24px !important;
            height: 24px !important;
            display: block !important;
        }

        .hub-section h5 {
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.6rem;
            color: var(--sovereign-gold) !important;
            margin-bottom: 8px;
            font-weight: 800;
        }

        .hub-nav-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .hub-nav-link {
            text-decoration: none;
            color: var(--text-primary);
            font-family: var(--font-title);
            font-size: 0.95rem;
            font-weight: 600;
            font-style: normal;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 4px 0;
        }

        .hub-nav-link:hover {
            color: var(--sovereign-gold);
            transform: translateX(5px);
        }

        .hub-nav-link img {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            opacity: 0.75;
            transition: opacity 0.3s;
        }

        .hub-nav-link:hover img {
            opacity: 1;
            filter: drop-shadow(0 0 4px rgba(223, 141, 29, 0.3));
        }

        .hub-nav-link span {
            flex: 1;
        }

        .hub-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.45);
            backdrop-filter: blur(8px);
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.6s;
        }

        .hub-overlay.is-active {
            opacity: 1;
            pointer-events: auto;
        }

        @media (max-width: 768px) {
            .majestic-hub-panel {
                width: 100%;
                right: -100%;
                padding: 24px 20px 120px;
                gap: 12px;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            h3 {
                font-size: 1.5rem;
            }

            .section {
                padding: 60px 0;
            }
        }

.aura-floater {
            position: fixed;
            bottom: calc(24px + env(safe-area-inset-bottom, 0px));
            left: 50%;
            transform: translateX(-50%);
            z-index: 9999;
            background: rgba(15, 10, 5, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: var(--radius-md, 16px);
            border: 1px solid rgba(218, 130, 27, 0.2);
            padding: 6px 10px 6px 20px;
            display: flex;
            align-items: center;
            gap: 4px;
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
            max-width: 96vw;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .floater-logo {
            display: flex;
            align-items: center;
            padding-right: 12px;
            cursor: pointer;
            flex-shrink: 0;
            min-height: 48px;
        }

        .floater-logo img {
            height: 32px;
            width: auto;
            display: block;
        }

        .floater-divider {
            width: 1px;
            height: 18px;
            background: rgba(255, 255, 255, 0.12);
            flex-shrink: 0;
            margin: 0 4px;
        }

        .floater-link {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-family: var(--font-heading, 'Outfit', sans-serif);
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.03em;
            padding: 6px 14px;
            border-radius: var(--radius-btn, 16px);
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            white-space: nowrap;
            min-height: 48px;
            display: inline-flex;
            align-items: center;
        }

        .floater-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        .btn-hub-trigger-floater {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-family: var(--font-heading, 'Outfit', sans-serif);
            font-size: 0.78rem;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: var(--radius-btn, 16px);
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            background: none;
            border: none;
            min-height: 48px;
        }

        .btn-hub-trigger-floater:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        .floater-cta {
            background: var(--sovereign-gold, #DF8D1D);
            color: #fff;
            font-weight: 700;
            padding: 0 24px;
            border-radius: var(--radius-btn, 16px);
            margin-left: 8px;
            font-size: 0.8rem;
            min-height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            letter-spacing: 1px;
            text-decoration: none;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 12px rgba(218, 130, 27, 0.25);
        }

        .floater-cta:hover {
            background: var(--brand-gold, #C47A18);
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(218, 130, 27, 0.35);
            color: #fff;
        }

        @media (max-width: 768px) {
            .aura-floater {
                bottom: calc(16px + env(safe-area-inset-bottom, 0px));
                padding: 6px 60px 6px 26px;
                gap: 6px;
                border-radius: var(--radius-md, 16px);
                justify-content: flex-start;
            }

            .floater-link {
                padding: 0 14px;
                font-size: 0.8rem;
                min-height: 48px;
            }

            .btn-hub-trigger-floater {
                padding: 0 14px;
                font-size: 0.8rem;
                min-height: 48px;
                gap: 8px;
            }

            .floater-cta {
                padding: 0 28px;
                min-height: 48px;
                border-radius: var(--radius-btn, 16px);
                font-size: 0.8rem;
                margin-left: 6px;
                letter-spacing: 0.5px;
            }

            .floater-logo {
                padding-right: 10px;
                min-height: 48px;
            }

            .floater-logo img {
                height: 28px;
            }

            .floater-divider {
                margin: 0 4px;
            }

            .hide-mobile {
                display: none !important;
            }
        }

        @media (max-width: 380px) {
            .btn-hub-trigger-floater span {
                display: none;
            }

            .floater-cta {
                padding: 0 20px;
                letter-spacing: 0;
                font-size: 0.8rem;
            }

            .floater-link {
                padding: 0 10px;
                font-size: 0.75rem;
            }
        }

/* Hero */
        .team-hero {
            padding: 140px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .team-hero::before {
            content: '';
            position: absolute;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(218, 130, 27, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .team-hero h1 {
            font-size: 4.5rem;
            font-weight: 600;
            letter-spacing: -0.03em;
            margin-bottom: 16px;
        }

        .team-hero h1 em {
            font-family: var(--font-serif);
            font-style: italic;
            font-weight: 400;
            color: var(--oro);
        }

        .team-hero p {
            max-width: 720px;
            margin: 0 auto 32px;
            font-size: 1.25rem;
        }

        /* Badge bar */
        .badge-bar {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 48px;
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--bg-card);
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, 0.06);
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .badge-item .badge-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        .badge-item .badge-icon svg {
            width: 18px;
            height: 18px;
        }

        /* Comparison table */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .comparison-table th {
            background: var(--text-primary);
            color: #fff;
            padding: 20px 24px;
            text-align: left;
            font-family: var(--font-title);
            font-weight: 500;
            font-size: 1rem;
        }

        .comparison-table th:first-child {
            background: var(--bg-linen);
            color: var(--text-primary);
        }

        .comparison-table td {
            padding: 18px 24px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            font-size: 0.95rem;
            color: var(--text-secondary);
        }

        .comparison-table td:first-child {
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table tr:hover td {
            background: rgba(218, 130, 27, 0.03);
        }

        .tag-ethos {
            display: inline-block;
            background: var(--sovereign-gold);
            color: #fff;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.03em;
        }

        .tag-market {
            display: inline-block;
            background: var(--bg-surface);
            color: var(--brand-gold);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            border: 1px solid rgba(218, 130, 27, 0.15);
        }

        /* Team grid */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .team-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(218, 130, 27, 0.15);
        }

        .team-card-avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--bg-surface);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            font-family: var(--font-title);
        }

        .team-card h3 {
            margin-bottom: 4px;
            font-size: 1.4rem;
        }

        .team-card .role {
            font-family: var(--font-title);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--oro);
            font-weight: 600;
            margin-bottom: 16px;
        }

        .team-card p {
            font-size: 0.95rem;
            color: var(--text-card-muted);
        }

        /* Pillars */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .pillar-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, 0.06);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .pillar-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .pillar-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            margin-bottom: 20px;
            background: rgba(218, 130, 27, 0.08);
            border-radius: var(--radius-sm);
        }

        .pillar-icon svg {
            width: 28px;
            height: 28px;
            color: var(--sovereign-gold);
        }

        .pillar-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .pillar-card p {
            font-size: 0.95rem;
            color: var(--text-card-muted);
        }

        /* Why work with us */
        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        .reason-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 24px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .reason-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            margin-top: 2px;
            background: rgba(218, 130, 27, 0.06);
            border-radius: var(--radius-sm);
        }

        .reason-icon svg {
            width: 22px;
            height: 22px;
            color: var(--sovereign-gold);
        }

        .reason-item h4 {
            font-size: 1rem;
            margin-bottom: 4px;
            font-weight: 600;
        }

        .reason-item p {
            font-size: 0.88rem;
            color: var(--text-card-muted);
            margin: 0;
        }

        /* CTA sections */
        .cta-section {
            text-align: center;
            padding: 120px 0;
            position: relative;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(218, 130, 27, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-section h2 {
            font-size: 3.5rem;
            max-width: 800px;
            margin: 0 auto 20px;
        }

        .cta-section p {
            max-width: 600px;
            margin: 0 auto 32px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cta-stats {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-top: 32px;
            flex-wrap: wrap;
        }

        .cta-stat {
            font-size: 0.85rem;
            color: var(--testo-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .cta-stat strong {
            color: var(--text-primary);
        }

        /* Footer embed styles */
        .main-content-wrapper {
            position: relative;
            z-index: 2;
            background: var(--sabbia);
            margin-bottom: 710px;
            border-bottom-left-radius: var(--radius-lg);
            border-bottom-right-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        @media (max-width: 991px) {
            .main-content-wrapper {
                margin-bottom: 0 !important;
                border-bottom-left-radius: 0 !important;
                box-shadow: none;
            }
        }

        /* Responsive team */
        @media (max-width: 768px) {
            .team-hero h1 {
                font-size: 2.8rem;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .pillars-grid {
                grid-template-columns: 1fr;
            }

            .reasons-grid {
                grid-template-columns: 1fr;
            }

            .comparison-table {
                font-size: 0.85rem;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 12px 16px;
            }

            .cta-section h2 {
                font-size: 2.2rem;
            }
        }

.aura-claim-bar{position:relative;z-index:999;background:#DA821B;color:#FAF9F6;text-align:center;padding:5px 16px;font:500 12px/1.4 Outfit,sans-serif;letter-spacing:.08em;text-transform:uppercase}

footer.aura-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 750px;
            z-index: 1;
            background: linear-gradient(165deg, #FFFFFF 0%, #FAF9F6 50%, #EBE8E0 100%);
            display: flex;
            align-items: center;
            padding: 120px 0;
            color: var(--petrolio);
            overflow: hidden;
            border-top: 1px solid rgba(15, 86, 101, 0.08);
        }

        .footer-glow {
            position: absolute;
            top: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(218, 130, 27, 0.08) 0%, transparent 70%);
            filter: blur(60px);
            z-index: -1;
            pointer-events: none;
        }

        footer.aura-footer a {
            color: var(--testo-muted);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: inline-flex;
            align-items: center;
        }

        footer.aura-footer a:hover {
            color: var(--oro);
            text-decoration: underline;
            transform: translateX(4px);
        }

        footer.aura-footer h4 {
            font-family: 'Newsreader', 'Georgia', serif;
            font-size: 2rem;
            line-height: 1.25;
            color: var(--petrolio);
            font-style: italic;
            font-weight: 400;
            margin: 20px 0;
        }

        footer.aura-footer h5 {
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.68rem;
            color: var(--oro);
            margin-bottom: 24px;
            font-weight: 800;
        }

        .footer-link-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
            font-size: 0.9rem;
        }

        .footer-bottom-bar {
            margin-top: 80px;
            padding-top: 32px;
            border-top: 1px solid rgba(10, 58, 68, 0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.72rem;
            color: var(--testo-muted);
            letter-spacing: 0.05em;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            footer.aura-footer {
                position: relative !important;
                height: auto !important;
                padding: 60px 24px !important;
                display: block !important;
                z-index: 2;
            }

            .footer-grid {
                grid-template-columns: 1fr !important;
                gap: 48px !important;
                text-align: center;
            }

            .footer-grid>div:first-child {
                grid-column: span 1;
                margin-bottom: 12px;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-link-list {
                padding: 0 !important;
                margin: 0 !important;
                width: 100% !important;
                align-items: center !important;
            }

            .footer-link-list li {
                width: 100% !important;
                padding: 0 !important;
                margin: 0 !important;
                text-align: center !important;
            }

            .footer-link-list a {
                min-height: 44px;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                text-align: center !important;
                width: 100% !important;
                padding: 0 !important;
                margin: 0 !important;
            }

            .footer-bottom-bar {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                margin-top: 48px;
            }
        }
/* --- OURA AESTHETIC FOOTER OVERRIDE (INJECTED) --- */
footer.aura-footer {
            position: relative !important;
            z-index: 10;
            width: 100%;
            height: auto !important;
            background: radial-gradient(circle at 15% 25%, #42403E 0%, #201E1C 100%) !important;
            display: block;
            padding: 96px 0 140px;
            color: #F7F1E8; /* Sandstone text */
            overflow: hidden;
            border-top: 1px solid var(--border-light);
            box-sizing: border-box;
        }

        footer.aura-footer a {
            color: #D1C9BE !important; /* Lighter secondary text */
            text-decoration: none;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            display: inline-flex;
            align-items: center;
        }

        footer.aura-footer a:hover {
            color: var(--brand-gold) !important;
            text-decoration: underline;
            transform: translateX(4px);
        }

        footer.aura-footer h4 {
            font-family: var(--font-serif, 'Newsreader', serif);
            font-size: 1.85rem;
            line-height: 1.25;
            color: #F7F1E8 !important;
            font-style: italic;
            font-weight: 300;
            margin: 18px 0;
            text-shadow: none;
        }

        footer.aura-footer p, footer.aura-footer span, footer.aura-footer div {
            color: #D1C9BE;
        }

        footer.aura-footer h5 {
            text-transform: none;
            font-size: 0.95rem;
            color: #F7F1E8 !important;
            margin-bottom: 24px;
            font-weight: 500;
            font-family: var(--font-body, 'Inter', sans-serif);
        }

        .footer-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
            font-size: 0.85rem;
            font-family: var(--font-body, 'Inter', sans-serif);
        }

        .footer-bottom-bar {
            margin-top: 64px;
            padding-top: 28px;
            border-top: 1px solid rgba(247, 241, 232, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
            color: #9E968B;
            letter-spacing: 0.03em;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            footer.aura-footer {
                padding: 60px 20px 140px !important;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 40px !important;
                text-align: center;
            }

            .footer-grid>div:first-child {
                grid-column: span 2;
                margin-bottom: 12px;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
            font-size: 0.85rem;
            font-family: var(--font-body, 'Inter', sans-serif);
        }

            .footer-link-list li {
                width: 100% !important;
                text-align: center !important;
            }

            .footer-link-list a {
                min-height: 40px;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                text-align: center !important;
                width: 100% !important;
            }

            .footer-bottom-bar {
                flex-direction: column;
                gap: 24px;
                text-align: left;
                align-items: flex-start;
                margin-top: 40px;
            }
        }
    