/* Golden Garden Albufeira — static website */
:root {
  --night: #0c0b0a;
  --night-soft: #15100f;
  --night-card: #1c1412;
  --ink: #090807;
  --paper: #f4ead9;
  --paper-bright: #fff8ea;
  --paper-muted: #d7c7ae;
  --red: #b60f24;
  --red-bright: #e12d43;
  --red-dark: #680715;
  --gold: #d7a43c;
  --gold-bright: #f2cf76;
  --gold-pale: #ffe8a6;
  --jade: #155843;
  --jade-bright: #2d8b68;
  --line: rgba(235, 202, 125, .18);
  --line-strong: rgba(235, 202, 125, .38);
  --shadow: 0 24px 80px rgba(0, 0, 0, .35);
  --shadow-soft: 0 12px 36px rgba(0, 0, 0, .24);
  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --header-h: 82px;
  --shell: min(1220px, calc(100vw - 48px));
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Arial, sans-serif;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 18px); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--night);
  color: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
::selection { color: #170a0a; background: var(--gold-bright); }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold-bright);
  transition: transform .2s;
}
.skip-link:focus { transform: none; }

.ambient-grain {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: .035;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 500px;
  height: 500px;
  margin: -250px 0 0 -250px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(211, 157, 46, .07), rgba(211, 157, 46, 0) 68%);
  opacity: 0;
  transition: opacity .4s;
  transform: translate3d(var(--cursor-x, -999px), var(--cursor-y, -999px), 0);
}
body.has-pointer .cursor-glow { opacity: 1; }

.scroll-progress {
  position: fixed;
  z-index: 2100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--red-bright), var(--gold-bright));
}

.site-header {
  position: fixed;
  z-index: 1500;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s, box-shadow .35s, transform .35s;
}
.site-header.is-scrolled {
  background: rgba(9, 8, 7, .86);
  border-color: rgba(231, 196, 110, .14);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: max-content; }
.brand img { width: 52px; height: 52px; filter: drop-shadow(0 9px 16px rgba(0, 0, 0, .28)); }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong {
  font-family: var(--serif);
  color: var(--paper-bright);
  font-size: 1.05rem;
  letter-spacing: .035em;
}
.brand-copy span { margin-top: 5px; color: var(--gold-pale); font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); margin-left: auto; }
.desktop-nav a {
  position: relative;
  color: rgba(255, 248, 234, .76);
  font-size: .88rem;
  font-weight: 650;
  letter-spacing: .04em;
  transition: color .25s;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--paper-bright); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: var(--paper);
}
.language-picker.compact { padding: 8px 10px 8px 13px; }
.language-picker.compact > span:not(.sr-only) { color: var(--gold-bright); font-family: var(--serif); }
.language-picker select {
  min-width: 48px;
  appearance: none;
  border: 0;
  outline: 0;
  color: var(--paper-bright);
  background: transparent;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 750;
}
.language-picker select option { color: #15100f; background: #fff8ea; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}
.menu-toggle span { width: 18px; height: 1.5px; background: var(--paper); transition: transform .25s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 16px auto 16px;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(14, 10, 9, .97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.mobile-nav:not([hidden]) { display: grid; }
.mobile-nav a { padding: 14px 10px; border-bottom: 1px solid var(--line); font-weight: 700; }
.mobile-nav a:last-child { border-bottom: 0; color: var(--gold-bright); }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  font-size: .9rem;
  letter-spacing: .015em;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s, background .25s, color .25s;
}
.button::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -25%;
  width: 30%;
  height: 260%;
  transform: rotate(24deg) translateX(-300%);
  background: rgba(255, 255, 255, .22);
  transition: transform .7s var(--ease);
}
.button:hover::before { transform: rotate(24deg) translateX(650%); }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary { color: #190e08; background: linear-gradient(135deg, var(--gold-bright), #d99b29); box-shadow: 0 12px 30px rgba(202, 145, 36, .25); }
.button-primary:hover { box-shadow: 0 16px 38px rgba(202, 145, 36, .36); }
.button-gold { color: #190e08; background: linear-gradient(135deg, #f6d984, #c98b22); }
.button-ghost { color: var(--paper-bright); border-color: var(--line-strong); background: rgba(255, 255, 255, .045); }
.button-ghost:hover { border-color: var(--gold); background: rgba(215, 164, 60, .08); }
.button-small { min-height: 42px; padding: 8px 16px; font-size: .8rem; }
.button-large { min-height: 58px; padding: 15px 28px; font-size: 1rem; }
.button-arrow { font-size: 1.2em; transition: transform .25s; }
.button:hover .button-arrow { transform: translateX(4px); }

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--header-h) + 70px) 0 92px;
  background: #100c0b;
}
.hero-bg { position: absolute; z-index: -2; inset: 0; overflow: hidden; }
.hero-bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform .3s ease-out;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 5, 5, .96) 0%, rgba(7, 5, 5, .68) 43%, rgba(7, 5, 5, .15) 75%, rgba(7, 5, 5, .5) 100%),
    linear-gradient(0deg, rgba(7, 6, 5, .95) 0%, transparent 42%),
    radial-gradient(circle at 68% 35%, transparent 0, rgba(7, 5, 5, .18) 40%, rgba(7, 5, 5, .8) 100%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-particles i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(242, 207, 118, .6);
  opacity: var(--opacity);
  animation: float-particle var(--duration) ease-in-out var(--delay) infinite alternate;
}
@keyframes float-particle { to { transform: translate3d(var(--drift), -45px, 0) scale(.6); opacity: .12; } }
.hero-lantern {
  position: absolute;
  z-index: 0;
  top: 82px;
  width: 58px;
  height: 82px;
  border: 2px solid var(--gold);
  border-radius: 45% 45% 38% 38%;
  background: linear-gradient(90deg, #7a0717, var(--red-bright) 48%, #720615);
  box-shadow: 0 0 35px rgba(216, 47, 66, .23);
  transform-origin: top center;
  animation: lantern-sway 5.5s ease-in-out infinite alternate;
}
.hero-lantern::before, .hero-lantern::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); background: var(--gold); }
.hero-lantern::before { top: -12px; width: 72px; height: 10px; border-radius: 5px; }
.hero-lantern::after { bottom: -25px; width: 2px; height: 24px; box-shadow: -7px 0 var(--gold), 7px 0 var(--gold); }
.hero-lantern i { position: absolute; inset: 15px 8px; border-block: 1px solid rgba(255, 225, 150, .72); }
.lantern-left { left: 5vw; }
.lantern-right { right: 6vw; top: 120px; transform: scale(.72); animation-delay: -1.2s; }
@keyframes lantern-sway { from { rotate: -2deg; translate: 0 0; } to { rotate: 3deg; translate: 0 9px; } }
.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(310px, .62fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}
.hero-copy { max-width: 760px; }
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 14px;
  border: 1px solid rgba(239, 213, 147, .23);
  border-radius: 999px;
  background: rgba(13, 11, 10, .45);
  color: rgba(255, 248, 234, .86);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #8ddf9f; box-shadow: 0 0 0 5px rgba(88, 199, 117, .12), 0 0 18px rgba(88, 199, 117, .5); }
.open-status.is-closed .status-dot { background: #ee7d73; box-shadow: 0 0 0 5px rgba(238, 125, 115, .12); }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1 { margin: 0; font-family: var(--serif); line-height: .92; letter-spacing: -.045em; }
.hero h1 > span { display: block; color: var(--paper-bright); font-size: clamp(4rem, 8.4vw, 8.5rem); text-wrap: balance; }
.hero h1 b {
  display: block;
  margin-top: 20px;
  color: transparent;
  background: linear-gradient(180deg, #ffe9a9, #c98c2a);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.3rem, 4.4vw, 4.8rem);
  font-weight: 700;
  letter-spacing: .18em;
  filter: drop-shadow(0 7px 24px rgba(0, 0, 0, .42));
}
.hero-lead { max-width: 690px; margin: 30px 0 0; color: rgba(255, 248, 234, .78); font-size: clamp(1.02rem, 1.5vw, 1.24rem); line-height: 1.75; text-wrap: balance; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note { margin: 18px 0 0; color: rgba(255, 248, 234, .48); font-size: .78rem; letter-spacing: .02em; }
.hero-card {
  position: relative;
  width: min(100%, 360px);
  justify-self: end;
  padding: 42px 34px 30px;
  overflow: hidden;
  border: 1px solid rgba(240, 205, 121, .3);
  border-radius: 32px;
  background: linear-gradient(150deg, rgba(42, 22, 18, .76), rgba(10, 25, 20, .76));
  box-shadow: 0 40px 100px rgba(0, 0, 0, .36);
  backdrop-filter: blur(18px) saturate(120%);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(241, 205, 117, .14);
  border-radius: 25px;
  pointer-events: none;
}
.hero-card-orbit { position: absolute; top: -90px; right: -80px; width: 230px; height: 230px; border: 1px solid rgba(239, 207, 126, .17); border-radius: 50%; }
.hero-card-orbit::before, .hero-card-orbit::after { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(239, 207, 126, .12); border-radius: 50%; }
.hero-card-orbit::after { inset: 57px; }
.hero-card-seal { position: relative; width: 100px; margin: 0 auto 28px; }
.hero-card-seal img { width: 100%; }
.hero-card dl { position: relative; margin: 0; }
.hero-card dl > div { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.hero-card dt { color: rgba(255, 248, 234, .52); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.hero-card dd { margin: 0; color: var(--paper-bright); font-family: var(--serif); font-size: 1.2rem; font-weight: 700; text-align: right; }
.hero-card dd small { display: block; color: rgba(255, 248, 234, .5); font: 500 .68rem/1.3 var(--sans); }
.hero-card-link { position: relative; display: flex; justify-content: space-between; align-items: center; margin-top: 24px; color: var(--gold-bright); font-size: .82rem; font-weight: 750; }
.scroll-cue { position: absolute; bottom: 25px; left: 50%; display: grid; place-items: center; gap: 8px; transform: translateX(-50%); color: rgba(255, 248, 234, .42); font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.scroll-cue i { position: relative; width: 1px; height: 34px; background: rgba(255, 255, 255, .22); overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: -100% 0 auto; height: 55%; background: var(--gold-bright); animation: scroll-line 2s ease-in-out infinite; }
@keyframes scroll-line { to { transform: translateY(360%); } }

.season-strip { position: relative; z-index: 3; border-block: 1px solid var(--line); background: #120e0d url('../images/pattern.svg'); }
.season-inner { min-height: 104px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.season-symbol { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--gold-bright); font-family: var(--serif); font-size: .8rem; letter-spacing: .1em; }
.season-inner strong { color: var(--paper-bright); font-family: var(--serif); font-size: 1.03rem; }
.season-inner p { margin: 3px 0 0; color: rgba(255, 248, 234, .56); font-size: .86rem; }
.season-inner a { color: var(--gold-bright); font-size: .8rem; font-weight: 750; border-bottom: 1px solid rgba(242, 207, 118, .35); }

.section { position: relative; padding: clamp(88px, 10vw, 150px) 0; }
.section-heading { max-width: 760px; margin-bottom: 58px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .about-copy h2, .reputation-copy h2, .booking-inner h2 {
  margin: 0;
  color: var(--paper-bright);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.section-heading > p:last-child { max-width: 670px; margin: 22px auto 0; color: rgba(255, 248, 234, .6); }

.about-section { background: linear-gradient(180deg, #0b0a09, #11100e); }
.about-section::before { content: ""; position: absolute; inset: 0; opacity: .3; background: radial-gradient(circle at 10% 38%, rgba(152, 27, 37, .2), transparent 34%), radial-gradient(circle at 90% 60%, rgba(25, 93, 69, .13), transparent 32%); pointer-events: none; }
.about-grid { position: relative; display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); align-items: center; gap: clamp(60px, 9vw, 130px); }
.about-visual { position: relative; min-height: 590px; }
.photo-frame { position: relative; overflow: hidden; border: 1px solid var(--line-strong); background: #1a1513; box-shadow: var(--shadow); }
.photo-frame-main { width: min(100%, 530px); height: 570px; border-radius: 42% 42% 22px 22px; }
.photo-frame-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10, 7, 6, .45), transparent 50%), linear-gradient(135deg, rgba(215, 164, 60, .1), transparent 38%); pointer-events: none; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.photo-corner { position: absolute; z-index: 2; width: 72px; height: 72px; border-color: var(--gold-bright); border-style: solid; opacity: .75; }
.corner-a { top: 18px; left: 18px; border-width: 1px 0 0 1px; border-radius: 12px 0 0; }
.corner-b { right: 18px; bottom: 18px; border-width: 0 1px 1px 0; border-radius: 0 0 12px; }
.about-year { position: absolute; right: -5px; bottom: 48px; display: grid; width: 186px; padding: 23px; border: 1px solid var(--line-strong); border-radius: 20px; background: rgba(28, 18, 15, .93); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.about-year span { color: rgba(255, 248, 234, .52); font-size: .68rem; line-height: 1.4; text-transform: uppercase; letter-spacing: .08em; }
.about-year strong { margin-top: 6px; color: var(--gold-bright); font-family: var(--serif); font-size: 2.3rem; line-height: 1; }
.ink-stamp { position: absolute; top: 95px; right: -5px; width: 82px; height: 82px; display: grid; place-items: center; border: 3px solid rgba(196, 37, 52, .72); color: rgba(220, 50, 66, .74); font-family: var(--serif); font-size: 1.15rem; letter-spacing: .08em; transform: rotate(8deg); }
.about-copy { position: relative; }
.about-copy .lead { margin: 28px 0 0; color: var(--paper-bright); font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.55; }
.about-copy > p:not(.eyebrow):not(.lead) { margin: 21px 0 0; color: rgba(255, 248, 234, .62); }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 35px; }
.feature { display: flex; align-items: center; gap: 15px; min-height: 84px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, .022); }
.feature > span { flex: 0 0 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; color: var(--gold-bright); background: rgba(215, 164, 60, .09); font-family: var(--serif); }
.feature div { display: grid; }
.feature strong { color: var(--paper-bright); font-size: .86rem; }
.feature small { margin-top: 2px; color: rgba(255, 248, 234, .46); font-size: .7rem; }
.about-actions { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 35px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-bright); font-size: .84rem; font-weight: 750; }
.text-link span:last-child { transition: transform .25s; }
.text-link:hover span:last-child { transform: translateX(4px); }
.text-link.muted { color: rgba(255, 248, 234, .56); }

.signatures-section { background: #130d0c url('../images/pattern.svg'); }
.signatures-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 7, 6, .25), transparent 20%, transparent 75%, rgba(8, 7, 6, .55)); pointer-events: none; }
.signature-grid { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.dish-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: rgba(19, 15, 13, .82); box-shadow: 0 14px 40px rgba(0, 0, 0, .18); transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.dish-card:hover { transform: translateY(-8px); border-color: rgba(234, 198, 112, .44); box-shadow: 0 24px 55px rgba(0, 0, 0, .3); }
.dish-image { aspect-ratio: 4 / 2.7; overflow: hidden; background: #140e0d; }
.dish-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .4s; }
.dish-card:hover .dish-image img { transform: scale(1.045); filter: saturate(1.12); }
.dish-card-copy { padding: 22px 23px 25px; }
.dish-card-copy > span { color: var(--gold); font-size: .66rem; font-weight: 800; letter-spacing: .14em; }
.dish-card h3 { margin: 7px 0 0; color: var(--paper-bright); font-family: var(--serif); font-size: 1.22rem; }
.dish-card p { margin: 8px 0 0; color: rgba(255, 248, 234, .5); font-size: .79rem; }
.gallery-block { position: relative; display: grid; grid-template-columns: .62fr 1.38fr; align-items: center; gap: clamp(34px, 5vw, 78px); margin-top: clamp(75px, 9vw, 130px); padding: clamp(28px, 4vw, 58px); overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(145deg, rgba(28, 16, 14, .96), rgba(8, 28, 22, .9)); box-shadow: var(--shadow-soft); }
.gallery-block::before { content: ""; position: absolute; inset: auto auto -160px -110px; width: 390px; height: 390px; border-radius: 50%; background: radial-gradient(circle, rgba(174, 31, 42, .18), transparent 68%); pointer-events: none; }
.gallery-copy { position: relative; z-index: 2; }
.gallery-copy h3 { margin: 0; color: var(--paper-bright); font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3.25rem); line-height: 1.12; }
.gallery-copy > p:not(.eyebrow) { color: rgba(255, 248, 234, .58); }
.gallery-highlights { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.gallery-highlights > span { min-width: 88px; display: grid; gap: 2px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 255, 255, .025); }
.gallery-highlights b { color: var(--gold-bright); font-family: var(--serif); font-size: 1.35rem; line-height: 1; }
.gallery-highlights small { color: rgba(255, 248, 234, .42); font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; }

.photo-carousel { position: relative; z-index: 2; width: 100%; height: clamp(430px, 43vw, 560px); min-width: 0; overflow: hidden; border: 1px solid rgba(234, 198, 112, .28); border-radius: 24px; background: radial-gradient(circle at 50% 40%, #2a211c 0, #0d0b0a 72%); box-shadow: 0 24px 65px rgba(0, 0, 0, .36); outline: none; isolation: isolate; }
.photo-carousel:focus-visible { box-shadow: 0 0 0 3px rgba(234, 198, 112, .55), 0 24px 65px rgba(0, 0, 0, .36); }
.carousel-viewport, .carousel-track, .carousel-slide, .gallery-photo { width: 100%; height: 100%; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; will-change: transform; transition: transform .78s cubic-bezier(.2,.76,.2,1); }
.carousel-slide { position: relative; flex: 0 0 100%; min-width: 0; overflow: hidden; }
.carousel-slide::before { content: ""; position: absolute; z-index: 0; inset: 0; opacity: .28; background: radial-gradient(circle at 25% 15%, rgba(215, 164, 60, .26), transparent 28%), linear-gradient(135deg, rgba(151, 27, 38, .2), transparent 48%); pointer-events: none; }
.gallery-photo { position: relative; z-index: 1; display: block; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.gallery-photo img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: saturate(.96) contrast(1.02); transform: scale(.985); transition: transform 1.1s var(--ease), filter .5s; }
.carousel-slide.is-active .gallery-photo img { transform: scale(1); filter: saturate(1.04) contrast(1.03); }
.gallery-photo:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: -4px; }
.carousel-nav { position: absolute; z-index: 5; top: 50%; width: 46px; height: 46px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255, 248, 234, .22); border-radius: 50%; color: var(--paper-bright); background: rgba(8, 7, 6, .66); box-shadow: 0 10px 25px rgba(0,0,0,.25); backdrop-filter: blur(12px); transform: translateY(-50%); transition: transform .25s, border-color .25s, background .25s; }
.carousel-nav:hover { border-color: var(--gold-bright); background: rgba(29, 20, 16, .88); transform: translateY(-50%) scale(1.06); }
.carousel-nav span { font-size: 2rem; line-height: 1; transform: translateY(-2px); }
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }
.carousel-bottom { position: absolute; z-index: 4; left: 0; right: 0; bottom: 0; min-height: 116px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 42px 20px 22px; color: var(--paper-bright); background: linear-gradient(0deg, rgba(6, 5, 4, .94), rgba(6, 5, 4, .66) 54%, transparent); pointer-events: none; }
.carousel-caption { min-width: 0; display: grid; gap: 4px; }
.carousel-caption span { color: var(--gold-bright); font-size: .62rem; font-weight: 800; letter-spacing: .14em; }
.carousel-caption strong { overflow: hidden; color: var(--paper-bright); font-family: var(--serif); font-size: clamp(1rem, 1.6vw, 1.3rem); font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.carousel-toggle { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,248,234,.25); border-radius: 50%; color: var(--paper-bright); background: rgba(255,255,255,.055); pointer-events: auto; transition: border-color .2s, background .2s; }
.carousel-toggle:hover { border-color: var(--gold-bright); background: rgba(215,164,60,.12); }
.carousel-toggle span { font-size: .78rem; font-weight: 900; letter-spacing: -.12em; transform: translateX(-1px); }
.photo-carousel.is-paused .carousel-toggle span { font-size: .82rem; letter-spacing: 0; transform: translateX(1px); }
.carousel-dots { position: absolute; z-index: 6; left: 20px; right: 70px; bottom: 9px; display: flex; align-items: center; gap: 5px; overflow: hidden; }
.carousel-dot { flex: 1 1 7px; max-width: 18px; height: 3px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,248,234,.22); transition: flex .25s, max-width .25s, background .25s; }
.carousel-dot.is-active { flex-grow: 2; max-width: 32px; background: var(--gold-bright); }
.carousel-timer { position: absolute; z-index: 7; left: 0; right: 0; bottom: 0; height: 2px; overflow: hidden; background: rgba(255,255,255,.08); }
.carousel-timer i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--red-bright), var(--gold-bright)); transform-origin: left; }
.photo-carousel.is-playing .carousel-timer i { animation: gallery-timer 5.6s linear forwards; }
@keyframes gallery-timer { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.photo-credit { position: absolute; right: 28px; bottom: 9px; margin: 0; color: rgba(255, 248, 234, .3); font-size: .58rem; }

.social-hub { position: relative; display: grid; grid-template-columns: minmax(230px, .52fr) minmax(0, 1.48fr); gap: clamp(30px, 5vw, 72px); margin-top: 26px; padding: clamp(28px, 4vw, 48px); overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: rgba(10, 9, 8, .78); box-shadow: 0 18px 55px rgba(0,0,0,.2); }
.social-hub::after { content: "联"; position: absolute; right: -8px; bottom: -46px; color: rgba(215,164,60,.045); font-family: var(--serif); font-size: 11rem; line-height: 1; pointer-events: none; }
.social-hub-copy { position: relative; z-index: 1; }
.social-hub-copy h3 { margin: 0; color: var(--paper-bright); font-family: var(--serif); font-size: clamp(1.65rem, 2.5vw, 2.6rem); line-height: 1.12; }
.social-hub-copy > p:not(.eyebrow) { margin: 16px 0 0; color: rgba(255,248,234,.52); }
.social-platforms { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.social-card { min-height: 102px; display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; align-items: center; gap: 14px; padding: 17px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.025); transition: transform .28s var(--ease), border-color .28s, background .28s, box-shadow .28s; }
.social-card:hover { transform: translateY(-4px); border-color: rgba(234,198,112,.42); background: rgba(255,255,255,.045); box-shadow: 0 16px 34px rgba(0,0,0,.24); }
.social-card > span:nth-child(2) { min-width: 0; display: grid; }
.social-card strong { color: var(--paper-bright); font-size: .9rem; }
.social-card small { margin-top: 4px; color: rgba(255,248,234,.46); font-size: .68rem; line-height: 1.35; }
.social-card > i { color: rgba(255,248,234,.4); font-style: normal; transition: color .2s, transform .2s; }
.social-card:hover > i { color: var(--gold-bright); transform: translate(2px,-2px); }
.social-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: var(--paper-bright); background: linear-gradient(145deg, rgba(215,164,60,.22), rgba(151,27,38,.23)); font-family: var(--serif); font-size: .82rem; font-weight: 900; }
.social-facebook .social-icon { font-size: 1.45rem; }
.social-instagram .social-icon { font-size: 1.55rem; }
.social-tiktok .social-icon { font-size: 1.3rem; }

.menu-section { isolation: isolate; overflow: hidden; background: linear-gradient(180deg, #f5ecdb 0%, #fff8e9 48%, #f3e6d0 100%); color: #2a201b; }
.menu-section::before { content: ""; position: absolute; z-index: -2; inset: 0; opacity: .38; background-image: url('../images/pattern.svg'); background-size: 140px 140px; }
.menu-section::after { content: ""; position: absolute; z-index: -1; top: 0; left: 0; width: 100%; height: 180px; background: linear-gradient(180deg, rgba(19, 13, 12, .18), transparent); pointer-events: none; }
.menu-cloud { position: absolute; z-index: -1; width: 430px; height: 170px; border: 2px solid rgba(118, 76, 25, .12); border-radius: 50%; filter: blur(.2px); }
.menu-cloud::before, .menu-cloud::after { content: ""; position: absolute; border: inherit; border-radius: 50%; }
.menu-cloud::before { width: 230px; height: 140px; top: -55px; left: 45px; }
.menu-cloud::after { width: 190px; height: 110px; top: -35px; right: 20px; }
.cloud-a { top: 140px; left: -230px; }
.cloud-b { top: 680px; right: -250px; transform: rotate(180deg); }
.menu-heading { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.menu-heading > div:first-child { max-width: 760px; }
.menu-section .eyebrow { color: #9a281f; }
.menu-section h2 { color: #2a1712; }
.menu-section .section-heading p:last-child { color: rgba(42, 32, 27, .65); margin-left: 0; }
.menu-heading-mark { color: rgba(139, 30, 27, .1); font-family: var(--serif); font-size: clamp(5rem, 11vw, 10rem); font-weight: 800; line-height: .75; }
.menu-toolbar { position: sticky; z-index: 40; top: calc(var(--header-h) + 10px); display: grid; grid-template-columns: minmax(260px, 1fr) auto auto; align-items: center; gap: 12px; padding: 12px; border: 1px solid rgba(97, 59, 25, .14); border-radius: 20px; background: rgba(255, 248, 233, .9); box-shadow: 0 16px 45px rgba(74, 42, 18, .12); backdrop-filter: blur(18px) saturate(130%); }
.menu-search { min-height: 48px; display: flex; align-items: center; gap: 10px; padding: 0 14px; border: 1px solid rgba(80, 48, 25, .16); border-radius: 14px; background: #fffdf7; }
.menu-search > span { color: #9a281f; font-size: 1.2rem; }
.menu-search input { width: 100%; border: 0; outline: 0; color: #2b201b; background: transparent; }
.menu-search input::placeholder { color: rgba(42, 32, 27, .42); }
.menu-search kbd { padding: 2px 7px; border: 1px solid rgba(80, 48, 25, .18); border-radius: 6px; color: rgba(42, 32, 27, .45); background: #f6eddf; font-size: .67rem; }
.menu-language-picker { min-height: 48px; padding: 0 14px; border-radius: 14px; color: #3a2b22; background: #fffdf7; }
.menu-language-picker > span { font-size: .72rem; font-weight: 750; white-space: nowrap; }
.menu-language-picker select { color: #8d201c; font-weight: 800; }
.button-print { min-height: 48px; border-radius: 14px; color: #3a2b22; border-color: rgba(80, 48, 25, .18); background: #fffdf7; }
.button-print:hover { color: #791a18; border-color: #9d2d24; background: #fff8ed; }
.category-wrap { position: relative; display: flex; align-items: center; gap: 8px; margin-top: 22px; }
.category-tabs { display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; padding: 4px 0; }
.category-tabs::-webkit-scrollbar { display: none; }
.category-tab { flex: 0 0 auto; scroll-snap-align: start; min-height: 42px; padding: 9px 16px; border: 1px solid rgba(78, 47, 25, .16); border-radius: 999px; color: rgba(42, 32, 27, .72); background: rgba(255, 255, 255, .54); font-size: .76rem; font-weight: 750; cursor: pointer; transition: color .22s, border-color .22s, background .22s, transform .22s; }
.category-tab:hover { transform: translateY(-1px); border-color: rgba(145, 38, 31, .32); color: #8b211c; }
.category-tab[aria-selected="true"] { color: #fff9ed; border-color: #8e201d; background: linear-gradient(135deg, #aa1f2d, #6f0f16); box-shadow: 0 8px 20px rgba(126, 18, 24, .2); }
.category-scroll { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(78, 47, 25, .16); border-radius: 50%; color: #7f201c; background: rgba(255, 255, 255, .66); cursor: pointer; font-size: 1.4rem; }
.menu-summary { min-height: 24px; margin: 20px 3px 0; color: rgba(42, 32, 27, .55); font-size: .76rem; }
.menu-content { min-height: 420px; margin-top: 28px; }
.menu-category-section { margin-top: 50px; scroll-margin-top: 220px; }
.menu-category-section:first-child { margin-top: 0; }
.menu-category-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.menu-category-header::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, rgba(113, 60, 25, .25), transparent); }
.menu-category-header span { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(135, 45, 28, .2); border-radius: 50%; color: #9a281f; font-family: var(--serif); font-size: .9rem; background: rgba(255, 255, 255, .45); }
.menu-category-header h3 { margin: 0; color: #2a1712; font-family: var(--serif); font-size: clamp(1.7rem, 2.8vw, 2.5rem); }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.menu-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 12px;
  min-height: 92px;
  padding: 17px 18px;
  border: 1px solid rgba(81, 47, 23, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .53);
  transition: transform .24s var(--ease), border-color .24s, background .24s, box-shadow .24s;
}
.menu-item:hover { z-index: 2; transform: translateY(-3px); border-color: rgba(142, 37, 30, .28); background: rgba(255, 255, 255, .86); box-shadow: 0 12px 28px rgba(78, 43, 19, .09); }
.menu-code { min-width: 40px; color: #9a281f; font: 800 .72rem/1.4 var(--sans); letter-spacing: .04em; }
.menu-name { color: #33251e; font-family: var(--serif); font-size: .93rem; font-weight: 650; line-height: 1.45; }
.menu-price { color: #2b1a14; font-size: .86rem; font-weight: 850; white-space: nowrap; }
.menu-tags { grid-column: 2 / 4; display: flex; flex-wrap: wrap; gap: 6px; margin-top: 3px; }
.menu-tag { display: inline-flex; align-items: center; gap: 4px; padding: 3px 7px; border-radius: 999px; color: rgba(45, 31, 23, .63); background: rgba(92, 58, 29, .07); font-size: .6rem; font-weight: 750; }
.menu-tag.spicy { color: #8e211b; background: rgba(183, 30, 35, .08); }
.menu-tag.veg { color: #175c43; background: rgba(21, 88, 67, .08); }
.menu-tag.popular { color: #7d5414; background: rgba(193, 138, 36, .11); }
.menu-empty { padding: 70px 20px; text-align: center; border: 1px dashed rgba(95, 58, 28, .23); border-radius: 18px; }
.menu-empty span { display: block; color: rgba(135, 40, 30, .28); font-family: var(--serif); font-size: 4rem; }
.menu-empty h3 { margin: 5px 0; color: #34231b; font-family: var(--serif); }
.menu-empty p { color: rgba(42, 32, 27, .54); }

.set-menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.set-menu-card { position: relative; overflow: hidden; border: 1px solid rgba(92, 54, 27, .16); border-radius: 20px; background: rgba(255, 255, 255, .62); box-shadow: 0 10px 28px rgba(77, 42, 18, .06); }
.set-menu-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 20px; border-bottom: 1px solid rgba(92, 54, 27, .12); background: linear-gradient(110deg, rgba(163, 35, 39, .09), rgba(217, 160, 54, .07)); }
.set-menu-head h4 { margin: 0; color: #6e1718; font-family: var(--serif); font-size: 1.15rem; }
.set-menu-head strong { color: #271712; font-size: 1.08rem; }
.set-menu-body { padding: 12px 20px 20px; }
.set-course { display: grid; grid-template-columns: 100px 1fr; gap: 14px; padding: 11px 0; border-bottom: 1px dotted rgba(72, 44, 25, .18); }
.set-course:last-child { border-bottom: 0; }
.set-course-label { color: #8d2a21; font-size: .69rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.set-course ul { margin: 0; padding: 0; list-style: none; }
.set-course li { color: #382820; font-family: var(--serif); font-size: .84rem; line-height: 1.55; }
.set-course li + li { margin-top: 3px; }
.platter-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.platter-card { padding: 22px 19px; border: 1px solid rgba(92, 54, 27, .15); border-radius: 18px; background: rgba(255, 255, 255, .62); }
.platter-card header { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 14px; padding-bottom: 11px; border-bottom: 1px solid rgba(92, 54, 27, .12); }
.platter-card h4 { margin: 0; color: #8d1d1f; font-family: var(--serif); }
.platter-card strong { color: #2e1c15; }
.platter-card ul { margin: 0; padding: 0; list-style: none; }
.platter-card li { color: #3b2b22; font-family: var(--serif); font-size: .81rem; line-height: 1.5; }
.platter-card li + li { margin-top: 6px; }
.drink-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.drink-group { padding: 20px; border: 1px solid rgba(92, 54, 27, .14); border-radius: 18px; background: rgba(255, 255, 255, .58); }
.drink-group h4 { margin: 0 0 14px; color: #8d1f1d; font-family: var(--serif); font-size: 1.12rem; }
.drink-list { display: grid; gap: 8px; }
.drink-item { display: grid; grid-template-columns: minmax(32px, auto) 1fr auto; gap: 9px; align-items: baseline; padding-bottom: 7px; border-bottom: 1px dotted rgba(72, 44, 25, .16); }
.drink-item:last-child { border-bottom: 0; }
.drink-code { color: #9b6a24; font-size: .62rem; font-weight: 800; }
.drink-name { color: #3a2a22; font-family: var(--serif); font-size: .8rem; }
.drink-price { color: #2c1a13; font-size: .76rem; font-weight: 850; }
.menu-notes { margin-top: 50px; border: 1px solid rgba(92, 54, 27, .16); border-radius: 20px; background: rgba(255, 255, 255, .55); }
.menu-notes summary { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; color: #5f211d; font-family: var(--serif); font-weight: 750; cursor: pointer; list-style: none; }
.menu-notes summary::-webkit-details-marker { display: none; }
.menu-notes summary span:last-child { font-family: var(--sans); transition: transform .25s; }
.menu-notes[open] summary span:last-child { transform: rotate(45deg); }
.notes-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding: 0 14px 14px; }
.notes-grid article { display: flex; gap: 13px; padding: 17px; border-radius: 14px; background: rgba(127, 75, 27, .05); }
.notes-grid article > span { font-size: 1.25rem; }
.notes-grid h3 { margin: 0; color: #38231c; font-size: .84rem; }
.notes-grid p { margin: 4px 0 0; color: rgba(42, 32, 27, .62); font-size: .74rem; }

.reputation-section { overflow: hidden; background: linear-gradient(135deg, #0b1512, #1a0e0d 68%, #260d12); }
.reputation-section::before { content: ""; position: absolute; right: -10vw; top: 10%; width: 50vw; height: 50vw; border: 1px solid rgba(222, 182, 89, .08); border-radius: 50%; box-shadow: inset 0 0 0 60px rgba(222, 182, 89, .02), inset 0 0 0 120px rgba(222, 182, 89, .015); }
.reputation-grid { position: relative; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: clamp(50px, 9vw, 120px); }
.reputation-copy p:not(.eyebrow) { max-width: 650px; margin: 24px 0 30px; color: rgba(255, 248, 234, .58); }
.reputation-card { position: relative; padding: clamp(32px, 5vw, 58px); border: 1px solid var(--line-strong); border-radius: 30px; background: rgba(255, 255, 255, .035); box-shadow: var(--shadow-soft); backdrop-filter: blur(10px); }
.quote-mark { position: absolute; top: -12px; left: 28px; color: rgba(242, 207, 118, .2); font-family: Georgia, serif; font-size: 8rem; line-height: 1; }
.reputation-card > p { position: relative; margin: 0; color: var(--paper-bright); font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 1.7rem); line-height: 1.55; }
.reputation-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); }
.reputation-stats div { display: grid; }
.reputation-stats strong { color: var(--gold-bright); font-family: var(--serif); font-size: 1.8rem; }
.reputation-stats span { color: rgba(255, 248, 234, .46); font-size: .7rem; }

.visit-section { background: #100d0c; }
.visit-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 22px; }
.map-card { min-height: 590px; border: 1px solid var(--line); border-radius: 28px; overflow: hidden; background: #14100f; box-shadow: var(--shadow-soft); }
.map-placeholder, .map-placeholder iframe { width: 100%; height: 100%; min-height: 590px; border: 0; }
.map-placeholder { position: relative; display: grid; place-items: center; overflow: hidden; background: #0d1512; }
.map-art { position: absolute; inset: 0; opacity: .82; background: radial-gradient(circle at 50% 50%, rgba(34, 101, 77, .15), transparent 45%), linear-gradient(135deg, #0d1412, #1a1110); }
.map-art::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: url('../images/pattern.svg'); background-size: 120px; }
.map-road { position: absolute; height: 12px; border: 1px solid rgba(226, 192, 107, .28); border-radius: 999px; transform-origin: center; }
.road-a { width: 125%; top: 48%; left: -10%; rotate: -12deg; }
.road-b { width: 95%; top: 31%; left: 10%; rotate: 46deg; }
.road-c { width: 90%; bottom: 22%; left: 15%; rotate: 22deg; }
.map-pin { position: absolute; left: 50%; top: 45%; width: 46px; height: 46px; transform: translate(-50%, -50%) rotate(45deg); border: 3px solid var(--gold-bright); border-radius: 50% 50% 50% 0; background: var(--red); box-shadow: 0 0 0 12px rgba(191, 26, 42, .12), 0 0 40px rgba(211, 145, 42, .22); }
.map-pin i { position: absolute; width: 14px; height: 14px; left: 50%; top: 50%; border-radius: 50%; background: var(--gold-pale); transform: translate(-50%, -50%); }
.map-consent { position: relative; z-index: 2; width: min(84%, 390px); padding: 30px; border: 1px solid var(--line-strong); border-radius: 22px; text-align: center; background: rgba(12, 10, 9, .88); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.map-symbol { width: 55px; height: 55px; display: grid; place-items: center; margin: 0 auto 15px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--gold-bright); font-family: var(--serif); }
.map-consent h3 { margin: 0; color: var(--paper-bright); font-family: var(--serif); font-size: 1.3rem; }
.map-consent p { margin: 10px 0 20px; color: rgba(255, 248, 234, .52); font-size: .76rem; }
.visit-info { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.visit-card { display: flex; gap: 15px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255, 255, 255, .025); }
.visit-card.seasonal-card { grid-column: 1 / -1; }
.visit-icon { flex: 0 0 44px; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 13px; color: var(--gold-bright); background: rgba(215, 164, 60, .06); font-family: var(--serif); }
.visit-card h3 { margin: 0 0 7px; color: var(--paper-bright); font-family: var(--serif); font-size: 1rem; }
.visit-card p, .visit-card address { margin: 0; color: rgba(255, 248, 234, .57); font-size: .8rem; line-height: 1.75; }
.visit-card a:not(.phone-link) { display: inline-block; margin-top: 12px; color: var(--gold-bright); font-size: .74rem; font-weight: 700; }
.phone-link { color: var(--paper-bright); font-size: .96rem; font-weight: 800; white-space: nowrap; letter-spacing: -.015em; }
.visit-card small { color: rgba(255, 248, 234, .37); }

.booking-section { position: relative; isolation: isolate; overflow: hidden; padding: clamp(90px, 12vw, 155px) 0; text-align: center; background: #4f0712; }
.booking-bg { position: absolute; z-index: -2; inset: 0; background: linear-gradient(110deg, rgba(74, 4, 14, .98), rgba(139, 14, 28, .91)), url('../images/hero-garden.svg') center/cover; }
.booking-bg::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: url('../images/pattern.svg'); background-size: 140px; }
.booking-inner { max-width: 860px; }
.booking-inner h2 { color: #fff5dc; }
.booking-inner > p:not(.eyebrow) { max-width: 660px; margin: 22px auto 0; color: rgba(255, 244, 222, .68); }
.booking-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.site-footer { padding: 70px 0 24px; background: #080706; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 45px; }
.brand-footer img { width: 60px; height: 60px; }
.footer-brand > p { max-width: 310px; margin: 18px 0 0; color: rgba(255, 248, 234, .46); font-size: .78rem; }
.footer-grid h2 { margin: 8px 0 14px; color: var(--gold-bright); font-family: var(--serif); font-size: .95rem; }
.footer-grid p { margin: 0; color: rgba(255, 248, 234, .48); font-size: .76rem; line-height: 1.75; }
.footer-grid a { color: rgba(255, 248, 234, .75); font-size: .76rem; transition: color .2s; }
.footer-grid a:hover { color: var(--gold-bright); }
.footer-small { margin-top: 8px !important; color: rgba(255, 248, 234, .32) !important; font-size: .65rem !important; }
.footer-links { display: grid; gap: 9px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 20px; border-top: 1px solid var(--line); }
.footer-bottom p, .footer-bottom a { margin: 0; color: rgba(255, 248, 234, .32); font-size: .66rem; }
.footer-bottom div { display: flex; gap: 18px; }
.footer-bottom a:hover { color: var(--gold-bright); }
.mobile-callbar { display: none; }

.photo-dialog { width: min(92vw, 1050px); max-height: 92vh; padding: 0; overflow: visible; border: 1px solid var(--line-strong); border-radius: 20px; color: var(--paper); background: #0b0908; box-shadow: 0 30px 100px rgba(0, 0, 0, .7); }
.photo-dialog::backdrop { background: rgba(4, 3, 3, .84); backdrop-filter: blur(8px); }
.photo-dialog img { width: 100%; max-height: 78vh; object-fit: contain; border-radius: 20px 20px 0 0; }
.photo-dialog p { margin: 0; padding: 14px 18px; color: rgba(255, 248, 234, .58); font-size: .78rem; }
.dialog-close { position: absolute; z-index: 2; top: -14px; right: -14px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--paper-bright); background: #21100e; cursor: pointer; font-size: 1.3rem; }
.noscript { position: fixed; z-index: 9999; left: 16px; right: 16px; bottom: 16px; padding: 14px; border-radius: 12px; color: #1c130d; background: var(--gold-bright); text-align: center; font-size: .78rem; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 36px, 980px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-content { grid-template-columns: 1fr .52fr; gap: 42px; }
  .hero-card { padding-inline: 25px; }
  .signature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-block { grid-template-columns: 1fr; }
  .gallery-copy { max-width: 700px; }
  .photo-mosaic { grid-template-rows: repeat(2, 230px); }
  .menu-toolbar { grid-template-columns: 1fr auto; }
  .button-print { grid-column: 1 / -1; width: max-content; }
  .platter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visit-grid { grid-template-columns: 1fr; }
  .map-card, .map-placeholder, .map-placeholder iframe { min-height: 500px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  :root { --header-h: 72px; --shell: min(100% - 28px, 760px); }
  .header-inner { gap: 10px; }
  .brand img { width: 44px; height: 44px; }
  .brand-copy strong { font-size: .92rem; }
  .brand-copy span { font-size: .62rem; }
  .header-call { display: none; }
  .language-picker.compact { padding: 7px 9px 7px 10px; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 74px); padding-bottom: 110px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .hero h1 > span { font-size: clamp(3.7rem, 13vw, 6.2rem); }
  .hero h1 b { font-size: clamp(2rem, 8vw, 3.8rem); }
  .hero-card { width: min(100%, 520px); justify-self: start; display: grid; grid-template-columns: auto 1fr; gap: 10px 25px; align-items: center; padding: 25px; border-radius: 24px; }
  .hero-card-seal { width: 86px; margin: 0; grid-row: 1 / 3; }
  .hero-card dl { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-card dl > div { display: grid; padding: 10px 12px; border-bottom: 0; border-left: 1px solid var(--line); }
  .hero-card dd { text-align: left; }
  .hero-card-link { grid-column: 2; margin-top: 4px; }
  .hero-lantern { opacity: .55; }
  .season-inner { grid-template-columns: auto 1fr; padding-block: 18px; }
  .season-inner a { grid-column: 2; }
  .about-grid { grid-template-columns: 1fr; gap: 65px; }
  .about-visual { width: min(100%, 590px); margin-inline: auto; }
  .photo-frame-main { width: 100%; }
  .about-year { right: 10px; }
  .gallery-block { padding: 28px; }
  .menu-toolbar { position: relative; top: auto; grid-template-columns: 1fr; }
  .menu-language-picker { justify-content: space-between; }
  .button-print { grid-column: auto; width: 100%; }
  .menu-grid, .set-menu-grid, .drink-groups { grid-template-columns: 1fr; }
  .reputation-grid { grid-template-columns: 1fr; }
  .visit-info { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .mobile-callbar {
    position: fixed;
    z-index: 1400;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(12, 9, 8, .92);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .45);
    backdrop-filter: blur(18px);
  }
  .mobile-callbar a { display: grid; place-items: center; gap: 1px; min-height: 57px; border-right: 1px solid var(--line); color: rgba(255, 248, 234, .68); font-size: .62rem; font-weight: 750; }
  .mobile-callbar a:last-child { border-right: 0; }
  .mobile-callbar a:nth-child(2) { color: #1a0c08; background: linear-gradient(135deg, var(--gold-bright), #cb8f25); }
  .mobile-callbar a span:first-child { font-size: 1rem; }
  .site-footer { padding-bottom: 98px; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 24px); }
  .brand-copy span { display: none; }
  .language-picker.compact > span:not(.sr-only) { display: none; }
  .hero-vignette { background: linear-gradient(90deg, rgba(6, 5, 5, .94), rgba(6, 5, 5, .48)), linear-gradient(0deg, rgba(7, 6, 5, .97), transparent 50%); }
  .hero h1 > span { font-size: clamp(3.25rem, 16.5vw, 5rem); line-height: .96; }
  .hero h1 b { margin-top: 15px; font-size: clamp(2rem, 10vw, 3.2rem); }
  .hero-lead { font-size: .98rem; }
  .hero-cta { display: grid; }
  .hero-cta .button { width: 100%; }
  .hero-card { grid-template-columns: 1fr; }
  .hero-card-seal { display: none; }
  .hero-card dl { grid-template-columns: 1fr 1fr; }
  .hero-card dl > div { border-left: 0; border-bottom: 1px solid var(--line); padding-left: 0; }
  .hero-card dl > div:last-child { grid-column: 1 / -1; }
  .hero-card-link { grid-column: 1; }
  .scroll-cue { display: none; }
  .season-symbol { width: 48px; height: 48px; }
  .season-inner { gap: 13px; }
  .season-inner p { font-size: .75rem; }
  .season-inner a { font-size: .71rem; }
  .section { padding: 84px 0; }
  .section-heading { margin-bottom: 38px; }
  .about-visual { min-height: 470px; }
  .photo-frame-main { height: 470px; border-radius: 38% 38% 18px 18px; }
  .about-year { width: 150px; padding: 18px; bottom: 22px; }
  .ink-stamp { top: 58px; right: 4px; width: 65px; height: 65px; }
  .feature-grid { grid-template-columns: 1fr; }
  .signature-grid { grid-template-columns: 1fr; }
  .gallery-block { padding: 22px; border-radius: 22px; }
  .photo-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 250px 145px; }
  .mosaic-large { grid-column: 1 / -1; grid-row: auto; }
  .photo-credit { position: static; margin-top: 12px; }
  .menu-heading { align-items: flex-start; }
  .menu-heading-mark { display: none; }
  .category-scroll { display: none; }
  .category-tabs { margin-inline: -12px; padding-inline: 12px; }
  .menu-item { min-height: 86px; padding: 15px; gap: 9px; }
  .menu-code { min-width: 34px; }
  .menu-name { font-size: .87rem; }
  .menu-price { font-size: .8rem; }
  .set-menu-head { padding: 16px; }
  .set-menu-body { padding: 8px 16px 16px; }
  .set-course { grid-template-columns: 1fr; gap: 4px; }
  .platter-grid { grid-template-columns: 1fr; }
  .notes-grid { grid-template-columns: 1fr; }
  .reputation-stats { grid-template-columns: 1fr; }
  .map-card, .map-placeholder, .map-placeholder iframe { min-height: 470px; }
  .visit-info { grid-template-columns: 1fr; }
  .visit-card.seasonal-card { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 390px) {
  .brand img { width: 40px; height: 40px; }
  .brand-copy strong { font-size: .8rem; }
  .header-actions { gap: 6px; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero { padding-top: calc(var(--header-h) + 58px); }
  .open-status { font-size: .69rem; }
  .hero-card dl { grid-template-columns: 1fr; }
  .hero-card dl > div:last-child { grid-column: auto; }
  .photo-mosaic { grid-template-rows: 220px 125px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero-bg > img { transform: none !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}


@media (max-width: 1050px) {
  .gallery-block { grid-template-columns: 1fr; }
  .gallery-copy { max-width: 720px; }
  .photo-carousel { height: min(64vw, 560px); min-height: 450px; }
  .social-hub { grid-template-columns: 1fr; }
  .social-hub-copy { max-width: 700px; }
}

@media (max-width: 720px) {
  .gallery-block { padding: 22px; border-radius: 22px; }
  .gallery-highlights > span { min-width: 78px; padding: 10px 12px; }
  .photo-carousel { height: 470px; min-height: 0; border-radius: 18px; }
  .carousel-nav { width: 42px; height: 42px; }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }
  .carousel-bottom { min-height: 108px; padding: 38px 15px 20px; }
  .carousel-dots { left: 15px; right: 62px; gap: 3px; }
  .social-hub { padding: 24px; border-radius: 22px; }
  .social-platforms { grid-template-columns: 1fr; }
  .photo-credit { position: static; grid-column: 1 / -1; margin-top: -6px; text-align: right; }
}

@media (max-width: 430px) {
  .photo-carousel { height: 400px; }
  .carousel-caption strong { max-width: 245px; }
  .gallery-highlights { display: grid; grid-template-columns: repeat(3, 1fr); }
  .gallery-highlights > span { min-width: 0; }
  .social-card { min-height: 94px; grid-template-columns: 44px minmax(0, 1fr) auto; padding: 14px; }
  .social-icon { width: 44px; height: 44px; }
}

/* --------------------------------------------------------------------------
   V3 visual refinement — stronger Golden Garden Chinese identity
   -------------------------------------------------------------------------- */
body {
  position: relative;
  background: #070504;
}

.page-backdrop {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 3, 3, .78), rgba(8, 4, 3, .93)),
    radial-gradient(circle at 50% 18%, rgba(173, 18, 30, .16), transparent 38%),
    url('../images/photos/golden-garden-gate-night.webp') center 32% / cover no-repeat;
  filter: saturate(.92) contrast(1.04);
}
.page-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: url('../images/pattern.svg');
  background-size: 154px 154px;
  mix-blend-mode: screen;
}
.page-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 3, 3, .8), transparent 22%, transparent 78%, rgba(5, 3, 3, .82)),
    linear-gradient(0deg, rgba(5, 3, 3, .98), transparent 35%, rgba(5, 3, 3, .48));
}
main,
.site-footer { position: relative; z-index: 1; }

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 7px;
  opacity: .7;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(242,207,118,.65) 12%, rgba(182,15,36,.9) 28%, rgba(242,207,118,.9) 50%, rgba(182,15,36,.9) 72%, rgba(242,207,118,.65) 88%, transparent) center top / 100% 2px no-repeat,
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(215,164,60,.25) 18px 20px, transparent 20px 38px);
}
.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(24, 7, 8, .96), rgba(8, 7, 6, .9));
}
.brand img { filter: drop-shadow(0 0 15px rgba(202, 42, 49, .28)) drop-shadow(0 8px 18px rgba(0,0,0,.35)); }
.brand-copy strong { text-shadow: 0 2px 16px rgba(0,0,0,.5); }

.hero {
  min-height: max(800px, 100svh);
  background: #090504;
  border-bottom: 1px solid rgba(242,207,118,.26);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22px;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 11px, rgba(183,19,35,.78) 0) 0 0 / 22px 22px,
    linear-gradient(225deg, transparent 11px, rgba(183,19,35,.78) 0) 11px 0 / 22px 22px;
  opacity: .45;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.hero-bg > img {
  object-position: 53% 42%;
  filter: saturate(1.13) contrast(1.08) brightness(.76);
  transform: scale(1.045) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
}
.hero-vignette {
  background:
    linear-gradient(90deg, rgba(5, 3, 3, .97) 0%, rgba(8, 4, 4, .84) 37%, rgba(8, 4, 3, .25) 67%, rgba(7, 4, 3, .55) 100%),
    linear-gradient(0deg, rgba(7, 4, 3, .98) 0%, transparent 47%),
    radial-gradient(circle at 58% 40%, transparent 0, rgba(6, 3, 3, .08) 34%, rgba(6, 3, 3, .84) 100%);
}
.hero-lattice {
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(45deg, transparent 47%, rgba(242,207,118,.5) 48% 52%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, rgba(242,207,118,.34) 48% 52%, transparent 53%);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, transparent 0 55%, #000 82%, transparent);
}
.hero-roofline {
  position: absolute;
  top: calc(var(--header-h) + 20px);
  left: 50%;
  width: min(720px, 58vw);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  color: rgba(255,232,166,.72);
  font-family: var(--serif);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .38em;
  transform: translateX(-50%);
  text-shadow: 0 2px 12px #000;
  opacity: .85;
}
.hero-roofline i {
  height: 10px;
  border-top: 2px solid rgba(242,207,118,.58);
  border-bottom: 1px solid rgba(182,15,36,.64);
  transform: skewX(-24deg);
}
.hero-roofline i:last-child { transform: skewX(24deg); }
.hero-title-stage { position: relative; display: inline-block; }
.hero h1 > span {
  color: transparent;
  background: linear-gradient(180deg, #fff9ec 8%, #f7e3b9 64%, #d2a858);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 12px 35px rgba(0,0,0,.42);
  filter: drop-shadow(0 2px 0 rgba(94,36,17,.35));
}
.hero h1 b {
  position: relative;
  width: max-content;
  margin-top: 22px;
  padding: 10px 27px 13px 37px;
  border: 2px solid #d8ad55;
  border-radius: 4px;
  color: #ffe7a0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.07), transparent 20% 80%, rgba(255,255,255,.05)),
    linear-gradient(180deg, #a61325, #680714);
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: #ffe7a0;
  box-shadow:
    inset 0 0 0 4px rgba(59,3,9,.55),
    inset 0 0 28px rgba(255,73,68,.16),
    0 18px 42px rgba(0,0,0,.42),
    0 0 24px rgba(182,15,36,.22);
  font-size: clamp(2rem, 3.85vw, 4.3rem);
  letter-spacing: .27em;
  filter: none;
}
.hero h1 b::before,
.hero h1 b::after {
  content: "◆";
  position: absolute;
  top: 50%;
  color: #e7c26c;
  font-size: .33em;
  transform: translateY(-50%);
}
.hero h1 b::before { left: 11px; }
.hero h1 b::after { right: 9px; }
.hero-red-seal {
  position: absolute;
  right: -76px;
  bottom: 7px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 3px double rgba(230,48,57,.82);
  color: rgba(255,102,98,.9);
  background: rgba(49,3,8,.42);
  font-family: var(--serif);
  font-size: .74rem;
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
  white-space: pre-line;
  letter-spacing: .08em;
  transform: rotate(7deg);
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
}
.open-status {
  border-color: rgba(242,207,118,.34);
  background: linear-gradient(135deg, rgba(82,9,15,.64), rgba(10,9,8,.54));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
}
.hero-card {
  border-radius: 8px 34px 8px 34px;
  border-color: rgba(242,207,118,.42);
  background:
    linear-gradient(135deg, rgba(119,11,24,.25), transparent 38%),
    linear-gradient(150deg, rgba(39,16,13,.88), rgba(8,27,20,.84));
  box-shadow: 0 38px 100px rgba(0,0,0,.48), inset 0 0 50px rgba(215,164,60,.035);
}
.hero-card::before { border-radius: 4px 27px 4px 27px; }
.hero-card::after {
  content: "福";
  position: absolute;
  right: -15px;
  bottom: -48px;
  color: rgba(242,207,118,.055);
  font-family: var(--serif);
  font-size: 11rem;
  line-height: 1;
  transform: rotate(-9deg);
}
.hero-card dl,
.hero-card-link,
.hero-card-seal { z-index: 1; }
.hero-lantern {
  border-color: #efc763;
  background: linear-gradient(90deg, #65030d, #d42132 48%, #65030d);
  box-shadow: 0 0 40px rgba(220,42,50,.34), inset 0 0 22px rgba(255,184,74,.18);
}

.season-strip {
  background:
    linear-gradient(90deg, rgba(104,7,20,.48), rgba(17,12,10,.92) 28% 72%, rgba(104,7,20,.48)),
    #120e0d url('../images/pattern.svg');
  box-shadow: inset 0 1px rgba(255,225,148,.08), inset 0 -1px rgba(255,225,148,.08);
}
.season-symbol {
  border-radius: 7px 18px 7px 18px;
  background: linear-gradient(145deg, rgba(167,13,28,.42), rgba(215,164,60,.06));
}

.section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(560px, 70vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(242,207,118,.42), rgba(182,15,36,.62), rgba(242,207,118,.42), transparent);
}
.about-section {
  background:
    linear-gradient(180deg, rgba(8,6,5,.91), rgba(14,8,7,.86)),
    transparent;
  backdrop-filter: blur(2px);
}
.about-section::before {
  opacity: .62;
  background:
    radial-gradient(circle at 9% 38%, rgba(177,19,36,.26), transparent 31%),
    radial-gradient(circle at 91% 58%, rgba(17,93,68,.2), transparent 31%),
    linear-gradient(90deg, transparent, rgba(215,164,60,.025), transparent);
}
.photo-frame-main {
  border: 1px solid rgba(242,207,118,.44);
  box-shadow: 0 28px 80px rgba(0,0,0,.48), 0 0 0 8px rgba(91,6,16,.18), 0 0 0 9px rgba(215,164,60,.18);
}
.photo-frame-main::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(242,207,118,.23);
  border-radius: inherit;
  pointer-events: none;
}
.photo-frame-main img { filter: saturate(1.07) contrast(1.06); }
.about-year {
  border-radius: 4px 20px 4px 20px;
  border-color: rgba(242,207,118,.5);
  background: linear-gradient(145deg, rgba(111,7,18,.96), rgba(33,17,12,.96));
  box-shadow: 0 22px 48px rgba(0,0,0,.42), inset 0 0 24px rgba(255,158,73,.08);
}
.about-year strong { color: #ffe39a; }
.ink-stamp { background: rgba(66,4,10,.18); }
.feature {
  border-radius: 5px 17px 5px 17px;
  background: linear-gradient(135deg, rgba(123,9,22,.12), rgba(255,255,255,.018));
}
.feature > span {
  border: 1px solid rgba(215,164,60,.2);
  border-radius: 4px 13px 4px 13px;
  background: linear-gradient(145deg, rgba(154,13,28,.28), rgba(215,164,60,.08));
}

.signatures-section {
  background:
    linear-gradient(180deg, rgba(15,7,7,.89), rgba(8,13,10,.91)),
    url('../images/pattern.svg');
  background-size: auto, 145px 145px;
}
.signatures-section::before {
  background:
    radial-gradient(circle at 8% 22%, rgba(181,18,35,.2), transparent 24%),
    radial-gradient(circle at 91% 38%, rgba(29,111,78,.16), transparent 25%),
    linear-gradient(180deg, rgba(8,7,6,.34), transparent 18%, transparent 82%, rgba(8,7,6,.68));
}
.section-heading.centered::before {
  content: "金  ·  鼎  ·  轩";
  display: block;
  margin-bottom: 17px;
  color: rgba(242,207,118,.55);
  font-family: var(--serif);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .56em;
}
.dish-card {
  position: relative;
  border-radius: 5px 24px 5px 24px;
  border-color: rgba(230,194,105,.28);
  background:
    linear-gradient(135deg, rgba(116,8,20,.16), transparent 38%),
    rgba(17,12,10,.91);
  box-shadow: 0 18px 48px rgba(0,0,0,.29), inset 0 0 0 1px rgba(255,255,255,.018);
}
.dish-card::before,
.dish-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 34px;
  height: 34px;
  pointer-events: none;
}
.dish-card::before { top: 8px; left: 8px; border-top: 2px solid rgba(242,207,118,.72); border-left: 2px solid rgba(242,207,118,.72); }
.dish-card::after { right: 8px; bottom: 8px; border-right: 2px solid rgba(183,19,36,.72); border-bottom: 2px solid rgba(183,19,36,.72); }
.dish-image { border-bottom: 1px solid rgba(242,207,118,.18); }
.dish-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(9,6,5,.52), transparent 36%);
}
.dish-image { position: relative; }
.dish-card-copy > span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border: 1px solid rgba(215,164,60,.24);
  border-radius: 3px 9px 3px 9px;
  color: #f0cc75;
  background: rgba(137,10,24,.18);
}

.gallery-block {
  border-radius: 8px 34px 8px 34px;
  border-color: rgba(242,207,118,.35);
  background:
    linear-gradient(135deg, rgba(133,9,22,.23), transparent 36%),
    linear-gradient(145deg, rgba(28,13,12,.97), rgba(5,28,20,.94));
  box-shadow: 0 34px 90px rgba(0,0,0,.44), inset 0 0 0 8px rgba(0,0,0,.12), inset 0 0 0 9px rgba(215,164,60,.08);
}
.gallery-block::before {
  inset: -120px auto auto -110px;
  background: radial-gradient(circle, rgba(188,22,37,.26), transparent 68%);
}
.gallery-block::after {
  content: "宴";
  position: absolute;
  right: -16px;
  bottom: -65px;
  color: rgba(242,207,118,.045);
  font-family: var(--serif);
  font-size: 16rem;
  line-height: 1;
  pointer-events: none;
}
.gallery-copy,
.photo-carousel,
.photo-credit { z-index: 2; }
.gallery-highlights > span {
  border-radius: 4px 13px 4px 13px;
  background: linear-gradient(145deg, rgba(132,10,23,.22), rgba(255,255,255,.02));
}
.photo-carousel {
  border-radius: 5px 24px 5px 24px;
  border-color: rgba(242,207,118,.48);
  box-shadow: 0 26px 74px rgba(0,0,0,.48), 0 0 0 5px rgba(113,8,20,.2), 0 0 0 6px rgba(215,164,60,.12);
}
.carousel-slide::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 10px;
  border: 1px solid rgba(242,207,118,.12);
  border-radius: 3px 16px 3px 16px;
  pointer-events: none;
}
.carousel-slide.compact-photo .gallery-photo::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: url('../images/photos/egg-fried-rice-124.webp') center / cover no-repeat;
  filter: blur(28px) saturate(1.15);
  opacity: .3;
  transform: scale(1.15);
}
.carousel-slide.compact-photo .gallery-photo img {
  position: relative;
  z-index: 1;
  width: min(62%, 360px);
  height: min(62%, 360px);
  margin: auto;
  border: 1px solid rgba(242,207,118,.35);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0,0,0,.48), 0 0 0 8px rgba(98,7,18,.24);
}
.social-hub {
  border-radius: 5px 25px 5px 25px;
  border-color: rgba(242,207,118,.26);
  background:
    linear-gradient(135deg, rgba(112,7,19,.14), transparent 36%),
    rgba(8,8,7,.84);
}
.social-card { border-radius: 4px 15px 4px 15px; }

.menu-section {
  border-block: 1px solid rgba(129,12,24,.24);
  background:
    linear-gradient(90deg, rgba(117,13,23,.07), transparent 12% 88%, rgba(117,13,23,.07)),
    linear-gradient(180deg, #ead9bb 0%, #fff8e9 9%, #f7eddc 52%, #fff8e9 91%, #ead9bb 100%);
}
.menu-section::before {
  opacity: .22;
  background-size: 116px 116px;
  filter: sepia(.35);
}
.menu-section::after {
  height: 28px;
  background:
    linear-gradient(135deg, transparent 13px, rgba(128,10,23,.78) 0) 0 0 / 26px 26px,
    linear-gradient(225deg, transparent 13px, rgba(128,10,23,.78) 0) 13px 0 / 26px 26px;
  opacity: .55;
}
.menu-shell {
  position: relative;
}
.menu-shell::before,
.menu-shell::after {
  content: "";
  position: absolute;
  top: 70px;
  bottom: 70px;
  width: 1px;
  background: linear-gradient(transparent, rgba(139,18,29,.34) 8%, rgba(139,18,29,.34) 92%, transparent);
  pointer-events: none;
}
.menu-shell::before { left: -18px; }
.menu-shell::after { right: -18px; }
.menu-heading-mark {
  color: rgba(131,15,25,.12);
  text-shadow: 0 1px rgba(255,255,255,.5);
}
.category-tab.is-active {
  border-color: #8e1720;
  color: #fff7e8;
  background: linear-gradient(135deg, #a71625, #650714);
  box-shadow: 0 10px 24px rgba(115,10,21,.2);
}
.menu-item {
  border-radius: 3px 13px 3px 13px;
}
.menu-code {
  border-radius: 3px 9px 3px 9px;
  color: #8d1820;
  background: rgba(145,16,27,.08);
}
.set-menu-card,
.platter-card,
.drink-group {
  border-radius: 4px 18px 4px 18px;
}

.booking-section {
  background:
    linear-gradient(90deg, rgba(72,4,12,.96), rgba(11,8,7,.82), rgba(72,4,12,.96)),
    url('../images/photos/golden-garden-gate-night.webp') center 52% / cover no-repeat;
}
.booking-bg {
  background:
    linear-gradient(90deg, rgba(8,5,4,.9), rgba(8,5,4,.55) 48%, rgba(8,5,4,.88)),
    url('../images/pattern.svg');
  opacity: .95;
}
.site-footer {
  background: linear-gradient(180deg, rgba(8,5,4,.97), #050303), url('../images/pattern.svg');
  background-size: auto, 132px 132px;
}

@media (max-width: 820px) {
  .page-backdrop { background-position: 54% 24%; }
  .hero-roofline { top: calc(var(--header-h) + 13px); width: 72vw; }
  .hero-title-stage { max-width: calc(100vw - 50px); }
  .hero-red-seal { right: -58px; width: 52px; height: 52px; font-size: .65rem; }
  .hero h1 b { padding-inline: 28px 20px; }
  .menu-shell::before, .menu-shell::after { display: none; }
}

@media (max-width: 600px) {
  .page-backdrop {
    position: absolute;
    height: 120vh;
    background-position: 55% 16%;
    filter: saturate(.86) contrast(1.02);
  }
  .page-backdrop::before { opacity: .1; }
  .hero { min-height: 780px; }
  .hero-bg > img { object-position: 57% 34%; filter: saturate(1.05) contrast(1.06) brightness(.62); }
  .hero-lattice { opacity: .1; background-size: 54px 54px; }
  .hero-roofline { display: none; }
  .hero h1 b {
    margin-top: 18px;
    padding: 9px 22px 11px 29px;
    letter-spacing: .2em;
  }
  .hero-red-seal { right: -4px; bottom: -58px; width: 49px; height: 49px; }
  .hero-lead { margin-top: 70px; }
  .hero-card { border-radius: 5px 24px 5px 24px; }
  .section-heading.centered::before { letter-spacing: .38em; }
  .dish-card { border-radius: 4px 20px 4px 20px; }
  .gallery-block { border-radius: 5px 24px 5px 24px; box-shadow: 0 25px 60px rgba(0,0,0,.4), inset 0 0 0 5px rgba(0,0,0,.1); }
  .photo-carousel { border-radius: 4px 19px 4px 19px; }
  .carousel-slide.compact-photo .gallery-photo img { width: min(65%, 260px); height: min(65%, 260px); }
}

@media (prefers-reduced-motion: reduce) {
  .page-backdrop { background-attachment: scroll; }
}


@media print {
  :root { color-scheme: light; }
  body { color: #111; background: #fff; font-size: 10pt; }
  .site-header, .hero, .season-strip, .about-section, .signatures-section, .reputation-section, .visit-section, .booking-section, .site-footer, .mobile-callbar, .menu-toolbar, .category-wrap, .menu-summary, .menu-notes, .ambient-grain, .cursor-glow, .scroll-progress, .page-backdrop { display: none !important; }
  .menu-section { padding: 0; color: #111; background: #fff; }
  .menu-section::before, .menu-section::after, .menu-cloud, .menu-heading-mark { display: none; }
  .menu-shell { width: 100%; }
  .menu-heading { margin: 0 0 20px; }
  .menu-heading .eyebrow { color: #7b1119; }
  .menu-section h2 { color: #111; font-size: 24pt; }
  .menu-section .section-heading p:last-child { color: #444; }
  .menu-content { margin: 0; }
  .menu-category-section { break-inside: avoid; margin-top: 20px; }
  .menu-category-header { margin-bottom: 8px; }
  .menu-category-header h3 { color: #111; font-size: 16pt; }
  .menu-category-header span { display: none; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 4px 12px; }
  .menu-item { break-inside: avoid; min-height: auto; padding: 5px 0; border: 0; border-bottom: 1px dotted #aaa; border-radius: 0; background: #fff; box-shadow: none; }
  .menu-name, .menu-price { color: #111; }
  .menu-tags { display: none; }
  .set-menu-card, .platter-card, .drink-group { break-inside: avoid; color: #111; border-color: #aaa; background: #fff; box-shadow: none; }
  .set-menu-head h4, .platter-card h4, .drink-group h4 { color: #7b1119; }
  .set-course li, .platter-card li, .drink-name, .drink-price { color: #111; }
}


/* SEO V4: visible local descriptor, crawlable FAQ and language links */
.hero h1 .hero-location {
  display: block;
  margin-top: 18px;
  max-width: 760px;
  font-family: var(--sans);
  font-size: clamp(.76rem, 1.2vw, 1.02rem);
  font-weight: 750;
  line-height: 1.45;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-pale);
  text-shadow: 0 3px 18px rgba(0,0,0,.7);
}
html[data-lang="zh"] .hero h1 .hero-location { letter-spacing: .12em; text-transform: none; }

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(151,17,29,.13), transparent 34%),
    radial-gradient(circle at 90% 84%, rgba(17,91,66,.11), transparent 35%),
    #0d0908 url('../images/pattern.svg');
}
.faq-section::before,
.faq-section::after {
  content: "福";
  position: absolute;
  color: rgba(205,162,67,.045);
  font-family: var(--serif);
  font-size: clamp(11rem, 22vw, 24rem);
  line-height: 1;
  pointer-events: none;
}
.faq-section::before { top: -2rem; left: -3rem; transform: rotate(-10deg); }
.faq-section::after { right: -2rem; bottom: -5rem; transform: rotate(9deg); }
.faq-shell { position: relative; z-index: 1; }
.faq-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin-top: 38px; }
.faq-item {
  border: 1px solid rgba(226,187,91,.22);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(30,20,17,.94), rgba(12,10,9,.96));
  box-shadow: inset 0 1px rgba(255,255,255,.025), 0 18px 42px rgba(0,0,0,.16);
}
.faq-item[open] { border-color: rgba(226,187,91,.46); }
.faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 22px 58px 22px 24px;
  color: var(--paper-bright);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 1.45rem;
  font-weight: 400;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin: 0; padding: 0 24px 24px; color: var(--muted); line-height: 1.75; }

.footer-language-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  border-top: 1px solid rgba(226,187,91,.12);
}
.footer-language-nav strong { color: var(--gold-pale); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-language-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
.footer-language-links a {
  padding: 7px 11px;
  border: 1px solid rgba(226,187,91,.16);
  border-radius: 999px;
  color: rgba(255,248,234,.72);
  font-size: .75rem;
  transition: border-color .2s, color .2s, background .2s;
}
.footer-language-links a:hover,
.footer-language-links a[aria-current="page"] { color: var(--gold-bright); border-color: rgba(226,187,91,.5); background: rgba(226,187,91,.07); }

.reveal-fallback .reveal { opacity: 1 !important; transform: none !important; }

@media (max-width: 820px) {
  .page-backdrop {
    background:
      linear-gradient(180deg, rgba(5, 3, 3, .78), rgba(8, 4, 3, .93)),
      radial-gradient(circle at 50% 18%, rgba(173, 18, 30, .16), transparent 38%),
      url('../images/photos/golden-garden-gate-640.webp') 54% 24% / cover no-repeat;
  }
  .booking-section {
    background:
      linear-gradient(90deg, rgba(72,4,12,.96), rgba(11,8,7,.82), rgba(72,4,12,.96)),
      url('../images/photos/golden-garden-gate-640.webp') center 52% / cover no-repeat;
  }
}

@media (max-width: 760px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item summary { padding: 19px 54px 19px 20px; font-size: 1rem; }
  .faq-item p { padding: 0 20px 21px; }
  .footer-language-nav { align-items: flex-start; flex-direction: column; }
  .footer-language-links { justify-content: flex-start; }
}
