@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Inter:wght@400;500;600&plus+Jakarta+Sans:wght@500;600;700&display=swap");

:root {
            --navy: #0f172a;
            --amber: #f59e0b;
            --off-white: #faf8f3;
            --light-gray: #f3f1ed;
            --dark-gray: #4b5563;
            --border-light: #e5e3df;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            height: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--navy);
            background-color: var(--off-white);
            line-height: 1.6;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        h1 {
            font-size: 3.5rem;
            line-height: 1.1;
        }

        h2 {
            font-size: 2.5rem;
            line-height: 1.2;
        }

        h3 {
            font-size: 1.5rem;
            line-height: 1.3;
        }

        p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--dark-gray);
        }

        a {
            color: var(--amber);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--navy);
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background-color: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(245, 158, 11, 0.1);
        }

        header nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
        }

        .nav-brand {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .nav-brand-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--off-white);
            letter-spacing: -0.5px;
        }

        .nav-brand-tagline {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            color: var(--amber);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--off-white);
            transition: color 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--amber);
        }

        /* Main Content */
        main {
            margin-top: 80px;
        }

        section {
            padding: 5rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Hero Section */
        #hero {
            position: relative;
            height: 100vh;
            padding: 0;
            margin: 0;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

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

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.2) 50%, transparent 100%);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            padding: 4rem;
            max-width: 600px;
            color: var(--off-white);
        }

        .hero-content h1 {
            margin-bottom: 1rem;
            color: var(--off-white);
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--off-white);
            font-weight: 300;
            line-height: 1.6;
        }

        /* Dining Identity Section */
        #dining_identity {
            background-color: var(--off-white);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .dining-text h2 {
            margin-bottom: 1rem;
            color: var(--navy);
        }

        .dining-text p {
            margin-bottom: 1.5rem;
        }

        .dining-image {
            height: 500px;
            overflow: hidden;
            border-radius: 8px;
        }

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

        /* Venue Scope Section */
        #venue_scope {
            background-color: var(--light-gray);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .venue-image {
            height: 500px;
            overflow: hidden;
            border-radius: 8px;
            order: -1;
        }

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

        .venue-text h2 {
            margin-bottom: 1rem;
            color: var(--navy);
        }

        .venue-text p {
            margin-bottom: 1.5rem;
        }

        /* Visitor Journey Section */
        #visitor_journey {
            background-color: var(--off-white);
        }

        .journey-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .journey-header h2 {
            margin-bottom: 0.5rem;
            color: var(--navy);
        }

        .journey-header p {
            font-size: 1.1rem;
            color: var(--dark-gray);
        }

        .journey-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .journey-card {
            background-color: var(--light-gray);
            padding: 2.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--amber);
        }

        .journey-card h3 {
            margin-bottom: 1rem;
            color: var(--navy);
        }

        .journey-card p {
            color: var(--dark-gray);
        }

        /* Trust Strip */
        #trust_strip {
            background: linear-gradient(90deg, var(--navy) 0%, #1a2847 100%);
            padding: 3rem 2rem;
            margin: 4rem 0;
        }

        .trust-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .trust-item {
            color: var(--off-white);
        }

        .trust-item-number {
            font-family: 'DM Sans', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--amber);
            margin-bottom: 0.5rem;
        }

        .trust-item-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: var(--off-white);
            font-weight: 500;
        }

        /* Contact Section */
        #contact {
            background-color: var(--light-gray);
        }

        .contact-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .contact-header h2 {
            margin-bottom: 0.5rem;
            color: var(--navy);
        }

        .contact-header p {
            font-size: 1.1rem;
            color: var(--dark-gray);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--navy);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            font-family: 'Inter', sans-serif;
            padding: 1rem;
            border: 1px solid var(--border-light);
            border-radius: 6px;
            font-size: 1rem;
            color: var(--navy);
            background-color: var(--off-white);
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--amber);
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .form-submit {
            background-color: var(--amber);
            color: var(--navy);
            padding: 1rem 2rem;
            border: none;
            border-radius: 6px;
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-submit:hover {
            background-color: var(--navy);
            color: var(--amber);
        }

        /* Footer */
        footer {
            background-color: var(--navy);
            color: var(--off-white);
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: var(--amber);
        }

        .footer-section p {
            color: rgba(250, 248, 243, 0.8);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .footer-section a {
            color: var(--amber);
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .footer-section a:hover {
            color: var(--off-white);
        }

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

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

        .footer-bottom {
            border-top: 1px solid rgba(245, 158, 11, 0.2);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(250, 248, 243, 0.7);
        }

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

            h2 {
                font-size: 1.8rem;
            }

            section {
                padding: 3rem 1.5rem;
            }

            #dining_identity,
            #venue_scope {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .venue-image {
                order: 0;
            }

            .nav-links {
                gap: 1.5rem;
            }

            .nav-links a {
                font-size: 0.85rem;
            }

            .hero-content {
                padding: 2rem;
                max-width: 100%;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .dining-image,
            .venue-image {
                height: 300px;
            }

            .trust-container {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            header nav {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }

            .nav-links {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }

            main {
                margin-top: 200px;
            }

            h1 {
                font-size: 1.8rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .journey-grid {
                grid-template-columns: 1fr;
            }
        }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
