/* --- VARIABLES --- */
        :root {
            --primary: #C81D25; /* Menu red */
            --primary-hover: #a3171d;
            --uber-green: #06C167;
            --secondary: #F4C45E; /* Gold Icon Color */
            --bg-cream: #FBF9F4; /* Warmer Cream Background */
            --footer-bg: #262321; /* Dark Brown Footer */
            --text-dark: #222222;
            --text-grey: #666666;
            --white: #ffffff;
            --radius-btn: 50px;
            --radius-card: 16px;
        }

        /* --- BASE --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'DM Sans', sans-serif;
            background-color: var(--bg-cream);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            /* Subtle cross pattern */
            background-image: radial-gradient(#E5E0D8 1.5px, transparent 1.5px);
            background-size: 32px 32px;
        }

        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--text-dark); }
        a { text-decoration: none; transition: 0.3s ease; }
        
        /* --- HEADER --- */
        header {
            background: var(--white);
            height: 80px;
            padding: 0 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.03);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--text-dark);
        }
        .logo-container span { color: var(--primary); }
        .logo-img {
            display: none;
        }
        .logo-type {
            text-align: center;
            display: inline-block;
            line-height: 1;
        }
        .logo-type .main {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: var(--primary);
            letter-spacing: 4px;
            line-height: 1;
        }
        .logo-type .sub {
            font-family: 'Josefin Sans', sans-serif;
            font-size: 0.7rem;
            font-weight: 300;
            color: var(--primary);
            letter-spacing: 4px;
            text-transform: uppercase;
            margin: 4px 0 2px;
        }
        .logo-type .divider-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 4px 0 0;
        }
        .logo-type .divider-row span { flex: 1; height: 1px; background: var(--primary); }
        .logo-type .divider-row em {
            font-style: normal;
            font-size: 0.55rem;
            font-family: 'Josefin Sans', sans-serif;
            letter-spacing: 3px;
            color: var(--primary);
        }

        /* Style the user provided SVG */
        .logo-icon { display: none; }

        .nav-links { display: flex; gap: 30px; }
        .nav-links a { color: var(--text-dark); font-weight: 500; font-size: 0.95rem; }
        .nav-links a:hover { color: var(--primary); }

        .btn-header {
            background: var(--primary);
            color: white;
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 0.9rem;
        }
        .btn-header:hover { background: var(--primary-hover); transform: translateY(-1px); }

        /* --- HERO --- */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding: 80px 5% 120px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, rgba(26,26,26,0.65) 0%, rgba(26,26,26,0.6) 100%),
                url('../img/hero-optimized.jpg') center/cover no-repeat;
        }

        .hero::before,
        .hero::after {
            content: none;
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr;
            align-items: center;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero-text {
            position: relative;
            max-width: 720px;
            margin: 0 auto;
        }

        .hero-deco {
            font-family: 'Dancing Script', cursive;
            color: #f6e5c8;
            font-size: 2.4rem;
            margin-bottom: 8px;
        }

        .est-badge {
            background: var(--primary);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 20px;
            letter-spacing: 1px;
            margin-bottom: 25px;
            text-transform: uppercase;
        }

        .hero h1 {
            font-size: 5.2rem;
            line-height: 1.02;
            margin-bottom: 18px;
            color: #ffffff;
            letter-spacing: -1px;
        }
        .hero h1 span { color: #f6e5c8; display: block; }

        .hero-stamp {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            border: 2px solid rgba(239,79,51,0.5);
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 16px;
            background: rgba(255,255,255,0.6);
        }


        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 40px;
            color: rgba(255,255,255,0.85);
            font-weight: 400;
        }

        .hero-btns { display: flex; gap: 15px; }
        .btn-hero {
            padding: 15px 35px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            border: none;
        }
        .btn-primary { background: var(--primary); color: white; }
        .btn-primary:hover { background: var(--primary-hover); }
        
        .btn-outline {
            background: rgba(255,255,255,0.18);
            color: #ffffff;
            border: 1px solid rgba(255,255,255,0.35);
            display: flex; align-items: center; gap: 8px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.18);
        }
        .btn-outline:hover { background: rgba(255,255,255,0.28); }

        .hero-subline {
            font-size: 1rem;
            color: var(--text-grey);
            max-width: 520px;
            margin-top: 18px;
        }

        .hero-highlight {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            background: rgba(255,255,255,0.16);
            border-radius: 999px;
            color: #ffffff;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .hero-cta-stack {
            margin-top: 26px;
            display: grid;
            gap: 14px;
            max-width: 420px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .hero-note {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
        }

        .hero-illustration {
            display: none;
        }

        /* --- INFO CARDS --- */
        .info-cards-container {
            max-width: 1200px;
            margin: -60px auto 0;
            padding: 0 5%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 10;
        }

        .info-card {
            background: var(--white);
            padding: 40px 20px;
            border-radius: var(--radius-card);
            text-align: center;
            box-shadow: 0 15px 40px rgba(0,0,0,0.06);
            display: flex; flex-direction: column; align-items: center;
        }

        .icon-circle {
            width: 50px; height: 50px;
            background: #FDF2EE;
            color: var(--primary);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        /* --- ABOUT --- */
        .section { padding: 70px 5%; max-width: 1200px; margin: 0 auto; }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text .script-text {
            font-family: 'Dancing Script', cursive;
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
        }

        .about-text h2 { font-size: 3rem; line-height: 1.1; margin-bottom: 25px; }
        .about-text p { color: var(--text-grey); margin-bottom: 20px; font-size: 1.05rem; }
        
        .read-more {
            color: var(--primary);
            font-weight: 700;
            display: inline-flex; align-items: center; gap: 8px;
        }

        .about-img-container { position: relative; }
        .blob-bg {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: #F8EFE3;
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            z-index: -1; transform: rotate(-3deg) scale(1.05);
        }
        .about-img { width: 100%; border-radius: 20px; display: block; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
        
        .review-box {
            position: absolute; bottom: 30px; right: -20px;
            background: white; padding: 20px 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* --- MENU --- */
        .text-center { text-align: center; margin-bottom: 36px; }
        .menu-viewer-container {
            background: var(--white);
            border-radius: 10px;
            padding: 10px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.05);
            position: relative;
            margin-top: 40px;
        }

        .book-spine {
            position: absolute;
            left: 50%; top: 0; bottom: 0;
            width: 40px;
            margin-left: -20px;
            background: linear-gradient(90deg,
                rgba(0,0,0,0.05) 0%,
                rgba(0,0,0,0.15) 35%,
                rgba(0,0,0,0.05) 50%,
                rgba(0,0,0,0.15) 65%,
                rgba(0,0,0,0.05) 100%);
            z-index: 10;
            pointer-events: none;
        }

        .menu-img-wrapper {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: auto;
        }

        .menu-slide {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: none;
        }
        .menu-slide.active { display: block; }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px; height: 40px;
            background: var(--white);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            color: var(--text-dark);
            z-index: 20;
            border: none;
        }
        .slider-prev { left: -20px; }
        .slider-next { right: -20px; }

        .dots-container {
            display: flex; justify-content: center; gap: 8px; margin-top: 20px;
        }
        .dot { width: 10px; height: 10px; background: #ddd; border-radius: 50%; cursor: pointer; }
        .dot.active { background: var(--primary); }

        .download-link {
            text-align: center; margin-top: 20px; font-size: 0.9rem; color: #888; text-decoration: underline; display: block;
        }

        /* --- GALLERY GRID --- */
        .gallery-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px;
        }
        .gallery-item img {
            width: 100%; height: 250px; object-fit: cover; border-radius: 12px;
            transition: 0.3s;
        }
        .gallery-item img:hover { transform: scale(1.03); }

        /* --- EXTRA INFO --- */
        .info-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 50px;
        }
        .info-card-wide {
            background: var(--white);
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.06);
            border: 1px solid #efe6db;
        }
        .info-card-wide h3 { margin-bottom: 10px; }
        .info-card-wide p { color: var(--text-grey); margin-bottom: 12px; }
        .info-card-wide .chips {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .info-card-wide .chip {
            background: #fff5f1;
            color: var(--primary);
            border: 1px solid #f3d7cf;
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* --- BIG CTA CARD --- */
        .cta-section { padding: 32px 5% 64px; }
        .cta-card {
            background: var(--white);
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            padding: 80px 40px;
            border-radius: 20px;
            border-top: 8px solid var(--primary); /* The Orange Border */
            box-shadow: 0 30px 80px rgba(0,0,0,0.08);
            position: relative;
            z-index: 5;
        }

        .cta-card h2 { font-size: 3rem; margin-bottom: 20px; }
        .cta-card p { max-width: 500px; margin: 0 auto 40px; color: var(--text-grey); }

        .cta-btn-group { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .cta-button {
            padding: 16px 32px;
            border-radius: 8px; /* Slightly squared like screenshot */
            color: white; font-weight: 700; display: flex; align-items: center; gap: 10px;
            transition: 0.2s;
        }
        .cta-button:hover { transform: translateY(-3px); opacity: 0.95; }
        .dd-btn { background: var(--primary); }
        .uber-btn { background: var(--uber-green); }

        /* --- FOOTER --- */
        footer {
            background-color: var(--footer-bg);
            color: #9CA3AF;
            padding: 80px 5% 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr 1.2fr;
            gap: 60px;
        }

        .footer-logo {
            display: flex; align-items: center; gap: 10px;
            font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
            color: white; margin-bottom: 20px;
        }
        .footer-logo span { color: var(--primary); }
        .footer-logo .logo-type .main { color: #fff; }
        .footer-logo .logo-type .sub { color: #fff; }
        .footer-logo .logo-type .divider-row span { background: #fff; }
        .footer-logo .logo-type .divider-row em { color: #fff; }
        
        /* The specific SVG styling */
        .footer-svg {
            color: var(--secondary); /* Gold Color */
            width: 32px; height: 32px;
            transform: rotate(-15deg);
        }

        .socials { display: flex; gap: 10px; margin-top: 25px; }
        .social-icon {
            width: 40px; height: 40px; background: #383533; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; color: white;
            transition: 0.3s;
        }
        .social-icon:hover { background: var(--primary); }

        .footer-col h3 { color: white; margin-bottom: 25px; font-size: 1.1rem; }
        .contact-row { display: flex; gap: 15px; margin-bottom: 20px; }
        .contact-icon { color: var(--primary); margin-top: 5px; }

        .map-wrapper {
            position: relative; border-radius: 12px; overflow: hidden; height: 160px;
            background: #333;
        }
        .map-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
        .btn-directions {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            background: white; color: var(--text-dark);
            padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: 0.85rem;
        }

        .copyright {
            max-width: 1200px; margin: 60px auto 0; padding-top: 30px;
            border-top: 1px solid #383533; text-align: center; font-size: 0.9rem;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {
            .info-cards-container { grid-template-columns: 1fr; margin-top: 30px; }
            .about-grid, .footer-content { grid-template-columns: 1fr; gap: 40px; }
            .hero-inner { grid-template-columns: 1fr; text-align: center; }
            .hero h1 { font-size: 3.5rem; }
            .nav-links { display: none; }
            .hero-btns { justify-content: center; }
            .hero-subline { margin-left: auto; margin-right: auto; }
            .hero-cta-stack { margin-left: auto; margin-right: auto; }
            .info-split { grid-template-columns: 1fr; }
        }

