:root {
  --font-title-ko: "Noto Serif KR", serif;
  --font-title-en: "Cormorant Garamond", serif;
  --font-body: Pretendard, "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  --ink: #201713;
  --charcoal: #14110f;
  --charcoal-soft: #241b17;
  --bone: #faf8f5;
  --paper: #faf8f5;
  --muted: #7f7167;
  --text-muted: #7f7167;
  --line: rgba(32, 23, 19, 0.14);
  --line-dark: rgba(250, 248, 245, 0.18);
  --burgundy: #7a3040;
  --burgundy-dark: #5d2431;
  --gold: #b89155;
  --brass: #b89155;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-strong: 0 18px 46px rgba(20, 17, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bone);
  font-family: var(--font-body);
  line-height: 1.65;
}

body.has-lightbox {
  overflow: hidden;
}

body::selection {
  color: #fff;
  background: var(--burgundy);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video,
picture {
  display: block;
}

img,
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button {
  font: inherit;
}

section {
  scroll-margin-top: 120px;
}

#philosophy,
#maturation,
#menu,
#space,
#trust,
#info {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 18px 34px;
  color: #fff;
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  transition:
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
  will-change: transform;
}

.site-header.is-collapsed {
  transform: translateY(-100%);
}

.site-header.is-expanded {
  transform: translateY(0);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(250, 248, 245, 0.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.hero-scroll-active .site-header.is-scrolled {
  color: #fff;
  background: rgba(20, 17, 15, 0.38);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-scroll-active.hero-exit-active .site-header.is-scrolled {
  color: var(--ink);
  background: rgba(250, 248, 245, 0.96);
  border-bottom-color: var(--line);
}

.header-drawer-toggle {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 2;
  display: inline-grid;
  width: 62px;
  height: 34px;
  padding: 0;
  place-items: center;
  color: #fff;
  background: rgba(20, 17, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 24px rgba(20, 17, 15, 0.2);
  cursor: pointer;
  transform: translateX(-50%);
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.header-drawer-toggle:hover {
  color: #fff;
  background: var(--burgundy);
  border-color: var(--burgundy);
  box-shadow: 0 12px 28px rgba(93, 36, 49, 0.28);
}

.header-drawer-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.header-drawer-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-expanded .header-drawer-toggle svg {
  transform: rotate(180deg);
}

.site-header.is-scrolled .header-drawer-toggle {
  color: var(--ink);
  background: rgba(250, 248, 245, 0.98);
  border-color: var(--line);
}

.hero-scroll-active .site-header.is-scrolled .header-drawer-toggle {
  color: #fff;
  background: rgba(20, 17, 15, 0.72);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-scroll-active.hero-exit-active .site-header.is-scrolled .header-drawer-toggle {
  color: var(--ink);
  background: rgba(250, 248, 245, 0.98);
  border-color: var(--line);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 0;
  filter: drop-shadow(0 0 1px rgba(250, 248, 245, 0.96)) drop-shadow(0 0 5px rgba(250, 248, 245, 0.6))
    drop-shadow(0 8px 18px rgba(20, 17, 15, 0.22));
}

.brand-mark picture,
.brand-mark img {
  width: clamp(150px, 18vw, 275px);
  height: auto;
  aspect-ratio: 6434 / 1365;
}

.brand-mark img {
  object-fit: contain;
  object-position: center;
}

.site-header.is-scrolled .brand-mark {
  filter: none;
}

.hero-scroll-active .site-header.is-scrolled .brand-mark {
  filter: drop-shadow(0 0 1px rgba(250, 248, 245, 0.96)) drop-shadow(0 0 5px rgba(250, 248, 245, 0.6))
    drop-shadow(0 8px 18px rgba(20, 17, 15, 0.22));
}

.hero-scroll-active.hero-exit-active .site-header.is-scrolled .brand-mark {
  filter: none;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 600;
}

.primary-nav a {
  position: relative;
  padding: 6px 0;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ghost-link,
.solid-link,
.button,
.reservation-methods a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.ghost-link,
.button-secondary,
.reservation-methods a {
  background: transparent;
  border: 1px solid currentColor;
}

.solid-link,
.button-primary {
  color: #fff;
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.solid-link:hover,
.button-primary:hover,
.ghost-link:hover,
.button-secondary:hover,
.reservation-methods a:hover {
  color: #fff;
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.icon-link svg,
.footer-socials svg,
.instagram-prompt svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero::before {
  position: absolute;
  inset: 22px;
  z-index: 1;
  border: 1px solid rgba(184, 145, 85, 0.18);
  content: "";
  pointer-events: none;
}

.hero-media,
.hero-overlay,
.hero-transition-shade,
.hero-exit-wash {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  opacity: 0.84;
  transform: scale(1.08);
  transform-origin: center;
  filter: blur(16px) saturate(0.72) contrast(0.9);
}

.hero-media picture,
.hero-media img,
.hero-bg-video {
  width: 100%;
  height: 100%;
}

.hero-bg-video {
  display: none;
}

.hero-bg-video.is-active {
  display: block;
}

.hero-bg-image {
  opacity: 1;
  object-position: 58% 52%;
  transform: scale(1.03);
  filter: saturate(0.96) contrast(1.04);
  transition: opacity 0.8s ease;
}

.hero-bg-image.has-video {
  opacity: 0;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 17, 15, 0.76) 0%, rgba(20, 17, 15, 0.44) 46%, rgba(20, 17, 15, 0.12) 100%),
    linear-gradient(180deg, rgba(20, 17, 15, 0.08), rgba(20, 17, 15, 0.48));
}

.hero-transition-shade {
  z-index: 2;
  background: rgba(20, 17, 15, 0.98);
  opacity: 0;
  pointer-events: none;
}

.hero-exit-wash {
  --hero-exit-feather: clamp(1080px, 174vh, 1560px);
  z-index: 5;
  background: var(--paper);
  transform: scaleY(0);
  transform-origin: center bottom;
  pointer-events: none;
}

.hero-exit-wash::before {
  position: absolute;
  top: calc(var(--hero-exit-feather) * -1);
  right: 0;
  left: 0;
  height: var(--hero-exit-feather);
  background: linear-gradient(
    180deg,
    rgba(250, 248, 245, 0),
    rgba(250, 248, 245, 0.12) 24%,
    rgba(250, 248, 245, 0.52) 62%,
    rgba(250, 248, 245, 0.9) 84%,
    var(--paper)
  );
  content: "";
}

.hero-story-preview {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(520px, 1.35fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  width: min(100%, 1520px);
  margin: 0 auto;
  padding: clamp(104px, 12vh, 144px) clamp(24px, 4vw, 64px) clamp(52px, 7vh, 84px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.hero-story-preview-copy {
  display: grid;
  gap: 20px;
  max-width: 650px;
}

.hero-story-preview-label {
  margin: 0;
}

.hero-story-preview-title {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-title-ko);
  font-size: clamp(42px, 5.2vw, 74px);
  font-weight: 200;
  line-height: 1.2;
  word-break: keep-all;
}

.hero-story-preview-lead {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  word-break: keep-all;
}

.hero-story-preview-image {
  position: relative;
  justify-self: end;
  width: min(100%, 860px);
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal-soft);
  border: 1px solid rgba(184, 145, 85, 0.34);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.38);
}

.hero-story-preview-image img,
.hero-story-preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-story-preview-image img {
  z-index: 0;
  object-position: 58% 52%;
}

.hero-story-preview-video {
  z-index: 1;
  display: block;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-story-preview-video.is-ready {
  opacity: 1;
}

.hero-scroll-ready .hero-media,
.hero-scroll-ready .hero-transition-shade,
.hero-scroll-ready .hero-content,
.hero-scroll-ready .hero-note,
.hero-scroll-ready .hero-story-preview,
.hero-scroll-ready .hero-story-preview-copy,
.hero-scroll-ready .hero-story-preview-image,
.hero-scroll-ready .hero-exit-wash {
  will-change: transform, opacity, filter;
}

.hero-content {
  position: relative;
  z-index: 4;
  align-self: end;
  width: min(760px, calc(100% - 48px));
  margin: 0 0 96px clamp(24px, 7vw, 118px);
  padding-left: 24px;
  border-left: 1px solid rgba(184, 145, 85, 0.58);
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--font-title-en);
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.section-label::before,
.section-label::after,
.eyebrow::before,
.eyebrow::after {
  width: 40px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.hero h1,
.section h2,
.info-copy h2 {
  margin: 0;
  font-family: var(--font-title-ko);
  font-weight: 200;
  line-height: 1.18;
  word-break: keep-all;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 7vw, 92px);
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  word-break: keep-all;
}

.nowrap {
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 50px;
  padding: 0 24px;
}

.hero-note {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: 42px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 10px;
}

.hero-note a {
  display: inline-flex;
  min-width: 58px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 145, 85, 0.44);
  background: rgba(20, 17, 15, 0.28);
  font-family: var(--font-title-ko);
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-note a:hover {
  background: var(--burgundy);
  transform: translateY(-2px);
}

.section {
  padding: 112px clamp(20px, 5vw, 80px);
}

.story-section,
.menu-section,
.trust-section {
  background: var(--paper);
}

.story-layout,
.section-heading,
.info-section,
.info-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.story-copy {
  display: grid;
  gap: 28px;
}

.story-image {
  height: 680px;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.story-image picture {
  height: 110%;
}

.section h2,
.info-copy h2 {
  font-size: clamp(34px, 4.4vw, 62px);
}

.lead,
.section-heading > p,
.info-copy p {
  margin: 0;
  color: #5f5148;
  font-size: 18px;
  word-break: keep-all;
}

.quote-panel {
  margin: 0;
  padding: clamp(28px, 4vw, 48px);
  color: #fff;
  background: var(--charcoal-soft);
  border-top: 1px solid var(--gold);
  box-shadow: var(--shadow);
}

.quote-panel blockquote {
  margin: 0;
  font-family: var(--font-title-ko);
  font-size: clamp(30px, 3.4vw, 50px);
  font-style: normal;
  font-weight: 200;
  line-height: 1.28;
  word-break: keep-all;
}

.quote-panel figcaption {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.64);
}

.owner-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.owner-photo {
  position: relative;
  width: 62px;
  height: 62px;
  overflow: hidden;
  border-radius: 50%;
  background: #e7ded4;
}

.owner-photo::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  content: "대표";
  font-size: 13px;
  font-weight: 700;
}

.owner-photo img[src=""] {
  display: none;
}

.owner-card strong {
  display: block;
  font-size: 17px;
}

.owner-card p {
  margin: 4px 0 0;
  color: var(--muted);
}

.philosophy-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(184, 145, 85, 0.08), rgba(122, 48, 64, 0.08)),
    var(--charcoal);
}

.philosophy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.philosophy-header {
  display: grid;
  gap: 22px;
  align-content: start;
}

.philosophy-header h2 {
  color: #fff;
}

.philosophy-header h2 span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-body);
  font-size: 0.34em;
  font-weight: 500;
  vertical-align: middle;
}

.philosophy-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  word-break: keep-all;
}

.philosophy-visual {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(184, 145, 85, 0.36);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.philosophy-visual picture {
  height: 100%;
}

.philosophy-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 15, 0.02), rgba(20, 17, 15, 0.54));
  content: "";
}

.philosophy-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(184, 145, 85, 0.55);
  font-size: 14px;
  font-weight: 600;
  word-break: keep-all;
}

.philosophy-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 6px;
  background: rgba(184, 145, 85, 0.34);
  border: 1px solid rgba(184, 145, 85, 0.34);
}

.philosophy-card {
  min-height: 250px;
  padding: 30px;
  background: rgba(250, 248, 245, 0.055);
  transition: background 0.25s ease, transform 0.25s ease;
}

.philosophy-card:hover {
  background: rgba(122, 48, 64, 0.22);
  transform: translateY(-3px);
}

.philosophy-card span {
  color: var(--gold);
  font-family: var(--font-title-en);
  font-size: 0.84rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.philosophy-card h3 {
  margin: 64px 0 14px;
  color: #fff;
  font-family: var(--font-title-ko);
  font-size: 27px;
  line-height: 1.25;
}

.philosophy-card h3 small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
}

.philosophy-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  word-break: keep-all;
}

.maturation-section {
  background: var(--bone);
  padding-right: 0;
  padding-left: 0;
}

.maturation-hero {
  position: relative;
  width: 100%;
  max-width: none;
  height: 360px;
  margin: 0 auto 48px;
  overflow: hidden;
  background: var(--charcoal);
  border-top: 1px solid rgba(184, 145, 85, 0.42);
  border-bottom: 1px solid rgba(184, 145, 85, 0.42);
}

.maturation-hero::before {
  position: absolute;
  inset: 22px;
  z-index: 1;
  border: 1px solid rgba(250, 248, 245, 0.18);
  content: "";
  pointer-events: none;
}

.maturation-hero picture {
  height: 100%;
}

.maturation-hero img {
  filter: saturate(0.88) contrast(1.06);
}

.maturation-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 40px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(20, 17, 15, 0.72), rgba(20, 17, 15, 0.34), rgba(20, 17, 15, 0.72)),
    rgba(0, 0, 0, 0.32);
}

.maturation-hero h2 {
  max-width: 720px;
}

.maturation-section > .section-heading,
.maturation-section > .principle-grid {
  width: min(1180px, calc(100% - 40px));
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 54px auto 0;
}

.principle,
.menu-card,
.trust-card {
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle:hover,
.menu-card:hover,
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.principle {
  position: relative;
  min-height: 260px;
  padding: 32px;
  border-top: 1px solid var(--gold);
  overflow: hidden;
}

.principle::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 46px;
  height: 1px;
  background: rgba(184, 145, 85, 0.45);
  content: "";
}

.principle span {
  color: var(--burgundy);
  font-family: var(--font-title-en);
  font-size: 1.2rem;
  font-weight: 600;
}

.maturation-card:nth-child(-n + 2) {
  background:
    linear-gradient(135deg, rgba(184, 145, 85, 0.1), rgba(250, 248, 245, 0) 52%),
    var(--paper);
}

.principle h3 {
  margin: 40px 0 16px;
  font-family: var(--font-title-ko);
  font-size: 28px;
  line-height: 1.2;
}

.principle p {
  margin: 0;
  color: #695b51;
  word-break: keep-all;
}

.tabs,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1180px;
  margin: 42px auto 0;
}

.tab,
.filter {
  min-height: 42px;
  padding: 0 18px;
  color: var(--charcoal);
  background: transparent;
  border: 1px solid var(--charcoal);
  border-radius: 2px;
  cursor: pointer;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.tab.is-active,
.filter.is-active {
  color: #fff;
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.menu-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.menu-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-card figure {
  height: 270px;
  margin: 0;
  overflow: hidden;
  background: #ded1c2;
  cursor: zoom-in;
}

.menu-card figure picture {
  height: 100%;
}

.menu-card figure img {
  transition: transform 0.25s ease;
}

.menu-card:hover figure img {
  transform: scale(1.04);
}

.menu-card-body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.menu-label {
  width: fit-content;
  padding: 5px 9px;
  color: var(--burgundy);
  background: rgba(122, 48, 64, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.menu-card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.3;
}

.menu-card p {
  margin: 0;
  color: var(--muted);
  word-break: keep-all;
}

.menu-card strong {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  padding: 4px 12px;
  color: var(--burgundy);
  background: rgba(122, 48, 64, 0.08);
  border: 1px solid rgba(122, 48, 64, 0.18);
  font-family: var(--font-title-en);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}

.menu-note,
.instagram-prompt {
  max-width: 1180px;
  margin: 18px auto 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: right;
}

.space-section {
  background: var(--bone);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 14px;
  max-width: 1180px;
  margin: 28px auto 0;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: #d6c7b7;
}

.gallery-item:focus-visible,
.menu-image:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item picture {
  height: 100%;
}

.gallery-item img {
  transition: transform 420ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(20, 17, 15, 0.68);
  font-weight: 700;
}

.instagram-prompt a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  color: var(--burgundy);
  font-weight: 700;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 44px auto 0;
}

.trust-card {
  min-height: 220px;
  padding: 28px;
}

.trust-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 22px;
  fill: none;
  stroke: var(--burgundy);
  stroke-width: 1.8;
}

.trust-card h3 {
  margin: 0;
  font-size: 22px;
}

.trust-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.rating {
  color: var(--gold);
  font-family: var(--font-title-en);
  font-size: 1.3rem;
}

.rating span {
  margin-left: 8px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.review-card blockquote {
  margin: 18px 0 0;
  padding-left: 16px;
  border-left: 1px solid var(--gold);
  color: var(--muted);
}

.review-card cite {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-style: italic;
  font-weight: 700;
}

.info-section {
  display: block;
  max-width: none;
  background: var(--charcoal-soft);
  color: #fff;
}

.info-copy {
  width: min(1180px, 100%);
  max-width: 1180px;
  margin: 0 auto;
}

.info-copy > * {
  max-width: 560px;
}

.info-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.info-content {
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(0, 1.14fr);
  gap: 18px;
  align-items: stretch;
  width: min(1180px, 100%);
  margin-top: 96px;
}

.info-board {
  padding: clamp(24px, 4vw, 44px);
  border-top: 1px solid var(--gold);
  background: rgba(255, 255, 255, 0.045);
}

.info-board dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.info-board dl > div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.info-board dt {
  color: var(--gold);
  font-weight: 700;
}

.info-board dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.reservation-methods {
  display: grid;
  gap: 12px;
}

.reservation-methods span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.reservation-methods svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.reservation-methods a {
  min-height: 34px;
  padding: 0 12px;
}

.map-placeholder {
  display: grid;
  min-height: 250px;
  place-items: center;
  padding: 28px;
  color: rgba(255, 255, 255, 0.8);
  background:
    linear-gradient(135deg, rgba(184, 145, 85, 0.18), rgba(122, 48, 64, 0.14)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
}

.map-placeholder h3 {
  margin: 8px 0 12px;
  color: #fff;
  font-family: var(--font-title-ko);
  font-size: 30px;
  line-height: 1.25;
}

.map-placeholder p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  word-break: keep-all;
}

.map-kicker {
  color: var(--gold);
  font-family: var(--font-title-en);
  font-size: 0.85rem;
  font-style: italic;
  letter-spacing: 0.12em;
}

.map-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 18px;
  color: #fff;
  background: var(--burgundy);
  border: 1px solid var(--burgundy);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.map-link:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
}

.map-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 100%;
  overflow: hidden;
  color: var(--ink);
  background: #f8efe9;
  border: 1px solid rgba(184, 145, 85, 0.36);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.map-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 24px 28px;
  background:
    linear-gradient(180deg, rgba(250, 248, 245, 0.92), rgba(248, 239, 233, 0.98)),
    var(--bone);
}

.map-tabs {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.map-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 34px;
  padding: 0 18px;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
}

.map-tab.is-active {
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.map-sidebar h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-title-ko);
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.02;
  word-break: keep-all;
}

.map-sidebar p {
  margin: 0;
  color: #4e4039;
  font-size: 15px;
  word-break: keep-all;
}

.map-search {
  display: grid;
  grid-template-columns: 1fr 48px;
  align-items: center;
  min-height: 52px;
  overflow: hidden;
  border: 2px solid var(--burgundy);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.map-search input {
  min-width: 0;
  height: 100%;
  padding: 0 0 0 24px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 15px;
}

.map-search input::placeholder {
  color: rgba(32, 23, 19, 0.42);
}

.map-search button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--burgundy);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.map-search svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.map-store-card {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(32, 23, 19, 0.2);
}

.map-store-card strong {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.map-store-card dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.map-store-card dl > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px;
}

.map-store-card dt {
  color: var(--burgundy);
  font-weight: 800;
}

.map-store-card dd {
  margin: 0;
  color: #4e4039;
  font-size: 14px;
  word-break: keep-all;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.map-panel .map-link {
  margin-top: 0;
}

.map-link-secondary {
  color: var(--burgundy);
  background: transparent;
  border-color: var(--burgundy);
}

.map-link-secondary:hover {
  color: #fff;
}

.map-frame-wrap {
  position: relative;
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(184, 145, 85, 0.12), rgba(122, 48, 64, 0.1)),
    rgba(255, 255, 255, 0.5);
}

.map-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  background: #e7ddd4;
}

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

.facility-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 18px;
  max-width: 1180px;
  width: 100%;
  margin: 24px auto 0;
}

.facility-panel section {
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.045);
  border-top: 1px solid var(--gold);
}

.facility-panel h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 22px;
}

.facility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.facility-list li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  font-size: 14px;
  line-height: 1.35;
}

.payment-list li {
  color: #fff;
  background: rgba(184, 145, 85, 0.14);
  border-color: rgba(184, 145, 85, 0.34);
}

.faq-list {
  grid-column: 1 / -1;
  max-width: 1180px;
  width: 100%;
  margin: 42px auto 0;
}

.faq-list h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.faq-item {
  border-top: 1px solid var(--line-dark);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  text-align: left;
}

.faq-item button span {
  transition: transform 0.25s ease;
}

.faq-item.is-open button span {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 18px;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.2fr);
  gap: 40px;
  padding: 44px clamp(20px, 5vw, 80px) 104px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--charcoal);
}

.site-footer strong {
  display: block;
  color: #fff;
  font-size: 24px;
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 0;
}

.footer-info div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
}

.footer-info dt {
  color: var(--gold);
}

.footer-info dd {
  min-height: 1.5em;
  margin: 0;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-quick {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(20, 17, 15, 0.24);
}

.mobile-quick a {
  display: inline-flex;
  min-height: 58px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #fff;
  background: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
}

.mobile-quick a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-quick a:last-child {
  background: var(--burgundy);
}

.mobile-quick svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox[aria-hidden="true"] {
  pointer-events: none;
}

.lightbox.is-open {
  display: flex;
  pointer-events: auto;
}

.lightbox figure {
  max-width: min(100%, 1080px);
  max-height: 82vh;
  margin: 0;
}

.lightbox img {
  max-height: 76vh;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: #fff;
  text-align: center;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 32px;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  width: 52px;
  height: 72px;
  font-size: 54px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 950ms ease,
    transform 1300ms cubic-bezier(0.16, 0.84, 0.22, 1);
  transition-delay: var(--motion-delay, 0ms);
}

.motion-ready .motion-section.is-visible .motion-reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .center-rise-item {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.985);
  transition:
    opacity 900ms ease,
    transform 1250ms cubic-bezier(0.16, 0.84, 0.22, 1),
    box-shadow 0.3s ease,
    background 0.25s ease;
  transition-delay: var(--center-rise-delay, 0ms);
}

.motion-ready .center-rise-item.is-item-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .principle.center-rise-item.is-item-visible:hover,
.motion-ready .menu-card.center-rise-item.is-item-visible:hover,
.motion-ready .trust-card.center-rise-item.is-item-visible:hover,
.motion-ready .philosophy-card.center-rise-item.is-item-visible:hover {
  transform: translate3d(0, -4px, 0) scale(1);
}

.motion-ready .gallery-item.center-rise-item.is-item-visible:hover,
.motion-ready .story-image.center-rise-item.is-item-visible:hover,
.motion-ready .philosophy-visual.center-rise-item.is-item-visible:hover,
.motion-ready .maturation-hero.center-rise-item.is-item-visible:hover,
.motion-ready .quote-panel.center-rise-item.is-item-visible:hover,
.motion-ready .owner-card.center-rise-item.is-item-visible:hover,
.motion-ready .info-board.center-rise-item.is-item-visible:hover,
.motion-ready .map-panel.center-rise-item.is-item-visible:hover,
.motion-ready .facility-panel.center-rise-item.is-item-visible:hover,
.motion-ready .faq-list.center-rise-item.is-item-visible:hover {
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.motion-ready .motion-photo img {
  filter: grayscale(1) saturate(0.12) contrast(0.96);
  transition: filter 1600ms cubic-bezier(0.2, 0.74, 0.18, 1), transform 420ms ease;
  transition-delay: 0ms, 0ms;
}

.motion-photo::after {
  position: absolute;
  inset: -24%;
  z-index: 5;
  background:
    radial-gradient(circle at 35% 48%, rgba(255, 240, 205, 0.34), rgba(255, 240, 205, 0.16) 18%, transparent 46%),
    radial-gradient(circle at 58% 42%, rgba(184, 145, 85, 0.2), transparent 38%),
    radial-gradient(circle at 47% 62%, rgba(122, 48, 64, 0.12), transparent 42%);
  content: "";
  filter: blur(18px);
  mix-blend-mode: soft-light;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-8%, 4%, 0) scale(0.48) rotate(-4deg);
  transform-origin: 36% 50%;
}

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

.motion-ready .center-rise-item.is-item-visible.motion-photo img,
.motion-ready .center-rise-item.is-item-visible .motion-photo img {
  filter: grayscale(0) saturate(1) contrast(1);
  transition-delay: calc(var(--center-rise-delay, 0ms) + 500ms), 0ms;
}

.motion-ready .center-rise-item.is-item-visible.motion-photo::after,
.motion-ready .center-rise-item.is-item-visible .motion-photo::after {
  animation: watercolorWash 1700ms cubic-bezier(0.2, 0.74, 0.18, 1) both;
  animation-delay: calc(var(--center-rise-delay, 0ms) + 500ms);
}

@keyframes watercolorWash {
  0% {
    opacity: 0;
    transform: translate3d(-8%, 4%, 0) scale(0.48) rotate(-4deg);
  }

  34% {
    opacity: 0.36;
  }

  62% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    transform: translate3d(4%, -2%, 0) scale(1.42) rotate(3deg);
  }
}

.motion-photo figcaption,
.maturation-hero-overlay {
  z-index: 3;
}

@media (max-width: 980px) {
  #philosophy,
  #maturation,
  #menu,
  #space,
  #trust,
  #info {
    content-visibility: visible;
    contain-intrinsic-size: none;
  }

  .motion-ready .motion-photo img,
  .motion-ready .center-rise-item.is-item-visible.motion-photo img,
  .motion-ready .center-rise-item.is-item-visible .motion-photo img {
    filter: none;
    transition: transform 420ms ease;
    transition-delay: 0ms;
  }

  .motion-photo::after {
    content: none;
  }

  .motion-ready .center-rise-item.is-item-visible.motion-photo::after,
  .motion-ready .center-rise-item.is-item-visible .motion-photo::after {
    animation: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px 14px;
    padding: 14px 18px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    padding: 3px 0 0;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .story-layout,
  .philosophy-layout,
  .section-heading,
  .info-section,
  .info-content,
  .map-panel,
  .facility-panel {
    grid-template-columns: 1fr;
  }

  .hero-story-preview {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: center;
    justify-items: center;
    gap: 24px;
    padding: 96px 24px 76px;
    text-align: center;
  }

  .hero-story-preview-copy {
    justify-items: center;
    max-width: 720px;
  }

  .hero-story-preview-lead {
    max-width: 620px;
  }

  .hero-story-preview-image {
    justify-self: center;
    width: min(90vw, 760px, 78svh);
    height: auto;
  }

  .story-image {
    order: -1;
    height: 440px;
  }

  .principle-grid,
  .philosophy-grid,
  .menu-gallery,
  .gallery-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .philosophy-visual {
    min-height: 360px;
  }

  .map-tabs {
    margin-bottom: 20px;
  }

  .map-frame-wrap,
  .map-frame-wrap iframe {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  section {
    scroll-margin-top: 150px;
  }

  .site-header {
    gap: 9px 10px;
    padding: 12px 14px 10px;
  }

  .header-drawer-toggle {
    width: 56px;
    height: 32px;
  }

  .brand-mark {
    min-width: 0;
    padding: 0;
  }

  .brand-mark picture,
  .brand-mark img {
    width: clamp(104px, 28vw, 148px);
    height: auto;
    aspect-ratio: 6434 / 1365;
  }

  .primary-nav {
    gap: 16px;
    font-size: 13px;
  }

  .ghost-link,
  .solid-link {
    min-height: 34px;
    padding: 0 9px;
    font-size: 12px;
  }

  .icon-link {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero::before,
  .maturation-hero::before {
    inset: 12px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 112px;
    padding-left: 16px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-note {
    right: 18px;
    bottom: 24px;
    left: 18px;
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-note a {
    min-width: 0;
    min-height: 46px;
    font-size: 14px;
  }

  .hero-story-preview {
    gap: 18px;
    padding: 108px 8px 92px;
  }

  .hero-story-preview-copy {
    gap: 14px;
  }

  .hero-story-preview-title {
    max-width: 340px;
    font-size: 36px;
    line-height: 1.24;
  }

  .hero-story-preview-lead {
    display: none;
  }

  .hero-story-preview-image {
    width: min(calc(100vw - 16px), 400px);
    height: auto;
    aspect-ratio: 5 / 4;
  }

  .section {
    padding: 68px 18px;
  }

  .section h2,
  .info-copy h2 {
    font-size: 34px;
  }

  .lead,
  .section-heading > p,
  .info-copy p {
    font-size: 16px;
  }

  .section-label::before,
  .section-label::after,
  .eyebrow::before,
  .eyebrow::after {
    width: 26px;
  }

  .story-image,
  .maturation-hero {
    height: 300px;
  }

  .quote-panel {
    padding: 26px;
  }

  .quote-panel blockquote {
    font-size: 28px;
  }

  .principle-grid,
  .philosophy-grid,
  .menu-gallery,
  .trust-grid,
  .gallery-grid,
  .footer-info {
    grid-template-columns: 1fr;
  }

  .philosophy-header p {
    font-size: 16px;
  }

  .philosophy-visual {
    min-height: 280px;
  }

  .philosophy-card {
    min-height: auto;
    padding: 24px;
  }

  .philosophy-card h3 {
    margin-top: 42px;
  }

  .principle {
    min-height: auto;
  }

  .menu-card figure {
    height: 250px;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .gallery-item.large {
    grid-column: auto;
    grid-row: span 1;
  }

  .instagram-prompt,
  .menu-note {
    text-align: left;
  }

  .info-board dl > div,
  .footer-info div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .reservation-methods span {
    display: grid;
    grid-template-columns: 20px 1fr;
  }

  .reservation-methods a {
    grid-column: 2;
    width: fit-content;
  }

  .map-panel {
    min-height: auto;
  }

  .map-sidebar {
    padding: 26px;
  }

  .map-tabs {
    gap: 6px;
    overflow-x: auto;
    margin-bottom: 14px;
  }

  .map-tab {
    min-width: 104px;
    min-height: 32px;
    padding: 0 14px;
    white-space: nowrap;
  }

  .map-sidebar h3 {
    font-size: 46px;
  }

  .map-search {
    grid-template-columns: 1fr 44px;
    min-height: 48px;
  }

  .map-search input {
    padding-left: 18px;
    font-size: 14px;
  }

  .map-store-card dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .map-frame-wrap,
  .map-frame-wrap iframe {
    min-height: 360px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 106px;
  }

  .mobile-quick {
    display: grid;
  }

  .lightbox {
    padding: 54px 16px;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 16px;
    width: 48px;
    height: 48px;
    font-size: 42px;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-story-preview,
  .hero-transition-shade,
  .hero-exit-wash {
    display: none;
  }
}
