:root {
  --wine: #3c090f;
  --red: #e4002b;
  --coffee: #6b4a32;
  --tomato: #ff4b18;
  --ink: #1f1b1c;
  --muted: #7e7375;
  --line: #e8e2dd;
  --paper: #fffdf8;
  --soft: #f7f2ec;
  --teal: #1e6572;
  --navy: #062238;
  --banner-content-width: 1280px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at calc(50% + (var(--mouse-x, 0) * 34%)) calc(24% + (var(--mouse-y, 0) * 24%)), rgba(228, 0, 43, .06), transparent 32vw),
    linear-gradient(rgba(255, 253, 248, .94), rgba(255, 253, 248, .96)),
    url("../img/bg-soft-paper.webp") center / cover fixed;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-position .2s ease-out;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

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

a,
button,
[role="button"],
.brand,
.nav-item,
.mega-menu-grid article:hover,
.mosaic-tile:hover,
.feature-card:hover,
.room-card:hover,
.service-card:hover,
.daily-card:hover,
.news-card:hover,
.benefit-grid article:hover,
.mini-dish:hover,
.dish-card:hover,
.banquet-photo-grid article:hover,
.split-section > img:hover,
.about-carousel:hover,
.zone-group:hover,
.zone-card:hover,
.banquet-card:hover,
.reservation-search-form label:hover,
.reservation-addon-options label:hover,
.contact-action-card:hover,
.contact-info-panel article:hover,
.contact-map-card:hover {
  cursor: pointer;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 44px auto 1fr minmax(220px, 360px);
  align-items: center;
  gap: 24px;
  min-height: 96px;
  padding: 0 max(44px, calc((100% - var(--banner-content-width)) / 2));
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(32, 22, 18, .05);
  backdrop-filter: blur(18px);
  transition: box-shadow .28s ease, background-color .28s ease;
}

.hamburger {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: grid;
  align-content: center;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 28px;
  background: var(--ink);
  transform-origin: center;
  transition: transform .24s ease, opacity .2s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 260px;
}

.brand-logo {
  display: block;
  width: 260px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  transition: transform .25s ease;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  border: 4px solid var(--red);
  box-shadow: 0 0 0 0 rgba(228, 0, 43, .24);
  transition: transform .28s ease, box-shadow .28s ease;
}

.brand-mark.large {
  width: 92px;
  height: 92px;
  margin: 0 auto;
}

.brand-text {
  color: var(--wine);
  font-size: 25px;
  font-weight: 800;
  transition: color .25s ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 3.2vw, 56px);
  font-weight: 650;
}

.nav-item {
  display: flex;
  align-items: center;
}

.main-nav a {
  position: relative;
  padding: 36px 0 30px;
  white-space: nowrap;
  font-size: 15px;
  letter-spacing: .01em;
  transition: color .2s ease, transform .2s ease;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 4px;
  border-radius: 6px;
  background: var(--coffee);
  animation: navLine .24s ease both;
}

.main-nav a.active {
  color: var(--coffee);
}

.main-nav a:hover {
  color: var(--coffee);
  transform: translateY(-1px);
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 19;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 920px);
  gap: 30px;
  padding: 24px max(44px, calc((100vw - var(--banner-content-width)) / 2)) 28px;
  background:
    linear-gradient(135deg, rgba(107, 74, 50, .05), rgba(255, 255, 255, 0) 48%),
    rgba(255, 255, 255, .98);
  border-top: 1px solid rgba(232, 226, 221, .72);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 26px 46px rgba(32, 22, 18, .1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu-links {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(232, 226, 221, .88);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
}

.mega-menu-links strong,
.mega-menu-main h3 {
  margin: 0;
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
}

.mega-menu-links p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.mega-menu-links span {
  display: inline-grid;
  place-items: center;
  justify-self: start;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(107, 74, 50, .16);
  border-radius: 999px;
  background: #fff;
  color: var(--coffee);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.mega-menu-main {
  min-width: 0;
}

.mega-menu-main h3 {
  margin-bottom: 14px;
  letter-spacing: 0;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mega-menu-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 118px;
  padding: 12px;
  border: 1px solid rgba(232, 226, 221, .88);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(46, 28, 18, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.mega-menu-grid article:hover {
  border-color: rgba(107, 74, 50, .24);
  box-shadow: 0 16px 34px rgba(46, 28, 18, .09);
  transform: translateY(-2px);
}

.mega-menu-grid img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 6px;
}

.mega-menu-grid span {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--coffee);
  font-size: 12px;
  font-weight: 800;
}

.mega-menu-grid h4 {
  margin: 0 0 5px;
  color: var(--wine);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.mega-menu-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.site-search {
  display: flex;
  align-items: center;
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(32, 22, 18, .12);
  transition: box-shadow .24s ease, transform .24s ease;
}

.site-search:focus-within {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(60, 9, 15, .15);
}

.site-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
}

.site-search button {
  width: 28px;
  height: 28px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.site-search button::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -5px;
  width: 12px;
  height: 3px;
  transform: rotate(-45deg);
  background: var(--ink);
}

.flash {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 12px 18px;
  border: 1px solid #ffd5c8;
  border-radius: 8px;
  background: #fff4ee;
  color: var(--wine);
  font-weight: 700;
}

.flash.inline {
  margin: 0 0 18px;
}

.search-page {
  width: min(100% - 44px, 1180px);
  margin: 46px auto 70px;
}

.search-hero-panel {
  display: grid;
  gap: 12px;
  padding: 34px;
  border: 1px solid rgba(107, 74, 50, .14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(107, 74, 50, .1), rgba(255, 255, 255, 0) 48%),
    rgba(255, 255, 255, .92);
  box-shadow: 0 18px 42px rgba(46, 28, 18, .06);
}

.search-hero-panel span,
.search-result-head span {
  color: var(--coffee);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.search-hero-panel h1 {
  margin: 0;
  color: var(--wine);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

.search-hero-panel p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.search-page-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 8px;
}

.search-page-form input {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  outline: 0;
}

.search-page-form input:focus {
  border-color: rgba(107, 74, 50, .42);
  box-shadow: 0 0 0 4px rgba(107, 74, 50, .08);
}

.search-page-form button {
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  background: var(--coffee);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.search-result-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin: 30px 0 16px;
}

.search-result-head strong {
  color: var(--wine);
  font-size: 22px;
}

.search-result-grid {
  display: grid;
  gap: 14px;
}

.search-result-card {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 28px rgba(46, 28, 18, .045);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.search-result-card:hover {
  border-color: rgba(107, 74, 50, .28);
  box-shadow: 0 18px 38px rgba(46, 28, 18, .08);
  transform: translateY(-2px);
}

.search-result-image {
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 116px;
  border-radius: 8px;
  background: rgba(107, 74, 50, .1);
}

.search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-image span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--coffee);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.search-result-card small {
  color: var(--coffee);
  font-weight: 900;
}

.search-result-card h2 {
  margin: 6px 0 8px;
  color: var(--wine);
  font-size: 24px;
  line-height: 1.25;
}

.search-result-card p,
.search-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.search-empty {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 26px;
  border: 1px dashed rgba(107, 74, 50, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.search-empty strong {
  color: var(--wine);
  font-size: 22px;
}

.search-empty .primary-btn {
  width: fit-content;
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, .18);
}

.hero::after,
.page-atmosphere::after,
.page-hero.compact::after,
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at calc(50% + (var(--mouse-x, 0) * 26%)) calc(42% + (var(--mouse-y, 0) * 20%)), rgba(255, 255, 255, .12), transparent 34vw);
  opacity: .72;
  transition: opacity .24s ease;
}

.hero,
.page-atmosphere,
.page-hero.compact,
.contact-hero {
  position: relative;
}

.hero-content,
.page-atmosphere > div,
.page-hero.compact > div,
.contact-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero.compact > div,
.contact-hero > * {
  max-width: var(--banner-content-width);
}

.hero-content {
  width: min(var(--banner-content-width), calc(100% - 80px));
  margin-inline: auto;
  transform: translate3d(calc(var(--mouse-x, 0) * -10px), calc(var(--mouse-y, 0) * -8px), 0);
  transition: transform .18s ease-out;
}

.kicker {
  margin: 0 0 14px;
  font-weight: 900;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1,
.page-atmosphere h1,
.contact-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.12;
  font-weight: 900;
}

.hero-title span {
  display: block;
}

.hero p {
  max-width: 760px;
  margin: 22px 0 32px;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.72;
}

.hero-booking {
  display: grid;
  grid-template-columns: repeat(4, minmax(135px, 1fr)) 160px;
  width: min(1040px, 100%);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
}

.hero-booking label {
  display: grid;
  gap: 4px;
  padding: 17px 22px;
  color: var(--ink);
  border-right: 1px solid var(--line);
}

.hero-booking span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-booking strong {
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.25;
}

.hero-booking .booking-choice {
  position: relative;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.hero-booking .booking-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hero-booking .booking-choice:has(input:checked) {
  background: #f5eee8;
}

.hero-booking .booking-choice:has(input:checked) strong {
  color: var(--coffee);
}

.hero-booking button,
.primary-btn,
.wide-btn {
  border: 0;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.wide-btn,
.primary-btn {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
}

.hero-booking button:hover,
.primary-btn:hover,
.wide-btn:hover {
  background: #f11839;
  box-shadow: 0 14px 26px rgba(228, 0, 43, .22);
  transform: translateY(-2px);
}

.hero-booking button:active,
.primary-btn:active,
.wide-btn:active,
.plus-btn:active {
  transform: translateY(0) scale(.98);
}

.mosaic-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr 1fr;
  min-height: 390px;
}

.mosaic-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-tile {
  display: grid;
  place-items: center;
  min-height: 250px;
  font-weight: 900;
  font-size: 26px;
  color: #fff;
  transition: transform .28s ease, filter .28s ease;
}

.mosaic-tile:hover {
  transform: scale(1.02);
  filter: brightness(1.04);
}

.mosaic-tile.accent {
  background: var(--tomato);
}

.mosaic-tile.dark {
  background: var(--navy);
}

.mosaic-tile.light {
  color: var(--ink);
  background: #f4f2ef;
}

.content-band,
.daily-section,
.about-overview,
.about-zones,
.booking-page,
.member-page,
.news-page,
.shop-layout,
.split-section,
.contact-grid {
  width: min(1280px, calc(100% - 48px));
  margin: 72px auto;
}

.section-title {
  margin-bottom: 34px;
}

.section-title > span {
  color: var(--red);
  font-weight: 900;
}

.section-title h2 {
  margin: 6px 0 10px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
}

.section-title h2.title-break-lines span {
  display: block;
  color: inherit;
  font-weight: inherit;
}

.section-title p {
  max-width: none;
  color: var(--muted);
  font-size: 17px;
  white-space: nowrap;
}

.feature-grid,
.room-grid,
.service-grid,
.daily-grid,
.news-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.feature-card,
.room-card,
.service-card,
.daily-card,
.news-card,
.benefit-grid article,
.admin-form,
.admin-section,
.login-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
  overflow: hidden;
}

.feature-card img,
.room-card img,
.service-card img,
.daily-card img,
.news-card img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  transition: transform .42s ease, filter .42s ease;
  will-change: transform;
}

.feature-card div,
.room-card div,
.service-card div,
.daily-card div,
.news-card div,
.benefit-grid article {
  padding: 24px;
}

.feature-card:hover,
.room-card:hover,
.service-card:hover,
.daily-card:hover,
.news-card:hover,
.benefit-grid article:hover,
.mini-dish:hover,
.dish-card:hover {
  border-color: rgba(228, 0, 43, .24);
  box-shadow: 0 18px 42px rgba(60, 9, 15, .11);
  transform: translateY(-6px);
}

.feature-card img,
.room-card img,
.service-card img,
.daily-card img,
.news-card img,
.dish-card img,
.split-section > img {
  transition: transform .42s ease, filter .42s ease;
  will-change: transform;
}

.feature-card:hover img,
.room-card:hover img,
.service-card:hover img,
.daily-card:hover img,
.news-card:hover img,
.dish-card:hover img,
.split-section > img:hover {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.04);
}

.is-visible.feature-card img,
.is-visible.room-card img,
.is-visible.service-card img,
.is-visible.daily-card img,
.is-visible.news-card img,
.is-visible.dish-card img,
.split-section > img.is-visible,
.mosaic-section img.is-visible {
  transform: translate3d(calc(var(--mouse-x, 0) * 5px), calc(var(--mouse-y, 0) * 4px), 0);
}

.is-visible.feature-card:hover img,
.is-visible.room-card:hover img,
.is-visible.service-card:hover img,
.is-visible.daily-card:hover img,
.is-visible.news-card:hover img,
.is-visible.dish-card:hover img,
.split-section > img.is-visible:hover {
  transform: translate3d(calc(var(--mouse-x, 0) * 5px), calc(var(--mouse-y, 0) * 4px), 0) scale(1.04);
}

.feature-card h3,
.room-card h3,
.service-card h3,
.daily-card h3,
.news-card h3,
.benefit-grid h3 {
  margin: 0 0 10px;
  color: var(--wine);
  font-size: 24px;
}

.feature-card {
  position: relative;
}

.feature-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: var(--coffee);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
}

.feature-card img {
  transition: transform .24s cubic-bezier(.2, .8, .2, 1), filter .24s ease;
}

.feature-card h3,
.feature-card p,
.feature-card strong,
.feature-keywords span {
  transition: color .2s ease, transform .2s ease;
}

.feature-keywords {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 0;
  margin-top: 18px;
  overflow: hidden;
  white-space: nowrap;
}

.feature-keywords span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(107, 74, 50, .18);
  border-radius: 999px;
  background: rgba(255, 253, 248, .9);
  color: var(--coffee);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feature-card:hover {
  border-color: rgba(107, 74, 50, .34);
  box-shadow: 0 20px 46px rgba(55, 34, 22, .15);
  transform: translateY(-7px);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card:hover h3 {
  color: var(--coffee);
  transform: translateY(-1px);
}

.feature-card:hover strong {
  color: var(--coffee);
}

.feature-card:hover .feature-keywords span {
  border-color: rgba(107, 74, 50, .32);
  background: rgba(107, 74, 50, .08);
  transform: translateY(-1px);
}

.feature-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.07);
}

.is-visible.feature-card:hover img {
  transform: translate3d(calc(var(--mouse-x, 0) * 5px), calc(var(--mouse-y, 0) * 4px), 0) scale(1.07);
}

.daily-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.daily-card {
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, .94);
}

.daily-card-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 1.48;
  background: #f3eee8;
}

.daily-card-media img,
.daily-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.daily-card-media video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .22s ease, transform .32s ease, filter .32s ease;
  pointer-events: none;
}

.daily-card:hover .daily-card-media video,
.daily-card:focus-within .daily-card-media video {
  opacity: 1;
  transform: scale(1.04);
}

.daily-video-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(35, 21, 14, .72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.daily-card div {
  padding: 30px 28px 32px;
}

.daily-card h3 {
  margin-bottom: 12px;
  color: var(--coffee);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 650;
  line-height: 1.18;
}

.daily-card p {
  max-width: 330px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.daily-card time {
  display: block;
  margin: 18px 0 22px;
  color: #9a8d86;
  font-size: 14px;
  letter-spacing: 0;
}

.daily-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 40px;
  padding: 0 22px;
  color: #fff;
  background: var(--coffee);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 650;
  transition: transform .24s ease, box-shadow .24s ease, background-color .24s ease;
}

.daily-card a:hover {
  background: var(--wine);
  box-shadow: 0 10px 24px rgba(107, 74, 50, .22);
  transform: translateY(-2px);
}

.daily-detail-page {
  width: min(1180px, calc(100% - 64px));
  margin: 76px auto 96px;
}

.daily-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 48px;
}

.daily-detail-article {
  display: grid;
  gap: 22px;
}

.daily-detail-meta {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 14px;
  flex-wrap: wrap;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(107, 74, 50, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  color: #8b7f79;
  font-size: 12px;
  font-weight: 650;
  box-shadow: 0 10px 24px rgba(46, 28, 18, .04);
}

.daily-detail-meta span,
.daily-detail-meta time {
  position: relative;
}

.daily-detail-meta span + span::before,
.daily-detail-meta time::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c2b6ae;
  transform: translateY(-50%);
}

.daily-detail-article h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0;
}

.daily-detail-lead {
  max-width: 760px;
  margin: 0;
  color: #4c4542;
  font-size: 18px;
  line-height: 1.8;
}

.daily-detail-keywords {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.daily-detail-keywords span {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--coffee);
  font-size: 14px;
  font-weight: 650;
}

.daily-detail-cover {
  width: min(760px, 76%);
  margin: 50px auto 20px;
}

.daily-detail-cover img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(46, 28, 18, .12);
}

.daily-detail-content {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(107, 74, 50, .12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(107, 74, 50, .08), rgba(255, 255, 255, 0) 42%),
    rgba(255, 255, 255, .76);
  box-shadow: 0 18px 42px rgba(46, 28, 18, .055);
}

.daily-detail-content aside {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 100%;
  padding: 14px;
  border-radius: 6px;
  background: rgba(107, 74, 50, .08);
  color: var(--coffee);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
}

.daily-detail-content aside::after {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: var(--coffee);
}

.daily-detail-content p {
  max-width: 820px;
  margin: 0 0 18px;
  color: #312b29;
  font-size: 19px;
  line-height: 1.95;
}

.daily-detail-back {
  width: fit-content;
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--coffee);
  font-weight: 700;
  transition: border-color .22s ease, background-color .22s ease, color .22s ease;
}

.daily-detail-back:hover {
  border-color: var(--coffee);
  background: var(--coffee);
  color: #fff;
}

.daily-recommend-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(99, 66, 45, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 20px 50px rgba(46, 28, 18, .08);
}

.daily-recommend-head {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.daily-recommend-head span {
  color: var(--coffee);
  font-size: 13px;
  letter-spacing: .12em;
}

.daily-recommend-head strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.daily-recommend-list {
  display: grid;
  gap: 14px;
}

.daily-recommend-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: inherit;
  cursor: pointer;
}

.daily-recommend-item img {
  width: 92px;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(.92);
}

.daily-recommend-item span {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.daily-recommend-item time {
  color: #9a908b;
  font-size: 12px;
}

.daily-recommend-item strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .2s ease;
}

.daily-recommend-item em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.daily-recommend-item:hover strong {
  color: var(--coffee);
}

.page-hero.compact {
  min-height: 430px;
  display: flex;
  align-items: center;
  padding-inline: max(24px, calc((100% - var(--banner-content-width)) / 2));
  color: #fff;
  background-size: cover;
  background-position: center;
}

.about-atmosphere {
  position: relative;
  overflow: hidden;
  background-position: center 48%;
}

.about-atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 9, 8, .54), rgba(18, 9, 8, .34)),
    rgba(24, 16, 12, .24);
  backdrop-filter: saturate(.72) brightness(.78);
}

.page-atmosphere {
  min-height: 470px;
  display: flex;
  align-items: center;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.dining-atmosphere {
  overflow: hidden;
  background-position: center 46%;
  background-size: 108%;
  animation: diningBannerMood 16s ease-in-out infinite alternate;
}

.dining-atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 9, 8, .48), rgba(18, 9, 8, .26)),
    rgba(0, 0, 0, .18);
}

.member-atmosphere {
  overflow: hidden;
  background-position: center 52%;
}

.member-atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 9, 8, .62), rgba(18, 9, 8, .34)),
    rgba(0, 0, 0, .22);
}

.news-atmosphere {
  overflow: hidden;
  background-position: center 46%;
}

.news-atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 9, 8, .66), rgba(18, 9, 8, .38)),
    rgba(0, 0, 0, .24);
}

.page-atmosphere > div {
  width: min(var(--banner-content-width), calc(100% - 64px));
  margin-inline: auto;
}

.page-atmosphere p:not(.kicker) {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 19px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.split-section > img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.stats span {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
}

.stats strong {
  display: block;
  font-family: "Arial", "Helvetica Neue", "Segoe UI", sans-serif;
  font-variant-numeric: tabular-nums;
  color: var(--red);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.08;
}

.about-overview {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.about-copy .section-title {
  margin-bottom: 26px;
}

.about-carousel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(46, 28, 18, .12);
}

.about-carousel-track,
.about-carousel figure {
  position: absolute;
  inset: 0;
}

.about-carousel figure {
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .7s ease, transform 1.1s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}

.about-carousel figure.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.about-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}

.about-carousel:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: translate3d(calc(var(--mouse-x, 0) * 8px), calc(var(--mouse-y, 0) * 6px), 0) scale(1.035);
}

.about-carousel figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 8px;
  max-width: 480px;
  padding: 22px 24px;
  border-left: 4px solid var(--coffee);
  border-radius: 8px;
  color: #fff;
  background: rgba(35, 21, 14, .72);
  backdrop-filter: blur(14px);
}

.about-carousel figcaption strong {
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.15;
}

.about-carousel figcaption span {
  color: rgba(255, 255, 255, .84);
}

.about-carousel-dots {
  position: absolute;
  right: 24px;
  bottom: 28px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.about-carousel-dots button {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .52);
  cursor: pointer;
  transition: width .22s ease, background-color .22s ease;
}

.about-carousel-dots button.active,
.about-carousel-dots button:hover {
  width: 42px;
  background: var(--coffee);
}

.about-zones {
  margin-top: 34px;
}

.zone-groups {
  display: grid;
  gap: 22px;
}

.zone-group {
  display: grid;
  grid-template-columns: minmax(260px, .3fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.zone-group:hover {
  border-color: rgba(107, 74, 50, .28);
  box-shadow: 0 18px 42px rgba(46, 28, 18, .08);
  transform: translateY(-3px);
}

.zone-group-head {
  display: grid;
  align-content: start;
  gap: 0;
  overflow: hidden;
  max-width: 320px;
  border: 1px solid rgba(232, 226, 221, .86);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(46, 28, 18, .06);
}

.zone-group-cover {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 176px;
  padding: 16px;
  background-size: cover;
  background-position: center;
}

.zone-group-cover span,
.zone-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--coffee);
  font-weight: 700;
}

.zone-cover-text {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  width: 100%;
}

.zone-group-cover span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.zone-group-copy {
  display: grid;
  gap: 10px;
  padding: 14px 16px 16px;
}

.zone-group-head h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
  text-shadow: 0 8px 22px rgba(0, 0, 0, .28);
}

.zone-group-head small {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .13);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.zone-group-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.zone-group-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zone-group-tags em {
  display: inline-grid;
  place-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(107, 74, 50, .16);
  border-radius: 999px;
  background: #fff;
  color: var(--coffee);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.zone-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px 16px;
  align-content: start;
}

.zone-card {
  display: flex;
  gap: 12px;
  min-height: 108px;
  padding: 17px 18px;
  border: 1px solid rgba(232, 226, 221, .9);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.zone-card:hover {
  border-color: rgba(107, 74, 50, .32);
  box-shadow: 0 14px 30px rgba(46, 28, 18, .08);
  transform: translateY(-3px);
}

.zone-card:focus-visible {
  outline: 3px solid rgba(107, 74, 50, .22);
  outline-offset: 2px;
}

.zone-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  font-size: 15px;
}

.zone-card h4 {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
  margin: 0 0 8px;
  color: var(--wine);
  font-size: 18px;
  line-height: 1.25;
}

.zone-card h4 small {
  color: var(--coffee);
  font-size: 11px;
  font-weight: 600;
}

.zone-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.zone-modal {
  position: fixed;
  inset: 0;
  z-index: 66;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s ease;
}

.zone-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.zone-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 12, 15, .58);
  backdrop-filter: blur(10px);
}

.zone-modal-panel {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  display: grid;
  gap: 16px;
  padding: 38px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
  animation: modalPanelIn .34s cubic-bezier(.2, .8, .2, 1) both;
}

.zone-modal-category {
  width: fit-content;
  min-height: 30px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(107, 74, 50, .1);
  color: var(--coffee);
  font-size: 13px;
  font-weight: 800;
}

.zone-modal-panel h2 {
  margin: 0;
  color: var(--wine);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.zone-modal-panel strong {
  color: var(--coffee);
  font-size: 18px;
}

.zone-modal-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.zone-modal-actions,
.zone-detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.zone-detail-page {
  width: min(1080px, calc(100% - 64px));
  margin: 76px auto 96px;
}

.zone-detail-article {
  display: grid;
  gap: 24px;
}

.zone-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--coffee);
  font-size: 14px;
  font-weight: 800;
}

.zone-detail-meta strong {
  min-height: 30px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid rgba(107, 74, 50, .18);
  border-radius: 999px;
  background: #fff;
}

.zone-detail-article h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.1;
}

.zone-detail-lead {
  max-width: 760px;
  margin: 0;
  color: #4c4542;
  font-size: 18px;
  line-height: 1.8;
}

.zone-detail-content {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 36px;
  margin-top: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.zone-detail-content aside {
  color: var(--muted);
  font-size: 15px;
}

.zone-detail-content p {
  max-width: 820px;
  margin: 0 0 18px;
  color: #312b29;
  font-size: 19px;
  line-height: 1.95;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  isolation: isolate;
}

.shop-main {
  min-width: 0;
}

.dining-order-panel form {
  display: grid;
  gap: 15px;
}

.dining-order-panel {
  overflow: hidden;
  padding: 24px;
  border-color: rgba(107, 74, 50, .16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 251, 245, .94)),
    #fff;
  box-shadow: 0 24px 60px rgba(46, 28, 18, .1);
}

.dining-order-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(107, 74, 50, .58), transparent);
}

.dining-order-panel.order-updated {
  animation: orderPanelGlow .52s ease both;
}

.dining-order-alert {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  padding: 24px 24px 26px;
  border: 1px solid rgba(107, 74, 50, .16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 16%, rgba(107, 74, 50, .12), transparent 25%),
    linear-gradient(135deg, #fffaf4 0%, #fff 56%, rgba(202, 177, 137, .16) 100%);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88), 0 16px 34px rgba(46, 28, 18, .07);
}

.dining-order-alert::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 152px;
  height: 152px;
  border: 1px solid rgba(107, 74, 50, .12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 74, 50, .08), rgba(107, 74, 50, .03) 58%, transparent 60%);
}

.dining-order-alert span {
  position: relative;
  z-index: 1;
  color: var(--coffee);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.dining-order-alert strong {
  position: relative;
  z-index: 1;
  color: var(--wine);
  font-size: 32px;
  line-height: 1.15;
}

.dining-order-alert p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #6f6460;
  line-height: 1.65;
}

.current-order-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.current-order-head span {
  color: var(--wine);
  font-size: 19px;
  font-weight: 900;
}

.current-order-head strong {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(107, 74, 50, .09);
  color: var(--coffee);
  font-size: 12px;
}

.current-order-list {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(107, 74, 50, .16);
  border-radius: 8px;
  background: rgba(255, 253, 248, .7);
}

.current-order-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(107, 74, 50, .12);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #fff9f1);
  box-shadow: 0 12px 24px rgba(46, 28, 18, .05);
}

.current-order-list span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.current-order-list small {
  color: var(--muted);
}

.current-order-list strong {
  grid-row: span 2;
  color: var(--coffee);
  font-size: 18px;
}

.current-order-list button {
  justify-self: end;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(107, 74, 50, .18);
  border-radius: 999px;
  background: #fff;
  color: var(--coffee);
  font-size: 12px;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.current-order-list button:hover {
  border-color: var(--coffee);
  background: var(--coffee);
  color: #fff;
  transform: translateY(-1px);
}

.current-order-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.dining-order-panel .primary-btn:disabled {
  cursor: not-allowed;
  opacity: .52;
  transform: none;
}

.dining-order-panel p {
  margin: -4px 0 4px;
  color: var(--muted);
  line-height: 1.7;
}

.dining-order-form-title {
  padding: 18px 0 4px;
  border-top: 1px solid rgba(107, 74, 50, .14);
}

.dining-order-form-title h2 {
  margin: 0 0 6px;
  color: var(--wine);
  font-size: 27px;
  line-height: 1.18;
}

.dining-order-form-title p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.dining-order-panel label {
  font-size: 14px;
}

.dining-order-panel input,
.dining-order-panel select,
.dining-order-panel textarea {
  border-color: rgba(107, 74, 50, .16);
  background: rgba(255, 255, 255, .92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
}

.dining-order-panel input:hover,
.dining-order-panel select:hover,
.dining-order-panel textarea:hover {
  border-color: rgba(107, 74, 50, .32);
}

.dining-order-panel input:focus,
.dining-order-panel select:focus,
.dining-order-panel textarea:focus {
  border-color: rgba(107, 74, 50, .58);
  box-shadow: 0 0 0 4px rgba(107, 74, 50, .1);
}

.dining-order-panel .primary-btn {
  min-height: 54px;
  box-shadow: 0 18px 34px rgba(60, 9, 15, .14);
}

.dining-order-panel .basket-total {
  margin-top: 2px;
  padding: 15px 0;
  border-color: rgba(107, 74, 50, .14);
  color: var(--wine);
}

.banquet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 30px;
}

.banquet-shop-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin: -2px 0 20px;
  padding: 18px 20px;
  border: 1px solid rgba(107, 74, 50, .12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .86), rgba(255, 250, 244, .72)),
    rgba(255, 255, 255, .58);
  box-shadow: 0 14px 32px rgba(46, 28, 18, .05);
}

.banquet-shop-head span {
  display: block;
  margin-bottom: 6px;
  color: var(--coffee);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.banquet-shop-head strong {
  display: block;
  color: var(--wine);
  font-size: 24px;
  line-height: 1.28;
}

.banquet-shop-head p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.banquet-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 240px;
  padding: 22px;
  border: 1px solid rgba(107, 74, 50, .14);
  border-radius: 8px;
  background:
    linear-gradient(138deg, rgba(255, 255, 255, .98), rgba(255, 250, 244, .94) 52%, rgba(255, 255, 255, .98)),
    #fff;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92), 0 12px 26px rgba(46, 28, 18, .045);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background-color .24s ease;
}

.banquet-card::before {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -72px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 74, 50, .13), rgba(107, 74, 50, .055) 58%, transparent 60%);
  transition: width .24s ease, height .24s ease, right .24s ease, bottom .24s ease, opacity .24s ease, transform .24s ease;
}

.banquet-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 0 rgba(107, 74, 50, 0);
  pointer-events: none;
  transition: box-shadow .24s ease;
}

.banquet-card:hover,
.banquet-card.active {
  border-color: rgba(107, 74, 50, .36);
  box-shadow: 0 24px 54px rgba(60, 9, 15, .12);
  transform: translateY(-5px);
}

.banquet-card:hover::before,
.banquet-card.active::before {
  right: -72px;
  bottom: -88px;
  width: 248px;
  height: 248px;
  opacity: .95;
  transform: scale(1.02);
}

.banquet-card.active::after {
  box-shadow: inset 0 -4px 0 var(--coffee), inset 0 0 0 1px rgba(107, 74, 50, .08);
}

.banquet-card-top,
.banquet-card-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.banquet-card-top span,
.banquet-modal-copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.banquet-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.banquet-detail-btn {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(107, 74, 50, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--coffee);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(46, 28, 18, .045);
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.banquet-detail-btn:hover {
  border-color: var(--coffee);
  background: var(--coffee);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(107, 74, 50, .18);
}

.banquet-add-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: linear-gradient(145deg, #7a563b, #553820);
  color: #fff;
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(107, 74, 50, .25);
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.banquet-add-btn:hover {
  background: var(--red);
  transform: scale(1.08);
  box-shadow: 0 18px 34px rgba(228, 0, 43, .22);
}

.banquet-card.in-order .banquet-add-btn {
  background: var(--red);
  transform: rotate(45deg);
  box-shadow: 0 18px 34px rgba(228, 0, 43, .24);
}

.banquet-card.in-order .banquet-add-btn:hover {
  transform: rotate(45deg) scale(1.08);
}

.banquet-card h3 {
  position: relative;
  z-index: 1;
  margin: 13px 0 5px;
  color: var(--wine);
  font-size: 31px;
  line-height: 1.12;
  letter-spacing: 0;
  transition: color .2s ease, transform .2s ease;
}

.banquet-card:hover h3,
.banquet-card.active h3 {
  color: #4b1118;
  transform: translateX(2px);
}

.banquet-card p {
  position: relative;
  z-index: 1;
  margin: 15px 0 19px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.banquet-card strong {
  position: relative;
  z-index: 1;
  color: var(--coffee);
  font-size: 21px;
}

.banquet-card-meta {
  margin-top: auto;
  justify-content: flex-start;
}

.banquet-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(107, 74, 50, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  color: var(--coffee);
  font-size: 12px;
  font-weight: 700;
}

.banquet-card.just-added .banquet-add-btn {
  background: var(--red);
  animation: addPulse .54s ease both;
}

.banquet-dishes {
  padding-top: 10px;
}

.banquet-photo-section {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 42px rgba(46, 28, 18, .06);
}

.banquet-dishes-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.banquet-dishes-head h3 {
  margin: 0;
  color: var(--wine);
  font-size: 34px;
}

.banquet-dishes-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.banquet-photo-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.banquet-photo-grid article {
  position: relative;
  min-height: 108px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(46, 28, 18, .08);
}

.banquet-photo-grid article:first-child {
  grid-row: auto;
}

.banquet-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}

.banquet-photo-grid article:hover img {
  filter: saturate(1.06);
  transform: scale(1.055);
}

.banquet-photo-grid span {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 16px);
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--coffee);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(46, 28, 18, .12);
}

.banquet-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.banquet-category {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
}

.banquet-category h4 {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 0 0 16px;
  color: var(--coffee);
  font-size: 21px;
}

.banquet-category h4 small {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(107, 74, 50, .08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.banquet-dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.banquet-dish-grid article {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(60, 9, 15, .06);
}

.banquet-dish-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.banquet-dish-grid span {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.banquet-category.simple {
  padding: 24px 24px 8px;
  background: rgba(255, 255, 255, .68);
}

.banquet-simple-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 48px;
}

.banquet-simple-list article {
  min-height: 42px;
}

.banquet-simple-list strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.banquet-modal {
  position: fixed;
  inset: 0;
  z-index: 65;
  display: grid;
  place-items: center;
  padding: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.banquet-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.banquet-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 12, 15, .64);
  backdrop-filter: blur(10px);
}

.banquet-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1680px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow: hidden auto;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 251, 246, .96)),
    #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
  animation: modalPanelIn .34s cubic-bezier(.2, .8, .2, 1) both;
}

.banquet-modal-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px 30px 28px;
}

.banquet-modal-copy h2 {
  margin: 0;
  color: var(--wine);
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.05;
}

.banquet-modal-copy strong {
  color: var(--coffee);
  font-size: 22px;
}

.banquet-modal-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.banquet-modal-list {
  display: block;
  margin: 4px 0 0;
}

.banquet-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(420px, .68fr);
  gap: 18px;
  align-items: start;
}

.banquet-modal-menu,
.banquet-modal-gallery {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.banquet-modal-section-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.banquet-modal-section-head span {
  color: var(--coffee);
  font-size: 13px;
  letter-spacing: .12em;
}

.banquet-modal-section-head strong {
  color: var(--ink);
  font-size: 18px;
}

.banquet-modal-category {
  min-height: 0;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 12px 16px;
  align-items: start;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, .9);
  box-shadow: 0 10px 24px rgba(46, 28, 18, .045);
}

.banquet-modal-list h3 {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: var(--coffee);
  font-size: 18px;
  line-height: 1.25;
}

.banquet-modal-list h3 small {
  min-width: 48px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(107, 74, 50, .08);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
}

.banquet-modal-category ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.banquet-modal-category li {
  position: relative;
  padding-left: 14px;
  color: #332b27;
  font-size: 14px;
  line-height: 1.45;
}

.banquet-modal-category li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coffee);
}

.banquet-modal-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.banquet-modal-dish {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  align-items: start;
  min-height: 0;
  padding: 0;
  border-bottom: 0;
}

.banquet-modal-dish img {
  width: 100%;
  height: 104px;
  object-fit: cover;
  border-radius: 6px;
  background: #f7f1ea;
}

.banquet-modal-dish span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.banquet-modal-dish b {
  display: inline-grid;
  width: 100%;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: rgba(107, 74, 50, .08);
  color: var(--coffee);
  font-size: 14px;
}

.banquet-modal-empty {
  margin: 0;
  padding: 11px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.top-seller h3,
.block-heading {
  color: var(--wine);
  font-size: 24px;
}

.top-seller h3 span {
  display: inline-block;
  width: 12px;
  height: 20px;
  margin-right: 8px;
  background: var(--red);
  border-radius: 12px 12px 4px 4px;
  vertical-align: -3px;
}

.mini-grid,
.dish-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.mini-dish,
.dish-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  min-height: 116px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.dish-card {
  min-height: 210px;
  overflow: hidden;
}

.dish-copy span,
.news-card time {
  color: var(--muted);
  font-weight: 700;
}

.dish-copy h3,
.mini-dish h4 {
  margin: 6px 0;
  color: var(--wine);
  font-size: 21px;
}

.dish-card img {
  width: 230px;
  height: 168px;
  object-fit: cover;
  border-radius: 8px;
}

.plus-btn {
  align-self: center;
  width: 38px;
  height: 38px;
  border: 3px solid var(--red);
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.plus-btn:hover,
.plus-btn.is-added {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 20px rgba(228, 0, 43, .22);
  transform: scale(1.08);
}

.plus-btn.floating {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.basket {
  position: sticky;
  top: 118px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.basket h2 {
  margin: 0;
  color: var(--wine);
  font-size: 36px;
}

.basket label,
.booking-form label,
.contact-form label,
.member-panel label,
.admin-form label,
.login-card label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 14px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(228, 0, 43, .58);
  box-shadow: 0 0 0 4px rgba(228, 0, 43, .09);
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.basket-items {
  margin: 24px 0;
  border-top: 1px solid var(--line);
}

.basket-items div,
.basket-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.basket-total {
  font-size: 20px;
  font-weight: 900;
}

.booking-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: start;
}

.booking-form,
.contact-form,
.member-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.reservation-search-form {
  display: grid;
  gap: 10px;
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(23, 12, 15, .72), rgba(23, 12, 15, .34)),
    url("../img/bg-reservation-mood.webp") center / cover;
  box-shadow: 0 24px 70px rgba(46, 28, 18, .16);
}

.reservation-search-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 86px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.reservation-search-form label:focus-within,
.reservation-search-form label:hover {
  border-color: rgba(107, 74, 50, .36);
  box-shadow: 0 12px 28px rgba(46, 28, 18, .12);
  transform: translateY(-2px);
}

.reservation-search-form input,
.reservation-search-form select {
  min-height: 34px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--coffee);
  font-size: 22px;
  font-weight: 900;
}

.reservation-search-form input::placeholder {
  color: rgba(107, 74, 50, .55);
}

.reservation-search-form input:focus,
.reservation-search-form select:focus {
  box-shadow: none;
}

.reservation-search-main {
  min-height: 98px;
}

.reservation-search-main select {
  font-size: clamp(26px, 3vw, 34px);
}

.reservation-search-row {
  display: grid;
  gap: 10px;
}

.reservation-primary-row {
  grid-template-columns: minmax(260px, 1.3fr) minmax(130px, .45fr) minmax(130px, .45fr);
}

.reservation-contact-row {
  grid-template-columns: minmax(180px, .9fr) minmax(220px, 1fr) minmax(180px, .75fr) 170px;
}

.reservation-search-row button {
  min-height: 86px;
  border: 0;
  border-radius: 8px;
  background: var(--coffee);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  transition: background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.reservation-search-row button:hover {
  background: var(--wine);
  box-shadow: 0 16px 30px rgba(60, 9, 15, .22);
  transform: translateY(-2px);
}

.reservation-datetime > div {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(110px, .66fr);
  gap: 8px;
}

[data-date-picker],
.date-picker-field {
  cursor: pointer;
}

[data-date-picker] {
  caret-color: transparent;
}

.reservation-captcha {
  position: relative;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.reservation-captcha span {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(107, 74, 50, .18);
  border-radius: 999px;
  background: rgba(255, 253, 248, .94);
  color: var(--coffee);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
}

.reservation-captcha input {
  grid-column: 1 / -1;
}

.reservation-extra-panel {
  display: grid;
  grid-template-columns: minmax(180px, .8fr) repeat(3, minmax(190px, 1fr));
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
}

.modal-booking-form .reservation-extra-panel {
  grid-template-columns: 1fr;
  border-color: var(--line);
  background: rgba(248, 246, 243, .78);
}

.reservation-extra-panel > div:first-child {
  display: grid;
  align-content: center;
  gap: 4px;
}

.reservation-extra-panel span {
  color: var(--wine);
  font-size: 16px;
  font-weight: 900;
}

.reservation-extra-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.reservation-addon-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: center;
}

.reservation-search-form .reservation-addon-options label,
.modal-booking-form .reservation-addon-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(107, 74, 50, .16);
  border-radius: 999px;
  background: #fff;
  color: var(--coffee);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.reservation-search-form .reservation-addon-options label:hover,
.modal-booking-form .reservation-addon-options label:hover {
  border-color: rgba(107, 74, 50, .34);
  box-shadow: 0 10px 20px rgba(46, 28, 18, .08);
  transform: translateY(-1px);
}

.reservation-addon-options input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--coffee);
}

.reservation-addon-options small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.reservation-search-form .reservation-table-select,
.modal-booking-form .reservation-table-select {
  min-height: 56px;
  padding: 10px 14px;
}

.reservation-table-select select {
  font-size: 18px;
}

.reservation-addon-input {
  gap: 8px;
}

.addon-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.addon-title-row b {
  color: var(--ink);
  font-size: 16px;
}

.addon-control-row {
  display: grid;
  grid-template-columns: minmax(88px, .82fr) minmax(86px, 1fr);
  gap: 8px;
  align-items: center;
}

.addon-control-row input,
.addon-control-row select {
  min-height: 42px;
}

.reservation-addon-input input:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.reservation-table-select small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.reservation-related {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin: 36px 0 18px;
}

.reservation-related span {
  color: var(--coffee);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.reservation-related h3 {
  margin: 6px 0 0;
  color: var(--wine);
  font-size: 30px;
  line-height: 1.2;
}

.reservation-related p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.reservation-service-grid {
  margin-top: 0;
}

.member-panel form .primary-btn {
  margin-top: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.calendar-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.calendar-card h3 {
  margin: 0 0 22px;
  text-align: center;
  font-size: 28px;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar b,
.calendar span {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: 6px;
}

.calendar b {
  color: var(--muted);
}

.calendar span {
  border: 1px solid var(--line);
  font-weight: 700;
}

.calendar .muted {
  color: #bcb5b1;
  border-color: transparent;
}

.calendar .selected {
  color: #fff;
  border-color: var(--tomato);
  background: var(--tomato);
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 12, 15, .62);
  backdrop-filter: blur(10px);
}

.booking-modal-panel {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: min(86vh, 820px);
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  overflow: hidden auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
  transform: translateY(22px) scale(.97);
}

.booking-modal.is-open .booking-modal-panel {
  animation: modalPanelIn .34s cubic-bezier(.2, .8, .2, 1) both;
}

.booking-modal-head {
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(rgba(60, 9, 15, .86), rgba(60, 9, 15, .78)),
    url("../img/bg-reservation-mood.webp") center / cover;
}

.booking-modal-head .kicker {
  margin-bottom: 18px;
}

.booking-modal-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.booking-modal-head p:not(.kicker) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
}

.modal-booking-form {
  border: 0;
  border-radius: 0;
}

.booking-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--wine);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .15);
  transition: transform .2s ease, background-color .2s ease;
}

.booking-modal-close:hover {
  background: #fff;
  transform: rotate(90deg);
}

body.modal-open {
  overflow: hidden;
}

.room-grid,
.service-grid {
  margin-top: 28px;
}

.member-page {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.member-panel .section-title {
  margin-bottom: 10px;
}

.member-tags-panel {
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(107, 74, 50, .08), rgba(255, 255, 255, 0) 44%),
    rgba(255, 255, 255, .9);
}

.member-tags-head span {
  color: var(--coffee);
  font-size: 13px;
  font-weight: 800;
}

.member-tags-head h3 {
  margin: 6px 0 8px;
  color: var(--wine);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.member-tags-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.member-benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.member-benefit-cards article {
  position: relative;
  overflow: hidden;
  min-height: 208px;
  padding: 22px;
  border: 1px solid rgba(107, 74, 50, .16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(255, 250, 243, .92)),
    #fff;
  box-shadow: 0 16px 34px rgba(46, 28, 18, .06);
}

.member-benefit-cards article::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(107, 74, 50, .16);
  border-radius: 50%;
  background: rgba(107, 74, 50, .08);
}

.member-benefit-cards article.vip {
  border-color: rgba(107, 74, 50, .3);
  background:
    linear-gradient(145deg, rgba(92, 54, 33, .96), rgba(49, 29, 22, .94)),
    var(--coffee);
  color: #fff;
}

.member-benefit-cards span {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(107, 74, 50, .1);
  color: var(--coffee);
  font-size: 12px;
  font-weight: 900;
}

.member-benefit-cards .vip span {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.member-benefit-cards h4 {
  margin: 18px 0 10px;
  color: var(--wine);
  font-size: 20px;
}

.member-benefit-cards .vip h4 {
  color: #fff;
}

.member-benefit-cards strong {
  display: block;
  max-width: none;
  color: var(--coffee);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
  white-space: nowrap;
}

.member-benefit-cards .vip strong {
  color: #fff4df;
}

.member-benefit-cards p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.member-benefit-cards .vip p {
  color: rgba(255, 255, 255, .76);
}

.member-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.member-tag-cloud span {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(107, 74, 50, .2);
  border-radius: 999px;
  background: #fff;
  color: var(--coffee);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(46, 28, 18, .04);
}

.member-service-list {
  display: grid;
  gap: 12px;
}

.member-service-list article {
  padding: 17px 18px;
  border: 1px solid rgba(232, 226, 221, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
}

.member-service-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--wine);
  font-size: 18px;
}

.member-service-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.member-auth-tabs {
  display: grid;
  gap: 12px;
  padding: 8px;
  border: 1px solid rgba(107, 74, 50, .12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(255, 255, 255, .92));
}

.member-auth-tab-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(107, 74, 50, .14);
  border-radius: 8px;
  background: rgba(244, 239, 232, .72);
}

.member-auth-tab-buttons button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #6d625b;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, box-shadow .22s ease;
}

.member-auth-tab-buttons button:hover,
.member-auth-tab-buttons button:focus-visible {
  color: var(--coffee);
  background: rgba(255, 255, 255, .72);
}

.member-auth-tab-buttons button.active {
  background: var(--coffee);
  color: #fff;
  box-shadow: 0 10px 24px rgba(107, 74, 50, .22);
}

.member-auth-note {
  margin: -4px 6px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.member-auth-pane {
  display: none;
  padding: 6px 6px 2px;
}

.member-auth-pane.active {
  display: block;
  animation: memberPaneIn .24s ease both;
}

.member-auth-pane form,
.member-profile-panel form {
  display: grid;
  gap: 16px;
}

.member-auth-tabs h3 {
  margin: 0;
  color: var(--wine);
  font-size: 22px;
}

@keyframes memberPaneIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.member-profile-card {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(107, 74, 50, .1), rgba(255, 255, 255, .92));
}

.member-profile-card > * {
  position: relative;
  z-index: 1;
}

.member-profile-card.vip-profile-card {
  min-height: 214px;
  padding: 34px 40px;
  align-items: flex-end;
  border: 1px solid rgba(173, 116, 38, .32);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .48), transparent 28%),
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, .78), transparent 28%),
    linear-gradient(135deg, #fff6df 0%, #f4d9a7 48%, #d1a05c 100%);
  box-shadow: 0 24px 54px rgba(102, 64, 26, .22), inset 0 1px 0 rgba(255, 255, 255, .7);
}

.member-profile-card.vip-profile-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(127, 80, 29, .58);
  border-radius: 8px;
  pointer-events: none;
}

.member-profile-card.vip-profile-card::after {
  content: "";
  position: absolute;
  left: -9%;
  right: -9%;
  top: 50%;
  height: 72px;
  border-radius: 50%;
  border: 18px solid transparent;
  border-top-color: rgba(137, 82, 24, .62);
  border-bottom-color: rgba(255, 229, 158, .68);
  transform: translateY(-50%) rotate(-17deg);
  filter: blur(.1px);
  box-shadow: 0 0 0 1px rgba(255, 246, 217, .28);
  pointer-events: none;
}

.member-profile-card.vip-profile-card .vip-card-mark {
  position: absolute;
  top: 26px;
  right: 38px;
  z-index: 1;
  color: #8a541f;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .06em;
}

.member-profile-card.vip-profile-card .vip-card-title {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 2px;
  color: #141313;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: 0;
  line-height: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.member-profile-card.vip-profile-card .vip-card-title small {
  color: #1f1b1c;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: .12em;
  white-space: nowrap;
}

.member-profile-card span,
.member-current-benefit span {
  color: var(--coffee);
  font-size: 13px;
  font-weight: 800;
}

.member-profile-card.vip-profile-card div > span {
  color: #805020;
  letter-spacing: .12em;
}

.member-profile-card h3 {
  margin: 8px 0 6px;
  color: var(--wine);
  font-size: 30px;
}

.member-profile-card.vip-profile-card h3 {
  color: #201815;
  font-size: 28px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .35);
}

.member-profile-card p {
  margin: 0;
  color: var(--muted);
}

.member-profile-card.vip-profile-card p {
  color: #2f2925;
  font-weight: 700;
}

.member-profile-card > strong {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--coffee);
  color: #fff;
  font-size: 14px;
}

.member-profile-card.vip-profile-card > strong {
  align-self: end;
  border: 1px solid rgba(127, 80, 29, .28);
  background: rgba(255, 248, 230, .55);
  color: #7b4b19;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .42);
}

.member-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.member-profile-stats article {
  min-height: 96px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.member-profile-stats span {
  color: var(--muted);
  font-size: 13px;
}

.member-profile-stats strong {
  display: block;
  margin-top: 6px;
  color: var(--wine);
  font-size: 20px;
  line-height: 1.15;
  white-space: nowrap;
}

.member-balance-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.member-balance-head button {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(107, 74, 50, .24);
  border-radius: 999px;
  background: rgba(107, 74, 50, .08);
  color: var(--coffee);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.member-balance-head button:hover,
.member-balance-head button:focus-visible {
  background: var(--coffee);
  color: #fff;
}

.member-recharge-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 24px;
}

.member-recharge-modal.is-open {
  display: grid;
}

.member-recharge-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 13, 10, .58);
  backdrop-filter: blur(5px);
}

.member-recharge-panel {
  position: relative;
  width: min(100%, 560px);
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(30, 18, 12, .28);
  animation: modalPanelIn .34s cubic-bezier(.2, .8, .2, 1) both;
}

.member-recharge-panel > span {
  color: var(--coffee);
  font-size: 13px;
  font-weight: 900;
}

.member-recharge-panel h2 {
  margin: 8px 0 10px;
  color: var(--wine);
  font-size: 28px;
}

.member-recharge-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.member-recharge-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.member-recharge-options label {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, .72);
  cursor: pointer;
}

.member-recharge-options label:has(input:checked) {
  border-color: var(--coffee);
  box-shadow: 0 14px 28px rgba(107, 74, 50, .12);
}

.member-recharge-options input {
  accent-color: var(--coffee);
}

.member-recharge-options strong {
  color: var(--wine);
  font-size: 24px;
}

.member-recharge-options small {
  color: var(--muted);
  line-height: 1.55;
}

.member-current-benefit {
  padding: 18px;
  border: 1px solid rgba(107, 74, 50, .18);
  border-radius: 8px;
  background: rgba(255, 253, 248, .9);
}

.member-current-benefit p {
  margin: 8px 0 0;
  color: #4d4540;
  line-height: 1.7;
}

.member-current-benefit small {
  display: block;
  margin-top: 10px;
  color: var(--coffee);
  font-size: 13px;
  line-height: 1.6;
}

.admin-inline-form {
  display: grid;
  grid-template-columns: minmax(120px, .9fr) minmax(80px, .55fr) minmax(110px, .75fr) minmax(110px, .75fr) auto;
  gap: 8px;
  align-items: center;
}

.admin-inline-form input,
.admin-inline-form select {
  min-height: 38px;
  padding: 6px 10px;
}

.admin-inline-form .outline-btn {
  min-height: 38px;
  padding: 0 14px;
  white-space: nowrap;
}

.admin-member-cell {
  padding: 18px 14px;
}

.admin-member-form {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr)) minmax(130px, auto);
  gap: 10px;
  align-items: end;
}

.admin-member-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.admin-member-form input,
.admin-member-form select {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font: inherit;
}

.admin-member-data-grid {
  display: grid;
  gap: 8px;
}

.admin-member-data-grid span {
  display: inline-grid;
  place-items: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(107, 74, 50, .16);
  border-radius: 6px;
  background: rgba(255, 253, 248, .92);
  color: var(--coffee);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.admin-recharge-form {
  display: grid;
  gap: 16px;
}

.admin-recharge-form table {
  min-width: 960px;
}

.admin-recharge-form input,
.admin-recharge-form textarea {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font: inherit;
}

.admin-recharge-form textarea {
  min-height: 66px;
  resize: vertical;
  line-height: 1.55;
}

.recharge-amount {
  display: inline-grid;
  place-items: center;
  min-width: 74px;
  min-height: 34px;
  border-radius: 999px;
  background: rgba(107, 74, 50, .1);
  color: var(--coffee);
}

.admin-check {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.admin-check input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--coffee);
}

.contact-hero {
  min-height: 460px;
  display: grid;
  align-content: center;
  padding-block: 64px;
  padding-inline: max(64px, calc((100% - var(--banner-content-width)) / 2));
  color: #fff;
  background-size: cover;
  background-position: center;
}

.contact-page .contact-grid {
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 30px;
  align-items: stretch;
}

.contact-intro,
.contact-info-panel,
.contact-map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 44px rgba(46, 28, 18, .06);
}

.contact-intro {
  display: grid;
  gap: 26px;
  padding: 30px;
}

.contact-action-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(60, 9, 15, .78), rgba(107, 74, 50, .58)),
    url("../img/chinese-banquet-cover.webp") center / cover;
}

.contact-action-card span,
.contact-map-card span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.contact-action-card strong {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.contact-action-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-action-card .outline-btn {
  border-color: rgba(255, 255, 255, .48);
  color: #fff;
}

.contact-info-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.contact-info-panel article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 25px 28px;
  border-bottom: 1px solid var(--line);
}

.contact-info-panel article:last-child {
  border-bottom: 0;
}

.contact-info-panel article > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(107, 74, 50, .1);
  color: var(--coffee);
  font-weight: 900;
}

.contact-info-panel h3 {
  margin: 0 0 8px;
  color: var(--wine);
  font-size: 22px;
}

.contact-info-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.contact-map-card {
  width: min(1280px, calc(100% - 48px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin: 30px auto 0;
  padding: 30px;
}

.contact-map-card span {
  color: var(--coffee);
}

.contact-map-card h2 {
  margin: 6px 0 10px;
  color: var(--wine);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
}

.contact-map-card p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.news-card a {
  color: var(--red);
  font-weight: 900;
}

.site-footer {
  width: min(1280px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(280px, 1.25fr) auto;
  align-items: center;
  gap: 34px;
  margin: 42px auto 0;
  padding: 30px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.footer-brand strong {
  display: block;
  color: var(--coffee);
  font-size: 22px;
  line-height: 1.2;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-contact {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.footer-contact span:first-child {
  color: var(--coffee);
  font-weight: 700;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-links a {
  display: inline-grid;
  place-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--coffee);
  font-size: 14px;
  font-weight: 700;
  transition: border-color .22s ease, background-color .22s ease, color .22s ease;
}

.footer-links a:hover {
  border-color: var(--coffee);
  background: var(--coffee);
  color: #fff;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff8f3, #f1f6f3);
}

.login-card {
  width: min(420px, calc(100% - 32px));
  display: grid;
  gap: 18px;
  padding: 34px;
  box-shadow: 0 20px 50px rgba(60, 9, 15, .12);
}

.login-card h1 {
  margin: 0;
  text-align: center;
  color: var(--wine);
}

.back-link {
  color: var(--muted);
  font-weight: 700;
}

.admin-body {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  min-height: 100vh;
  background: #f8f6f3;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 26px 22px;
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(60, 9, 15, .96), rgba(44, 15, 14, .98)),
    var(--wine);
  color: #fff;
}

.admin-sidebar .brand-mark {
  border-color: #fff;
}

.admin-sidebar-brand {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.admin-sidebar-brand strong {
  color: rgba(255, 255, 255, .92);
  font-size: 16px;
}

.admin-sidebar-nav {
  display: grid;
  gap: 16px;
}

.admin-nav-group {
  display: grid;
  gap: 7px;
}

.admin-nav-group > span {
  padding: 0 12px;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.admin-sidebar a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .86);
  font-weight: 800;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
  background: rgba(255, 255, 255, .13);
  color: #fff;
  transform: translateX(2px);
}

.admin-sidebar a.active {
  box-shadow: inset 3px 0 0 rgba(232, 204, 145, .9);
}

.admin-sidebar-footer {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.admin-sidebar-footer a,
.logout-link {
  background: rgba(255, 255, 255, .08);
}

.admin-main {
  padding: 34px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.admin-topbar p {
  margin: 0;
  color: var(--red);
  font-weight: 900;
}

.admin-topbar h1 {
  margin: 0;
  color: var(--wine);
  font-size: 42px;
}

.outline-btn {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--wine);
  border-radius: 8px;
  font-weight: 900;
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.admin-cards article {
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.admin-cards span {
  color: var(--muted);
  font-weight: 800;
}

.admin-cards strong {
  display: block;
  color: var(--wine);
  font-size: 42px;
}

.admin-content-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.admin-content-menu a {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--coffee);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.admin-content-menu strong {
  color: var(--wine);
  font-size: 18px;
  line-height: 1.25;
}

.admin-content-menu span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.admin-content-menu a:hover,
.admin-content-menu a.active {
  border-color: rgba(107, 74, 50, .34);
  box-shadow: 0 12px 28px rgba(55, 34, 22, .09);
  transform: translateY(-2px);
}

.admin-content-menu a.active {
  background:
    linear-gradient(135deg, rgba(107, 74, 50, .1), rgba(255, 255, 255, 0) 58%),
    #fff;
}

.admin-content-scope {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.admin-content-scope article {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(107, 74, 50, .14);
  border-radius: 8px;
  background: rgba(255, 253, 248, .78);
}

.admin-content-scope span {
  color: var(--coffee);
  font-size: 13px;
  font-weight: 900;
}

.admin-content-scope strong {
  color: var(--wine);
  font-size: 28px;
  line-height: 1;
}

.admin-content-scope p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.admin-section {
  padding: 24px;
  margin-bottom: 28px;
}

.admin-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-section-head h2,
.admin-form h2 {
  margin: 0;
  color: var(--wine);
}

.admin-section-head span {
  color: var(--muted);
}

.admin-section-action {
  width: fit-content;
  margin: -4px 0 18px;
}

.admin-help-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid rgba(107, 74, 50, .16);
  border-radius: 8px;
  background: rgba(255, 253, 248, .76);
}

.admin-help-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.admin-help-list strong {
  color: var(--coffee);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--wine);
}

.status {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  background: #fff0ec;
  color: var(--red);
  font-weight: 800;
}

.admin-note-cell {
  max-width: 320px;
  color: #4b423f;
  line-height: 1.65;
  white-space: normal;
}

.admin-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.admin-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.admin-wide-form {
  margin-bottom: 24px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-form-grid .span-2 {
  grid-column: 1 / -1;
}

.admin-section-head.compact {
  margin-top: 26px;
}

.inline-form {
  display: inline;
}

.inline-form button {
  border: 0;
  border-radius: 6px;
  padding: 8px 12px;
  color: #fff;
  background: var(--coffee);
  cursor: pointer;
}

.admin-featured-manager {
  display: grid;
  gap: 20px;
  margin: 26px 0 28px;
  padding-top: 4px;
}

.admin-seed-form {
  background: #fffaf4;
  border-color: rgba(107, 74, 50, .22);
}

.admin-seed-form p {
  margin: 0;
  color: var(--muted);
}

.admin-edit-list {
  display: grid;
  gap: 16px;
}

.admin-edit-list article {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.content-edit-details {
  min-width: 0;
}

.content-edit-details[open] {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 250, 244, .72);
}

.content-edit-summary {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) minmax(180px, auto) auto;
  gap: 16px;
  align-items: center;
  list-style: none;
  cursor: pointer;
}

.content-edit-summary::-webkit-details-marker {
  display: none;
}

.content-edit-summary img {
  width: 116px;
  height: 78px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7f1ea;
}

.content-edit-info {
  min-width: 0;
}

.content-edit-info strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.content-edit-info > span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--coffee);
  font-size: 13px;
}

.content-edit-info p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.content-edit-meta {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  flex-wrap: wrap;
}

.content-edit-meta span {
  display: inline-flex;
  max-width: 120px;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(107, 74, 50, .14);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content-edit-button {
  display: inline-grid;
  min-width: 72px;
  min-height: 34px;
  place-items: center;
  border: 1px solid rgba(107, 74, 50, .28);
  border-radius: 8px;
  background: #fff;
  color: var(--coffee);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.content-edit-button:hover,
.content-edit-summary:hover .content-edit-button,
.content-edit-details[open] .content-edit-button {
  border-color: var(--coffee);
  background: var(--coffee);
  color: #fff;
}

.content-edit-item:has(.content-edit-details[open]) {
  border-color: rgba(107, 74, 50, .34);
  background: linear-gradient(180deg, #fffaf4, #fff 42%);
  box-shadow: 0 18px 42px rgba(46, 28, 18, .08);
}

.content-edit-restored {
  animation: editRestoreGlow 1.2s ease both;
}

.content-edit-details[open] .featured-edit-form {
  margin-top: 18px;
  padding: 22px 22px 22px 26px;
  border: 1px solid rgba(107, 74, 50, .24);
  border-left: 5px solid var(--coffee);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(107, 74, 50, .08), rgba(255, 255, 255, 0) 46%),
    #fffdf9;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.section-edit-row td {
  padding: 0 14px 18px;
  background: linear-gradient(180deg, #fffaf4, #fff 68%);
}

.section-edit-row .featured-edit-form {
  margin: 14px 0 0;
  padding: 22px 22px 22px 26px;
  border: 1px solid rgba(107, 74, 50, .24);
  border-left: 5px solid var(--coffee);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(107, 74, 50, .08), rgba(255, 255, 255, 0) 46%),
    #fffdf9;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.featured-edit-form {
  display: grid;
  grid-template-columns: 168px repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.featured-edit-form img {
  width: 168px;
  height: 118px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.featured-edit-form .span-2 {
  grid-column: 2 / -1;
}

.admin-row-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-row-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(107, 74, 50, .22);
  border-radius: 8px;
  color: var(--coffee);
  font-size: 14px;
  font-weight: 800;
}

.admin-row-actions a:hover {
  border-color: var(--coffee);
  background: var(--coffee);
  color: #fff;
}

.inline-admin-action {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.admin-seed-defaults-action {
  flex-wrap: wrap;
  margin: 0 0 16px;
  padding: 14px;
  border: 1px solid rgba(107, 74, 50, .16);
  border-radius: 8px;
  background: rgba(255, 253, 248, .78);
}

.admin-seed-defaults-action span {
  color: var(--muted);
  font-size: 13px;
}

.inline-admin-action select {
  min-width: 100px;
  min-height: 38px;
  padding: 7px 10px;
}

.inline-admin-action button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(107, 74, 50, .22);
  border-radius: 8px;
  background: #fff;
  color: var(--coffee);
  font-weight: 800;
  cursor: pointer;
}

.inline-admin-action button:hover {
  border-color: var(--coffee);
  background: var(--coffee);
  color: #fff;
}

.delete-featured-form {
  justify-self: end;
}

.admin-empty {
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
}

.admin-menu-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.admin-menu-list article {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-menu-list img {
  width: 72px;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
}

.admin-menu-list div {
  display: grid;
}

.admin-menu-list span {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: 44px auto 1fr;
  }

  .site-search {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 32px 28px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .main-nav a {
    padding: 10px 0;
  }

  .nav-item {
    display: block;
  }

  .mega-menu {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 6px 0 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-item:hover .mega-menu,
  .nav-item:focus-within .mega-menu {
    display: grid;
  }

  .mega-menu-links {
    padding: 14px;
    gap: 8px;
  }

  .mega-menu-links span {
    font-size: 13px;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
  }

  .mega-menu-grid article {
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 96px;
  }

  .mega-menu-grid img {
    width: 76px;
    height: 76px;
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    bottom: 0;
  }

  .shop-layout,
  .booking-grid,
  .contact-grid,
  .about-overview,
  .split-section,
  .member-page {
    grid-template-columns: 1fr;
  }

  .member-benefit-cards {
    grid-template-columns: 1fr;
  }

  .member-benefit-cards strong {
    white-space: normal;
  }

  .reservation-search-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reservation-extra-panel {
    grid-template-columns: 1fr;
  }

  .reservation-search-row button {
    grid-column: 1 / -1;
  }

  .about-carousel {
    min-height: 460px;
  }

  .zone-group {
    grid-template-columns: 1fr;
  }

  .zone-group-head {
    max-width: none;
  }

  .basket {
    position: static;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .banquet-grid,
  .banquet-dish-grid,
  .banquet-category-grid,
  .admin-two,
  .admin-menu-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .banquet-shop-head {
    display: grid;
    align-items: start;
  }

  .banquet-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .banquet-simple-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dish-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .banquet-modal-list {
    display: block;
  }

  .banquet-modal-layout {
    grid-template-columns: 1fr;
  }

  .banquet-modal-category ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .banquet-modal-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .banquet-modal-category {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .banquet-modal-dish {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .banquet-modal-dish img {
    width: 100%;
    height: 128px;
  }

  .banquet-modal-dish b {
    width: 72px;
    height: 54px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 12px;
    min-height: 78px;
    padding: 0 16px 0 18px;
  }

  .hamburger {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    font-size: 14px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    justify-self: start;
  }

  .brand-logo {
    width: 188px;
    max-height: 50px;
  }

  .main-nav {
    top: 78px;
  }

  .main-nav .mega-menu,
  .nav-item:hover .mega-menu,
  .nav-item:focus-within .mega-menu {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 22px;
  }

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

  .hero .kicker {
    display: none;
  }

  .hero p {
    font-size: 16px;
  }

  .hero h1.hero-title {
    display: block;
    max-width: 100%;
    white-space: normal;
    font-size: clamp(26px, 7.2vw, 38px);
    line-height: 1.14;
  }

  .hero-title span {
    display: block;
    white-space: normal;
  }

  .hero-booking {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 8px;
  }

  .hero-booking label {
    border-bottom: 1px solid var(--line);
    padding: 16px 18px;
  }

  .hero-booking label:nth-of-type(odd) {
    border-right: 1px solid var(--line);
  }

  .hero-booking label:nth-of-type(even) {
    border-right: 0;
  }

  .hero-booking span {
    font-size: 12px;
  }

  .hero-booking strong {
    font-size: 18px;
  }

  .hero-booking button {
    grid-column: 1 / -1;
    min-height: 58px;
  }

  .mosaic-section,
  .feature-grid,
  .daily-grid,
  .room-grid,
  .service-grid,
  .news-grid,
  .admin-cards {
    grid-template-columns: 1fr;
  }

  .content-band,
  .daily-section,
  .about-overview,
  .about-zones,
  .booking-page,
  .member-page,
  .news-page,
  .shop-layout,
  .split-section,
  .contact-grid {
    width: min(100% - 28px, 1280px);
    margin: 46px auto;
  }

  .section-title p {
    white-space: normal;
  }

  .contact-page .contact-grid {
    grid-template-columns: 1fr;
  }

  .member-profile-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-member-form {
    grid-template-columns: 1fr;
  }

  .contact-map-card {
    width: min(100% - 28px, 1280px);
    display: grid;
    padding: 22px;
  }

  .hero + .booking-modal + .content-band {
    margin-top: 34px;
  }

  .about-overview {
    gap: 28px;
  }

  .about-carousel {
    min-height: 360px;
  }

  .about-carousel figcaption {
    left: 16px;
    right: 16px;
    bottom: 48px;
    padding: 16px 18px;
  }

  .about-carousel-dots {
    left: 18px;
    right: auto;
    bottom: 18px;
  }

  .zone-group {
    padding: 18px;
  }

  .zone-group-cover {
    min-height: 156px;
  }

  .zone-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .zone-card {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
    min-height: 132px;
    padding: 12px;
  }

  .zone-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 13px;
  }

  .zone-card h4 {
    display: grid;
    gap: 3px;
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.22;
  }

  .zone-card h4 small {
    font-size: 11px;
    line-height: 1.35;
  }

  .zone-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .zone-modal {
    padding: 14px;
  }

  .zone-modal-panel {
    padding: 28px 22px;
  }

  .zone-detail-page {
    width: min(100% - 28px, 1080px);
    margin: 42px auto 58px;
  }

  .zone-detail-article h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .zone-detail-content {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .zone-detail-content p {
    font-size: 17px;
  }

  .daily-detail-page {
    width: min(100% - 28px, 1120px);
    margin: 42px auto 58px;
  }

  .daily-detail-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .daily-detail-article {
    gap: 20px;
  }

  .daily-detail-meta {
    gap: 12px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .daily-detail-article h1 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .daily-detail-cover {
    width: 100%;
    margin: 28px auto 8px;
  }

  .daily-detail-content {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
    background:
      linear-gradient(180deg, rgba(107, 74, 50, .08), rgba(255, 255, 255, 0) 96px),
      rgba(255, 255, 255, .78);
  }

  .daily-detail-content p {
    font-size: 17px;
  }

  .daily-recommend-panel {
    position: static;
    padding: 18px;
  }

  .form-row,
  .reservation-search-row {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .stats span {
    min-height: 92px;
    padding: 12px 10px;
    font-size: 13px;
    line-height: 1.35;
  }

  .stats strong {
    font-size: clamp(24px, 7.2vw, 32px);
    line-height: 1.05;
  }

  .reservation-search-form {
    padding: 18px;
  }

  .reservation-search-form label,
  .reservation-search-row button {
    min-height: 74px;
  }

  .reservation-datetime > div {
    grid-template-columns: 1fr;
  }

  .reservation-search-form input,
  .reservation-search-form select {
    font-size: 19px;
  }

  .reservation-addon-options {
    display: grid;
  }

  .reservation-related {
    display: grid;
    gap: 10px;
  }

  .booking-modal {
    padding: 14px;
  }

  .booking-modal-panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 28px);
  }

  .booking-modal-head {
    padding: 26px;
  }

  .dish-card {
    grid-template-columns: 1fr;
  }

  .banquet-grid,
  .banquet-dish-grid,
  .banquet-category-grid,
  .dish-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .banquet-shop-head strong {
    font-size: 20px;
  }

  .banquet-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .banquet-photo-grid article {
    min-height: 150px;
  }

  .banquet-simple-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .banquet-dishes-head {
    display: grid;
  }

  .banquet-modal {
    padding: 8px;
  }

  .banquet-modal-panel {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
  }

  .banquet-modal-copy {
    padding: 22px;
  }

  .banquet-modal-list,
  .banquet-modal-layout {
    grid-template-columns: 1fr;
  }

  .banquet-modal-category {
    grid-template-columns: 1fr;
  }

  .banquet-modal-category ul {
    grid-template-columns: 1fr;
  }

  .banquet-modal-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dish-card img {
    width: 100%;
  }

  .page-hero.compact,
  .page-atmosphere,
  .contact-hero {
    min-height: 220px;
    padding-block: 30px;
  }

  .page-hero.compact,
  .contact-hero {
    padding-inline: 18px;
  }

  .page-hero.compact > div,
  .page-atmosphere > div,
  .contact-hero > * {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .page-hero h1,
  .page-atmosphere h1,
  .contact-hero h1 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.14;
  }

  .page-hero.compact p:not(.kicker),
  .page-atmosphere p:not(.kicker),
  .contact-hero p {
    max-width: 100%;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.65;
  }

  .contact-intro,
  .contact-info-panel article {
    padding: 22px;
  }

  .contact-info-panel article {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .contact-action-card strong {
    font-size: 34px;
  }

  .member-profile-card {
    display: grid;
    gap: 16px;
    align-items: start;
  }

  .member-profile-card.vip-profile-card {
    min-height: 250px;
    padding: 28px;
  }

  .member-profile-card.vip-profile-card .vip-card-mark {
    top: 24px;
    right: 28px;
    font-size: 16px;
  }

  .member-profile-card.vip-profile-card .vip-card-title {
    top: 44%;
    font-size: 0;
  }

  .member-profile-card.vip-profile-card .vip-card-title small {
    font-size: 26px;
  }

  .site-footer {
    width: min(100% - 28px, 1280px);
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
    margin-top: 34px;
    padding: 24px 0 28px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .admin-body {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    gap: 18px;
  }

  .admin-sidebar-brand {
    grid-template-columns: auto 1fr;
    justify-items: start;
    padding-bottom: 14px;
  }

  .admin-sidebar-brand .brand-mark {
    width: 62px;
    height: 62px;
    margin: 0;
    font-size: 14px;
  }

  .admin-sidebar-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .admin-sidebar-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-main {
    padding: 22px;
  }

  .admin-topbar {
    display: grid;
    gap: 14px;
  }

  .admin-form-grid,
  .featured-edit-form,
  .admin-content-scope {
    grid-template-columns: 1fr;
  }

  .content-edit-summary {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
  }

  .content-edit-summary img {
    width: 92px;
    height: 68px;
  }

  .content-edit-meta,
  .content-edit-button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .content-edit-meta {
    justify-content: flex-start;
  }

  .featured-edit-form img,
  .featured-edit-form .span-2 {
    grid-column: auto;
  }

  .featured-edit-form img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.5;
  }
}

.hero .kicker,
.hero h1,
.hero p,
.hero-booking,
.page-hero.compact > div,
.page-atmosphere > div,
.contact-hero > * {
  animation: heroRise .8s cubic-bezier(.2, .8, .2, 1) both;
}

.hero .kicker {
  animation-delay: .12s;
}

.hero h1,
.page-hero.compact > div,
.page-atmosphere > div,
.contact-hero > * {
  animation-delay: .22s;
}

.hero p {
  animation-delay: .34s;
}

.hero-booking {
  animation-delay: .48s;
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .64s ease, transform .64s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid .reveal-item:nth-child(2),
.daily-grid .reveal-item:nth-child(2),
.room-grid .reveal-item:nth-child(2),
.news-grid .reveal-item:nth-child(2),
.dish-grid .reveal-item:nth-child(2),
.mini-grid .reveal-item:nth-child(2) {
  --reveal-delay: 80ms;
}

.feature-grid .reveal-item:nth-child(3),
.daily-grid .reveal-item:nth-child(3),
.room-grid .reveal-item:nth-child(3),
.news-grid .reveal-item:nth-child(3),
.dish-grid .reveal-item:nth-child(3),
.mini-grid .reveal-item:nth-child(3) {
  --reveal-delay: 140ms;
}

.basket-row-enter {
  animation: basketIn .34s cubic-bezier(.2, .8, .2, 1) both;
}

.basket-total strong,
[data-total] {
  display: inline-block;
}

[data-total].is-updated {
  animation: totalPulse .46s ease both;
}

.flash {
  animation: flashSlide .34s ease both;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navLine {
  from {
    opacity: 0;
    transform: scaleX(.35);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes diningBannerMood {
  from {
    background-position: center 48%;
    background-size: 108%;
  }

  to {
    background-position: center 42%;
    background-size: 112%;
  }
}

@keyframes basketIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes totalPulse {
  0%,
  100% {
    transform: scale(1);
    color: inherit;
  }
  45% {
    transform: scale(1.1);
    color: var(--red);
  }
}

@keyframes addPulse {
  0%,
  100% {
    transform: rotate(45deg) scale(1);
  }
  45% {
    transform: rotate(45deg) scale(1.18);
  }
}

@keyframes orderPanelGlow {
  0% {
    box-shadow: 0 24px 60px rgba(46, 28, 18, .1), 0 0 0 0 rgba(107, 74, 50, 0);
  }
  42% {
    box-shadow: 0 28px 68px rgba(46, 28, 18, .14), 0 0 0 5px rgba(107, 74, 50, .1);
  }
  100% {
    box-shadow: 0 24px 60px rgba(46, 28, 18, .1), 0 0 0 0 rgba(107, 74, 50, 0);
  }
}

@keyframes editRestoreGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(107, 74, 50, .28);
  }
  55% {
    box-shadow: 0 0 0 7px rgba(107, 74, 50, .12);
  }
  100% {
    box-shadow: 0 18px 42px rgba(46, 28, 18, .08);
  }
}

@keyframes flashSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalPanelIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
