/* ══════════════════════════════════════════════════════════
   정덕수 셰프의 미성각 味成珏 — 김포 양촌읍 석모리 중식당
   모던 다크 + 주홍/금색 포인트. 빌드 도구 없음.
   ══════════════════════════════════════════════════════════ */

/* ── 토큰 ───────────────────────────────────────────────── */
:root {
  --bg:        #0B0B0C;   /* 먹색 */
  --bg-2:      #0F0F11;
  --card:      #151517;
  --card-2:    #1B1B1E;

  --text:      #EFEDEA;
  --text-2:    #A8A49D;
  --text-3:    #6E6A64;

  --accent:    #D2452C;   /* 주홍 — 간판·단청 */
  --accent-2:  #E8563C;
  --accent-dim:rgba(210, 69, 44, .13);
  --gold:      #C9A227;   /* 금색 — 한자·구분선 */
  --gold-dim:  rgba(201, 162, 39, .18);

  --line:      rgba(255, 255, 255, .075);
  --line-2:    rgba(255, 255, 255, .15);

  --wrap: 1120px;
  --pad: clamp(20px, 5vw, 56px);
  --r: 14px;
  --r-sm: 9px;

  --ease: cubic-bezier(.22, .68, .28, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
          "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  --serif: "Noto Serif KR", "Nanum Myeongjo", "Batang", serif;
}

/* ── 리셋 ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -.011em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-break: keep-all;
}
h1, h2, h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.25;
  text-wrap: balance;
}
p  { margin: 0; text-wrap: pretty; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
a  { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  z-index: 200; padding: 10px 18px; border-radius: 0 0 10px 10px;
  background: var(--accent); color: #fff; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip:focus { top: 0; }

/* ── 리빌 애니메이션 ─────────────────────────────────────── */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 80ms);
}
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── 공통 조각 ──────────────────────────────────────────── */
.eyelet {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin-bottom: 14px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .16em;
  color: var(--accent-2); text-transform: uppercase;
}
.eyelet em {
  font-family: var(--serif); font-style: normal; font-weight: 700;
  font-size: 13px; letter-spacing: .1em; color: var(--gold);
}

.sec { padding: clamp(72px, 11vw, 130px) 0; position: relative; }
.sec + .sec { border-top: 1px solid var(--line); }
.sec__title {
  font-family: var(--serif);
  font-size: clamp(27px, 4.2vw, 42px);
  font-weight: 700;
  margin-bottom: 14px;
}
.sec__lead { max-width: 44ch; color: var(--text-2); margin-bottom: 40px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 100px;
  font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease),
              border-color .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-2); }
.btn--ghost { border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--map {
  flex: 1; background: var(--card-2); border-color: var(--line);
  color: var(--text); font-size: 14.5px; padding: 13px 18px;
}
.btn--map:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { padding: 11px 20px; font-size: 14px; }

.tag {
  display: inline-block; vertical-align: 2px;
  margin-left: 6px; padding: 1px 7px; border-radius: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: .02em; line-height: 1.6;
}
.tag--hit { background: var(--gold-dim); color: var(--gold); }
.tag--hot { background: var(--accent-dim); color: var(--accent-2); }

/* 사진 자리표시자 — 실사진이 들어오면 <img>로 교체 */
.ph {
  position: relative;
  display: grid; place-items: center;
  background:
    linear-gradient(135deg, rgba(210,69,44,.10), rgba(201,162,39,.06)),
    var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  color: var(--text-3);
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 28px 28px;
}
.ph span {
  position: relative;
  font-family: var(--serif); font-weight: 700;
  letter-spacing: .12em;
  color: rgba(201, 162, 39, .45);
}

/* ══ 네비게이션 ═══════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease),
              backdrop-filter .3s var(--ease);
}
.nav.is-stuck {
  background: rgba(11, 11, 12, .82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__in {
  display: flex; align-items: center; gap: 18px;
  width: 100%; max-width: var(--wrap); margin-inline: auto;
  padding: 15px var(--pad);
}
.nav__brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.nav__mark {
  display: grid; place-items: center;
  width: 34px; height: 34px; flex: none;
  border-radius: 8px;
  background: var(--accent);
  color: #F7F3EC;
  font-family: var(--serif); font-size: 19px; font-weight: 700;
  line-height: 1;
  padding-bottom: 2px;
}
.nav__name { font-family: var(--serif); font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.nav__name em {
  font-style: normal; font-size: 12.5px; font-weight: 500;
  color: var(--gold); letter-spacing: .12em; margin-left: 7px;
}
.nav__links { display: flex; gap: 4px; }
.nav__links a {
  position: relative;
  padding: 8px 13px; border-radius: 8px;
  font-size: 14.5px; font-weight: 500; color: var(--text-2);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__links a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav__links a.is-on { color: var(--text); }
.nav__links a.is-on::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px;
  height: 2px; border-radius: 2px; background: var(--accent);
}
.nav__cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 17px; border-radius: 100px;
  background: var(--accent); color: #fff;
  font-size: 14px; font-weight: 600; font-variant-numeric: tabular-nums;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav__cta:hover { background: var(--accent-2); transform: translateY(-1px); }
.nav__cta svg { width: 15px; height: 15px; fill: currentColor; }

.nav__burger { display: none; width: 40px; height: 40px; padding: 10px; }
.nav__burger span {
  display: block; height: 2px; border-radius: 2px; background: var(--text);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav__burger span + span { margin-top: 5px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ 히어로 ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 120px 0 90px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70% 55% at 18% 8%,  rgba(210, 69, 44, .20), transparent 62%),
    radial-gradient(55% 45% at 92% 86%, rgba(201, 162, 39, .11), transparent 60%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 20%, transparent 78%);
}
.hero__in { position: relative; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 12px; border-radius: 100px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.03);
  font-size: 13px; font-weight: 600; color: var(--text-2);
  margin-bottom: 26px;
}
.badge__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--text-3); flex: none;
}
.badge.is-open { border-color: rgba(93, 196, 122, .4); color: #8FE2A8; }
.badge.is-open .badge__dot {
  background: #4BD07A;
  box-shadow: 0 0 0 4px rgba(75, 208, 122, .18);
  animation: pulse 2.4s var(--ease) infinite;
}
.badge.is-closed { border-color: rgba(210, 69, 44, .4); color: #F0917E; }
.badge.is-closed .badge__dot { background: var(--accent); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(75, 208, 122, .20); }
  50%      { box-shadow: 0 0 0 7px rgba(75, 208, 122, 0); }
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(52px, 13vw, 128px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.04em;
  margin-bottom: 26px;
}
.hero__han {
  display: block;
  font-size: clamp(15px, 2.4vw, 22px);
  font-weight: 500;
  letter-spacing: .5em;
  color: var(--gold);
  margin-bottom: 16px;
  text-indent: .5em;
}
.hero__lead {
  font-size: clamp(19px, 2.9vw, 27px);
  font-weight: 600; line-height: 1.5; letter-spacing: -.025em;
  margin-bottom: 14px;
}
.hero__lead strong { color: var(--accent-2); font-weight: 700; }
.hero__sub { color: var(--text-2); max-width: 46ch; margin-bottom: 34px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 11px; margin-bottom: 52px; }

.hero__facts {
  display: flex; flex-wrap: wrap; gap: 12px 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero__facts li { display: flex; flex-direction: column; }
.hero__facts b {
  font-size: 16px; font-weight: 700; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.hero__facts span { font-size: 13px; color: var(--text-3); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 1px; height: 46px; background: var(--line-2); overflow: hidden;
}
.hero__scroll span {
  position: absolute; inset: 0;
  background: var(--accent);
  animation: drop 2.2s var(--ease) infinite;
}
@keyframes drop {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

/* ══ 인사말 ═══════════════════════════════════════════════ */
.greeting { background: var(--bg-2); }
.greeting__grid {
  display: grid; grid-template-columns: 300px 1fr; gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.greeting__portrait { margin: 0; position: sticky; top: 100px; }
.ph--portrait { aspect-ratio: 3 / 4; font-size: 30px; }
.greeting__portrait figcaption {
  margin-top: 14px; font-size: 13.5px; color: var(--text-3); text-align: center;
}
.greeting__body h2 {
  font-family: var(--serif);
  font-size: clamp(25px, 3.8vw, 38px);
  margin-bottom: 28px;
}
.prose p { color: var(--text-2); margin-bottom: 18px; max-width: 60ch; }
.prose b { color: var(--text); font-weight: 600; }
.sign {
  margin-top: 30px; padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--serif); font-size: 15px; color: var(--text-2);
}
.sign b { font-size: 21px; color: var(--gold); font-weight: 700; margin-left: 5px; }

.career { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.career li {
  flex: 1 1 150px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--card);
}
.career b {
  display: block; font-family: var(--serif); font-size: 20px;
  color: var(--gold); letter-spacing: -.01em;
}
.career span { font-size: 13.5px; color: var(--text-3); }

/* ══ 시그니처 ═════════════════════════════════════════════ */
.sig__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 40px;
}
.sig {
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--card); overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.sig:hover { transform: translateY(-5px); border-color: var(--gold-dim); }
.ph--dish {
  aspect-ratio: 4 / 3; border: 0; border-radius: 0;
  border-bottom: 1px solid var(--line);
  font-size: 21px;
}
.sig__body { padding: 22px 22px 24px; }
.sig__body h3 { font-family: var(--serif); font-size: 21px; margin-bottom: 9px; }
.sig__body p { font-size: 14.5px; color: var(--text-2); margin-bottom: 16px; }
.price {
  font-size: 17px; font-weight: 700; color: var(--gold);
  font-variant-numeric: tabular-nums; letter-spacing: -.01em;
}

/* ══ 메뉴 ═════════════════════════════════════════════════ */
.menu { background: var(--bg-2); }
.tabs {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin: 32px 0 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.tab {
  padding: 10px 20px; border-radius: 100px;
  border: 1px solid var(--line);
  font-size: 14.5px; font-weight: 600; color: var(--text-2);
  transition: all .2s var(--ease);
}
.tab:hover { color: var(--text); border-color: var(--line-2); }
.tab.is-on { background: var(--accent); border-color: var(--accent); color: #fff; }

.menu__list { display: none; }
.menu__list.is-on { display: block; }
.m__name {
  grid-area: name;
  font-size: 17px; font-weight: 600; letter-spacing: -.015em;
}
.m__name em {
  font-family: var(--serif); font-style: normal; font-weight: 500;
  font-size: 13px; color: var(--text-3); margin-left: 6px; letter-spacing: .08em;
}
.m__desc { grid-area: desc; font-size: 13.5px; color: var(--text-3); }
.m__price {
  grid-area: price; align-self: center;
  font-size: 16px; font-weight: 700; color: var(--gold);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.m__price small { font-size: 12px; font-weight: 500; color: var(--text-3); }

/* 코스 */
.course {
  display: block; padding: 26px 28px;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--card);
}
.course__head {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 8px 16px; margin-bottom: 6px;
}
.course h3 { font-family: var(--serif); font-size: 21px; }
.course h3 em {
  font-style: normal; font-size: 13px; font-weight: 500;
  color: var(--gold); margin-left: 7px; letter-spacing: .12em;
}
.course__desc { font-size: 13.5px; color: var(--text-3); margin-bottom: 12px; }
.course__list {
  padding: 14px 16px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.025);
  font-size: 14.5px; color: var(--text-2); line-height: 1.8;
}
.course--note { border-color: var(--gold-dim); background: linear-gradient(135deg, rgba(201,162,39,.06), transparent 60%), var(--card); }
.course--note h3 { margin-bottom: 8px; }
.course--note .course__desc { max-width: 52ch; margin-bottom: 18px; font-size: 14.5px; color: var(--text-2); }

.menu__note {
  margin-top: 26px; font-size: 13px; color: var(--text-3); line-height: 2;
}

/* ══ 매장 ═════════════════════════════════════════════════ */
.gal {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-bottom: 36px;
}
.ph--gal { aspect-ratio: 4 / 3; font-size: 17px; }
.ph--wide { grid-column: 1 / -1; aspect-ratio: 21 / 8; font-size: 22px; }

.facil {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
}
.facil li { background: var(--bg); padding: 22px 16px; text-align: center; }
.facil b {
  display: block; font-size: 17px; font-weight: 700; letter-spacing: -.02em;
  margin-bottom: 3px;
}
.facil span { font-size: 12.5px; color: var(--text-3); }

/* ══ 오시는길 ═════════════════════════════════════════════ */
.location { background: var(--bg-2); }
.loc__grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 56px); margin-top: 40px; align-items: start;
}


.info { display: grid; gap: 1px; background: var(--line); border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.info > div {
  display: grid; grid-template-columns: 68px 1fr; gap: 14px;
  padding: 16px 18px; background: var(--bg);
}
.info dt { font-size: 13.5px; font-weight: 600; color: var(--text-3); }
.info dd { font-size: 15px; }
.info dd a { color: var(--gold); font-weight: 600; font-variant-numeric: tabular-nums; }
.info dd a:hover { text-decoration: underline; }
.info dd b { font-weight: 600; }
.copy {
  margin-left: 8px; padding: 2px 9px; border-radius: 5px;
  border: 1px solid var(--line-2);
  font-size: 11.5px; font-weight: 600; color: var(--text-3);
  transition: all .2s var(--ease);
}
.copy:hover { color: var(--gold); border-color: var(--gold); }
.copy.is-done { color: #4BD07A; border-color: rgba(75,208,122,.5); }

.loc__btns { display: flex; gap: 10px; margin-top: 16px; }

/* ══ 영업시간 ═════════════════════════════════════════════ */
.hours__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px); margin-top: 40px; align-items: start;
}
.tbl { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.tbl tr { border-bottom: 1px solid var(--line); }
.tbl tr:last-child { border-bottom: 0; }
.tbl th, .tbl td { padding: 15px 20px; text-align: left; font-weight: 500; }
.tbl th { color: var(--text-2); font-size: 15px; }
.tbl td { text-align: right; font-variant-numeric: tabular-nums; font-size: 15px; }
.tbl__off td { color: var(--accent-2); }
.tbl tr.is-today { background: var(--accent-dim); }
.tbl tr.is-today th { color: var(--text); font-weight: 700; }
.tbl tr.is-today th::before {
  content: "오늘"; display: inline-block;
  margin-right: 8px; padding: 1px 7px; border-radius: 4px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  vertical-align: 2px;
}

.notes {
  display: grid; gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  margin-bottom: 18px;
}
.notes li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 14px 20px; background: var(--bg); font-size: 14.5px;
}
.notes b { font-weight: 600; color: var(--text-2); }
.notes span { color: var(--text); font-variant-numeric: tabular-nums; }

.resv {
  padding: 26px 28px; border-radius: var(--r);
  border: 1px solid var(--gold-dim);
  background: linear-gradient(135deg, rgba(201,162,39,.07), transparent 65%), var(--card);
}
.resv h3 { font-family: var(--serif); font-size: 20px; margin-bottom: 10px; }
.resv p { font-size: 14.5px; color: var(--text-2); margin-bottom: 18px; }
.resv b { color: var(--text); font-weight: 600; }
.resv .btn { font-variant-numeric: tabular-nums; }

/* ══ 푸터 ═════════════════════════════════════════════════ */
.foot { border-top: 1px solid var(--line); padding: 54px 0 40px; }
.foot__in { display: grid; gap: 26px; }
.foot__brand { display: flex; align-items: flex-start; gap: 13px; }
.foot__brand b { font-family: var(--serif); font-size: 18px; }
.foot__brand b em { font-style: normal; font-size: 12px; color: var(--gold); margin-left: 6px; letter-spacing: .12em; }
.foot__brand p { font-size: 13.5px; color: var(--text-3); }
.foot__info p { font-size: 14px; color: var(--text-2); }
.foot__info a { color: var(--gold); font-variant-numeric: tabular-nums; }
.foot__biz { font-size: 12.5px !important; color: var(--text-3) !important; margin-top: 6px !important; }
.foot__copy { font-size: 12.5px; color: var(--text-3); padding-top: 22px; border-top: 1px solid var(--line); }

/* ══ 모바일 고정 액션바 ═══════════════════════════════════ */
.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  background: rgba(11, 11, 12, .93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(110%);
  transition: transform .35s var(--ease-out);
}
.actionbar.is-up { transform: none; }
.ab__item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 11px 6px 12px;
  font-size: 11.5px; font-weight: 600; color: var(--text-2);
}
.ab__item svg { width: 21px; height: 21px; fill: currentColor; }
.ab__item--call { color: var(--accent-2); }
.ab__item:active { background: rgba(255,255,255,.05); }

/* ══ 반응형 ═══════════════════════════════════════════════ */
@media (max-width: 980px) {
  .greeting__grid { grid-template-columns: 220px 1fr; }
  .loc__grid, .hours__grid { grid-template-columns: 1fr; }
  .facil { grid-template-columns: repeat(3, 1fr); }
  .sig__grid { grid-template-columns: 1fr; }
  .ph--dish { aspect-ratio: 16 / 7; }
}

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

  .nav__burger { display: block; }
  .nav__cta span { display: none; }
  .nav__cta { padding: 9px 11px; }
  .nav__cta svg { width: 17px; height: 17px; }

  .nav__links {
    position: absolute; inset: 100% 0 auto;
    flex-direction: column; gap: 0;
    padding: 8px var(--pad) 18px;
    background: rgba(11, 11, 12, .97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 13px 4px; font-size: 16px; border-radius: 0; }
  .nav__links a + a { border-top: 1px solid var(--line); }
  .nav__links a.is-on::after { left: 4px; right: auto; width: 16px; bottom: 8px; }

  .greeting__grid { grid-template-columns: 1fr; }
  .greeting__portrait { position: static; max-width: 220px; }
  .ph--portrait { aspect-ratio: 1 / 1; }

  .hero { min-height: auto; padding: 130px 0 80px; }
  .hero__facts { gap: 14px 28px; }

  .actionbar { display: flex; }
  body { padding-bottom: 68px; }

  .gal { grid-template-columns: 1fr; }
  .ph--wide { aspect-ratio: 16 / 9; }
  .facil { grid-template-columns: repeat(2, 1fr); }

  .info > div { grid-template-columns: 1fr; gap: 3px; }
  .loc__btns { flex-direction: column; }

  .course { padding: 22px 20px; }
  .foot__copy { text-align: left; }
}

@media (max-width: 420px) {
  .hero__facts { flex-direction: column; gap: 12px; }
  .hero__cta .btn { flex: 1; }
  .career li { flex-basis: 100%; }
  .tab { padding: 9px 15px; font-size: 13.5px; }
}

/* ── 실사진 ─────────────────────────────────────────────────
   .ph 안에 <img class="ph__img">를 넣으면 플레이스홀더를 덮는다.
   파일이 없으면 onerror로 img가 지워져 한자 플레이스홀더가 그대로 보인다. */
.ph__img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  max-width: none;
}
.ph__img--face { object-position: 50% 18%; }
.sig:hover .ph__img { transform: scale(1.04); }
.sig .ph__img { transition: transform .6s var(--ease-out); }

/* ── 메뉴 가로 캐러셀 ────────────────────────────────────────
   탭은 그대로, 선택된 탭의 메뉴가 가로 카드 줄로 나오고 옆으로 넘겨 본다.
   터치: 기본 스와이프 / PC: 드래그·화살표 버튼·Shift+휠 (main.js 7번) */

/* 컨트롤 바 */
.mc-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin: -8px 0 18px;
}
.mc-hint { font-size: 13px; color: var(--text-3); }
.mc-hint--m { display: none; }
.mc-ctrl { display: flex; align-items: center; gap: 8px; }
.mc-ctrl.is-static .mc-btn { visibility: hidden; }
.mc-count {
  margin-right: 6px; min-width: 64px; text-align: right;
  font-size: 13.5px; color: var(--text-3); font-variant-numeric: tabular-nums;
}
.mc-count b { color: var(--gold); font-weight: 700; }
.mc-btn {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-2); color: var(--text);
  transition: border-color .2s var(--ease), color .2s var(--ease), opacity .2s var(--ease);
}
.mc-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mc-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.mc-btn:disabled { opacity: .28; cursor: default; }

/* 트랙 — 좌우 여백까지 번지게 해서 카드가 가장자리에서 잘려 보이도록 */
.menu__panels { margin-inline: calc(var(--pad) * -1); }
.menu__list.is-on,
.menu__list--course.is-on {
  display: flex; gap: 16px;
  overflow-x: auto; overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--pad);
  padding: 6px var(--pad) 20px;
  scrollbar-width: none;
  cursor: grab;
  --fl: 0px; --fr: 56px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 var(--fl), #000 calc(100% - var(--fr)), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 var(--fl), #000 calc(100% - var(--fr)), transparent 100%);
}
.menu__list::-webkit-scrollbar { display: none; }
.menu__list.not-start { --fl: 40px; }
.menu__list.at-end    { --fr: 0px; }
.menu__list:focus-visible { outline-offset: -2px; }
.menu__list.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.menu__list.is-dragging img { pointer-events: none; }

/* 카드 */
.menu__list > li {
  flex: 0 0 236px;
  display: flex; flex-direction: column;
  scroll-snap-align: start;
  padding: 0;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--card);
  overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.menu__list > li:hover { background: var(--card); border-color: var(--gold-dim); transform: translateY(-3px); }

.m__thumb {
  order: -1; display: block;
  width: 100%; height: auto; aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
/* 사진이 없는 메뉴는 味 타일 */
.menu__list > li:not(.course):not(:has(> .m__thumb))::before {
  content: "味"; order: -1;
  display: grid; place-items: center; aspect-ratio: 1 / 1;
  font-family: var(--serif); font-size: 56px; font-weight: 700;
  color: rgba(201, 162, 39, .32);
  background: linear-gradient(135deg, rgba(210,69,44,.10), rgba(201,162,39,.06)), var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.menu__list > li:not(.course) > .m__name { padding: 15px 16px 0; font-size: 16.5px; line-height: 1.4; }
.menu__list > li:not(.course) > .m__name em { display: block; margin: 2px 0 2px; }
.menu__list > li:not(.course) > .m__name .tag { margin: 4px 4px 0 0; vertical-align: 0; }
.menu__list > li:not(.course) > .m__desc { padding: 6px 16px 0; font-size: 13px; line-height: 1.55; }
.menu__list > li:not(.course) > .m__price {
  margin-top: auto; padding: 14px 16px 16px;
  align-self: stretch; justify-self: auto;
  font-size: 17px;
}
.m__price::after { content: "원"; margin-left: 1px; font-size: 13px; font-weight: 600; color: var(--text-2); }

/* 세트 카드 */
.menu__list > li.course { flex-basis: 300px; padding: 22px 22px 24px; }
.course .course__head { flex-direction: column; align-items: flex-start; gap: 4px; }
.course .course__head .m__price { align-self: flex-start; }
.course .course__list { margin-top: auto; }
.course .course__list small { display: block; margin-top: 4px; color: var(--text-3); font-size: 12px; }
.course--note .btn { align-self: flex-start; margin-top: auto; }

/* 진행 막대 */
.mc-progress { height: 2px; margin: 2px 0 0; border-radius: 2px; background: var(--line); overflow: hidden; }
.mc-progress span {
  display: block; height: 100%; width: 25%;
  border-radius: 2px; background: var(--accent);
  transition: width .2s var(--ease);
}

@media (max-width: 760px) {
  .mc-hint--pc { display: none; }
  .mc-hint--m { display: inline; }
  .mc-btn { width: 38px; height: 38px; }
  .mc-count { min-width: 0; }
  .menu__list > li { flex-basis: 62vw; }
  .menu__list > li.course { flex-basis: 78vw; }
  .menu__list.is-on, .menu__list--course.is-on { --fr: 32px; gap: 12px; }
}

/* ── 네비 이미지 로고 ────────────────────────────────────────
   .has-logo 일 때 이미지 로고만 보이고, 이미지가 실패하면
   onerror가 .has-logo를 떼어 기존 글자 로고(.nav__text)가 드러난다. */
.nav__text { display: flex; align-items: center; gap: 11px; }
.nav__brand.has-logo .nav__text { display: none; }
.nav__logo {
  display: block;
  height: 68px; width: auto; max-width: none;
  transition: height .3s var(--ease);
}
.nav.is-stuck .nav__logo { height: 50px; }
.nav__brand.has-logo { padding-block: 0; margin-block: -6px; }

@media (max-width: 760px) {
  .nav__logo { height: 52px; }
  .nav.is-stuck .nav__logo { height: 44px; }
}

/* ── 시그니처 3종 — 대표 1(크게) + 2(오른쪽 위아래) ──────────────────── */
.sig__grid--feature { grid-template-columns: 1.35fr 1fr; }
.sig__grid--feature .sig { display: flex; flex-direction: column; }
.sig__grid--feature .sig--lead { grid-row: span 2; }
.sig__grid--feature .sig__body { display: flex; flex-direction: column; flex: 1; }
.sig__grid--feature .sig__body .price { margin-top: auto; }
.sig__grid--feature .sig:not(.sig--lead) .ph--dish { aspect-ratio: 16 / 10; }
.sig__grid--feature .sig--lead .ph--dish { aspect-ratio: auto; flex: 1; min-height: 320px; }
.sig__grid--feature .sig--lead .sig__body { flex: none; padding: 26px 26px 28px; }
.sig__grid--feature .sig--lead h3 { font-size: 27px; margin-bottom: 12px; }
.sig__grid--feature .sig--lead .sig__body > p:not(.sig__badge) { font-size: 15.5px; line-height: 1.75; }
.sig__grid--feature .sig--lead .price { font-size: 20px; }
.sig__body > .sig__badge {
  align-self: flex-start;
  margin-bottom: 12px; padding: 3px 11px; border-radius: 100px;
  background: var(--gold-dim); color: var(--gold);
  font-size: 12px; font-weight: 700; letter-spacing: .02em;
}

@media (max-width: 980px) {
  .sig__grid--feature { grid-template-columns: 1fr 1fr; }
  .sig__grid--feature .sig--lead { grid-column: 1 / -1; grid-row: auto; }
  .sig__grid--feature .sig--lead .ph--dish { flex: none; min-height: 0; aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) {
  .sig__grid--feature { grid-template-columns: 1fr; }
  .sig__grid--feature .sig:not(.sig--lead) .ph--dish { aspect-ratio: 16 / 9; }
  .sig__grid--feature .sig--lead .sig__body { padding: 22px 20px 24px; }
  .sig__grid--feature .sig--lead h3 { font-size: 23px; }
}

/* ── 셰프 사진 2장 — 오너셰프 + 스승 여경래 셰프와 (나란히) ─────
   두 사진 모두 2:3 원본 비율 그대로 보여 준다(잘림 없음). */
.greeting__grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); }
.greeting__photos {
  position: sticky; top: 100px; align-self: start;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.greeting__photos .greeting__portrait { position: static; max-width: none; margin: 0; }
.greeting__photos .ph--portrait { aspect-ratio: 2 / 3; }
.greeting__photos .ph__img { object-position: 50% 50%; }
.greeting__photos figcaption { margin-top: 10px; font-size: 13px; line-height: 1.45; }

@media (max-width: 980px) {
  .greeting__grid { grid-template-columns: 1fr; }
  .greeting__photos { position: static; max-width: 560px; }
}
@media (max-width: 760px) {
  .greeting__photos { max-width: none; gap: 10px; }
  .greeting__photos .ph--portrait { aspect-ratio: 2 / 3; }
  .greeting__photos figcaption { font-size: 12px; }
}

/* ── 매장 사진 2장 — 홀(가로) + 프라이빗룸(세로) ──────────────── */
.gal--2 { grid-template-columns: 1.55fr 1fr; }
.gal--2 .ph--gal { aspect-ratio: auto; height: clamp(300px, 38vw, 460px); }
@media (max-width: 760px) {
  .gal--2 { grid-template-columns: 1fr; }
  .gal--2 .ph--gal:first-child { height: auto; aspect-ratio: 4 / 3; }
  .gal--2 .ph--gal:last-child  { height: auto; aspect-ratio: 4 / 5; }
}

/* ── 오시는길 약도 이미지 — 섹션 전체 폭 ─────────────────────
   PC: 원본 비율 그대로 / 휴대폰: 가게 핀 중심 정사각 크롭, 누르면 원본 새 창 */
.loc__mapimg { margin: 36px 0 0; }
.loc__mapimg a {
  display: block; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r);
  background: #F6F3EE;
}
.loc__mapimg img { display: block; width: 100%; height: auto; transition: transform .6s var(--ease-out); }
.loc__mapimg a:hover img { transform: scale(1.015); }
.loc__mapimg figcaption { margin-top: 10px; font-size: 12.5px; color: var(--text-3); }
.loc__zoom { display: none; color: var(--gold); }

.loc__grid { grid-template-columns: 1fr; margin-top: 28px; }
.loc__grid .info { grid-template-columns: 1fr 1fr; }

@media (max-width: 760px) {
  .loc__mapimg { margin-top: 28px; }
  .loc__mapimg img { aspect-ratio: 1 / 1; object-fit: cover; object-position: 44.5% 50%; }
  .loc__zoom { display: inline; }
  .loc__grid .info { grid-template-columns: 1fr; }
}
/* ── 영업시간 · 평일 브레이크타임 ─────────────────────────── */
.hours__pill {
  display: inline-block; vertical-align: middle;
  margin: 0 0 4px 12px; padding: 4px 12px; border-radius: 100px;
  background: var(--accent-dim); color: var(--accent-2);
  font-family: var(--font); font-size: 14px; font-weight: 700; letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.tbl td { line-height: 1.45; }
.tbl__brk {
  display: block; margin-top: 3px;
  font-size: 12.5px; font-weight: 600; color: var(--accent-2);
}
.tbl__brk--none { color: var(--text-3); font-weight: 500; }
.notes li.notes__hl { background: linear-gradient(90deg, var(--accent-dim), transparent 80%), var(--bg); }
.notes li.notes__hl b, .notes li.notes__hl span { color: var(--accent-2); font-weight: 700; }

@media (max-width: 760px) {
  .hours__pill { display: table; margin: 10px 0 0; font-size: 13px; }
}

/* ── 히어로 "미성각" 황금빛 반짝임 ───────────────────────────
   금색 그라디언트를 글자 모양으로 잘라 넣고, 밝은 빛줄기가 천천히 훑고 지나간다.
   모서리의 작은 별 두 개가 번갈아 반짝인다. */
.hero__name {
  position: relative;
  display: inline-block;
  padding: .02em .06em .08em;
  margin: -.02em -.06em -.08em;
  background: linear-gradient(105deg,
    #8A6A1C 0%, #C9A227 18%, #E9C766 30%,
    #FFF4CF 40%, #FFFBEA 44%, #F2D683 50%,
    #C9A227 62%, #A7801F 74%, #E7C96F 88%, #9C7620 100%);
  background-size: 260% 100%;
  background-position: 120% 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 2px 22px rgba(201, 162, 39, .28));
  animation: goldShine 5s cubic-bezier(.45, .05, .35, 1) infinite;
}
@keyframes goldShine {
  0%   { background-position: 120% 0; }
  60%  { background-position: -20% 0; }
  100% { background-position: -20% 0; }
}

/* 반짝이는 별 */
.hero__name::before,
.hero__name::after {
  content: "✦";
  position: absolute;
  -webkit-text-fill-color: #FFF1C2;
  color: #FFF1C2;
  font-family: var(--font);
  line-height: 1;
  pointer-events: none;
  text-shadow: 0 0 10px rgba(255, 226, 140, .9), 0 0 22px rgba(201, 162, 39, .7);
  opacity: 0;
  transform: scale(.3) rotate(0deg);
  animation: goldTwinkle 5s ease-in-out infinite;
}
.hero__name::before { top: .02em; right: -.12em; font-size: .26em; animation-delay: 2.1s; }
.hero__name::after  { bottom: .18em; left: .02em;  font-size: .17em; animation-delay: 3.2s; }
@keyframes goldTwinkle {
  0%, 100% { opacity: 0; transform: scale(.3) rotate(0deg); }
  8%       { opacity: 1; transform: scale(1)  rotate(45deg); }
  18%      { opacity: 0; transform: scale(.4) rotate(90deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__name { animation: none; background-position: 50% 0; }
  .hero__name::before, .hero__name::after { animation: none; opacity: 0; }
}
