/* =========================================================
   Yuan's Garden Restaurant 隨園 — Landing Page
   Design: warm rice-paper + ink + brand gold + cinnabar
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* paper / light surfaces */
  --paper:      #FBF6EC;
  --paper-2:    #F4EAD7;
  --paper-3:    #EEE2CB;
  --line:       #E4D7BE;

  /* ink / text */
  --ink:        #211C15;
  --ink-2:      #3B342A;
  --muted:      #6E6455;

  /* brand */
  --gold:       #B9852A;   /* rich gold — decorative / large text / borders */
  --gold-ink:   #86610F;   /* darker gold — small text on paper (AA ≥4.5) */
  --gold-2:     #D5A23A;   /* mid gold */
  --gold-bright:#F2C64E;   /* logo-tile yellow — on dark */
  --cinnabar:   #9E2B23;   /* deep seal red */

  /* dark surfaces */
  --ink-900:    #17130D;
  --ink-850:    #1E1811;
  --ink-800:    #241D14;
  --on-dark:    #F3E9D6;
  --on-dark-mut:#B9AC93;

  /* type */
  --font-serif: "Cormorant Garamond", "Noto Serif SC", Georgia, serif;
  --font-cn:    "Noto Serif SC", "Songti SC", serif;
  --font-body:  "Noto Sans SC", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* rhythm */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --shadow-sm: 0 2px 10px rgba(33,28,21,.06);
  --shadow-md: 0 14px 40px rgba(33,28,21,.12);
  --shadow-lg: 0 30px 70px rgba(20,15,9,.28);
  --header-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--ink); color: var(--on-dark);
  padding: 10px 16px; border-radius: var(--radius);
  z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: .7em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: currentColor; opacity: .7;
}
.eyebrow--gold { color: var(--gold-bright); }

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: .005em;
  color: var(--ink);
}
.section-title--light { color: var(--on-dark); }

.section { padding-block: clamp(64px, 9vw, 128px); }
.section--paper2 { background: var(--paper-2); }
.section--dark {
  background:
    radial-gradient(120% 120% at 80% -10%, rgba(242,198,78,.08), transparent 55%),
    var(--ink-900);
  color: var(--on-dark);
}

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(40px, 6vw, 68px);
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-intro {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.06rem;
}
.section--dark .section-intro { color: var(--on-dark-mut); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  padding: 15px 30px;
  min-height: 48px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  will-change: transform;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 10px 20px; min-height: 42px; font-size: .8rem; }
.btn--block { display: flex; width: 100%; }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #2A1E08;
  box-shadow: 0 8px 20px rgba(185,133,42,.28);
}
.btn--gold:hover {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-2));
  box-shadow: 0 12px 26px rgba(185,133,42,.4);
}
.btn--ghost {
  background: transparent;
  color: var(--on-dark);
  border: 1px solid rgba(243,233,214,.5);
}
.btn--ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn--ink {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ink:hover { background: var(--ink); color: var(--paper); }

/* ---------- Seal / brand mark ---------- */
.brand__seal {
  display: inline-flex;
  gap: 4px;
}
.brand__seal span {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  background: var(--gold-bright);
  color: #1B1710;
  font-family: var(--font-cn);
  font-weight: 700;
  font-size: 20px;
  border-radius: 5px;
  line-height: 1;
}
.brand__seal--lg span { width: 44px; height: 44px; font-size: 30px; border-radius: 7px; }

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  background: var(--ink-900);
  color: var(--on-dark-mut);
  font-size: .82rem;
  border-bottom: 1px solid rgba(242,198,78,.14);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  min-height: 42px;
  padding-block: 6px;
}
.topbar__tag { letter-spacing: .04em; }
.topbar__meta { display: flex; align-items: center; gap: 16px; white-space: nowrap; }
.topbar__link { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-bright); font-weight: 600; }
.topbar__link:hover { color: #fff; }
.topbar__sep { width: 1px; height: 14px; background: rgba(255,255,255,.18); }
.topbar__social { display: inline-flex; gap: 10px; margin-left: 4px; }
.topbar__social a { color: var(--on-dark-mut); display: grid; place-items: center; }
.topbar__social a:hover { color: var(--gold-bright); }
.ic { width: 17px; height: 17px; fill: currentColor; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,246,236,.94);
  backdrop-filter: saturate(1.4) blur(6px);
  -webkit-backdrop-filter: saturate(1.4) blur(6px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, background-color .25s, border-color .25s;
}
.site-header.is-scrolled {
  background: rgba(251,246,236,.985);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__word { display: flex; flex-direction: column; line-height: 1.1; }
.brand__en {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.42rem;
  color: var(--ink);
  letter-spacing: .01em;
}
.brand__sub {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-ink);
  font-weight: 600;
}

.nav__list { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav__link {
  position: relative;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 6px 2px;
  transition: color .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s ease;
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--gold-ink); }

.site-header__cta { display: flex; align-items: center; gap: 12px; }

/* language toggle */
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  overflow: hidden;
}
.lang-btn {
  padding: 7px 13px;
  min-height: 36px;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--muted);
  transition: background-color .2s, color .2s;
}
.lang-btn.is-active { background: var(--ink); color: var(--paper); }
.lang-btn:not(.is-active):hover { color: var(--ink); }

/* hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 0 10px;
}
.nav-toggle span {
  height: 2px; width: 24px; background: var(--ink);
  border-radius: 2px; transition: transform .28s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   MOBILE NAV
   ========================================================= */
.mobile-nav {
  position: fixed; inset: 0; z-index: 150;
  visibility: hidden;
}
.mobile-nav.is-open { visibility: visible; }
.mobile-nav__scrim {
  position: absolute; inset: 0;
  z-index: 1;
  background: rgba(18,13,8,.5);
  opacity: 0; transition: opacity .3s;
}
.mobile-nav.is-open .mobile-nav__scrim { opacity: 1; }
.mobile-nav__panel {
  position: absolute; top: 0; right: 0; height: 100%;
  z-index: 2;
  width: min(340px, 86vw);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  padding: 28px 28px calc(28px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: 8px;
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px; display: grid; place-items: center;
  color: var(--ink-2);
}
.mobile-nav__close svg { width: 26px; height: 26px; }
.mobile-nav__seal { display: inline-flex; gap: 5px; margin-bottom: 14px; }
.mobile-nav__seal span {
  display: grid; place-items: center; width: 40px; height: 40px;
  background: var(--gold-bright); color: #1B1710;
  font-family: var(--font-cn); font-weight: 700; font-size: 26px; border-radius: 6px;
}
.mobile-nav__list { display: flex; flex-direction: column; margin-bottom: 12px; }
.mobile-nav__list a {
  display: block;
  padding: 15px 4px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color .2s, padding-left .2s;
}
.mobile-nav__list a:hover { color: var(--gold-ink); padding-left: 10px; }
.mobile-nav__menu-link {
  margin-top: 14px; text-align: center;
  color: var(--gold-ink); font-weight: 600; font-size: .9rem;
  letter-spacing: .04em;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex; align-items: center;
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,11,6,.62) 0%, rgba(15,11,6,.42) 40%, rgba(15,11,6,.72) 100%),
    radial-gradient(120% 90% at 20% 30%, rgba(15,11,6,.30), rgba(15,11,6,.66));
}
.hero__inner { padding-block: clamp(90px, 14vh, 150px); max-width: 780px; }
.hero__eyebrow {
  font-size: .8rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-bright); font-weight: 600; margin-bottom: 22px;
}
.hero__title {
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: 8px;
}
.hero__cn {
  font-family: var(--font-cn);
  font-weight: 700;
  font-size: clamp(3.4rem, 11vw, 6.6rem);
  line-height: 1;
  letter-spacing: .1em;
  color: var(--gold-bright);
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero__en {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: .02em;
  color: #fff;
}
.hero__tag {
  font-family: var(--font-cn);
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  letter-spacing: .3em;
  color: var(--on-dark);
  margin-bottom: 20px;
}
.hero__lede {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 30em;
  color: #EBE0CC;
  margin-bottom: 34px;
}
.hero__lede em { font-family: var(--font-serif); font-style: italic; color: var(--gold-bright); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__awards {
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  font-size: .84rem; color: var(--on-dark-mut);
  border-top: 1px solid rgba(243,233,214,.16);
  padding-top: 20px;
}
.hero__awards li { display: flex; align-items: center; gap: 8px; }
.hero__award-star { color: var(--gold-bright); }

.hero__scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(243,233,214,.5);
  border-radius: 14px; display: grid; place-items: start center; padding-top: 7px;
  z-index: 2;
}
.hero__scroll span {
  width: 4px; height: 8px; border-radius: 2px; background: var(--gold-bright);
  animation: scrolldot 1.7s ease-in-out infinite;
}
@keyframes scrolldot { 0%,100%{opacity:0;transform:translateY(0)} 50%{opacity:1;transform:translateY(9px)} }

/* =========================================================
   AWARDS RIBBON
   ========================================================= */
.awards { background: var(--ink-850); color: var(--on-dark); }
.awards__inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 54px);
  padding-block: 30px;
}
.award { display: flex; align-items: center; gap: 16px; max-width: 340px; }
.award__logo {
  width: 58px; height: 58px; object-fit: contain;
  background: #fff; border-radius: 6px; padding: 5px; flex-shrink: 0;
}
.award__icon {
  width: 58px; height: 58px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid rgba(242,198,78,.4); border-radius: 50%;
}
.award__icon svg { width: 30px; height: 30px; fill: var(--gold-bright); }
.award__title {
  font-family: var(--font-serif); font-size: 1.18rem; font-weight: 600;
  color: var(--gold-bright); line-height: 1.2;
}
.award__desc { font-size: .84rem; color: var(--on-dark-mut); }
.award__desc em { color: var(--on-dark); font-style: italic; }
.award__divider { width: 1px; height: 46px; background: rgba(243,233,214,.16); }

/* =========================================================
   STORY
   ========================================================= */
.story__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.story__media { position: relative; }
.story__media img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.story__media::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(185,133,42,.5); border-radius: var(--radius);
  pointer-events: none; mix-blend-mode: multiply;
}
.story__stamp {
  position: absolute; right: -14px; bottom: -14px;
  background: var(--cinnabar); color: #fff;
  font-family: var(--font-cn); font-weight: 700;
  font-size: 1.5rem; letter-spacing: .1em;
  padding: 12px 10px; border-radius: 6px;
  writing-mode: vertical-rl;
  box-shadow: var(--shadow-md);
}
.story__body > p:not(.eyebrow) { color: var(--ink-2); margin-bottom: 1.1rem; max-width: 46ch; }
.story__body > p strong { color: var(--ink); font-weight: 700; }
.story__body > p em { font-family: var(--font-serif); font-style: italic; }
.story .section-title { margin-bottom: 1.4rem; }

.timeline { margin-top: 2rem; display: grid; gap: 2px; }
.timeline__item {
  display: grid; grid-template-columns: 84px 1fr; gap: 20px; align-items: baseline;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.timeline__item:last-child { border-bottom: 1px solid var(--line); }
.timeline__year {
  font-family: var(--font-serif); font-weight: 700; font-size: 1.6rem;
  color: var(--gold);
}
.timeline__label { color: var(--ink-2); font-size: .98rem; }
.timeline__label em { font-family: var(--font-serif); font-style: italic; }

/* =========================================================
   SIGNATURE DISHES
   ========================================================= */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
.dish-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(185,133,42,.5);
}
.dish-card__img { aspect-ratio: 4 / 3; overflow: hidden; }
.dish-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}
.dish-card:hover .dish-card__img img { transform: scale(1.06); }
.dish-card__body { padding: 22px 24px 26px; }
.dish-card__name {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 1.32rem; line-height: 1.2; color: var(--ink);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 10px;
  margin-bottom: .5rem;
}
.dish-card__cn {
  font-family: var(--font-cn); font-size: .92rem; font-weight: 500;
  color: var(--gold-ink); letter-spacing: .05em;
}
.dish-card__desc { color: var(--muted); font-size: .95rem; }

/* =========================================================
   SPECIALTIES / MENU LIST
   ========================================================= */
.specialties__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.specialties__intro { position: sticky; top: calc(var(--header-h) + 24px); }
.specialties__intro > p:not(.eyebrow) { color: var(--ink-2); margin-bottom: 1.2rem; max-width: 40ch; }
.specialties .section-title { margin-bottom: 1.3rem; }
.specialties__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.6rem; }

.menu-list { display: grid; gap: 4px; }
.menu-item {
  padding: 20px 4px;
  border-bottom: 1px dashed var(--line);
}
.menu-item__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 5px;
}
.menu-item__name {
  font-family: var(--font-serif); font-weight: 600; font-size: 1.34rem;
  color: var(--ink);
}
.menu-item__cn {
  font-family: var(--font-cn); font-weight: 500; font-size: 1rem;
  color: var(--gold-ink); white-space: nowrap; letter-spacing: .06em;
}
.menu-item__note { color: var(--muted); font-size: .95rem; }
.menu-item--feature {
  background: linear-gradient(100deg, rgba(242,198,78,.14), rgba(242,198,78,0) 70%);
  border: 1px solid rgba(185,133,42,.35);
  border-radius: var(--radius);
  padding: 22px 22px;
  margin-bottom: 8px;
}
.menu-item--feature .menu-item__name { color: var(--ink); }
.tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; margin-right: 8px;
  vertical-align: middle;
}
.tag--award { background: var(--cinnabar); color: #fff; }

/* =========================================================
   CHEF
   ========================================================= */
.chef__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.chef__media { position: relative; }
.chef__media img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.2; object-fit: cover; object-position: center top;
}
.chef__media::before {
  content: "主廚"; position: absolute; top: -18px; left: -14px;
  font-family: var(--font-cn); font-weight: 700; font-size: 4.4rem;
  color: rgba(242,198,78,.12); z-index: -1; letter-spacing: .1em;
}
.chef__body > p:not(.eyebrow) { color: var(--on-dark-mut); margin-bottom: 1.1rem; max-width: 48ch; }
.chef__body > p strong { color: var(--on-dark); }
.chef .section-title { margin-bottom: 1.4rem; }
.chef__quote {
  margin-top: 1.8rem; padding-left: 22px;
  border-left: 2px solid var(--gold-bright);
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.35rem; line-height: 1.4; color: var(--on-dark);
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.gallery__item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-3);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.6,.2,1), filter .3s;
}
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,11,6,.5));
  opacity: 0; transition: opacity .3s;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item--wide { grid-column: span 2; grid-row: span 2; }
.gallery__item--tall { grid-row: span 2; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews__rating {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 1.2rem;
}
.reviews__stars { color: var(--gold); letter-spacing: .1em; font-size: 1.2rem; }
.reviews__rating-text { color: var(--muted); font-size: .95rem; }
.reviews__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 26px);
}
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.review__stars { color: var(--gold); letter-spacing: .12em; font-size: .95rem; }
.review blockquote {
  font-family: var(--font-serif); font-size: 1.18rem; line-height: 1.5;
  color: var(--ink-2); flex-grow: 1;
}
.review figcaption { display: flex; flex-direction: column; }
.review__name { font-weight: 600; color: var(--ink); }
.review__meta { font-size: .8rem; color: var(--muted); }

/* =========================================================
   VISIT
   ========================================================= */
.visit__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: stretch;
}
.visit__lede { color: var(--on-dark-mut); margin-bottom: 2rem; max-width: 44ch; }
.visit__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.info-card {
  background: rgba(243,233,214,.05);
  border: 1px solid rgba(243,233,214,.14);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.info-card--accent {
  grid-column: 1 / -1;
  background: linear-gradient(120deg, rgba(242,198,78,.12), rgba(242,198,78,.03));
  border-color: rgba(242,198,78,.3);
}
.info-card__title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-weight: 600; font-size: 1.3rem;
  color: var(--on-dark); margin-bottom: 12px;
}
.info-card__ic {
  width: 34px; height: 34px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(242,198,78,.14); border-radius: 50%;
}
.info-card__ic svg { width: 18px; height: 18px; fill: var(--gold-bright); }
.info-card p { color: var(--on-dark-mut); }
.info-card__link {
  display: inline-block; margin-top: 10px; color: var(--gold-bright);
  font-weight: 600; font-size: .9rem;
}
.info-card__link:hover { text-decoration: underline; }
.info-card__small { font-size: .82rem; margin-top: 10px; opacity: .85; }
.info-card--accent p { color: var(--on-dark); }
.info-card--accent .btn { margin-top: 14px; }

.hours { display: grid; gap: 8px; }
.hours__row { display: flex; justify-content: space-between; gap: 12px; font-size: .92rem; }
.hours__row dt { color: var(--on-dark-mut); }
.hours__row dd { color: var(--on-dark); font-weight: 600; white-space: nowrap; }

.visit__social { display: flex; gap: 12px; margin-top: 16px; }
.visit__social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid rgba(242,198,78,.35); border-radius: 50%;
  color: var(--gold-bright); transition: background-color .2s, color .2s;
}
.visit__social a:hover { background: var(--gold-bright); color: var(--ink-900); }

.visit__map {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(243,233,214,.18);
  min-height: 340px;
  box-shadow: var(--shadow-lg);
}
.visit__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.2) contrast(1.05); }
.map-facade {
  width: 100%; height: 100%; min-height: 340px;
  display: grid; place-items: center;
  text-align: center; padding: 24px;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(242,198,78,.10), transparent 60%),
    repeating-linear-gradient(45deg, rgba(243,233,214,.03) 0 12px, transparent 12px 24px),
    var(--ink-850);
}
.map-facade__inner { display: grid; justify-items: center; gap: 12px; }
.map-facade__pin { width: 40px; height: 40px; fill: var(--gold-bright); }
.map-facade__addr { color: var(--on-dark); font-family: var(--font-serif); font-size: 1.2rem; }
.map-facade__alt { color: var(--gold-bright); font-size: .86rem; font-weight: 600; margin-top: 2px; }
.map-facade__alt:hover { text-decoration: underline; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink-900); color: var(--on-dark-mut); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(48px, 6vw, 76px);
}
.footer__name {
  font-family: var(--font-serif); font-weight: 600; font-size: 1.5rem;
  color: var(--on-dark); margin-top: 14px;
}
.footer__tag { font-family: var(--font-cn); letter-spacing: .16em; color: var(--gold-bright); margin-bottom: 12px; }
.footer__blurb { font-size: .9rem; max-width: 30ch; }
.footer__h {
  font-family: var(--font-body); font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-bright);
  margin-bottom: 16px;
}
.footer__col ul { display: grid; gap: 10px; font-size: .92rem; }
.footer__col a:hover { color: var(--gold-bright); }
.footer__contact li { line-height: 1.6; }
.footer__social { display: flex; gap: 16px; margin-top: 4px; }
.footer__social a { color: var(--gold-bright); font-weight: 600; }
.footer__hours { margin-bottom: 18px; }

.footer__bottom { border-top: 1px solid rgba(243,233,214,.1); }
.footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-block: 20px; font-size: .82rem;
}
.footer__top-link:hover { color: var(--gold-bright); }

/* Supported by DineCall AI */
.supported {
  background: var(--ink-900);
  border-top: 1px solid rgba(243,233,214,.08);
}
.supported__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding-block: 22px; text-align: center;
}
.supported__link {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .92rem; color: var(--on-dark-mut);
  transition: color .2s;
}
.supported__by { letter-spacing: .03em; }
.supported__brand {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--on-dark); font-weight: 600;
  transition: color .2s;
}
.supported__mark {
  width: 26px; height: 26px; border-radius: 7px;
  overflow: hidden; display: grid; place-items: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.35);
  transition: transform .3s ease;
}
.supported__mark img { width: 100%; height: 100%; display: block; }
.supported__link:hover { color: var(--gold-bright); }
.supported__link:hover .supported__brand { color: var(--gold-bright); }
.supported__link:hover .supported__mark { transform: rotate(-6deg) scale(1.06); }
.supported__tag { font-size: .78rem; color: rgba(185,172,147,.72); max-width: 46ch; }
@media (max-width: 560px) { .supported__tag { display: none; } }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(12,9,5,.94);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transition: opacity .3s;
  padding: 5vw;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 92vw; max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  transform: scale(.96); transition: transform .3s;
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close, .lightbox__nav {
  position: absolute; color: #F3E9D6;
  display: grid; place-items: center;
  transition: color .2s, background-color .2s;
}
.lightbox__close {
  top: 18px; right: 22px; font-size: 2.6rem; line-height: 1;
  width: 52px; height: 52px;
}
.lightbox__close:hover { color: var(--gold-bright); }
.lightbox__nav {
  top: 50%; transform: translateY(-50%);
  width: 60px; height: 60px; font-size: 2.6rem;
  background: rgba(243,233,214,.08); border-radius: 50%;
}
.lightbox__nav:hover { background: var(--gold-bright); color: var(--ink-900); }
.lightbox__nav--prev { left: 2vw; }
.lightbox__nav--next { right: 2vw; }

/* =========================================================
   TO-TOP
   ========================================================= */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--gold-bright);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background-color .2s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--cinnabar); color: #fff; }
.to-top svg { width: 22px; height: 22px; fill: currentColor; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* section anchor offset */
section[id] { scroll-margin-top: calc(var(--header-h) + 10px); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .specialties__intro { position: static; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header__cta .btn--sm { display: none; }
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .story__grid,
  .specialties__grid,
  .chef__grid,
  .visit__grid { grid-template-columns: 1fr; }
  .story__media { max-width: 520px; margin-inline: auto; }
  .chef__grid { text-align: left; }
  .chef__media { max-width: 480px; }
  .visit__map { min-height: 320px; order: 2; }
}

@media (max-width: 720px) {
  .topbar__tag { display: none; }
  .topbar__inner { justify-content: center; gap: 8px; }
  .topbar__hours { display: none; }
  .topbar__meta { gap: 10px; }
  .topbar__link { padding: 9px 10px; }
  .topbar__social a { padding: 9px 4px; }
  .awards__inner { flex-direction: column; gap: 22px; }
  .award__divider { width: 60px; height: 1px; }
  .award { width: 100%; max-width: 360px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery__item--wide { grid-column: span 2; grid-row: span 1; aspect-ratio: auto; }
  .gallery__item--tall { grid-row: span 1; }
  .visit__cards { grid-template-columns: 1fr; }
  .lightbox__nav { width: 48px; height: 48px; font-size: 2rem; }
  .lightbox__nav--prev { left: 6px; }
  .lightbox__nav--next { right: 6px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .dish-grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .menu-item__head { flex-direction: column; gap: 2px; }
  .menu-item__cn { white-space: normal; }
  .hero__cta .btn { flex: 1 1 auto; }
  .brand__sub { display: none; }
  .timeline__item { grid-template-columns: 64px 1fr; gap: 14px; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
