@font-face {
  font-family: "Cocomat";
  src: url("../fonts/Cocomat-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  /* swap은 로드 전 대체 글꼴이 한 프레임이라도 보일 수 있음 → 인트로 로고는 block */
  font-display: block;
}

@font-face {
  font-family: "Cocomat";
  src: url("../fonts/Cocomat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cocomat";
  src: url("../fonts/Cocomat-Regular.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

.intro {
  padding: 0;
  margin: 0;
  width: 100%;
}

.intro__inner {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100) !important;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: -webkit-fill-available;
  /* 모바일 주소창 표시/숨김 시 --vh만 쓰면 레이아웃이 자주 바뀌어 스크롤이 끊겨 보일 수 있음 */
  min-height: 100dvh;
  height: 100dvh !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  transform: scale(1.2);
  transform-origin: center center;
}

.intro__inner .txt-logo-cozy {
  font-family: "Cocomat", Georgia, serif;
  font-weight: 100;
  color: #5b5b5b;
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -0.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  text-indent: 0;
  text-align: center;
  opacity: 0;
}

.intro__inner .txt-logo-location {
  font-family: "Cocomat", Georgia, serif;
  color: #5e5e5e;
  font-weight: 100;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.3em;
  text-align: center;
  margin-top: 10px;
  opacity: 0;
}

@media (max-width: 800px) {
  .intro__inner {
    align-items: center;
    justify-content: center;
    transform: none;
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .intro__inner .txt-logo-cozy {
    font-size: 30px;
    line-height: 1.1;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 0.25rem;
    box-sizing: border-box;
  }

  .intro__inner .txt-logo-location {
    font-family: "Caveat", "Cocomat", cursive;
    font-size: 11px;
    margin-top: 8px;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    text-shadow: 0 0 1px rgba(91, 91, 91, 0.35), 0 0 2px rgba(91, 91, 91, 0.08);
  }
}

.section--tight-top {
  padding-top: 48px;
}

.section__title {
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: 0.28em;
  text-align: center;
  text-indent: 0.28em;
  margin-bottom: clamp(40px, 8vw, 72px);
}

.prose {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #1a1a1a;
}

.prose p + p {
  margin-top: 1.25em;
}

.prose--muted {
  color: #6b6b6b;
  font-size: 13px;
  line-height: 1.85;
}

.prose--small {
  font-size: 13px;
}

@media (max-width: 800px) {
  .section__title {
    font-size: clamp(22px, 5.5vw, 30px);
    margin-bottom: clamp(28px, 9vw, 48px);
  }

  .prose--muted,
  .prose--small {
    font-size: 12px;
    line-height: 1.8;
  }
}

.hero-image {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  aspect-ratio: 21 / 9;
}

@media (max-width: 768px) {
  .hero-image img {
    aspect-ratio: 4 / 3;
  }
}

.banner {
  display: block;
  width: 100%;
  margin: 0;
  padding: clamp(1.25rem, 3.5vw, 2.75rem) 0 clamp(2rem, 5.5vw, 4.25rem);
  position: relative;
  overflow: visible;
  background: transparent;
  box-sizing: border-box;
}

.banner__frame {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1vw;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.75rem, 4.5vw, 3.25rem);
  align-items: center;
}

.banner__visual {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1.1s ease-out, transform 1.1s ease-out;
}

.banner.show .banner__visual {
  opacity: 1;
  transform: translateY(0);
}

.banner__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.35rem);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1.1s ease-out 0.1s, transform 1.1s ease-out 0.1s;
}

.banner.show .banner__copy {
  opacity: 1;
  transform: translateY(0);
}

.banner__copy-stack {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}

.banner__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(76vh, 860px);
  margin: 0;
  object-fit: contain;
  object-position: left center;
}

.banner__brand {
  margin: 0;
  font-family: "Cocomat", Georgia, serif;
  font-size: clamp(1.05rem, 1.85vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.15;
  color: #141414;
}

.banner__tagline {
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: clamp(0.8125rem, 1.05vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.4;
  color: rgba(20, 20, 20, 0.5);
}

.banner__pitch {
  margin: 0;
  max-width: min(28rem, 100%);
  padding: 0;
  border: 0;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: clamp(0.875rem, 1.05vw, 1rem);
  font-weight: 300;
  line-height: 1.65;
  color: #1a1a1a;
  letter-spacing: normal;
  word-spacing: normal;
}

.banner2.banner2-slider {
  background-color: #1a1a1a;
  display: block;
  height: 70vh;
  min-height: 200px;
  margin: 0 auto 8rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.banner2__inner {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  transform: scale(1.04) translateY(-2%);
  transition: opacity 1.6s ease-out, transform 1.6s ease-out;
}

.banner2-slider.show .banner2__inner {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.banner2__viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.banner2__track {
  display: flex;
  flex-direction: row;
  height: 100%;
  transition: transform 0.65s ease;
  will-change: transform;
}

.banner2__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.banner2__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.42) saturate(0.78) contrast(1.03) brightness(1.02);
}

.banner2__btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 100px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.banner2__btn::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.55)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.banner2__btn--prev::after {
  transform: rotate(135deg);
}

.banner2__btn:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.06);
}

.banner2__btn:focus-visible {
  outline: none;
  opacity: 1;
  transform: translateY(-50%) scale(1.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  border-radius: 2px;
}

.banner2__btn--prev {
  left: 8px;
}

.banner2__btn--next {
  right: 8px;
}

.banner2__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}

.banner2__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  pointer-events: auto;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.banner2__dot[aria-current="true"] {
  background: #fff;
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .banner__visual,
  .banner__copy {
    transition: none;
  }

  .banner:not(.show) .banner__visual,
  .banner:not(.show) .banner__copy {
    opacity: 1;
    transform: none;
  }

  .banner2__inner,
  .banner2__track,
  .menu-slider__track {
    transition: none;
  }

  .banner2-slider:not(.show) .banner2__inner {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 800px) {
  .banner {
    padding: 1.35rem 0 clamp(3.25rem, 11vw, 5.5rem);
  }

  .banner__frame {
    padding: 0 1rem;
    grid-template-columns: 1fr;
    gap: 1.65rem;
  }

  .banner__visual {
    order: 1;
  }

  .banner__copy {
    order: 2;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
  }

  .banner__copy-stack {
    align-items: center;
    gap: 0.3rem;
  }

  .banner__img {
    max-height: min(52vh, 520px);
    object-position: center;
    margin: 0 auto;
  }

  .banner__brand {
    letter-spacing: 0.1em;
    -webkit-font-smoothing: antialiased;
    text-shadow: 0 0 1px rgba(20, 20, 20, 0.25), 0 0 2px rgba(20, 20, 20, 0.08);
  }

  .banner__tagline {
    max-width: 20rem;
  }

  .banner__pitch {
    max-width: min(28rem, 100%);
    margin: 0 auto;
    text-align: left;
    text-wrap: pretty;
  }

  .banner2.banner2-slider {
    margin: 0 auto 2.75rem;
    height: 52vh;
    min-height: 180px;
  }

  .banner2__btn {
    width: 48px;
    height: 88px;
  }

  .banner2__btn::after {
    width: 15px;
    height: 15px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }

  .banner2__btn--prev {
    left: 4px;
  }

  .banner2__btn--next {
    right: 4px;
  }

  .banner2__dots {
    bottom: 10px;
    gap: 6px;
  }
}

.menu__inner {
  padding: 1vw;
  max-width: 1200px;
  margin: 0 auto;
}

.menu__title,
.gallery__title,
.contact__title {
  position: relative;
  width: 100%;
  min-height: 4.9vw;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  text-transform: uppercase;
  font-family: "Cocomat", Georgia, serif;
  color: #1a1a1a;
  letter-spacing: -0.1rem;
  opacity: 0.2;
  transition: letter-spacing 1.2s ease-out 0.8s, opacity 1.2s ease-out 0.8s;
}

.menu__title.show,
.gallery__title.show,
.contact__title.show {
  letter-spacing: 0.25rem;
  opacity: 1;
}

.menu__desc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu__desc__item {
  width: 100%;
  min-height: 120px;
  opacity: 0.4;
  text-align: center;
  transition: opacity 0.9s ease-out 0.2s, transform 0.9s ease-out 0.2s;
  transform: translateY(60px);
}

.menu__desc__item:nth-last-child(1) {
  margin-bottom: 5rem;
}

.menu__desc__item--pdf {
  min-height: 0;
}

.menu__pdf-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.menu__pdf-frame {
  display: block;
  width: 100%;
  height: min(75vh, 960px);
  min-height: 420px;
  border: 0;
  vertical-align: top;
}

.menu__pdf-fallback {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.85rem;
}

.menu__pdf-fallback .menu__pdf-open.text-link {
  margin-top: 0;
}

.menu__desc__item--slides {
  min-height: 0;
}

.menu-slider {
  position: relative;
  width: 100%;
  background: #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.menu-slider__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.menu-slider__viewport {
  overflow: hidden;
  width: 100%;
  height: min(75vh, 960px);
  min-height: 420px;
}

.menu-slider__track {
  display: flex;
  flex-direction: row;
  height: 100%;
  transition: transform 0.65s ease;
  will-change: transform;
}

.menu-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.menu-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.menu-slider__btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 88px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #3a3a3a;
  cursor: pointer;
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-slider__btn::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.6));
}

.menu-slider__btn--prev::after {
  transform: rotate(135deg);
}

.menu-slider__btn:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.menu-slider__btn:focus-visible {
  outline: none;
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
  box-shadow: inset 0 0 0 1px rgba(26, 26, 26, 0.35);
  border-radius: 2px;
}

.menu-slider__btn--prev {
  left: 6px;
}

.menu-slider__btn--next {
  right: 6px;
}

.menu-slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}

.menu-slider__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.35);
  cursor: pointer;
  pointer-events: auto;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.menu-slider__dot[aria-current="true"] {
  background: #1a1a1a;
  transform: scale(1.15);
}

.menu__desc__item.show {
  opacity: 1;
  transform: translateY(0);
}

.menu__desc__item .menu__desc__item__text.kr {
  font-size: 1rem;
  font-weight: 300;
  color: rgb(110, 110, 110);
  font-family: "Noto Sans KR", sans-serif;
}

.menu__desc__item b {
  display: block;
  font-size: 1rem;
  font-weight:400;
  margin-bottom: 1vw;
  font-family: "Cocomat", Georgia, serif;
  color: #1a1a1a;
}

.menu__desc__item a {
  display: inline-block;
  margin-top: 1vw;
  background-color: rgb(38, 38, 38);
  font-size: 1rem;
  line-height: 1rem;
  padding: 0.6rem 1.2rem 0.45rem;
  border-radius: 3px;
  color: #f5f5f5;
  font-family: "Cocomat", "Noto Sans KR", Georgia, serif;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.menu__desc__item a:hover {
  background-color: #1a1a1a;
  color: #fafafa;
}

.menu__desc__item a.text-link {
  font-size: 0.9rem;
  background-color: transparent;
  color: #6d6d6d;
}

.menu__desc__item a.text-link:hover {
  background-color: transparent;
  color: rgb(38, 38, 38);
}

@media (max-width: 800px) {
  .menu__inner {
    padding: 1.25rem 16px;
  }

  /* 모바일: 섹션 타이틀은 show 없이 처음부터 최종 스타일 (reservation 제외 → 아래 reservation 전용) */
  .menu__title,
  .gallery__title,
  .contact__title {
    margin-bottom: 6vw;
    min-height: 0;
    background-color: #f1f1f1;
    line-height: 1.45;
    text-align: center;
    opacity: 1;
    letter-spacing: 0.25rem;
    transition: none;
    -webkit-font-smoothing: antialiased;
    text-shadow: 0 0 1px rgba(26, 26, 26, 0.22), 0 0 2px rgba(26, 26, 26, 0.06);
  }

  .menu__title{
    margin-bottom: 0;
  }

  .menu__desc__item b {
    -webkit-font-smoothing: antialiased;
    text-shadow: 0 0 1px rgba(26, 26, 26, 0.18);
  }

  .menu__desc {
    padding: 1.25rem 16px;
  }

  /* 모바일: 본문도 스크롤 show 없이 즉시 표시 (타이틀과 타이밍 맞춤) */
  .menu__desc__item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .menu__desc__item:nth-last-child(1) {
    margin-bottom: 0;
  }

  .menu__pdf-frame {
    height: min(62vh, 820px);
    min-height: 280px;
  }

  .menu-slider__viewport {
    height: min(62vh, 820px);
    min-height: 280px;
  }

  .menu-slider__btn {
    width: 40px;
    height: 72px;
  }

  .menu-slider__btn::after {
    width: 13px;
    height: 13px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }

  .menu-slider__btn--prev {
    left: 2px;
  }

  .menu-slider__btn--next {
    right: 2px;
  }

  .menu-slider__dots {
    bottom: 8px;
    gap: 6px;
  }

  .menu__desc__item .menu__desc__item__text.kr {
    font-size: 0.72rem;
  }

  .menu__desc__item a {
    line-height: 1.1;
    font-size: 0.9rem;
    padding: 0.6rem 1rem 0.6rem;
  }

  .menu__desc__item a.text-link {
    font-size: 0.85rem;
  }
}

.reservation__inner {
  padding: 1vw;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.reservation__title {
  position: relative;
  width: 48%;
  min-height: 4.9vw;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  text-transform: uppercase;
  font-family: "Cocomat", Georgia, serif;
  color: #1a1a1a;
  letter-spacing: -0.1rem;
  opacity: 0.2;
  transition: letter-spacing 1.2s ease-out 0.8s, opacity 1.2s ease-out 0.8s;
}

.reservation__title.show {
  letter-spacing: 0.25rem;
  opacity: 1;
}

.reservation__desc {
  width: 50%;
}

.reservation__desc a {
  text-align: center;
  min-width: 202px;
  display: inline-block;
  margin-top: 1vw;
  background-color: #1a1a1a;
  font-size: 1rem;
  line-height: 1rem;
  padding: 0.6rem 1.2rem 0.55rem;
  border-radius: 3px;
  color: #f5f5f5;
  font-family: "Cocomat", "Noto Sans KR", Georgia, serif;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.reservation__desc a:hover {
  background-color: rgb(38, 38, 38);
  color: #f1f1f1;
}

.reservation__desc__item--note p {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.reservation__desc__item.button-group a {
  margin-top: 0.35rem;
}

.reservation__desc a.kr {
  font-family: "Noto Sans KR", sans-serif;
  padding: 0.6rem 1.2rem 0.7rem;
}

.reservation__desc__item {
  opacity: 0.4;
  transition: opacity 0.9s ease-out 0.2s, transform 0.9s ease-out 0.2s;
  transform: translateY(60px);
}

.reservation__desc__item:last-child {
  margin-bottom: 6rem;
}

.reservation__desc__item.show {
  opacity: 1;
  transform: translateY(0);
}

/* 메뉴 .menu__desc__item b 와 동일 */
.reservation__desc__item h3 {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1vw;
  font-family: "Cocomat", Georgia, serif;
  color: #1a1a1a;
}

.reservation__desc__item h3.kr {
  font-family: "Noto Sans KR", sans-serif;
  margin-left: 1rem;
}

/* 메뉴 .menu__desc__item__text.kr 와 동일 스케일 */
.reservation__desc__item p {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 300;
  font-family: "Noto Sans KR", sans-serif;
  color: rgb(110, 110, 110);
}

.reservation__desc__item p.kr {
  font-size: 1rem;
}

@media (max-width: 800px) {
  .reservation__inner {
    flex-direction: column;
    padding: 1.25rem 16px;
  }

  .reservation__desc__item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  /* 모바일: reservation 타이틀만 show 전환 없이 즉시 최종 스타일 */
  .reservation__title {
    width: 100%;
    margin-bottom: 6vw;
    min-height: 0;
    background-color: #f1f1f1;
    line-height: 1.45;
    text-align: center;
    opacity: 1;
    letter-spacing: 0.25rem;
    transition: none;
    -webkit-font-smoothing: antialiased;
    text-shadow: 0 0 1px rgba(26, 26, 26, 0.22), 0 0 2px rgba(26, 26, 26, 0.06);
  }

  .reservation__desc {
    width: 100%;
  }

  .reservation__desc__item h3 {
    font-size: 0.85rem;
  }

  .reservation__desc__item p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .reservation__desc__item p.kr {
    font-size: 0.9rem;
  }

  .reservation__desc a {
    line-height: 1.1;
    min-width: 0;
    font-size: 0.9rem;
    padding: 0.6rem 1rem 0.6rem;
  }

  .reservation__desc__item:last-child {
    margin-bottom: 2.5rem;
  }

  .button-group {
    text-align: center;
  }
}

.gallery__inner {
  padding: 1vw;
  max-width: 1200px;
  margin: 0 auto;
}

#gallery .gallery__inner {
  padding-top: 0.35vw;
  padding-bottom: 1vw;
}

.gallery__desc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1vw;
}

#gallery .gallery__desc {
  padding-top: 0;
  padding-bottom: 1vw;
}

#gallery .gallery__title {
  min-height: 0;
  margin-bottom: 1.35rem;
}

.gallery__masonry {
  display: flex;
  margin-left: 0;
  width: 100%;
  opacity: 0.4;
  transform: translateY(60px);
  transition: opacity 0.9s ease-out 0.2s, transform 0.9s ease-out 0.2s;
}

.gallery__masonry.show {
  opacity: 1;
  transform: translateY(0);
}

.gallery__masonry-column {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  box-sizing: border-box;
  padding-left: 20px;
  background-clip: padding-box;
}

.gallery__masonry-column:first-child {
  padding-left: 0;
}

.gallery__item {
  margin-bottom: 20px;
  cursor: pointer;
}

.gallery__item:focus {
  outline: 2px solid #1a1a1a;
  outline-offset: 4px;
}

.gallery__item:focus:not(:focus-visible) {
  outline: none;
}

.gallery__item-inner {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  contain: paint;
  transition: box-shadow 0.3s ease;
}

.gallery__item:hover .gallery__item-inner {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%);
}

.gallery__item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* 음식: 호버·모달에서 채도·대비 살짝 올려 보는 느낌(실제 해상도는 파일 한계) */
.gallery__item--food img {
  filter: grayscale(100%) contrast(1.04);
}

.gallery__item--food:hover img {
  filter: grayscale(0%) saturate(1.08) contrast(1.06) brightness(1.035);
}

.gallery__item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
}

.gallery__modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 16px 16px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.9);
}

.gallery__modal[hidden] {
  display: none !important;
}

.gallery__modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
}

.gallery__modal-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: saturate(1.08) contrast(1.06) brightness(1.035);
  image-rendering: auto;
}

.gallery__modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 5px;
  font-family: inherit;
}

.gallery__modal-close:hover {
  opacity: 0.8;
}

@media (max-width: 800px) {
  #gallery.section {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  #gallery .gallery__title {
    margin-bottom: 1.25rem;
  }

  .gallery__inner {
    padding: 1.25rem 0;
  }

  #gallery .gallery__inner {
    padding-top: 0.5rem;
  }

  .gallery__desc {
    padding: 1.25rem 0;
  }

  #gallery .gallery__desc {
    padding-top: 0;
    padding-bottom: 1.25rem;
  }

  /* 모바일: 타이틀~그리드 사이가 스크롤에 따라 줄어드는 느낌 제거 (translateY show 애니 없음) */
  #gallery .gallery__masonry {
    opacity: 1;
    transform: none;
    transition: none;
  }

  #gallery .gallery__masonry.show {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .gallery__masonry {
    flex-direction: column;
    margin-left: 0;
  }

  .gallery__masonry-column {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }

  .gallery__item {
    margin-bottom: 10px;
  }
}

#contact {
  box-sizing: border-box;
}

.contact__inner {
  width: 100%;
  padding: 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.contact__desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.contact__desc__item {
  height: auto;
  width: 100%;
  opacity: 0.4;
  transition: opacity 0.9s ease-out 0.2s, transform 0.9s ease-out 0.2s;
  transform: translateY(60px);
  text-align: center;
}

.contact__desc__item.show {
  opacity: 1;
  transform: translateY(0);
}

.contact__desc__item .contact__desc__item__text.kr {
  font-size: 1rem;
  font-weight: 300;
  color: rgb(110, 110, 110);
  font-family: "Noto Sans KR", sans-serif;
}

.contact__desc__item .contact__desc__item__text.kr img {
  display: inline-block;
  vertical-align: middle;
  margin-top: 4px;
  margin-right: 2px;
  opacity: 0.7;
  width: 12px;
  height: 12px;
}

.contact__desc__item .contact__desc__item__text.kr img:first-of-type {
  margin-left: 7px;
}

.contact__desc__item__text.kr.contact__hours-break {
  margin-top: 1rem;
}

.contact__desc__item b {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 1vw;
  font-family: "Cocomat", Georgia, serif;
  color: #1a1a1a;
}

.contact__desc__item a {
  display: inline-block;
  margin-top: 1vw;
  background-color: #6a6a6a;
  font-size: 1rem;
  line-height: 1rem;
  padding: 0.6rem 1.2rem 0.45rem;
  border-radius: 3px;
  color: #f5f5f5;
  font-family: "Cocomat", "Noto Sans KR", Georgia, serif;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.contact__desc__item a:hover {
  background-color: rgb(38, 38, 38);
  color: #f1f1f1;
}

.contact__desc__item a.text-link {
  font-size: 1rem;
  background-color: transparent;
  color: #6d6d6d;
}

.contact__desc__item a.text-link:hover {
  background-color: transparent;
  color: rgb(38, 38, 38);
}

.contact__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin: 0.35rem 0 0.15rem;
}

.contact__desc__item .contact__social .contact__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-top: 0;
  padding: 0;
  border-radius: 50%;
  color: #f5f5f5;
  line-height: 0;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact__desc__item .contact__social .contact__social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.12);
}

.contact__desc__item .contact__social .contact__social-btn svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
}

.contact__desc__item a.contact__email-link {
  display: block;
  margin-top: 0.9rem;
  letter-spacing: 0.02em;
}

.contact__line.bottom {
  display: none;
}

@media (max-width: 800px) {
  .contact__inner {
    padding: 1.25rem 16px;
  }

  .contact__desc {
    gap: 2rem;
    padding: 0;
  }

  /* 섹션 전체 페이드인으로 처리 — 항목별 show 애니 없음 */
  .contact__desc__item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .contact__desc__item:nth-last-child(1) {
    margin-bottom: 0;
  }

  .contact__desc__item a {
    font-size: 0.72rem;
    line-height: 1.1;
    padding: 0.5rem 1rem 0.42rem;
  }

  .contact__desc__item a.text-link {
    font-size: 0.85rem;
  }

  .contact__desc__item .contact__social .contact__social-btn {
    width: 2.1rem;
    height: 2.1rem;
  }

  .contact__desc__item .contact__social .contact__social-btn svg {
    width: 15px;
    height: 15px;
  }

  .contact__line.bottom {
    display: block;
    width: 100%;
    max-width: 280px;
    height: 1px;
    margin: 2rem auto 0;
    background-color: rgba(26, 26, 26, 0.12);
  }
}

.site-footer {
  padding: 80px 24px 48px;
  text-align: center;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.site-footer__links a:hover {
  opacity: 0.55;
}

.site-footer__meta {
  font-size: 11px;
  line-height: 1.9;
  color: #6b6b6b;
  max-width: 480px;
  margin: 0 auto 24px;
}

.site-footer__copy {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #999;
}

@media (max-width: 800px) {
  .site-footer {
    padding: 48px 16px 36px;
  }

  .site-footer__links {
    font-size: 10px;
    gap: 10px 20px;
    margin-bottom: 28px;
  }

  .site-footer__meta {
    font-size: 10px;
    line-height: 1.85;
  }

  .site-footer__copy {
    font-size: 9px;
  }
}

/* ---------- menu.php (이미지 메뉴) ---------- */
.menu-page-main {
  padding-top: clamp(7.25rem, 18vw, 10rem)!important;
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.menu-page__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

.menu-page__header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.menu-page__title {
  font-family: "Cocomat", Georgia, serif;
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.25rem;
  text-indent: 0.25rem;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
}

.menu-page__actions {
  margin: 0;
}

.menu-page__home {
  font-size: 0.8125rem;
  color: #6b6b6b;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.menu-page__home:hover {
  color: #1a1a1a;
}

.menu-page__empty {
  text-align: center;
  color: #6b6b6b;
  font-size: 0.875rem;
  padding: 3rem 1rem;
  line-height: 1.65;
}

.menu-page__gallery {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.menu-page__figure {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.menu-page__figure img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

@media (max-width: 640px) {
  br.hide-mobile {
    display: none;
  }
}
