:root {
  --bg1: #fff2e0;
  --bg2: #e0f2fe;
  --card: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --primary: #b45309;
  --primary2: #92400e;
  --ring: rgba(180, 83, 9, 0.25);
  --border: #e5e7eb;
  --radius: 18px;
  --site-header-height: 52px;
  --staging-banner-height: 0px;
}

html.env-staging {
  --staging-banner-height: 0px;
}

.staging-env-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 6px 12px;
  padding-top: max(6px, env(safe-area-inset-top));
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  background: #9f1239;
  box-shadow: 0 2px 8px rgba(63, 20, 36, 0.18);
}

html.env-staging .site-header {
  top: var(--staging-banner-height);
}

html.env-staging .wrap {
  padding-top: calc(var(--site-header-height) + var(--staging-banner-height) + env(safe-area-inset-top, 0px) + 8px);
}

html.env-staging.admin-page .wrap {
  padding-top: calc(var(--staging-banner-height) + env(safe-area-inset-top, 0px) + 8px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  padding:
    0
    max(16px, env(safe-area-inset-right))
    max(48px, env(safe-area-inset-bottom))
    max(16px, env(safe-area-inset-left));
  font-family: system-ui, "Segoe UI", "Yu Gothic UI", "Hiragino Sans", sans-serif;
  color: var(--text);
  background-color: #f6efe1;
  background-image:
    radial-gradient(circle at 12% 0%, rgba(180, 83, 9, 0.07), transparent 36%),
    radial-gradient(rgba(120, 53, 15, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #f6efe1, #fbf5ec);
  background-size: auto, 18px 18px, auto;
  background-position: 0 0, 0 0, 0 0;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(180, 83, 9, 0.18);
  overflow-x: hidden;
}

body.site-nav-open,
body.modal-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding:
    max(8px, env(safe-area-inset-top))
    max(12px, env(safe-area-inset-right))
    8px
    max(12px, env(safe-area-inset-left));
  background: rgba(251, 245, 236, 0.94);
  border-bottom: 1px solid rgba(120, 53, 15, 0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(45, 32, 20, 0.06);
}

.site-header__menu-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(120, 53, 15, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  touch-action: manipulation;
}

.site-header__menu-icon,
.site-header__menu-icon::before,
.site-header__menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary2);
}

.site-header__menu-icon {
  position: relative;
}

.site-header__menu-icon::before,
.site-header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.site-header__menu-icon::before { top: -6px; }
.site-header__menu-icon::after { top: 6px; }

.site-header__title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--primary2);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 950;
}

.site-nav[hidden] {
  display: none;
}

.site-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 32, 20, 0.42);
  backdrop-filter: blur(2px);
}

.site-nav__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(100%, 320px);
  height: 100%;
  padding:
    max(12px, env(safe-area-inset-top))
    16px
    max(16px, env(safe-area-inset-bottom));
  overflow: auto;
  background: linear-gradient(180deg, #fffdf9, #fdf8f0);
  border-right: 1px solid rgba(120, 53, 15, 0.14);
  box-shadow: 12px 0 32px rgba(45, 32, 20, 0.12);
}

.site-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.site-nav__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary2);
}

.site-nav__close {
  appearance: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(120, 53, 15, 0.08);
  color: var(--primary2);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-nav__link {
  appearance: none;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(120, 53, 15, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary2);
}

.site-nav__label {
  flex: 1;
  min-width: 0;
}

.site-nav__link:active {
  background: rgba(251, 245, 236, 0.95);
}

h1, h2, .hero h1, .card h2 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

.wrap {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  padding-top: calc(var(--site-header-height) + env(safe-area-inset-top, 0px) + 8px);
}

.hero {
  position: relative;
  padding: 14px 20px 14px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 12% 0%, rgba(180, 83, 9, 0.08), transparent 36%),
    linear-gradient(135deg, #fbf5ec, #fffaf3);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(180, 83, 9, 0.10), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-top {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.steam {
  position: absolute;
  top: 32%;
  width: 9px;
  height: 14px;
  background: rgba(245, 240, 230, 0.85);
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.steam--1 { left: 47%; animation: steam-rise 3.8s ease-in-out infinite; }
.steam--2 { left: 50%; animation: steam-rise 3.8s ease-in-out 1.1s infinite; }
.steam--3 { left: 53%; animation: steam-rise 3.8s ease-in-out 2.2s infinite; }

@keyframes steam-rise {
  0%   { opacity: 0;    transform: translate(0, 0)     scale(0.9);  }
  20%  { opacity: 0.75; transform: translate(-2px, -10px) scale(1);    }
  55%  { opacity: 0.55; transform: translate(3px, -28px)  scale(1.25); }
  85%  { opacity: 0.15; transform: translate(-2px, -46px) scale(1.55); }
  100% { opacity: 0;    transform: translate(0, -58px)  scale(1.8);  }
}

@media (prefers-reduced-motion: reduce) {
  .steam { display: none; }
}

.brand-logo {
  display: block;
  height: 120px;
  width: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(circle closest-side at center, #000 92%, transparent 100%);
          mask-image: radial-gradient(circle closest-side at center, #000 92%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  animation: brand-float 10s ease-in-out infinite;
  transition: transform 0.5s ease;
}

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

@keyframes brand-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo { animation: none; }
}

.hero {
  padding-right: 150px;
}

@media (min-width: 640px) {
  .brand-logo { height: 160px; }
  .hero { padding-right: 200px; }
}

@media (max-width: 480px) {
  .hero::before {
    display: none;
  }

  .hero {
    padding-right: 12px;
    padding-top: 4px;
    padding-bottom: 10px;
    display: block;
    background: #fbf5ec;
  }

  .hero-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 0;
    background: transparent;
    text-align: center;
  }

  .hero-top {
    position: static;
    margin-bottom: 0;
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent;
  }

  .brand {
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .brand-logo {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
    background: transparent;
    -webkit-mask-image: none;
            mask-image: none;
    filter: none;
  }

  .steam { display: none; }

  .hero h1 {
    width: 100%;
    margin: 0;
    font-size: clamp(14px, 4.4vw, 19px);
    line-height: 1.35;
    letter-spacing: 0.03em;
    text-align: center;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
  }

  .hero .lead { display: none; }

  .hero .actions {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    padding-bottom: 0;
  }

  .hero .actions .btn {
    width: 100%;
    min-width: 0;
    padding: 5px 2px;
    font-size: 10.5px;
    line-height: 1.15;
    min-height: 34px;
    white-space: normal;
  }
}

@media (min-width: 390px) and (max-width: 480px) {
  .hero h1 {
    font-size: clamp(16px, 4.8vw, 21px);
    letter-spacing: 0.04em;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  width: fit-content;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f97316;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
}

.hero h1 {
  margin: 4px 0 6px;
  font-size: clamp(22px, 6.4vw, 34px);
  letter-spacing: 0.04em;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: clamp(14px, 3.8vw, 16px);
  max-width: 60ch;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.card {
  position: relative;
  scroll-margin-top: calc(var(--site-header-height) + env(safe-area-inset-top, 0px) + 12px);
  background: #fdfaf3;
  border: 1px solid rgba(99, 73, 47, 0.18);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(63, 47, 30, 0.08);
  padding: clamp(16px, 4.5vw, 22px) clamp(16px, 4.5vw, 22px) clamp(16px, 4.5vw, 22px) clamp(18px, 5vw, 24px);
  overflow: hidden;
  transition: box-shadow 0.5s ease, transform 0.5s ease, border-color 0.5s ease;
}

.card:hover {
  border-color: rgba(120, 53, 15, 0.28);
  box-shadow: 0 14px 32px rgba(63, 47, 30, 0.12);
  transform: translateY(-1px);
}

.card::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  border-radius: 3px;
  background: rgba(120, 53, 15, 0.55);
}

#menu.card::before { background: rgba(180, 83, 9, 0.55); }
#about.card::before { background: rgba(120, 53, 15, 0.55); }
#hours.card::before { background: rgba(30, 64, 175, 0.45); }
#location.card::before { background: rgba(22, 101, 52, 0.45); }
#reserve.card::before { background: rgba(159, 18, 57, 0.45); }

#menu.card {
  background: linear-gradient(180deg, #fdfaf3, #fffaf3);
  overflow: visible;
}
#about.card { background: linear-gradient(180deg, #fdfaf3, #fbf5e9); }
#hours.card { background: linear-gradient(180deg, #fafbfd, #fdfaf3); }
#location.card { background: linear-gradient(180deg, #f7faf6, #fdfaf3); }
#reserve.card { background: linear-gradient(180deg, #fbf6f5, #fdfaf3); }

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

.card h2 {
  position: relative;
  margin: 2px 0 18px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #3f2f1e;
  border-bottom: 1px solid rgba(120, 53, 15, 0.12);
}

.card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: min(72%, 168px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(120, 53, 15, 0.84) 0%,
    rgba(120, 53, 15, 0.52) 70%,
    rgba(120, 53, 15, 0) 100%
  );
  transform: scaleX(0.2);
  transform-origin: left center;
  opacity: 0.72;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease;
}

.card:hover h2::after,
.card:focus-within h2::after,
.card.reveal.is-visible h2::after {
  transform: scaleX(1);
  opacity: 1;
}

#menu.card h2::after {
  background: linear-gradient(
    90deg,
    rgba(180, 83, 9, 0.84) 0%,
    rgba(180, 83, 9, 0.5) 70%,
    rgba(180, 83, 9, 0) 100%
  );
}

#about.card h2::after {
  background: linear-gradient(
    90deg,
    rgba(120, 53, 15, 0.84) 0%,
    rgba(120, 53, 15, 0.52) 70%,
    rgba(120, 53, 15, 0) 100%
  );
}

#hours.card h2::after {
  background: linear-gradient(
    90deg,
    rgba(30, 64, 175, 0.72) 0%,
    rgba(30, 64, 175, 0.42) 70%,
    rgba(30, 64, 175, 0) 100%
  );
}

#location.card h2::after {
  background: linear-gradient(
    90deg,
    rgba(22, 101, 52, 0.72) 0%,
    rgba(22, 101, 52, 0.42) 70%,
    rgba(22, 101, 52, 0) 100%
  );
}

#reserve.card h2::after {
  background: linear-gradient(
    90deg,
    rgba(159, 18, 57, 0.68) 0%,
    rgba(159, 18, 57, 0.4) 70%,
    rgba(159, 18, 57, 0) 100%
  );
}

#order-history.card h2::after,
.order-history-page.card h2::after {
  background: linear-gradient(
    90deg,
    rgba(120, 53, 15, 0.72) 0%,
    rgba(120, 53, 15, 0.42) 70%,
    rgba(120, 53, 15, 0) 100%
  );
}

.main-grid {
  display: grid;
  gap: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.muted { color: var(--muted); }
.small { font-size: 13px; }

#menu .menu-filter-bar {
  position: sticky;
  top: calc(var(--site-header-height) + env(safe-area-inset-top, 0px));
  z-index: 8;
  margin: 0 0 12px;
  padding: 6px 0 10px;
  background: rgba(253, 250, 243, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(99, 73, 47, 0.1);
  box-shadow: 0 8px 16px rgba(253, 250, 243, 0.85);
}

.chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.chip {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  padding: 10px 6px;
  min-height: 40px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
}

.chip.is-active {
  border-color: transparent;
  background: linear-gradient(180deg, var(--primary), var(--primary2));
  color: #fff;
  box-shadow: 0 10px 22px rgba(180, 83, 9, 0.25);
}

.chip:hover { border-color: #cbd5e1; }
.chip:active { transform: translateY(1px); }

.btn {
  appearance: none;
  border: 1px solid var(--border);
  padding: 12px 18px;
  min-height: 44px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: #ffffff;
  color: var(--text);
  touch-action: manipulation;
  -webkit-user-select: none;
          user-select: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.45s ease, border-color 0.35s ease, transform 0.25s ease, filter 0.35s ease, background-color 0.35s ease;
}

.btn-primary {
  background: linear-gradient(180deg, var(--primary), var(--primary2));
  border-color: transparent;
  color: #ffffff;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  background: linear-gradient(180deg, #fffaf3, #f6efe1);
  border-color: rgba(120, 53, 15, 0.28);
  color: #3f2f1e;
  box-shadow: 0 6px 14px rgba(63, 47, 30, 0.08);
}

.btn-line[hidden] {
  display: none !important;
}

.btn-line::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-color: var(--primary2);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19.365 9.863c.349 0 .63.285.63.631 0 .345-.281.63-.63.63H17.61v1.125h1.755c.349 0 .63.283.63.63 0 .344-.281.629-.63.629h-2.386c-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63h2.386c.346 0 .627.285.627.63 0 .349-.281.63-.63.63H17.61v1.125h1.755zm-3.855 3.016c0 .27-.174.51-.432.596-.064.021-.133.031-.199.031-.211 0-.391-.09-.51-.25l-2.443-3.317v2.94c0 .344-.279.629-.631.629-.346 0-.626-.285-.626-.629V8.108c0-.27.173-.51.43-.595.06-.023.136-.033.194-.033.195 0 .375.104.495.254l2.462 3.33V8.108c0-.345.282-.63.63-.63.345 0 .63.285.63.63v4.771zm-5.741 0c0 .344-.282.629-.631.629-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63.346 0 .628.285.628.63v4.771zm-2.466.629H4.917c-.345 0-.63-.285-.63-.629V8.108c0-.345.285-.63.63-.63.348 0 .63.285.63.63v4.141h1.756c.348 0 .629.283.629.63 0 .344-.282.629-.629.629M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19.365 9.863c.349 0 .63.285.63.631 0 .345-.281.63-.63.63H17.61v1.125h1.755c.349 0 .63.283.63.63 0 .344-.281.629-.63.629h-2.386c-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63h2.386c.346 0 .627.285.627.63 0 .349-.281.63-.63.63H17.61v1.125h1.755zm-3.855 3.016c0 .27-.174.51-.432.596-.064.021-.133.031-.199.031-.211 0-.391-.09-.51-.25l-2.443-3.317v2.94c0 .344-.279.629-.631.629-.346 0-.626-.285-.626-.629V8.108c0-.27.173-.51.43-.595.06-.023.136-.033.194-.033.195 0 .375.104.495.254l2.462 3.33V8.108c0-.345.282-.63.63-.63.345 0 .63.285.63.63v4.771zm-5.741 0c0 .344-.282.629-.631.629-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63.346 0 .628.285.628.63v4.771zm-2.466.629H4.917c-.345 0-.63-.285-.63-.629V8.108c0-.345.285-.63.63-.63.348 0 .63.285.63.63v4.141h1.756c.348 0 .629.283.629.63 0 .344-.282.629-.629.629M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.btn-line:hover {
  filter: none;
  background: linear-gradient(180deg, #ffffff, #fffaf3);
  border-color: rgba(120, 53, 15, 0.4);
  box-shadow: 0 10px 22px rgba(63, 47, 30, 0.12);
}

.btn:hover { box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08); border-color: #cbd5e1; }
.btn-primary:hover { filter: brightness(1.05); box-shadow: 0 10px 22px rgba(180, 83, 9, 0.22); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible, .chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.menu-item {
  border-radius: 14px;
  border: 1px solid rgba(99, 73, 47, 0.18);
  padding: 14px 14px 16px;
  background: #fffaf3;
  box-shadow: 0 6px 16px rgba(63, 47, 30, 0.06);
  display: grid;
  gap: 10px;
  touch-action: manipulation;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.menu-item:hover {
  transform: translateY(-2px);
  border-color: rgba(120, 53, 15, 0.35);
  box-shadow: 0 12px 22px rgba(63, 47, 30, 0.10);
}

.menu-photo {
  height: 160px;
  border-radius: 14px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  overflow: hidden;
  position: relative;
  background-position: center calc(50% + var(--parallax-y, 0px));
  background-size: cover;
  background-repeat: no-repeat;
  background-color: transparent;
  transition: background-position 0.12s linear;
}

.menu-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.menu-photo::before { content: none; }

.menu-photo--coffee {
  background-image: url("images/menu_coffee.png"), linear-gradient(135deg, #fff7ed, #fde68a);
  background-position: center calc(50% + var(--parallax-y, 0px)), center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.menu-photo--cappuccino {
  background-image: url("images/menu_cappuccino.png"), linear-gradient(135deg, #fff7ed, #fde68a);
  background-position: center calc(50% + var(--parallax-y, 0px)), center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.menu-photo--ethiopia {
  background-image: url("images/menu_ethiopia.png"), linear-gradient(135deg, #fff7ed, #fde68a);
  background-position: center calc(50% + var(--parallax-y, 0px)), center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.menu-photo--tea {
  background-image: url("images/menu_tea.png"), linear-gradient(135deg, #eff6ff, #dcfce7);
  background-position: center calc(50% + var(--parallax-y, 0px)), center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.menu-photo--chai-hot {
  background-image: url("images/menu_chai_hot.png"), linear-gradient(135deg, #fffbeb, #fde68a);
  background-position: center calc(50% + var(--parallax-y, 0px)), center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.menu-photo--sweet {
  background-image: url("images/menu_sweet.png"), linear-gradient(135deg, #fff1f2, #ffedd5);
  background-position: center calc(50% + var(--parallax-y, 0px)), center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.menu-photo--cinnamon {
  background-image: url("images/menu_cinnamon_roll.png"), linear-gradient(135deg, #fff7ed, #fde68a);
  background-position: center calc(50% + var(--parallax-y, 0px)), center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.menu-photo--pound {
  background-image: url("images/menu_pound_cake.png"), linear-gradient(135deg, #fff7ed, #ffedd5);
  background-position: center calc(50% + var(--parallax-y, 0px)), center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.menu-photo--chai {
  background-image: url("images/menu_chai.png"), linear-gradient(135deg, #fffbeb, #dcfce7);
  background-position: center calc(50% + var(--parallax-y, 0px)), center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.menu-photo--iced {
  background-image: url("images/menu_iced.png"), linear-gradient(135deg, #eff6ff, #e0f2fe);
  background-position: center calc(50% + var(--parallax-y, 0px)), center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

.menu-title {
  font-weight: 1000;
  font-size: 16px;
  margin-bottom: 4px;
}

.menu-desc {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.menu-price {
  margin-top: 10px;
  font-weight: 1000;
  color: var(--primary2);
}

.menu-picker-field {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.menu-picker-legend {
  padding: 0;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #3f2f1e;
}

.menu-picker-legend-note {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.menu-picker {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.menu-picker-item {
  display: block;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.menu-picker-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.menu-picker-face {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(99, 73, 47, 0.18);
  background: #fffaf3;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.menu-picker-item input:checked + .menu-picker-face {
  border-color: rgba(180, 83, 9, 0.55);
  background: #fff7ed;
  box-shadow: 0 0 0 2px rgba(180, 83, 9, 0.14);
}

.menu-picker-item input:focus-visible + .menu-picker-face {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.menu-picker-face img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(99, 73, 47, 0.12);
  background: #fff;
}

.menu-picker-label {
  font-size: 14px;
  font-weight: 700;
  color: #3f2f1e;
  line-height: 1.35;
}

.menu-picker-field.is-error .menu-picker {
  padding: 4px;
  border-radius: 14px;
  box-shadow: inset 0 0 0 2px rgba(159, 18, 57, 0.28);
}

.is-hidden { display: none; }

.menu-item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.line-link-box {
  margin: 14px 0 6px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffaf3, #fdf6ec);
  border: 1px solid rgba(99, 73, 47, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display: grid;
  gap: 8px;
}

.line-add-btn {
  text-decoration: none;
}

.line-link-check-hint {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  justify-self: start;
}

.line-link-check-hint:hover:not(:disabled) {
  color: var(--primary2);
}

.line-link-check-hint:disabled {
  opacity: 0.65;
  cursor: wait;
}

.line-link-note {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.65;
}

.line-link-box--linked {
  padding: 10px 12px;
}

.line-link-status {
  margin-top: 10px;
  margin-bottom: 0;
}

.line-link-box--linked .line-link-status {
  margin-top: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.line-link-box--linked .line-link-status__icon {
  display: inline-block;
}

.line-link-status__icon {
  display: none;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  background-color: var(--primary2);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19.365 9.863c.349 0 .63.285.63.631 0 .345-.281.63-.63.63H17.61v1.125h1.755c.349 0 .63.283.63.63 0 .344-.281.629-.63.629h-2.386c-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63h2.386c.346 0 .627.285.627.63 0 .349-.281.63-.63.63H17.61v1.125h1.755zm-3.855 3.016c0 .27-.174.51-.432.596-.064.021-.133.031-.199.031-.211 0-.391-.09-.51-.25l-2.443-3.317v2.94c0 .344-.279.629-.631.629-.346 0-.626-.285-.626-.629V8.108c0-.27.173-.51.43-.595.06-.023.136-.033.194-.033.195 0 .375.104.495.254l2.462 3.33V8.108c0-.345.282-.63.63-.63.345 0 .63.285.63.63v4.771zm-5.741 0c0 .344-.282.629-.631.629-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63.346 0 .628.285.628.63v4.771zm-2.466.629H4.917c-.345 0-.63-.285-.63-.629V8.108c0-.345.285-.63.63-.63.348 0 .63.285.63.63v4.141h1.756c.348 0 .629.283.629.63 0 .344-.282.629-.629.629M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19.365 9.863c.349 0 .63.285.63.631 0 .345-.281.63-.63.63H17.61v1.125h1.755c.349 0 .63.283.63.63 0 .344-.281.629-.63.629h-2.386c-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63h2.386c.346 0 .627.285.627.63 0 .349-.281.63-.63.63H17.61v1.125h1.755zm-3.855 3.016c0 .27-.174.51-.432.596-.064.021-.133.031-.199.031-.211 0-.391-.09-.51-.25l-2.443-3.317v2.94c0 .344-.279.629-.631.629-.346 0-.626-.285-.626-.629V8.108c0-.27.173-.51.43-.595.06-.023.136-.033.194-.033.195 0 .375.104.495.254l2.462 3.33V8.108c0-.345.282-.63.63-.63.345 0 .63.285.63.63v4.771zm-5.741 0c0 .344-.282.629-.631.629-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63.346 0 .628.285.628.63v4.771zm-2.466.629H4.917c-.345 0-.63-.285-.63-.629V8.108c0-.345.285-.63.63-.63.348 0 .63.285.63.63v4.141h1.756c.348 0 .629.283.629.63 0 .344-.282.629-.629.629M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.line-link-status__text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.table th, .table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
}

.table th {
  width: 32%;
  font-weight: 1000;
  background: #f8fafc;
}

.table tr:last-child th,
.table tr:last-child td { border-bottom: 0; }

.hours-busy {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(99, 73, 47, 0.12);
  box-shadow: 0 8px 18px rgba(63, 47, 30, 0.05);
}

.hours-busy .h3 {
  margin: 0 0 10px;
  font-size: 15px;
  color: #3f2f1e;
}

.hours-busy-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hours-busy-list li {
  display: grid;
  grid-template-columns: 4.5em 1fr;
  gap: 8px;
  align-items: baseline;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(251, 245, 236, 0.95);
  color: #3f2f1e;
  font-size: 14px;
  line-height: 1.5;
}

.hours-busy-day {
  font-weight: 900;
  color: var(--primary2);
}

.hours-busy-time {
  font-weight: 700;
}

.hours-busy-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

.two-col .h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 1000;
}

.about-lead {
  margin: 0 0 18px;
  color: #5c4a38;
  font-size: 15px;
  line-height: 1.85;
}

.about-features {
  display: grid;
  gap: 14px;
}

.about-feature {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(99, 73, 47, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(63, 47, 30, 0.06);
  overflow: hidden;
}

.about-feature__photo {
  height: clamp(160px, 42vw, 220px);
  margin: -18px -18px 16px;
  border-radius: 18px 18px 14px 14px;
  border-bottom: 1px solid rgba(99, 73, 47, 0.1);
  background-position: center calc(50% + var(--parallax-y, 0px));
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: background-position 0.12s linear;
}

.about-feature__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0) 38%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(63, 47, 30, 0.18) 100%);
  pointer-events: none;
}

.about-feature__photo--roast {
  background-image: url("images/about_roast.png");
  background-color: #3f2f1e;
}

.about-feature__photo--syrup {
  background-image: url("images/about_syrup.png");
  background-color: #5c4a38;
}

.about-feature::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  opacity: 0.85;
}

.about-feature--roast::before {
  background: linear-gradient(90deg, #b45309, #d97706);
}

.about-feature--syrup::before {
  background: linear-gradient(90deg, #92400e, #f59e0b);
}

.about-feature__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #fffaf3;
  border: 1px solid rgba(99, 73, 47, 0.12);
  font-size: 22px;
  line-height: 1;
}

.about-feature .h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #3f2f1e;
}

.about-feature__lead {
  margin: 0 0 12px;
  color: #5c4a38;
  font-size: 14px;
  line-height: 1.85;
}

.about-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.about-points li {
  position: relative;
  padding: 10px 12px 10px 34px;
  border-radius: 12px;
  background: rgba(251, 245, 236, 0.9);
  color: #3f2f1e;
  font-size: 13.5px;
  line-height: 1.65;
}

.about-points li::before {
  content: "✦";
  position: absolute;
  left: 12px;
  top: 10px;
  color: var(--primary2);
  font-size: 12px;
  line-height: 1.65;
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  line-height: 1.85;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field > span {
  font-weight: 900;
  font-size: 14px;
}

.field-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(99, 73, 47, 0.14);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.field-bag-option {
  margin: 2px 0 4px;
}

#reserve .field-bag-option .field-checkbox {
  border-color: rgba(180, 83, 9, 0.22);
  background: #fffaf3;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.field-checkbox input[type="checkbox"] {
  -webkit-appearance: none;
          appearance: none;
  display: inline-grid;
  place-content: center;
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  border-radius: 4px;
  border: 2px solid rgba(120, 53, 15, 0.45);
  background: #fff;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.field-checkbox input[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg) scale(0);
  transition: transform 0.12s ease;
}

.field-checkbox input[type="checkbox"]:checked {
  background: var(--primary);
  border-color: var(--primary);
}

.field-checkbox input[type="checkbox"]:checked::before {
  transform: rotate(-45deg) scale(1);
}

.field-checkbox input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring);
}

.field-checkbox span {
  font-size: 15px;
  font-weight: 700;
  color: #3f2f1e;
  line-height: 1.4;
}

.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.field-label-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pickup-time-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

.btn-pickup-offset {
  padding: 6px 12px;
  min-height: 32px;
  font-size: 12.5px;
  font-weight: 700;
}

.time-input-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.time-input-wrap:focus-within {
  box-shadow: 0 0 0 4px var(--ring);
}

.time-input-wrap .time-input {
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
}

.time-input-wrap .time-input::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.time-input-wrap .time-input-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 44px;
  padding: 0 12px;
  border: none;
  border-left: 1px solid var(--border);
  background: #fffaf3;
  color: #3f2f1e;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-user-select: none;
          user-select: none;
}

.time-input-wrap .time-input-icon:hover {
  background: #f6efe1;
}

.time-input-wrap .time-input-icon:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--primary2);
}

input:not([type="checkbox"]):not([type="radio"]), select, textarea {
  width: 100%;
  padding: 12px 14px;
  min-height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  -webkit-appearance: none;
          appearance: none;
}

select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

textarea { resize: vertical; min-height: 92px; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(180, 83, 9, 0.55);
  box-shadow: 0 0 0 4px var(--ring);
}

.map {
  height: 190px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(59, 130, 246, 0.09), rgba(180, 83, 9, 0.06)),
    repeating-linear-gradient(0deg, rgba(229, 231, 235, 0.85) 0, rgba(229, 231, 235, 0.85) 1px, transparent 1px, transparent 18px),
    repeating-linear-gradient(90deg, rgba(229, 231, 235, 0.85) 0, rgba(229, 231, 235, 0.85) 1px, transparent 1px, transparent 18px);
  position: relative;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-pin {
  position: absolute;
  left: 52%;
  top: 45%;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #f97316;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.25);
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 22px;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #f97316;
}

.map-text {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.75);
  font-weight: 1000;
}

.footer {
  text-align: center;
  color: var(--muted);
  padding-top: 6px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 10px;
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
  opacity: 0.8;
}

.footer-version {
  letter-spacing: 0.06em;
}

.footer-disclaimer {
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.reservation-success {
  margin-top: 14px;
  padding: 18px 16px;
  border-radius: 14px;
  text-align: center;
  background: linear-gradient(180deg, #fffaf3, #fdf6ec);
  border: 1px solid rgba(120, 53, 15, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.reservation-success__label {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.reservation-success__no {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--primary2);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
}

.reservation-success__total {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(120, 53, 15, 0.14);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}

.order-breakdown {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  text-align: left;
}

.order-breakdown__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
  line-height: 1.5;
}

.order-breakdown__name {
  flex: 1;
  min-width: 0;
}

.order-breakdown__price {
  flex-shrink: 0;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

body.modal-open {
  overflow: hidden;
}

.reserve-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.reserve-modal[hidden] {
  display: none;
}

.reserve-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 32, 20, 0.45);
  backdrop-filter: blur(2px);
}

.reserve-modal__panel {
  position: relative;
  width: min(100%, 420px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 22px 20px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fffdf9, #fdf8f0);
  border: 1px solid rgba(120, 53, 15, 0.18);
  box-shadow: 0 18px 48px rgba(45, 32, 20, 0.18);
}

.reserve-modal__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--primary2);
}

.reserve-modal__total {
  margin: 12px 0 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(120, 53, 15, 0.14);
  font-size: 18px;
  font-weight: 700;
  text-align: right;
  color: var(--text);
}

.reserve-modal__friend-warning {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff1f2;
  border: 1px solid rgba(159, 18, 57, 0.18);
}

.reserve-modal__friend-warning[hidden] {
  display: none;
}

.reserve-modal__friend-warning-text {
  margin: 0 0 10px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #9f1239;
}

.reserve-modal__friend-add {
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.reserve-modal__actions {
  display: flex;
  gap: 10px;
}

.reserve-modal__actions .btn {
  flex: 1;
}

.reservation-success__hint {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.reservation-history__intro {
  margin: 0 0 12px;
  font-size: 13px;
}

#activeOrderHistory {
  margin-top: 18px;
  scroll-margin-top: calc(var(--site-header-height) + env(safe-area-inset-top, 0px) + 12px);
}

.order-history-page .actions {
  margin-top: 18px;
}

.reservation-history__heading {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary2);
}

.reservation-history__list {
  display: grid;
  gap: 12px;
}

.reservation-history__item {
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffaf3, #fdf6ec);
  border: 1px solid rgba(120, 53, 15, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.reservation-history__item--handed-over {
  opacity: 0.82;
}

.reservation-history__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.order-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.order-status--pending {
  background: #fef3c7;
  color: #92400e;
}

.order-status--done {
  background: #dcfce7;
  color: #166534;
}

.order-status--handed-over {
  background: #f3f4f6;
  color: #4b5563;
}

.order-history-empty {
  margin: 0;
  padding: 18px 14px;
  border-radius: 12px;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.55);
  border: 1px dashed rgba(120, 53, 15, 0.16);
}

.reservation-history__label {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.reservation-history__no {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--primary2);
  text-align: center;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
}

.reservation-history__total {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(120, 53, 15, 0.14);
  font-size: 17px;
  font-weight: 700;
  text-align: right;
  color: var(--text);
}

.reservation-history__meta {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal--hero {
  transform: translate3d(0, -18px, 0) scale(0.99);
  filter: blur(6px);
}

.reveal--hero.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal--section {
  transform: translate3d(0, 36px, 0) scale(0.98);
  filter: blur(8px);
}

.reveal--lift {
  transform: translate3d(0, 32px, 0) scale(0.97);
  filter: blur(7px);
}

.reveal--from-left {
  transform: translate3d(-28px, 22px, 0) scale(0.98);
  filter: blur(7px);
}

.reveal--from-right {
  transform: translate3d(28px, 22px, 0) scale(0.98);
  filter: blur(7px);
}

.reveal--fade {
  transform: translate3d(0, 16px, 0) scale(1);
  filter: blur(4px);
}

.reveal--from-left.is-visible,
.reveal--from-right.is-visible,
.reveal--hero.is-visible,
.reveal--section.is-visible,
.reveal--lift.is-visible,
.reveal--fade.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.scroll-progress {
  position: fixed;
  top: calc(var(--site-header-height) + env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  height: 3px;
  z-index: 901;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--primary), #d97706, var(--primary2));
  box-shadow: 0 0 12px rgba(180, 83, 9, 0.35);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .reveal--hero,
  .reveal--section,
  .reveal--lift,
  .reveal--fade,
  .reveal--from-left,
  .reveal--from-right {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .scroll-progress { display: none; }
}

.to-top {
  position: fixed;
  right: max(18px, calc(env(safe-area-inset-right) + 12px));
  bottom: max(18px, calc(env(safe-area-inset-bottom) + 12px));
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  color: #ffffff;
  background: linear-gradient(180deg, var(--primary), var(--primary2));
  box-shadow: 0 12px 28px rgba(180, 83, 9, 0.30);
  cursor: pointer;
  touch-action: manipulation;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top:hover {
  filter: brightness(1.06);
  box-shadow: 0 14px 30px rgba(180, 83, 9, 0.40);
}

.to-top:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring), 0 12px 28px rgba(180, 83, 9, 0.30);
}

.to-top__label {
  font-size: 13px;
}

@media (max-width: 480px) {
  .to-top__label { display: none; }
  .to-top { padding: 12px 14px; }
}

@media (min-width: 860px) {
  .main-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-picker { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr 1fr; }
  .about-features { grid-template-columns: 1fr 1fr; }
}

.tel-link {
  color: var(--primary2);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px dashed rgba(120, 53, 15, 0.45);
}
.tel-link:active { opacity: 0.7; }

@media (min-width: 600px) and (max-width: 859px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-picker { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  body {
    padding-top: 0;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
    padding-bottom: max(72px, calc(env(safe-area-inset-bottom) + 56px));
  }

  .wrap { gap: 10px; }
  .main-grid { gap: 10px; }

  .hero {
    padding: 4px 8px 10px;
    border-radius: var(--radius);
  }

  .card {
    border-radius: 14px;
  }

  .card h2 { font-size: 18px; margin-bottom: 12px; }

  .actions {
    gap: 8px;
  }
  .actions .btn {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    padding: 12px 12px;
    font-size: 14px;
  }
  .actions .btn-line {
    flex-basis: 100%;
  }

  .chip {
    padding: 8px 4px;
    font-size: 11.5px;
    min-height: 38px;
  }

  #menu .menu-filter-bar {
    top: calc(var(--site-header-height) + env(safe-area-inset-top, 0px));
    padding: 4px 0 8px;
    margin-bottom: 10px;
  }

  .chips {
    gap: 6px;
  }

  .menu-photo { height: 150px; }
  .menu-title { font-size: 15px; }
  .menu-desc  { font-size: 13.5px; }

  .table th, .table td {
    padding: 10px 8px;
    font-size: 13.5px;
  }

  .map { height: 220px; }

  .form { gap: 14px; }

  .footer { padding-top: 4px; font-size: 13px; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: clamp(13px, 4.1vw, 16px); letter-spacing: 0.02em; }
  .hero .actions .btn { font-size: 9.5px; padding: 4px 2px; min-height: 32px; }
}

@media (hover: none) {
  .menu-item:hover { transform: none; }
  .card:hover { transform: none; }
  .card h2::after {
    transform: scaleX(0.62);
    opacity: 0.88;
  }
  .card.reveal.is-visible h2::after {
    transform: scaleX(1);
    opacity: 1;
  }
  .btn:hover { filter: none; transform: none; }
  .chip:hover { border-color: var(--border); }
  .to-top:hover { filter: none; }
  .brand-logo:hover { transform: none; }
}
