:root {
    --ink: #ffffff;
    --muted: rgba(255, 255, 255, .72);
    --paper: #000000;
    --soft: #000000;
    --gold: #c99a3a;
    --red: #d9212f;
    --line: rgba(255, 255, 255, .16);
    --site-width: min(1320px, calc(100% - 72px));
    --menu-width: var(--site-width);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Lato, Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    font-size: 15px;
    line-height: 1.55;
}

a {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #000;
    color: #fff;
    backdrop-filter: blur(10px);
}

.nav-shell {
    width: var(--site-width);
    margin: 0 auto;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .96rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    min-width: 230px;
    padding: 10px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 20px 46px rgba(0, 0, 0, .55);
    z-index: 30;
}

.nav-links.open {
    display: grid;
    gap: 2px;
}

.nav-links a {
    display: block;
    padding: 12px 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: .84rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-links a:last-child {
    border-bottom: 0;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-social,
.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, .18);
}

.language-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.language-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.language-switcher button {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .72);
    padding: 6px 7px;
    font: inherit;
    font-size: .68rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.language-switcher button:hover,
.language-switcher button.active {
    background: var(--gold);
    color: #000;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    text-decoration: none;
    background: #000;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.social-icon:hover {
    border-color: rgba(203, 157, 55, .75);
    color: var(--gold);
    transform: translateY(-1px);
}

.social-icon svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.nav-toggle {
    display: block;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: transparent;
    padding: 10px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    min-height: 650px;
    background-size: cover;
    background-position: center right;
    color: #fff;
    display: flex;
    align-items: center;
}

.hero-inner {
    width: var(--site-width);
    margin: 0 auto;
    padding: 76px 0;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .7rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lux-flag {
    display: inline-block;
    width: 28px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, .55);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .3);
    background: linear-gradient(
        to bottom,
        #ef3340 0 33.333%,
        #fff 33.333% 66.666%,
        #00a3e0 66.666% 100%
    );
}

.hero h1 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(2.5rem, 6.2vw, 5.6rem);
    line-height: .95;
    text-transform: uppercase;
}

.hero-copy {
    max-width: 500px;
    font-size: 1.08rem;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .86);
    line-height: 1.55;
}

.hero-signature {
    max-width: 520px;
    margin: 12px 0 0;
    color: var(--gold);
    font-size: .95rem;
    font-weight: 900;
    letter-spacing: .02em;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: .82rem;
    letter-spacing: .08em;
    cursor: pointer;
}

.button.primary {
    background: var(--red);
    color: #fff;
}

.button.secondary {
    border-color: currentColor;
    color: inherit;
    background: transparent;
}

.quick-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #000;
    color: #fff;
}

.quick-info div {
    padding: 24px;
    text-align: center;
    font-weight: 900;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.section {
    padding: 72px 0;
}

.intro-grid,
.contact-grid,
.section-heading,
.menu-list,
.gallery-grid,
.photo-band,
.reservation-shell {
    width: var(--site-width);
    margin: 0 auto;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
    gap: 56px;
    align-items: center;
}

.intro-grid h2,
.photo-band h2,
.contact-panel h2,
.section-heading h2 {
    margin: 0 0 18px;
    font-size: clamp(1.75rem, 3.2vw, 3rem);
    line-height: 1.04;
}

.intro-grid p {
    font-size: .98rem;
    color: var(--muted);
}

.chef-card {
    margin: 0;
    background: #000;
}

.chef-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.photo-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
    gap: 44px;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 32px;
}

.photo-band img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.menu-section {
    background: var(--soft);
}

.reservation-section {
    background: #000;
    color: #fff;
}

.reservation-shell {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
    gap: 36px;
    align-items: center;
}

.reservation-shell h2 {
    margin: 0 0 12px;
    font-size: clamp(1.75rem, 3.1vw, 2.8rem);
    line-height: 1.04;
}

.reservation-shell p:not(.eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, .74);
}

.wedely-order-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 18px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .16);
    background: #000;
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.wedely-order-card:hover {
    border-color: rgba(255, 104, 36, .72);
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .035);
}

.wedely-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 148px;
    min-height: 76px;
    padding: 0;
    background: #000;
}

.wedely-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.wedely-order-card strong,
.wedely-order-card small {
    display: block;
}

.wedely-order-card strong {
    font-size: 1.02rem;
    font-weight: 900;
}

.wedely-order-card small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .7);
    font-weight: 700;
}

.reservation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.reservation-widget {
    min-height: 160px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: #000;
}

.reservation-widget-copy {
    display: grid;
    gap: 12px;
    align-content: center;
    min-height: 264px;
}

.reservation-widget-copy h3 {
    margin: 0;
    font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.reservation-widget-copy p:not(.eyebrow) {
    margin: 0 0 10px;
}

.reservation-fallback {
    color: rgba(255, 255, 255, .58);
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.4;
}

.reservation-fallback a {
    color: var(--gold);
    text-decoration: none;
}

.reservation-fallback a:hover {
    text-decoration: underline;
}

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

.menu-card-block,
.menu-feature-grid {
    width: var(--menu-width);
    margin: 0 auto 58px;
}

.menu-section .section-heading,
.menu-section .menu-list {
    width: var(--menu-width);
}

.menu-section .section-heading {
    display: grid;
    justify-items: center;
    text-align: center;
}

.menu-section .section-heading .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.menu-section .section-heading .eyebrow::before,
.menu-section .section-heading .eyebrow::after {
    content: "";
    width: 46px;
    height: 1px;
    background: var(--gold);
}

.menu-section .section-heading h2 {
    position: relative;
    margin-bottom: 0;
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    line-height: 1;
}

.menu-section .section-heading h2::after {
    content: "";
    display: block;
    width: 76px;
    height: 2px;
    margin: 18px auto 0;
    background: var(--gold);
}

.menu-card-block h3 {
    margin: 0 0 26px;
    font-size: clamp(1.3rem, 1.8vw, 1.85rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.menu-card-grid,
.menu-feature-grid {
    display: grid;
    gap: 16px;
    align-items: stretch;
}

.menu-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(34px, 4vw, 64px);
    row-gap: clamp(30px, 3.6vw, 48px);
}

.menu-feature-grid {
    grid-template-columns: repeat(4, 1fr);
}

.menu-card,
.menu-feature-grid figure {
    margin: 0;
    color: #fff;
}

.menu-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
    min-height: 0;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 24px;
}

.menu-card.without-image {
    display: block;
    min-height: 0;
}

.menu-card img,
.menu-feature-grid img {
    width: 100%;
    object-fit: cover;
    background: #000;
}

.menu-card img {
    width: 190px;
    height: 120px;
    display: block;
    aspect-ratio: 29 / 18;
    max-width: none;
    object-position: center center;
}

.menu-card-content {
    display: flex;
    flex-direction: column;
    min-height: 120px;
    padding: 0;
    min-width: 0;
}

.menu-card h4 {
    margin: -3px 0 10px;
    font-size: clamp(1rem, 1.15vw, 1.14rem);
    line-height: 1.18;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    text-transform: capitalize;
}

.menu-card h4 span {
    display: inline-block;
    margin-right: .32em;
    color: var(--gold);
    white-space: nowrap;
}

.menu-card p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(.82rem, .9vw, .88rem);
    font-weight: 700;
    line-height: 1.34;
    overflow-wrap: anywhere;
    text-transform: capitalize;
}

.menu-card-meta {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 32px;
    align-items: end;
    color: #fff;
    margin-top: auto;
}

.menu-card-meta span {
    display: grid;
    gap: 5px;
}

.menu-card-meta small {
    color: var(--gold);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.menu-card-meta strong {
    display: inline-flex;
    align-items: baseline;
    gap: .16em;
    color: inherit;
    font-size: clamp(.9rem, 1vw, 1rem);
    line-height: 1;
    white-space: nowrap;
}

.price-value {
    color: #fff;
    display: inline-block;
}

.currency-symbol {
    color: var(--gold);
    display: inline-block;
    margin-left: .08em;
}

.piece-count {
    color: var(--gold);
    display: inline-block;
}

.piece-unit {
    color: #fff;
    display: inline-block;
}

.product-code {
    color: var(--gold);
    font-weight: 900;
    white-space: nowrap;
}

.menu-feature-grid img {
    height: 220px;
    aspect-ratio: auto;
}

.menu-feature-grid figcaption {
    padding: 10px 12px;
    min-height: 48px;
    font-weight: 900;
    font-size: .8rem;
}

.menu-list {
    columns: 2 420px;
    column-gap: 48px;
}

.menu-section-title,
.menu-category,
.dish-name,
.menu-line,
.dish-note {
    break-inside: avoid;
}

.main-menu-panel {
    display: block;
    column-span: all;
    margin: 18px 0 34px;
}

.main-menu-panel > summary {
    list-style: none;
}

.main-menu-panel > summary::-webkit-details-marker {
    display: none;
}

.main-menu-summary {
    cursor: pointer;
    display: grid;
    justify-items: center;
    gap: 0;
    outline-offset: 6px;
}

.main-menu-summary .menu-section-title {
    margin-bottom: 8px;
}

.main-menu-arrow {
    position: relative;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(203, 157, 55, .7);
    border-radius: 50%;
    background: rgba(203, 157, 55, .08);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .08), 0 0 22px rgba(203, 157, 55, .16);
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.main-menu-arrow::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 43%;
    width: 13px;
    height: 13px;
    border-right: 3px solid rgba(255, 255, 255, .78);
    border-bottom: 3px solid rgba(255, 255, 255, .78);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform .2s ease, border-color .2s ease;
}

.main-menu-panel[open] > .main-menu-summary .main-menu-arrow {
    background: rgba(203, 157, 55, .16);
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(203, 157, 55, .18), 0 0 28px rgba(203, 157, 55, .22);
}

.main-menu-panel[open] > .main-menu-summary .main-menu-arrow::before {
    top: 57%;
    transform: translate(-50%, -50%) rotate(225deg);
    border-color: var(--gold);
}

.menu-section-title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin: 34px 0 22px;
    padding: 18px 0 14px;
    border-top: 1px solid rgba(203, 157, 55, .45);
    border-bottom: 1px solid rgba(203, 157, 55, .24);
    color: var(--ink);
    font-size: 1.35rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .08em;
    column-span: all;
}

.menu-section-title > img,
.menu-list .menu-section-title > img {
    flex: 0 0 30px;
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
    margin: 0 auto;
    object-fit: contain;
}

.menu-section-title span {
    position: relative;
    z-index: 1;
}

.menu-section-title::before,
.menu-section-title::after {
    content: "";
    position: absolute;
    top: calc(50% + 17px);
    width: min(18vw, 180px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(203, 157, 55, .65));
}

.menu-section-title::before {
    left: 0;
}

.menu-section-title::after {
    right: 0;
    transform: rotate(180deg);
}

.menu-category {
    margin: 20px 0 7px;
    color: var(--red);
    font-size: 1.02rem;
    text-transform: uppercase;
}

.menu-section-note {
    margin: -2px 0 18px;
    color: var(--gold);
    font-size: .84rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    column-span: all;
}

.lunch-info-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    line-height: 1.5;
    text-align: left;
}

.lunch-service-label,
.lunch-service-top {
    color: var(--gold);
    white-space: nowrap;
}

.lunch-service-top {
    margin: 24px 0 22px;
    text-align: center;
}

.lunch-note-line {
    display: flex;
    justify-content: center;
    margin: 22px 0 22px;
}

.lunch-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: 720px;
    padding: 11px 16px;
    border: 1px solid rgba(203, 157, 55, .52);
    border-left: 4px solid var(--gold);
    background: rgba(255, 255, 255, .035);
    color: rgba(255, 255, 255, .82);
    text-align: right;
    letter-spacing: .02em;
}

.lunch-note small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 10px;
    border: 1px solid rgba(203, 157, 55, .55);
    color: var(--gold);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.lunch-note strong {
    color: rgba(255, 255, 255, .82);
    font-size: .78rem;
    font-weight: 900;
    line-height: 1.35;
}

.dish-name {
    margin: 15px 0 2px;
    padding: 0;
    background: transparent;
    font-size: .94rem;
}

.dish-note,
.menu-line {
    margin: 0 0 6px;
    background: transparent;
}

.dish-note {
    color: var(--muted);
    font-size: .88rem;
    padding: 0;
}

.menu-line {
    border-bottom: 1px solid var(--line);
    padding-bottom: 6px;
    color: var(--ink);
    font-weight: 400;
    font-size: .9rem;
    margin-bottom: 6px;
}

.menu-subtitle-line {
    margin: 14px 0 8px;
    border-bottom-color: rgba(203, 157, 55, .42);
    color: var(--gold);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.wine-group-line {
    margin: 16px 0 7px;
    border-bottom-color: rgba(203, 157, 55, .48);
    color: var(--gold);
    font-weight: 900;
    letter-spacing: .04em;
}

.wine-region-line {
    margin: 10px 0 6px;
    color: var(--ink);
    font-weight: 900;
}

.wine-region-name {
    color: var(--ink);
    font-weight: 900;
}

.menu-product-line {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) max-content max-content;
    column-gap: 18px;
    row-gap: 6px;
    align-items: baseline;
    width: 100%;
    padding: 12px 0;
    font-size: .94rem;
}

.menu-price-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    column-gap: 18px;
    align-items: baseline;
    width: 100%;
    padding: 9px 0;
    font-size: .92rem;
}

.pichet-table {
    display: grid;
    gap: 10px;
    margin: 18px 0 12px;
    padding: 16px 0 14px;
    border-top: 1px solid rgba(203, 157, 55, .5);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.pichet-table-head,
.pichet-table-row {
    display: grid;
    grid-template-columns: minmax(170px, 1fr) repeat(3, minmax(70px, max-content));
    gap: 16px;
    align-items: baseline;
}

.pichet-table-head {
    color: var(--ink);
    font-size: .92rem;
    font-weight: 900;
}

.pichet-table-head strong {
    color: var(--ink);
    letter-spacing: .02em;
}

.pichet-table-row {
    color: var(--ink);
    font-size: .92rem;
}

.pichet-table-row strong {
    color: var(--ink);
    font-weight: 800;
}

.pichet-table span {
    text-align: right;
    white-space: nowrap;
}

.menu-price-name {
    color: var(--ink);
    font-weight: 400;
    line-height: 1.25;
    text-transform: capitalize;
}

.menu-product-code {
    grid-column: 1;
}

.menu-product-main {
    display: contents;
}

.menu-product-main .product-code {
    grid-column: 1;
}

.menu-product-name {
    grid-column: 2;
    display: grid;
    gap: 4px;
    color: var(--ink);
    font-weight: 400;
    line-height: 1.24;
    overflow-wrap: anywhere;
    text-transform: capitalize;
}

.menu-product-name strong {
    font: inherit;
    font-weight: 500;
}

.menu-product-description {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 400;
    line-height: 1.28;
    text-transform: capitalize;
}

.menu-product-price,
.menu-product-pieces {
    display: inline-flex;
    align-items: baseline;
    gap: .16em;
    font-weight: 900;
    line-height: 1.15;
    white-space: nowrap;
    justify-self: end;
}

.menu-product-price {
    grid-column: 3;
    text-align: right;
}

.menu-product-pieces {
    grid-column: 4;
    color: #fff;
    text-align: right;
}

.plats-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px clamp(56px, 6vw, 96px);
    column-span: all;
    margin: 8px 0 44px;
}

.divers-desserts-columns {
    grid-template-columns: minmax(0, 1fr);
}

.divers-desserts-panel {
    width: min(100%, 900px);
    margin: 0 auto;
}

.plats-column {
    min-width: 0;
}

.plats-panel {
    break-inside: avoid;
}

.plats-column-title {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 18px;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px;
    padding: 14px 0 12px;
    border-top: 1px solid rgba(203, 157, 55, .42);
    border-bottom: 1px solid rgba(203, 157, 55, .24);
    color: var(--ink);
    font-size: 1.04rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
}

.plats-column-title::-webkit-details-marker {
    display: none;
}

.plats-title-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    min-width: 0;
}

.plats-title-content strong {
    font: inherit;
}

.plats-column-title img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.plats-title-arrow {
    width: 12px;
    height: 12px;
    border-top: 3px solid rgba(255, 255, 255, .35);
    border-left: 3px solid rgba(255, 255, 255, .35);
    transform: rotate(225deg);
    transition: transform .2s ease;
    justify-self: end;
    margin-right: 4px;
}

.plats-panel[open] .plats-title-arrow {
    transform: rotate(45deg);
}

.plats-column-lines {
    display: grid;
    gap: 2px;
}

.drinks-columns {
    align-items: start;
}

.drinks-column .plats-column-title {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    gap: 12px;
    text-align: left;
}

.drinks-column .plats-title-content {
    flex-direction: row;
    justify-content: flex-start;
}

.drinks-column-wide {
    grid-column: 1 / -1;
}

.sushi-garden-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px clamp(70px, 8vw, 128px);
    margin: 24px 0 48px;
    column-span: all;
}

.sushi-garden-panel {
    padding-top: 4px;
    break-inside: avoid;
}

.sushi-garden-panel summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    align-items: center;
    gap: 12px;
    padding: 0 4px 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .26);
    cursor: pointer;
    list-style: none;
}

.sushi-garden-panel summary::-webkit-details-marker {
    display: none;
}

.sushi-garden-panel h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.06rem, 1.55vw, 1.42rem);
    font-weight: 900;
    line-height: 1.12;
    text-transform: uppercase;
}

.sushi-garden-panel summary span {
    width: 12px;
    height: 12px;
    border-top: 3px solid rgba(255, 255, 255, .35);
    border-left: 3px solid rgba(255, 255, 255, .35);
    transform: rotate(45deg);
    transition: transform .2s ease;
}

.sushi-garden-panel:not([open]) summary span {
    transform: rotate(225deg);
}

.sushi-garden-lines {
    display: grid;
    gap: 11px;
    margin: 18px 0 22px;
}

.sushi-garden-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: baseline;
    gap: 10px;
    color: var(--ink);
}

.sushi-garden-row strong,
.sushi-garden-row span,
.sushi-garden-row em {
    font-size: clamp(.82rem, .98vw, .95rem);
    line-height: 1.25;
}

.sushi-garden-row strong {
    font-weight: 500;
}

.sushi-garden-row small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: .74rem;
    font-weight: 400;
    line-height: 1.28;
}

.sushi-garden-row > span,
.sushi-garden-row em {
    display: inline-flex;
    align-items: baseline;
    gap: .16em;
    color: var(--gold);
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
}

.sushi-garden-row > span {
    color: #fff;
}

.sushi-garden-row .currency-symbol {
    color: var(--gold);
}

.sushi-garden-panel img {
    width: 100%;
    height: clamp(240px, 22vw, 340px);
    object-fit: contain;
    object-position: top center;
    display: block;
    margin: 18px 0 20px;
    background: #000;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px clamp(72px, 8vw, 128px);
    margin: 24px 0 48px;
    column-span: all;
}

.bento-panel {
    padding-top: 4px;
    break-inside: avoid;
}

.bento-panel summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    align-items: center;
    gap: 12px;
    padding: 0 4px 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .26);
    cursor: pointer;
    list-style: none;
}

.bento-panel summary::-webkit-details-marker {
    display: none;
}

.bento-panel h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.05rem, 1.45vw, 1.35rem);
    font-weight: 900;
    line-height: 1.12;
    text-transform: uppercase;
}

.bento-panel summary span {
    width: 12px;
    height: 12px;
    border-top: 3px solid rgba(255, 255, 255, .35);
    border-left: 3px solid rgba(255, 255, 255, .35);
    transform: rotate(45deg);
    transition: transform .2s ease;
}

.bento-panel:not([open]) summary span {
    transform: rotate(225deg);
}

.bento-panel img {
    width: 100%;
    height: clamp(240px, 22vw, 340px);
    object-fit: contain;
    object-position: top center;
    display: block;
    margin: 18px 0 20px;
    background: #000;
}

.bento-lines {
    display: grid;
    gap: 11px;
    margin: 18px 0 0;
}

.plats-panel .plats-column-lines {
    margin-top: 18px;
}

.bento-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: baseline;
    gap: 18px;
    color: var(--ink);
    padding: 2px 0;
}

.bento-row strong,
.bento-row em {
    font-size: clamp(.82rem, .98vw, .95rem);
    line-height: 1.25;
}

.bento-row strong {
    font-weight: 500;
    text-transform: capitalize;
}

.bento-row small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: .74rem;
    font-weight: 400;
    line-height: 1.28;
}

.bento-row em {
    display: inline-flex;
    align-items: baseline;
    gap: .16em;
    color: var(--gold);
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
    justify-self: end;
}

.bento-total {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 34px;
    justify-content: start;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(203, 157, 55, .35);
}

.bento-total span {
    display: grid;
    gap: 5px;
}

.bento-total small {
    color: var(--gold);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.bento-total strong {
    display: inline-flex;
    align-items: baseline;
    gap: .16em;
    color: inherit;
    font-size: clamp(.95rem, 1.08vw, 1.05rem);
    line-height: 1;
    white-space: nowrap;
}

.bento-total span:last-child {
    justify-self: start;
    text-align: left;
}

.menu-card p::first-letter,
.dish-note::first-letter,
.menu-line::first-letter,
.sushi-garden-row small::first-letter,
.bento-row strong::first-letter,
.bento-row small::first-letter,
.intro-grid p::first-letter,
.reservation-shell p:not(.eyebrow)::first-letter,
.contact-panel p::first-letter {
    text-transform: uppercase;
}

.menu-section-banner {
    display: block;
    width: var(--site-width);
    max-width: var(--site-width);
    margin: 54px auto 24px;
    -webkit-column-span: all;
    column-span: all;
    overflow: hidden;
    background: #000;
    break-inside: avoid;
}

.menu-section-banner img {
    display: block;
    width: 100%;
    height: clamp(180px, 22vw, 320px);
    object-fit: cover;
    object-position: center;
}

.menu-category-feature {
    position: relative;
    display: block;
    margin: 26px 0 32px;
    overflow: hidden;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    break-inside: avoid;
    column-span: all;
}

.menu-category-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .05) 52%, rgba(0, 0, 0, .55));
    pointer-events: none;
}

.menu-category-feature img {
    width: 100%;
    height: clamp(220px, 26vw, 360px);
    object-fit: cover;
    object-position: center 42%;
    opacity: .9;
}

.menu-category-feature figcaption {
    position: absolute;
    left: 22px;
    bottom: 18px;
    z-index: 1;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gallery-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #000;
}

.contact-section {
    background: #000;
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(300px, .7fr) minmax(0, 1fr);
    gap: 28px;
}

.contact-panel {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .14);
}

.contact-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px;
}

.contact-title img {
    width: clamp(42px, 4.4vw, 64px);
    height: clamp(42px, 4.4vw, 64px);
    object-fit: contain;
    flex: 0 0 auto;
}

.contact-title h2 {
    margin: 0;
}

.contact-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.contact-list li {
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.hours {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hours span {
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 5px 9px;
    font-size: .88rem;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
}

.reviews-section {
    background: #000;
    color: #fff;
    padding-top: 42px;
}

.reviews-shell {
    width: var(--site-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(360px, 1fr);
    gap: 34px;
    align-items: center;
    padding-top: 34px;
    border-top: 1px solid rgba(203, 157, 55, .28);
}

.reviews-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(1.65rem, 3vw, 2.7rem);
    line-height: 1.05;
}

.reviews-copy p:not(.eyebrow) {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.review-card {
    display: grid;
    gap: 8px;
    min-height: 150px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    text-decoration: none;
    background: #000;
    transition: border-color .2s ease, transform .2s ease;
}

.review-logo-svg {
    display: block;
    width: 46px;
    height: 46px;
    margin-bottom: 8px;
}

.tripadvisor-logo {
    width: 76px;
}

.review-card:hover {
    border-color: rgba(203, 157, 55, .72);
    transform: translateY(-2px);
}

.review-card span {
    color: var(--gold);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.review-card strong {
    font-size: 1.08rem;
    line-height: 1.15;
}

.review-card small {
    color: var(--muted);
    font-size: .84rem;
    font-weight: 700;
    line-height: 1.35;
}

.after-contact-banner {
    width: 100%;
    overflow: hidden;
    background: #000;
}

.after-contact-banner img {
    display: block;
    width: calc(100% + 16px);
    max-width: none;
    height: clamp(220px, 34vw, 430px);
    margin-left: -8px;
    object-fit: cover;
    object-position: center;
}

.footer {
    padding: 42px 16px 24px;
    text-align: left;
    background: #000;
    color: rgba(255, 255, 255, .78);
    font-size: .88rem;
}

.footer-shell {
    width: var(--site-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(180px, .75fr) minmax(180px, 1fr) auto;
    gap: 30px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    justify-content: space-between;
}

.footer-brand {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.footer-brand strong {
    color: #fff;
    font-size: .92rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer-column h3 {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-social {
    margin-top: 4px;
    display: flex;
    gap: 10px;
}

.footer-social-right {
    justify-self: end;
    align-self: start;
    justify-content: flex-end;
}

.footer p {
    margin: 4px 0;
}

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

.footer a:hover {
    color: var(--gold);
}

.footer-bottom {
    width: var(--site-width);
    margin: 18px auto 0;
    display: flex;
    justify-content: center;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 24px;
    color: rgba(255, 255, 255, .78);
    text-align: center;
}

.footer-credit {
    flex: 0 0 100%;
    margin-top: 0;
    color: rgba(255, 255, 255, .55);
    font-size: .78rem;
    text-align: center;
}

.footer-credit a {
    color: var(--gold);
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

.scroll-top {
    position: fixed;
    left: 18px;
    bottom: 28px;
    z-index: 80;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(203, 157, 55, .5);
    background: rgba(0, 0, 0, .86);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover {
    border-color: var(--gold);
}

.scroll-top span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 17px auto 0;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    transform: rotate(45deg);
}

@media (max-width: 1100px) {
    .bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: clamp(54px, 7vw, 86px);
    }

    .sushi-garden-grid {
        column-gap: clamp(54px, 7vw, 86px);
    }

    .plats-columns {
        gap: 32px clamp(42px, 5vw, 64px);
    }
}

@media (max-width: 820px) {
    :root {
        --site-width: min(100% - 32px, 720px);
        --menu-width: var(--site-width);
    }

    .nav-links {
        right: 0;
        min-width: min(260px, calc(100vw - 32px));
    }

    .nav-links a {
        padding: 16px 24px;
    }

    .nav-social {
        margin-left: 0;
    }

    .nav-actions {
        gap: 7px;
    }

    .language-switcher {
        gap: 2px;
        padding: 2px;
    }

    .language-icon {
        width: 22px;
        height: 22px;
    }

    .language-switcher button {
        padding: 6px 5px;
        font-size: .64rem;
    }

    .wedely-order-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .wedely-logo {
        width: min(190px, 100%);
    }

    .hero {
        min-height: 520px;
    }

    .quick-info,
    .intro-grid,
    .photo-band,
    .reservation-shell,
    .contact-grid,
    .reviews-shell {
        grid-template-columns: 1fr;
    }

    .quick-info div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-card-grid {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .menu-card {
        grid-template-columns: 160px minmax(0, 1fr);
        gap: 22px;
    }

    .menu-card img {
        width: 160px;
        height: 104px;
    }

    .menu-card-content {
        min-height: 104px;
    }

    .menu-card h4 {
        font-size: 1.05rem;
    }

    .menu-card p {
        font-size: .86rem;
    }

    .menu-card-meta {
        gap: 24px;
    }

    .menu-card-meta strong {
        font-size: .92rem;
    }

    .lunch-note {
        display: grid;
        gap: 5px;
        text-align: left;
    }

    .menu-category-feature img {
        height: 230px;
    }

    .sushi-garden-grid,
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .plats-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-panel {
        padding: 28px;
    }

    .reviews-shell {
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .nav-shell {
        min-height: 60px;
        gap: 12px;
    }

    .brand {
        gap: 8px;
        letter-spacing: .04em;
    }

    .brand img {
        width: 34px;
        height: 34px;
    }

    .brand span {
        display: none;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .hero-inner {
        padding: 58px 0;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-actions,
    .contact-actions,
    .reservation-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .quick-info div {
        padding: 18px 16px;
    }

    .intro-grid,
    .photo-band,
    .reservation-shell,
    .contact-grid,
    .reviews-shell {
        gap: 28px;
    }

    .reservation-widget,
    .contact-panel,
    .review-card {
        padding: 22px;
    }

    .wedely-order-card {
        padding: 14px;
    }

    .wedely-logo {
        width: min(190px, 100%);
    }
}

@media (max-width: 520px) {
    :root {
        --site-width: calc(100% - 28px);
        --menu-width: var(--site-width);
    }

    .section {
        padding: 50px 0;
    }

    .menu-section .section-heading .eyebrow {
        gap: 10px;
    }

    .menu-section .section-heading .eyebrow::before,
    .menu-section .section-heading .eyebrow::after {
        width: 26px;
    }

    .menu-section-title {
        font-size: 1.08rem;
        letter-spacing: .05em;
    }

    .menu-section-title > img,
    .menu-list .menu-section-title > img {
        flex-basis: 26px;
        width: 26px !important;
        height: 26px !important;
        max-width: 26px !important;
        max-height: 26px !important;
    }

    .menu-section-title::before,
    .menu-section-title::after {
        width: 34px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .photo-band {
        padding: 20px;
    }

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

    .menu-card-grid,
    .menu-feature-grid,
    .review-cards {
        grid-template-columns: 1fr;
    }

    .menu-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .menu-card-content {
        min-height: 0;
    }

    .menu-card img {
        width: 100%;
        height: auto;
        max-height: 230px;
    }

    .menu-card h4 {
        font-size: 1.1rem;
    }

    .menu-card p {
        font-size: .9rem;
    }

    .menu-card-meta strong {
        font-size: .98rem;
    }

    .menu-product-line {
        grid-template-columns: 34px minmax(0, 1fr) max-content max-content;
        gap: 7px 16px;
    }

    .menu-product-price,
    .menu-product-pieces {
        text-align: right;
    }

    .pichet-table-head,
    .pichet-table-row {
        grid-template-columns: minmax(124px, 1fr) repeat(3, minmax(48px, max-content));
        gap: 8px;
        font-size: .78rem;
    }

    .sushi-garden-panel summary {
        grid-template-columns: minmax(0, 1fr) 18px;
        gap: 12px;
    }

    .sushi-garden-panel h3,
    .bento-panel h3 {
        font-size: 1.25rem;
    }

    .sushi-garden-lines,
    .bento-lines {
        gap: 14px;
        margin: 18px 0 24px;
    }

    .sushi-garden-panel img,
    .bento-panel img {
        height: 220px;
    }

    .sushi-garden-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px 14px;
    }

    .sushi-garden-row em {
        grid-column: 1 / -1;
        color: var(--gold);
        font-size: .9rem;
    }

    .bento-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 5px;
    }

    .bento-total {
        gap: 24px;
    }

    .menu-section-banner {
        margin: 34px calc(50% - 50vw) 18px;
    }

    .menu-section-banner img {
        height: 190px;
    }

    .menu-category-feature {
        margin: 22px 0 28px;
    }

    .menu-category-feature img {
        height: 190px;
    }

    .gallery-grid img {
        height: 250px;
    }

    .footer-shell {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-bottom {
        justify-content: center;
    }
}
