:root {
--navy: #212c62;
--navy-deep: #1a2050;
--gold: #bc8e33;
--gold-bright: #d4a94a;
--gold-text: #8a6420;
--terracotta: #a84e22;
--peach: #d08148;
--paper: #fefefe;
--ink: #121212;
--ink-dim: rgba(18, 18, 18, 0.72);
--ink-faint: rgba(18, 18, 18, 0.62);
--glass: rgba(255, 255, 255, 0.6);
--glass-tint: rgba(33, 44, 98, 0.05);
--glass-border: rgba(33, 44, 98, 0.14);
--shadow: 0 18px 44px rgba(33, 44, 98, 0.12);
--radius-lg: 26px;
--radius-md: 18px;
--radius-pill: 999px;
--font-head: "Montserrat", "Montserrat Fallback", -apple-system, sans-serif;
--font-display: "Cormorant Garamond", "Cormorant Garamond Fallback", Georgia, serif;
--font-body: "Inter", "Inter Fallback", -apple-system, sans-serif;
--font-script: "Great Vibes", cursive;
--max-w: 1160px;
}
@font-face { font-family: "Cormorant Garamond Fallback"; src: local("Georgia"); size-adjust: 86%; }
@font-face { font-family: "Montserrat Fallback"; src: local("Arial"); size-adjust: 111%; }
@font-face { font-family: "Inter Fallback"; src: local("Arial"); size-adjust: 106%; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
background: var(--paper);
color: var(--ink);
font-family: var(--font-body);
font-size: 16px;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
::selection { background: var(--gold); color: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a, button, summary, input { touch-action: manipulation; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; border-radius: 4px; }
footer :focus-visible,
.tray :focus-visible,
.fab:focus-visible,
.fab-panel :focus-visible { outline-color: var(--gold-bright); }
.skip-link {
position: fixed;
top: -60px; left: 16px;
z-index: 200;
background: var(--navy);
color: #fff;
font-weight: 600;
padding: 12px 20px;
border-radius: var(--radius-pill);
transition: top 0.2s;
}
.skip-link:focus { top: 16px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 44px; height: 46px; flex-shrink: 0; }
.brand-word {
display: inline-block;
width: 106px;
height: 32px;
background-color: var(--navy);
-webkit-mask: url("wordmark.svg") no-repeat left center / contain;
mask: url("wordmark.svg") no-repeat left center / contain;
}
.brand-tag {
display: block;
font-family: var(--font-body);
font-weight: 600;
font-size: 0.62rem;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--ink-faint);
margin-top: 5px;
}
.wave-band { position: relative; width: 100%; overflow: hidden; line-height: 0; height: clamp(120px, 22vw, 260px); }
.wave-band img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; }
@supports (animation-timeline: view()) {
.wave-band .wave-gold { animation: waveDriftDown linear both; animation-timeline: view(); }
.wave-band .wave-navy { animation: waveDriftUp linear both; animation-timeline: view(); }
.hero .wrap { animation: heroDrift linear both; animation-timeline: scroll(); animation-range: 0 700px; }
}
@keyframes waveDriftDown { from { transform: translateY(-16px); } to { transform: translateY(16px); } }
@keyframes waveDriftUp { from { transform: translateY(9px); } to { transform: translateY(-9px); } }
@keyframes heroDrift { to { transform: translateY(46px); } }
.glass {
position: relative;
background: linear-gradient(160deg, rgba(255,255,255,0.72), rgba(255,255,255,0.42)), var(--glass-tint);
-webkit-backdrop-filter: blur(18px) saturate(150%);
backdrop-filter: blur(18px) saturate(150%);
border: 1px solid var(--glass-border);
border-radius: var(--radius-lg);
box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.glass-hover { transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s; }
.glass-hover:hover {
transform: translateY(-5px);
box-shadow: 0 26px 56px rgba(33, 44, 98, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
@media (hover: hover) {
.glass-hover::after,
.nav::after,
.menu-search::after {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
background: radial-gradient(210px circle at var(--mx, 50%) var(--my, 50%), rgba(188, 142, 51, 0.16), transparent 65%);
opacity: 0;
transition: opacity 0.35s;
pointer-events: none;
}
.glass-hover:hover::after,
.nav:hover::after,
.menu-search:hover::after { opacity: 1; }
}
.nav {
position: fixed;
top: 14px; left: 50%;
transform: translateX(-50%);
z-index: 100;
width: min(var(--max-w), calc(100% - 28px));
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px 10px 8px 18px;
border-radius: var(--radius-pill);
}
.nav ul { position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; list-style: none; align-items: center; }
.nav ul a {
padding: 10px 16px;
border-radius: var(--radius-pill);
font-size: 0.95rem;
font-weight: 500;
color: var(--ink-dim);
white-space: nowrap;
transition: color 0.3s, background 0.3s;
}
.nav ul a:hover { color: var(--navy); background: rgba(33, 44, 98, 0.07); }
.nav ul a.cta, .nav ul a.cta:hover { color: #fff; background: var(--navy); }
.nav ul a.cta:hover { background: var(--navy-deep); }
.nav .cta {
background: var(--navy);
color: #fff;
font-weight: 600;
white-space: nowrap;
padding: 10px 20px;
border-radius: var(--radius-pill);
box-shadow: 0 8px 20px rgba(33, 44, 98, 0.3);
transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.nav .cta:hover { transform: scale(1.04); box-shadow: 0 12px 26px rgba(33, 44, 98, 0.4); }
.lang { position: relative; margin-left: auto; margin-right: 10px; }
.lang-btn {
display: inline-flex;
align-items: center;
gap: 7px;
padding: 9px 13px;
border-radius: var(--radius-pill);
border: 1px solid var(--glass-border);
background: none;
color: var(--ink-dim);
font: 600 0.82rem var(--font-head);
letter-spacing: 0.04em;
cursor: pointer;
transition: color 0.3s, background 0.3s;
}
.lang-btn:hover { color: var(--navy); background: rgba(33, 44, 98, 0.07); }
.lang-btn svg { width: 17px; height: 17px; }
.lang-menu {
position: absolute;
top: calc(100% + 12px);
right: 0;
z-index: 110;
min-width: 150px;
padding: 8px;
border-radius: 16px;
background: linear-gradient(160deg, rgba(255,255,255,0.94), rgba(255,255,255,0.8));
-webkit-backdrop-filter: blur(26px) saturate(180%);
backdrop-filter: blur(26px) saturate(180%);
border: 1px solid rgba(255, 255, 255, 0.7);
box-shadow: 0 0 0 1px var(--glass-border), 0 30px 70px rgba(33, 44, 98, 0.22);
}
.lang-menu a {
display: block;
padding: 10px 14px;
border-radius: 10px;
font-size: 0.95rem;
color: var(--ink-dim);
}
.lang-menu a:hover { background: rgba(33, 44, 98, 0.08); color: var(--navy); }
.lang-menu a[aria-current] { color: var(--navy); font-weight: 600; }
html[lang="zh-CN"] { --font-body: "Inter", "Noto Sans SC", -apple-system, sans-serif; --font-head: "Montserrat", "Noto Sans SC", sans-serif; --font-display: "Cormorant Garamond", "Noto Sans SC", Georgia, serif; }
html[lang="ja"] { --font-body: "Inter", "Noto Sans JP", -apple-system, sans-serif; --font-head: "Montserrat", "Noto Sans JP", sans-serif; --font-display: "Cormorant Garamond", "Noto Sans JP", Georgia, serif; }
html[lang="ko"] { --font-body: "Inter", "Noto Sans KR", -apple-system, sans-serif; --font-head: "Montserrat", "Noto Sans KR", sans-serif; --font-display: "Cormorant Garamond", "Noto Sans KR", Georgia, serif; }
.btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 28px;
border-radius: var(--radius-pill);
font-family: var(--font-head);
font-weight: 600;
font-size: 0.98rem;
cursor: pointer;
border: 0;
transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s, background 0.35s;
}
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 12px 28px rgba(33, 44, 98, 0.3); }
.btn-navy:hover { transform: translateY(-3px); background: var(--navy-deep); box-shadow: 0 16px 36px rgba(33, 44, 98, 0.4); }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 12px 28px rgba(188, 142, 51, 0.35); }
.btn-gold:hover { transform: translateY(-3px); background: var(--gold-bright); }
.btn-glass { color: var(--navy); }
.btn-glass:hover { transform: translateY(-3px); }
.link-gold {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: var(--font-head);
font-weight: 600;
color: var(--gold-text);
border-bottom: 2px solid var(--gold);
padding-bottom: 3px;
transition: gap 0.3s, color 0.3s;
}
.link-gold:hover { gap: 14px; color: var(--terracotta); }
.hero { padding: 170px 0 20px; text-align: center; position: relative; }
.hero .badge {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 8px 20px;
border-radius: var(--radius-pill);
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--terracotta);
margin-bottom: 30px;
}
.hero .badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: 0.3; transform: scale(0.8); } }
.hero h1 {
font-family: var(--font-display);
font-weight: 600;
font-size: clamp(3rem, 8.5vw, 6.2rem);
line-height: 1.04;
letter-spacing: -0.01em;
color: var(--navy);
max-width: 16ch;
margin: 0 auto 24px;
}
.hero h1 .gold { font-style: italic; }
.hero h1 .gold { color: var(--gold-text); }
.hero h1 .seg { display: inline-block; }
html[lang="zh-CN"] .hero h1, html[lang="ja"] .hero h1, html[lang="ko"] .hero h1 { font-size: clamp(2.4rem, 7vw, 5rem); max-width: 24ch; }
html[lang="ko"] .hero h1 { word-break: keep-all; }
.hero p.lede {
max-width: 56ch;
margin: 0 auto 38px;
color: var(--ink-dim);
font-size: clamp(1rem, 2vw, 1.15rem);
}
.hero .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
section { padding: 90px 0; }
.kicker {
display: inline-block;
font-family: var(--font-head);
font-size: 0.95rem;
font-weight: 700;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--gold-text);
margin-bottom: 16px;
}
h2 {
font-family: var(--font-display);
font-weight: 600;
font-size: clamp(2.1rem, 4.6vw, 3.4rem);
line-height: 1.12;
letter-spacing: -0.005em;
color: var(--navy);
margin-bottom: 20px;
}
.section-head { max-width: 640px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ink-dim); }
.story-grid { max-width: 760px; margin: 0 auto; }
.story-copy p { color: var(--ink-dim); margin-bottom: 16px; }
.story-copy p strong { color: var(--navy); font-weight: 600; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.fav-card { padding: 30px 28px; display: flex; flex-direction: column; gap: 10px; }
.fav-card .fav-price {
font-family: var(--font-head);
font-weight: 700;
color: var(--gold-text);
font-size: 1.05rem;
font-variant-numeric: tabular-nums;
}
.fav-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; color: var(--navy); }
.fav-card p { color: var(--ink-dim); font-size: 0.93rem; }
.visit-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 20px; }
.visit-card { padding: 36px 32px; display: flex; flex-direction: column; gap: 24px; }
.visit-item h3 {
font-family: var(--font-head);
font-size: 0.95rem;
font-weight: 700;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--gold-text);
margin-bottom: 10px;
}
.visit-item p { color: var(--ink-dim); }
.visit-item .closed { color: var(--terracotta); font-weight: 600; }
.map-links { display: flex; flex-direction: column; gap: 10px; }
.map-links a {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 18px;
border-radius: var(--radius-md);
border: 1px solid var(--glass-border);
background: rgba(255, 255, 255, 0.55);
font-weight: 600;
font-size: 0.94rem;
color: var(--navy);
transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.map-links a:hover { transform: translateX(4px); border-color: var(--gold); box-shadow: 0 8px 20px rgba(33, 44, 98, 0.1); }
.map-links .app-ico { width: 28px; height: 28px; flex: 0 0 28px; object-fit: contain; }
.map-links a[href*="waze"] .app-ico { padding: 3px; }
.map-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 440px; }
.map-frame iframe { position: relative; z-index: 1; width: 100%; height: 100%; min-height: 440px; border: 0; display: block; }
.map-fallback {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 16px;
text-align: center;
padding: 32px;
color: var(--ink-dim);
}
.map-fallback strong { color: var(--navy); font-family: var(--font-head); }
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 13px; }
.faq details { padding: 4px 26px; border-radius: var(--radius-md); }
.faq summary {
cursor: pointer;
list-style: none;
padding: 17px 0;
font-family: var(--font-head);
font-weight: 600;
font-size: 1.02rem;
color: var(--navy);
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--gold-text); transition: transform 0.3s; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-dim); padding-bottom: 18px; }
footer {
background: var(--navy);
color: rgba(255, 255, 255, 0.85);
padding: 64px 0 36px;
margin-top: 60px;
}
footer .foot-col .brand-lockup { display: inline-flex; align-items: center; gap: 12px; }
footer .brand-mark { filter: brightness(0) invert(1); }
footer .brand-word { background-color: #fff; }
footer .brand-tag { color: rgba(255, 255, 255, 0.7); }
.foot-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-col h3 {
font-family: var(--font-head);
font-size: 0.92rem;
font-weight: 700;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--gold-bright);
margin-bottom: 14px;
}
.foot-col a, .foot-col p { display: block; color: rgba(255, 255, 255, 0.75); font-size: 0.94rem; margin-bottom: 10px; }
.foot-col a:hover { color: var(--gold-bright); }
.foot-social { display: flex; gap: 12px; margin-top: 2px; }
.foot-social a { display: inline-flex; margin: 0; opacity: 0.92; transition: transform 0.2s, opacity 0.2s; }
.foot-social a:hover { transform: translateY(-2px); opacity: 1; }
.foot-social img { width: 26px; height: 26px; display: block; }
.foot-legal {
margin-top: 46px;
padding-top: 22px;
border-top: 1px solid rgba(255, 255, 255, 0.15);
text-align: center;
color: rgba(255, 255, 255, 0.55);
font-size: 0.85rem;
}
.menu-hero { padding: 160px 0 30px; text-align: center; }
.menu-hero h1 {
font-family: var(--font-display);
font-weight: 600;
font-size: clamp(3rem, 7vw, 5rem);
color: var(--navy);
margin-bottom: 10px;
}
.menu-hero p {
font-family: var(--font-display);
font-style: italic;
font-size: clamp(1.15rem, 2.4vw, 1.45rem);
color: var(--ink-dim);
max-width: 56ch;
margin: 0 auto;
}
.filter-bar {
position: fixed;
left: 22px;
bottom: 30px;
z-index: 90;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 0;
padding: 8px 14px;
border-radius: var(--radius-md);
}
body:has(.tray.visible) .filter-bar { bottom: 96px; }
.menu-search-wrap {
position: relative;
max-width: 560px;
margin: 32px auto;
}
.menu-search {
position: relative;
display: flex;
align-items: center;
gap: 14px;
padding: 0 16px 0 22px;
border-radius: 18px;
background: linear-gradient(160deg, rgba(255,255,255,0.85), rgba(255,255,255,0.58)), var(--glass-tint);
-webkit-backdrop-filter: blur(28px) saturate(180%);
backdrop-filter: blur(28px) saturate(180%);
border: 1px solid rgba(255, 255, 255, 0.7);
box-shadow: 0 0 0 1px var(--glass-border), 0 26px 60px rgba(33, 44, 98, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.menu-search svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--ink-faint); }
.menu-search input {
flex: 1;
border: 0;
background: none;
font: 400 1.06rem var(--font-body);
color: var(--ink);
padding: 16px 12px 16px 0;
outline: none;
}
.menu-search input::placeholder { color: var(--ink-faint); }
.menu-search input::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }
.menu-search:focus-within { outline: 3px solid var(--navy); outline-offset: 3px; }
.search-clear {
display: none;
flex-shrink: 0;
align-items: center;
justify-content: center;
width: 34px;
height: 34px;
padding: 0;
border: 0;
border-radius: var(--radius-pill);
background: none;
color: var(--ink-faint);
cursor: pointer;
transition: color 0.2s, background 0.2s;
}
.menu-search:has(input:not(:placeholder-shown)) .search-clear { display: inline-flex; }
.search-clear:hover { color: var(--navy); background: rgba(33, 44, 98, 0.07); }
.search-clear svg { width: 17px; height: 17px; }
.no-results { text-align: center; padding: 60px 24px 20px; color: var(--ink-dim); font-size: 1.05rem; }
.search-suggest {
position: absolute;
top: calc(100% + 10px);
left: 0; right: 0;
z-index: 60;
padding: 8px;
border-radius: 16px;
background: linear-gradient(160deg, rgba(255,255,255,0.94), rgba(255,255,255,0.8));
-webkit-backdrop-filter: blur(26px) saturate(180%);
backdrop-filter: blur(26px) saturate(180%);
border: 1px solid rgba(255, 255, 255, 0.7);
box-shadow: 0 0 0 1px var(--glass-border), 0 30px 70px rgba(33, 44, 98, 0.22);
max-height: 330px;
overflow-y: auto;
text-align: left;
}
.search-suggest button {
display: flex;
justify-content: space-between;
align-items: center;
gap: 14px;
width: 100%;
padding: 12px 14px;
border: 0;
background: none;
border-radius: 10px;
font: 500 0.96rem var(--font-body);
color: var(--ink);
cursor: pointer;
text-align: left;
}
.search-suggest button:hover,
.search-suggest button.active { background: rgba(33, 44, 98, 0.08); }
.search-suggest .s-price { color: var(--gold-text); font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.diet-toggle {
display: inline-flex;
align-items: center;
gap: 10px;
background: none;
border: 0;
cursor: pointer;
font-family: var(--font-head);
font-weight: 600;
font-size: 0.82rem;
color: var(--ink-dim);
padding: 7px 4px;
}
.diet-toggle .sw {
position: relative;
width: 50px; height: 28px;
border-radius: 8px;
border: 1px solid rgba(18, 18, 18, 0.14);
background: rgba(255, 255, 255, 0.55);
flex-shrink: 0;
}
.diet-toggle .sw::before {
content: "";
position: absolute;
top: 50%; left: 6px; right: 6px;
height: 12px;
transform: translateY(-50%);
border-radius: var(--radius-pill);
background: rgba(18, 18, 18, 0.18);
transition: background 0.25s;
}
.diet-toggle.veg.on .sw::before { background: #12b433; }
.diet-toggle.nonveg.on .sw::before { background: #e74335; }
.diet-toggle .sw::after {
content: "";
position: absolute;
top: 50%; left: 3px;
width: 18px; height: 18px;
border-radius: 5px;
border: 1.5px solid;
background: #fff no-repeat center / 10px 10px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
transform: translateY(-50%);
transition: transform 0.25s;
}
.diet-toggle.on .sw::after { transform: translateY(-50%) translateX(24px); }
.diet-toggle.veg .sw::after {
border-color: #12b433;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='5' fill='%2312b433'/%3E%3C/svg%3E");
}
.diet-toggle.nonveg .sw::after {
border-color: #e74335;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 3.5 13 12.5 3 12.5Z' fill='%23e74335'/%3E%3C/svg%3E");
}
.diet-toggle.on { color: var(--ink); }
.small-note {
text-align: center;
color: var(--ink-faint);
font-size: 0.88rem;
max-width: 60ch;
}
main { counter-reset: msec; }
.menu-section { padding: 46px 0 8px; counter-increment: msec; }
.menu-section .sec-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 10px; }
.menu-section .sec-head h2 { margin: 0; font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.menu-section .sec-head h2::before {
content: counter(msec, decimal-leading-zero);
font-family: var(--font-display);
font-style: italic;
font-weight: 500;
font-size: 0.58em;
color: var(--gold-text);
letter-spacing: 0.08em;
margin-right: 16px;
vertical-align: 0.12em;
}
.menu-section .sec-head .line { flex: 1; height: 2px; background: linear-gradient(90deg, rgba(188, 142, 51, 0.5), transparent); }
.menu-section .sec-desc { color: var(--ink-dim); font-size: 1rem; max-width: 68ch; margin-bottom: 28px; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(310px, 100%), 1fr)); gap: 16px; }
.dish {
padding: 22px 22px 20px;
border-radius: var(--radius-md);
display: flex;
flex-direction: column;
gap: 6px;
}
.dish .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
.dish h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; color: var(--navy); line-height: 1.3; }
.dish .price { font-family: var(--font-head); font-weight: 700; color: var(--gold-text); white-space: nowrap; font-size: 1.02rem; font-variant-numeric: tabular-nums; }
.dish p.desc { color: var(--ink-dim); font-size: 0.9rem; }
.dish .variants { color: var(--ink-faint); font-size: 0.87rem; font-style: italic; }
.dish .row-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 14px; }
.veg-ind, .nonveg-ind {
width: 16px; height: 16px;
border-radius: 4px;
border: 1.6px solid;
display: inline-grid;
place-items: center;
flex-shrink: 0;
}
.veg-ind { border-color: #1e8e3e; }
.veg-ind::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #1e8e3e; }
.nonveg-ind { border-color: #c5221f; }
.nonveg-ind::after { content: ""; width: 0; height: 0; border-left: 4.5px solid transparent; border-right: 4.5px solid transparent; border-bottom: 8px solid #c5221f; }
.stepper { display: inline-flex; align-items: center; gap: 2px; border: 1.5px solid var(--navy); border-radius: var(--radius-pill); overflow: hidden; }
.stepper button {
width: 44px; height: 42px;
border: 0;
background: transparent;
color: var(--navy);
font-size: 1.15rem;
font-weight: 700;
cursor: pointer;
transition: background 0.2s;
font-family: var(--font-body);
}
.stepper button:hover { background: rgba(33, 44, 98, 0.08); }
.stepper .qty { min-width: 26px; text-align: center; font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.stepper[data-qty="0"] .qty, .stepper[data-qty="0"] .minus { display: none; }
.stepper[data-qty="0"] .plus::before { content: "ADD  "; font-size: 0.72rem; letter-spacing: 0.06em; font-weight: 700; }
html[lang="zh-CN"] .stepper[data-qty="0"] .plus::before { content: "加入 "; letter-spacing: 0; }
html[lang="ja"] .stepper[data-qty="0"] .plus::before { content: "追加 "; letter-spacing: 0; }
html[lang="ko"] .stepper[data-qty="0"] .plus::before { content: "담기 "; letter-spacing: 0; }
.stepper[data-qty="0"] .plus { width: auto; padding: 0 16px; }
.bev-table { width: 100%; border-collapse: collapse; }
.bev-table th {
font-family: var(--font-head);
font-size: 0.82rem;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--gold-text);
text-align: right;
padding: 8px 48px 8px 6px;
}
.bev-table th:first-child { text-align: left; padding-right: 6px; }
.bev-table td { padding: 9px 6px; border-top: 1px solid rgba(33, 44, 98, 0.08); font-size: 0.94rem; color: var(--ink-dim); }
.bev-table td:first-child { color: var(--ink); font-weight: 500; }
.bev-table td.num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.bev-table td.num .p { display: inline-block; min-width: 46px; text-align: right; font-variant-numeric: tabular-nums; }
.bev-table .slot { display: inline-block; width: 32px; margin-left: 10px; }
.bev-table .mini-add {
position: relative;
border: 1.4px solid var(--navy);
background: transparent;
color: var(--navy);
border-radius: var(--radius-pill);
width: 32px;
padding: 5px 0;
text-align: center;
font-size: 0.82rem;
font-weight: 700;
cursor: pointer;
margin-left: 10px;
transition: background 0.2s, color 0.2s;
}
.bev-table .mini-add::before { content: ""; position: absolute; inset: -8px; }
.bev-table .mini-add:hover { background: var(--navy); color: #fff; }
.bev-wrap { padding: 26px 26px 30px; border-radius: var(--radius-md); }
.fab {
position: fixed;
right: 22px; bottom: 30px;
z-index: 90;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
height: 58px;
padding: 0 26px;
border-radius: var(--radius-pill);
background: var(--navy);
color: #fff;
border: 2px solid var(--gold-bright);
cursor: pointer;
font-family: var(--font-head);
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.12em;
box-shadow: 0 16px 40px rgba(33, 44, 98, 0.45);
transition: transform 0.3s, box-shadow 0.3s;
}
.fab:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 20px 48px rgba(33, 44, 98, 0.55); }
body:has(.tray.visible) .fab { bottom: 96px; }
body:has(.tray.visible) .fab-panel { bottom: 168px; }
.fab .fab-ico { width: 20px; height: 20px; }
.fab-panel {
position: fixed;
right: 22px; bottom: 102px;
z-index: 95;
min-width: 280px;
max-height: 60vh;
overflow-y: auto;
background: rgba(18, 18, 18, 0.92);
-webkit-backdrop-filter: blur(16px);
backdrop-filter: blur(16px);
color: #fff;
border-radius: 18px;
padding: 12px 6px;
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
opacity: 0;
transform: translateY(14px) scale(0.97);
pointer-events: none;
visibility: hidden;
transition: opacity 0.28s, transform 0.28s, visibility 0.28s;
}
.fab-panel.open { opacity: 1; transform: none; pointer-events: auto; visibility: visible; }
.fab-panel a {
display: flex;
justify-content: space-between;
align-items: center;
gap: 24px;
padding: 11px 18px;
border-radius: 10px;
font-size: 0.94rem;
color: rgba(255, 255, 255, 0.92);
transition: background 0.2s;
}
.fab-panel a:hover { background: rgba(255, 255, 255, 0.1); }
.fab-panel a .count { color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; }
.tray {
position: fixed;
left: 50%; bottom: 20px;
transform: translateX(-50%) translateY(120%);
z-index: 92;
width: min(560px, calc(100% - 110px));
border-radius: var(--radius-md);
background: var(--navy);
color: #fff;
box-shadow: 0 22px 54px rgba(23, 28, 66, 0.5);
transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tray.visible { transform: translateX(-50%) translateY(0); }
.tray-bar {
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
width: 100%;
padding: 15px 22px;
cursor: pointer;
background: none;
border: 0;
color: inherit;
text-align: left;
font-family: var(--font-head);
font-weight: 600;
font-size: 0.95rem;
}
.tray-bar span { white-space: nowrap; }
.tray-bar .hint { color: var(--gold-bright); font-size: 0.85rem; }
.tray-bar, .tray-panel { font-variant-numeric: tabular-nums; }
.tray-panel { display: none; padding: 4px 22px 20px; }
.tray.open .tray-panel { display: block; }
.tray-panel .t-row { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; font-size: 0.92rem; color: rgba(255, 255, 255, 0.85); }
.tray-panel .t-row .t-name { flex: 1; }
.tray-panel .t-row .t-x { position: relative; color: var(--gold-bright); cursor: pointer; border: 0; background: none; font-size: 0.9rem; padding: 4px 6px; }
.tray-panel .t-row .t-x::before { content: ""; position: absolute; inset: -8px; }
.tray-panel .t-sep { border-top: 1px solid rgba(255, 255, 255, 0.18); margin: 10px 0; }
.tray-panel .t-total { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: #fff; }
.tray-panel .t-toggle { display: flex; align-items: center; gap: 8px; }
.tray-panel .t-toggle input { accent-color: var(--gold); width: 16px; height: 16px; cursor: pointer; }
.tray-panel .disclaimer { margin-top: 12px; font-size: 0.76rem; color: rgba(255, 255, 255, 0.55); line-height: 1.5; }
.tray-panel .t-clear {
margin-top: 10px;
background: none;
border: 1px solid rgba(255, 255, 255, 0.35);
color: rgba(255, 255, 255, 0.8);
border-radius: var(--radius-pill);
padding: 6px 16px;
font-size: 0.8rem;
cursor: pointer;
}
.tray-panel .t-clear:hover { border-color: #fff; color: #fff; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after { animation: none !important; transition: none !important; }
.reveal { opacity: 1; transform: none; }
}
@media (max-width: 900px) {
.visit-grid { grid-template-columns: 1fr; }
section { padding: 70px 0; }
.nav ul li.hide-m { display: none; }
}
@media (max-width: 560px) {
.nav { padding: 7px 6px 7px 10px; }
.brand-mark { width: 30px; height: 32px; }
.brand-word { width: 72px; height: 22px; }
.brand-lockup { gap: 7px; }
.brand-tag { display: none; }
.tray { width: calc(100% - 28px); left: 14px; transform: translateY(120%); }
.tray.visible { transform: translateY(0); }
.fab { right: 14px; bottom: 24px; height: 54px; padding: 0 20px; }
.fab-panel { right: 14px; }
.filter-bar { left: 14px; bottom: 24px; }
body:has(.tray.visible) .fab { bottom: 88px; }
body:has(.tray.visible) .fab-panel { bottom: 152px; }
body:has(.tray.visible) .filter-bar { bottom: 88px; }
.nav ul { position: static; transform: none; flex: 1; justify-content: center; gap: 0; }
.nav ul a { padding: 8px 6px; font-size: 0.84rem; }
.nav .cta { padding: 9px 11px; font-size: 0.84rem; }
.lang { margin-right: 4px; }
.lang-btn { padding: 8px 9px; }
.lang-btn .lang-cur { display: none; }
}
@media (max-width: 430px) {
.nav .brand-word { display: none; }
.nav .brand-mark { width: 34px; height: 36px; }
}