:root {
  color-scheme: dark;
  --bg: #0e0e10;
  --bg-soft: #16161a;
  --bg-card: #1c1c20;
  --gold: #c9a96a;
  --gold-soft: #d4b87e;
  --ivory: #f4f1ea;
  --muted: #9a958c;
  --wine: #6b2e2e;
  --line: rgba(201, 169, 106, 0.22);
  --line-strong: rgba(201, 169, 106, 0.4);
  --display: "Playfair Display", "Songti TC", "Noto Serif TC", Georgia, serif;
  --body: "Jost", "PingFang HK", "Noto Sans TC", system-ui, sans-serif;
  --display-zh: "Songti TC", "Noto Serif TC", "Playfair Display", serif;
  --body-zh: "PingFang HK", "Noto Sans TC", "Jost", system-ui, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --max: 1320px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; background: var(--bg); }
body {
  margin: 0; min-width: 320px; overflow-x: hidden;
  color: var(--ivory); background: var(--bg);
  font-family: var(--body);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html[lang="zh-Hant-HK"] body { font-family: var(--body-zh); }
body::before {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; content: ""; opacity: 0.05;
  background: radial-gradient(ellipse 60% 40% at 80% 0%, rgba(201,169,106,0.5), transparent 70%), radial-gradient(ellipse 50% 40% at 10% 30%, rgba(107,46,46,0.3), transparent 75%);
}
body > * { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
button, summary { color: inherit; font: inherit; }
button { border: 0; background: transparent; }
img { max-width: 100%; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 10px 14px; color: var(--bg); background: var(--gold); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.concept-bar { display: flex; gap: 1.2rem; justify-content: center; align-items: center; min-height: 34px; padding: 6px var(--gutter); color: var(--gold-soft); background: #08080a; border-bottom: 1px solid var(--line); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.concept-bar p { margin: 0; opacity: .7; font-family: var(--body); text-transform: none; letter-spacing: 0; }
.concept-bar span { font-weight: 500; white-space: nowrap; }

.site-header { position: sticky; top: 0; z-index: 30; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: 100%; padding: 0 var(--gutter); min-height: 78px; margin: 0 auto; background: transparent; border-bottom: 1px solid transparent; transition: background 360ms ease, border-color 360ms ease, backdrop-filter 360ms ease, padding 360ms ease; }
.site-header.is-scrolled { background: rgba(8,8,10,0.78); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom-color: var(--line-strong); }
.wordmark { display: inline-flex; flex-direction: row; gap: 12px; align-items: center; }
.wordmark-mark { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: var(--display); font-size: 15px; font-weight: 600; letter-spacing: .02em; }
.wordmark-text { display: grid; font-family: var(--display); font-size: 14px; font-weight: 500; line-height: .9; letter-spacing: .04em; color: var(--ivory); }
.wordmark-text b { font-weight: 500; }
html[lang="zh-Hant-HK"] .wordmark-text { font-family: var(--display-zh); }
.desktop-nav { display: flex; gap: clamp(1.4rem, 2.7vw, 2.6rem); font-size: 12px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; }
.desktop-nav a { position: relative; padding: 10px 0; color: var(--muted); transition: color 220ms ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--gold); }
.desktop-nav a::after { position: absolute; right: 0; bottom: 4px; left: 0; height: 1px; content: ""; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 220ms var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.language-switch { display: flex; gap: 6px; align-items: center; font-size: 11px; }
.language-switch button { padding: 6px 2px; color: var(--muted); cursor: pointer; transition: color 200ms ease; }
.language-switch button[aria-pressed="true"] { color: var(--gold); }
.menu-button { display: none; width: 42px; height: 42px; padding: 12px 9px; cursor: pointer; }
.menu-button span { display: block; height: 1px; margin: 5px 0; background: var(--gold); transition: transform 200ms ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu { position: absolute; top: 77px; right: calc(-1 * var(--gutter)); left: calc(-1 * var(--gutter)); min-height: calc(100dvh - 110px); padding: 3rem var(--gutter); background: rgba(14,14,16,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); }
.mobile-menu nav { display: grid; }
.mobile-menu a { padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 30px; letter-spacing: .01em; color: var(--ivory); }
html[lang="zh-Hant-HK"] .mobile-menu a { font-family: var(--display-zh); }
body.menu-open { overflow: hidden; }

.section-shell { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2 { margin: 0; font-family: var(--display); font-weight: 500; letter-spacing: -.01em; }
html[lang="zh-Hant-HK"] h1, html[lang="zh-Hant-HK"] h2 { font-family: var(--display-zh); font-weight: 600; letter-spacing: 0; }
h1 i { color: var(--gold); font-family: inherit; font-style: italic; font-weight: 400; }
.eyebrow, .section-index { margin: 0 0 1.4rem; color: var(--gold); font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; }
.section-index { margin-bottom: 1.1rem; }

.hero { position: relative; height: 100vh; min-height: 680px; overflow: hidden; }
.hero-stage { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.12); transition: opacity 1.6s var(--ease), transform 8s ease-out; }
.hero-slide.is-active { opacity: 1; transform: scale(1.0); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,14,16,0.4) 0%, rgba(14,14,16,0.2) 45%, rgba(14,14,16,0.88) 100%); z-index: 1; }
.hero-grain { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.05; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); mix-blend-mode: overlay; }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 4rem var(--gutter) 5rem; }
.hero-eyebrow { margin: 0 0 1.4rem; color: var(--gold); font-size: clamp(10px, 1vw, 12px); font-weight: 500; letter-spacing: .32em; text-transform: uppercase; }
h1.hero-title { margin: 0 0 1.6rem; font-family: var(--display); font-weight: 400; line-height: 1.02; letter-spacing: -.01em; font-size: clamp(2.6rem, 6.5vw, 5.8rem); }
.hero-title span { display: block; }
.hero-title span:first-child { color: var(--ivory); }
.hero-title span:last-child { color: var(--gold); font-style: italic; }
html[lang="zh-Hant-HK"] h1.hero-title { font-size: clamp(2.4rem, 5.6vw, 4.8rem); line-height: 1.18; }
.hero-intro { max-width: 44ch; margin: 0 0 2.2rem; color: rgba(244,241,234,0.78); font-size: clamp(0.98rem, 1.1vw, 1.1rem); line-height: 1.7; font-weight: 300; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.hero-mark { margin-top: clamp(2.5rem, 5vw, 3.5rem); display: flex; flex-direction: column; align-items: center; gap: .9rem; opacity: 0; transform: translateY(18px); transition: opacity 1s var(--ease) 1s, transform 1s var(--ease) 1s; }
.hero-content.is-ready .hero-mark { opacity: 1; transform: none; }
.hero-mark-text { font-family: var(--display); font-size: clamp(1.1rem, 1.5vw, 1.5rem); color: var(--gold); font-style: italic; letter-spacing: .04em; }
.hero-mark-line { width: 56px; height: 1px; background: var(--gold); opacity: .6; }
.hero-mark-sub { color: rgba(244,241,234,0.6); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; }
.hero-dots { position: absolute; right: clamp(1.5rem, 3vw, 2.5rem); top: 50%; transform: translateY(-50%); z-index: 3; display: grid; gap: .9rem; }
.hero-dot { width: 8px; height: 8px; padding: 0; border-radius: 50%; border: 1px solid var(--gold); background: transparent; cursor: pointer; transition: background 380ms ease, transform 380ms var(--ease); }
.hero-dot.is-active { background: var(--gold); transform: scale(1.45); }
.hero-scroll { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .55rem; color: rgba(244,241,234,0.6); font-size: 9px; letter-spacing: .32em; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 42px; background: linear-gradient(to bottom, rgba(201,169,106,0.9), transparent); animation: scrollPulse 2.4s ease-in-out infinite; transform-origin: top; }
@keyframes scrollPulse { 0%, 100% { opacity: .25; transform: scaleY(.55); } 50% { opacity: 1; transform: scaleY(1); } }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.hero-content > * { opacity: 0; transform: translateY(22px); }
.hero-content.is-ready > * { animation: heroFadeUp .9s var(--ease) forwards; }
.hero-content.is-ready > *:nth-child(1) { animation-delay: .2s; }
.hero-content.is-ready > *:nth-child(2) { animation-delay: .4s; }
.hero-content.is-ready > *:nth-child(3) { animation-delay: .6s; }
.hero-content.is-ready > *:nth-child(4) { animation-delay: .8s; }
.hero-content.is-ready > *:nth-child(5) { animation-delay: 1s; }
@media (prefers-reduced-motion: reduce) { .hero-content > * { opacity: 1; transform: none; animation: none; } .hero-scroll-line { animation: none; } .hero-slide { transition: opacity .01ms; transform: none; } }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 24px; font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease, border-color 220ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--bg); background: var(--gold); }
.button-primary:hover { background: var(--gold-soft); }
.button-secondary { color: var(--ivory); border: 1px solid var(--line-strong); }
.button-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-award { margin-top: 2.2rem; color: var(--gold-soft); font-size: 11px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; }
.hero-art { display: grid; place-items: center; }
.hero-image { position: relative; width: 100%; max-width: 460px; margin: 0; aspect-ratio: 2 / 3; border: 1px solid var(--line-strong); background: var(--bg-soft); box-shadow: 0 30px 70px rgb(0 0 0 / .5); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.image-fallback { position: absolute; bottom: 12px; left: 12px; margin: 0; padding: 6px 10px; color: var(--gold-soft); background: rgba(8 8 10 / .7); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

.brand-section { padding: clamp(6rem, 12vw, 9rem) 0; border-top: 1px solid var(--line); }
.brand-copy { max-width: 760px; }
.brand-copy h2 { font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 1.05; }
.brand-copy > p { max-width: 46ch; margin: 1.8rem 0 0; color: var(--muted); font-size: 1.02rem; line-height: 1.75; font-weight: 300; }
.brand-facts { display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; margin: 2.6rem 0 0; padding: 0; list-style: none; }
.brand-facts li { color: var(--gold-soft); font-size: 11px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; padding-left: 14px; border-left: 1px solid var(--line-strong); }

.section-heading { max-width: 620px; margin-bottom: 3rem; }
.section-heading h2 { font-size: clamp(2.4rem, 4.6vw, 4rem); line-height: 1.06; }
.section-heading > p { max-width: 44ch; margin: 1.4rem 0 0; color: var(--muted); font-size: .98rem; line-height: 1.7; font-weight: 300; }

.menu-section { padding: clamp(6rem, 12vw, 9rem) 0; border-top: 1px solid var(--line); }
.menu-hub { border: 1px solid var(--line); background: var(--bg-soft); overflow: hidden; }
.menu-categories { display: flex; flex-wrap: wrap; gap: .7rem 1rem; padding: clamp(1.6rem, 2.5vw, 2.2rem); border-bottom: 1px solid var(--line); justify-content: center; }
.menu-category-chip { display: inline-flex; align-items: center; gap: .7rem; padding: .6rem 1.1rem; border: 1px solid var(--line); background: rgba(255 255 255 / .02); border-radius: 999px; color: var(--muted); font-size: 12px; font-weight: 500; letter-spacing: .08em; transition: border-color 220ms ease, color 220ms ease; }
.menu-category-chip:hover { border-color: var(--gold); color: var(--gold); }
.menu-category-chip img { width: 44px; height: 44px; object-fit: contain; }
html[lang="zh-Hant-HK"] .menu-category-chip { font-family: var(--body-zh); }
.menu-tabs { display: flex; border-bottom: 1px solid var(--line); }
.menu-tab { flex: 1; padding: 1.3rem 1rem; color: var(--muted); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; border-bottom: 2px solid transparent; transition: color 220ms ease, border-color 220ms ease; }
.menu-tab:hover { color: var(--ivory); }
.menu-tab.is-active { color: var(--gold); border-bottom-color: var(--gold); }
.menu-panel { padding: clamp(2.4rem, 4vw, 3.4rem) clamp(3rem, 5vw, 4rem) clamp(2.4rem, 4vw, 3.4rem) clamp(2.8rem, 5vw, 3.8rem); }
.menu-version { margin: 0 0 1.6rem; color: var(--gold-soft); font-size: 10px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; }
.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
.menu-items article { display: flex; gap: 1rem; justify-content: space-between; padding: 18px 0; border-top: 1px solid var(--line); position: relative; transition: background 240ms ease; }
.menu-items article::before { content: ""; position: absolute; left: -16px; top: 50%; width: 2px; height: 0; background: var(--gold); transform: translateY(-50%); transition: height 320ms var(--ease); }
.menu-items article.is-hover::before { height: 64%; }
.menu-items h3 { margin: 0; font-size: 15px; font-weight: 500; line-height: 1.4; }
.menu-items p { max-width: 38ch; margin: 6px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; font-weight: 300; }
.menu-items b { flex: 0 0 auto; color: var(--gold); font-size: 13px; font-weight: 500; }
.menu-content { display: flex; flex-direction: column; gap: 2.2rem; }
.menu-category-section { padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.menu-category-section:last-child { padding-bottom: 0; border-bottom: 0; }
.menu-category-title { width: 100%; margin: 0 0 1.6rem; padding: 0; padding-bottom: 1.1rem; color: var(--gold); font-family: var(--display); font-size: clamp(1.2rem, 1.6vw, 1.5rem); font-weight: 500; letter-spacing: .04em; border: 0; border-bottom: 1px solid var(--line-strong); background: none; display: flex; align-items: center; gap: .9rem; cursor: pointer; text-align: left; -webkit-appearance: none; }
.menu-category-title:hover { color: #dbb96e; }
.menu-category-title:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }
.menu-category-icon { width: 58px; height: 58px; object-fit: contain; flex-shrink: 0; }
.collapse-indicator { margin-left: auto; font-size: 1.3rem; font-weight: 400; line-height: 1; opacity: .7; transition: transform 280ms var(--ease), opacity 280ms ease; }
.menu-category-section.is-collapsed .collapse-indicator { opacity: .45; }
.menu-category-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; overflow: hidden; transition: max-height 420ms var(--ease), opacity 320ms ease, margin 320ms ease; }
.menu-category-section.is-expanded .menu-category-items { max-height: 4000px; opacity: 1; }
.menu-category-section.is-collapsed .menu-category-items { max-height: 0; opacity: 0; margin-top: 0; }
.menu-category-items article { display: flex; gap: 1rem; justify-content: space-between; padding: 14px 0; border-top: 1px solid var(--line); position: relative; transition: background 240ms ease; }
.menu-category-items article:first-child { border-top: 0; padding-top: 4px; }
.menu-category-items article h3 { margin: 0; font-size: 14px; font-weight: 500; line-height: 1.35; }
.menu-category-items .menu-item-zh { max-width: 38ch; margin: 4px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; font-weight: 300; }
.menu-category-items .menu-item-note { max-width: 38ch; margin: 4px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; font-style: italic; font-weight: 300; }
.menu-category-items b { flex: 0 0 auto; color: var(--gold); font-size: 13px; font-weight: 500; align-self: flex-start; margin-left: 1rem; white-space: nowrap; }
.menu-note { margin: 1.6rem 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; font-weight: 300; }

.visit-section { padding: clamp(6rem, 12vw, 9rem) 0; border-top: 1px solid var(--line); }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.visit-card { padding: 2rem; border: 1px solid var(--line); background: var(--bg-soft); }
.visit-card span { display: block; margin-bottom: 1rem; color: var(--gold); font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.visit-card p { margin: .5rem 0; color: var(--ivory); font-size: 14px; line-height: 1.6; font-weight: 300; }
.visit-card a { color: var(--gold-soft); }
.visit-zh { color: var(--muted) !important; font-size: 13px !important; }
.visit-mtr { color: var(--gold-soft) !important; font-size: 11px !important; }
.visit-detail { color: var(--muted) !important; font-size: 12px !important; }
.text-link { display: inline-flex; gap: 1rem; align-items: center; margin-top: 2rem; padding-bottom: 6px; border-bottom: 1px solid var(--line-strong); color: var(--gold); font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.text-link:hover { color: var(--gold-soft); }

.channel-section { padding: clamp(6rem, 12vw, 9rem) 0; border-top: 1px solid var(--line); }
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.channel-card { display: grid; grid-template-columns: 1fr auto; gap: .5rem; align-items: end; min-height: 130px; padding: 1.6rem; border: 1px solid var(--line); background: var(--bg-soft); transition: border-color 220ms ease, background 220ms ease, transform 220ms var(--ease); }
.channel-card:hover { border-color: var(--gold); background: var(--bg-card); transform: translateY(-3px); }
.channel-label { grid-column: 1 / -1; color: var(--gold); font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.channel-card strong { font-family: var(--display); font-size: 1.6rem; font-weight: 500; color: var(--ivory); }
html[lang="zh-Hant-HK"] .channel-card strong { font-family: var(--display-zh); }
.channel-card i { color: var(--gold); font-style: normal; }
.channel-icon { grid-column: 1 / -1; width: 26px; height: 26px; color: var(--gold); margin-bottom: .45rem; transition: color 220ms var(--ease); }
.channel-card:hover .channel-icon { color: var(--ivory); }

.careers-section { padding: clamp(6rem, 12vw, 9rem) 0; border-top: 1px solid var(--line); }
.careers-card { max-width: 680px; padding: clamp(1.8rem, 4vw, 2.8rem); border: 1px solid var(--line); background: var(--bg-soft); }
.careers-card > p { margin: 0 0 1.2rem; color: var(--muted); font-size: 1rem; line-height: 1.7; font-weight: 300; }
.careers-placeholder { padding: 1rem; border: 1px dashed var(--line-strong); color: var(--gold-soft); font-size: 12px; font-style: italic; }
.careers-actions { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.6rem; }

.faq-section { padding: clamp(6rem, 12vw, 9rem) 0; border-top: 1px solid var(--line); }
.faq-list { border-top: 1px solid var(--line-strong); max-width: 760px; }
.faq-list details { border-bottom: 1px solid var(--line-strong); }
.faq-list summary { position: relative; padding: 24px 50px 24px 0; cursor: pointer; list-style: none; font-family: var(--display); font-size: clamp(1.3rem, 2.2vw, 1.9rem); letter-spacing: 0; color: var(--ivory); }
html[lang="zh-Hant-HK"] .faq-list summary { font-family: var(--display-zh); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 4px; content: "+"; color: var(--gold); font-family: var(--body); font-size: 20px; transform: translateY(-50%); transition: transform 220ms ease; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list p { max-width: 56ch; margin: -3px 0 24px; color: var(--muted); line-height: 1.7; font-weight: 300; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; padding: 4rem 0; border-top: 1px solid var(--line); }
.footer-wordmark { font-family: var(--display); font-size: clamp(2.2rem, 5vw, 4rem); line-height: .9; letter-spacing: .02em; color: var(--gold); }
html[lang="zh-Hant-HK"] .footer-wordmark { font-family: var(--display-zh); }
.footer-wordmark span { display: block; }
.site-footer > div:last-child { justify-self: end; max-width: 460px; color: var(--muted); font-size: 10px; line-height: 1.6; }
.site-footer p { margin: .4rem 0; }

.js-ready [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 760ms var(--ease); }
.js-ready [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-button { display: block; }
  .hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-art { order: -1; }
  .hero-image { max-width: 340px; }
  .visit-grid { grid-template-columns: 1fr; }
  .channel-grid { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; }
  .menu-category-items { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > div:last-child { justify-self: start; }
}

@media (max-width: 720px) {
  :root { --gutter: clamp(1.15rem, 5vw, 1.5rem); }
  .concept-bar { justify-content: flex-start; overflow: hidden; }
  .concept-bar p { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .hero { padding: 4rem 0 3rem; gap: 2rem; }
  h1 { font-size: clamp(2.8rem, 13vw, 4rem); line-height: 1; }
  html[lang="zh-Hant-HK"] h1 { font-size: clamp(2.6rem, 12vw, 3.6rem); line-height: 1.18; }
  .hero-intro { margin: 1.4rem 0 1.8rem; }
  .button { flex: 1 1 auto; min-height: 52px; }
  .hero-image { max-width: 280px; }
  .brand-section, .menu-section, .visit-section, .channel-section, .careers-section, .faq-section { padding-block: clamp(4.5rem, 13vw, 6.5rem); }
  .brand-copy h2, .section-heading h2 { font-size: clamp(2.2rem, 10vw, 3.2rem); line-height: 1.1; }
  .menu-tab { padding: 1rem .5rem; font-size: 10px; }
  .menu-panel { padding: clamp(1.6rem, 5vw, 2.2rem) clamp(2rem, 6vw, 2.4rem) clamp(1.6rem, 5vw, 2.2rem) clamp(1.9rem, 6vw, 2.3rem); }
  .menu-category-chip img { width: 36px; height: 36px; }
  .menu-category-icon { width: 48px; height: 48px; }
  .menu-category-title { margin-bottom: 1.2rem; padding-bottom: .85rem; }
  .menu-items article { padding: 14px 0; }
  .visit-card { padding: 1.5rem; }
  .channel-card { min-height: 110px; padding: 1.4rem; }
  .channel-card strong { font-size: 1.4rem; }
  .footer-wordmark { font-size: clamp(2rem, 9vw, 2.8rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .js-ready [data-reveal] { opacity: 1; transform: none; }
}
