/* ==========================================================================
   Roll & Co. — Handroll Club
   Structural foundation mirrors curry.cafe's page system (fixed poster
   frame, split sliding-photo hero, alternating banner/photo bands),
   rebuilt with Roll & Co.'s navy/orange identity and content.
   ========================================================================== */

:root {
  --navy: #1F2B3B;
  --navy-deep: #141C27;
  --orange: #F16000;
  --orange-deep: #C94E00;
  --charcoal: #2F292B;
  --paper: #F5F2EC;
  --paper-deep: #EDE8DE;
  --ink: #1B1712;
  --white: #FEFEFE;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --font-zh: 'Noto Sans SC', sans-serif;

  --wrap: 1180px;
  --gap: clamp(1rem, 2.5vw, 2rem);

  --frame-t: 38px;
  --frame-s: 46px;
}

@media (max-width: 640px) {
  :root { --frame-t: 30px; --frame-s: 26px; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding: var(--frame-t) var(--frame-s);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--orange); color: white; padding: 0.75rem 1.25rem;
}
.skip-link:focus { left: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gap); }

.zh { font-family: var(--font-zh); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--orange-deep);
  margin: 0 0 0.9rem;
}
.eyebrow--light { color: #FFD9B8; }
.eyebrow .zh { letter-spacing: 0.05em; }

.h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 1.4rem;
  color: var(--navy);
}
.h2--light { color: var(--white); }
.h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.1;
  margin: 0 0 0.8rem;
  color: var(--navy);
}
.h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.85rem;
  padding: 0.85rem 1.6rem; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-deep); }
.btn--ghost { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn--ghost-light:hover { background: var(--white); color: var(--navy); }
.arrow { transition: transform 0.2s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------------- POSTER FRAME (fixed to viewport; only content scrolls) ---------------- */
.frame-top, .frame-bottom {
  position: fixed; left: 0; right: 0; height: var(--frame-t); z-index: 300;
  display: flex; align-items: center; overflow: hidden; white-space: nowrap;
}
.frame-top { top: 0; background: var(--orange); border-bottom: 3px solid var(--navy); }
.frame-bottom { bottom: 0; background: var(--navy); border-top: 3px solid var(--orange); }

.frame-ticker {
  display: inline-flex; align-items: center; gap: 0.7rem;
  animation: scroll-left 30s linear infinite;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(0.68rem, 1.3vw, 0.85rem); letter-spacing: 0.02em;
}
.frame-top .frame-ticker { color: var(--navy); }
.frame-bottom .frame-ticker { color: var(--orange); animation-name: scroll-right; }
.frame-ticker .zh { font-family: var(--font-zh); font-weight: 700; }
.frame-ticker .spark { opacity: 0.7; font-size: 0.8em; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.rail {
  position: fixed; top: var(--frame-t); bottom: var(--frame-t); width: var(--frame-s); z-index: 290;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  padding: 1.2rem 0;
}
.rail-left { left: 0; background: var(--navy); border-right: 3px solid var(--orange); }
.rail-right { right: 0; background: var(--orange); border-left: 3px solid var(--navy); }

.rail__logo img { width: 20px; height: auto; display: block; }
.rail__nav { display: flex; flex-direction: column; align-items: center; gap: 1.3rem; }
.rail__nav a {
  writing-mode: vertical-rl;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: clamp(0.72rem, 1.4vw, 0.88rem);
  display: inline-block; padding: 0.4rem 0.3rem; border-radius: 2px;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.rail-left .rail__nav a { color: var(--white); }
.rail-right .rail__nav a { color: var(--navy); }
.rail-left .rail__nav a:hover { background: var(--orange); color: var(--navy); transform: scale(1.18); }
.rail-right .rail__nav a:hover { background: var(--navy); color: var(--white); transform: scale(1.18); }
.rail__nav .spark { font-size: 0.75rem; }
.rail-left .rail__nav .spark { color: var(--orange); }
.rail-right .rail__nav .spark { color: var(--navy); opacity: 0.6; }
.rail__foot {
  writing-mode: vertical-rl;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.7rem;
}
.rail-left .rail__foot { color: rgba(255,255,255,0.55); }
.rail-right .rail__foot { color: rgba(31,43,59,0.6); }

@media (max-width: 640px) {
  .rail__logo { display: none; }
  .rail__nav { gap: 1rem; }
  .rail__foot:first-child { display: none; }
}

/* ---------------- HERO: split full-height photo columns, hold-then-slide
   (each column shows ONE full-height photo, holds it, then slides to the
   next — not a continuously-scrolling marquee) ---------------- */
.hero {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  height: calc(100vh - (var(--frame-t) * 2));
  min-height: 420px;
  overflow: hidden; border: 3px solid var(--navy);
}
.hero__col { position: relative; overflow: hidden; height: 100%; }
.hero__track { display: flex; flex-direction: column; will-change: transform; }
.hero__track img { width: 100%; height: calc(100vh - (var(--frame-t) * 2)); object-fit: cover; flex: 0 0 auto; }

/* 6 unique photos + 6 duplicates per column = 12-image track.
   One cycle moves through the 6 unique photos (0% to -50% of track height),
   holding on each for most of its slot, then sliding to the next. */
.hero__col--left .hero__track { animation: hero-slide 36s ease-in-out infinite; }
.hero__col--right .hero__track { animation: hero-slide 36s ease-in-out infinite reverse; }
@keyframes hero-slide {
  0%,     14%     { transform: translateY(0); }
  16.667%, 30.667% { transform: translateY(-8.3333%); }
  33.333%, 47.333% { transform: translateY(-16.6667%); }
  50%,    64%     { transform: translateY(-25%); }
  66.667%, 80.667% { transform: translateY(-33.3333%); }
  83.333%, 97.333% { transform: translateY(-41.6667%); }
  100%            { transform: translateY(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__track { animation: none !important; }
}

.hero__center {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 1.5rem;
  pointer-events: none;
}
.hero__tagline-zh {
  font-family: var(--font-zh); color: var(--white); font-size: clamp(1.05rem, 2.2vw, 1.6rem);
  letter-spacing: 0.08em; margin: 0 0 0.6rem; text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}
.hero__wordmark-logo {
  width: clamp(220px, 34vw, 460px); height: auto;
  filter: drop-shadow(0 8px 34px rgba(0,0,0,0.5));
}

/* mobile: stack the two columns top/bottom instead of side by side, same as curry.cafe */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .hero__track img { height: calc((100vh - (var(--frame-t) * 2)) / 2); }
}

/* ---------------- INTRO STRIP (nav-adjacent CTAs, curry.cafe keeps these in the rail;
   we surface them once, right under the hero, since the rail alone can't carry a CTA) ---------------- */
.intro-strip {
  background: var(--navy); color: var(--white); border: 3px solid var(--navy); border-top: none;
  padding: 1.3rem clamp(1rem, 4vw, 2.5rem); display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem;
}
.eyebrow--inline { margin: 0; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; margin-left: auto; }
.badge { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.85); }
.badge--dark { color: rgba(255,255,255,0.8); }

@media (max-width: 760px) {
  .intro-strip { flex-direction: column; align-items: flex-start; }
  .hero__badges { margin-left: 0; }
}

/* ---------------- STATEMENT BAND (white, bold caps paragraph + icon + credit) ---------------- */
.statement-band { background: var(--white); border: 3px solid var(--navy); border-top: none; padding: clamp(1.75rem, 4.2vw, 3.15rem) clamp(1.2rem, 5vw, 3rem); text-align: center; }
.statement-band__text {
  font-family: var(--font-display); text-transform: uppercase; color: var(--orange-deep);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem); line-height: 1.35; letter-spacing: 0.01em;
  max-width: 46ch; margin: 0 auto;
}
.statement-band__text .zh { font-family: var(--font-zh); font-weight: 700; }
.statement-band__icon { width: 67px; margin: 1.68rem auto 1.12rem; }
.statement-band__icon img { width: 100%; }
.statement-band__credit { font-family: var(--font-display); text-transform: uppercase; color: var(--orange); font-size: 1.1rem; letter-spacing: 0.02em; margin: 0; }
.statement-band__meta { font-size: 0.82rem; color: #9B9488; letter-spacing: 0.05em; text-transform: uppercase; margin: 1.4rem 0 0; }

/* ---------------- PHOTO SPLIT (edge-to-edge, no text — a pure photo interlude) ---------------- */
.photo-split { display: grid; grid-template-columns: 1fr 1fr; border: 3px solid var(--navy); border-top: none; overflow: hidden; height: clamp(260px, 42vw, 480px); }
.photo-split img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) { .photo-split { grid-template-columns: 1fr; height: auto; } .photo-split img { height: 42vh; } }

/* ---------------- DIVIDER BAR (orange, centered label — curry.cafe's "— LOCATIONS —") ---------------- */
.divider-bar { background: var(--orange); border: 3px solid var(--navy); border-top: none; border-bottom: none; padding: 0.9rem 1rem; text-align: center; }
.divider-bar span {
  font-family: var(--font-display); text-transform: uppercase; color: var(--navy);
  font-size: 0.95rem; letter-spacing: 0.08em;
}

/* ---------------- INFO BANNER (two-column colour block — LOCATIONS / MENU) ---------------- */
.info-banner { background: var(--navy); border: 3px solid var(--navy); border-top: none; display: grid; grid-template-columns: 1fr 1fr; min-height: 170px; }
.info-banner__copy { padding: clamp(1rem, 2.5vw, 1.75rem); display: flex; flex-direction: column; justify-content: center; }
.info-banner__side { position: relative; overflow: hidden; }
.info-banner__side img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.info-banner__big { font-family: var(--font-display); text-transform: uppercase; color: var(--white); font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1.15; margin: 0 0 0.6rem; }
.info-banner__row { margin: 0 0 0.45rem; font-size: 0.98rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
.info-banner__row strong { color: var(--orange); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em; font-size: 1rem; display: block; margin-bottom: 0.15rem; }
.info-banner .btn { margin-top: 0.4rem; align-self: flex-start; }

@media (max-width: 760px) { .info-banner { grid-template-columns: 1fr; } .info-banner__side { min-height: 110px; } }

/* ---------------- SINGLE PHOTO BAND (one full-bleed photo, no text) ---------------- */
.photo-band { border: 3px solid var(--navy); border-top: none; overflow: hidden; height: clamp(280px, 50vw, 560px); }
.photo-band img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------- MENU BANNER (badge + join-community CTA, curry.cafe's MENUS/BOOKINGS block) ---------------- */
.menu-banner { background: var(--paper-deep); border: 3px solid var(--navy); border-top: none; padding: clamp(2rem, 5vw, 3.5rem) 1.5rem; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.badge-circle {
  width: clamp(140px, 16vw, 190px); height: clamp(140px, 16vw, 190px); border-radius: 50%;
  background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 3px solid var(--orange); text-align: center; padding: 1rem;
}
.badge-circle img { width: 40%; margin: 0 auto 0.5rem; }
.badge-circle span { font-family: var(--font-display); text-transform: uppercase; color: var(--white); font-size: 0.8rem; letter-spacing: 0.06em; }
.badge-star {
  position: relative; width: clamp(150px, 17vw, 200px); height: clamp(150px, 17vw, 200px);
  background: var(--orange);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.badge-star span { font-family: var(--font-display); text-transform: uppercase; color: var(--navy); font-size: 0.85rem; line-height: 1.3; max-width: 9ch; }

/* ---------------- SIDE BY SIDE (2 photos, simple grid) ---------------- */
.side-by-side { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 3px solid var(--navy); border-top: none; overflow: hidden; height: clamp(240px, 36vw, 420px); }
.side-by-side img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) { .side-by-side { grid-template-columns: 1fr; height: auto; } .side-by-side img { height: 40vh; } }

/* ---------------- ORDER TAKEAWAY BAND (orange, big outline type, 4-photo row) ---------------- */
.order-band { background: var(--orange); border: 3px solid var(--navy); border-top: none; padding: 1.2rem clamp(1.2rem, 5vw, 3rem) 0; text-align: center; }
.order-band__title {
  font-family: var(--font-display); text-transform: uppercase; line-height: 0.92;
  font-size: clamp(2.4rem, 8vw, 5.5rem); margin: 0 0 1.2rem;
  color: transparent; -webkit-text-stroke: 2px var(--white);
}
.order-band__text { max-width: 52ch; margin: 0 auto 2.4rem; font-size: 1.02rem; line-height: 1.6; color: var(--navy); font-weight: 500; }
.order-band__photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.order-band__photos img { width: 100%; height: clamp(150px, 20vw, 260px); object-fit: cover; border-top: 3px solid var(--navy); }
.order-band__photos img:not(:last-child) { border-right: 3px solid var(--navy); }
@media (max-width: 700px) { .order-band__photos { grid-template-columns: repeat(2, 1fr); } }

/* ---------------- MISC: follow ticker ---------------- */
.follow-ticker { background: var(--paper-deep); border: 3px solid var(--navy); border-top: none; overflow: hidden; white-space: nowrap; padding: 0.7rem 0; }
.follow-ticker__track { display: inline-flex; gap: 3rem; animation: scroll-left 22s linear infinite; font-family: var(--font-display); text-transform: uppercase; color: var(--orange-deep); font-size: 1rem; letter-spacing: 0.06em; }

/* ---------------- MISC: stay-obsessed banner ---------------- */
.stay-band { background: var(--white); border: 3px solid var(--navy); border-top: none; padding: 1.6rem 1rem; text-align: center; }
.stay-band__text { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.6rem, 5vw, 3rem); margin: 0; }
.stay-band__text .a { color: var(--navy); }
.stay-band__text .b { color: var(--orange); }

/* ---------------- MISC: graphic blocks (3-up) ---------------- */
.graphic-blocks { display: grid; grid-template-columns: repeat(3, 1fr); border: 3px solid var(--navy); border-top: none; }
.graphic-block { position: relative; min-height: 260px; display: flex; align-items: center; justify-content: center; overflow: hidden; border-right: 3px solid var(--navy); }
.graphic-block:last-child { border-right: none; }
.graphic-block--tag { background: var(--navy); }
.graphic-block--tag .rays {
  position: absolute; inset: -20%; background: repeating-conic-gradient(var(--orange) 0deg 4deg, transparent 4deg 18deg);
  opacity: 0.35; animation: spin-slow 40s linear infinite;
}
.graphic-block--tag img { position: relative; width: 34%; z-index: 1; }
.graphic-block--oval { background: var(--orange); }
.oval-badge {
  width: 76%; aspect-ratio: 1/1.25; border-radius: 50%; border: 3px dashed var(--navy);
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 1.5rem;
}
.oval-badge span { font-family: var(--font-display); text-transform: uppercase; color: var(--navy); font-size: clamp(1rem, 1.6vw, 1.3rem); line-height: 1.25; }
.graphic-block--poster img { width: 100%; height: 100%; object-fit: cover; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

@media (max-width: 760px) {
  .graphic-blocks { grid-template-columns: 1fr; }
  .graphic-block { border-right: none; border-bottom: 3px solid var(--navy); }
  .graphic-block:last-child { border-bottom: none; }
}

/* ---------------- MISC: trust row ---------------- */
.trust-row { background: var(--paper); border: 3px solid var(--navy); border-top: none; padding: clamp(1.8rem, 4vw, 2.8rem) 1.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.trust-badge { border: 2px solid var(--navy); padding: 0.8rem 1.4rem; font-family: var(--font-display); text-transform: uppercase; color: var(--navy); font-size: 0.85rem; letter-spacing: 0.03em; }

/* ---------------- MENU (kept: real, coded, crawlable menu content) ---------------- */
.menu-section { padding: 3rem 0 4rem; background: var(--white); border: 3px solid var(--navy); border-top: none; }
.menu-intro { font-size: 1.05rem; color: #55504A; max-width: 640px; margin: 0 0 1.5rem; }
.menu-intro .zh { font-weight: 700; color: var(--navy); }

.flagship {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center; background: var(--navy); border-radius: 0; border: 3px solid var(--navy); overflow: hidden; margin-bottom: 2rem;
}
.flagship__media { position: relative; height: 100%; min-height: 260px; }
.flagship__media img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.flagship__ribbon {
  position: absolute; top: 1rem; left: 1rem; background: var(--orange); color: var(--white);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.45rem 0.9rem; border-radius: 0; border: 2px solid var(--navy);
}
.flagship__copy { padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 3vw, 2.5rem) 0; color: var(--white); }
.flagship .eyebrow { color: #FFD9B8; }
.flagship__copy h3 { color: var(--white); font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
.flagship__copy h3 .zh { display: block; font-size: 0.85rem; color: #FFD9B8; margin-top: 0.3rem; font-weight: 400; letter-spacing: 0.05em; }
.flagship__copy p { color: rgba(255,255,255,0.85); line-height: 1.6; margin: 0.8rem 0 1rem; }
.flagship__price { font-family: var(--font-display); font-size: 1.6rem; color: var(--orange); margin: 0.6rem 0 0; }

@media (max-width: 760px) {
  .flagship { grid-template-columns: 1fr; }
  .flagship__copy { padding: 1.5rem; }
}

.tabs {
  display: flex; gap: 0.6rem; overflow-x: auto; padding-bottom: 0.7rem; margin-bottom: 1.4rem;
  border-bottom: 2px solid var(--paper-deep); scrollbar-width: thin;
}
.tab {
  flex: 0 0 auto; background: none; border: 2px solid transparent; cursor: pointer;
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.02em;
  font-size: 0.85rem; color: #8A8377; padding: 0.45rem 0.9rem; border-radius: 0;
  transition: background .2s ease, color .2s ease, border-color .2s ease; white-space: nowrap;
}
.tab .zh { font-family: var(--font-zh); font-weight: 500; margin-left: 0.2rem; opacity: 0.8; }
.tab:hover { border-color: var(--navy); color: var(--navy); }
.tab.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.panel { display: none; }
.panel.is-active { display: block; animation: fade-in 0.35s ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.panel__note { font-size: 0.92rem; color: #8A8377; margin: -0.4rem 0 1rem; font-style: italic; }

.cat-banner { position: relative; height: 220px; border-radius: 0; border: 3px solid var(--navy); overflow: hidden; margin-bottom: 1rem; }
.cat-banner img { width: 100%; height: 100%; object-fit: cover; }
.cat-banner__label {
  position: absolute; left: 1.4rem; bottom: 1.1rem; z-index: 1;
  font-family: var(--font-display); text-transform: uppercase; color: var(--white);
  font-size: clamp(1.3rem, 2.6vw, 2rem); text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.cat-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,28,39,0.65) 0%, rgba(20,28,39,0) 55%);
}
@media (max-width: 640px) { .cat-banner { height: 160px; } }

.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.dish-grid--compact { grid-template-columns: repeat(4, 1fr); }
.dish { background: var(--paper); border-radius: 0; overflow: hidden; border: 2px solid var(--navy); display: flex; flex-direction: column; }
.dish__media { aspect-ratio: 4/3; overflow: hidden; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dish:hover .dish__media img { transform: scale(1.05); }
.dish__body { padding: 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.dish__head { display: flex; justify-content: space-between; align-items: baseline; gap: 0.8rem; margin-bottom: 0.35rem; }
.dish__head h4 { margin: 0; font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--navy); line-height: 1.35; }
.dish__head h4 .zh { display: block; font-family: var(--font-zh); font-weight: 400; font-size: 0.82rem; color: #8A8377; margin-top: 0.15rem; }
.dish__price { font-family: var(--font-display); font-size: 1.05rem; color: var(--orange-deep); white-space: nowrap; }
.dish__desc { font-size: 0.88rem; color: #6B6459; line-height: 1.55; margin: 0.3rem 0 0.6rem; }
.dish__tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: auto; padding-top: 0.5rem; }
.tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.25rem 0.55rem; border-radius: 0; }
.tag--raw { background: #FCE8DC; color: #B0430B; }
.tag--cooked { background: #E7ECE5; color: #4B6350; }
.tag--new { background: #FFE9A8; color: #7A5B00; }
.tag--must { background: var(--navy); color: var(--white); }
.tag--signature { background: var(--orange); color: var(--white); }

.dish--sm .dish__body { padding: 0.9rem 1rem; }
.dish--sm .dish__head h4 { font-size: 0.9rem; }

@media (max-width: 980px) { .dish-grid { grid-template-columns: repeat(2, 1fr); } .dish-grid--compact { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dish-grid, .dish-grid--compact { grid-template-columns: 1fr; } }

/* ---------------- FOOTER ---------------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 3.2rem 0 2rem; border: 3px solid var(--navy); border-top: none; }
.footer__inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; align-items: start; }
.footer__logo { height: 22px; margin-bottom: 0.8rem; }
.footer__tagline { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin: 0; }
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.footer__links a:hover { color: var(--orange); }
.footer__meta { font-size: 0.85rem; text-align: right; }
.footer__meta p { margin: 0 0 0.6rem; line-height: 1.5; }
.footer__copy { color: rgba(255,255,255,0.4); font-size: 0.78rem; }

@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; text-align: left; }
  .footer__meta { text-align: left; }
}
