:root {
  --ink: #17332b;
  --green: #103f32;
  --green-deep: #082f26;
  --cream: #f6f0e4;
  --cream-light: #fcf9f2;
  --paper: #eee2ce;
  --red: #a64535;
  --gold: #c29a4b;
  --brown: #76543c;
  --muted: #6f746d;
  --line: rgba(23, 51, 43, 0.18);
  --shadow: 0 24px 70px rgba(45, 36, 22, 0.14);
  --serif: "Iowan Old Style", "Baskerville", "Noto Serif KR", "Songti SC", "SimSun", serif;
  --sans: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", "Microsoft YaHei", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(194, 154, 75, 0.08), transparent 28rem),
    var(--cream-light);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--green) 0 55%, var(--red) 55% 78%, var(--gold) 78%);
}

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

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 4px;
  color: white;
  background: var(--green);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 15;
  top: 3px;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 64px, 1480px);
  height: 82px;
  margin: 0 auto;
  transition: width 220ms ease, height 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  width: 100%;
  height: 70px;
  padding: 0 max(28px, calc((100vw - 1420px) / 2));
  border-bottom: 1px solid rgba(23, 51, 43, 0.1);
  background: rgba(252, 249, 242, 0.92);
  box-shadow: 0 12px 36px rgba(42, 35, 24, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: max-content;
  color: var(--green);
  letter-spacing: -0.02em;
}

.brand-ko {
  font-size: 1.22rem;
  font-weight: 800;
}

.brand-zh {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.brand-divider {
  width: 1px;
  height: 20px;
  background: rgba(16, 63, 50, 0.45);
}

.desktop-nav {
  display: flex;
  gap: clamp(24px, 3.2vw, 50px);
  font-size: 0.86rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 8px 2px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.language-button {
  padding: 6px 4px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.language-button.is-active {
  color: var(--red);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: clamp(50px, 6vw, 100px);
  min-height: 930px;
  padding: 150px max(32px, calc((100vw - 1360px) / 2)) 90px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 49.85%, rgba(16, 63, 50, 0.08) 49.85% 50%, transparent 50%),
    var(--cream-light);
}

.hero::before {
  position: absolute;
  top: 135px;
  left: -125px;
  width: 315px;
  height: 315px;
  border: 1px solid rgba(118, 84, 60, 0.28);
  border-radius: 50%;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(118, 84, 60, 0.15) 0 2px, transparent 2px 13px);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 24px;
  content: "";
  border-top: 3px solid #d5c092;
  background: repeating-linear-gradient(90deg, var(--green) 0 27px, #1c5646 27px 29px);
}

.hero-pattern {
  position: absolute;
  right: 7%;
  bottom: 13%;
  width: 200px;
  height: 200px;
  opacity: 0.07;
  background-image:
    linear-gradient(var(--green) 1px, transparent 1px),
    linear-gradient(90deg, var(--green) 1px, transparent 1px);
  background-size: 20px 20px;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.7vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: 0.12em;
  color: var(--green);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: #4c5b55;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.9;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 170ms ease, background-color 170ms ease, color 170ms ease, border-color 170ms ease;
}

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

.button-primary {
  color: white;
  background: var(--green);
  box-shadow: 0 14px 28px rgba(16, 63, 50, 0.18);
}

.button-primary:hover {
  background: var(--green-deep);
}

.button-ghost {
  border-color: rgba(23, 51, 43, 0.3);
  background: rgba(255, 255, 255, 0.35);
}

.button-ghost:hover {
  border-color: var(--green);
}

.hero-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  margin: 60px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-values li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-right: 20px;
}

.hero-values li + li {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero-values strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.hero-values span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-visual {
  justify-self: end;
  width: min(100%, 650px);
  padding: 38px 28px 0 0;
}

.hero-poster {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(118, 84, 60, 0.25);
  background: #efe3cf;
  box-shadow: var(--shadow);
}

.hero-poster::before {
  position: absolute;
  z-index: -1;
  top: 24px;
  right: -28px;
  bottom: -28px;
  left: 24px;
  content: "";
  border: 1px solid rgba(16, 63, 50, 0.32);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-poster figcaption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 20px;
  padding: 18px 6px 8px;
}

.hero-poster figcaption span {
  grid-column: 1 / -1;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-poster figcaption strong {
  font-size: 0.95rem;
}

.hero-poster figcaption b {
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.04rem;
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  display: grid;
  place-content: center;
  width: 72px;
  height: 72px;
  transform: rotate(7deg);
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  background: var(--cream-light);
  font-family: var(--serif);
  line-height: 1;
  box-shadow: 0 8px 24px rgba(80, 32, 23, 0.12);
}

.hero-stamp span {
  font-size: 1.45rem;
}

.hero-stamp small {
  font-size: 0.82rem;
  text-align: center;
}

.hero-note {
  margin: 34px 0 0 20%;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
}

.intro-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 70px);
  min-height: 76px;
  padding: 18px 28px;
  color: #f6eddd;
  background: var(--green);
}

.intro-strip p {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.intro-strip span {
  color: var(--gold);
  font-size: 0.55rem;
}

.section {
  width: min(100% - 64px, 1360px);
  margin: 0 auto;
  padding: 140px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 48px;
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading h2,
.story-copy h2,
.contact-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.section-intro {
  margin: 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.85;
}

.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.filter-button {
  min-width: 74px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--green);
  color: white;
  background: var(--green);
}

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

.menu-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 51, 43, 0.14);
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 12px 32px rgba(58, 45, 29, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(58, 45, 29, 0.11);
}

.menu-card[hidden] {
  display: none;
}

.menu-image-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--paper);
  cursor: zoom-in;
}

.menu-image-button img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.menu-card:hover .menu-image-button img {
  transform: scale(1.035);
}

.zoom-mark {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: white;
  background: rgba(8, 47, 38, 0.72);
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
}

.spice-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 251, 242, 0.9);
  font-size: 0.66rem;
  box-shadow: 0 5px 15px rgba(45, 25, 20, 0.12);
}

.menu-card-copy {
  position: relative;
  min-height: 255px;
  padding: 27px 28px 30px;
}

.menu-index {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.menu-card h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 7px 14px;
  margin: 0;
  font-family: var(--serif);
  line-height: 1.25;
}

.menu-card h3 span {
  font-size: 1.42rem;
}

.menu-card h3 small {
  color: var(--brown);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.menu-description {
  margin: 15px 0 44px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.75;
}

.price {
  position: absolute;
  right: 28px;
  bottom: 27px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.27rem;
  letter-spacing: 0.03em;
}

.menu-card-secondary .menu-card-copy {
  min-height: 225px;
  border-top: 3px solid var(--gold);
}

.menu-card-secondary .menu-description {
  margin-bottom: 0;
}

.price-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  text-align: right;
}

.printed-menu {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  margin-top: 100px;
  padding: clamp(38px, 6vw, 80px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(194, 154, 75, 0.08), transparent 50%),
    var(--paper);
}

.printed-menu-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.3rem);
  font-weight: 600;
  line-height: 1.2;
}

.printed-menu-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #5f665f;
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
  padding: 10px 0 8px;
  border: 0;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.printed-menu-image {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(118, 84, 60, 0.28);
  background: #f7efe0;
  box-shadow: 0 20px 50px rgba(54, 42, 25, 0.13);
  cursor: zoom-in;
  transition: transform 200ms ease;
}

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

.printed-menu-image:hover {
  transform: rotate(-0.5deg) scale(1.01);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.76fr);
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
  padding: 130px max(32px, calc((100vw - 1360px) / 2));
  overflow: hidden;
  border-top: 1px solid rgba(16, 63, 50, 0.1);
  border-bottom: 1px solid rgba(16, 63, 50, 0.1);
  background: #f0e5d2;
}

.story-media {
  position: relative;
  min-height: 0;
}

.owner-image {
  width: 100%;
  height: auto;
  border: 12px solid var(--cream-light);
  box-shadow: var(--shadow);
}

.story-copy {
  max-width: 620px;
}

.story-copy h2 {
  margin-bottom: 34px;
}

.story-copy .story-person {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16, 63, 50, 0.18);
  color: var(--green);
}

.story-person strong {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.story-person span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.story-copy > p:not(.eyebrow) {
  margin: 0 0 18px;
  color: #4f5d57;
  font-size: 0.93rem;
  line-height: 1.95;
}

.story-copy blockquote {
  margin: 38px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(16, 63, 50, 0.24);
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 700;
}

.contact-section {
  padding: 130px max(32px, calc((100vw - 1360px) / 2));
  overflow: hidden;
  color: #f8f0df;
  background:
    radial-gradient(circle at 88% 18%, rgba(194, 154, 75, 0.16), transparent 26rem),
    var(--green);
}

.contact-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
  margin-bottom: 70px;
}

.contact-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -28px;
  color: #e8c66d;
}

.contact-heading h2 {
  color: #fff8e9;
}

.contact-heading > p:not(.eyebrow) {
  margin: 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  color: rgba(248, 240, 223, 0.72);
  font-size: 0.92rem;
  line-height: 1.9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.45fr;
  border-top: 1px solid rgba(248, 240, 223, 0.28);
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 34px 34px 30px;
  border-right: 1px solid rgba(248, 240, 223, 0.18);
  color: #fff8e9;
  transition: color 180ms ease, background-color 180ms ease;
}

a.contact-card:hover {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.contact-card:last-child {
  border-right: 0;
}

.contact-index {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(232, 198, 109, 0.55);
  font-family: var(--serif);
  font-size: 0.75rem;
}

.contact-label {
  margin-bottom: 42px;
  color: #e8c66d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card strong {
  margin-top: auto;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.65vw, 1.55rem);
  font-weight: 600;
  line-height: 1.5;
}

.contact-card small {
  margin-top: 12px;
  color: rgba(248, 240, 223, 0.6);
  font-size: 0.72rem;
  line-height: 1.6;
}

.contact-address strong {
  max-width: 440px;
  font-size: clamp(1rem, 1.35vw, 1.3rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 120px;
  padding: 28px max(32px, calc((100vw - 1360px) / 2));
  color: var(--green);
  background: var(--cream-light);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
}

.site-footer > a {
  justify-self: end;
  font-size: 0.74rem;
  font-weight: 800;
}

.lightbox {
  width: min(94vw, 1320px);
  height: min(92vh, 960px);
  max-width: none;
  max-height: none;
  padding: 56px 26px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  background: rgba(7, 24, 20, 0.97);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.lightbox::backdrop {
  background: rgba(5, 16, 13, 0.78);
  backdrop-filter: blur(8px);
}

.lightbox-stage {
  display: grid;
  place-items: center;
  width: 100%;
  height: calc(100% - 42px);
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox > p {
  margin: 10px 0 0;
  font-size: 0.82rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: white;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal[data-delay="1"] {
  transition-delay: 100ms;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
    gap: 45px;
    min-height: 820px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6vw, 5.2rem);
  }

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

  .story-section {
    gap: 70px;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: calc(100% - 40px);
  }

  .site-header.is-scrolled {
    padding: 0 20px;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 66px;
    min-height: auto;
    padding-top: 140px;
  }

  .hero::before {
    top: 100px;
    left: -190px;
  }

  .hero-visual {
    justify-self: center;
    width: min(90%, 650px);
  }

  .section {
    width: min(100% - 40px, 1360px);
    padding: 100px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-intro {
    max-width: 620px;
  }

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

  .story-section {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 100px 32px;
  }

  .story-media,
  .story-copy {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .contact-section {
    padding: 100px 32px;
  }

  .contact-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }

  .contact-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .contact-heading > p:not(.eyebrow) {
    max-width: 620px;
  }

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

  .contact-address {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(248, 240, 223, 0.18);
  }

}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 74px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 66px;
  }

  .brand {
    gap: 7px;
  }

  .brand-ko {
    font-size: 1.02rem;
  }

  .brand-zh {
    font-size: 0.88rem;
  }

  .brand-divider {
    height: 16px;
  }

  .language-switcher {
    gap: 4px;
    font-size: 0.69rem;
  }

  .hero {
    gap: 50px;
    padding: 118px 20px 76px;
    background: var(--cream-light);
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13.5vw, 4.1rem);
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 0.96rem;
    line-height: 1.78;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-values {
    margin-top: 42px;
  }

  .hero-values li,
  .hero-values li + li {
    padding-right: 8px;
    padding-left: 8px;
  }

  .hero-values li:first-child {
    padding-left: 0;
  }

  .hero-values strong {
    font-size: 1.07rem;
  }

  .hero-values span {
    font-size: 0.67rem;
  }

  .hero-visual {
    width: calc(100% - 12px);
    padding: 20px 14px 0 0;
  }

  .hero-stamp {
    width: 58px;
    height: 58px;
  }

  .hero-poster {
    padding: 7px;
  }

  .hero-poster figcaption {
    gap: 2px 12px;
    padding: 14px 4px 7px;
  }

  .hero-note {
    margin-left: 7%;
  }

  .intro-strip {
    gap: 12px;
    min-height: 64px;
    padding: 14px 16px;
  }

  .intro-strip p {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .section {
    width: calc(100% - 32px);
    padding: 84px 0;
  }

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

  .section-heading h2,
  .story-copy h2,
  .contact-heading h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.3rem);
  }

  .menu-toolbar {
    flex-wrap: nowrap;
    margin-right: -16px;
    margin-left: -16px;
    padding-right: 16px;
    padding-left: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .menu-toolbar::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

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

  .menu-card-copy,
  .menu-card-secondary .menu-card-copy {
    min-height: 220px;
    padding: 24px 22px 26px;
  }

  .price {
    right: 22px;
    bottom: 24px;
  }

  .price-note {
    text-align: left;
  }

  .printed-menu {
    gap: 36px;
    margin-top: 68px;
    padding: 32px 20px;
  }

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

  .story-section {
    padding: 84px 20px;
  }

  .owner-image {
    border-width: 7px;
  }

  .story-copy .story-person {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .story-copy > p:not(.eyebrow) {
    font-size: 0.88rem;
    line-height: 1.85;
  }

  .contact-section {
    padding: 84px 20px;
  }

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

  .contact-card,
  .contact-address {
    grid-column: auto;
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid rgba(248, 240, 223, 0.18);
  }

  .contact-card:last-child {
    border-bottom: 0;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 10px;
    min-height: 104px;
    padding: 24px 20px;
  }

  .site-footer p {
    display: none;
  }

.lightbox {
    width: 96vw;
    height: 92vh;
    padding: 52px 12px 16px;
  }
}

.wechat-guide-open {
  overflow: hidden;
}

.wechat-guide {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 47, 38, 0.92);
  backdrop-filter: blur(10px);
}

.wechat-guide[hidden] {
  display: none;
}

.wechat-guide-panel {
  position: relative;
  width: min(100%, 460px);
  padding: 38px 28px 28px;
  border: 1px solid rgba(194, 154, 75, 0.55);
  border-radius: 18px;
  color: var(--ink);
  background: var(--cream-light);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.wechat-guide-corner {
  position: absolute;
  top: 14px;
  right: 18px;
  color: var(--red);
  font-size: 1.15rem;
  font-weight: 800;
}

.wechat-guide h2 {
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 2.75rem);
  line-height: 1.15;
}

.wechat-guide-lead {
  margin: 0;
  color: var(--muted);
}

.wechat-guide ol {
  margin: 22px 0;
  padding-left: 1.4em;
  font-weight: 700;
  line-height: 2;
}

.wechat-guide-url {
  padding: 12px 14px;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  background: var(--cream);
  font-size: 0.82rem;
}

.wechat-guide-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.wechat-guide-actions button {
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.wechat-guide-copy {
  border: 1px solid var(--green);
  color: var(--cream-light);
  background: var(--green);
}

.wechat-guide-continue {
  border: 0;
  color: var(--muted);
  background: transparent;
}

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

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