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

        :root {
            --bg: #f6ede3;
            --bg-soft: #fff8f0;
            --surface: rgba(255, 251, 246, 0.82);
            --surface-strong: #fffaf4;
            --surface-dark: #1d120f;
            --surface-dark-soft: rgba(29, 18, 15, 0.88);
            --text: #2c1a14;
            --text-soft: #6d564e;
            --text-muted: #8a7267;
            --accent: #b87333;
            --accent-deep: #8d5422;
            --accent-soft: rgba(184, 115, 51, 0.14);
            --line: rgba(103, 65, 45, 0.12);
            --success: #2e6b50;
            --danger: #9e4a2f;
            --shadow-soft: 0 20px 50px rgba(52, 33, 24, 0.08);
            --shadow-medium: 0 28px 70px rgba(52, 33, 24, 0.14);
            --shadow-strong: 0 32px 100px rgba(21, 13, 9, 0.22);
            --radius-sm: 16px;
            --radius-md: 24px;
            --radius-lg: 36px;
            --container: 1240px;
            --nav-height: 88px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Manrope", sans-serif;
            min-width: 320px;
            background:
                radial-gradient(circle at top left, rgba(184, 115, 51, 0.16), transparent 35%),
                radial-gradient(circle at top right, rgba(141, 84, 34, 0.1), transparent 24%),
                linear-gradient(180deg, #f9f1e8 0%, #f6ede3 30%, #f8f3ed 100%);
            color: var(--text);
            line-height: 1.65;
            overflow-x: hidden;
            transition: background 0.35s ease, color 0.35s ease;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            opacity: 0.4;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
            background-size: 120px 120px;
            mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
            transition: opacity 0.35s ease;
        }

        .hero-overlay::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 18%, rgba(255, 255, 255, 0.08) 50%, transparent 82%);
            transform: translateX(-24%);
            pointer-events: none;
            animation: shimmerMove 10s linear infinite;
        }

        @keyframes shimmerMove {
            0% { transform: translateX(-28%); }
            100% { transform: translateX(28%); }
        }

        body.dark-mode {
            background:
                radial-gradient(circle at top left, rgba(214, 165, 108, 0.12), transparent 28%),
                radial-gradient(circle at bottom right, rgba(130, 100, 80, 0.08), transparent 18%),
                linear-gradient(180deg, #070503 0%, #120c09 36%, #1c1310 100%);
            color: #e8d8c4;
        }

        body.dark-mode::before {
            opacity: 0.18;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
        }

        body.dark-mode {
            --bg: #0b0705;
            --bg-soft: rgba(20, 14, 10, 0.86);
            --surface: rgba(22, 14, 10, 0.72);
            --surface-strong: rgba(18, 11, 8, 0.9);
            --surface-dark: #120c0a;
            --surface-dark-soft: rgba(15, 10, 8, 0.82);
            --text: #f7ede2;
            --text-soft: #d9c3b4;
            --text-muted: rgba(235, 210, 191, 0.76);
            --accent: #d69b5c;
            --accent-deep: #b57633;
            --accent-soft: rgba(214, 155, 92, 0.18);
            --line: rgba(255, 255, 255, 0.08);
            --success: #6bbd91;
            --danger: #c46a54;
            --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.28);
            --shadow-medium: 0 28px 75px rgba(0, 0, 0, 0.32);
            --shadow-strong: 0 34px 108px rgba(0, 0, 0, 0.38);
        }

        body.dark-mode .topbar,
        body.dark-mode .nav-shell,
        body.dark-mode .mobile-menu,
        body.dark-mode .hero-spotlight,
        body.dark-mode .spotlight-mini,
        body.dark-mode .feature-card,
        body.dark-mode .experience-card,
        body.dark-mode .menu-search,
        body.dark-mode .menu-card,
        body.dark-mode .contact-panel,
        body.dark-mode .reservation-card,
        body.dark-mode .gallery-quote,
        body.dark-mode .stat-card,
        body.dark-mode .testimonial-panel,
        body.dark-mode .reservation-summary {
            background: rgba(18, 12, 9, 0.78);
            border-color: rgba(255, 255, 255, 0.08);
            box-shadow: var(--shadow-soft);
        }

        body.dark-mode .topbar {
            background: linear-gradient(90deg, rgba(7, 4, 3, 0.96), rgba(19, 12, 9, 0.94));
            color: rgba(255, 246, 230, 0.78);
        }

        body.dark-mode .nav-shell {
            background: rgba(17, 10, 8, 0.65);
            border-color: rgba(255, 255, 255, 0.08);
        }

        body.dark-mode .nav-link,
        body.dark-mode .footer-link,
        body.dark-mode .eyebrow,
        body.dark-mode .eyebrow.light,
        body.dark-mode .metric-card span,
        body.dark-mode .section-header h2,
        body.dark-mode .section-header p,
        body.dark-mode .about-copy p,
        body.dark-mode .spotlight-mini span,
        body.dark-mode .experience-card p,
        body.dark-mode .testimonial-quote,
        body.dark-mode .gallery-quote p,
        body.dark-mode .gallery-highlights li,
        body.dark-mode .contact-info p,
        body.dark-mode .form-group label,
        body.dark-mode .summary-item span {
            color: var(--text-soft);
        }

        body.dark-mode .section-header h2,
        body.dark-mode .gallery-quote h3,
        body.dark-mode .hero-copy h1,
        body.dark-mode .spotlight-header h2,
        body.dark-mode .about-copy h3,
        body.dark-mode .contact-panel h3,
        body.dark-mode .reservation-card h3,
        body.dark-mode .testimonial-name,
        body.dark-mode .footer-brand span {
            color: #fff7ee;
        }

        body.dark-mode .hero-copy p,
        body.dark-mode .section-header p {
            color: rgba(255, 245, 232, 0.78);
        }

        body.dark-mode .eyebrow.light {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.12);
        }

        body.dark-mode .hero-spotlight {
            background: rgba(14, 10, 8, 0.78);
            border-color: rgba(255, 255, 255, 0.08);
        }

        body.dark-mode .hero-spotlight::before {
            background: radial-gradient(circle, rgba(214, 155, 92, 0.18), transparent 68%);
        }

        body.dark-mode .spotlight-header p {
            color: rgba(243, 231, 218, 0.78);
        }

        body.dark-mode .spotlight-mini {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.12);
        }

        body.dark-mode .spotlight-icon {
            background: rgba(214, 155, 92, 0.16);
        }

        body.dark-mode .spotlight-mini strong,
        body.dark-mode .spotlight-mini span,
        body.dark-mode .floating-chip strong,
        body.dark-mode .floating-chip span {
            color: #f3e7da;
        }

        body.dark-mode .spotlight-badge {
            background: rgba(255, 255, 255, 0.08);
            color: #f8eee2;
        }

        body.dark-mode .floating-chip {
            background: rgba(15, 10, 8, 0.84);
            border-color: rgba(255, 255, 255, 0.08);
        }

        body.dark-mode .menu-search input,
        body.dark-mode .form-group input,
        body.dark-mode .form-group textarea {
            color: #f3e7da;
        }

        body.dark-mode .menu-search input::placeholder,
        body.dark-mode .form-group input::placeholder,
        body.dark-mode .form-group textarea::placeholder {
            color: rgba(243, 231, 218, 0.72);
        }

        body.dark-mode .menu-tab,
        body.dark-mode .status-pill,
        body.dark-mode .whatsapp-btn {
            background: rgba(255, 255, 255, 0.08);
        }

        body.dark-mode .menu-tab.active,
        body.dark-mode .menu-tab:hover {
            background: linear-gradient(135deg, var(--accent), var(--accent-deep));
            color: white;
        }

        body.dark-mode .menu-label {
            background: rgba(255, 255, 255, 0.08);
            color: #f9e9d8;
        }

        body.dark-mode .menu-price {
            background: rgba(255, 255, 255, 0.12);
            color: #f9e2cf;
        }

        body.dark-mode .menu-section {
            background: linear-gradient(180deg, rgba(10, 6, 4, 0.18), rgba(15, 9, 7, 0.12));
        }

        body.dark-mode .about-note {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-mode .menu-empty {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.12);
            color: var(--text-soft);
        }

        body.dark-mode .form-group input,
        body.dark-mode .form-group textarea {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.12);
        }

        body.dark-mode .map-card {
            background:
                linear-gradient(180deg, rgba(8, 5, 4, 0.3), rgba(18, 12, 9, 0.82)),
                url("images/gallery2.jpg") center/cover;
        }

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

        button,
        input,
        textarea {
            font: inherit;
        }

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

        ::selection {
            background: rgba(184, 115, 51, 0.22);
        }

        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #eadbc8;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--accent), var(--accent-deep));
            border-radius: 999px;
        }

        .container {
            width: min(calc(100% - 32px), var(--container));
            margin: 0 auto;
        }

        .section {
            position: relative;
            padding: 110px 0;
        }

        .section-header {
            display: grid;
            gap: 16px;
            justify-items: center;
            text-align: center;
            margin-bottom: 56px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(14px);
            letter-spacing: 0.16em;
            font-size: 11px;
            text-transform: uppercase;
            color: var(--accent);
        }

        .eyebrow.light {
            background: rgba(255, 248, 240, 0.78);
            border-color: rgba(103, 65, 45, 0.08);
        }

        .section-header h2,
        .hero-copy h1,
        .experience-card h3,
        .about-copy h3,
        .contact-panel h3,
        .reservation-card h3,
        .testimonial-name,
        .menu-card h3,
        .footer-brand span {
            font-family: "Cormorant Garamond", serif;
        }

        .section-header h2 {
            font-size: clamp(2.7rem, 5vw, 4.4rem);
            line-height: 0.95;
            font-weight: 700;
            letter-spacing: -0.03em;
        }

        .section-header p {
            max-width: 660px;
            color: var(--text-soft);
            font-size: 1.02rem;
        }

        .reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.92);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal.active,
        .reveal-left.active,
        .reveal-right.active,
        .reveal-scale.active {
            opacity: 1;
            transform: none;
        }

        @keyframes floatUp {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes pulseGlow {
            0%, 100% { box-shadow: 0 0 0 0 rgba(184, 115, 51, 0.25); }
            70% { box-shadow: 0 0 0 18px rgba(184, 115, 51, 0); }
        }

        @keyframes marqueeFade {
            from { opacity: 0.4; transform: translateX(0); }
            to { opacity: 1; transform: translateX(-24px); }
        }

        .topbar {
            position: relative;
            z-index: 5;
            background: linear-gradient(90deg, rgba(29, 18, 15, 0.94), rgba(60, 34, 22, 0.92));
            color: rgba(255, 247, 238, 0.76);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }

        .topbar-track {
            display: flex;
            gap: 40px;
            padding: 12px 0;
            white-space: nowrap;
            animation: marqueeFade 18s linear infinite alternate;
        }

        .topbar-item {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 0.86rem;
        }

        .topbar-item strong {
            color: #fff4e6;
            font-weight: 700;
        }

        .navbar {
            position: fixed;
            inset: 0 0 auto;
            z-index: 1000;
            padding: 16px 0;
            transition: all 0.35s ease;
        }

        .navbar.scrolled {
            padding: 10px 0;
        }

        .nav-shell {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 14px 18px;
            border-radius: 999px;
            background: rgba(20, 12, 10, 0.42);
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 20px 40px rgba(13, 8, 6, 0.14);
            backdrop-filter: blur(18px);
        }

        .navbar.scrolled .nav-shell {
            background: rgba(22, 13, 10, 0.82);
        }

        .nav-brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            color: #fff9f3;
        }

        .nav-brand-mark {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 1.3rem;
            background: linear-gradient(135deg, rgba(184, 115, 51, 0.88), rgba(82, 48, 26, 0.9));
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .nav-brand-text {
            display: grid;
            gap: 2px;
        }

        .nav-brand-text strong {
            font-size: 1rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .nav-brand-text span {
            font-size: 0.74rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(255, 248, 240, 0.62);
        }

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

        .nav-link {
            color: rgba(255, 248, 240, 0.76);
            padding: 10px 16px;
            border-radius: 999px;
            font-size: 0.95rem;
            transition: all 0.25s ease;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #fffaf4;
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .lang-btn,
        .theme-btn,
        .ghost-btn,
        .icon-btn,
        .hamburger {
            border: none;
            cursor: pointer;
        }

        .lang-btn,
        .theme-btn,
        .ghost-btn {
            border-radius: 999px;
            padding: 11px 16px;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .lang-btn,
        .theme-btn {
            background: rgba(255, 255, 255, 0.1);
            color: #fff8f0;
        }

        .lang-btn:hover,
        .theme-btn:hover {
            background: rgba(255, 255, 255, 0.18);
        }

        .ghost-btn {
            background: linear-gradient(135deg, var(--accent), var(--accent-deep));
            color: white;
            font-weight: 700;
            box-shadow: 0 12px 25px rgba(141, 84, 34, 0.35);
        }

        .ghost-btn:hover {
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            position: relative;
        }

        .hamburger span {
            position: absolute;
            left: 12px;
            width: 22px;
            height: 2px;
            border-radius: 99px;
            background: white;
            transition: all 0.3s ease;
        }

        .hamburger span:nth-child(1) { top: 16px; }
        .hamburger span:nth-child(2) { top: 22px; }
        .hamburger span:nth-child(3) { top: 28px; }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 22px;
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg);
            top: 22px;
        }

        .mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(9, 5, 4, 0.54);
            backdrop-filter: blur(8px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 999;
        }

        .mobile-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu {
            position: fixed;
            top: 20px;
            right: 20px;
            bottom: 20px;
            width: min(360px, calc(100vw - 40px));
            background: linear-gradient(180deg, rgba(29, 18, 15, 0.98), rgba(60, 32, 22, 0.96));
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 28px;
            padding: 92px 24px 24px;
            transform: translateX(110%);
            transition: transform 0.35s ease;
            z-index: 1001;
            box-shadow: var(--shadow-strong);
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .mobile-menu-links {
            display: grid;
            gap: 10px;
        }

        .mobile-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 18px;
            border-radius: 18px;
            color: #fff8f0;
            background: rgba(255, 255, 255, 0.05);
        }

        .mobile-link small {
            color: rgba(255, 248, 240, 0.48);
        }

        .hero {
            position: relative;
            min-height: 100vh;
            padding-top: calc(var(--nav-height) + 70px);
            overflow: hidden;
        }

        .hero-media,
        .hero-overlay {
            position: absolute;
            inset: 0;
        }

        .hero-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.08);
        }

        .hero-overlay {
            background:
                linear-gradient(180deg, rgba(10, 6, 5, 0.35), rgba(20, 13, 11, 0.78)),
                radial-gradient(circle at top right, rgba(184, 115, 51, 0.35), transparent 28%),
                linear-gradient(90deg, rgba(14, 9, 7, 0.84), rgba(14, 9, 7, 0.36));
        }

        .hero-shell {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
            gap: 42px;
            align-items: center;
            min-height: calc(100vh - 160px);
            padding-bottom: 56px;
        }

        .hero-copy {
            color: white;
            max-width: 700px;
        }

        .hero-copy h1 {
            font-size: clamp(3.8rem, 9vw, 7rem);
            font-weight: 700;
            line-height: 0.9;
            letter-spacing: -0.04em;
            margin: 22px 0 18px;
        }

        .hero-copy p {
            max-width: 620px;
            color: rgba(255, 246, 238, 0.78);
            font-size: clamp(1rem, 2.2vw, 1.18rem);
            margin-bottom: 34px;
        }

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

        .primary-btn,
        .secondary-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 28px;
            border-radius: 999px;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .primary-btn {
            background: linear-gradient(135deg, #d48741, var(--accent-deep));
            color: white;
            box-shadow: 0 16px 34px rgba(141, 84, 34, 0.38);
        }

        .primary-btn:hover,
        .secondary-btn:hover {
            transform: translateY(-3px);
        }

        .secondary-btn {
            background: rgba(255, 255, 255, 0.08);
            color: #fff8f0;
            border: 1px solid rgba(255, 255, 255, 0.16);
            backdrop-filter: blur(16px);
        }

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

        .metric-card {
            padding: 18px 20px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(18px);
        }

        .metric-card strong {
            display: block;
            font-size: 1.55rem;
            color: #fffaf4;
            margin-bottom: 4px;
        }

        .metric-card span {
            display: block;
            color: rgba(255, 246, 238, 0.68);
            font-size: 0.92rem;
        }

        .hero-panel {
            position: relative;
            align-self: stretch;
        }

        .hero-spotlight {
            position: relative;
            margin-top: 46px;
            background: linear-gradient(180deg, rgba(255, 250, 245, 0.9), rgba(246, 232, 220, 0.84));
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 34px;
            padding: 26px;
            box-shadow: var(--shadow-strong);
            overflow: hidden;
            backdrop-filter: blur(18px);
        }

        .hero-spotlight::before {
            content: "";
            position: absolute;
            inset: auto -40px -80px auto;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(184, 115, 51, 0.24), transparent 68%);
        }

        .spotlight-card {
            display: grid;
            gap: 18px;
        }

        .spotlight-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 18px;
        }

        .spotlight-header h2 {
            font-family: "Cormorant Garamond", serif;
            font-size: 2.3rem;
            line-height: 0.95;
        }

        .spotlight-header p {
            color: var(--text-soft);
            max-width: 320px;
        }

        .spotlight-grid {
            display: grid;
            gap: 14px;
        }

        .spotlight-mini {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 14px;
            padding: 16px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.66);
            border: 1px solid rgba(103, 65, 45, 0.08);
        }

        .spotlight-icon {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            display: grid;
            place-items: center;
            background: rgba(184, 115, 51, 0.12);
            font-size: 1.35rem;
        }

        .spotlight-mini strong {
            display: block;
            font-size: 1rem;
        }

        .spotlight-mini span {
            display: block;
            color: var(--text-soft);
            font-size: 0.9rem;
        }

        .spotlight-badge {
            padding: 9px 13px;
            border-radius: 999px;
            background: var(--surface-dark);
            color: #fff8f0;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .floating-chip {
            position: absolute;
            padding: 16px 18px;
            border-radius: 20px;
            background: rgba(255, 249, 243, 0.88);
            border: 1px solid rgba(255, 255, 255, 0.34);
            box-shadow: var(--shadow-medium);
            animation: floatUp 4.5s ease-in-out infinite;
            backdrop-filter: blur(16px);
        }

        .floating-chip strong {
            display: block;
            font-size: 1.15rem;
        }

        .floating-chip span {
            display: block;
            color: var(--text-soft);
            font-size: 0.82rem;
        }

        .floating-chip.top {
            top: 0;
            right: 18px;
        }

        .floating-chip.bottom {
            bottom: 24px;
            left: -24px;
            animation-delay: 0.5s;
        }

        .scroll-cue {
            position: absolute;
            left: 50%;
            bottom: 30px;
            transform: translateX(-50%);
            z-index: 3;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 249, 243, 0.76);
            font-size: 0.85rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .about-grid,
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 42px;
            align-items: center;
        }

        .about-visual {
            position: relative;
        }

        .about-photo-stack {
            position: relative;
            min-height: 560px;
        }

        .about-photo-main,
        .about-photo-small,
        .about-note {
            position: absolute;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
        }

        .about-photo-main {
            inset: 0 80px 90px 0;
        }

        .about-photo-small {
            inset: auto 0 24px 180px;
            height: 240px;
        }

        .about-photo-main img,
        .about-photo-small img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-note {
            top: 34px;
            right: 20px;
            width: 200px;
            padding: 18px;
            background: rgba(255, 250, 245, 0.92);
            border: 1px solid rgba(103, 65, 45, 0.1);
        }

        .about-note strong {
            display: block;
            font-size: 2rem;
            font-family: "Cormorant Garamond", serif;
            line-height: 0.9;
        }

        .about-note span {
            color: var(--text-soft);
            font-size: 0.92rem;
        }

        .about-copy {
            display: grid;
            gap: 18px;
        }

        .about-copy h3 {
            font-size: clamp(2.4rem, 4vw, 3.5rem);
            line-height: 0.96;
            font-weight: 700;
        }

        .about-copy p {
            color: var(--text-soft);
        }

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

        .feature-card,
        .experience-card,
        .menu-card,
        .contact-panel,
        .reservation-card,
        .gallery-quote,
        .stat-card,
        .testimonial-panel {
            border: 1px solid var(--line);
            background: var(--surface);
            backdrop-filter: blur(16px);
            box-shadow: var(--shadow-soft);
        }

        .feature-card {
            padding: 20px;
            border-radius: 22px;
            display: grid;
            gap: 10px;
        }

        .feature-card .feature-icon,
        .experience-icon,
        .contact-icon {
            width: 52px;
            height: 52px;
            border-radius: 18px;
            display: grid;
            place-items: center;
            font-size: 1.3rem;
            background: var(--accent-soft);
        }

        .feature-card h4,
        .experience-card h3,
        .menu-card h3,
        .contact-info h4,
        .reservation-summary h4 {
            font-size: 1.2rem;
        }

        .feature-card p {
            color: var(--text-soft);
            font-size: 0.93rem;
        }

        .experience-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .experience-card {
            padding: 28px;
            border-radius: 28px;
            display: grid;
            gap: 16px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .experience-card:hover,
        .menu-card:hover,
        .feature-card:hover,
        .stat-card:hover,
        .contact-panel:hover,
        .gallery-quote:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-medium);
        }

        .experience-card p,
        .experience-card li {
            color: var(--text-soft);
        }

        .experience-points {
            display: grid;
            gap: 12px;
            list-style: none;
        }

        .experience-points li {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .experience-points li::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--accent-deep));
            flex: none;
        }

        .menu-section {
            background: linear-gradient(180deg, rgba(255, 250, 244, 0.9), rgba(250, 244, 236, 0.9));
        }

        .menu-toolbar {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 18px;
            align-items: center;
            margin-bottom: 26px;
        }

        .menu-search {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-soft);
        }

        .menu-search input {
            width: 100%;
            border: none;
            outline: none;
            background: transparent;
            color: var(--text);
        }

        .menu-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 28px;
        }

        .menu-tab {
            padding: 12px 18px;
            border-radius: 999px;
            border: 1px solid rgba(103, 65, 45, 0.12);
            background: rgba(255, 255, 255, 0.68);
            color: var(--text-soft);
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .menu-tab.active,
        .menu-tab:hover {
            background: linear-gradient(135deg, var(--accent), var(--accent-deep));
            color: white;
            box-shadow: 0 14px 24px rgba(141, 84, 34, 0.22);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .menu-card {
            border-radius: 28px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .menu-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .menu-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .menu-card:hover .menu-image img {
            transform: scale(1.08);
        }

        .menu-badges {
            position: absolute;
            inset: 18px 18px auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 12px;
        }

        .menu-label,
        .menu-price {
            padding: 9px 12px;
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            backdrop-filter: blur(16px);
        }

        .menu-label {
            background: rgba(23, 14, 10, 0.64);
            color: white;
        }

        .menu-price {
            background: rgba(255, 251, 246, 0.9);
            color: var(--accent-deep);
        }

        .menu-body {
            display: grid;
            gap: 14px;
            padding: 22px;
        }

        .menu-body p {
            color: var(--text-soft);
            font-size: 0.95rem;
        }

        .menu-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .menu-tag {
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(184, 115, 51, 0.1);
            color: var(--accent-deep);
            font-size: 0.79rem;
            font-weight: 700;
        }

        .menu-empty {
            display: none;
            text-align: center;
            padding: 50px 24px;
            border-radius: 28px;
            border: 1px dashed rgba(103, 65, 45, 0.22);
            color: var(--text-soft);
            background: rgba(255, 255, 255, 0.58);
        }

        .menu-empty.show {
            display: block;
        }

        .stats-section {
            position: relative;
            overflow: hidden;
            padding: 120px 0;
            color: white;
        }

        .stats-bg,
        .stats-overlay {
            position: absolute;
            inset: 0;
        }

        .stats-bg {
            background: url("images/coffee.jpg") center/cover fixed;
            transform: scale(1.08);
        }

        .stats-overlay {
            background:
                linear-gradient(180deg, rgba(16, 10, 8, 0.86), rgba(25, 14, 11, 0.92)),
                radial-gradient(circle at top left, rgba(184, 115, 51, 0.24), transparent 24%);
        }

        .stats-shell {
            position: relative;
            z-index: 2;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 20px;
            margin-top: 42px;
        }

        .stat-card {
            padding: 30px 24px;
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.12);
        }

        .stat-card strong {
            display: block;
            font-family: "Cormorant Garamond", serif;
            font-size: 3rem;
            line-height: 0.9;
            margin: 18px 0 8px;
        }

        .stat-card span {
            color: rgba(255, 247, 240, 0.72);
        }

        .gallery-shell {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
            gap: 22px;
            align-items: start;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            grid-auto-rows: 220px;
            gap: 16px;
        }

        .gallery-item {
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow-soft);
        }

        .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item:nth-child(4) {
            grid-row: span 2;
        }

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

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

        .gallery-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: flex-end;
            padding: 18px;
            background: linear-gradient(180deg, transparent 28%, rgba(24, 15, 11, 0.8) 100%);
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-quote {
            border-radius: 30px;
            padding: 30px;
            display: grid;
            gap: 22px;
            position: sticky;
            top: 120px;
        }

        .gallery-quote h3 {
            font-family: "Cormorant Garamond", serif;
            font-size: 2.5rem;
            line-height: 0.95;
        }

        .gallery-quote p,
        .gallery-highlights li {
            color: var(--text-soft);
        }

        .gallery-highlights {
            display: grid;
            gap: 12px;
            list-style: none;
        }

        .gallery-highlights li {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .gallery-highlights li::before {
            content: "*";
            color: var(--accent);
            font-size: 1.3rem;
            line-height: 1;
        }

        .testimonial-shell {
            position: relative;
            max-width: 920px;
            margin: 0 auto;
        }

        .testimonial-panel {
            border-radius: 34px;
            padding: 40px;
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.45s ease;
        }

        .testimonial-card {
            min-width: 100%;
            display: grid;
            gap: 22px;
        }

        .testimonial-stars {
            display: flex;
            gap: 6px;
            color: #c98d30;
        }

        .testimonial-quote {
            font-size: 1.18rem;
            color: var(--text-soft);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, var(--accent), var(--accent-deep));
            color: white;
            font-weight: 800;
        }

        .testimonial-name {
            font-size: 1.6rem;
            line-height: 0.95;
        }

        .testimonial-role {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .testimonial-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            margin-top: 22px;
        }

        .testimonial-dots {
            display: flex;
            gap: 10px;
        }

        .dot,
        .arrow-btn {
            border: none;
            cursor: pointer;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 999px;
            background: rgba(141, 84, 34, 0.22);
            transition: all 0.25s ease;
        }

        .dot.active {
            width: 34px;
            background: linear-gradient(135deg, var(--accent), var(--accent-deep));
        }

        .testimonial-arrows {
            display: flex;
            gap: 10px;
        }

        .arrow-btn {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: rgba(184, 115, 51, 0.12);
            color: var(--accent-deep);
            transition: transform 0.25s ease, background 0.25s ease;
        }

        .arrow-btn:hover {
            transform: translateY(-2px);
            background: rgba(184, 115, 51, 0.2);
        }

        .contact-grid {
            align-items: start;
        }

        .contact-stack,
        .reservation-card,
        .reservation-summary {
            display: grid;
            gap: 18px;
        }

        .contact-panel {
            padding: 28px;
            border-radius: 30px;
        }

        .contact-panel h3,
        .reservation-card h3 {
            font-size: 2.3rem;
            line-height: 0.95;
        }

        .contact-row {
            display: grid;
            gap: 18px;
        }

        .contact-info {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 16px;
            align-items: start;
        }

        .contact-info p {
            color: var(--text-soft);
        }

        .status-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 8px;
        }

        .status-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            border-radius: 999px;
            background: rgba(184, 115, 51, 0.08);
            color: var(--text);
        }

        .status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--success);
            animation: pulseGlow 2.2s infinite;
        }

        .status-pill.closed .status-dot {
            background: var(--danger);
            box-shadow: none;
            animation: none;
        }

        .map-card {
            position: relative;
            min-height: 220px;
            overflow: hidden;
            border-radius: 26px;
            background:
                linear-gradient(180deg, rgba(25, 16, 12, 0.28), rgba(25, 16, 12, 0.7)),
                url("images/gallery2.jpg") center/cover;
            display: flex;
            align-items: flex-end;
            padding: 24px;
            color: white;
        }

        .reservation-card {
            padding: 30px;
            border-radius: 32px;
            background: linear-gradient(180deg, rgba(255, 252, 248, 0.94), rgba(247, 237, 226, 0.94));
            border: 1px solid rgba(103, 65, 45, 0.12);
            box-shadow: var(--shadow-medium);
        }

        .reservation-card > p {
            color: var(--text-soft);
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .form-group {
            display: grid;
            gap: 8px;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-weight: 700;
            font-size: 0.92rem;
        }

        .form-group input,
        .form-group textarea {
            border: 1px solid rgba(103, 65, 45, 0.14);
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.76);
            padding: 14px 16px;
            outline: none;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: rgba(184, 115, 51, 0.55);
            box-shadow: 0 0 0 4px rgba(184, 115, 51, 0.12);
        }

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

        .submit-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 24px;
            border: none;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--accent), var(--accent-deep));
            color: white;
            font-weight: 800;
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
            box-shadow: 0 16px 30px rgba(141, 84, 34, 0.28);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
        }

        .submit-btn:disabled {
            opacity: 0.7;
            cursor: wait;
        }

        .form-feedback {
            display: none;
            padding: 15px 18px;
            border-radius: 18px;
            background: rgba(46, 107, 80, 0.1);
            border: 1px solid rgba(46, 107, 80, 0.18);
            color: var(--success);
            font-weight: 600;
        }

        .form-feedback.show {
            display: block;
        }

        .reservation-summary {
            padding: 22px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.66);
            border: 1px solid rgba(103, 65, 45, 0.1);
        }

        .summary-grid {
            display: grid;
            gap: 12px;
        }

        .summary-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 12px 14px;
            border-radius: 18px;
            background: rgba(184, 115, 51, 0.06);
        }

        .summary-item span:first-child {
            color: var(--text-soft);
        }

        .summary-item strong {
            font-size: 0.95rem;
            text-align: right;
        }

        .footer {
            position: relative;
            background:
                radial-gradient(circle at top right, rgba(184, 115, 51, 0.2), transparent 24%),
                linear-gradient(180deg, #1d120f 0%, #140c0a 100%);
            color: rgba(255, 247, 238, 0.8);
            padding: 86px 0 26px;
            overflow: hidden;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr repeat(3, 1fr);
            gap: 24px;
            padding-bottom: 34px;
        }

        .footer-brand {
            display: grid;
            gap: 14px;
        }

        .footer-brand span {
            font-size: 2.2rem;
            color: #fff8f0;
            line-height: 0.95;
        }

        .footer-brand p,
        .footer-link,
        .footer-meta {
            color: rgba(255, 247, 238, 0.6);
        }

        .footer-col h4 {
            color: #fff8f0;
            margin-bottom: 16px;
        }

        .footer-links {
            display: grid;
            gap: 10px;
        }

        .footer-link {
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: #fff8f0;
        }

        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .whatsapp-btn {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 990;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: #25d366;
            color: white;
            box-shadow: 0 16px 34px rgba(37, 211, 102, 0.3);
            animation: pulseGlow 2.2s infinite;
        }

        .whatsapp-btn svg {
            width: 30px;
            height: 30px;
            fill: currentColor;
        }

        .lightbox {
            position: fixed;
            inset: 0;
            z-index: 1200;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background: rgba(6, 4, 3, 0.92);
        }

        .lightbox.open {
            display: flex;
        }

        .lightbox img {
            width: min(1040px, 100%);
            max-height: 88vh;
            object-fit: contain;
            border-radius: 22px;
            box-shadow: var(--shadow-strong);
        }

        .lightbox-close {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 46px;
            height: 46px;
            border: none;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 1.4rem;
            cursor: pointer;
        }

        @media (max-width: 1100px) {
            .hero-shell,
            .gallery-shell,
            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .hero-panel {
                max-width: 720px;
            }

            .experience-grid,
            .menu-grid,
            .stats-grid,
            .footer-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .gallery-quote {
                position: static;
            }
        }

        @media (max-width: 860px) {
            .nav-links,
            .nav-actions .ghost-btn,
            .nav-actions .lang-btn {
                display: none;
            }

            .hamburger {
                display: block;
            }

            .hero {
                padding-top: calc(var(--nav-height) + 52px);
            }

            .hero-copy h1 {
                font-size: clamp(3.2rem, 13vw, 5rem);
            }

            .hero-metrics,
            .feature-grid,
            .experience-grid,
            .menu-grid,
            .stats-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .menu-toolbar,
            .form-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                grid-auto-rows: 200px;
            }

            .gallery-item:nth-child(1),
            .gallery-item:nth-child(4) {
                grid-column: auto;
                grid-row: auto;
            }

            .about-photo-stack {
                min-height: 500px;
            }

            .about-photo-main {
                inset: 0 60px 100px 0;
            }

            .about-photo-small {
                inset: auto 0 18px 120px;
            }
        }

        @media (max-width: 600px) {
            .section {
                padding: 86px 0;
            }

            .nav-shell {
                padding: 12px 14px;
            }

            .hero-shell {
                gap: 28px;
            }

            .hero-spotlight {
                margin-top: 14px;
                padding: 20px;
            }

            .floating-chip.top,
            .floating-chip.bottom {
                position: static;
                margin-top: 14px;
            }

            .about-photo-stack {
                min-height: auto;
                display: grid;
                gap: 14px;
            }

            .about-photo-main,
            .about-photo-small,
            .about-note {
                position: static;
            }

            .about-photo-main,
            .about-photo-small {
                height: 260px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-panel,
            .contact-panel,
            .reservation-card {
                padding: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 420px) {
            .container {
                width: min(calc(100% - 20px), var(--container));
            }

            .topbar-track {
                gap: 24px;
                padding: 10px 0;
            }

            .topbar-item {
                font-size: 0.76rem;
            }

            .nav-shell {
                gap: 10px;
                padding: 10px 12px;
            }

            .nav-brand-mark {
                width: 38px;
                height: 38px;
                font-size: 1.05rem;
            }

            .nav-brand-text span {
                display: none;
            }

            .mobile-menu {
                top: 10px;
                right: 10px;
                bottom: 10px;
                width: min(340px, calc(100vw - 20px));
                padding: 82px 16px 16px;
            }

            .hero-copy h1 {
                font-size: clamp(2.7rem, 15vw, 3.6rem);
            }

            .hero-copy p,
            .section-header p,
            .gallery-quote p,
            .testimonial-quote {
                font-size: 0.96rem;
            }

            .section-header h2,
            .about-copy h3,
            .gallery-quote h3,
            .contact-panel h3,
            .reservation-card h3 {
                font-size: clamp(2.15rem, 10vw, 2.8rem);
            }

            .hero-actions,
            .status-strip {
                display: grid;
                grid-template-columns: 1fr;
            }

            .primary-btn,
            .secondary-btn,
            .submit-btn,
            .lang-btn,
            .ghost-btn,
            .status-pill {
                width: 100%;
            }

            .metric-card,
            .feature-card,
            .experience-card,
            .contact-panel,
            .reservation-card,
            .testimonial-panel,
            .gallery-quote {
                border-radius: 24px;
            }

            .spotlight-mini,
            .contact-info,
            .summary-item {
                grid-template-columns: 1fr;
            }

            .summary-item {
                justify-content: flex-start;
                align-items: flex-start;
            }

            .spotlight-mini,
            .summary-item,
            .menu-search {
                gap: 10px;
            }

            .menu-badges {
                inset: 12px 12px auto;
                flex-direction: column;
                align-items: flex-start;
            }

            .menu-body,
            .testimonial-panel {
                padding: 20px;
            }

            .whatsapp-btn {
                right: 14px;
                bottom: 14px;
                width: 56px;
                height: 56px;
            }

            .whatsapp-btn svg {
                width: 26px;
                height: 26px;
            }
        }

        @media (max-width: 360px) {
            .container {
                width: min(calc(100% - 16px), var(--container));
            }

            .section {
                padding: 74px 0;
            }

            .hero {
                padding-top: calc(var(--nav-height) + 38px);
            }

            .hero-shell {
                gap: 22px;
            }

            .hero-copy h1 {
                font-size: 2.45rem;
            }

            .hero-spotlight,
            .spotlight-mini,
            .contact-panel,
            .reservation-card,
            .gallery-quote,
            .testimonial-panel {
                padding: 18px;
            }

            .topbar-item {
                font-size: 0.72rem;
            }

            .menu-search,
            .mobile-link,
            .status-pill,
            .summary-item {
                padding: 12px 14px;
            }

            .lightbox {
                padding: 16px;
            }
        }
