
    /* -----------------------------------------------------------
        1. CORE VARIABLES & RESET
        ----------------------------------------------------------- */
    :root {
        /* Palette */
        --color-cream: #F4F1EA;
        --color-cream-dark: #836338;
        --color-charcoal: #121212;
        --color-charcoal-light: #1E1E1E;
        --color-gold: #BFA06D;
        --color-gold-hover: #D4B88C;
        --color-text-body: #4A4A4A;
        --color-white: #FFFFFF;
        
        /* Typography */
        --font-serif: 'Cormorant Garamond', serif;
        --font-sans: 'Montserrat', sans-serif;
        --font-script: 'Pinyon Script', cursive;
        
        /* Spacing */
        --spacing-xs: 0.5rem;
        --spacing-sm: 1rem;
        --spacing-md: 2rem;
        --spacing-lg: 4rem;
        --spacing-xl: 8rem;
        --container-width: 1440px;
        
        /* Transitions */
        --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
        --transition-slow: 0.8s var(--ease-out-expo);
        --transition-fast: 0.3s ease;
    }

    *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        font-size: 16px;
        scroll-behavior: smooth;
    }

    body {
        background-color: var(--color-cream);
        color: var(--color-charcoal);
        font-family: var(--font-sans);
        line-height: 1.7;
        overflow-x: hidden;
    }

    /* -----------------------------------------------------------
        2. TYPOGRAPHY SYSTEM
        ----------------------------------------------------------- */
    h1, h2, h3, h4, h5 {
        font-family: var(--font-serif);
        font-weight: 400;
        line-height: 1.1;
        color: var(--color-charcoal);
    }

    .display-text {
        font-size: clamp(2.5rem, 5vw, 6rem);
        letter-spacing: -1px;
        line-height: 1.05;
    }

    .script-text {
        font-family: var(--font-script);
        color: var(--color-gold);
        font-weight: 400;
        font-size: clamp(3rem, 6vw, 7rem);
        display: block;
    }

    .subtitle {
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--color-gold);
        display: block;
        margin-bottom: var(--spacing-sm);
    }

    p {
        color: var(--color-text-body);
        font-weight: 300;
        margin-bottom: var(--spacing-sm);
    }

    a {
        color: inherit;
        text-decoration: none;
        transition: var(--transition-fast);
    }

    /* -----------------------------------------------------------
        3. UI COMPONENTS
        ----------------------------------------------------------- */
    
    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1.2rem 3rem;
        border: 1px solid var(--color-charcoal);
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 2px;
        font-weight: 500;
        position: relative;
        overflow: hidden;
        transition: color 0.4s ease;
        cursor: pointer;
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--color-charcoal);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s var(--ease-out-expo);
        z-index: -1;
    }

    .btn:hover {
        color: var(--color-cream);
    }

    .btn:hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .btn-gold {
        border-color: var(--color-gold);
        color: var(--color-gold);
    }
    .btn-gold::before { background-color: var(--color-gold); }
    .btn-gold:hover { color: var(--color-white); }

    /* Loader */
    .loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-cream);
        z-index: 10000;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transition: opacity 0.8s ease;
    }
    
    .loader.hidden {
        opacity: 0;
        pointer-events: none;
    }

    .loader-logo {
        font-family: var(--font-serif);
        font-size: 2rem;
        overflow: hidden;
    }

    .loader-line {
        width: 0;
        height: 2px;
        background: var(--color-gold);
        margin-top: 20px;
        animation: loadLine 1.5s ease forwards;
    }

    @keyframes loadLine {
        to { width: 100px; }
    }

    /* -----------------------------------------------------------
        4. MODALS - NEW ADDITIONS
        ----------------------------------------------------------- */
    
    /* Promotions Modal */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(18, 18, 18, 0.85);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
    }

    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .promo-modal {
        background: var(--color-cream);
        max-width: 500px;
        width: 90%;
        border-radius: 10px;
        overflow: hidden;
        transform: translateY(30px) scale(0.95);
        opacity: 0;
        transition: transform 0.6s var(--ease-out-expo) 0.2s, opacity 0.6s ease 0.2s;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    }

    .modal-overlay.active .promo-modal {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    .promo-header {
        background: var(--color-charcoal);
        color: var(--color-white);
        padding: 2rem;
        text-align: center;
        position: relative;
    }

    .promo-header h3 {
        color: var(--color-white);
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .promo-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        color: var(--color-white);
        font-size: 1.5rem;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
    }

    .promo-close:hover {
        color: var(--color-gold);
    }

    .promo-content {
        padding: 2.5rem;
        text-align: center;
    }

    .promo-icon {
        font-size: 3rem;
        color: var(--color-gold);
        margin-bottom: 1.5rem;
    }

    .promo-code {
        background: var(--color-white);
        border: 2px dashed var(--color-gold);
        padding: 1rem 2rem;
        font-family: var(--font-serif);
        font-size: 1.8rem;
        color: var(--color-charcoal);
        margin: 1.5rem 0;
        display: inline-block;
        letter-spacing: 2px;
    }

    /* Subscribe Modal (Bottom Right) */
    .subscribe-modal {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        width: 350px;
        background: var(--color-white);
        border-radius: 8px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        z-index: 9998;
        transform: translateX(120%) scale(0.9);
        opacity: 0;
        transition: transform 0.6s var(--ease-out-expo), opacity 0.4s ease;
        border: 1px solid var(--color-cream-dark);
        overflow: hidden;
    }

    .subscribe-modal.active {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    .subscribe-header {
        background: var(--color-charcoal);
        color: var(--color-white);
        padding: 1.5rem;
        position: relative;
    }

    .subscribe-header h4 {
        color: var(--color-white);
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .subscribe-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        color: var(--color-white);
        font-size: 1.2rem;
        cursor: pointer;
        width: 25px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
    }

    .subscribe-close:hover {
        color: var(--color-gold);
    }

    .subscribe-content {
        padding: 2rem;
    }

    .subscribe-form {
        margin-top: 1rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
        color: var(--color-text-body);
        font-weight: 500;
    }

    .form-control {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 1px solid var(--color-cream-dark);
        background: var(--color-white);
        font-family: var(--font-sans);
        font-size: 0.9rem;
        transition: border-color 0.3s ease;
    }

    .form-control:focus {
        outline: none;
        border-color: var(--color-gold);
    }

    .form-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .form-checkbox input {
        margin-top: 0.2rem;
    }

    .form-checkbox label {
        font-size: 0.75rem;
        line-height: 1.4;
        color: var(--color-text-body);
        text-transform: none;
        letter-spacing: 0;
    }

    .subscribe-btn {
        width: 100%;
        padding: 1rem;
        background: var(--color-charcoal);
        color: var(--color-white);
        border: none;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.8rem;
        font-weight: 500;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .subscribe-btn:hover {
        background: var(--color-gold);
    }

    /* Mobile adjustments for modals */
    @media (max-width: 768px) {
        .promo-modal {
            width: 95%;
            max-width: 95%;
        }
        
        .subscribe-modal {
            width: 90%;
            right: 5%;
            bottom: 1rem;
            left: 5%;
            transform: translateY(120%) scale(0.9);
        }
        
        .subscribe-modal.active {
            transform: translateY(0) scale(1);
        }
    }

    /* -----------------------------------------------------------
        5. LAYOUT & SECTIONS
        ----------------------------------------------------------- */
    
    /* Navigation - MOBILE FRIENDLY */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: var(--spacing-md) var(--spacing-lg);
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 500;
        transition: all 0.4s ease;
        background: var(--color-white);
        color: var(--color-charcoal);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .navbar.scrolled {
        background: var(--color-white);
        padding: 1rem var(--spacing-lg);
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .logo {
        font-family: var(--font-serif);
        font-size: 2rem;
        line-height: 1;
        color: var(--color-charcoal);
        z-index: 1001;
    }
    .logo span {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.5rem;
        letter-spacing: 2px;
        margin-top: 5px;
        color: var(--color-text-body);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .logo-sub {
        display: inline-flex;
        gap: 4px;
    }
    .logo .logo-secondary {
        display: block;
        font-family: var(--font-script);
        font-size: 1.1rem;
        letter-spacing: 2px;
        margin-top: 5px;
        color: var(--color-text-body);
    }

    .nav-links {
        display: flex;
        gap: 3rem;
        align-items: center;
    }

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--color-white);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            transform: translateX(100%);
            transition: transform 0.4s var(--ease-out-expo);
            z-index: 1000;
        }
        
        .nav-links.active {
            transform: translateX(0);
        }
    }

    .nav-link {
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 1px;
        font-weight: 500;
        position: relative;
        color: var(--color-charcoal);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--color-gold);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after { width: 100%; }

    /* Burger Menu */
    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .burger-menu span {
        display: block;
        height: 3px;
        width: 100%;
        background: var(--color-charcoal);
        transition: all 0.3s ease;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    @media (max-width: 768px) {
        .burger-menu {
            display: flex;
        }
    }

    /* Hero - UPDATED WITH SIDE IMAGE */
    .hero {
        min-height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        background: var(--color-white);
        padding: 120px 5% 5%;
        overflow: hidden;
    }

    @media (max-width: 768px) {
        .hero {
            padding: 100px 5% 5%;
            min-height: auto;
        }
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        max-width: var(--container-width);
        margin: 0 auto;
        width: 100%;
        align-items: center;
    }

    @media (max-width: 1024px) {
        .hero-container {
            gap: 3rem;
        }
    }

    @media (max-width: 768px) {
        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 3rem;
        }
    }

    .hero-content {
        position: relative;
    }

    .hero-badge {
        display: inline-block;
        border: 1px solid var(--color-gold);
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 2rem;
        background: var(--color-white);
        color: var(--color-gold);
    }

    .hero-image {
        position: relative;
        height: 500px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 20px 20px 40px rgba(0,0,0,0.1);
    }

    @media (max-width: 1024px) {
        .hero-image {
            height: 400px;
        }
    }

    @media (max-width: 768px) {
        .hero-image {
            height: 300px;
            order: -1;
        }
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .hero-image:hover img {
        transform: scale(1.05);
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    @media (max-width: 768px) {
        .hero-buttons {
            justify-content: center;
        }
    }

    /* About / Philosophy Section */
    .about-section {
        padding: var(--spacing-xl) 5%;
        background: var(--color-cream);
    }

    .grid-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
        align-items: center;
        max-width: var(--container-width);
        margin: 0 auto;
    }

    @media (max-width: 768px) {
        .grid-split {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
    }

    .about-text {
        padding-right: var(--spacing-md);
    }

    @media (max-width: 768px) {
        .about-text {
            padding-right: 0;
        }
    }

    .blockquote {
        border-left: 2px solid var(--color-gold);
        padding-left: 2rem;
        margin: 2rem 0;
        font-family: var(--font-serif);
        font-size: clamp(1.2rem, 2vw, 1.5rem);
        font-style: italic;
        color: var(--color-charcoal-light);
    }

    @media (max-width: 768px) {
        .blockquote {
            padding-left: 1rem;
            font-size: 1.3rem;
        }
    }

    .about-img-wrapper {
        position: relative;
        height: 600px;
    }

    @media (max-width: 1024px) {
        .about-img-wrapper {
            height: 500px;
        }
    }

    @media (max-width: 768px) {
        .about-img-wrapper {
            height: 400px;
        }
    }

    .about-img {
        position: absolute;
        object-fit: cover;
        width: 85%;
        height: 85%;
        transition: transform 0.5s ease;
    }

    .about-img.main {
        top: 0;
        left: 0;
        z-index: 1;
    }

    .about-img.secondary {
        bottom: 0;
        right: 0;
        width: 50%;
        height: 50%;
        z-index: 2;
        border: 10px solid var(--color-cream);
    }

    /* -----------------------------------------------------------
        7. TABBED MENU SECTION (Core Feature)
        ----------------------------------------------------------- */
    .section-menu {
        padding: var(--spacing-xl) 0;
        background: #fff;
        padding-bottom: 4rem;
    }

    .menu-header {
        text-align: center;
        margin-bottom: 3rem;
        padding-top: 4rem;
    }

    /* Tab Controls */
    .tab-controls {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 4rem;
        border-bottom: 1px solid var(--color-cream-dark);
        padding-bottom: 1rem;
        flex-wrap: wrap;
    }

    @media (max-width: 768px) {
        .tab-controls {
            gap: 1rem;
            justify-content: space-around;
        }
        
        .tab-btn {
            flex: 1;
            min-width: 140px;
            padding: 0.8rem 0.5rem;
            font-size: 0.8rem;
        }
    }

    @media (max-width: 480px) {
        .tab-btn {
            min-width: 120px;
            font-size: 0.7rem;
            padding: 0.7rem 0.3rem;
        }
    }

    .tab-btn {
        background: none;
        border: none;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--color-text-body);
        cursor: pointer;
        padding: 1rem;
        position: relative;
        transition: color 0.3s;
    }

    .tab-btn.active {
        color: var(--color-charcoal);
        font-weight: 600;
    }

    .tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -17px;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--color-gold);
    }

    /* Tab Content Area */
    .tab-content {
        display: none;
        animation: fadeIn 0.6s ease;
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 0 5%;
    }

    .tab-content.active {
        display: block;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Grid for Menu Items */
    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }

    @media (max-width: 768px) {
        .menu-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }
    }

    @media (max-width: 480px) {
        .menu-grid {
            grid-template-columns: 1fr;
        }
    }

    .menu-item {
        cursor: pointer;
    }

    .menu-img-wrap {
        height: 300px;
        overflow: hidden;
        margin-bottom: 1.5rem;
        position: relative;
        border-radius: 10px;
    }

    @media (max-width: 768px) {
        .menu-img-wrap {
            height: 250px;
        }
    }

    .menu-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .menu-item:hover .menu-img-wrap img {
        transform: scale(1.05);
    }

    .price-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: #fff;
        padding: 5px 10px;
        font-size: 0.8rem;
        font-weight: 600;
        border-radius: 4px;
    }
    .item-price {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        color: var(--color-cream-dark);
        font-weight: 600;
        margin-left: 1rem;
        white-space: nowrap;
    }

    .item-details h4 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        display: flex;
        justify-content: space-between;
        align-items: baseline;
    }

    @media (max-width: 768px) {
        .item-details h4 {
            font-size: 1.3rem;
        }
    }

    .item-details p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Founders Section */
    .founders-section {
        background-color: var(--color-charcoal);
        color: var(--color-cream);
        padding: var(--spacing-xl) 5%;
        text-align: center;
    }

    .founders-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 4rem;
        max-width: var(--container-width);
        margin: 4rem auto 0;
    }

    @media (max-width: 768px) {
        .founders-grid {
            gap: 2rem;
            grid-template-columns: 1fr;
        }
    }

    .founder-card {
        text-align: center;
        padding: 3rem 2rem;
        border: 1px solid rgba(255,255,255,0.1);
        background: rgba(255,255,255,0.02);
        transition: transform 0.3s ease;
        border-radius: 10px;
    }

    @media (max-width: 768px) {
        .founder-card {
            padding: 2rem 1.5rem;
        }
    }

    .founder-card:hover {
        transform: translateY(-10px);
        border-color: var(--color-gold);
    }
    /* Location / Info Section */
    .info-section {
        background: var(--color-cream);
        padding: var(--spacing-xl) 5%;
    }

    .info-wrapper {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
        max-width: var(--container-width);
        margin: 0 auto;
    }

    @media (max-width: 1024px) {
        .info-wrapper {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
    }

    .hours-card {
        background: var(--color-white);
        padding: 3rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        position: relative;
        border-radius: 10px;
    }

    @media (max-width: 768px) {
        .hours-card {
            padding: 2rem;
        }
    }

    .hours-card::before {
        content: '';
        position: absolute;
        top: 10px; left: 10px; right: 10px; bottom: 10px;
        border: 1px solid var(--color-cream-dark);
        pointer-events: none;
        border-radius: 10px;
    }

    .schedule-row {
        display: flex;
        justify-content: space-between;
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-cream-dark);
    }
    .schedule-row:last-child { border: none; }
    
    .day-name { font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }
    .day-time { font-family: var(--font-serif); font-size: 1.1rem; }

    .location-text h3 { 
        font-size: clamp(2rem, 4vw, 3rem); 
        margin-bottom: 1.5rem; 
        line-height: 1.2;
    }

    .map-placeholder {
        width: 100%;
        height: 300px;
        margin-top: 2rem;
        border-radius: 10px;
        overflow: hidden; /* CRITICAL */
        background: #e0e0e0;
    }

    .map-placeholder iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(100%);
    }
    .map-placeholder::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.4);
        pointer-events: none;
    }

    .map-placeholder {
        position: relative;
    }


    /* Footer */
    footer {
        background-color: #000;
        color: #888;
        padding: 5rem 5%;
        font-size: 0.85rem;
    }

    @media (max-width: 768px) {
        footer {
            padding: 3rem 5%;
        }
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
        max-width: var(--container-width);
        margin: 0 auto;
        border-bottom: 1px solid #222;
        padding-bottom: 4rem;
    }

    @media (max-width: 1024px) {
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 2rem;
            padding-bottom: 3rem;
        }
    }

    .footer-brand h2 { color: var(--color-white); margin-bottom: 1rem; }
    .footer-col h4 { color: var(--color-white); text-transform: uppercase; margin-bottom: 1.5rem; letter-spacing: 1px; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 0.8rem; }
    .footer-col a:hover { color: var(--color-gold); }

    .newsletter-form {
        display: flex;
        border-bottom: 1px solid #444;
        padding-bottom: 0.5rem;
        margin-top: 1rem;
    }

    @media (max-width: 768px) {
        .newsletter-form {
            justify-content: center;
        }
    }

    .newsletter-form input {
        background: none;
        border: none;
        color: white;
        width: 100%;
        outline: none;
        font-family: var(--font-sans);
        padding: 0.5rem 0;
    }

    .newsletter-form button {
        background: none;
        border: none;
        color: var(--color-gold);
        text-transform: uppercase;
        font-size: 0.7rem;
        cursor: pointer;
        white-space: nowrap;
    }

    .footer-bottom {
        max-width: var(--container-width);
        margin: 2rem auto 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    @media (max-width: 768px) {
        .footer-bottom {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
    }

    /* -----------------------------------------------------------
        6. UTILITY CLASSES (Reveals)
        ----------------------------------------------------------- */
    /* .reveal-up {
        opacity: 0;
        transform: translateY(40px);
        transition: all 1s var(--ease-out-expo);
    }
    
    .reveal-up.active {
        opacity: 1;
        transform: translateY(0);
    } */

/* -----------------------------------------------------------
    8. FOUNDER IMAGES
    ----------------------------------------------------------- */
.founder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--color-gold);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

/* Remove the old founder-icon styles if they exist */
.founder-icon {
    display: none;
}

/* -----------------------------------------------------------
    9. CONTACT LINKS
    ----------------------------------------------------------- */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* -----------------------------------------------------------
    10. HERO BUTTONS UPDATES
    ----------------------------------------------------------- */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        flex: 1;
        min-width: 200px;
        text-align: center;
    }
}

/* -----------------------------------------------------------
    11. MENU SECTION UPDATES
    ----------------------------------------------------------- */
.menu-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.tab-controls {
    justify-content: center;
    flex-wrap: wrap;
}

.tab-content .btn {
    margin-top: 2rem;
}