:root {
    color-scheme: dark;
    --bg: #07111f;
    --bg-soft: #0e1a2d;
    --panel: rgba(8, 18, 31, 0.72);
    --panel-strong: rgba(10, 22, 38, 0.88);
    --surface: rgba(255, 255, 255, 0.06);
    --surface-strong: rgba(255, 255, 255, 0.1);
    --text: #f5f7fb;
    --muted: #aab6cc;
    --line: rgba(255, 255, 255, 0.12);
    --accent: #ff9f6e;
    --accent-strong: #ff7d45;
    --accent-cool: #7de3ff;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max-width: 1200px;
}

[data-theme="light"] {
    color-scheme: light;
    --bg: #f8f4ee;
    --bg-soft: #efe5d9;
    --panel: rgba(255, 255, 255, 0.88);
    --panel-strong: rgba(255, 252, 247, 0.97);
    --surface: rgba(62, 36, 18, 0.045);
    --surface-strong: rgba(62, 36, 18, 0.085);
    --text: #1b140f;
    --muted: #5f5146;
    --line: rgba(27, 20, 15, 0.12);
    --accent: #9b4f27;
    --accent-strong: #7a3919;
    --accent-cool: #215f73;
    --shadow: 0 20px 55px rgba(79, 45, 19, 0.1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(125, 227, 255, 0.16), transparent 30%),
        radial-gradient(circle at top right, rgba(255, 159, 110, 0.18), transparent 32%),
        linear-gradient(180deg, var(--bg) 0%, #040915 100%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

[data-theme="light"] body {
    background:
        radial-gradient(circle at top left, rgba(33, 95, 115, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(155, 79, 39, 0.08), transparent 26%),
        linear-gradient(180deg, #fbf8f3 0%, #f4ede4 100%);
}

[data-theme="light"] .ambient {
    opacity: 0.22;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

h1,
h2,
h3,
h4,
p,
ul {
    margin: 0;
}

ul {
    padding: 0;
}

.page-shell {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.ambient {
    position: absolute;
    inset: auto;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    pointer-events: none;
    z-index: -1;
}

.ambient-one {
    top: 4rem;
    left: -8rem;
    background: rgba(125, 227, 255, 0.2);
}

.ambient-two {
    top: 24rem;
    right: -10rem;
    background: rgba(255, 125, 69, 0.25);
}

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

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(4, 10, 19, 0.42);
    border-bottom: 1px solid var(--line);
}

[data-theme="light"] .site-nav {
    background: rgba(255, 250, 245, 0.84);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-icon {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 159, 110, 0.25), rgba(125, 227, 255, 0.22));
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-icon-img {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    object-fit: contain;
}

[data-theme="light"] .brand-icon {
    border-color: rgba(24, 18, 15, 0.08);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.brand-copy strong,
.brand-copy small {
    display: block;
}

.brand-copy strong {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 800;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.78rem;
}

.nav-links,
.footer-links,
.detail-list,
.ribbon-track {
    list-style: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.nav-links a {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.theme-toggle,
.nav-toggle,
.filter-chip {
    border: 1px solid var(--line);
    color: var(--text);
    background: var(--surface);
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.theme-toggle,
.nav-toggle {
    padding: 0.75rem 1rem;
    font-weight: 600;
}

.theme-toggle:hover,
.nav-toggle:hover,
.filter-chip:hover,
.filter-chip.active {
    transform: translateY(-1px);
    border-color: rgba(255, 159, 110, 0.45);
    background: rgba(255, 159, 110, 0.14);
}

.nav-toggle {
    display: none;
}

.hero-section,
.page-hero {
    position: relative;
    padding: 4rem 0 2rem;
}

.hero-grid,
.split-grid,
.visit-grid,
.page-hero-inner {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    min-height: calc(100vh - 8rem);
    padding: 2rem 0 4rem;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.split-copy h2,
.visit-copy h2,
.hours-card h2 {
    font-family: 'Syne', sans-serif;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

.hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 6.6vw, 5.3rem);
}

.page-hero-inner {
    max-width: 55rem;
    padding: 3rem 0 1rem;
}

.page-hero h1 {
    font-size: clamp(3rem, 7vw, 5.3rem);
}

.hero-copy p,
.page-hero p,
.section-heading p,
.split-copy p,
.visit-copy p,
.menu-card p,
.testimonial-card p,
.feature-card p,
.hero-panel p,
.toolbar-note,
.metric-tile span {
    color: var(--muted);
}

.hero-copy p,
.page-hero p {
    max-width: 38rem;
    font-size: 1.08rem;
    margin-top: 1.25rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--accent-cool);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
    color: #fff5ef;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 14px 30px rgba(255, 125, 69, 0.28);
}

.btn-secondary {
    color: var(--text);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .btn-secondary {
    background: rgba(27, 20, 15, 0.025);
}

.btn-secondary:hover {
    border-color: rgba(125, 227, 255, 0.4);
    background: rgba(125, 227, 255, 0.08);
}

.hero-stats,
.experience-grid,
.metrics-grid,
.testimonial-grid,
.menu-grid {
    display: grid;
    gap: 1.25rem;
}

.hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.stat-card,
.metric-tile,
.menu-card {
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: var(--radius-md);
}

.stat-card {
    padding: 1rem;
}

.stat-number {
    display: block;
    margin-bottom: 0.35rem;
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

.stat-label {
    color: var(--muted);
    font-size: 0.9rem;
}

.glass-panel {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, var(--panel), var(--panel-strong));
    backdrop-filter: blur(22px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

[data-theme="light"] .glass-panel {
    backdrop-filter: blur(14px);
}

.hero-visual {
    display: grid;
    gap: 1.5rem;
}

.hero-panel {
    padding: 2rem;
}

.hero-badge,
.showcase-label,
.menu-kicker {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-panel h2 {
    margin: 0.7rem 0;
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
}

.panel-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.panel-metrics span {
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    font-size: 0.85rem;
}

.logo-ribbon {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="light"] .logo-ribbon,
[data-theme="light"] .testimonial-section {
    background: rgba(27, 20, 15, 0.025);
}

.ribbon-track {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
    padding: 1rem 0;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.menu-toolbar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-chip {
    padding: 0.65rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.section {
    padding: 5.5rem 0;
}

.section-heading {
    display: grid;
    gap: 1rem;
    max-width: 48rem;
    margin-bottom: 2rem;
}

.section-heading h2,
.split-copy h2,
.visit-copy h2,
.hours-card h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.experience-grid,
.metrics-grid,
.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.testimonial-card {
    padding: 1.5rem;
}

.feature-tag {
    display: inline-grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 1rem;
    border-radius: 0.8rem;
    background: rgba(255, 159, 110, 0.16);
    color: var(--accent);
    font-weight: 800;
}

.feature-card h3,
.showcase-card h3,
.menu-card h3,
.visit-card h3 {
    margin-bottom: 0.75rem;
    font-family: 'Syne', sans-serif;
}

.split-grid,
.visit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.detail-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.25rem;
}

.detail-list li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--muted);
}

.detail-list li::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-cool));
}

.signature-showcase {
    display: grid;
    gap: 1rem;
}

.showcase-card {
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.showcase-card.warm {
    background: linear-gradient(135deg, rgba(255, 125, 69, 0.16), rgba(255, 255, 255, 0.03));
}

.showcase-card.cool {
    background: linear-gradient(135deg, rgba(125, 227, 255, 0.15), rgba(255, 255, 255, 0.03));
}

.showcase-card strong,
.metric-tile strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
}

.metric-tile {
    padding: 1.4rem;
}

.metric-tile span {
    display: block;
    margin-top: 0.45rem;
}

.testimonial-section {
    background: rgba(255, 255, 255, 0.025);
}

.testimonial-card p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.testimonial-card span {
    color: var(--text);
    font-weight: 700;
}

.visit-card {
    padding: 1.75rem;
}

.site-footer {
    padding: 1.5rem 0 2.5rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--muted);
    font-weight: 600;
}

.footer-note {
    color: var(--muted);
    font-size: 0.92rem;
}

.menu-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.filter-chip {
    padding: 0.75rem 1rem;
    font-weight: 700;
}

.menu-board {
    display: grid;
    gap: 2rem;
}

.menu-category {
    display: grid;
    gap: 1.25rem;
}

.menu-category.is-hidden {
    display: none;
}

.menu-category-header {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 0.5rem 1rem;
}

.menu-category-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

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

.menu-card {
    padding: 1.4rem;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.menu-card:hover {
    transform: translateY(-3px);
    border-color: rgba(125, 227, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .menu-card:hover,
[data-theme="light"] .stat-card,
[data-theme="light"] .metric-tile,
[data-theme="light"] .menu-card {
    background: rgba(255, 255, 255, 0.78);
}

[data-theme="light"] .theme-toggle:hover,
[data-theme="light"] .nav-toggle:hover,
[data-theme="light"] .filter-chip:hover,
[data-theme="light"] .filter-chip.active {
    border-color: rgba(155, 79, 39, 0.28);
    background: rgba(155, 79, 39, 0.08);
}

.featured-item {
    background: linear-gradient(135deg, rgba(255, 159, 110, 0.14), rgba(125, 227, 255, 0.08));
}

.menu-item-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.menu-item-header h3 {
    font-size: 1.35rem;
}

.price {
    white-space: nowrap;
    color: var(--accent);
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
}

.hours-card {
    padding-bottom: 0;
}

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

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .btn,
    .menu-card,
    .theme-toggle,
    .nav-toggle,
    .filter-chip {
        transition: none;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-grid,
    .visit-grid,
    .experience-grid,
    .metrics-grid,
    .testimonial-grid,
    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-copy h1 {
        max-width: 12ch;
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
}

@media (max-width: 820px) {
    .site-nav {
        position: sticky;
    }

    .nav-inner {
        flex-wrap: wrap;
    }

    .nav-actions {
        order: 2;
        margin-left: 0;
        flex: 1;
        justify-content: flex-end;
    }

    .nav-toggle {
        display: inline-flex;
        min-height: 2.8rem;
    }

    .theme-toggle {
        min-height: 2.8rem;
    }

    .nav-links {
        display: none;
        width: 100%;
        order: 3;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        border: 1px solid var(--line);
        border-radius: 1.25rem;
        background: var(--panel-strong);
        margin-top: 0.75rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1rem;
    }

    .hero-grid,
    .split-grid,
    .visit-grid,
    .experience-grid,
    .metrics-grid,
    .testimonial-grid,
    .menu-grid,
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding-top: 2.5rem;
    }

    .hero-grid {
        min-height: auto;
        padding: 1.5rem 0 2.5rem;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        max-width: none;
    }

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

    .hero-stats {
        margin-top: 1.5rem;
        gap: 0.75rem;
    }

    .hero-panel {
        padding: 1.25rem;
    }

    .hero-panel h2 {
        font-size: 1.75rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-heading h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem;
    }
}

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

    .brand-icon-img {
        width: 2.5rem;
        height: 2.5rem;
    }

    .nav-inner {
        padding: 0.75rem 0;
    }

    .brand-copy strong {
        font-size: 0.95rem;
    }

    .brand-copy small {
        font-size: 0.7rem;
    }

    .hero-copy h1,
    .page-hero h1 {
        letter-spacing: -0.05em;
    }

    .theme-toggle,
    .nav-toggle,
    .btn,
    .filter-chip {
        width: 100%;
        justify-content: center;
        min-height: 3rem;
    }

    .nav-actions,
    .filter-group,
    .hero-actions {
        width: 100%;
        gap: 0.75rem;
    }

    .filter-group {
        flex-direction: column;
    }

    .menu-card,
    .feature-card,
    .testimonial-card,
    .metric-tile,
    .stat-card {
        padding: 1rem;
    }

    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .detail-list li {
        padding-left: 1.25rem;
    }

    .logo-ribbon {
        padding: 0.75rem 0;
    }

    .ribbon-track {
        font-size: 0.85rem;
    }
}
