:root {
  color-scheme: light;
  --paper: #e9ecf1;
  --paper-soft: #f5f6f8;
  --ink: #20262d;
  --muted: #66717d;
  --line: rgb(48 61 75 / 0.18);
  --line-strong: rgb(48 61 75 / 0.34);
  --ice: #b7dce5;
  --blue: #6f9fb6;
  --blue-deep: #315e74;
  --lilac: #c9c7db;
  --silver: #b8c1cb;
  --pearl: #e3dfe7;
  --display: "Avenir Next Condensed", "DIN Condensed", "Helvetica Neue", sans-serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", sans-serif;
  --display-yue: "Songti TC", "Songti SC", "Hiragino Mincho ProN", serif;
  --body-yue: "PingFang HK", "PingFang TC", "Hiragino Sans GB", "Microsoft JhengHei", sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --max: 1460px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; background: var(--paper); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(ellipse 56% 34% at 96% 2%, rgb(201 199 219 / 0.74), transparent 72%),
    radial-gradient(ellipse 42% 34% at 2% 34%, rgb(183 220 229 / 0.5), transparent 75%),
    linear-gradient(145deg, #f3f4f7 0%, var(--paper) 52%, #e2e7eb 100%);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

html[lang="yue-Hant-HK"] body { font-family: var(--body-yue); }
body::before {
  position: fixed; inset: 0; z-index: 50; pointer-events: none; content: ""; opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }
button, summary { color: inherit; font: inherit; }
button { border: 0; }
img { max-width: 100%; }
:focus-visible { outline: 2px solid var(--blue-deep); outline-offset: 5px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 10px 14px; color: white; background: var(--ink); 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: #eaf0f3; background: #252b32; font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
}
.concept-bar p { margin: 0; opacity: .72; }
.concept-bar span { font-weight: 700; white-space: nowrap; }

.site-header {
  position: relative; z-index: 20; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  width: min(100% - 2 * var(--gutter), var(--max)); min-height: 74px; margin: 0 auto; border-bottom: 1px solid var(--line);
}
.wordmark, .footer-wordmark { display: inline-flex; flex-direction: column; width: max-content; font-family: var(--display); font-size: 13px; font-weight: 800; line-height: .86; letter-spacing: .13em; }
.wordmark { flex-direction: row; gap: 10px; align-items: center; }
.wordmark > img { width: 38px; height: 38px; border-radius: 50%; }
.wordmark > span { display: grid; }
.desktop-nav { display: flex; gap: clamp(1.4rem, 2.7vw, 2.8rem); font-size: 12px; font-weight: 650; letter-spacing: .04em; }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 5px; left: 0; height: 1px; content: ""; background: var(--blue-deep); 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); background: transparent; cursor: pointer; }
.language-switch button[aria-pressed="true"] { color: var(--ink); font-weight: 800; }
.menu-button { display: none; width: 42px; height: 42px; padding: 12px 9px; background: transparent; cursor: pointer; }
.menu-button span { display: block; height: 1px; margin: 5px 0; background: currentColor; 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: 73px; right: calc(-1 * var(--gutter)); left: calc(-1 * var(--gutter)); min-height: calc(100dvh - 106px); padding: 3rem var(--gutter); background: rgb(236 239 243 / .98); backdrop-filter: blur(20px); }
.mobile-menu nav { display: grid; }
.mobile-menu a { padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 32px; letter-spacing: -.03em; }
html[lang="yue-Hant-HK"] .mobile-menu a { font-family: var(--display-yue); }
body.menu-open { overflow: hidden; }

.section-shell { position: relative; width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.hero {
  display: grid; grid-template-columns: minmax(300px, .82fr) minmax(500px, 1.18fr); gap: clamp(2rem, 5vw, 6rem); align-items: center;
  min-height: calc(100dvh - 108px); padding: clamp(3rem, 6vh, 5rem) 0 4rem; overflow: clip;
}
.hero-copy { position: relative; z-index: 3; max-width: 650px; }
.eyebrow, .section-index { margin: 0 0 1.4rem; color: var(--blue-deep); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2 { margin: 0; font-family: var(--display); font-weight: 600; letter-spacing: -.055em; }
html[lang="yue-Hant-HK"] h1, html[lang="yue-Hant-HK"] h2 { font-family: var(--display-yue); font-weight: 600; letter-spacing: -.04em; }
h1 { max-width: 10ch; font-size: clamp(4rem, 7.2vw, 7.8rem); line-height: .82; white-space: pre-line; }
h1 i { color: var(--blue-deep); font-family: inherit; font-weight: 420; }
html[lang="yue-Hant-HK"] h1 { max-width: 7ch; font-size: clamp(3.6rem, 6.4vw, 6.8rem); line-height: 1.04; }
.hero-intro { max-width: 33ch; margin: 2rem 0; color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 0 20px; font-size: 12px; font-weight: 700; letter-spacing: .03em; transition: transform 220ms var(--ease), background 220ms ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(1px) scale(.985); }
.button-primary { color: white; background: var(--ink); box-shadow: 0 14px 30px rgb(55 72 90 / .18); }
.button-primary:hover { background: var(--blue-deep); }
.button-secondary { border: 1px solid var(--line-strong); background: rgb(245 246 248 / .55); backdrop-filter: blur(12px); }

.hero-composition { position: relative; isolation: isolate; height: min(690px, calc(100dvh - 178px)); min-height: 560px; --mx: 52%; --my: 34%; --tilt-x: 0deg; --tilt-y: 0deg; }
.foil-field { position: absolute; inset: 4% 0 3% 6%; border-radius: 48% 52% 42% 58% / 54% 39% 61% 46%; background: radial-gradient(circle at var(--mx) var(--my), rgb(255 255 255 / .95) 0 7%, transparent 28%), conic-gradient(from 218deg at 54% 46%, #aacbd8, #e0e1ea 16%, #9db8cb 30%, #d8cedf 43%, #bedbd9 58%, #edf0ee 72%, #a8b4c7 86%, #c9dce4); box-shadow: inset 28px -30px 70px rgb(82 109 132 / .2), inset -28px 22px 54px rgb(255 255 255 / .5), 0 36px 80px rgb(55 72 94 / .18); transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); transition: transform 420ms var(--ease); }
.foil-field::before { position: absolute; inset: 1px; border: 1px solid rgb(255 255 255 / .6); border-radius: inherit; content: ""; }
.foil-field::after { position: absolute; inset: 18% 10% 9% 42%; border-radius: 54% 46% 58% 42% / 42% 60% 40% 58%; content: ""; background: linear-gradient(132deg, rgb(255 255 255 / .64), rgb(193 208 224 / .08) 48%, rgb(89 117 144 / .17)); mix-blend-mode: soft-light; }
.orbit { position: absolute; z-index: -1; border: 1px solid rgb(62 83 105 / .25); border-radius: 50%; pointer-events: none; }
.orbit-one { inset: 2% -4% 1% 3%; transform: rotate(-11deg); }
.orbit-two { inset: 24% -10% 20% 25%; border-color: rgb(255 255 255 / .7); transform: rotate(28deg); }
.hero-cutout { position: absolute; top: 0; bottom: 0; left: 0; z-index: 2; width: 49%; margin: 0; border: 1px solid rgb(255 255 255 / .72); background: #15171a; box-shadow: 0 25px 46px rgb(45 57 74 / .22); }
.hero-cutout img { object-fit: contain; object-position: 50% 50%; filter: saturate(.86) contrast(1.02) brightness(1.02); }
.hero-sign { position: absolute; top: 7%; right: 0; bottom: 7%; z-index: 4; width: 47%; border: 1px solid rgb(255 255 255 / .72); background: #111316; box-shadow: 0 20px 46px rgb(45 57 74 / .24); }
.hero-sign img { object-fit: contain; object-position: 50% 50%; }
.hero-logo { position: absolute; bottom: 2%; left: 50%; z-index: 6; width: 82px; height: 82px; border: 1px solid rgb(255 255 255 / .8); border-radius: 50%; box-shadow: 0 16px 34px rgb(45 57 74 / .22); transform: translateX(-50%); }
.image-tone { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at var(--mx, 50%) var(--my, 34%), transparent 0 15%, rgb(202 230 238 / .24) 42%, transparent 64%), linear-gradient(145deg, rgb(76 120 146 / .08), rgb(207 197 220 / .26)); mix-blend-mode: color; }
.material-note { position: absolute; top: 15%; right: 0; z-index: 4; display: grid; gap: 3px; width: 170px; padding: 15px 17px; border: 1px solid rgb(255 255 255 / .7); background: rgb(239 243 247 / .58); box-shadow: inset 0 1px white, 0 14px 32px rgb(50 66 84 / .12); backdrop-filter: blur(18px) saturate(1.3); }
.material-note span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.material-note strong { font-size: 12px; font-weight: 650; }
.hero-spec { position: absolute; right: 0; bottom: 22px; left: 0; display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; letter-spacing: .12em; }

.media-frame { position: relative; overflow: hidden; margin: 0; background: var(--silver); }
.media-frame img { display: block; width: 100%; height: 100%; object-fit: cover; transition: scale 420ms var(--ease), filter 420ms ease; }
.media-frame.hero-cutout { position: absolute; }
.media-frame.hero-sign { position: absolute; }
.media-frame.hero-cutout img,
.media-frame.hero-sign img,
.media-frame.flavour-image img,
.media-frame.seasonal-product img { object-fit: contain; object-position: 50% 50%; }
.media-frame:hover img { scale: 1.035; }
.image-fallback { display: none; }
.media-frame.is-error img, .media-frame.is-error .image-tone { visibility: hidden; }
.media-frame.is-error .image-fallback { position: absolute; inset: 0; display: grid; place-items: center; margin: 0; padding: 2rem; background: linear-gradient(145deg, var(--silver), var(--paper-soft)); font-size: 12px; }

.menu-section { display: grid; grid-template-columns: minmax(260px, .55fr) minmax(500px, 1.45fr); gap: 4rem clamp(3rem, 8vw, 9rem); padding: clamp(8rem, 13vw, 13rem) 0; }
.section-heading { max-width: 480px; }
.section-heading h2, .story-copy h2, .seasonal-copy h2, .contact-heading h2 { font-size: clamp(3rem, 5.7vw, 6.4rem); line-height: .9; white-space: pre-line; }
.section-heading > p:last-child, .story-copy > p, .seasonal-copy > p { max-width: 37rem; margin: 1.8rem 0 0; color: var(--muted); line-height: 1.72; }
.menu-section > .section-heading { grid-column: 1; grid-row: 1 / span 2; }
.instagram-menu, .menu-browser { grid-column: 2; }
.instagram-menu { display: grid; gap: 1.6rem; }
.archive-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; align-items: end; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line-strong); }
.archive-heading h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3.2vw, 3.6rem); font-weight: 560; line-height: .95; letter-spacing: -.04em; }
html[lang="yue-Hant-HK"] .archive-heading h3 { font-family: var(--display-yue); }
.archive-heading p { max-width: 48ch; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.highlight-index { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 1.5rem; }
.highlight-index a { padding: 11px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 17px; font-weight: 600; letter-spacing: -.02em; transition: color 180ms ease, padding 220ms var(--ease); }
.highlight-index a:hover { padding-left: 7px; color: var(--blue-deep); }
.flavour-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .9rem; margin-top: 1rem; }
.flavour-card { min-width: 0; margin: 0; }
.flavour-image { aspect-ratio: 4 / 5; background: var(--silver); }
.flavour-image img { object-fit: contain; object-position: 50% 50%; }
.flavour-card figcaption { margin-top: .65rem; color: var(--ink); font-size: 10px; font-weight: 700; line-height: 1.35; }
.campaign-caption { margin: -.5rem 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.menu-browser { border-top: 1px solid var(--line-strong); }
.menu-category { border-bottom: 1px solid var(--line-strong); }
.menu-category summary { display: grid; grid-template-columns: 52px 1fr auto; gap: 1rem; align-items: center; min-height: 88px; cursor: pointer; list-style: none; transition: color 200ms ease, padding 220ms var(--ease); }
.menu-category summary::-webkit-details-marker { display: none; }
.menu-category summary:hover { color: var(--blue-deep); padding-left: 8px; }
.menu-category summary span, .menu-category summary small { color: var(--muted); font-size: 10px; letter-spacing: .12em; }
.menu-category summary strong { font-family: var(--display); font-size: clamp(2rem, 3.5vw, 3.7rem); font-weight: 560; letter-spacing: -.04em; }
html[lang="yue-Hant-HK"] .menu-category summary strong { font-family: var(--display-yue); }
.menu-category summary small::after { display: inline-block; margin-left: 14px; content: "+"; color: var(--ink); font-size: 18px; font-weight: 400; transition: transform 220ms ease; }
.menu-category[open] summary small::after { transform: rotate(45deg); }
.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; padding: .5rem 0 2rem 68px; }
.menu-items article { display: flex; gap: 1rem; justify-content: space-between; padding: 18px 0; border-top: 1px solid var(--line); }
.menu-items h3 { margin: 0; font-size: 14px; font-weight: 700; line-height: 1.35; }
.menu-items p { max-width: 42ch; margin: 6px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.menu-items b { flex: 0 0 auto; font-size: 12px; font-weight: 650; }
.menu-items-compact article { align-items: baseline; }
.evidence-note { margin: 1rem 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }

.story-section { display: grid; grid-template-columns: minmax(320px, 1fr) minmax(380px, .78fr); gap: clamp(4rem, 10vw, 11rem); align-items: center; min-height: 72dvh; padding: 8rem 0 11rem; }
.story-copy { max-width: 560px; }
.proposal-label { display: inline-block; margin-top: 2rem !important; padding-top: 1rem; border-top: 1px solid var(--line); font-size: 9px; font-weight: 750; letter-spacing: .12em; }
.story-statement { position: relative; max-width: 560px; padding: clamp(2.2rem, 5vw, 4.5rem); border: 1px solid rgb(255 255 255 / .65); background: linear-gradient(145deg, rgb(183 220 229 / .52), rgb(227 223 231 / .68)); box-shadow: inset 0 1px white, 0 24px 60px rgb(53 72 88 / .12); }
.story-statement p { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3.6vw, 4rem); line-height: 1.02; letter-spacing: -.04em; }
html[lang="yue-Hant-HK"] .story-statement p { font-family: var(--display-yue); line-height: 1.2; }
.story-statement span { display: block; margin-top: 2rem; color: var(--blue-deep); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.story-gallery { position: relative; min-height: 680px; isolation: isolate; }
.story-gallery::before { position: absolute; inset: 8% 3% 5% 6%; z-index: -1; content: ""; background: linear-gradient(128deg, rgb(183 220 229 / .7), rgb(201 199 219 / .65) 54%, rgb(227 223 231 / .7)); clip-path: polygon(8% 2%, 88% 0, 100% 32%, 83% 96%, 22% 100%, 0 70%); box-shadow: 0 30px 80px rgb(57 75 91 / .12); }
.story-image img { filter: saturate(.54) contrast(1.1) brightness(1.04); }
.story-image-wide { position: absolute; top: 5%; right: 2%; width: 62%; height: 77%; clip-path: polygon(7% 0, 100% 4%, 91% 100%, 0 85%); }
.story-image-wide img { object-position: 50% 45%; transform: scale(1.06); }
.story-image-cut { position: absolute; bottom: 1%; left: 3%; width: 43%; aspect-ratio: .77; clip-path: polygon(15% 0, 100% 8%, 87% 96%, 4% 100%, 0 28%); filter: drop-shadow(0 24px 36px rgb(44 57 70 / .22)); }

.seasonal-section { display: grid; grid-template-columns: minmax(520px, 1.15fr) minmax(280px, .85fr); gap: clamp(3rem, 8vw, 9rem); align-items: center; padding: 8rem 0 11rem; border-top: 1px solid var(--line); }
.seasonal-art { position: relative; min-height: 620px; }
.seasonal-art::before { position: absolute; inset: 4% 12% 4% 2%; content: ""; border-radius: 52% 48% 38% 62% / 45% 60% 40% 55%; background: conic-gradient(from 110deg, var(--ice), var(--pearl), #d5e0e2, var(--lilac), var(--ice)); box-shadow: 0 28px 72px rgb(54 72 88 / .14); }
.seasonal-product { position: absolute; inset: 0 10%; border: 1px solid rgb(255 255 255 / .72); background: #cbd1d6; box-shadow: 0 24px 50px rgb(45 57 74 / .2); }
.seasonal-product img { object-fit: contain; object-position: 50% 50%; filter: saturate(.76) contrast(1.04) brightness(1.04); }
.seasonal-copy { max-width: 570px; }
.text-link, .call-link { display: inline-flex; gap: 1rem; align-items: center; margin-top: 2rem; padding-bottom: 6px; border-bottom: 1px solid var(--line-strong); font-size: 12px; font-weight: 700; }

.faq-section { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(3rem, 8vw, 9rem); padding: 9rem 0 11rem; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-list details { border-bottom: 1px solid var(--line-strong); }
.faq-list summary { position: relative; padding: 25px 50px 25px 0; cursor: pointer; list-style: none; font-family: var(--display); font-size: clamp(1.6rem, 2.6vw, 2.7rem); letter-spacing: -.03em; }
html[lang="yue-Hant-HK"] .faq-list summary { font-family: var(--display-yue); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 4px; content: "+"; color: var(--blue-deep); 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: 58ch; margin: -3px 0 24px; color: var(--muted); line-height: 1.65; }

.contact-section { padding: 8rem 0 10rem; border-top: 1px solid var(--line); }
.contact-heading { max-width: 850px; }
.contact-facts { display: grid; grid-template-columns: 1.3fr .7fr .8fr; gap: 2rem; margin-top: 5rem; padding: 1.5rem 0; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.contact-facts span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-facts p, .contact-facts a { display: block; margin: 10px 0 0; font-size: 13px; line-height: 1.5; }
.contact-facts [data-i18n="hoursValue"] { white-space: pre-line; }
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.channel-grid > a { display: grid; grid-template-columns: 30px 1fr auto; gap: 1rem; align-items: center; min-height: 106px; padding: 1.2rem; border: 1px solid var(--line); background: rgb(245 246 248 / .5); backdrop-filter: blur(12px); transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease; }
.channel-grid > a:hover { border-color: var(--line-strong); background: rgb(183 220 229 / .44); transform: translateY(-4px); }
.channel-grid img { width: 24px; height: 24px; }
.channel-grid span { display: grid; gap: 5px; }
.channel-grid small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.channel-grid strong { font-size: 13px; }
.channel-grid i { font-style: normal; }
.call-link { margin-top: 1.5rem; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; padding: 4rem 0; border-top: 1px solid var(--line-strong); }
.footer-wordmark { font-size: clamp(2.5rem, 6vw, 6.5rem); letter-spacing: -.02em; }
.site-footer > div:last-child { justify-self: end; max-width: 560px; color: var(--muted); font-size: 10px; line-height: 1.55; }
.site-footer p { margin: .35rem 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 1fr; }
  .hero-composition { height: 560px; min-height: 560px; }
  .menu-section, .story-section, .faq-section { grid-template-columns: 1fr; }
  .section-heading, .story-copy { max-width: 720px; }
  .menu-section { gap: 4rem; }
  .menu-section > .section-heading, .instagram-menu, .menu-browser { grid-column: 1; grid-row: auto; }
  .story-section { gap: 2rem; }
  .story-gallery { min-height: 650px; }
  .seasonal-section { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 720px) {
  :root { --gutter: 1.1rem; }
  .concept-bar { justify-content: flex-start; overflow: hidden; }
  .concept-bar p { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 4.5rem; }
  h1 { font-size: clamp(4rem, 20vw, 6rem); }
  html[lang="yue-Hant-HK"] h1 { font-size: clamp(3.4rem, 17vw, 5.2rem); }
  .hero-composition { height: 520px; min-height: 520px; }
  .foil-field { inset: 5% 0 5% 2%; }
  .hero-cutout { top: 0; bottom: 0; left: 0; width: 49%; height: auto; }
  .hero-sign { top: 7%; right: 0; bottom: 7%; width: 47%; height: auto; }
  .hero-logo { width: 66px; height: 66px; }
  .material-note { top: 9%; right: 1%; width: 145px; }
  .hero-spec { position: relative; bottom: auto; margin-top: -1rem; }
  .menu-section, .story-section, .seasonal-section, .faq-section, .contact-section { padding-block: 6.5rem; }
  .section-heading h2, .story-copy h2, .seasonal-copy h2, .contact-heading h2 { font-size: clamp(3.1rem, 15vw, 4.8rem); }
  html[lang="yue-Hant-HK"] .section-heading h2, html[lang="yue-Hant-HK"] .story-copy h2, html[lang="yue-Hant-HK"] .seasonal-copy h2, html[lang="yue-Hant-HK"] .contact-heading h2 { font-size: clamp(2.8rem, 13vw, 4rem); line-height: 1.08; }
  .menu-category summary { grid-template-columns: 38px 1fr auto; min-height: 74px; }
  .menu-category summary strong { font-size: 2.15rem; }
  .menu-items { grid-template-columns: 1fr; padding-left: 0; }
  .archive-heading { grid-template-columns: 1fr; gap: 1rem; }
  .highlight-index { grid-template-columns: repeat(2, 1fr); }
  .flavour-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-gallery { min-height: 520px; }
  .story-image-wide { width: 68%; }
  .story-image-cut { width: 47%; }
  .seasonal-section { grid-template-columns: 1fr; }
  .seasonal-art { min-height: 520px; }
  .seasonal-copy { order: -1; }
  .contact-facts, .channel-grid, .site-footer { grid-template-columns: 1fr; }
  .contact-facts { gap: 1.3rem; }
  .site-footer > div:last-child { justify-self: start; }
  .footer-wordmark { font-size: 3.2rem; }
}

@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; }
  .media-frame img { transition: none; }
  .media-frame:hover img { scale: 1; }
}
