/* =========================================
   China Restaurant Mandarin — Oberhausen
   Modern, Human-Friendly Design
   ========================================= */

:root {
    --bg: #0c0c0d;
    --bg-soft: #141416;
    --panel: rgba(255,255,255,0.04);
    --panel-strong: rgba(255,255,255,0.07);
    --text: #f4eee6;
    --muted: #b4a99b;
    --line: rgba(255,255,255,0.10);
    --gold: #d5af4b;
    --gold-strong: #f3cb67;
    --red: #981d2d;
    --red-strong: #c0283c;
    --shadow: 0 20px 80px rgba(0,0,0,0.35);
    --radius: 24px;
    --container: 1200px;
    --nav-height: 82px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(152,29,45,0.18), transparent 30%),
        radial-gradient(circle at top right, rgba(213,175,75,0.16), transparent 22%),
        linear-gradient(180deg, #0b0b0c 0%, #101012 50%, #0b0b0c 100%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--red-strong); color: #fff; }

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 1rem;
    background: #fff;
    color: #000;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    z-index: 1000;
    font-weight: 700;
}
.skip-link:focus { left: 1rem; }

/* --- Top Bar --- */
.topbar {
    border-bottom: 1px solid var(--line);
    background: rgba(8,8,9,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    min-height: 44px;
    font-size: 0.92rem;
    color: var(--muted);
}
.topbar-inner strong { color: var(--text); }
.topbar-actions { display: flex; gap: 0.75rem; align-items: center; }
.topbar-actions a { color: var(--gold-strong); font-weight: 600; transition: color 0.2s; }
.topbar-actions a:hover { color: var(--gold); }

/* --- Navigation --- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--nav-height);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.nav.scrolled {
    background: rgba(10,10,12,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.nav-inner {
    min-height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.nav-logo strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    line-height: 1;
    letter-spacing: 0.02em;
}
.nav-logo small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.logo-seal, .seal {
    width: 3rem;
    height: 3rem;
    display: inline-grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(213,175,75,0.24), rgba(152,29,45,0.22));
    border: 1px solid rgba(213,175,75,0.34);
    color: var(--gold-strong);
    font-family: 'Noto Serif SC', serif;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.seal--gold {
    width: auto;
    height: auto;
    padding: 0.6rem 1rem;
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.nav-links > a {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.nav-links > a:hover,
.nav-links > a.active { color: var(--text); }

/* Nav Toggle (mobile) */
.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0.25rem;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.95rem 1.45rem;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
    background: linear-gradient(135deg, var(--red-strong), var(--red));
    color: white;
    box-shadow: 0 18px 34px rgba(152,29,45,0.28);
}
.btn--primary:hover { box-shadow: 0 22px 44px rgba(152,29,45,0.35); }
.btn--secondary {
    background: linear-gradient(135deg, var(--gold-strong), var(--gold));
    color: #1d1710;
    box-shadow: 0 18px 34px rgba(213,175,75,0.18);
}
.btn--ghost {
    background: rgba(255,255,255,0.03);
    border-color: var(--line);
    color: var(--text);
}
.btn--ghost:hover { background: rgba(255,255,255,0.07); }
.btn--small { padding: 0.75rem 1.05rem; font-size: 0.9rem; }
.btn--full { width: 100%; }

/* --- Eyebrow --- */
.eyebrow {
    color: var(--gold-strong);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* --- Hero --- */
.hero {
    position: relative;
    padding: 4.5rem 0 3rem;
}
.hero-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.18;
    filter: brightness(0.7) saturate(0.6);
}
.hero-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(213,175,75,0.12), transparent 25%),
        radial-gradient(circle at 85% 20%, rgba(152,29,45,0.2), transparent 28%),
        linear-gradient(180deg, rgba(12,12,13,0.3), rgba(12,12,13,0.8) 70%, rgba(12,12,13,1));
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 2rem;
    align-items: start;
}
.hero h1 {
    margin: 0 0 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.9rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
    max-width: 14ch;
}
.hero-text {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 60ch;
    line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0; }
.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.fact-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1rem 1.05rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}
.fact-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-strong);
    margin-bottom: 0.5rem;
}
.fact-card strong { font-size: 0.92rem; line-height: 1.45; }

/* Hero Panel */
.hero-panel-inner {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(213,175,75,0.22);
    border-radius: calc(var(--radius) + 4px);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}
.hero-panel h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin: 0 0 0.5rem;
    line-height: 1.1;
}
.hero-panel-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}
.hero-list { margin: 1rem 0 1.5rem; padding-left: 1.1rem; }
.hero-list li { margin-bottom: 0.6rem; color: var(--muted); line-height: 1.5; }
.hero-list strong { color: var(--gold-strong); }

/* --- Quick Strip --- */
.quick-strip { padding: 1.5rem 0 0; }
.quick-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.quick-strip article {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.25rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.quick-strip article:hover {
    transform: translateY(-4px);
    border-color: rgba(213,175,75,0.25);
}
.quick-strip article h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin: 0 0 0.4rem;
    line-height: 1.2;
}
.quick-strip article p { color: var(--muted); font-size: 0.92rem; margin: 0; }
.quick-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 16px;
    background: rgba(213,175,75,0.12);
    color: var(--gold-strong);
    font-family: 'Noto Serif SC', serif;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

/* --- Sections --- */
.section { padding: 6rem 0; }
.section--accent {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.section-heading {
    max-width: 52rem;
    margin-bottom: 2.5rem;
}
.section-heading h2,
.section-copy h2,
.contact-panel h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    margin: 0 0 1rem;
    line-height: 1;
    letter-spacing: -0.02em;
}
.section-heading p,
.section-copy p { color: var(--muted); }

/* Split layout */
.split-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: start;
}
.section-copy { max-width: 600px; }
.section-copy p { margin-bottom: 1rem; line-height: 1.7; }

/* About Image */
.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid var(--line);
}
.about-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-image:hover img {
    transform: scale(1.03);
}

/* Info / Experience / Map / Legal cards */
.info-card,
.experience-card,
.contact-panel,
.map-card,
.legal-card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    padding: 1.5rem;
    box-shadow: var(--shadow);
}
.info-card h3,
.experience-card h3,
.map-card h3,
.legal-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}
.check-list,
.feature-list {
    margin: 1rem 0 0;
    padding-left: 0;
    list-style: none;
}
.check-list li,
.feature-list li {
    margin-bottom: 0.7rem;
    color: var(--muted);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-strong);
    font-weight: 700;
}
.feature-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold-strong);
}
.muted { color: var(--muted); font-size: 0.92rem; margin-top: 1rem; }

/* --- Pricing / Buffet --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.pricing-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
}
.pricing-card--featured {
    border-color: rgba(213,175,75,0.35);
    transform: translateY(-6px);
    background: linear-gradient(180deg, rgba(213,175,75,0.06), rgba(255,255,255,0.025));
}
.pricing-card--featured:hover { transform: translateY(-10px); }
.pricing-badge {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-strong);
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.pricing-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin: 0 0 0.25rem;
    line-height: 1.2;
}
.pricing-time { color: var(--muted); margin: 0.5rem 0; font-size: 0.92rem; }
.pricing-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0.4rem 0 1.25rem;
    color: var(--text);
    letter-spacing: -0.02em;
}
.pricing-card--featured .pricing-value { color: var(--gold-strong); }
.pricing-card ul {
    margin: 0;
    padding-left: 1.1rem;
}
.pricing-card li { margin-bottom: 0.55rem; color: var(--muted); line-height: 1.5; }

/* --- Menu Tabs --- */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.tab {
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.tab:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.tab.active {
    background: linear-gradient(135deg, rgba(213,175,75,0.18), rgba(152,29,45,0.18));
    border-color: rgba(213,175,75,0.32);
    color: var(--text);
}
.tab-panels { min-height: 280px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadePanel 0.4s ease; }
@keyframes fadePanel {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dish Grid */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.dish-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.35rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.dish-card:hover {
    transform: translateY(-3px);
    border-color: rgba(213,175,75,0.2);
}
.dish-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin: 0 0 0.35rem;
    line-height: 1.2;
}
.dish-card p { color: var(--muted); margin: 0 0 0.75rem; font-size: 0.92rem; line-height: 1.5; }
.dish-price {
    display: inline-block;
    font-weight: 800;
    color: var(--gold-strong);
    font-size: 1rem;
}
.dish-tag {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(213,175,75,0.12);
    color: var(--gold-strong);
    border: 1px solid rgba(213,175,75,0.2);
    vertical-align: middle;
}
.dish-tag--spicy {
    background: rgba(192,40,60,0.12);
    color: var(--red-strong);
    border-color: rgba(192,40,60,0.25);
}

/* --- Experience --- */
.experience-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: start;
}
.experience-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    margin: 0 0 1.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
}
/* Experience Image */
.experience-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 1.25rem;
}

.timeline article {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}
.timeline article:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.timeline span {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    border: 1px solid rgba(213,175,75,0.35);
    color: var(--gold-strong);
    font-weight: 800;
    font-size: 1rem;
}
.timeline h3 { margin: 0 0 0.3rem; font-size: 1.15rem; font-weight: 700; }
.timeline p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.gallery-card {
    min-height: 200px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
        radial-gradient(circle at top right, rgba(213,175,75,0.12), transparent 30%);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    position: relative;
}
.gallery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(213,175,75,0.25);
}
.gallery-card--wide { grid-column: span 2; }

/* Gallery cards with images */
.gallery-card--img {
    padding: 0;
    min-height: 260px;
}
.gallery-card--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}
.gallery-card--img:hover img {
    transform: scale(1.06);
}
.gallery-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    z-index: 2;
}
.gallery-tag {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--gold-strong);
    font-size: 0.75rem;
    font-weight: 700;
}
.gallery-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.2;
    color: #fff;
}
.gallery-card p { color: var(--muted); font-size: 0.88rem; margin: 0.3rem 0 0; }

/* --- FAQ --- */
.faq-list {
    display: grid;
    gap: 0.75rem;
    max-width: 900px;
}
.faq-list details {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,0.04);
    padding: 1.1rem 1.3rem;
    box-shadow: var(--shadow);
    transition: border-color 0.3s ease;
}
.faq-list details[open] {
    border-color: rgba(213,175,75,0.2);
}
.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold-strong);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
details[open] summary::after {
    content: '−';
}
.faq-list p { color: var(--muted); margin: 0.75rem 0 0; line-height: 1.65; }
.faq-list a { color: var(--gold-strong); font-weight: 600; }

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: start;
}
.contact-stack {
    display: grid;
    gap: 0;
    margin: 1.5rem 0;
}
.contact-stack article {
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}
.contact-stack article:first-child { border-top: 0; padding-top: 0; }
.contact-stack h3 {
    margin: 0 0 0.35rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-strong);
    font-weight: 700;
}
.contact-stack p { margin: 0; color: var(--text); line-height: 1.6; }
.contact-stack a { color: var(--gold-strong); font-weight: 600; }
.contact-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.contact-side { display: grid; gap: 1rem; }
.map-link {
    display: inline-flex;
    margin-top: 0.75rem;
    color: var(--gold-strong);
    font-weight: 700;
    transition: color 0.2s;
}
.map-link:hover { color: var(--gold); }
.map-card p,
.legal-card p { color: var(--muted); margin: 0 0 0.5rem; line-height: 1.6; }

/* --- Footer --- */
.footer {
    padding: 2.5rem 0 7rem;
    border-top: 1px solid var(--line);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.footer-brand strong { display: block; font-size: 1.1rem; }
.footer-brand p { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.9rem; }
.footer-copy { color: var(--muted); font-size: 0.85rem; margin-top: 0.5rem; }
.footer-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.92rem;
}
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-strong); }

/* --- Mobile CTA --- */
.mobile-cta {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    width: min(92%, 420px);
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 0.6rem;
    border-radius: 20px;
    background: rgba(12,12,13,0.94);
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 60;
}
.mobile-cta a {
    text-align: center;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.92rem;
}
.mobile-cta a:first-child {
    background: linear-gradient(135deg, var(--red-strong), var(--red));
    color: white;
}
.mobile-cta a:last-child {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 6rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(12,12,13,0.94);
    backdrop-filter: blur(14px);
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
    z-index: 50;
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--gold);
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--right { transform: translateX(18px); }
.reveal--right.visible { transform: translateX(0); }
.reveal--up {
    transform: translateY(24px);
    transition-delay: calc(var(--delay, 0) * 0.12s);
}
.reveal--up.visible { transform: translateY(0); }

/* ============================
   Responsive
   ============================ */

@media (max-width: 1080px) {
    .hero-grid,
    .split-layout,
    .pricing-grid,
    .dish-grid,
    .experience-grid,
    .contact-grid,
    .gallery-grid,
    .quick-strip-grid { grid-template-columns: 1fr 1fr; }

    .hero-grid > :first-child,
    .split-layout > :first-child,
    .experience-grid > :first-child,
    .contact-grid > :first-child { grid-column: 1 / -1; }

    .gallery-card--wide { grid-column: span 2; }
    .hero-facts { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 760px) {
    .topbar-inner {
        flex-direction: column;
        justify-content: center;
        padding: 0.5rem 0;
        text-align: center;
        gap: 0.25rem;
    }

    .nav-toggle { display: block; }

    .nav-links {
        position: fixed;
        inset: calc(44px + var(--nav-height)) 1rem auto 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 1rem;
        border-radius: 24px;
        border: 1px solid var(--line);
        background: rgba(12,12,13,0.98);
        box-shadow: var(--shadow);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    .nav-links.open { display: flex; }
    .nav-links > a { font-size: 1.05rem; padding: 0.5rem 0; }

    .hero,
    .section { padding: 4rem 0; }

    .hero h1 { max-width: 100%; font-size: clamp(2.5rem, 8vw, 4rem); }

    .hero-grid,
    .split-layout,
    .pricing-grid,
    .dish-grid,
    .experience-grid,
    .contact-grid,
    .gallery-grid,
    .quick-strip-grid,
    .footer-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero-facts { grid-template-columns: 1fr; }
    .gallery-card--wide { grid-column: auto; }
    .gallery-card--img { min-height: 200px; }
    .contact-actions,
    .hero-cta { flex-direction: column; }
    .btn { width: 100%; }
    .footer { padding-bottom: 8rem; }
    .mobile-cta { display: grid; }
    .back-to-top { bottom: 5.5rem; right: 0.75rem; }

    .section-heading h2,
    .section-copy h2,
    .contact-panel h2,
    .experience-copy h2 { font-size: clamp(2rem, 6vw, 3rem); }
}

@media (max-width: 480px) {
    .quick-strip-grid { grid-template-columns: 1fr; }
    .tabs { gap: 0.4rem; }
    .tab { padding: 0.6rem 0.85rem; font-size: 0.82rem; }
}
