@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700&family=Song+Myung&display=swap');

:root {
  --ink: #292720;
  --muted: #756f65;
  --cream: #f7f1e7;
  --paper: #fffdf8;
  --green: #405340;
  --orange: #db7838;
  --line: #ded5c8
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  padding-bottom: 64px;
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 66px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  background: rgba(255, 253, 248, .98);
  border-bottom: 1px solid rgba(60, 50, 40, .1)
}

.brand img {
  width: 92px;
  height: 52px;
  object-fit: contain
}

.menu-toggle {
  display: block;
  margin-left: auto;
  border: 0;
  background: none;
  font-weight: 700;
  font-size: 16px
}

.main-nav {
  display: none;
  position: absolute;
  top: 66px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 10px 20px 18px;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-bottom: 1px solid #ddd
}

.main-nav.open {
  display: flex
}

.main-nav a {
  padding: 12px 0;
  border-bottom: 1px solid #eee
}

.header-call {
  display: none
}

.hero {
  display: block;
  min-height: 0;
  background: var(--cream)
}

.hero-image-wrap {
  width: 100%;
  min-height: 0;
  background: #eee;
  overflow: hidden
}

.hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center
}

.hero-copy {
  padding: 38px 22px 44px;
  background: var(--paper);
  text-align: left
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em
}

.hero h1,
.section-heading h2,
.visit-copy h2 {
  margin: 0;
  font-family: 'Song Myung', serif;
  font-weight: 400;
  line-height: 1.24
}

.hero h1 {
  font-size: clamp(30px, 8.2vw, 40px);
  word-break: keep-all;
  line-height: 1.28
}

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px
}

.hero-actions,
.visit-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 17px;
  border-radius: 4px;
  font-weight: 700
}

.btn.primary {
  background: var(--orange);
  color: #fff
}

.btn.secondary {
  border: 1px solid var(--green);
  color: var(--green);
  background: #fff
}

.hero-facts {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px
}

.section {
  padding: 68px 20px
}

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

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

.section-heading h2,
.visit-copy h2 {
  font-size: clamp(32px, 9vw, 44px)
}

.section-heading>p:last-child {
  color: var(--muted)
}

.story {
  background: var(--cream)
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px
}

.story-photo {
  order: -1
}

.story-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover
}

.story-copy p {
  color: var(--muted)
}

.story-copy ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0
}

.story-copy li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line)
}

.story-copy li::before {
  content: '✓';
  color: var(--orange);
  margin-right: 10px
}

.menu-section {
  background: #fff
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 1240px;
  margin: auto
}

.menu-card {
  min-width: 0;
  border: 1px solid #ebe3d8;
  background: #fff;
  overflow: hidden
}

.menu-card>img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover
}

.menu-card-body {
  display: block;
  padding: 12px 11px 14px
}

.menu-card-title {
  display: block;
  min-width: 0
}

.menu-card-title h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  word-break: keep-all
}

.menu-card-title strong {
  display: block;
  margin-top: 4px;
  color: var(--orange);
  font-size: 13px;
  line-height: 1.3;
  white-space: normal
}

.menu-card-body p {
  display: none
}

.space-section {
  background: var(--cream)
}

.space-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px
}

.space-grid img,
.space-grid img:first-child {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover
}

.visit-section {
  background: #fff
}

.visit-card {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: auto;
  border: 1px solid #eee5d9;
  background: var(--paper)
}

.visit-image {
  grid-row: 1;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4/3;
  object-fit: cover
}

.visit-copy {
  padding: 40px 24px
}

.visit-copy dl {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px 16px;
  margin: 26px 0 0
}

.visit-copy dt {
  font-weight: 700
}

.visit-copy dd {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  word-break: keep-all
}

footer {
  padding: 48px 20px 35px;
  text-align: center;
  background: #282b25;
  color: #ddd
}

footer img {
  width: 110px;
  height: 65px;
  object-fit: contain;
  margin: auto;
  filter: brightness(5) grayscale(1)
}

footer p {
  font-size: 12px;
  line-height: 1.8
}

.legal {
  color: #999
}

.mobile-bar {
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-top: 1px solid #ddd
}

.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border-right: 1px solid #eee
}

.mobile-bar a:first-child {
  background: var(--orange);
  color: #fff
}

@media(min-width:901px) {
  body {
    padding-bottom: 0
  }

  .site-header {
    height: 76px;
    padding: 0 5vw
  }

  .brand img {
    width: 108px;
    height: 58px
  }

  .menu-toggle {
    display: none
  }

  .main-nav {
    position: static;
    display: flex;
    margin-left: auto;
    padding: 0;
    flex-direction: row;
    gap: 30px;
    background: transparent;
    border: 0
  }

  .main-nav a {
    padding: 0;
    border: 0
  }

  .header-call {
    display: inline-flex;
    margin-left: 30px;
    padding: 11px 19px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 14px
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(390px, .8fr);
    min-height: 680px
  }

  .hero-image-wrap {
    min-height: 680px
  }

  .hero-image {
    height: 100%;
    aspect-ratio: auto
  }

  .hero-copy {
    padding: 80px clamp(34px, 6vw, 90px);
    display: flex;
    flex-direction: column;
    justify-content: center
  }

  .hero h1 {
    font-size: clamp(44px, 4.6vw, 70px)
  }

  .lead {
    font-size: 17px
  }

  .hero-actions {
    margin-top: 30px
  }

  .hero-facts {
    margin-top: 42px
  }

  .section {
    padding: 95px max(5vw, 24px)
  }

  .section-heading {
    margin-bottom: 42px
  }

  .section-heading h2,
  .visit-copy h2 {
    font-size: clamp(34px, 4vw, 54px)
  }

  .story-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 6vw;
    align-items: center
  }

  .story-photo {
    order: initial
  }

  .story-photo img {
    height: 460px;
    aspect-ratio: auto
  }

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

  .menu-card>img {
    height: 235px;
    aspect-ratio: auto
  }

  .menu-card-body {
    padding: 18px
  }

  .menu-card-title {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start
  }

  .menu-card-title h3 {
    font-size: 17px
  }

  .menu-card-title strong {
    display: block;
    margin-top: 0;
    white-space: nowrap;
    font-size: 14px
  }

  .menu-card-body p {
    display: block;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px
  }

  .space-grid {
    grid-template-columns: 1.3fr .85fr;
    grid-template-rows: 260px 260px;
    gap: 14px
  }

  .space-grid img {
    height: 100%;
    aspect-ratio: auto
  }

  .space-grid img:first-child {
    grid-row: 1/3;
    height: 100%;
    aspect-ratio: auto
  }

  .visit-card {
    grid-template-columns: 1fr 1fr
  }

  .visit-copy {
    padding: 65px
  }

  .visit-copy dl {
    grid-template-columns: 92px 1fr;
    gap: 14px 20px;
    margin-top: 30px
  }

  .visit-image {
    grid-row: auto;
    height: 100%;
    min-height: 540px;
    aspect-ratio: auto
  }

  footer {
    padding-bottom: 105px
  }

  .mobile-bar {
    display: none
  }
}

/* Gallery lightbox v4 */
[data-gallery] {
  cursor: zoom-in
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px 72px;
  background: rgba(10, 10, 9, .95);
  color: #fff;
  touch-action: pan-y;
}

.image-lightbox.open {
  display: flex
}

.lightbox-stage {
  width: min(1100px, 100%);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 72vh;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  box-shadow: 0 18px 65px rgba(0, 0, 0, .42);
}

.lightbox-info {
  width: min(760px, 100%);
  margin-top: 16px;
  text-align: center;
}

.lightbox-title {
  display: block;
  font-size: 20px;
}

.lightbox-price {
  display: block;
  margin-top: 3px;
  color: #f1a268;
  font-weight: 700;
  font-size: 17px;
}

.lightbox-description {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.lightbox-counter {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .48);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
}

.lightbox-close {
  top: 16px;
  right: 18px;
  width: 50px;
  height: 50px;
  font-size: 40px;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  font-size: 46px;
  line-height: .8;
}

.lightbox-prev {
  left: 16px
}

.lightbox-next {
  right: 16px
}

@media(max-width:900px) {
  .image-lightbox {
    padding: 58px 14px 76px;
    touch-action: none;
  }

  .lightbox-stage {
    max-height: 100%
  }

  .lightbox-image {
    max-height: 60vh;
    max-width: 100%;
  }

  .lightbox-info {
    margin-top: 13px;
    padding: 0 8px;
  }

  .lightbox-title {
    font-size: 18px
  }

  .lightbox-price {
    font-size: 16px
  }

  .lightbox-description {
    font-size: 13px
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 16px;
    width: 46px;
    height: 46px;
    font-size: 38px;
    background: rgba(255, 255, 255, .12);
  }

  .lightbox-prev {
    left: 18px
  }

  .lightbox-next {
    right: 18px
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
  }
}


/* Pinch zoom and pan v5 */
.lightbox-stage {
  overflow: hidden;
  touch-action: none;
}

.lightbox-image {
  transform-origin: center center;
  transition: transform .16s ease;
  will-change: transform;
  touch-action: none;
}

.lightbox-image.is-zoomed {
  cursor: grab;
}

.lightbox-image.is-dragging {
  cursor: grabbing;
  transition: none;
}


/* Precise visit anchor alignment v6 */
#visit-title {
  scroll-margin-top: 86px;
}

@media(min-width:901px) {
  #visit-title {
    scroll-margin-top: 96px;
  }
}


/* Mobile navigation consolidation v7 */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mobile-sheet,
.mobile-sheet-backdrop {
  display: none
}

@media(max-width:900px) {
  body {
    padding-bottom: 68px
  }

  .site-header {
    height: 54px;
    padding: 0 14px;
  }

  .brand img {
    width: 78px;
    height: 44px;
  }

  .menu-toggle,
  .main-nav,
  .header-call {
    display: none !important
  }

  #story,
  #menu,
  #space,
  #visit-title {
    scroll-margin-top: 64px;
  }

  .mobile-bar {
    height: 68px;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    background: #fff;
    box-shadow: 0 -8px 24px rgba(35, 30, 24, .08);
  }

  .mobile-bar a,
  .mobile-bar button {
    min-width: 0;
    border: 0;
    border-right: 1px solid #eee;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-bar .mobile-primary {
    background: var(--orange);
    color: #fff;
    font-size: 15px;
  }

  .mobile-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }

  .mobile-more-icon {
    font-size: 17px;
    line-height: 1;
  }

  .mobile-sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: 79;
    display: block;
    background: rgba(24, 22, 19, .42);
    opacity: 0;
    transition: opacity .22s ease;
  }

  .mobile-sheet-backdrop[hidden] {
    display: none
  }

  .mobile-sheet-backdrop.open {
    opacity: 1
  }

  .mobile-sheet {
    position: fixed;
    z-index: 80;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    max-height: min(78vh, 650px);
    padding: 9px 18px calc(22px + env(safe-area-inset-bottom));
    overflow-y: auto;
    border-radius: 20px 20px 0 0;
    background: var(--paper);
    box-shadow: 0 -18px 55px rgba(0, 0, 0, .2);
    transform: translateY(105%);
    visibility: hidden;
    transition: transform .25s ease, visibility 0s linear .25s;
  }

  .mobile-sheet.open {
    transform: translateY(0);
    visibility: visible;
    transition: transform .25s ease;
  }

  .mobile-sheet-handle {
    width: 42px;
    height: 4px;
    margin: 1px auto 8px;
    border-radius: 999px;
    background: #d7d0c7;
  }

  .mobile-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-sheet-head img {
    width: 82px;
    height: 46px;
    object-fit: contain;
  }

  .mobile-sheet-home {
    display: flex;
    align-items: center;
    border-radius: 10px;
  }

  .mobile-sheet-home:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
  }

  .mobile-sheet-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #f2ece4;
    color: var(--ink);
    font-size: 29px;
    line-height: 1;
  }

  .mobile-sheet-nav {
    display: grid;
    margin-top: 8px;
  }

  .mobile-sheet-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 62px;
    padding: 10px 4px;
    border-bottom: 1px solid #eee7de;
  }

  .mobile-sheet-nav strong {
    font-size: 16px;
  }

  .mobile-sheet-nav span {
    color: var(--muted);
    font-size: 12px;
    text-align: right;
  }
}


/* Mobile overlay navigation v11 - menu only, bottom left */
@media(max-width:900px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px))
  }

  .site-header {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 70;
    height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    pointer-events: none;
  }

  .site-header .brand {
    display: none !important;
  }

  .site-header .menu-toggle {
    pointer-events: auto;
    position: absolute;
    top: auto;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    left: 14px;
    right: auto;
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    min-height: 46px;
    margin: 0;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    box-shadow: 0 6px 20px rgba(219, 120, 56, .38);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    font-size: 14px;
    font-weight: 800;
  }

  .menu-toggle-icon {
    font-size: 18px;
    line-height: 1
  }

  .menu-toggle-label {
    white-space: nowrap
  }

  .main-nav,
  .header-call {
    display: none !important
  }

  #story,
  #menu,
  #space,
  #visit-title {
    scroll-margin-top: 24px
  }

  .hero-facts {
    text-align: right;
    justify-items: end;
  }

  .hero-copy {
    padding-bottom: 88px;
  }

  .mobile-bar {
    display: none !important
  }

  .mobile-sheet {
    padding-bottom: calc(22px + max(env(safe-area-inset-bottom), 8px));
  }

  .lightbox-prev,
  .lightbox-next {
    bottom: calc(78px + max(env(safe-area-inset-bottom), 8px));
  }
}


/* v17: keep visit action buttons clear of the bottom-left floating menu */
@media(max-width:900px) {
  .visit-actions {
    width: 100%;
    justify-content: flex-end;
    transform: translateX(20px);
  }
}