:root {
  --ink: #201815;
  --muted: #756861;
  --paper: #fffaf0;
  --shell: #f3e6d1;
  --red: #a62a20;
  --gold: #d99124;
  --teal: #1e6f68;
  --line: rgba(32, 24, 21, .14);
  --shadow: 0 18px 50px rgba(32, 24, 21, .18);
  --hero-tint: rgba(20, 12, 8, .82);
  --hero-mid: rgba(20, 12, 8, .42);
  --hero-soft: rgba(20, 12, 8, .18);
  --image-filter: none;
}

body[data-season="spring"] {
  --paper: #fff8f3;
  --shell: #f8e8e6;
  --red: #b93648;
  --gold: #d98a66;
  --teal: #467d65;
  --hero-tint: rgba(45, 20, 24, .78);
  --hero-mid: rgba(146, 66, 72, .36);
  --hero-soft: rgba(255, 178, 176, .12);
  --image-filter: saturate(1.08) brightness(1.04);
}

body[data-season="summer"] {
  --paper: #f7fff8;
  --shell: #dff1e7;
  --red: #207765;
  --gold: #d7a536;
  --teal: #0f6f8a;
  --hero-tint: rgba(9, 43, 40, .78);
  --hero-mid: rgba(22, 108, 94, .34);
  --hero-soft: rgba(72, 173, 140, .12);
  --image-filter: saturate(1.12) brightness(1.03);
}

body[data-season="autumn"] {
  --paper: #fff7e8;
  --shell: #f4dfbe;
  --red: #a9431f;
  --gold: #c9821c;
  --teal: #5b6d45;
  --hero-tint: rgba(48, 22, 10, .8);
  --hero-mid: rgba(166, 83, 28, .38);
  --hero-soft: rgba(229, 152, 57, .14);
  --image-filter: saturate(1.1) contrast(1.02);
}

body[data-season="winter"] {
  --paper: #f6fbff;
  --shell: #dfeaf2;
  --red: #254f73;
  --gold: #b88b4a;
  --teal: #49697a;
  --hero-tint: rgba(13, 25, 39, .82);
  --hero-mid: rgba(46, 81, 111, .4);
  --hero-soft: rgba(174, 211, 232, .12);
  --image-filter: saturate(.88) brightness(1.02);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  background: var(--paper);
  transition: background-color .28s ease, color .28s ease;
}

body.tap-burst::after {
  content: "";
  position: fixed;
  left: var(--tap-x, 50vw);
  top: var(--tap-y, 50vh);
  z-index: 80;
  width: 18px;
  height: 18px;
  pointer-events: none;
  border: 2px solid rgba(217, 145, 36, .72);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.2);
  animation: tap-burst .46s ease-out forwards;
}

@keyframes tap-burst {
  0% {
    opacity: .85;
    transform: translate(-50%, -50%) scale(.2);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(4.6);
  }
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  background: rgba(22, 15, 12, .55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, .45);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
}

.site-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.site-nav a {
  position: relative;
  opacity: .88;
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

.site-nav a:hover {
  opacity: 1;
  color: #ffd48a;
}

.site-nav a.is-clicking,
.mobile-bar a.is-clicking {
  transform: translateY(1px) scale(.96);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
  filter: var(--image-filter);
  transition: filter .28s ease;
}

.hero-shade {
  background: linear-gradient(90deg, var(--hero-tint), var(--hero-mid) 48%, var(--hero-soft));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 36px));
  margin: 0 0 clamp(90px, 13vh, 150px) clamp(18px, 8vw, 108px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 9vw, 118px);
  line-height: .95;
  font-weight: 900;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .36);
}

h1 span {
  display: inline-block;
  position: relative;
}

h1 span:first-child::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 6px;
  z-index: -1;
  height: .22em;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 999px;
  transform: rotate(-1.5deg);
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(16px, 2.2vw, 21px);
  line-height: 1.8;
}

.hero-actions,
.visit-panel .full {
  margin-top: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .24s ease, filter .24s ease;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn.is-clicking {
  transform: translateY(1px) scale(.96);
}

.tap-ripple {
  position: absolute;
  left: var(--ripple-x);
  top: var(--ripple-y);
  width: 18px;
  height: 18px;
  pointer-events: none;
  background: rgba(255, 255, 255, .42);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.2);
  animation: tap-ripple .52s ease-out forwards;
}

@keyframes tap-ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(12);
  }
}

.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 26px rgba(166, 42, 32, .28);
}

.glass {
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .1);
}

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 42px;
  z-index: 2;
  width: min(320px, calc(100% - 36px));
  padding: 18px;
  background: rgba(255, 250, 240, .93);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card span,
.hero-card small {
  display: block;
  color: var(--muted);
}

.hero-card strong {
  display: block;
  margin: 8px 0;
  font-size: 20px;
}

.section {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.section-title {
  max-width: 1040px;
  margin: 0 auto 30px;
}

.section-title h2,
.craft-copy h2,
.visit h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.1;
}

.dish-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.dish-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(32, 24, 21, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.dish-card:hover,
.store-card:hover,
.visit-highlights span:hover,
.steps div:hover {
  transform: translateY(-4px);
}

.dish-card:hover {
  box-shadow: 0 22px 52px rgba(32, 24, 21, .13);
  border-color: rgba(166, 42, 32, .18);
}

.dish-card.is-clicking,
.menu-row.is-clicking,
.store-card.is-clicking,
.visit-highlights span.is-clicking,
.steps div.is-clicking,
.gallery img.is-clicking,
.store-photo.is-clicking {
  transform: scale(.985);
}

.dish-card img {
  height: 230px;
  object-fit: cover;
}

.dish-card.feature img {
  height: 330px;
}

.dish-card div {
  padding: 22px;
}

.tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.tag.red { color: var(--red); }
.tag.teal { color: var(--teal); }

.dish-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.dish-card p {
  color: var(--muted);
  line-height: 1.7;
}

.price {
  display: inline-block;
  margin-top: 8px;
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
}

.menu-band {
  background: #172d2b;
  color: #fff;
}

.menu-band .section-title .eyebrow {
  color: #f3bd66;
}

.menu-list {
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.menu-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  transition: transform .22s ease, padding-left .22s ease, background-color .22s ease;
}

.menu-row:hover {
  padding-left: 10px;
  background: rgba(255, 255, 255, .04);
}

.menu-row span {
  color: #f3bd66;
  font-weight: 900;
}

.menu-row strong,
.menu-row small {
  display: block;
}

.menu-row small {
  margin-top: 6px;
  color: rgba(255, 255, 255, .68);
}

.menu-row b {
  color: #ffd48a;
  white-space: nowrap;
}

.craft,
.visit {
  display: grid;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.craft {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
}

.craft-copy p,
.visit p {
  color: var(--muted);
  line-height: 1.8;
}

.visit-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
}

.visit-head h2 {
  margin-bottom: 0;
  max-width: 7em;
}

.visit-head > p {
  margin-bottom: 0;
  font-size: 17px;
}

.visit-highlights {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.visit-highlights span {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-height: 82px;
  padding: 18px 20px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(32, 24, 21, .06);
  transition: transform .24s ease, box-shadow .24s ease;
}

.visit-highlights span:hover,
.steps div:hover {
  box-shadow: 0 18px 40px rgba(32, 24, 21, .1);
}

.visit-highlights strong {
  color: var(--red);
  font-size: 28px;
  line-height: 1;
  white-space: nowrap;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.steps div {
  position: relative;
  min-height: 150px;
  padding: 20px;
  border-radius: 8px;
  background: var(--shell);
  border: 1px solid var(--line);
  transition: transform .24s ease, box-shadow .24s ease;
}

.steps span,
.steps strong,
.steps small {
  display: block;
}

.steps span {
  color: var(--red);
  font-size: 28px;
  font-weight: 900;
}

.steps strong {
  margin: 18px 0 8px;
  font-size: 22px;
}

.steps small {
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  height: min(56vw, 620px);
  min-height: 360px;
}

.gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform .42s ease, filter .32s ease;
}

.gallery img:hover {
  transform: scale(1.035);
  filter: var(--image-filter) brightness(1.05);
}

.visit {
  padding-top: clamp(58px, 8vw, 100px);
  padding-bottom: clamp(82px, 10vw, 120px);
}

.visit-body {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(360px, .95fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: stretch;
}

.visit-panel {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(32, 24, 21, .1);
}

.store-photo {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(32, 24, 21, .12);
  background: var(--shell);
  transition: transform .24s ease, box-shadow .24s ease;
}

.store-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(32, 24, 21, .15);
}

.store-photo img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.store-card {
  position: relative;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  transition: transform .22s ease;
}

.store-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.store-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.visit-panel .btn {
  font-weight: 800;
}

.full {
  width: 100%;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.footer div {
  display: grid;
  gap: 6px;
}

.footer span {
  color: rgba(255, 255, 255, .65);
}

.footer-icp {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.mobile-bar {
  display: none;
}

.season-switcher {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 28;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
  padding: 8px;
  background: rgba(255, 250, 240, .9);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.season-switcher button {
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  border: 0;
  outline: none;
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  background: transparent;
  cursor: pointer;
  transition: transform .2s ease, background-color .24s ease, color .24s ease;
}

.season-switcher button:focus,
.season-switcher button:focus-visible,
.season-switcher button:active {
  outline: none;
  box-shadow: none;
}

.season-switcher button:hover {
  transform: translateY(-2px);
}

.season-switcher button.is-clicking {
  transform: scale(.88);
}

.season-switcher button.active {
  color: #fff;
  background: var(--red);
  box-shadow: 0 8px 20px rgba(32, 24, 21, .16);
  animation: season-pop .36s ease;
}

.season-switcher button.active:focus,
.season-switcher button.active:focus-visible {
  box-shadow: 0 8px 20px rgba(32, 24, 21, .16);
}

@keyframes season-pop {
  0% { transform: scale(.86); }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 67px;
    left: 12px;
    right: 12px;
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: 8px;
    background: rgba(22, 15, 12, .92);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 4px;
    text-align: center;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-bg {
    object-position: 54% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, var(--hero-soft), var(--hero-tint));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 236px;
  }

  h1 {
    max-width: 6em;
    font-size: clamp(62px, 18vw, 86px);
    line-height: .9;
  }

  h1 span {
    display: block;
    width: max-content;
    max-width: 100%;
  }

  h1 span:first-child::after {
    left: 2px;
    right: 8px;
    bottom: 2px;
    height: .2em;
  }

  .hero-copy {
    max-width: 32em;
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-card {
    left: 16px;
    right: 16px;
    bottom: 76px;
    width: auto;
  }

  .dish-grid,
  .craft,
  .visit,
  .visit-head,
  .visit-body,
  .gallery {
    grid-template-columns: 1fr;
  }

  .dish-card.feature img,
  .dish-card img {
    height: 240px;
  }

  .menu-row {
    grid-template-columns: 38px 1fr;
  }

  .menu-row b {
    grid-column: 2;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    height: auto;
  }

  .gallery img {
    height: 280px;
  }

  .visit-head h2 {
    max-width: 100%;
  }

  .visit-highlights {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .visit-highlights span {
    display: block;
    min-height: 96px;
    padding: 14px 12px;
    font-size: 13px;
  }

  .visit-highlights strong {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
  }

  .store-photo,
  .store-photo img {
    min-height: 360px;
  }

  .footer {
    display: block;
    padding-bottom: 88px;
  }

  .footer span {
    display: block;
    margin-top: 8px;
  }

  .mobile-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: var(--shadow);
    padding: 4px;
  }

  .mobile-bar a {
    min-height: 46px;
    padding: 12px 4px;
    text-align: center;
    font-weight: 800;
    border-radius: 999px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }

  .mobile-bar a:focus,
  .mobile-bar a:focus-visible,
  .season-switcher button:focus,
  .season-switcher button:focus-visible {
    outline: none;
  }

  .mobile-bar a.active {
    color: #fff;
    background: var(--red);
    box-shadow: 0 8px 18px rgba(32, 24, 21, .14);
  }

  .season-switcher {
    top: auto;
    right: 12px;
    left: 12px;
    bottom: 72px;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    transform: none;
    border-radius: 999px;
  }

  .season-switcher button {
    width: auto;
    height: 38px;
  }
}

@media (max-width: 460px) {
  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(56px, 19vw, 72px);
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions .btn {
    flex: 1 1 132px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .visit-panel div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .visit {
    padding-bottom: 116px;
  }

  .visit-highlights {
    grid-template-columns: 1fr;
  }

  .visit-highlights span {
    min-height: 0;
  }
}
