:root {
  --paper: #fff8f2;
  --paper-light: #fff8f2;
  --paper-deep: #efd6b5;
  --pink: #ef3f8c;
  --pink-soft: #ffd3e5;
  --brown: #643417;
  --brown-dark: #3d2417;
  --wood: #a65f43;
  --wood-dark: #6f3929;
  --muted: #795c49;
  --line: #d8b78e;
  --shadow: 0 14px 32px rgba(76, 39, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brown-dark);
  background: var(--wood-dark);
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", "YuGothic", sans-serif;
  line-height: 1.75;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(5deg, transparent 0 17px, rgba(255, 255, 255, 0.18) 18px 19px),
    repeating-linear-gradient(176deg, transparent 0 31px, rgba(40, 18, 10, 0.18) 32px 33px);
}

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

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-wrap {
  position: relative;
  width: min(100%, 760px);
  min-height: 100dvh;
  margin: 0 auto;
  overflow: hidden;
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(116, 72, 36, 0.035) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 60%, rgba(116, 72, 36, 0.03) 0 1px, transparent 1.5px);
  background-size: 13px 15px, 17px 19px;
  box-shadow: 0 0 46px rgba(0, 0, 0, 0.28);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 46px;
  align-items: center;
  min-height: 62px;
  padding: 8px 16px;
  background: rgba(255, 248, 242, 0.94);
  border-bottom: 1px solid rgba(99, 52, 23, 0.14);
  backdrop-filter: blur(14px);
  transition: box-shadow 240ms ease, background-color 240ms ease;
}

.topbar.is-scrolled {
  background: rgba(255, 248, 242, 0.98);
  box-shadow: 0 8px 20px rgba(75, 38, 20, 0.1);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  line-height: 1;
}

.wordmark img {
  width: auto;
  height: 46px;
}

.menu-button {
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 27px;
  height: 3px;
  margin: 5px auto;
  background: var(--brown-dark);
  border-radius: 999px;
  transform-origin: center;
  transition: transform 280ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.35);
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-menu {
  position: absolute;
  top: 61px;
  right: 12px;
  left: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 12px;
  background: var(--paper-light);
  border: 2px solid var(--brown);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top center;
  visibility: hidden;
  transition: opacity 220ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1), visibility 220ms;
}

.site-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.site-menu a {
  padding: 11px 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.hero {
  border-bottom: 8px solid var(--wood);
}

.brand-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 270px;
  padding: 24px 16px;
  overflow: hidden;
  background: var(--paper);
}

.brand-visual > img {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
}

.brand-visual::before,
.brand-visual::after {
  position: absolute;
  color: var(--pink);
  font-size: 1.65rem;
  content: "☆";
}

.brand-visual::before {
  top: 24px;
  left: 20px;
  transform: rotate(-10deg);
}

.brand-visual::after {
  right: 18px;
  bottom: 22px;
  transform: rotate(12deg);
}

.opening-banner {
  position: relative;
  display: grid;
  gap: 1px;
  margin: -2px 16px 8px;
  padding: 13px 18px 14px;
  overflow: hidden;
  color: #fff;
  background: var(--pink);
  border: 3px solid var(--brown-dark);
  border-radius: 8px;
  box-shadow: 5px 6px 0 var(--brown);
  text-align: center;
}

.opening-banner::before,
.opening-banner::after {
  position: absolute;
  color: var(--pink-soft);
  content: "✦";
  font-size: 1.45rem;
}

.opening-banner::before {
  top: 9px;
  left: 15px;
}

.opening-banner::after {
  right: 15px;
  bottom: 9px;
}

.opening-banner span,
.opening-banner small {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
}

.opening-banner strong {
  font-size: 1.55rem;
  line-height: 1.3;
}

.opening-dates {
  display: grid;
  gap: 7px;
  margin: 7px 0;
}

.opening-dates p {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  text-align: left;
}

.opening-dates p small {
  color: var(--pink-soft);
  font-family: "Arial Rounded MT Bold", sans-serif;
  font-size: 0.62rem;
}

.opening-dates p strong {
  font-size: clamp(0.94rem, 4vw, 1.15rem);
  white-space: nowrap;
}

.hero-copy {
  position: relative;
  padding: 28px 20px 24px;
  text-align: center;
}

.hero-copy::before,
.hero-copy::after {
  position: absolute;
  color: var(--pink);
  content: "✦";
}

.hero-copy::before {
  top: 30px;
  left: 20px;
}

.hero-copy::after {
  right: 24px;
  bottom: 24px;
}

.hand-note {
  display: inline-block;
  margin: 0 0 12px;
  padding: 3px 10px;
  color: var(--brown);
  border-bottom: 3px solid var(--pink);
  font-family: "Hannotate SC", "Hiragino Maru Gothic ProN", cursive;
  font-size: 0.9rem;
  font-weight: 900;
  transform: rotate(-1deg);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(1.75rem, 7vw, 2.7rem);
  line-height: 1.42;
}

.hero-copy > p:last-child {
  max-width: 510px;
  margin: 15px auto 0;
  color: var(--muted);
}

.open-board {
  margin: 0 16px 22px;
  padding: 16px;
  color: var(--paper-light);
  background-color: var(--wood-dark);
  background-image: repeating-linear-gradient(4deg, transparent 0 19px, rgba(255, 255, 255, 0.06) 20px 21px);
  border: 3px solid var(--brown-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.open-board > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.open-dot {
  width: 10px;
  height: 10px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(239, 63, 140, 0.18);
}

.open-board p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0 10px;
  font-family: "Arial Rounded MT Bold", sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.2;
}

.open-board small {
  font-family: inherit;
  font-size: 0.78rem;
}

.open-board a {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  color: var(--pink-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.84rem;
  font-weight: 900;
}

.section {
  padding: 72px 20px 0;
}

.section-kicker {
  margin: 0 0 7px;
  color: var(--pink);
  font-family: "Arial Rounded MT Bold", sans-serif;
  font-size: 0.73rem;
  font-weight: 900;
}

.section-kicker::after {
  display: inline-block;
  margin-left: 7px;
  color: var(--pink);
  content: "✦";
  font-size: 0.7rem;
  transform-origin: center;
}

.section h2,
.scene-caption h2 {
  margin: 0 0 15px;
  font-size: clamp(1.7rem, 6vw, 2.5rem);
  line-height: 1.38;
}

.section-heading > p:last-child,
.welcome > p,
.scene-caption > p {
  color: var(--muted);
}

.welcome {
  text-align: center;
}

.welcome > p {
  max-width: 540px;
  margin: 0 auto;
}

.welcome-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  max-width: 520px;
  margin: 28px auto 0;
  padding: 20px 10px;
}

.welcome-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  border-top: 2px solid var(--pink-soft);
  border-bottom: 2px solid var(--pink-soft);
}

.welcome-bubbles {
  position: relative;
  z-index: 1;
}

.welcome-bubbles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.welcome-bubbles img {
  width: 100%;
  filter: drop-shadow(0 5px 3px rgba(99, 52, 23, 0.12));
}

.welcome-bubbles img:first-child {
  transform: rotate(-2deg);
}

.welcome-bubbles img:last-child {
  width: 100%;
  transform: rotate(2deg);
}

.price-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.price-board article {
  position: relative;
  padding: 18px 12px;
  background: var(--paper-light);
  border: 2px solid var(--brown);
  border-radius: 8px;
  text-align: center;
  box-shadow: 5px 6px 0 var(--paper-deep);
}

.price-icon {
  width: auto;
  height: 76px;
  margin: -48px auto 5px;
  filter: drop-shadow(0 7px 4px rgba(72, 37, 20, 0.14));
}

.price-board article > span {
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 900;
}

.price-board h3 {
  margin: 5px 0 0;
  font-size: 1.18rem;
  line-height: 1.35;
}

.price-board p {
  margin: 2px 0;
  font-weight: 900;
}

.price-board small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
}

.cash-note {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 13px;
  align-items: center;
  margin-top: 24px;
  padding: 16px;
  background: var(--pink-soft);
  border-radius: 8px;
}

.cash-note svg {
  width: 54px;
  fill: none;
  stroke: var(--brown);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.cash-note strong {
  display: block;
  margin-bottom: 3px;
}

.cash-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.text-arrow {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding: 12px 0;
  border-bottom: 2px solid var(--brown);
  font-weight: 900;
}

.place-section {
  position: relative;
  padding-top: 48px;
  padding-bottom: 72px;
  overflow: hidden;
  background: var(--paper-light);
  border-top: 6px solid var(--pink);
  border-bottom: 6px solid var(--paper-deep);
}

.place-lantern {
  position: absolute;
  top: 22px;
  right: 18px;
  width: 54px;
  transform: rotate(6deg);
  filter: drop-shadow(0 8px 5px rgba(72, 37, 20, 0.16));
}

.place-section .section-heading {
  padding-right: 54px;
}

.floor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.floor-grid article {
  position: relative;
  min-height: 162px;
  padding: 22px 12px 16px;
  overflow: hidden;
  background: var(--paper);
  border: 2px solid var(--brown);
  border-radius: 8px;
  text-align: center;
  box-shadow: 5px 6px 0 var(--pink-soft);
}

.floor-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  color: #fff;
  background: var(--pink);
  border-radius: 50%;
  font-weight: 900;
}

.floor-grid strong,
.floor-grid small {
  position: relative;
  z-index: 1;
  display: block;
}

.floor-grid strong {
  line-height: 1.5;
}

.floor-grid small {
  margin-top: 5px;
  color: var(--pink);
  font-weight: 900;
}

.floor-accent {
  display: block;
  height: auto;
  margin: 8px auto 0;
  opacity: 0.58;
  pointer-events: none;
}

.floor-accent-counter {
  width: 26px;
  transform: rotate(7deg);
}

.floor-accent-table {
  width: 38px;
  transform: rotate(-5deg);
}

.place-note {
  width: fit-content;
  margin: 24px auto 0;
  padding: 7px 18px;
  color: var(--brown);
  background: var(--pink-soft);
  border: 2px dashed var(--pink);
  border-radius: 999px;
  font-family: "Hannotate SC", "Hiragino Maru Gothic ProN", cursive;
  font-weight: 900;
  transform: rotate(-1deg);
}

.dish-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 0;
  min-height: 300px;
  margin: 18px -14px 0;
  padding: 34px 4px 10px;
}

.dish-stage::before {
  position: absolute;
  right: 5%;
  bottom: 5%;
  left: 5%;
  height: 46%;
  content: "";
  background: var(--paper-light);
  border: 2px solid var(--line);
  border-radius: 50%;
  box-shadow: inset 0 -14px 0 var(--paper-deep);
}

.dish-stage > img {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: -18px 0;
  filter: drop-shadow(0 10px 7px rgba(72, 37, 20, 0.17));
}

.dish-stage > img:nth-child(1),
.dish-stage > img:nth-child(3) {
  transform: translateY(28px) rotate(-3deg);
}

.dish-stage > img:nth-child(2) {
  transform: translateY(12px) scale(1.08);
}

.dish-stage > img:nth-child(4) {
  transform: translate(10px, -2px) rotate(3deg);
}

.dish-stage > img:nth-child(5) {
  z-index: 2;
  transform: translateY(-14px) scale(1.1);
}

.dish-stage > img:nth-child(6) {
  transform: translate(-10px, 0) rotate(-3deg);
}

.obanzai-sticker {
  position: absolute;
  top: 2px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  color: #fff;
  background: var(--pink);
  border: 3px solid var(--paper-light);
  border-radius: 50%;
  box-shadow: 0 5px 0 var(--brown);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  transform: rotate(8deg);
}

.obanzai-prices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}

.obanzai-prices span {
  padding: 6px 10px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
}

.hand-callout {
  width: fit-content;
  margin: 24px auto 18px;
  padding: 7px 15px;
  border: 2px solid var(--brown);
  border-radius: 50%;
  font-family: "Hannotate SC", "Hiragino Maru Gothic ProN", cursive;
  font-size: 0.88rem;
  font-weight: 900;
  transform: rotate(-2deg);
}

.primary-button {
  position: relative;
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: #fff;
  background: var(--pink);
  border: 2px solid var(--brown-dark);
  border-radius: 999px;
  box-shadow: 4px 5px 0 var(--brown);
  font-weight: 900;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 180ms ease, transform 180ms ease, filter 180ms ease;
}

.event-card {
  position: relative;
  padding: 26px 22px;
  overflow: hidden;
  background: var(--paper-light);
  border: 3px solid var(--pink);
  border-radius: 8px;
  box-shadow: 7px 8px 0 var(--pink-soft);
}

.event-visual {
  position: relative;
  height: 245px;
  margin-top: 24px;
  overflow: hidden;
  background: var(--pink-soft);
  border: 2px dashed var(--pink);
  border-radius: 8px;
}

.event-coming {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 3;
  width: max-content;
  margin: 0;
  padding: 10px 18px;
  color: var(--pink);
  background: var(--paper-light);
  border: 2px solid var(--pink);
  border-radius: 999px;
  box-shadow: 3px 4px 0 rgba(99, 52, 23, 0.16);
  font-weight: 900;
  transform: translateX(-50%) rotate(-1deg);
}

.event-drink {
  position: absolute;
  bottom: 2px;
  width: 96px;
  filter: drop-shadow(0 9px 5px rgba(72, 37, 20, 0.15));
}

.event-drink-one {
  left: 2%;
  transform: rotate(-7deg);
}

.event-drink-two {
  left: 25%;
  width: 104px;
  transform: translateY(8px) rotate(3deg);
}

.event-drink-three {
  right: 22%;
  width: 90px;
  transform: rotate(-2deg);
}

.event-drink-four {
  right: 0;
  width: 104px;
  transform: translateY(5px) rotate(6deg);
}

.event-card::after {
  position: absolute;
  right: 18px;
  bottom: 10px;
  color: var(--pink-soft);
  content: "★";
  font-size: 4rem;
}

.event-card p {
  position: relative;
  z-index: 1;
}

.event-card > p:not(.section-kicker) {
  color: var(--muted);
}

.event-card a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.music-note {
  position: absolute;
  top: 10px;
  right: 19px;
  color: var(--pink);
  font-size: 2.4rem;
  transform: rotate(12deg);
}

.address-card {
  position: relative;
  margin-top: 24px;
  padding: 22px;
  background: var(--paper-light);
  border: 2px solid var(--brown);
  border-radius: 8px;
  box-shadow: 6px 7px 0 var(--paper-deep);
}

.address-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.address-card > strong {
  display: block;
  margin: 3px 0 17px;
  padding-right: 32px;
  font-size: 1.08rem;
}

.address-card dl {
  margin: 0 0 20px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.address-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.address-card dt,
.address-card dd {
  font-size: 0.86rem;
  font-weight: 900;
}

.address-card dd {
  margin: 0;
}

.pin-illustration {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
}

.wood-links {
  margin-top: 76px;
  padding: 28px 16px 32px;
  background-color: var(--wood);
  background-image:
    repeating-linear-gradient(3deg, transparent 0 23px, rgba(73, 30, 16, 0.19) 24px 26px),
    repeating-linear-gradient(178deg, transparent 0 41px, rgba(255, 235, 210, 0.09) 42px 43px);
  border-top: 5px solid var(--wood-dark);
  border-bottom: 5px solid var(--wood-dark);
}

.wood-title {
  margin: 0 0 18px;
  color: var(--paper-light);
  font-weight: 900;
  text-align: center;
}

.wood-links > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.wood-links a {
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  padding: 13px 6px;
  background: var(--paper);
  border: 2px solid var(--brown);
  border-radius: 8px;
  text-align: center;
}

.wood-links strong {
  font-size: 0.82rem;
  line-height: 1.4;
}

.wood-links small {
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.4;
}

.link-doodle {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 6px;
  color: var(--pink);
  border: 3px solid var(--brown);
  border-radius: 50%;
  font-family: "Arial Rounded MT Bold", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
}

.site-footer {
  display: grid;
  gap: 12px;
  padding: 38px 20px 96px;
  text-align: center;
}

.footer-wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-wordmark img {
  width: 190px;
  height: auto;
}

.footer-message {
  width: 150px;
  margin: -2px auto 0;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  font-size: 0.78rem;
  font-weight: 900;
}

.site-footer small {
  color: var(--muted);
  font-size: 0.68rem;
}

.mobile-dock {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 760px);
  min-height: 64px;
  margin: 0 auto;
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(255, 248, 242, 0.96);
  border-top: 2px solid var(--brown);
  backdrop-filter: blur(12px);
}

.mobile-dock a {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1px;
  color: var(--brown);
  font-size: 0.67rem;
  font-weight: 900;
  transition: color 180ms ease, background-color 180ms ease, transform 140ms ease;
}

.mobile-dock a:active {
  color: var(--pink);
  background: var(--pink-soft);
  transform: scale(0.94);
}

.mobile-dock a + a {
  border-left: 1px solid var(--line);
}

.mobile-dock span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: var(--pink);
  font-family: "Arial Rounded MT Bold", sans-serif;
  font-size: 1.1rem;
}

.mobile-dock span img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

@media (prefers-reduced-motion: no-preference) {
  .brand-visual > img {
    animation:
      logo-arrive 800ms cubic-bezier(0.22, 1, 0.36, 1) both,
      logo-glow 5.6s ease-in-out 900ms infinite;
  }

  .brand-visual::before {
    animation: sparkle-pop 3.6s ease-in-out infinite;
  }

  .brand-visual::after {
    animation: sparkle-pop 3.6s ease-in-out 1.1s infinite;
  }

  .opening-banner {
    animation: opening-pulse 3.4s ease-in-out 1s infinite;
  }

  .opening-dates p {
    animation: opening-row-arrive 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .opening-dates p:nth-child(2) {
    animation-delay: 120ms;
  }

  .hero-copy h1 {
    animation: copy-arrive 700ms ease-out 220ms both;
  }

  .hero-copy::before,
  .hero-copy::after {
    animation: tiny-twinkle 4s ease-in-out infinite;
  }

  .hero-copy::after {
    animation-delay: 1.4s;
  }

  .open-dot {
    animation: status-pulse 2.4s ease-out infinite;
  }

  .open-board {
    animation: wood-drift 18s linear infinite;
  }

  .open-board a span {
    animation: arrow-nudge 2.8s ease-in-out infinite;
  }

  .section-kicker::after {
    animation: kicker-breathe 3.4s ease-in-out infinite;
  }

  .welcome-bubbles img:first-child {
    animation: bubble-float-left 4.6s ease-in-out infinite;
  }

  .welcome-bubbles img:last-child {
    animation: bubble-float-right 4.6s ease-in-out 700ms infinite;
  }

  .price-icon {
    animation: icon-bob 3.4s ease-in-out infinite;
  }

  .price-board article:nth-child(2) .price-icon {
    animation-delay: 500ms;
  }

  .place-lantern {
    transform-origin: 50% 4%;
    animation: lantern-sway 3.2s ease-in-out infinite;
  }

  .floor-accent-counter {
    animation: accent-sway 3.8s ease-in-out infinite;
  }

  .floor-accent-table {
    animation: accent-sway-alt 3.8s ease-in-out 600ms infinite;
  }

  .floor-grid article:first-child > span {
    animation: floor-pulse 3.2s ease-in-out infinite;
  }

  .floor-grid article:nth-child(2) > span {
    animation: floor-pulse 3.2s ease-in-out 700ms infinite;
  }

  .floor-grid article:first-child {
    animation: card-shadow-pink 4.8s ease-in-out infinite;
  }

  .floor-grid article:nth-child(2) {
    animation: card-shadow-pink 4.8s ease-in-out 700ms infinite;
  }

  .motion-ready .dish-stage.reveal.is-visible > img {
    animation: dish-hover 4.2s ease-in-out infinite;
  }

  .motion-ready .dish-stage.reveal.is-visible > img:nth-child(2),
  .motion-ready .dish-stage.reveal.is-visible > img:nth-child(5) {
    animation-delay: 500ms;
  }

  .motion-ready .dish-stage.reveal.is-visible > img:nth-child(3),
  .motion-ready .dish-stage.reveal.is-visible > img:nth-child(6) {
    animation-delay: 1s;
  }

  .obanzai-sticker {
    animation: sticker-wiggle 4.6s ease-in-out infinite;
  }

  .hand-callout {
    animation: note-float 4.2s ease-in-out infinite;
  }

  .event-drink-one,
  .event-drink-three {
    animation: drink-float 3.2s ease-in-out infinite;
  }

  .event-drink-two,
  .event-drink-four {
    animation: drink-float 3.2s ease-in-out 500ms infinite reverse;
  }

  .music-note {
    animation: music-bounce 2.8s ease-in-out infinite;
  }

  .event-card::after {
    animation: star-glow 3.2s ease-in-out infinite;
  }

  .pin-illustration {
    animation: pin-bounce 2.8s ease-in-out infinite;
  }

  .link-doodle {
    animation: doodle-pulse 5.4s ease-in-out infinite;
  }

  .wood-links a:nth-child(2) .link-doodle {
    animation-delay: 600ms;
  }

  .wood-links a:nth-child(3) .link-doodle {
    animation-delay: 1.2s;
  }

  .footer-message {
    animation: footer-float 4s ease-in-out infinite;
  }

  .mobile-dock a span {
    animation: dock-bob 3.2s ease-in-out infinite;
  }

  .mobile-dock a:nth-child(2) span {
    animation-delay: 320ms;
  }

  .mobile-dock a:nth-child(3) span {
    animation-delay: 640ms;
  }

  .mobile-dock a:nth-child(4) span {
    animation-delay: 960ms;
  }

  .page-masthead::before {
    animation: masthead-star 3.7s ease-in-out infinite;
  }

  .page-masthead::after {
    animation: masthead-star 3.7s ease-in-out 1s infinite;
  }

  .faq-group details[open] > div {
    animation: answer-arrive 280ms ease-out both;
  }

  .faq-group summary::before {
    animation: q-breathe 3.6s ease-in-out infinite;
  }

  .faq-group details:nth-of-type(2n) summary::before {
    animation-delay: 650ms;
  }

  .terms-section li::before {
    animation: bullet-pulse 3.4s ease-in-out infinite;
  }

  .terms-section li:nth-child(2n)::before {
    animation-delay: 600ms;
  }

  .primary-button::after {
    position: absolute;
    top: -30%;
    bottom: -30%;
    left: -32%;
    width: 18%;
    content: "";
    background: rgba(255, 255, 255, 0.38);
    transform: skewX(-18deg);
    animation: button-shine 4.8s ease-in-out infinite;
  }

  .motion-ready .reveal {
    opacity: 0;
    filter: blur(2px);
    scale: 0.985;
    translate: var(--reveal-x, 0) 22px;
    transition:
      opacity 650ms ease var(--reveal-delay, 0ms),
      filter 650ms ease var(--reveal-delay, 0ms),
      scale 650ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
      translate 650ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  }

  .motion-ready .reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    scale: 1;
    translate: 0 0;
  }

  .motion-ready .dish-stage.reveal > img {
    opacity: 0;
    scale: 0.86;
    transition: opacity 520ms ease, scale 620ms cubic-bezier(0.2, 1.4, 0.4, 1);
  }

  .motion-ready .dish-stage.reveal.is-visible > img {
    opacity: 1;
    scale: 1;
  }

  .motion-ready .dish-stage.reveal.is-visible > img:nth-child(2),
  .motion-ready .dish-stage.reveal.is-visible > img:nth-child(5) {
    transition-delay: 100ms;
  }

  .motion-ready .dish-stage.reveal.is-visible > img:nth-child(3),
  .motion-ready .dish-stage.reveal.is-visible > img:nth-child(6) {
    transition-delay: 200ms;
  }
}

@media (hover: hover) {
  .site-menu a:hover,
  .category-tabs a:hover {
    color: var(--pink);
    background: var(--pink-soft);
    transform: translateY(-2px);
  }

  .price-board article:hover,
  .floor-grid article:hover,
  .wood-links a:hover,
  .address-card:hover {
    transform: translateY(-4px);
  }

  .primary-button:hover {
    filter: saturate(1.08) brightness(1.03);
    box-shadow: 5px 7px 0 var(--brown);
    transform: translateY(-2px);
  }

  .text-arrow:hover span,
  .event-card a:hover span {
    translate: 5px 0;
  }
}

.price-board article,
.floor-grid article,
.wood-links a,
.address-card {
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.primary-button:active {
  box-shadow: 2px 2px 0 var(--brown);
  transform: translate(2px, 3px);
}

.text-arrow span,
.event-card a span {
  transition: translate 220ms ease;
}

@keyframes logo-arrive {
  from {
    opacity: 0;
    transform: scale(0.92) rotate(-1deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes copy-arrive {
  from {
    opacity: 0;
    translate: 0 14px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(239, 63, 140, 0)); }
  50% { filter: drop-shadow(0 5px 8px rgba(239, 63, 140, 0.16)); }
}

@keyframes wood-drift {
  from { background-position: 0 0; }
  to { background-position: 48px 0; }
}

@keyframes arrow-nudge {
  0%, 70%, 100% { translate: 0 0; }
  82% { translate: 5px 0; }
}

@keyframes kicker-breathe {
  0%, 100% { opacity: 0.35; scale: 0.78; rotate: 0deg; }
  50% { opacity: 1; scale: 1.12; rotate: 15deg; }
}

@keyframes opening-row-arrive {
  from { opacity: 0; translate: 12px 0; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes sparkle-pop {
  0%, 65%, 100% { opacity: 0.42; scale: 0.82; }
  76% { opacity: 1; scale: 1.18; }
}

@keyframes tiny-twinkle {
  0%, 100% { opacity: 0.35; scale: 0.82; }
  50% { opacity: 1; scale: 1.12; }
}

@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 63, 140, 0.5); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(239, 63, 140, 0); }
}

@keyframes bubble-float-left {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-5px) rotate(0); }
}

@keyframes bubble-float-right {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(5px) rotate(0); }
}

@keyframes icon-bob {
  0%, 100% { translate: 0 0; rotate: -1deg; }
  50% { translate: 0 -5px; rotate: 2deg; }
}

@keyframes accent-sway {
  0%, 100% { transform: rotate(7deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-3px); }
}

@keyframes accent-sway-alt {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-3px); }
}

@keyframes floor-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 63, 140, 0); scale: 1; }
  50% { box-shadow: 0 0 0 6px rgba(239, 63, 140, 0.1); scale: 1.04; }
}

@keyframes card-shadow-pink {
  0%, 100% { box-shadow: 5px 6px 0 var(--pink-soft); }
  50% { box-shadow: 7px 8px 0 var(--pink-soft); }
}

@keyframes dish-hover {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -5px; }
}

@keyframes sticker-wiggle {
  0%, 82%, 100% { transform: rotate(8deg) scale(1); }
  88% { transform: rotate(3deg) scale(1.04); }
  94% { transform: rotate(11deg) scale(1.04); }
}

@keyframes note-float {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-3px); }
}

@keyframes music-bounce {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-6px); }
}

@keyframes star-glow {
  0%, 100% { opacity: 0.35; scale: 0.9; rotate: -4deg; }
  50% { opacity: 0.8; scale: 1.08; rotate: 4deg; }
}

@keyframes pin-bounce {
  0%, 100% { translate: 0 0; }
  45% { translate: 0 -5px; }
  60% { translate: 0 -2px; }
}

@keyframes doodle-pulse {
  0%, 75%, 100% { transform: rotate(0) scale(1); }
  82% { transform: rotate(-5deg) scale(1.05); }
  89% { transform: rotate(5deg) scale(1.05); }
}

@keyframes footer-float {
  0%, 100% { translate: 0 0; rotate: -1deg; }
  50% { translate: 0 -4px; rotate: 1deg; }
}

@keyframes dock-bob {
  0%, 78%, 100% { translate: 0 0; scale: 1; }
  86% { translate: 0 -3px; scale: 1.06; }
}

@keyframes q-breathe {
  0%, 100% { opacity: 0.62; scale: 0.94; }
  50% { opacity: 1; scale: 1.06; }
}

@keyframes bullet-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 63, 140, 0); scale: 0.9; }
  50% { box-shadow: 0 0 0 4px rgba(239, 63, 140, 0.1); scale: 1.08; }
}

@keyframes masthead-star {
  0%, 100% { opacity: 0.38; scale: 0.84; rotate: -12deg; }
  50% { opacity: 1; scale: 1.12; rotate: 5deg; }
}

@keyframes answer-arrive {
  from { opacity: 0; translate: 0 -5px; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes candy-float {
  0%, 100% { transform: translateY(0) rotate(-14deg); }
  50% { transform: translateY(-8px) rotate(-7deg); }
}

@keyframes opening-pulse {
  0%, 100% { box-shadow: 5px 6px 0 var(--brown); }
  50% { box-shadow: 5px 6px 0 var(--brown), 0 0 0 6px rgba(239, 63, 140, 0.12); }
}

@keyframes lantern-sway {
  0%, 100% { transform: rotate(4deg); }
  50% { transform: rotate(-5deg); }
}

@keyframes drink-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

@keyframes button-shine {
  0%, 68% { left: -32%; }
  86%, 100% { left: 116%; }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Subpages */
.subpage-topbar {
  grid-template-columns: 46px 1fr 46px;
}

.subpage-topbar .wordmark {
  justify-self: center;
}

.back-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 1.4rem;
  font-weight: 900;
}

.top-text-link {
  justify-self: end;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
}

.page-masthead {
  position: relative;
  padding: 55px 20px 48px;
  overflow: hidden;
  text-align: center;
}

.page-masthead::before,
.page-masthead::after {
  position: absolute;
  color: var(--pink);
  content: "☆";
  font-size: 2rem;
  transform: rotate(-12deg);
}

.page-masthead::before {
  top: 28px;
  left: 26px;
}

.page-masthead::after {
  right: 26px;
  bottom: 24px;
}

.page-masthead p {
  margin: 0;
  color: var(--pink);
  font-family: "Arial Rounded MT Bold", sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
}

.page-masthead h1 {
  margin: 7px 0 8px;
  font-size: 2.25rem;
  line-height: 1.25;
}

.page-masthead span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.faq-terms-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.faq-terms-note a {
  margin: 0 3px;
  color: var(--pink);
  border-bottom: 1px solid currentColor;
  font-weight: 900;
}

.faq-masthead {
  border-bottom: 8px solid var(--pink);
}

.terms-masthead {
  border-bottom: 8px solid var(--wood);
}

.faq-tools {
  padding: 28px 16px 10px;
}

.faq-tools > label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.78rem;
  font-weight: 900;
}

.search-box {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  padding: 3px 12px;
  background: var(--paper-light);
  border: 2px solid var(--brown);
  border-radius: 8px;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.search-box:focus-within {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(239, 63, 140, 0.12);
  transform: translateY(-1px);
}

.search-box span {
  color: var(--pink);
  font-size: 1.4rem;
  font-weight: 900;
}

.search-box input {
  width: 100%;
  min-height: 44px;
  color: var(--brown-dark);
  background: transparent;
  border: 0;
  outline: 0;
}

.category-tabs {
  display: flex;
  gap: 8px;
  margin: 18px -16px 0;
  padding: 0 16px 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tabs a {
  flex: 0 0 auto;
  padding: 7px 12px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.search-empty {
  padding: 26px 0;
  color: var(--muted);
  text-align: center;
}

.faq-content,
.terms-content {
  padding: 30px 16px 10px;
}

.faq-group {
  scroll-margin-top: 74px;
  margin-bottom: 52px;
}

.faq-group[hidden] {
  display: none;
}

.faq-group-title,
.terms-heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--brown);
}

.faq-group-title span,
.terms-heading span {
  color: var(--pink);
  font-family: "Arial Rounded MT Bold", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
}

.faq-group-title h2,
.terms-heading h2 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.35;
}

.faq-group details {
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.faq-group details + details {
  margin-top: 8px;
}

.faq-group summary {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr 20px;
  gap: 8px;
  align-items: start;
  padding: 15px 13px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.55;
  cursor: pointer;
  list-style: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.faq-group summary:active {
  color: var(--pink);
  background: rgba(255, 211, 229, 0.28);
}

.faq-group summary::-webkit-details-marker {
  display: none;
}

.faq-group summary::before {
  color: var(--pink);
  content: "Q";
  font-family: "Cooper Black", Georgia, serif;
  font-size: 1.25rem;
}

.faq-group summary::after {
  color: var(--brown);
  content: "+";
  font-size: 1.25rem;
  line-height: 1.2;
  text-align: center;
  transition: color 220ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-group details[open] summary::after {
  content: "−";
  color: var(--pink);
  transform: rotate(180deg);
}

.faq-group details[open] {
  border-color: var(--pink);
  box-shadow: 3px 4px 0 var(--pink-soft);
}

.faq-group details > div {
  position: relative;
  padding: 0 14px 16px 49px;
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-group details > div::before {
  position: absolute;
  top: 1px;
  left: 15px;
  color: var(--brown);
  content: "A";
  font-family: "Cooper Black", Georgia, serif;
  font-size: 1.25rem;
}

.faq-group details p {
  margin: 0 0 8px;
}

.faq-group details p:last-child {
  margin-bottom: 0;
}

.faq-group details.filtered-out {
  display: none;
}

.faq-bottom {
  margin: 8px 16px 60px;
  padding: 24px 18px;
  color: var(--paper-light);
  background: var(--wood-dark);
  border-radius: 8px;
  text-align: center;
}

.faq-bottom p {
  margin: 0 0 12px;
  font-weight: 900;
}

.faq-bottom a {
  display: inline-flex;
  padding: 9px 16px;
  color: #fff;
  background: var(--pink);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.terms-lead {
  margin: 28px 16px 4px;
  padding: 20px;
  background: var(--paper-light);
  border: 2px solid var(--brown);
  border-radius: 8px;
  box-shadow: 5px 6px 0 var(--paper-deep);
}

.terms-lead p {
  margin: 0 0 9px;
}

.terms-lead p:last-child {
  margin-bottom: 0;
}

.terms-section {
  margin-bottom: 50px;
}

.terms-section > p {
  color: var(--muted);
}

.terms-section ul {
  display: grid;
  gap: 12px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.terms-section li {
  position: relative;
  padding-left: 20px;
}

.terms-section li::before {
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--pink);
  border-radius: 50%;
}

.warning-paper,
.cost-paper {
  padding: 20px;
  border: 2px solid var(--brown);
  border-radius: 8px;
}

.warning-paper {
  background: #fff0f4;
}

.cost-paper {
  background: #fff1c9;
}

.terms-sign {
  margin: 0 16px 58px;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-align: right;
}

.terms-sign p {
  margin: 0;
  font-size: 0.78rem;
}

.terms-sign strong {
  color: var(--pink);
  font-family: "Cooper Black", "Arial Rounded MT Bold", serif;
}

.compact-footer {
  padding-bottom: 38px;
  border-top: 5px solid var(--wood);
}

@media (min-width: 600px) {
  .brand-visual {
    min-height: 400px;
  }

  .brand-visual > img {
    width: min(100%, 540px);
  }

  .section,
  .scene-caption,
  .faq-content,
  .terms-content {
    padding-right: 48px;
    padding-left: 48px;
  }

  .hero-copy {
    padding-right: 48px;
    padding-left: 48px;
  }

  .open-board {
    margin-right: 48px;
    margin-left: 48px;
  }

  .dish-stage {
    max-width: 560px;
    min-height: 390px;
    margin-right: auto;
    margin-left: auto;
  }

  .wood-links {
    padding-right: 48px;
    padding-left: 48px;
  }

  .faq-tools,
  .terms-lead,
  .terms-sign {
    margin-right: 48px;
    margin-left: 48px;
  }

  .faq-tools {
    padding-right: 0;
    padding-left: 0;
  }
}
