:root {
    --bistro-bg: #f1ece4;
    --bistro-surface: #ebe3d7;
    --bistro-surface-2: #f8f4ee;

    --bistro-text: #201814;
    --bistro-muted: #645a52;
    --bistro-line: rgba(32, 24, 20, 0.10);

    --bistro-accent: #4b3124;
    --bistro-accent-hover: #603d2d;
    --bistro-accent-soft: rgba(75, 49, 36, 0.08);

    --bistro-olive: #6e7157;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.bistro-page {
    background:
            linear-gradient(180deg, #f4efe8 0%, #eee7dc 100%);
    color: var(--bistro-text);
    font-family: Inter, system-ui, sans-serif;
}

.bistro-topbar {
    background: var(--bistro-bg);
}



.bistro-shell {
    width: min(1240px, calc(100% - 64px));
    margin: 0 auto;
}

/* HERO */
.bistro-hero {
    position: relative;
    min-height: 82vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.bistro-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.bistro-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
            linear-gradient(
                    90deg,
                    rgba(20, 14, 11, 0.54) 0%,
                    rgba(20, 14, 11, 0.28) 38%,
                    rgba(20, 14, 11, 0.18) 100%
            ),
            linear-gradient(
                    180deg,
                    rgba(20, 14, 11, 0.14) 0%,
                    rgba(20, 14, 11, 0.26) 60%,
                    rgba(20, 14, 11, 0.36) 100%
            );
}

.bistro-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 20px;
    background: linear-gradient(
            180deg,
            rgba(20, 14, 11, 0) 0%,
            rgba(241, 236, 228, 0.18) 55%,
            rgba(241, 236, 228, 0.92) 100%
    );
    z-index: -1;
}

/* TOPBAR */
.bistro-topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 0;
    z-index: 5;
}

.bistro-topbar-inner {
    width: min(1240px, calc(100% - 64px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bistro-brand {
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 0.98rem;
}

.bistro-nav {
    display: flex;
    gap: 24px;
}

.bistro-nav a {
    color: rgba(255,255,255,0.88);
    font-size: 0.94rem;
}

/* HERO CONTENT */
.bistro-hero-content {
    width: min(1240px, calc(100% - 64px));
    margin: 0 auto;
}

.bistro-hero-copy {
    max-width: 720px;
    color: #fff;
}

.bistro-eyebrow {
    margin: 0 0 14px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.84);
}

.bistro-hero h1 {
    margin: 0;
    max-width: 13ch;
    font-size: clamp(2.6rem, 6.5vw, 4.8rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.bistro-hero-text {
    margin: 18px 0 0;
    max-width: 34ch;
    color: rgba(255,255,255,0.9);
    line-height: 1.62;
    font-size: 1.08rem;
}

.bistro-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.bistro-btn {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.bistro-btn-primary {
    background: rgba(255,255,255,0.94);
    color: var(--bistro-text);
    box-shadow: 0 8px 20px rgba(20,14,11,0.10);
}

.bistro-btn-primary:hover {
    background: #fff;
}

.bistro-btn-secondary {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.22);
    backdrop-filter: blur(6px);
}

.bistro-btn-secondary:hover {
    background: rgba(255,255,255,0.18);
}

/* SECTIONS */
.bistro-section {
    padding: 88px 0;
    background: transparent;
}

.bistro-section:nth-of-type(even) {
    background: transparent;
}

.bistro-section-head {
    margin-bottom: 28px;
}

.bistro-kicker {
    margin: 0 0 10px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(32, 24, 20, 0.58);
}

.bistro-section-head h2,
.bistro-contact-copy h2,
.bistro-footer-copy h4 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
    max-width: 11ch;
    color: var(--bistro-text);
}

.bistro-section-text,
.bistro-footer-copy p:last-child {
    margin: 14px 0 0;
    max-width: 50ch;
    color: var(--bistro-muted);
    line-height: 1.72;
    font-size: 1rem;
}

/* MENU */
.bistro-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.bistro-menu-card {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--bistro-line);
    background: var(--bistro-surface-2);
}

.bistro-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.bistro-menu-card h3 {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.bistro-menu-top span {
    white-space: nowrap;
    font-weight: 700;
    color: var(--bistro-muted);
}

.bistro-menu-card p {
    margin: 0;
    color: var(--bistro-muted);
    line-height: 1.65;
}

/* GALLERY */
.bistro-gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.bistro-gallery-item {
    border-radius: 24px;
    overflow: hidden;
    min-height: 240px;
    background: #ddd;
}

.bistro-gallery-item-large {
    grid-row: span 2;
}

.bistro-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTACT */
.bistro-contact-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 20px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid var(--bistro-line);
    background: var(--bistro-surface);
}

.bistro-contact-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.bistro-contact-point {
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--bistro-surface-2);
    border: 1px solid var(--bistro-line);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bistro-contact-point span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bistro-muted);
}

.bistro-contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.bistro-map-placeholder {
    min-height: 340px;
    border-radius: 24px;
    border: 1px dashed var(--bistro-line);
    background:
            linear-gradient(180deg, rgba(95,58,37,0.04), rgba(95,58,37,0.02)),
            repeating-linear-gradient(
                    135deg,
                    rgba(95,58,37,0.03) 0px,
                    rgba(95,58,37,0.03) 14px,
                    rgba(255,255,255,0.06) 14px,
                    rgba(255,255,255,0.06) 28px
            );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bistro-muted);
    font-weight: 600;
}

/* FOOTER */
.bistro-footer {
    padding: 72px 0 40px;
    background: var(--bistro-surface);
    border-top: 1px solid var(--bistro-line);
}

.bistro-footer-inner {
    width: min(1240px, calc(100% - 64px));
    margin: 0 auto;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid var(--bistro-line);
    background: var(--bistro-surface-2);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.bistro-footer-actions {
    display: grid;
    gap: 16px;
    justify-items: start;
}

.bistro-footer-primary {
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--bistro-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
}

.bistro-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bistro-footer-links a {
    padding: 11px 14px;
    border-radius: 999px;
    border: 1px solid var(--bistro-line);
    background: #fff;
    color: var(--bistro-text);
    text-decoration: none;
    font-size: 0.94rem;
}

/* MOBILE */
@media (max-width: 1024px) {
    .bistro-shell,
    .bistro-topbar-inner,
    .bistro-hero-content,
    .bistro-footer-inner {
        width: min(1240px, calc(100% - 40px));
    }

    .bistro-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bistro-gallery-item-large {
        grid-row: span 1;
    }

    .bistro-contact-card,
    .bistro-footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bistro-shell,
    .bistro-topbar-inner,
    .bistro-hero-content,
    .bistro-footer-inner {
        width: min(1240px, calc(100% - 24px));
    }

    .bistro-hero {
        min-height: 76svh;
    }

    .bistro-topbar {
        padding: 14px 0;
    }

    .bistro-nav {
        gap: 14px;
    }

    .bistro-nav a {
        font-size: 0.82rem;
    }

    .bistro-hero h1 {
        font-size: clamp(2.2rem, 11vw, 4rem);
        /*max-width: 9ch;*/
    }

    .bistro-hero-text {
        /*max-width: 26ch;*/
        font-size: 0.98rem;
    }

    .bistro-buttons {
        width: 100%;
    }

    .bistro-btn {
        width: 100%;
    }

    .bistro-section {
        padding: 64px 0;
    }

    .bistro-section-head h2,
    .bistro-contact-copy h2,
    .bistro-footer-copy h4 {
        font-size: clamp(1.75rem, 8vw, 2.4rem);
        max-width: 12ch;
    }

    .bistro-menu-grid,
    .bistro-gallery-grid,
    .bistro-contact-points {
        grid-template-columns: 1fr;
    }

    .bistro-menu-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .bistro-gallery-item,
    .bistro-gallery-item-large {
        min-height: 220px;
    }

    .mobile-hide {
        display: none;
    }

    .bistro-contact-actions {
        gap: 12px;
    }

    .bistro-contact-actions .bistro-btn,
    .bistro-footer-primary {
        width: 100%;
    }

    .bistro-footer-links {
        flex-direction: column;
    }

    .bistro-footer-links a {
        width: 100%;
        text-align: center;
    }
}

.bistro-about-grid,
.bistro-contact-card,
.bistro-footer-inner {
    border: 1px solid var(--bistro-line);
    background: rgba(248, 244, 238, 0.82);
    box-shadow: 0 18px 42px rgba(32, 24, 20, 0.05);
}

.bistro-menu-group,
.bistro-menu-card {
    background: rgba(255, 250, 245, 0.72);
    border: 1px solid rgba(32, 24, 20, 0.09);
    box-shadow: 0 10px 24px rgba(32, 24, 20, 0.04);
}

.bistro-brand {
    color: var(--bistro-text);
    text-decoration: none;
}

.bistro-nav a {
    color: var(--bistro-text);
    text-decoration: none;
    font-size: 0.8rem;
}

.bistro-about-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    padding: 28px;
    border-radius: 30px;
    border: 1px solid var(--bistro-line);
    background: rgba(248, 244, 238, 0.82);
    box-shadow: 0 18px 42px rgba(32, 24, 20, 0.05);
    align-items: center;
}

.bistro-about-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
    max-width: 12ch;
}

.bistro-about-visual {
    min-width: 0;
}

.bistro-about-image-wrap {
    width: 100%;
}

.bistro-about-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.bistro-about-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.bistro-about-point {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 250, 245, 0.9);
    border: 1px solid rgba(32, 24, 20, 0.10);
    color: var(--bistro-text);
    font-size: 0.9rem;
    font-weight: 600;
}

.bistro-menu-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
}

.bistro-menu-group {
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 250, 245, 0.72);
    border: 1px solid rgba(32, 24, 20, 0.09);
    box-shadow: 0 10px 24px rgba(32, 24, 20, 0.04);
}

.bistro-menu-group-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(32, 24, 20, 0.08);
}

.bistro-menu-group-head h3 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.bistro-menu-group-head span {
    white-space: nowrap;
    font-size: 0.88rem;
    color: var(--bistro-muted);
    font-weight: 700;
}

.bistro-menu-items {
    display: grid;
    gap: 16px;
}

.bistro-menu-item {
    display: grid;
    gap: 8px;
}

.bistro-menu-item + .bistro-menu-item {
    padding-top: 14px;
    border-top: 1px solid rgba(32, 24, 20, 0.07);
}

.bistro-menu-item-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.bistro-menu-item-top strong {
    font-size: 1rem;
    line-height: 1.35;
}

.bistro-menu-item-top span {
    white-space: nowrap;
    font-weight: 700;
    color: var(--bistro-muted);
}

.bistro-menu-item p {
    margin: 0;
    color: var(--bistro-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.bistro-gallery-scroll {
    overflow-x: auto;
    padding-bottom: 8px;
    margin-top: 30px;
    scrollbar-width: thin;
    scrollbar-color: rgba(32, 24, 20, 0.25) transparent;
}

.bistro-gallery-scroll::-webkit-scrollbar {
    height: 10px;
}

.bistro-gallery-scroll::-webkit-scrollbar-thumb {
    background: rgba(32, 24, 20, 0.20);
    border-radius: 999px;
}

.bistro-gallery-track {
    display: flex;
    gap: 16px;
    width: max-content;
    min-width: 100%;
}

.bistro-gallery-card {
    flex: 0 0 clamp(240px, 28vw, 360px);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,0.55);
    box-shadow: 0 12px 26px rgba(32, 24, 20, 0.06);
}

.bistro-gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.bistro-contact-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    padding: 28px;
    border-radius: 30px;
    border: 1px solid var(--bistro-line);
    background: rgba(248, 244, 238, 0.82);
    box-shadow: 0 18px 42px rgba(32, 24, 20, 0.05);
}

.bistro-contact-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.bistro-contact-point {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 250, 245, 0.78);
    border: 1px solid rgba(32, 24, 20, 0.09);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bistro-contact-point span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bistro-muted);
}

.bistro-map-box {
    min-width: 0;
}

.bistro-map-placeholder {
    min-height: 340px;
    height: 100%;
    border-radius: 24px;
    border: 1px dashed var(--bistro-line);
    background:
            linear-gradient(180deg, rgba(95,58,37,0.04), rgba(95,58,37,0.02)),
            repeating-linear-gradient(
                    135deg,
                    rgba(95,58,37,0.03) 0px,
                    rgba(95,58,37,0.03) 14px,
                    rgba(255,255,255,0.06) 14px,
                    rgba(255,255,255,0.06) 28px
            );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bistro-muted);
    font-weight: 600;
}

.bistro-footer {
    padding: 72px 0 40px;
    background: transparent;
}

.bistro-footer-inner {
    padding: 28px;
    border-radius: 28px;
    border: 1px solid var(--bistro-line);
    background: rgba(248, 244, 238, 0.82);
    box-shadow: 0 18px 42px rgba(32, 24, 20, 0.05);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.bistro-footer-actions {
    display: grid;
    gap: 16px;
    justify-items: start;
}

.bistro-footer-primary {
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--bistro-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
}

.bistro-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bistro-footer-links a {
    padding: 11px 14px;
    border-radius: 999px;
    border: 1px solid var(--bistro-line);
    background: rgba(255,255,255,0.92);
    color: var(--bistro-text);
    text-decoration: none;
    font-size: 0.94rem;
}

@media (max-width: 1024px) {
    .bistro-shell,
    .bistro-topbar-inner,
    .bistro-hero-content,
    .bistro-footer-inner {
        width: min(1240px, calc(100% - 40px));
    }

    .bistro-about-card,
    .bistro-contact-card,
    .bistro-footer-inner {
        grid-template-columns: 1fr;
    }

    .bistro-menu-columns {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .bistro-shell,
    .bistro-topbar-inner,
    .bistro-hero-content,
    .bistro-footer-inner {
        width: min(1240px, calc(100% - 24px));
    }

    .bistro-hero {
        min-height: 76svh;
    }

    .bistro-topbar {
        padding: 14px 0;
    }

    .bistro-nav {
        gap: 14px;
    }

    .bistro-nav a {
        font-size: 0.82rem;
    }

    .bistro-section {
        padding: 64px 0;
    }

    .bistro-about-card,
    .bistro-contact-card,
    .bistro-footer-inner {
        grid-template-columns: 1fr;
        padding: 20px;
        border-radius: 22px;
    }

    .bistro-about-image {
        min-height: 260px;
    }

    .bistro-section-head h2,
    .bistro-about-copy h2,
    .bistro-contact-copy h2,
    .bistro-footer-copy h4 {
        font-size: clamp(1.75rem, 8vw, 2.4rem);
        max-width: 12ch;
    }

    .bistro-menu-columns,
    .bistro-contact-points {
        grid-template-columns: 1fr;
    }

    .bistro-gallery-card {
        flex: 0 0 82vw;
    }

    .bistro-gallery-card img {
        height: 260px;
    }

    .bistro-contact-actions {
        gap: 12px;
    }

    .bistro-contact-actions .bistro-btn,
    .bistro-footer-primary {
        width: 100%;
    }

    .bistro-footer-links {
        flex-direction: column;
    }

    .bistro-footer-links a {
        width: 100%;
        text-align: center;
    }
}