:root {
    /* Color Palette */
    --espresso: #0a0a0a;
    --leather: #141414;
    --chocolate: #1f1f1f;
    --matte-black: #050505;
    --gold: #D4AF37;
    --gold-dark: #B38F24;
    --text-primary: rgba(255, 255, 255, 0.9);
    --text-secondary: rgba(255, 255, 255, 0.5);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* =========================================
   EXPERIENCE PAGE (EDITORIAL GRID)
   ========================================= */
.editorial-section {
    padding: 6rem 5%;
    overflow: hidden;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.editorial-image {
    grid-column: 1 / 9;
    grid-row: 1;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 70vh;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-card {
    grid-column: 7 / 13;
    grid-row: 1;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 4rem;
    z-index: 2;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(30px); /* For parallax start position */
}

.card-divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem 0 2rem;
}

.editorial-card h2 {
    font-size: 2.5rem;
}

.editorial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Reverse Layout */
.editorial-reverse .editorial-image {
    grid-column: 5 / 13;
}

.editorial-reverse .editorial-card {
    grid-column: 1 / 7;
}

@media (max-width: 992px) {
    .editorial-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .editorial-image {
        width: 100%;
        height: 50vh;
    }
    
    .editorial-card {
        width: 90%;
        margin: -10vh auto 0; /* Overlap image manually on mobile */
        padding: 2.5rem;
    }
}

/* =========================================
   PRIVATE TABLE PAGE
   ========================================= */
.privilege-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.privilege-card {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 3rem 2rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.privilege-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(20, 20, 20, 0.8);
}

.privilege-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.privilege-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .privilege-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   FORMS & RESERVATIONS
   ========================================= */

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

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    background-color: var(--matte-black);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* WebGL Background */
#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.8; /* Subtle presence */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.5px;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: transform 0.5s ease, background 0.3s ease, padding 0.3s ease;
    background: transparent;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.site-header.scrolled {
    padding: 1rem 5%;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.header-logo {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* Desktop Nav */
.desktop-nav ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.desktop-nav a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.desktop-nav a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.desktop-nav a:hover:not(.btn-nav)::after,
.desktop-nav a.active:not(.btn-nav)::after {
    width: 100%;
}

.desktop-nav a:hover:not(.btn-nav),
.desktop-nav a.active:not(.btn-nav) {
    color: var(--gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn:not(.btn-premium):hover {
    color: #000 !important;
}

.btn-nav {
    padding: 0.6rem 1.5rem;
    border-color: var(--gold);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 2px;
    background-color: var(--gold);
    transition: 0.3s;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--espresso);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    
    .header-logo {
        height: 28px;
        max-width: 75vw;
    }
}

/* Sections */
.monogram-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem auto;
}
.monogram-divider img {
    height: 80px;
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.3));
}

.section {
    padding: 8rem 5%;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 5%;
    }
}

.section-leather {
    background-color: var(--leather);
}

.section-espresso {
    background-color: var(--espresso);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 5%;
    overflow: hidden;
}

/* Dark architectural doorway panels (Curtains) */
.doorway-panel {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: var(--matte-black);
    z-index: 50; /* High enough to cover the section it's inside */
    pointer-events: none;
}
.doorway-panel.left { left: 0; transform-origin: left; }
.doorway-panel.right { right: 0; transform-origin: right; }

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 6rem;
    letter-spacing: 0.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    text-shadow: 0 10px 40px rgba(0,0,0,0.8);
    opacity: 0;
}

.hero h1 img {
    max-width: 85vw;
    max-height: 140px;
    height: auto;
    object-fit: contain;
}

.hero-tagline {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 12px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4rem;
    opacity: 0;
}

.hero-ctas {
    opacity: 0;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    background: transparent;
    padding: 1rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-premium:hover {
    border-color: var(--gold);
    background-color: rgba(10, 10, 10, 0.8);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
    color: #fff;
}

.btn-premium:hover::before {
    left: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    z-index: 10;
}

.scroll-text {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.3);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gold);
    animation: scrollDown 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* Storytelling / Reveal */
.story-section {
    min-height: 100vh;
    padding-top: 15rem; /* Re-added from inline style */
}

.story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (max-width: 900px) {
    .story-section {
        padding-top: 6rem;
    }
    .story-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.story-text h2 {
    color: var(--gold);
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.mask-reveal {
    overflow: hidden;
    position: relative;
}

.mask-reveal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2); /* For GSAP zoom out */
}

/* Menu Preview Grid */
.menu-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    width: 100%;
    height: 600px;
    max-width: 85vw; /* Mobile responsive */
    max-height: 70vh; /* Mobile responsive */
    position: relative;
    background-color: var(--chocolate);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
    .menu-grid-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .menu-card {
        padding: 2rem;
    }
}

.menu-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: var(--transition-smooth);
    z-index: 0;
}

.menu-card:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

.menu-card-content {
    position: relative;
    z-index: 1;
}

.menu-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.menu-card p {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.menu-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

/* Golden Hour Section */
.golden-hour {
    text-align: center;
    padding: 10rem 5%;
    position: relative;
    overflow: hidden;
}

.golden-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.4) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.golden-hour-content {
    position: relative;
    z-index: 1;
}

.golden-hour h2 {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Interactive Cocktail */
.cocktail-interaction {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    gap: 4rem;
}

.cocktail-visual {
    position: relative;
    width: 400px;
    height: 600px;
}

.cocktail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 200px;
    border: 1px solid var(--gold);
}

.cocktail-info {
    max-width: 400px;
}

.cocktail-info h3 {
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ingredient-list {
    margin-top: 2rem;
}

.ingredient-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    opacity: 0; /* GSAP stagger */
}

/* Events Timeline */
.timeline {
    padding: 5rem 0;
}

.event-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    align-items: center;
    transition: var(--transition-smooth);
}

@media (max-width: 768px) {
    .event-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }
}

.event-card:hover {
    background-color: rgba(255,255,255,0.02);
    padding-left: 2rem;
}

.event-date {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 2rem;
}

.event-details h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Gallery Masonry */
.gallery-masonry {
    column-count: 3;
    column-gap: 2rem;
    padding: 2rem 0;
}

@media (max-width: 900px) {
    .gallery-masonry { column-count: 2; }
}
@media (max-width: 600px) {
    .gallery-masonry { column-count: 1; }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.7s ease;
}

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

/* Reservation Multi-step */
.reservation-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--leather);
    padding: 4rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .reservation-container {
        padding: 2rem 1.5rem;
    }
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    z-index: 1;
}

.step-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--espresso);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.step-dot.active {
    background: var(--gold);
    color: var(--matte-black);
    border-color: var(--gold);
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.form-control {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

/* Menu Page Filters */
.menu-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.menu-category {
    scroll-margin-top: 120px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Footer */
.site-footer {
    background-color: var(--matte-black);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 5rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.footer-col p, .footer-col a {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: block;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Utility */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }

/* Promotional Modal */
.quick-lead-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.quick-lead-modal.show {
    display: flex;
    opacity: 1;
}

.quick-lead-modal-content {
    background-color: var(--bg-dark);
    border: 1px solid var(--gold);
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.quick-lead-modal.show .quick-lead-modal-content {
    transform: translateY(0);
}

.quick-lead-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--gold);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.quick-lead-modal-close:hover {
    color: #fff;
}

.quick-lead-modal-content img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid var(--gold);
}

.quick-lead-modal-text {
    padding: 2rem;
}

.quick-lead-modal-text h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.quick-lead-modal-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.quick-lead-modal-text a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.quick-lead-modal-text a:hover {
    color: #fff;
}
