:root {
  --bg: #f6f2ec;
  --paper: #fffaf2;
  --ink: #211d19;
  --muted: #665f56;
  --line: rgba(33, 29, 25, 0.13);
  --accent: #1c7d73;
  --accent-dark: #11564f;
  --rose: #b35f55;
  --night: #29251f;
  --shadow: 0 22px 70px rgba(36, 29, 19, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans SC", "Noto Sans TC", "Noto Sans KR", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 16%, rgba(28, 125, 115, 0.14), transparent 28rem),
    linear-gradient(135deg, #f6f2ec 0%, #fffaf2 54%, #ecf3ef 100%);
  line-height: 1.72;
}

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

.landing-page,
.shop-page {
  min-height: 100vh;
}

.landing-shell,
.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.landing-shell {
  padding: 42px 0 28px;
}

.landing-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 8px 0 36px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.landing-footer p {
  margin: 0;
}

.landing-footer__credit {
  color: #d4a017;
  font-weight: 700;
  text-decoration: none;
}

.landing-footer__credit:hover {
  text-decoration: underline;
  color: #e8b820;
}

.landing-hero,
.language-panel,
.hero,
.info-card,
.service-card,
.map-section {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: var(--shadow);
}

.landing-hero {
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
  padding: clamp(28px, 6vw, 64px);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.landing-hero::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33, 29, 25, 0.26), rgba(33, 29, 25, 0.26)),
    url("../../images/micoco-spa.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.95;
}

.landing-copy,
.landing-info,
.hero-content {
  position: relative;
  z-index: 1;
}

.landing-copy {
  color: #fff;
  max-width: 680px;
  text-shadow: 0 1px 16px rgba(33, 29, 25, 0.42);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.landing-copy .eyebrow,
.hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 8vw, 5.8rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-whatsapp {
  background: var(--accent);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--accent-dark);
}

.btn-outline {
  color: rgba(17, 15, 13, 0.98);
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.btn-dark {
  color: #fff;
  background: var(--night);
}

.landing-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.landing-info div {
  padding: 14px;
  border-radius: 12px;
  background: rgba(33, 29, 25, 0.05);
}

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

.landing-info strong {
  display: block;
  margin: 4px 0;
  font-size: 1.08rem;
  color: var(--ink);
}

.language-panel {
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 22px;
}

.language-panel__intro {
  text-align: center;
  margin-bottom: 20px;
}

.language-panel__intro h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.language-panel__intro .eyebrow {
  margin-bottom: 0;
}

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

.language-grid a {
  min-height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.language-grid a.language-grid__primary {
  border-color: rgba(28, 125, 115, 0.55);
  border-width: 2px;
  background: rgba(28, 125, 115, 0.09);
  color: var(--accent-dark);
  box-shadow: 0 14px 34px rgba(36, 29, 19, 0.08);
}

.language-grid a.language-grid__primary:hover {
  transform: translateY(-2px);
  background: rgba(28, 125, 115, 0.14);
}

.language-grid a.language-grid__primary span {
  letter-spacing: 0.01em;
  font-weight: 900;
}

.language-grid span {
  font-weight: 800;
}

.language-grid small {
  color: var(--rose);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 242, 236, 0.9);
  backdrop-filter: blur(12px);
}

.topbar-inner {
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 900;
}

.language-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.language-switch a {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switch a[aria-current="page"] {
  background: var(--night);
  color: #fff;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  padding: 10px;
  cursor: pointer;
}

.lang-menu-btn span {
  display: block;
  height: 2px;
  background: var(--night);
  border-radius: 999px;
}

.lang-menu-btn span + span {
  margin-top: 6px;
}

.lang-menu {
  border-bottom: 1px solid var(--line);
  background: rgba(246, 242, 236, 0.96);
  backdrop-filter: blur(12px);
}

.lang-menu-list {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 0 14px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.lang-menu-list a {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.lang-menu-list a[aria-current="page"] {
  background: var(--night);
  color: #fff;
}

.hero {
  min-height: 620px;
  display: flex;
  align-items: end;
  margin: 24px 0;
  padding: clamp(28px, 6vw, 62px);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  color: #fff;
  max-width: 760px;
  text-shadow: 0 1px 16px rgba(33, 29, 25, 0.42);
}

.hero-intro {
  margin: 0 0 18px;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.98rem, 1.9vw, 1.12rem);
  line-height: 1.55;
}

.hero-content h1 {
  margin-bottom: 16px;
}

.section {
  padding: clamp(40px, 7vw, 72px) 0;
}

.section-head {
  max-width: 740px;
  margin-bottom: 24px;
}

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

.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

.carousel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.86);
  box-shadow: var(--shadow);
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
  transform: translateX(0%);
  transition: transform 420ms ease;
}

.carousel-slide {
  flex: 0 0 100%;
  aspect-ratio: 16 / 9;
  background: #ddd;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(17, 15, 13, 0.58);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.carousel-btn--prev {
  left: 12px;
}

.carousel-btn--next {
  right: 12px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(17, 15, 13, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.carousel-dot.is-active {
  background: #fff;
}

.photo-slot {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.86);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.photo-slot__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-slot__caption {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  color: rgba(33, 29, 25, 0.86);
  max-width: 860px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.info-card,
.service-card {
  border-radius: 18px;
  padding: 24px;
}

.info-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.info-card strong {
  display: block;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.menu-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

#menu .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.menu-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.88);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 30px);
}

.menu-panel .section-head {
  margin-bottom: 12px;
}

.menu-panel .section-head p:last-child {
  margin-bottom: 0;
}

.menu-note {
  justify-content: center;
}

.menu-note span {
  display: inline-flex;
  align-items: flex-start;
  min-height: 0;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
  max-width: 52ch;
}

.menu-section-title {
  margin: 30px 0 14px;
  font-size: 1.28rem;
  text-align: center;
}

.menu-section-actions {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.combo-viewall {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 800;
  width: fit-content;
}

.back-link:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

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

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

.menu-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 16px 42px rgba(36, 29, 19, 0.09);
}

.menu-card h3 {
  margin-bottom: 14px;
}

.menu-list,
.combo-list {
  display: grid;
  gap: 8px;
}

.menu-more {
  display: grid;
  gap: 8px;
}

.menu-more summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.menu-more summary::-webkit-details-marker {
  display: none;
}

.menu-more summary::after {
  content: "+";
  margin-left: 8px;
  color: var(--accent);
  font-weight: 900;
}

.menu-more[open] summary::after {
  content: "-";
}

.menu-more-list {
  display: grid;
  gap: 8px;
}

.menu-row,
.combo-row {
  display: grid;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.menu-row {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.combo-row {
  grid-template-columns: minmax(0, 1.35fr) auto auto auto;
}

.menu-row span,
.combo-row span {
  min-width: 0;
  font-weight: 700;
}

.combo-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
}

.menu-row strong,
.combo-row strong {
  white-space: nowrap;
  font-size: 1.04rem;
}

.menu-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(179, 95, 85, 0.12);
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 900;
  vertical-align: middle;
}

.menu-badge--popular {
  background: rgba(28, 125, 115, 0.13);
  color: var(--accent-dark);
}

.menu-badge--extension {
  background: rgba(33, 29, 25, 0.08);
  color: var(--muted);
}

.menu-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.menu-book-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.booking-page {
  min-height: 100vh;
}

.booking-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 6vw, 68px) 0;
}

.booking-back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 18px;
  padding: clamp(22px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: var(--shadow);
}

.booking-copy {
  grid-column: 1 / -1;
}

.booking-copy h1 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.booking-copy p {
  max-width: 680px;
  color: var(--muted);
}

.booking-summary,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.booking-summary {
  padding: 22px;
}

.booking-summary h2 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.booking-summary dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.booking-summary div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.booking-summary dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.booking-summary dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.booking-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.booking-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
}

.map-copy {
  padding: 12px;
}

.address {
  color: var(--muted);
}

.visit-facts {
  margin: 14px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.visit-facts p {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}

.visit-facts__near {
  margin-bottom: 4px;
}

.visit-week {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
}

.visit-week__summary {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink);
}

.visit-week__summary strong {
  font-weight: 800;
}

.visit-facts .visit-week__row {
  font-weight: 400;
  font-size: 0.94rem;
  color: var(--ink);
}

.map-frame {
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ddd;
}

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

.site-footer {
  padding: 28px 0 42px;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

@media (max-width: 880px) {
  .landing-hero,
  .map-section,
  .booking-card {
    grid-template-columns: 1fr;
  }

  .landing-info {
    grid-template-columns: 1fr;
  }

  .language-grid,
  .info-grid,
  .services-grid,
  .menu-grid,
  .menu-grid--combo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  .landing-shell,
  .page-shell,
  .topbar-inner {
    width: min(100% - 22px, 1120px);
  }

  .landing-shell {
    padding: 14px 0;
  }

  body {
    line-height: 1.62;
  }

  h1 {
    font-size: clamp(2.12rem, 12vw, 3.4rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .landing-hero,
  .hero {
    min-height: auto;
    border-radius: 18px;
  }

  .landing-hero {
    padding: 24px 18px;
    gap: 18px;
  }

  .hero {
    margin: 12px 0 8px;
    padding: 96px 18px 24px;
  }

  .lead {
    margin-bottom: 18px;
    font-size: 0.98rem;
  }

  .landing-info {
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
  }

  .landing-info div {
    padding: 10px 12px;
  }

  .landing-info strong {
    font-size: 0.98rem;
  }

  .language-panel {
    margin-top: 10px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .language-panel__intro {
    margin-bottom: 10px;
  }

  .language-panel__intro h2 {
    margin-bottom: 6px;
    font-size: 1.12rem;
    line-height: 1.25;
  }

  .language-grid {
    gap: 6px;
  }

  .language-grid a {
    min-height: 44px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.92rem;
  }

  .language-grid a.language-grid__primary {
    grid-column: 1 / -1;
    min-height: 48px;
  }

  .language-grid span {
    font-weight: 700;
  }

  .topbar {
    position: static;
  }

  .brand {
    line-height: 1.3;
  }

  .language-switch {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .language-switch::-webkit-scrollbar {
    display: none;
  }

  .language-switch a {
    flex: 0 0 auto;
    padding: 6px 11px;
  }

  .section {
    padding: 34px 0;
  }

  .section-head {
    margin-bottom: 16px;
  }

  .info-grid,
  .services-grid,
  .menu-grid,
  .menu-grid--combo {
    grid-template-columns: 1fr;
  }

  .info-grid,
  .services-grid,
  .menu-grid,
  .menu-grid--combo {
    gap: 10px;
  }

  .info-card,
  .service-card,
  .menu-card {
    padding: 16px;
    border-radius: 14px;
  }

  .info-card strong {
    font-size: 1.06rem;
  }

  .menu-note {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
  }

  .menu-note span {
    align-items: flex-start;
    min-height: 0;
    padding: 9px 12px;
    border-radius: 12px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .menu-panel {
    border-radius: 18px;
    padding: 16px;
  }

  .combo-viewall {
    width: 100%;
  }

  .back-link {
    width: 100%;
    justify-content: center;
  }

  .menu-section-title {
    margin: 24px 0 10px;
    font-size: 1.08rem;
  }

  .menu-card h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
  }

  .menu-list,
  .combo-list {
    gap: 9px;
  }

  .menu-more {
    gap: 9px;
  }

  .menu-more summary {
    justify-self: stretch;
    min-height: 36px;
    font-size: 0.82rem;
  }

  .menu-more-list {
    gap: 9px;
  }

  .menu-row,
  .combo-row {
    gap: 6px 10px;
    min-height: 0;
    padding: 12px 12px 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.62);
  }

  .combo-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .combo-row em {
    grid-column: 1;
    grid-row: 2;
  }

  .combo-row strong {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .combo-row .menu-book-btn {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
  }

  .menu-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-row span,
  .combo-row span {
    line-height: 1.35;
    align-self: center;
  }

  .menu-row strong,
  .combo-row strong {
    font-size: 1rem;
    align-self: center;
  }

  .menu-row .menu-book-btn {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }

  .menu-badge {
    margin-left: 6px;
    min-height: 20px;
    padding: 0 7px;
    font-size: 0.66rem;
  }

  .menu-book-btn {
    min-width: 64px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.78rem;
  }

  .map-section {
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
  }

  .map-copy {
    padding: 4px;
  }

  .map-frame {
    min-height: 260px;
    border-radius: 12px;
  }

  .booking-shell {
    width: min(100% - 22px, 920px);
    padding: 18px 0 34px;
  }

  .booking-back {
    min-height: 38px;
    margin-bottom: 12px;
    font-size: 0.84rem;
  }

  .booking-card {
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
  }

  .booking-copy h1 {
    font-size: clamp(1.85rem, 10vw, 2.7rem);
  }

  .booking-summary,
  .booking-form {
    padding: 16px;
    border-radius: 14px;
  }

  .booking-form input {
    min-height: 46px;
  }

  .topbar-inner {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
  }

  .btn {
    width: 100%;
  }

  .language-switch {
    display: none;
  }

  .lang-menu-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

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

@media (max-width: 380px) {
  .landing-shell,
  .page-shell,
  .topbar-inner,
  .booking-shell {
    width: min(100% - 16px, 1120px);
  }

  .hero {
    padding: 82px 14px 20px;
  }

  .landing-hero,
  .language-panel,
  .booking-card {
    border-radius: 14px;
  }

  .menu-card {
    padding: 12px;
  }

  .menu-row,
  .combo-row {
    padding: 10px 10px 10px 12px;
    gap: 5px 8px;
  }

  .menu-row strong,
  .combo-row strong {
    font-size: 0.94rem;
  }

  .menu-book-btn {
    min-width: 58px;
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.74rem;
  }
}
