@charset "utf-8";

/* ══════════════════════════════════════════════════════════
   Sushi On · 웹사이트 v1
   토큰 근거: ~/Desktop/스시온/brand-spec.md (2026-08-14 확정)
   BASE #F0EADB · PRIMARY #274262 · ACCENT #C39D65
   서체: 큰 문장 Instrument Serif · 본문 Inter
   ══════════════════════════════════════════════════════════ */

:root {
  --navy:      #274262;   /* PRIMARY */
  --navy-deep: #1D3552;
  --navy-ink:  #16283D;   /* 더 깊은 바닥 */
  --rice:      #F0EADB;   /* BASE */
  --gold:      #C39D65;   /* ACCENT */
  --gold-soft: #D9BC8D;   /* 작은 글자용 밝은 금색 (대비 확보) */
  --slate:     #4A5A6E;
  --line:      rgba(240, 234, 219, 0.16);
  --line-soft: rgba(240, 234, 219, 0.08);

  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", sans-serif;

  --wrap: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --bar-h: 62px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* 고정 상단바 높이만큼 앵커 오프셋 */
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--rice);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: var(--bar-h);
}

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

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

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }

.ser {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

/* 스크린리더 전용 */
.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; top: -100px; left: 12px; z-index: 200;
  background: var(--rice); color: var(--navy);
  padding: 10px 16px; border-radius: 4px; font-size: 14px; font-weight: 600;
}
.skip:focus { top: 12px; }

/* ── 상단 지점 바 ───────────────────────────────────────── */
.topbar {
  background: var(--navy-ink);
  border-bottom: 1px solid var(--line-soft);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.topbar .wrap { display: flex; align-items: center; gap: 30px; height: 38px; }
.topbar em {
  font-style: normal; color: var(--gold-soft); font-weight: 600;
  flex-shrink: 0;
}
.topbar nav { display: flex; gap: 16px; flex-shrink: 0; }
.topbar nav a { color: rgba(240, 234, 219, 0.62); transition: color 0.2s; }
.topbar nav a:hover, .topbar nav a.on { color: var(--rice); }

.marquee {
  flex: 1; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 16%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 92%, transparent);
}
.marquee span {
  display: inline-block; white-space: nowrap;
  color: rgba(240, 234, 219, 0.42);
  animation: slide 34s linear infinite;
}
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── 내비게이션 ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: var(--navy);
  border-bottom: 1px solid var(--line-soft);
}
.nav .wrap { display: flex; align-items: center; gap: 20px; height: 66px; }
.nav .logo { width: 148px; flex-shrink: 0; }
.nav .logo img { width: 100%; }
.nav ul {
  display: flex; gap: 28px; list-style: none; margin: 0 0 0 auto; padding: 0;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
}
.nav ul a { color: rgba(240, 234, 219, 0.74); transition: color 0.2s; }
.nav ul a:hover, .nav ul a[aria-current] { color: var(--rice); }

.btn {
  display: inline-block; background: var(--gold); color: #23303F;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 12px 20px; border: 0; border-radius: 3px; cursor: pointer;
  font-family: var(--sans); transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--gold-soft); }
.btn:active { transform: translateY(1px); }
.btn.ghost {
  background: transparent; color: var(--rice);
  border: 1px solid var(--line); padding: 11px 19px;
}
.btn.ghost:hover { border-color: var(--rice); background: rgba(240, 234, 219, 0.06); }

.navbtn { margin-left: 4px; flex-shrink: 0; }

/* 모바일 메뉴 토글 */
.burger {
  display: none; margin-left: auto; width: 42px; height: 42px;
  background: transparent; border: 1px solid var(--line); border-radius: 3px;
  cursor: pointer; padding: 0; position: relative;
}
.burger i {
  position: absolute; left: 11px; width: 18px; height: 1.5px; background: var(--rice);
  transition: transform 0.25s, opacity 0.2s;
}
.burger i:nth-child(1) { top: 15px; }
.burger i:nth-child(2) { top: 20px; }
.burger i:nth-child(3) { top: 25px; }
.burger[aria-expanded="true"] i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ── 히어로 ─────────────────────────────────────────────── */
.hero {
  /* 사진 비율(1.769)을 따라 높이를 잡아야 창을 키워도 접시 밑이 안 잘린다 */
  position: relative; min-height: min(88vh, calc(100vw / 1.9));
  display: grid; place-items: center start; overflow: hidden;
  background: var(--navy-ink);
  text-align: left;
  padding: clamp(30px, 5vw, 58px) var(--gut) clamp(70px, 12vw, 130px);
}
.hero picture, .hero .heroimg { position: absolute; inset: 0; display: block; }
.hero .heroimg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 76% 0%;      /* 위 기준(병 안 잘림) · 더 오른쪽으로 */
  opacity: 1;
}
.hero .grain {
  position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.hero .scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 40, 61, 0.58) 0%, rgba(22, 40, 61, 0.30) 34%,
                    rgba(22, 40, 61, 0) 58%, rgba(22, 40, 61, 0.22) 100%);
}
/* 해 · 로고의 원에서 온 모티프 */
.hero .sun {
  position: absolute; left: 50%; bottom: -18%;
  width: min(46vw, 380px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(224, 190, 139, 0.26) 0%,
              rgba(195, 157, 101, 0.13) 52%, rgba(195, 157, 101, 0) 70%);
  transform: translateX(-50%);
  filter: blur(2px);
}
.hero .horizon {
  position: absolute; left: 0; right: 0; bottom: 17%;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(195, 157, 101, 0.42), transparent);
}
.hero .inner { position: relative; max-width: 620px; margin-left: clamp(0px, 3vw, 60px);
  text-shadow: 0 2px 10px rgba(6, 12, 22, 0.9), 0 6px 32px rgba(6, 12, 22, 0.7); }
.hero h1 {
  font-family: var(--serif); font-weight: 400; margin: 0;
  font-size: clamp(38px, 7.4vw, 78px); line-height: 1.06;
  letter-spacing: -0.015em;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero .sub {
  margin: 16px 0 0; font-size: clamp(10px, 2.4vw, 12px);
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(240, 234, 219, 0.88);
}
.hero .cta { margin-top: 18px; display: flex; gap: 12px; justify-content: flex-start; flex-wrap: wrap; }
.hero .cta .btn { text-shadow: none; }             /* 문장용 그림자가 버튼까지 번지지 않게 */

/* 일출 오프닝 · 금색이 화면을 채웠다 해로 줄어듭니다 */
.sunrise {
  position: fixed; inset: 0; z-index: 150; background: var(--navy-ink);
  display: grid; place-items: center; pointer-events: none; overflow: hidden;
}
.sunrise b {
  display: block; width: 150vmax; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #E5C696 0%, var(--gold) 60%, #A8834F 100%);
  animation: shrink 1.5s cubic-bezier(0.72, 0, 0.24, 1) forwards;
}
.sunrise { animation: fade 0.5s ease 1.25s forwards; }
@keyframes shrink { from { transform: scale(1); } to { transform: scale(0.06); opacity: 0.9; } }
@keyframes fade { to { opacity: 0; visibility: hidden; } }

/* ── 오프닝 · 1안 해가 내려앉는다 ─────────────────────────
   페이지가 열리면 화면을 채운 해가 줄어들며 장면이 나타나고
   문장이 낱말 단위로 올라온다. 전부 CSS 온로드 애니메이션. */
.no-op .opening { display: none; }
.no-op .hero h1 .w, .no-op .hero .sub, .no-op .hero .cta { animation: none; opacity: 1; transform: none; }
.no-op .hero .afterglow { display: none; }
.opening {
  position: fixed; inset: 0; z-index: 150; background: var(--navy-ink);
  display: grid; place-items: center; overflow: hidden; pointer-events: none;
  animation: op-out 0.5s ease 1.35s forwards;
}
.opening b {
  display: block; width: 165vmax; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, #E5C696 0%, var(--gold) 58%, #A8834F 100%);
  animation: op-shrink 1.5s cubic-bezier(0.72, 0, 0.24, 1) forwards;
}
@keyframes op-shrink { to { transform: scale(0.045); opacity: 0.95; } }
@keyframes op-out { to { opacity: 0; visibility: hidden; } }

/* 해가 사라진 자리의 잔광 */
.hero .afterglow {
  position: absolute; left: 50%; top: 42%; width: min(30vw, 300px); aspect-ratio: 1;
  transform: translate(-50%, -50%); border-radius: 50%; opacity: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(224, 190, 139, 0.5), rgba(195, 157, 101, 0) 70%);
  animation: op-glow 1.7s ease 1.35s forwards;
}
@keyframes op-glow {
  0% { opacity: 0; }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.8); }
}

/* 문장 낱말 등장 */
.hero h1 .w { display: inline-block; opacity: 0; transform: translateY(16px); }
.hero h1 .w { animation: op-word 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; animation-delay: var(--d, 1.35s); }
@keyframes op-word { to { opacity: 1; transform: none; } }
.hero .sub, .hero .cta { opacity: 0; animation: op-fade 0.8s ease both; }
.hero .sub { animation-delay: 1.9s; }
.hero .cta { animation-delay: 2.1s; }
@keyframes op-fade { to { opacity: 1; } }

/* ── 섹션 머리 ──────────────────────────────────────────── */
.sec { padding: clamp(58px, 9vw, 108px) 0 0; }
.sechead { margin-bottom: clamp(26px, 4vw, 42px); }
.sechead .ovl {
  display: block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 14px; font-weight: 600;
}
.sechead h1, .sechead h2 { font-family: var(--serif); font-weight: 400; margin: 0;
  font-size: clamp(28px, 5vw, 46px); line-height: 1.12; }
.sechead p { margin: 14px 0 0; max-width: 62ch; color: rgba(240, 234, 219, 0.72); font-size: 15px; }

/* ── 텍스처 섹션 · 메뉴판 슬레이트가 스크롤과 함께 떠오릅니다 ── */
.texsec { position: relative; overflow: hidden; padding-bottom: clamp(58px, 9vw, 108px); }
.texsec .texbg {
  position: absolute; left: 0; right: 0; top: -16%; bottom: -16%;
  z-index: 0; pointer-events: none; will-change: transform;
}
.texsec .texbg img { width: 100%; height: 100%; object-fit: cover; }
/* 남색 물을 들여서 브랜드 지면과 잇는다 · 위아래는 지면색으로 녹임 */
.texsec .texbg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    var(--navy) 0%, rgba(39, 66, 98, 0.66) 22%,
    rgba(39, 66, 98, 0.55) 55%, var(--navy) 100%);
}
.texsec .wrap { position: relative; z-index: 1; }
.texsec + .sec { padding-top: clamp(40px, 6vw, 76px); }

/* ── 가로 갤러리 ────────────────────────────────────────── */
.rail {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px var(--gut) 8px; margin: 0 calc(var(--gut) * -1);
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
  -webkit-overflow-scrolling: touch;
}
.rail::-webkit-scrollbar { height: 5px; }
.rail::-webkit-scrollbar-thumb { background: rgba(195, 157, 101, 0.6); border-radius: 4px; }
.rail::-webkit-scrollbar-track { background: rgba(240, 234, 219, 0.07); }

.cardlink { flex: 0 0 clamp(232px, 68vw, 306px); scroll-snap-align: start; display: block; }
.cardlink .card { flex: none; width: 100%; }
.setgrid .card { width: auto; flex: none; }
.card {
  flex: 0 0 clamp(232px, 68vw, 306px); scroll-snap-align: start;
  margin: 0; background: var(--navy-deep);
  border: 1px solid var(--line-soft); border-radius: 5px; overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover { border-color: rgba(195, 157, 101, 0.5); transform: translateY(-3px); }
.card .pic { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: #101418; }
.card .pic img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.card:hover .pic img { transform: scale(1.045); }
.card .no {
  position: absolute; top: 10px; left: 12px; z-index: 2;
  font-family: var(--serif); font-size: 20px; color: var(--rice);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}
.card figcaption {
  display: flex; align-items: baseline; gap: 10px;
  padding: 15px 16px 17px; border-top: 1px solid var(--line-soft);
}
.card figcaption b { font-size: 14px; font-weight: 600; line-height: 1.35; }
.card figcaption span {
  margin-left: auto; font-size: 14px; color: var(--gold-soft);
  font-variant-numeric: tabular-nums; flex-shrink: 0;
}
.railhint {
  margin: 14px 0 0; font-size: 12px; letter-spacing: 0.08em;
  color: rgba(240, 234, 219, 0.72);
  display: inline-flex; align-items: center; gap: 8px;
}
.railhint svg { width: 13px; height: 13px; color: var(--gold-soft); }
.railhint svg { animation: nudge 1.8s ease-in-out infinite; }
@keyframes nudge {
  0%, 100% { transform: translateX(0); opacity: .75; }
  50% { transform: translateX(5px); opacity: 1; }
}

/* ── 스토리 · 사진 고정 ─────────────────────────────────── */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 68px); align-items: start; }
.story .pin { position: sticky; top: 96px; padding-bottom: clamp(16px, 2.5vw, 32px); }
.story .pin img { width: 100%; aspect-ratio: 1392 / 992; object-fit: contain; background: #16283D; border-radius: 5px; margin-bottom: clamp(20px, 3vw, 36px); }
.story .blocks { display: flex; flex-direction: column; gap: clamp(46px, 8vw, 96px); padding: 8px 0 40px; }
.story .blk .n {
  font-family: var(--serif); font-size: 30px; color: var(--gold); display: block; margin-bottom: 10px;
}
.story .blk h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 3.4vw, 31px);
  margin: 0 0 14px; line-height: 1.16; }
.story .blk p { margin: 0; color: rgba(240, 234, 219, 0.76); max-width: 46ch; }

/* ── 호버 메뉴 ──────────────────────────────────────────── */
.hov { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.hov .list { display: flex; flex-direction: column; }
.hov .row {
  display: flex; align-items: baseline; gap: 14px; width: 100%;
  background: transparent; border: 0; border-bottom: 1px solid var(--line-soft);
  color: inherit; font-family: var(--serif); font-size: clamp(19px, 2.8vw, 26px);
  padding: 17px 4px; cursor: pointer; text-align: left; transition: color 0.2s, padding 0.25s;
}
.hov .row i { flex: 1; height: 1px; background: var(--line-soft); }
.hov .row span { font-family: var(--sans); font-size: 15px; color: rgba(240, 234, 219, 0.66);
  font-variant-numeric: tabular-nums; }
.hov .row:hover, .hov .row.on { color: var(--gold-soft); padding-left: 12px; }
.hov .row.on span { color: var(--gold-soft); }

.hov .stack {
  position: relative; aspect-ratio: 4 / 3; border-radius: 5px; overflow: hidden;
  background: #101418; border: 1px solid var(--line-soft);
}
.hov .stack img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.4s;
}
.hov .stack img.on { opacity: 1; }

/* ── 리뷰 ───────────────────────────────────────────────── */
.rev {
  margin-top: clamp(58px, 9vw, 108px);
  background: var(--navy-ink); border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(46px, 7vw, 82px) 0;
}
.rev .wrap { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.rev blockquote { margin: 0; font-family: var(--serif); font-size: clamp(21px, 3.3vw, 32px);
  line-height: 1.32; }
.rev cite { display: block; margin-top: 16px; font-family: var(--sans); font-style: normal;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(240, 234, 219, 0.7); }
.revlinks { margin: 18px 0 0; display: flex; gap: 20px; flex-wrap: wrap; }
.revlinks a {
  font-size: 13px; color: var(--gold-soft); text-decoration: underline;
  text-underline-offset: 3px;
}
.revlinks a:hover { color: var(--rice); }
.rev .stats { display: flex; gap: clamp(20px, 4vw, 46px); flex-wrap: wrap; }
.rev .stats div b {
  display: block; font-family: var(--serif); font-size: clamp(30px, 5vw, 46px); font-weight: 400;
  line-height: 1; color: var(--rice);
  font-variant-numeric: tabular-nums;
}
.rev .stats div b i {
  font-style: normal; color: var(--gold); font-size: 0.62em; margin-left: 3px;
  display: inline-block;
}
.js .rev .stats div b i { opacity: 0; transform: scale(0.4); }
.rev .stats div b i.pop {
  animation: starpop 0.5s cubic-bezier(0.3, 1.6, 0.4, 1) forwards;
}
@keyframes starpop { to { opacity: 1; transform: scale(1); } }
.rev .stats div span { display: block; margin-top: 9px; font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(240, 234, 219, 0.7); line-height: 1.55; }

/* ── 지점 카드 ──────────────────────────────────────────── */
.locs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.loc {
  display: flex; flex-direction: column; gap: 7px;
  background: var(--navy-deep); border: 1px solid var(--line-soft);
  border-radius: 5px; padding: 24px 22px 22px;
  transition: border-color 0.25s, transform 0.25s;
}
.loc:hover { border-color: rgba(195, 157, 101, 0.5); transform: translateY(-3px); }
.loc b { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; }
.loc .addr, .loc .hrs { font-size: 14px; color: rgba(240, 234, 219, 0.7); }
.loc .loctitle:hover { color: var(--gold-soft); }
/* 주소·주차 줄 길이가 카드마다 달라 버튼 높이가 어긋났다. 아래로 밀어 붙인다 */
.loc .locact { display: flex; gap: 8px; margin-top: auto; padding-top: 16px; align-items: center; flex-wrap: wrap; }
.btn.sm { padding: 8px 13px; font-size: 11px; }
.loc .go { margin-left: auto; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600; }
.loc .go:hover { color: var(--rice); }

.stat { display: inline-flex; align-items: center; gap: 7px; font-size: 12px;
  color: rgba(240, 234, 219, 0.8); }
.stat .dot { width: 7px; height: 7px; border-radius: 50%; background: #57B87E; flex-shrink: 0; }
.stat .dot.shut { background: #8B94A0; }
.stat .dot.soon { background: var(--gold); }
.stat .blinktxt {
  color: var(--gold-soft); font-weight: 600;
  animation: softblink 2.2s ease-in-out infinite;
}
@keyframes softblink { 50% { opacity: 0.32; } }
.loc .hrs.park { font-size: 13px; color: rgba(240, 234, 219, 0.6); }

/* ── 푸터 ───────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--line-soft); margin-top: clamp(58px, 9vw, 108px);
  padding: clamp(40px, 6vw, 62px) 0 44px; }
.foot .grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; }
.foot .logo { width: 132px; margin-bottom: 16px; }
.foot h4 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(240, 234, 219, 0.7); margin: 0 0 14px; font-weight: 600; }
.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px;
  font-size: 14px; }
.foot .footlocs li { display: flex; flex-direction: column; gap: 2px; }
.foot .footlocs span { font-size: 12px; color: rgba(240, 234, 219, 0.55); }
.foot .footlocs span a { text-decoration: underline; text-underline-offset: 2px; }
/* 전화번호가 줄 끝에서 쪼개지지 않게 */
a[href^="tel:"] { white-space: nowrap; }
.foot ul a { color: rgba(240, 234, 219, 0.78); }
.foot ul a:hover { color: var(--rice); }
.foot .fine { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line-soft);
  display: flex; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(240, 234, 219, 0.7); }
.foot .fine span:last-child { margin-left: auto; }

/* ── 고정 주문 바 ───────────────────────────────────────── */
.orderbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; height: var(--bar-h);
  background: var(--gold); color: #23303F;
  display: flex; align-items: center; gap: 16px;
  padding: 0 var(--gut);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.28);
}
.orderbar p { margin: 0; font-size: 14px; font-weight: 600; }
.orderbar .sm { font-weight: 400; opacity: 0.78; font-size: 13px; }
.orderbar .btn {
  margin-left: auto; background: #23303F; color: var(--rice); flex-shrink: 0;
}
.orderbar .btn:hover { background: #16283D; }

/* ── 메뉴 페이지 ────────────────────────────────────────── */
.mgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: clamp(28px, 4vw, 52px); }
.mcat.wide { grid-column: 1 / -1; }
.mcat.wide .rows { columns: 2; column-gap: clamp(32px, 5vw, 64px); }
.mcat .rows .mrow { break-inside: avoid; }
@media (max-width: 720px) { .mcat.wide .rows { columns: 1; } }
.mcat h3 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-soft); margin: 0 0 18px; font-weight: 600;
  padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.mrow { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px; padding: 13px 0;
  border-bottom: 1px solid var(--line-soft); }
.mrow b { font-weight: 500; font-size: 15px; }
.mrow i { flex: 1; height: 1px; background: var(--line-soft); }
.mrow span { font-size: 15px; color: var(--gold-soft); font-variant-numeric: tabular-nums; flex-shrink: 0; }
.mrow .desc { flex-basis: 100%; font-size: 13px; color: rgba(240, 234, 219, 0.6); margin-top: 3px; }

.setgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 18px; }

@media (min-width: 1000px) {
  .setgrid.five { grid-template-columns: repeat(5, 1fr); }
}
.mrow .plines { display: flex; flex-direction: column; gap: 3px; text-align: right; }
.mrow .pline {
  font-size: 15px; color: var(--gold-soft); font-variant-numeric: tabular-nums;
  white-space: nowrap; display: flex; justify-content: flex-end; align-items: baseline; gap: 7px;
}
.mrow .pline em { font-style: normal; font-size: 12px; color: rgba(240, 234, 219, 0.62); }

.note { margin-top: 30px; font-size: 13px; color: rgba(240, 234, 219, 0.55); }

/* ── 메뉴 점프 칩 · 스크롤 고정 바 ──────────────────────── */
.menubar {
  position: sticky; top: 66px; z-index: 60;
  background: var(--navy);
  border-bottom: 1px solid var(--line-soft);
  margin-top: clamp(26px, 4vw, 40px);
}
.menubar .chips { padding: 12px var(--gut); }
.chips { display: flex; gap: 10px; padding: 12px 0; overflow-x: auto; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip { flex-shrink: 0; }
.chip.pdf { margin-left: auto; border-color: rgba(240,234,219,.3); color: var(--rice); }
.chip.pdf:hover { background: var(--rice); color: var(--navy); border-color: var(--rice); }
.chip {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-soft); border: 1px solid rgba(195, 157, 101, 0.45);
  border-radius: 999px; padding: 9px 16px; transition: background 0.2s, color 0.2s;
}
.chip:hover, .chip.on { background: var(--gold); color: #23303F; border-color: var(--gold); }

/* ── 지점 페이지 ────────────────────────────────────────── */
.lpgrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 56px); align-items: start; }
.lprow { display: flex; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.lprow b { flex: 0 0 104px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(240, 234, 219, 0.7); padding-top: 3px; font-weight: 600; }
.lprow span { font-size: 15px; }
.mapbox {
  aspect-ratio: 4 / 3; border-radius: 5px; overflow: hidden;
  border: 1px solid var(--line-soft); background: var(--navy-deep);
}
.mapbox iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }

/* ── 소개 페이지 ────────────────────────────────────────── */
.prose { max-width: 66ch; }

/* About: 글과 사진 두 단. 데스크톱에서 오른쪽이 비지 않게 */
.abgrid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(30px, 5vw, 72px); align-items: start; }
.abgrid .prose { max-width: 58ch; }
.abfig { margin: 0; }
.abfig img { display: block; width: 100%; height: auto; border-radius: 5px; }
.abfig figcaption { margin-top: 13px; font-size: 13px; line-height: 1.55;
  color: rgba(240, 234, 219, 0.6); }
.prose p { color: rgba(240, 234, 219, 0.82); margin: 0 0 20px; font-size: 16.5px; }
.prose p.lead { font-family: var(--serif); font-size: clamp(21px, 3.2vw, 28px); line-height: 1.36;
  color: var(--rice); margin-bottom: 30px; }

.vals { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 20px; }
.val { border-top: 1px solid var(--gold); padding-top: 18px; }
.val .vn { font-family: var(--serif); font-size: 30px; color: var(--gold); display: block;
  margin-bottom: 8px; line-height: 1; }
.val h3 { font-family: var(--serif); font-weight: 400; font-size: 23px; margin: 0 0 10px; }
.val p { margin: 0; font-size: 14.5px; color: rgba(240, 234, 219, 0.74); }

/* ── 스크롤 등장 ──────────────────────────────────────────
   .js 가 붙었을 때만 숨긴다. 스크립트가 막히면 본문이 그대로 보인다. */
.js [data-rv] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js [data-rv].in { opacity: 1; transform: none; }

/* ── 반응형 ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; }
  .story .pin { position: static; }
  .story .pin img { aspect-ratio: 1392 / 992; }
  .hov { grid-template-columns: 1fr; }
  .hov .stack { order: -1; }
  .rev .wrap { grid-template-columns: 1fr; }
  .locs { grid-template-columns: 1fr; }
  .lpgrid { grid-template-columns: 1fr; }
  .foot .grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .burger { display: block; }
  .nav .navbtn { display: none; }
  .nav ul {
    position: absolute; top: 66px; left: 0; right: 0;
    flex-direction: column; gap: 0; margin: 0;
    background: var(--navy-ink); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav ul.open { max-height: 340px; }
  .nav ul li { border-top: 1px solid var(--line-soft); }
  .nav ul a { display: block; padding: 16px var(--gut); font-size: 13px; }

  .topbar .wrap { height: 34px; gap: 12px; }
  .topbar nav { display: none; }
  .marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 30%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 30%, #000 88%, transparent);
  }
  .hero .sub { letter-spacing: 0.18em; }

  .orderbar { gap: 10px; }
  .orderbar p .sm { display: none; }
  .orderbar .btn { padding: 11px 15px; font-size: 11px; }

  .foot .grid { grid-template-columns: 1fr; gap: 26px; }
  .foot .fine span:last-child { margin-left: 0; }
}

@media (max-width: 720px) {
  /* 메뉴: 사진 카드 2열 압축 */
  .setgrid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .setgrid .card figcaption { padding: 9px 10px 11px; flex-wrap: wrap; gap: 2px 8px; }
  .setgrid .card figcaption b { font-size: 12px; line-height: 1.3; }
  .setgrid .card figcaption span { font-size: 12px; margin-left: 0; width: 100%; }
  /* 목록 행 압축 */
  .mrow { padding: 10px 0; }
  .mrow b { font-size: 14px; }
  .mrow > span, .mrow .pline { font-size: 14px; }
  .mrow .desc { font-size: 12px; }
  .mgrid { gap: 26px; }
  .sechead p { font-size: 14px; }
}

@media (max-width: 400px) {
  .orderbar p { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .no-op .opening { display: none; }
.no-op .hero h1 .w, .no-op .hero .sub, .no-op .hero .cta { animation: none; opacity: 1; transform: none; }
.no-op .hero .afterglow { display: none; }
.opening { display: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-rv] { opacity: 1; transform: none; }
}

@media print {
  .nav, .topbar, .orderbar, .cue, .sunrise { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; }
}

@media (max-width: 860px) {
  .abgrid { grid-template-columns: 1fr; gap: 30px; }
  .abgrid .prose { max-width: 66ch; }
  .abfig { max-width: 420px; }
}

/* 좁은 화면: 글이 세로 중앙이면 음식 위로 얹힌다. 위쪽 빈 곳으로 올리고 아래를 사진에 준다.
   1200px 아래에서 cover 가 사진을 확대해 병이 글자 쪽으로 들어온다 */
@media (max-width: 1200px) {
  .hero { place-items: start start; min-height: min(88vh, 760px);
    padding-top: clamp(28px, 7vw, 52px); padding-bottom: clamp(90px, 16vw, 150px); }
  .hero .scrim {
    background:
      linear-gradient(180deg, rgba(22, 40, 61, 0.86) 0%, rgba(22, 40, 61, 0.66) 24%,
                      rgba(22, 40, 61, 0.22) 46%, rgba(22, 40, 61, 0) 64%,
                      rgba(22, 40, 61, 0.28) 100%);
  }
  .hero .horizon { bottom: 11%; }
  .hero .sun { bottom: -24%; }
}

/* 901~1200: 사진이 아직 가로로 넓어 병이 글 오른쪽에 걸린다. 문장 폭을 줄여 병 앞에서 끊는다 */
@media (min-width: 901px) and (max-width: 1200px) {
  .hero .inner { max-width: 440px; }
  .hero h1 { font-size: clamp(40px, 5.2vw, 56px); }
}

/* ── 모바일 손가락 크기 · 최소 44px ────────────────────────
   손으로 누르는 것들이 21~36px 라 빗나가기 쉬웠다 */
@media (max-width: 720px) {
  .loc .locact { gap: 10px; margin-top: 16px; }
  .btn.sm { padding: 13px 18px; font-size: 11.5px; min-height: 44px;
    display: inline-flex; align-items: center; }
  .loc .go { min-height: 44px; display: inline-flex; align-items: center; padding: 0 2px; }
  .chip { padding: 13px 18px; }
  .revlinks { gap: 6px 20px; }
  .revlinks a { padding: 11px 0; display: inline-block; }
  .foot ul a, .foot .footlocs span a { padding: 10px 0; display: inline-block; }
  .foot ul { gap: 4px; }
  .lprow a[href^="tel:"] { padding: 10px 0; display: inline-block; }  /* 44px 확보 */

  /* 폰은 세로컷(hero-mobile, 0.6 비율)을 받는다. 접시를 아래에 고정해야
     화면이 짧은 기종에서 잘려나가는 쪽이 위쪽 검정이 된다 */
  .hero .heroimg img { object-position: 50% 100%; }

  /* 10~11px 는 폰에서 너무 작다 */
  .hero .sub { font-size: 11.5px; letter-spacing: 0.16em; }
  .topbar nav a, .marquee { font-size: 11.5px; }
  .orderbar p { font-size: 13px; }
}

/* ── 메뉴 갈림길: 세트냐 단품이냐 ──────────────────────────
   전체 메뉴를 보려고 세트를 다 지나쳐 내려가야 했다 */
.pick2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: clamp(22px, 3vw, 32px); }
.pk {
  display: flex; flex-direction: column; gap: 7px;
  background: var(--navy-deep); border: 1px solid rgba(195, 157, 101, 0.42);
  border-radius: 5px; padding: 22px 22px 20px;
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
}
.pk b { font-family: var(--serif); font-weight: 400; font-size: clamp(21px, 2.8vw, 27px);
  color: var(--rice); }
.pk span { font-size: 14px; color: rgba(240, 234, 219, 0.68); }
.pk:hover { border-color: var(--gold); transform: translateY(-2px); }
.pk:hover b { color: var(--gold-soft); }
@media (max-width: 720px) {
  .pick2 { grid-template-columns: 1fr; gap: 10px; }
  .pk { padding: 18px 18px 16px; }
}

/* ── 베스트셀러: 누끼 롤이 옆으로 흘러간다 ────────────────
   사진마다 접시 질감이 달라 제각각으로 보이던 걸 배경을 걷어내 통일했다 */
.flow { position: relative; overflow: hidden; padding: clamp(28px, 4.2vw, 54px) 0 14px; }
.flow::before, .flow::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(40px, 9vw, 130px);
  z-index: 2; pointer-events: none;
}
.flow::before { left: 0; background: linear-gradient(90deg, var(--navy), rgba(39, 66, 98, 0)); }
.flow::after { right: 0; background: linear-gradient(270deg, var(--navy), rgba(39, 66, 98, 0)); }
.flowtrack {
  display: flex; align-items: flex-end; width: max-content;
  gap: clamp(38px, 6.4vw, 108px); padding: 0 clamp(38px, 6.4vw, 108px) 0 0;
  animation: flowmove 46s linear infinite;
}
@keyframes flowmove { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
.flow:hover .flowtrack, .flow:focus-within .flowtrack { animation-play-state: paused; }

.fitem { flex: 0 0 auto; width: clamp(124px, 16vw, 190px); text-align: center; color: inherit; }
/* 그림자는 이미지 안에 구워 넣었다. CSS filter: drop-shadow 를 쓰면
   투명 영역이 희미한 사각형으로 비쳐서(브라우저별) 뒷배경처럼 보였다 */
.fpic { display: block; }
.fitem img {
  display: block; width: 100%; height: auto;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.fitem:hover img { transform: translateY(-7px) scale(1.03); }
.fitem b { display: block; margin-top: 14px; font-family: var(--serif); font-weight: 400;
  font-size: clamp(15px, 1.7vw, 18px); line-height: 1.2; }
.fitem span { display: block; margin-top: 4px; font-size: 12.5px; color: var(--gold-soft);
  font-variant-numeric: tabular-nums; }
.fitem:hover b { color: var(--gold-soft); }

@media (prefers-reduced-motion: reduce) {
  .flowtrack { animation: none; }
  .flow { overflow-x: auto; scrollbar-width: none; }
  .flow::-webkit-scrollbar { display: none; }
}

/* 남아 있던 40px 미만 탭 타깃 마저 */
@media (max-width: 720px) {
  .loc .loctitle { display: inline-block; padding: 14px 0 11px; margin-top: -8px; }
  .foot ul a, .foot .footlocs span a { padding: 13px 0; }
  .orderbar .btn { min-height: 44px; display: inline-flex; align-items: center; }
}

/* 폰에서는 태그라인이 두 줄로 끊기게. 가운뎃점은 줄 끝에 남지 않도록 숨긴다 */
@media (max-width: 720px) {
  .hero .sub .dot { display: none; }
  .hero .sub .yr { display: block; margin-top: 7px; }
}

/* ── 손가락 크기 (2026-08-27 모바일 점검) ────────────────
   폰에서 재보니 주요 버튼이 43px, 꼬리의 전화번호가 40px 이었다. 44px 로 올린다.
   글자 크기와 여백은 그대로고 상자 높이만 확보한다. */
@media (max-width: 720px) {
  .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .revlinks a, .note a { display: inline-block; padding: 12px 0; }
  .skip { display: inline-block; min-height: 44px; }
}
