:root {
            --dark: #121212;
            --dark-soft: #1a1a1a;
            --gold: #d4af37;
            --gold-soft: rgba(212, 175, 55, 0.15);
            --red: #e63946;
            --white: #ffffff;
            --gray: #1f1f1f;
            --muted: #c8c8c8;
            --border: rgba(212, 175, 55, 0.2);
            --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--dark);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        a {
            color: inherit;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            padding: 10px 3.5%;
            background: rgba(18, 18, 18, 0.94);
            backdrop-filter: blur(14px);
            position: fixed;
            inset: 0 0 auto 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }

        .brand {
            display: inline-flex;
            align-items: center;
        }

        .brand img {
            width: 135px;
            height: auto;
        }

        .nav-links {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 8px;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.92rem;
            letter-spacing: 0.03em;
            padding: 8px 12px;
            border-radius: 999px;
            transition: background-color 0.3s, color 0.3s, transform 0.3s;
        }

        .nav-links a:hover,
        .nav-links a:focus-visible {
            color: var(--gold);
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-1px);
        }

        .language-selector {
            position: relative;
        }

        .translate-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .translate-btn img {
            width: 24px;
            height: 24px;
        }

        .language-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--dark-soft);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 8px 0;
            min-width: 120px;
            z-index: 1001;
        }

        .language-dropdown a {
            display: block;
            padding: 8px 16px;
            color: var(--white);
            text-decoration: none;
        }

        .language-dropdown a:hover {
            background: var(--gold-soft);
            color: var(--gold);
        }

        .hero {
            min-height: 100vh;
            background:
                linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.72)),
                url('images/tudors-pizza-split-cover.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 140px 20px 90px;
        }

        .hero-inner {
            max-width: 760px;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.9rem, 8vw, 5rem);
            line-height: 1.05;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: clamp(1rem, 2.6vw, 1.2rem);
            max-width: 640px;
            margin: 0 auto 2rem;
            font-weight: 300;
            color: #efefef;
        }

        .hero-actions {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px;
        }

        .btn,
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 52px;
            padding: 14px 28px;
            text-decoration: none;
            font-weight: 700;
            border-radius: 999px;
            transition: transform 0.3s, background-color 0.3s, border-color 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            text-align: center;
        }

        .btn {
            background-color: var(--red);
            color: var(--white);
        }

        .btn:hover,
        .btn:focus-visible {
            transform: translateY(-2px);
            background-color: #c42f3b;
        }

        .btn-secondary {
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.22);
            background: rgba(255, 255, 255, 0.05);
        }

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

        section {
            scroll-margin-top: 110px;
        }

        .about,
        .gallery,
        .reviews,
        .location,
        .drinks {
            padding: 88px 5%;
        }

        .about {
            background: var(--gray);
        }

        .about-container {
            display: grid;
            grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
            gap: 50px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .location-container {
            display: grid;
            grid-template-columns: minmax(320px, 0.92fr) minmax(380px, 1.08fr);
            gap: 40px;
            align-items: stretch;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-image img,
        .map,
        .travel-links,
        .status-card {
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .about-image img {
            width: 100%;
            height: 680px;
            object-fit: cover;
            object-position: center top;
            background: #111;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.1rem, 4vw, 2.8rem);
            color: var(--gold);
            margin-bottom: 22px;
        }

        .about-content h3,
        .location-info h3,
        .drinks-content h3 {
            color: var(--gold);
            font-size: 1.7rem;
            margin-bottom: 18px;
            font-family: 'Playfair Display', serif;
        }

        .about-content p,
        .location-info p,
        .travel-links p,
        .status-card p,
        .drinks-content p {
            color: var(--muted);
        }

        .about-content p + p,
        .location-info > div + div {
            margin-top: 16px;
        }

        .gallery {
            background: var(--dark);
        }

        .local-guide {
            background: #171717;
            padding: 72px 5%;
        }

        .local-guide-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .local-guide-container p {
            color: var(--muted);
            font-size: 1.03rem;
            max-width: 780px;
        }

        .local-guide-container p + p {
            margin-top: 14px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 14px;
            height: 250px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

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

        .reviews {
            background:
                linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)),
                url('images/tudors-restaurant-split.jpeg');
            background-size: cover;
            background-position: center;
        }

        .reviews-shell {
            max-width: 1200px;
            margin: 0 auto;
        }

        .reviews-container {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
            margin-bottom: 28px;
        }

        .review-card {
            background: rgba(31, 31, 31, 0.92);
            padding: 28px;
            border-radius: 18px;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .stars {
            color: var(--gold);
            font-size: 1.45rem;
            margin-bottom: 14px;
            letter-spacing: 0.06em;
        }

        .review-card p {
            font-style: italic;
            margin-bottom: 18px;
            color: #ddd;
        }

        .reviewer strong {
            color: var(--gold);
            display: block;
        }

        .reviewer span,
        .rating-text {
            font-size: 0.92rem;
            color: #aaa;
        }

        .google-rating {
            text-align: center;
        }

        .rating-score {
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold);
            display: block;
            line-height: 1;
            margin-bottom: 6px;
        }

        .review-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 18px;
            min-height: 48px;
            padding: 12px 22px;
            border-radius: 8px;
            background: var(--red);
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
        }

        .review-link:hover,
        .review-link:focus-visible {
            background: #c42f3b;
        }

        .location {
            background: var(--gray);
        }

        .location-container {
            align-items: stretch;
            grid-template-columns: minmax(320px, 0.92fr) minmax(380px, 1.08fr);
        }

        .location-copy {
            display: grid;
            gap: 22px;
            align-content: start;
        }

        .status-card,
        .travel-links {
            background: var(--dark-soft);
            border: 1px solid var(--border);
            padding: 22px;
        }

        .status-card strong,
        .location-info strong,
        .travel-links strong {
            color: var(--white);
        }

        .travel-links h4 {
            font-size: 1rem;
            margin-bottom: 12px;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .travel-options {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin-top: 16px;
        }

        .travel-options a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 54px;
            padding: 12px 16px;
            text-align: center;
            text-decoration: none;
            background: var(--gold-soft);
            border: 1px solid rgba(212, 175, 55, 0.25);
            color: var(--white);
            border-radius: 14px;
            font-weight: 700;
            transition: transform 0.3s, border-color 0.3s, background-color 0.3s, color 0.3s;
        }

        .travel-options a:hover,
        .travel-options a:focus-visible {
            transform: translateY(-2px);
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(212, 175, 55, 0.08);
        }

        .map {
            overflow: hidden;
            min-height: 100%;
            align-self: stretch;
        }

        .map iframe {
            display: block;
            width: 100%;
            height: 100%;
            min-height: 520px;
            border: 0;
        }

        /* Drinks Section */
        .drinks {
            background: linear-gradient(180deg, #2e2e2e 0%, #1f1f1f 25%, #2f2f2f 50%, #1c1c1c 75%, #2a2a2a 100%);
        }

        .drinks-container {
            display: grid;
            grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
            gap: 50px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .reservations {
            background: #111;
            padding: 88px 5%;
        }

        .reservations-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
            gap: 40px;
            align-items: center;
        }

        .reservations-image img {
            width: 100%;
            height: 100%;
            min-height: 420px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: var(--shadow);
            background: #111;
        }

        .reservations-copy {
            background: var(--dark-soft);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 28px;
            color: var(--muted);
            line-height: 1.8;
        }

        .reservations-copy p {
            margin-bottom: 18px;
        }

        .drinks-content h3 {
            margin-top: 0;
        }

        .drinks-content p {
            margin-bottom: 16px;
        }

        .drinks-image {
            position: relative;
        }

        .drinks-image img {
            width: 100%;
            height: 700px;
            object-fit: cover;
            object-position: center right;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        footer {
            padding: 34px 20px;
            text-align: center;
            background: #0a0a0a;
            border-top: 1px solid #222;
        }

        footer p + p {
            margin-top: 8px;
        }

        @media (max-width: 1024px) {
            .about-container,
            .location-container,
            .reviews-container,
            .gallery-grid,
            .drinks-container {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .gallery-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                align-items: center;
                padding: 10px 14px;
            }

            .brand {
                justify-content: center;
            }

            .brand img {
                width: 120px;
            }

            .nav-links {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
                gap: 6px;
                margin-top: 10px;
            }

            .nav-links a {
                font-size: 0.82rem;
                padding: 8px 10px;
                text-align: center;
            }

            nav {
                flex-direction: column;
                align-items: center;
                padding: 10px 14px;
                position: relative;
            }

            .language-selector {
                position: absolute;
                top: 10px;
                right: 14px;
                width: auto;
                margin-top: 0;
                display: flex;
                justify-content: flex-end;
            }

            .translate-btn {
                width: 36px;
                height: 36px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.08);
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 6px;
            }

            .language-dropdown {
                right: 0;
                left: auto;
                transform: none;
                min-width: 150px;
            }

            .hero {
                padding-top: 170px;
            }

            .about,
            .gallery,
            .local-guide,
            .reviews,
            .location,
            .drinks,
            .reservations {
                padding: 72px 18px;
            }

            .about-container,
            .location-container,
            .reviews-container,
            .gallery-grid,
            .travel-options,
            .drinks-container,
            .reservations-container {
                grid-template-columns: 1fr;
            }

            .drinks-image {
                order: -1;
            }

            .drinks-image img {
                height: 400px;
            }

            .map iframe {
                min-height: 340px;
            }
        }

        @media (max-width: 480px) {
            .hero-actions {
                flex-direction: column;
            }

            .btn,
            .btn-secondary {
                width: 100%;
            }

            .review-card,
            .status-card,
            .travel-links {
                padding: 20px;
            }
        }

