:root {
    --color-background: #151311;
    --color-background-soft: #1e1b19;
    --color-surface: rgba(21, 19, 17, 0.72);
    --color-surface-strong: #221f1d;
    --color-border: rgba(227, 193, 159, 0.18);
    --color-text: #e8e1dd;
    --color-muted: #d2c4b9;
    --color-outline: #9b8f84;
    --color-primary: #e3c19f;
    --color-primary-deep: #c4a484;
    --color-gold: #d4af37;
    --color-charcoal: #0f0f0f;
    --color-cedar: #2b1b17;
    --font-display: "Syne", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    --header-height: 96px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: transparent;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: var(--color-background);
}

body::-webkit-scrollbar-thumb {
    background: #333;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

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

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

.site-container {
    padding-right: clamp(20px, 5vw, 80px);
    padding-left: clamp(20px, 5vw, 80px);
}

.site-background {
    position: fixed;
    inset: 0;
    z-index: -10;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 16%, rgba(227, 193, 159, 0.12), transparent 28%),
        radial-gradient(circle at 86% 10%, rgba(184, 200, 222, 0.1), transparent 24%),
        linear-gradient(135deg, rgba(21, 19, 17, 0.92), rgba(43, 27, 23, 0.84));
}

.site-background::after {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 86%);
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(18px);
}

.navbar {
    min-height: var(--header-height);
    padding: 0;
}

.navbar-brand,
.brand-mark {
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1;
}

.brand-logo {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #c22727;
    background: #fff;
}

.navbar-brand:hover,
.brand-mark:hover {
    color: var(--color-primary);
}

.navbar-nav {
    gap: clamp(0.5rem, 2vw, 1.8rem);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--color-muted);
    padding: 0.5rem 0.25rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: var(--color-primary);
}

.nav-underline {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-underline::after {
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-underline:hover {
    transform: translateY(-1px);
}

.nav-underline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn {
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1;
}

.btn-lg {
    min-height: 54px;
    padding: 1.05rem 1.65rem;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 1px solid var(--color-primary-deep);
    background: var(--color-primary-deep);
    color: var(--color-charcoal);
    font-weight: 700;
}

.btn-gold:hover,
.btn-gold:focus {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-charcoal);
}

.btn-outline-gold {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline-gold:hover,
.btn-outline-gold:focus {
    border-color: var(--color-primary);
    background: rgba(227, 193, 159, 0.12);
    color: var(--color-primary);
}

.btn-shimmer {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.btn-shimmer::before {
    position: absolute;
    top: 0;
    left: -120%;
    width: 54%;
    height: 100%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

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

.btn-shimmer:hover::before {
    left: 145%;
}

.material-symbols-outlined {
    font-size: 1.15em;
    line-height: 1;
    vertical-align: middle;
}

main {
    padding-top: var(--header-height);
}

.section-bg {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.section-bg-media,
.section-bg-media img,
.section-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.section-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(18%);
    opacity: 0.66;
    transform: scale(1.06);
    will-change: transform;
}

.section-bg-overlay {
    z-index: -1;
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(21, 19, 17, 0.82), rgba(21, 19, 17, 0.38) 48%, var(--color-background));
}

.services-overlay {
    background: rgba(15, 15, 15, 0.76);
    backdrop-filter: blur(2px);
}

.hero-section {
    min-height: calc(100vh - var(--header-height));
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1;
}

.hero-title {
    max-width: 980px;
    margin-bottom: 1.8rem;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 7.2rem);
    font-weight: 800;
    line-height: 0.98;
}

.hero-title span {
    color: var(--color-primary);
    font-style: italic;
}

.hero-copy {
    max-width: 740px;
    margin-bottom: 2.4rem;
    color: var(--color-muted);
    font-size: clamp(1rem, 1.4vw, 1.125rem);
}

.menu-section {
    border-top: 1px solid var(--color-border);
    background: rgba(30, 27, 25, 0.54);
    backdrop-filter: blur(12px);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 20px;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.section-heading h2 {
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.55rem);
    font-weight: 700;
    line-height: 1.1;
}

.section-heading p {
    max-width: 520px;
    margin: 0;
    color: var(--color-muted);
}

.action-link,
.service-link,
.journal-link {
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.dish-card,
.service-card,
.journal-card {
    border: 1px solid var(--color-border);
    background: var(--color-surface);
}

.dish-card {
    height: 100%;
    padding: 0.5rem;
}

.image-frame,
.service-image {
    margin: 0;
    overflow: hidden;
    background: var(--color-surface-strong);
}

.ratio-3x4 {
    --bs-aspect-ratio: 133.333333%;
}

.ratio-4x5 {
    --bs-aspect-ratio: 125%;
}

.image-frame img,
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%);
    transition: transform 0.7s ease, filter 0.7s ease, opacity 0.7s ease;
}

.hover-lift {
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}

.hover-lift:hover {
    z-index: 2;
    transform: translateY(-8px);
    box-shadow: 0 20px 42px -24px rgba(0, 0, 0, 0.75);
}

.hover-lift:hover img {
    filter: grayscale(0%);
    transform: scale(1.055);
}

.dish-body {
    padding: 1.5rem 0.5rem 0.65rem;
}

.dish-body h3,
.service-body h3,
.journal-card h3 {
    color: var(--color-text);
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.18;
}

.dish-body h3 {
    margin: 0;
    font-size: 1.25rem;
}

.dish-body p,
.service-body p,
.journal-card p,
.site-footer p {
    color: var(--color-muted);
}

.dish-body p,
.service-body p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.dish-body p {
    margin: 0;
    -webkit-line-clamp: 2;
}

.price {
    color: var(--color-primary);
    font-size: 1.25rem;
    line-height: 1.1;
    white-space: nowrap;
}

.services-section {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.service-card {
    position: relative;
    display: flex;
    min-height: 590px;
    height: 100%;
    overflow: hidden;
    align-items: flex-end;
    backdrop-filter: blur(8px);
}

.service-lunch {
    background: linear-gradient(180deg, rgba(21, 19, 17, 0.74), rgba(80, 58, 33, 0.2));
}

.service-catering {
    background: linear-gradient(180deg, rgba(21, 19, 17, 0.74), rgba(52, 65, 81, 0.24));
}

.service-cuisine {
    background: linear-gradient(180deg, rgba(21, 19, 17, 0.74), rgba(74, 34, 24, 0.25));
}

.service-image.ratio {
    --bs-aspect-ratio: auto;
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    border-bottom: 0;
}

.service-image::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background:
        linear-gradient(180deg, rgba(15, 15, 15, 0.2) 0%, rgba(15, 15, 15, 0.58) 46%, rgba(15, 15, 15, 0.94) 100%),
        linear-gradient(90deg, rgba(15, 15, 15, 0.62), transparent 55%);
}

.service-image figcaption {
    position: absolute;
    top: 1rem;
    right: auto;
    bottom: auto;
    left: 1rem;
    z-index: 3;
    display: inline-flex;
    width: auto;
    height: auto;
    align-items: center;
    padding: 0.45rem 0.65rem;
    border: 1px solid var(--color-border);
    background: rgba(21, 19, 17, 0.88);
    color: var(--color-text);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.service-body {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    min-height: 0;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-top: 1px solid var(--color-border);
    background: linear-gradient(180deg, transparent, rgba(15, 15, 15, 0.72));
}

.service-body h3 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.45rem, 3vw, 1.7rem);
}

.service-body p {
    margin-bottom: 1.6rem;
    -webkit-line-clamp: 3;
}

.service-lunch .service-body {
    border-color: rgba(227, 193, 159, 0.34);
}

.service-catering .service-body {
    border-color: rgba(184, 200, 222, 0.34);
}

.service-cuisine .service-body {
    border-color: rgba(212, 175, 55, 0.32);
}

.service-link {
    margin-top: auto;
}

.journal-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(3rem, 6vw, 4rem);
}

.journal-heading h2 {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 4rem);
    font-weight: 800;
    line-height: 0.98;
}

.journal-heading span {
    color: rgba(227, 193, 159, 0.22);
    font-size: clamp(2rem, 5vw, 3rem);
}

.icon-btn {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.icon-btn:hover,
.icon-btn:focus {
    border-color: var(--color-primary);
    background: var(--color-primary-deep);
    color: var(--color-charcoal);
}

.journal-card {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    padding: clamp(1.4rem, 3vw, 2rem);
}

.journal-card time,
.footer-label {
    color: var(--color-outline);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.journal-card h3 {
    margin: 1.2rem 0 1rem;
    font-size: 1.25rem;
}

.journal-card p {
    flex: 1 1 auto;
    margin-bottom: 2rem;
}

.journal-link {
    width: max-content;
}

.site-footer {
    padding: clamp(4.5rem, 8vw, 6rem) 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-cedar);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.footer-brand-logo {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin-top: 0.7rem;
}

.site-footer a:not(.brand-mark) {
    display: inline-flex;
    margin-top: 0;
    color: var(--color-muted);
}

.site-footer a:not(.brand-mark):hover {
    color: var(--color-gold);
}

.copyright {
    margin: 0;
    font-size: 0.875rem;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

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

.reveal-delay-1 {
    transition-delay: 100ms;
}

.reveal-delay-2 {
    transition-delay: 200ms;
}

.reveal-delay-3 {
    transition-delay: 300ms;
}

@media (max-width: 991.98px) {
    :root {
        --header-height: 82px;
    }

    .navbar {
        min-height: var(--header-height);
    }

    .navbar-collapse {
        padding: 1.25rem 0 1.5rem;
    }

    .navbar-nav {
        gap: 0.4rem;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 0.65rem 0;
    }

    .section-heading,
    .journal-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-section {
        min-height: 760px;
    }
}

@media (max-width: 767.98px) {
    .site-container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .hero-section {
        min-height: 680px;
    }

    .hero-title {
        font-size: clamp(2.85rem, 14vw, 4.25rem);
    }

    .btn-lg {
        width: 100%;
    }

    .section-bg-media img {
        transform: scale(1.02);
    }

    .content-section {
        padding: 4.5rem 0;
    }

    .section-heading {
        margin-bottom: 20px;
    }

    .service-body {
        min-height: 0;
    }

    .site-footer {
        text-align: left;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Brand theme: wine red and white */
:root {
    --color-background: #ffffff;
    --color-background-soft: #f8f5f2;
    --color-surface: #ffffff;
    --color-surface-strong: #f3efeb;
    --color-border: rgba(99, 13, 13, 0.18);
    --color-text: #211815;
    --color-muted: #6f5f59;
    --color-outline: rgba(99, 13, 13, 0.42);
    --color-primary: #c22727;
    --color-primary-deep: #c22727;
    --color-gold: #c22727;
    --color-charcoal: #ffffff;
    --color-cedar: #f3efeb;
    --header-height: 58px;
}

body {
    background: transparent;
    color: #211815;
}

body::-webkit-scrollbar-track {
    background: #ffffff;
}

body::-webkit-scrollbar-thumb {
    background: rgba(99, 13, 13, 0.32);
}

body::-webkit-scrollbar-thumb:hover {
    background: #c22727;
}

.site-background {
    background:
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9)),
        url("../img/dong-son-crane-overlay.jpg") center top / 920px auto repeat,
        linear-gradient(180deg, #ffffff, #f8f5f2);
    background-size: cover;
}

/* .site-background::after {
    opacity: 0.28;
    background:
        radial-gradient(circle at 14% 18%, rgba(194, 39, 39, 0.08), transparent 24%),
        radial-gradient(circle at 84% 10%, rgba(99, 13, 13, 0.05), transparent 26%);
    background-size: auto;
    mask-image: none;
} */

.site-header {
    border-bottom: 1px solid rgba(99, 13, 13, 0.16);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 24px rgba(99, 13, 13, 0.05);
}

.navbar-dark .navbar-toggler {
    border-color: rgba(99, 13, 13, 0.28);
}

.navbar-dark .navbar-toggler-icon {
    filter: invert(11%) sepia(75%) saturate(2635%) hue-rotate(351deg) brightness(80%) contrast(105%);
}

.navbar-brand,
.brand-mark,
.navbar-brand:hover,
.brand-mark:hover {
    color: #c22727;
}

.navbar-brand,
.brand-mark {
    font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.navbar-dark .navbar-nav .nav-link {
    color: #4d3732;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #c22727;
}

.btn-gold {
    border-color: #c22727;
    background: #c22727;
    color: #ffffff;
}

.btn-gold:hover,
.btn-gold:focus {
    border-color: #7a1717;
    background: #7a1717;
    color: #ffffff;
}

.btn-outline-gold {
    border-color: rgba(255, 255, 255, 0.74);
    color: #ffffff;
}

.btn-outline-gold:hover,
.btn-outline-gold:focus {
    border-color: #ffffff;
    background: #ffffff;
    color: #c22727;
}

.hero-section {
    min-height: 520px;
    background:
        radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(135deg, #c22727 0%, #741414 46%, #4f0808 100%);
}

.hero-fragment-slider,
.hero-fragment-slide,
.hero-fragment-strip {
    position: absolute;
    inset: 0;
}

.hero-fragment-slider {
    z-index: 0;
    overflow: hidden;
    background: #630d0d;
}

.hero-fragment-slide {
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.35s ease 0.85s, transform 6s ease;
}

.hero-fragment-slide.is-active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
    transition-delay: 0s;
}

.hero-fragment-slide.is-leaving {
    z-index: 2;
    opacity: 1;
    transform: scale(1);
    transition-delay: 0s;
}

.hero-fragment-strip {
    top: var(--strip-top);
    bottom: auto;
    height: 10%;
    background-image: var(--strip-image), var(--hero-fallback-image);
    background-repeat: no-repeat;
    background-size: 100% 1000%, 100% 1000%;
    background-position: center var(--strip-position), center var(--strip-position);
    filter: grayscale(8%);
    opacity: 0;
    transform: translate3d(0, var(--strip-gather), 0) scaleX(0.12) scaleY(0.78);
    transform-origin: center center;
    transition:
        transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.7s ease;
    transition-delay: var(--strip-delay);
    will-change: transform, opacity;
}

.hero-fragment-slide.is-active .hero-fragment-strip {
    opacity: 0.96;
    transform: translate3d(0, 0, 0) scaleX(1);
    animation: heroStripReveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: var(--strip-delay);
}

.hero-fragment-slide.is-leaving .hero-fragment-strip {
    animation: heroStripConverge 0.85s cubic-bezier(0.76, 0, 0.24, 1) both;
    animation-delay: var(--strip-delay);
}

@keyframes heroStripReveal {
    0% {
        opacity: 0;
        transform: translate3d(0, var(--strip-gather), 0) scaleX(0.12) scaleY(0.78);
    }

    45% {
        opacity: 0.84;
        transform: translate3d(0, var(--strip-gather), 0) scaleX(0.22) scaleY(0.86);
    }

    100% {
        opacity: 0.96;
        transform: translate3d(0, 0, 0) scaleX(1);
    }
}

@keyframes heroStripConverge {
    0% {
        opacity: 0.96;
        transform: translate3d(0, 0, 0) scaleX(1);
    }

    100% {
        opacity: 0;
        transform: translate3d(0, var(--strip-gather), 0) scaleX(0.12) scaleY(0.78);
    }
}

.hero-row {
    min-height: 520px;
    padding-top: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-title {
    max-width: 720px;
    font-size: clamp(2.75rem, 5.6vw, 5.25rem);
}

.hero-copy {
    max-width: 660px;
}

.content-section {
    padding: clamp(4.25rem, 7vw, 3.5rem) 0;
}

.hero-overlay {
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(99, 13, 13, 0.94) 0%, rgba(99, 13, 13, 0.86) 48%, rgba(99, 13, 13, 0.58) 100%),
        linear-gradient(180deg, rgba(99, 13, 13, 0.08), rgba(99, 13, 13, 0.28));
}

.hero-section .site-container {
    z-index: 2;
}

.hero-section .section-bg-media img {
    filter: grayscale(8%);
    opacity: 1;
}

.hero-section .section-bg-media {
    display: none;
}

.eyebrow,
.hero-title,
.hero-title span,
.hero-copy {
    color: #ffffff;
}

.eyebrow {
    border-bottom-color: rgba(255, 255, 255, 0.28);
}

.menu-section,
.journal-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
}

.home-menu-category {
    padding: clamp(1.75rem, 4vw, 2.75rem) 0;
    border-bottom: 1px solid rgba(99, 13, 13, 0.12);
}

.home-menu-category:first-of-type {
    padding-top: 0;
}

.home-menu-category:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.home-menu-category-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.4rem;
}

.home-menu-category-heading > div {
    min-width: 0;
}

.home-menu-category-heading span {
    display: block;
    margin-bottom: 0.35rem;
    color: rgba(99, 13, 13, 0.42);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.home-menu-category-heading h3 {
    margin: 0;
    color: #c22727;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.home-menu-category-heading p {
    max-width: 460px;
    margin: 0;
    color: #6f5f59;
}

.section-heading {
    border-bottom-color: rgba(99, 13, 13, 0.16);
}

.section-heading h2,
.action-link,
.journal-link,
.service-link,
.price {
    color: #c22727;
}

.section-heading p,
.dish-body p,
.journal-card p,
.site-footer p {
    color: #6f5f59;
}

.dish-card,
.journal-card {
    border-color: rgba(99, 13, 13, 0.14);
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(99, 13, 13, 0.06);
}

.dish-body h3,
.journal-card h3 {
    color: #c22727;
}

.services-section {
    border-color: transparent;
    background:
        radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.07), transparent 26%),
        linear-gradient(135deg, #c22727, #741414 48%, #4f0808);
}

.services-section .section-bg-media {
    opacity: 1;
    mix-blend-mode: normal;
}

.services-section .section-bg-media img {
    filter: grayscale(10%);
    opacity: 0.52;
}

.services-overlay {
    background:
        linear-gradient(90deg, rgba(99, 13, 13, 0.9) 0%, rgba(99, 13, 13, 0.78) 52%, rgba(99, 13, 13, 0.64) 100%),
        rgba(99, 13, 13, 0.38);
    backdrop-filter: none;
}

.services-section .section-heading {
    border-bottom-color: rgba(255, 255, 255, 0.24);
}

.services-section .section-heading h2,
.services-section .section-heading p,
.services-section .action-link {
    color: #ffffff;
}

.service-card {
    min-height: 460px;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
}

.service-image img {
    opacity: 0.34;
    filter: grayscale(20%);
}

.service-image::after {
    background:
        linear-gradient(180deg, rgba(99, 13, 13, 0.12) 0%, rgba(99, 13, 13, 0.58) 48%, rgba(67, 5, 5, 0.96) 100%),
        linear-gradient(90deg, rgba(67, 5, 5, 0.62), transparent 56%);
}

.service-image figcaption {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(99, 13, 13, 0.78);
    color: #ffffff;
}

.service-body {
    border-top-color: rgba(255, 255, 255, 0.24);
    background: linear-gradient(180deg, transparent, rgba(67, 5, 5, 0.82));
}

.service-body h3,
.service-body p,
.service-link {
    color: #ffffff;
}

.journal-heading h2 {
    color: #c22727;
}

.journal-heading span {
    color: rgba(99, 13, 13, 0.13);
}

.journal-card time,
.footer-label {
    color: rgba(99, 13, 13, 0.58);
}

.icon-btn {
    border-color: rgba(99, 13, 13, 0.2);
    color: #c22727;
}

.icon-btn:hover,
.icon-btn:focus {
    border-color: #c22727;
    background: #c22727;
    color: #ffffff;
}

.site-footer {
    border-top-color: rgba(99, 13, 13, 0.1);
    background: rgba(243, 239, 235, 0.9);
    backdrop-filter: blur(2px);
}

.site-footer a:not(.brand-mark) {
    color: #4d3732;
}

.site-footer a:not(.brand-mark):hover {
    color: #c22727;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        border-top: 1px solid rgba(99, 13, 13, 0.12);
        background: #ffffff;
    }
}

.page-hero {
    padding: 30px 0px;
    border-bottom: 1px solid rgba(99, 13, 13, 0.12);
    background:
        radial-gradient(circle at 78% 22%, rgba(99, 13, 13, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(248, 245, 242, 0.42));
}

.page-title {
    margin-bottom: 1rem;
    color: #c22727;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4.25rem);
    font-weight: 800;
    line-height: 0.98;
    overflow-wrap: anywhere;
}

.page-copy {
    max-width: 680px;
    margin-bottom: 0;
    color: #6f5f59;
    font-size: clamp(1rem, 1.4vw, 1.125rem);
}

.page-back-link {
    color: #c22727;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.dish-list-section,
.dish-related-section,
.service-list-section,
.news-list-section,
.news-related-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
}

.dish-card > a,
.dish-list-card > a,
.service-list-card > a,
.news-list-card > a {
    display: block;
    height: 100%;
    color: inherit;
}

.news-list-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(99, 13, 13, 0.14);
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(99, 13, 13, 0.06);
}

.news-list-image {
    margin: 0;
    overflow: hidden;
    background: #f3efeb;
}

.news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.news-list-card:hover img {
    transform: scale(1.055);
}

.news-list-body {
    padding: clamp(1.25rem, 3vw, 1.75rem);
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 0.9rem;
    color: rgba(99, 13, 13, 0.58);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.news-list-body h2 {
    margin-bottom: 0.85rem;
    color: #c22727;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 1.7rem);
    font-weight: 700;
    line-height: 1.18;
}

.news-list-body p {
    display: -webkit-box;
    min-height: 4.8em;
    margin-bottom: 1.35rem;
    overflow: hidden;
    color: #6f5f59;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-detail-hero {
    padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
    background:
        radial-gradient(circle at 86% 18%, rgba(99, 13, 13, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 245, 242, 0.82));
}

.news-detail-image {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(99, 13, 13, 0.16);
    background: #f3efeb;
    box-shadow: 0 24px 60px rgba(99, 13, 13, 0.12);
}

.news-detail-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
}

.news-detail-date {
    margin-bottom: 1.4rem;
    color: rgba(99, 13, 13, 0.64);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-list-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(99, 13, 13, 0.14);
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(99, 13, 13, 0.06);
}

.service-list-image {
    margin: 0;
    overflow: hidden;
    background: #f3efeb;
}

.service-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.7s ease;
}

.service-list-card:hover img {
    transform: scale(1.055);
}

.service-list-body {
    padding: clamp(1.25rem, 3vw, 1.75rem);
}

.service-list-body h2 {
    margin-bottom: 0.75rem;
    color: #c22727;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 1.7rem);
    font-weight: 700;
    line-height: 1.18;
}

.service-list-body p {
    display: -webkit-box;
    min-height: 4.8em;
    margin-bottom: 1.35rem;
    overflow: hidden;
    color: #6f5f59;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.dish-list-card .dish-body {
    padding: 1.25rem 0.75rem 0.85rem;
}

.dish-list-card h2 {
    margin: 0;
    color: #c22727;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.18;
}

.dish-meta {
    margin-bottom: 0.75rem;
    color: rgba(99, 13, 13, 0.56);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dish-more {
    margin-top: 1.2rem;
    color: #c22727;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.empty-state {
    margin: 0;
    padding: 2rem 1rem;
    border: 1px solid rgba(99, 13, 13, 0.18);
    color: #c22727;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

.services-section .empty-state {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.booking-hero {
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.booking-section {
    background: rgba(248, 245, 242, 0.84);
    backdrop-filter: blur(1px);
}

.booking-alert {
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(99, 13, 13, 0.28);
    background: rgba(255, 255, 255, 0.92);
    color: #c22727;
}

.booking-section-heading {
    margin-bottom: 1.5rem;
}

.booking-section-heading .eyebrow {
    margin-bottom: 0.45rem;
}

.booking-section-heading h2,
.booking-category h3,
.booking-detail-panel h2 {
    margin: 0;
    color: #c22727;
    font-family: var(--font-display);
    font-weight: 700;
}

.booking-category {
    margin-bottom: 2.75rem;
}

.booking-category-heading {
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(99, 13, 13, 0.16);
}

.booking-menu-list {
    border-top: 1px solid rgba(99, 13, 13, 0.15);
}

.booking-menu-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 1rem;
    min-height: 58px;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(99, 13, 13, 0.15);
}

.booking-menu-row h4,
.booking-menu-row strong {
    margin: 0;
    color: #c22727;
}

.booking-menu-row h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
}

.booking-menu-row strong {
    font-size: 0.95rem;
}

.booking-add-button,
.booking-quantity button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c22727;
    background: #c22727;
    color: #fff;
    cursor: pointer;
}

.booking-add-button {
    width: 34px;
    height: 34px;
}

.booking-add-button:hover,
.booking-add-button:focus-visible {
    background: #fff;
    color: #c22727;
}

.booking-summary,
.booking-detail-panel {
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(99, 13, 13, 0.17);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(99, 13, 13, 0.06);
}

.booking-summary {
    position: sticky;
    top: 1.25rem;
}

.booking-selection-empty {
    margin: 0;
    padding: 1rem 0;
    color: #6f5f59;
}

.booking-selected-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(99, 13, 13, 0.12);
}

.booking-selected-item > div:first-child strong,
.booking-selected-item > div:first-child span {
    display: block;
}

.booking-selected-item > div:first-child strong {
    color: #c22727;
    font-size: 0.86rem;
}

.booking-selected-item > div:first-child span {
    margin-top: 0.25rem;
    color: #6f5f59;
    font-size: 0.72rem;
}

.booking-selected-item > strong {
    color: #c22727;
    font-size: 0.85rem;
    text-align: right;
}

.booking-quantity {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    gap: 0.65rem;
}

.booking-quantity button {
    width: 26px;
    height: 26px;
    font-size: 1rem;
    line-height: 1;
}

.booking-quantity span {
    min-width: 1.25rem;
    color: #c22727;
    font-weight: 700;
    text-align: center;
}

.booking-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 2px solid #c22727;
    color: #c22727;
    font-size: 0.95rem;
    font-weight: 700;
}

.booking-total strong {
    font-size: 1.25rem;
}

.booking-customer-form {
    margin-top: 4rem;
    padding-top: 2.25rem;
    border-top: 1px solid rgba(99, 13, 13, 0.17);
}

.booking-customer-form label {
    display: block;
    margin-bottom: 0.45rem;
    color: #c22727;
    font-size: 0.82rem;
    font-weight: 700;
}

.booking-customer-form label span,
.booking-submit-row p span {
    color: #a61c1c;
}

.booking-customer-form .form-control {
    min-height: 46px;
    border-color: rgba(99, 13, 13, 0.2);
    border-radius: 0;
}

.booking-customer-form textarea.form-control {
    min-height: auto;
}

.booking-customer-form small {
    display: block;
    margin-top: 0.45rem;
    color: #6f5f59;
    font-size: 0.75rem;
}

.booking-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.booking-submit-row p {
    margin: 0;
    color: #6f5f59;
    font-size: 0.78rem;
}

.booking-detail-section {
    background: rgba(248, 245, 242, 0.84);
    backdrop-filter: blur(1px);
}

.booking-detail-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(99, 13, 13, 0.16);
    background: rgba(255, 255, 255, 0.94);
}

.booking-detail-status > span,
.booking-code {
    margin: 0;
    color: #6f5f59;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.booking-status {
    padding: 0.4rem 0.65rem;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.booking-status-warning { background: #fff2cb; color: #805b00; }
.booking-status-info { background: #dcebf7; color: #1d587e; }
.booking-status-success { background: #dff1e5; color: #1d6a39; }

.booking-detail-items {
    margin-top: 1.25rem;
}

.booking-detail-items > div,
.booking-contact-list > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(99, 13, 13, 0.12);
}

.booking-detail-items strong,
.booking-contact-list dd {
    color: #c22727;
}

.booking-contact-list {
    margin: 1.25rem 0 0;
}

.booking-contact-list dt,
.booking-contact-list dd {
    margin: 0;
}

.booking-contact-list dt {
    color: #6f5f59;
    font-size: 0.78rem;
}

.booking-contact-list dd {
    max-width: 65%;
    font-size: 0.86rem;
    text-align: right;
}

.booking-invoice-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1.5rem;
}

@media (max-width: 767.98px) {
    .booking-submit-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .booking-menu-row {
        gap: 0.65rem;
    }

    .booking-summary {
        position: static;
    }
}

.dish-detail-hero,
.service-detail-hero {
    padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
    background:
        radial-gradient(circle at 86% 18%, rgba(99, 13, 13, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 245, 242, 0.82));
}

.dish-detail-image,
.service-detail-image {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(99, 13, 13, 0.16);
    background: #f3efeb;
    box-shadow: 0 24px 60px rgba(99, 13, 13, 0.12);
}

.dish-detail-image img,
.service-detail-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    /* object-fit: cover; */
}

.detail-price {
    margin-bottom: 1.5rem;
    color: #c22727;
    font-family: var(--font-body);
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    font-weight: 700;
}

.ingredient-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.ingredient-list span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(99, 13, 13, 0.18);
    background: #ffffff;
    color: #c22727;
    font-size: 0.75rem;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .site-background {
        background:
            linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.92)),
            url("../img/dong-son-crane-overlay.jpg") center top / 620px auto repeat,
            linear-gradient(180deg, #ffffff, #f8f5f2);
    }

    .home-menu-category-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.8rem;
    }

    .home-menu-category-heading p {
        max-width: 100%;
    }

    .page-hero,
    .dish-detail-hero,
    .service-detail-hero {
        padding-top: 4rem;
    }

    .hero-title,
    .page-title,
    .journal-heading h2,
    .section-heading h2,
    .booking-section-heading h2,
    .news-list-body h2,
    .service-list-body h2,
    .dish-body h2,
    .dish-body h3 {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .page-title {
        font-size: clamp(2.15rem, 10.5vw, 3.05rem);
        line-height: 1.04;
    }

    .journal-heading h2 {
        font-size: clamp(2.05rem, 10vw, 2.85rem);
        line-height: 1.04;
    }

    .journal-heading span {
        font-size: clamp(1.45rem, 7.5vw, 2.05rem);
    }

    .section-heading h2,
    .booking-section-heading h2 {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        line-height: 1.12;
    }

    .brand-mark span {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .price {
        white-space: normal;
        text-align: right;
    }
}
