:root {
    --accent: #ff6b35;
    --accent2: #ffd700;
    --dark: #0d0d0d;
    --dark2: #171717;
    --dark3: #221d19;
    --panel: #15110f;
    --text: #f5f0e8;
    --text-muted: #b8b0a5;
    --line: rgba(255, 255, 255, 0.08);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
}

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

.marker {
    font-family: 'Permanent Marker', cursive;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.site-header__inner,
.section__inner,
.footer__inner {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    min-width: 0;
}

.brand__logo {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    object-fit: cover;
}

.brand__text {
    min-width: 0;
}

.brand__name {
    font-weight: 700;
    display: block;
}

.brand__sub {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.site-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem 1.4rem;
}

.site-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a.is-accent {
    color: var(--accent);
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100svh;
    display: grid;
    align-items: end;
    background: #120d0a;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/images/bar-guests.jpg') center 38% / cover no-repeat;
    transform: scale(1.02);
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.18) 0%, rgba(13, 13, 13, 0.58) 45%, rgba(13, 13, 13, 0.95) 100%);
    z-index: -1;
}

.hero__inner {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 5rem 0 3.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 2rem;
    align-items: end;
}

.hero__eyebrow,
.eyebrow {
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.28rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero__title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 0.95;
    margin: 1rem 0 1.2rem;
    text-shadow: 4px 4px 0 rgba(255, 107, 53, 0.9);
}

.hero__lede {
    max-width: 40rem;
    color: var(--text);
    font-size: 1.18rem;
    margin: 0 0 1.8rem;
}

.hero__meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.6rem;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 0.92rem;
}

.button-row {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
    padding: 1rem 1.5rem;
    border-radius: 0.65rem;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn--primary {
    background: var(--accent);
    color: #1d130d;
}

.btn--ghost {
    border-color: rgba(255, 107, 53, 0.85);
    color: var(--accent);
    background: transparent;
}

.btn--dark {
    background: #18110c;
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.1);
}

.hero__card,
.card,
.info-card {
    background: rgba(17, 13, 11, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.1rem;
    box-shadow: var(--shadow);
}

.hero__card {
    padding: 1.35rem;
}

.hero__card h2,
.hero__card h3 {
    margin: 0 0 0.7rem;
}

.hero__card p {
    margin: 0 0 1rem;
    color: var(--text-muted);
}

.hero__card ul {
    margin: 0 0 1rem;
    padding-left: 1.1rem;
    color: var(--text-muted);
}

.section {
    padding: 4.8rem 0;
}

.section--alt {
    background: var(--dark2);
}

.section--accent {
    background:
        radial-gradient(circle at top left, rgba(255, 107, 53, 0.22), transparent 28rem),
        linear-gradient(135deg, #17110c 0%, #110d0b 100%);
}

.section__header {
    margin-bottom: 2rem;
    max-width: 48rem;
}

.section__title {
    margin: 0.6rem 0 0.9rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.section__text,
.lead,
.muted {
    color: var(--text-muted);
}

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

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.card,
.info-card {
    padding: 1.35rem;
}

.card h3,
.card h4,
.info-card h3,
.info-card h4 {
    margin-top: 0;
    margin-bottom: 0.65rem;
}

.card p,
.info-card p,
.card li,
.info-card li {
    color: var(--text-muted);
}

.card ul,
.info-card ul {
    margin: 0;
    padding-left: 1rem;
}

.image-card {
    overflow: hidden;
    padding: 0;
}

.image-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.03) brightness(0.98);
}

.image-card__body {
    padding: 1.1rem 1.2rem 1.3rem;
}

.image-card--warm img {
    filter: saturate(1.08) contrast(1.06) brightness(0.97) sepia(0.04);
}

.image-card--crisp img {
    filter: saturate(1.03) contrast(1.08) brightness(0.99);
}

.image-card--dark img {
    filter: saturate(1.06) contrast(1.08) brightness(0.92);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border-radius: 1rem;
    background: #15110f;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.gallery-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.07) brightness(0.92);
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 8, 7, 0.92) 0%, rgba(10, 8, 7, 0.18) 55%, rgba(10, 8, 7, 0.05) 100%);
}

.gallery-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
    padding: 1.2rem;
}

.gallery-card__body h3,
.gallery-card__body p {
    margin: 0;
}

.gallery-card__body h3 {
    margin-bottom: 0.45rem;
}

.gallery-card__body p {
    color: #ddd3c8;
}

.hero__spotlight {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.25rem;
}

.hero__spotlight .meta-pill {
    justify-content: center;
    text-align: center;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.5rem;
    align-items: start;
}

.faq {
    display: grid;
    gap: 0.95rem;
}

.faq details {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    padding: 1rem 1.05rem;
}

.faq summary {
    cursor: pointer;
    font-weight: 700;
}

.faq p {
    margin: 0.85rem 0 0;
    color: var(--text-muted);
}

.social-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    text-decoration: none;
}

.cta-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.4rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.18), rgba(255, 215, 0, 0.08));
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 1rem;
}

.cta-banner h3,
.cta-banner p {
    margin: 0;
}

.footer {
    border-top: 1px solid var(--line);
    background: #0b0b0b;
    padding: 2rem 0 3rem;
}

.footer__inner {
    display: grid;
    gap: 1.2rem;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.4rem;
}

.footer__links a {
    color: var(--text-muted);
    text-decoration: none;
}

.microcopy {
    font-size: 0.94rem;
    color: var(--text-muted);
}

.khmer {
    font-weight: 600;
    color: #e8dccc;
}

@media (max-width: 920px) {
    .hero__inner,
    .split,
    .grid-3,
    .grid-4,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-banner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-header__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        gap: 0.75rem 1rem;
        justify-content: flex-start;
    }

    .hero {
        min-height: auto;
    }

    .hero::before {
        inset: 0 0 auto 0;
        height: min(38svh, 290px);
        background-position: center 34%;
        transform: none;
    }

    .hero::after {
        background: linear-gradient(
            to bottom,
            rgba(13, 13, 13, 0.08) 0,
            rgba(13, 13, 13, 0.22) min(22svh, 170px),
            rgba(13, 13, 13, 0.94) min(38svh, 290px),
            rgba(13, 13, 13, 0.98) 100%
        );
    }

    .hero__inner {
        padding: 0 0 2.8rem;
        gap: 1.4rem;
    }

    .hero__content {
        padding-top: calc(min(38svh, 290px) + 1.5rem);
    }

    .hero__eyebrow,
    .eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.2rem;
    }

    .hero__title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .hero__lede {
        font-size: 1.02rem;
        margin-bottom: 1.3rem;
    }

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

    .button-row {
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 0.95rem 1.2rem;
    }

    .section {
        padding: 3.8rem 0;
    }

    .image-card img {
        height: 220px;
    }

    .gallery-card,
    .gallery-card__body {
        min-height: 280px;
    }
}
