/* ============================================================
   피읻짜 · Rest In Pizza — styles
   방향: 어두운 따뜻한 밤(ink) 베이스 + 화덕 불빛(ember) 강조
   ============================================================ */

:root {
  /* 컬러 토큰 (브리프 4번) */
  --ink: #1A1512;          /* 따뜻한 차콜 (밤 베이스) */
  --ink-2: #231C18;        /* 한 단계 밝은 면 */
  --ink-3: #2E2520;        /* 카드/보더 베이스 */
  --ember: #E2562B;        /* 화덕 불빛 오렌지 (주 강조) */
  --ember-soft: #F0744A;
  --gold: #E8B33E;         /* 맥주 골드 */
  --whiskey: #B5722A;      /* 위스키 앰버 */
  --dough: #EFE6D6;        /* 따뜻한 크림 (밝은 면/본문) */
  --dough-dim: #C9BEAC;    /* 보조 텍스트 */
  --basil: #5B7B3A;        /* 바질 그린 (소량 포인트) */

  --line: rgba(239, 230, 214, 0.12);
  --line-strong: rgba(239, 230, 214, 0.22);

  /* 타이포 */
  --font-body: "Pretendard", "Pretendard Variable", -apple-system, BlinkMacSystemFont,
               system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Apple SD Gothic Neo",
               "Malgun Gothic", sans-serif;
  --font-display: "Fraunces", "Gowun Batang", Georgia, serif;
  --font-ko-display: "Gowun Batang", "Pretendard", serif;

  /* 레이아웃 */
  --wrap: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px -22px rgba(0, 0, 0, 0.8);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--dough);
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
:focus-visible { outline: 2px solid var(--ember-soft); outline-offset: 3px; border-radius: 4px; }

.wrap { width: min(100% - 2.6rem, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 200;
  background: var(--ember); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.78em 1.4em; border-radius: 999px;
  font-weight: 600; font-size: 0.96rem; letter-spacing: 0;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              border-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--ember); color: #fff; box-shadow: 0 10px 28px -12px var(--ember); }
.btn-primary:hover { background: var(--ember-soft); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--dough); background: rgba(239,230,214,0.03); }
.btn-ghost:hover { border-color: var(--ember); color: #fff; }
.btn-call { background: var(--ember); color: #fff; }
.btn-call:hover { background: var(--ember-soft); }
.btn-call svg { fill: currentColor; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(20, 16, 14, 0.82);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.2rem; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand-mark { display: grid; place-items: center; height: 54px; flex-shrink: 0; }
.brand-mark img { height: 54px; width: auto; object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(226,86,43,0.35)); }
.footer-logo { display: inline-flex; align-items: center; gap: 0.7rem; }
.footer-logo img { height: 70px; width: auto; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-size: 1.18rem; font-weight: 800; letter-spacing: -0.02em; }
.brand-text i {
  font-family: var(--font-display); font-style: italic; font-size: 0.72rem;
  color: var(--gold); letter-spacing: 0.02em;
}

.nav { display: flex; gap: 1.7rem; margin-left: auto; }
.nav a {
  position: relative; font-size: 0.96rem; color: var(--dough-dim);
  transition: color 0.2s var(--ease); padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--ember); transition: width 0.25s var(--ease);
}
.nav a:hover { color: var(--dough); }
.nav a:hover::after { width: 100%; }

.header-call { margin-left: 0.4rem; padding: 0.6em 1.15em; font-size: 0.9rem; }

/* 언어 전환 */
.lang-switch { display: inline-flex; gap: 2px; background: rgba(239,230,214,0.06);
  border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang-switch button { padding: 0.32em 0.62em; border-radius: 999px; font-size: 0.8rem; font-weight: 700;
  color: var(--dough-dim); transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.lang-switch button:hover { color: var(--dough); }
.lang-switch button.active { background: var(--ember); color: #fff; }
.lang-desktop { margin-left: 0.5rem; }
.lang-mobile { margin: 0 0 0.6rem; justify-content: center; }

/* 한국어가 아닐 때 영문 장식 라벨 숨김 (메뉴 카테고리·음료 컬럼) */
body:not([data-lang="ko"]) .menu-cat .cat-en,
body:not([data-lang="ko"]) .drink-col h4 .cat-en { display: none; }

.nav-toggle { display: none; width: 44px; height: 44px; margin-left: auto; flex-direction: column;
  gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--dough); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav[hidden] { display: none; }
.mobile-nav {
  display: flex; flex-direction: column; gap: 0.2rem;
  background: rgba(20,16,14,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); padding: 0.6rem 1.3rem 1.4rem;
}
.mobile-nav a { padding: 0.85rem 0.2rem; border-bottom: 1px solid var(--line); color: var(--dough); }
.mobile-nav a:last-child { border: 0; margin-top: 0.8rem; justify-content: center; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  overflow: hidden; padding-bottom: clamp(3rem, 9vh, 6rem); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,14,0.55) 0%, rgba(20,16,14,0.15) 30%, rgba(20,16,14,0.55) 70%, var(--ink) 100%),
    radial-gradient(120% 80% at 30% 100%, rgba(226,86,43,0.28), transparent 60%);
}
.ember-glow {
  position: absolute; left: 12%; bottom: -10%; width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(226,86,43,0.42), rgba(226,86,43,0.10) 45%, transparent 68%);
  filter: blur(8px); animation: emberBreathe 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes emberBreathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.08); }
}

/* 떠오르는 불씨 */
.ember-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.ember-field span {
  position: absolute; bottom: -12px; width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold), var(--ember) 60%, transparent 70%);
  opacity: 0; animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  12% { opacity: 0.9; }
  70% { opacity: 0.7; }
  100% { transform: translateY(-78vh) translateX(var(--drift, 20px)) scale(0.3); opacity: 0; }
}

/* 화덕 입구에서 튀는 불티(canvas) */
.ember-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.hero-content { position: relative; z-index: 2; }
.hero-kicker {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.74rem; font-weight: 600;
  color: var(--gold); margin-bottom: 1.1rem;
}
.hero-title { display: flex; flex-direction: column; line-height: 0.92; margin-bottom: 1.3rem; }
.hero-title .ko {
  font-family: var(--font-ko-display); font-weight: 700;
  font-size: clamp(3.4rem, 13vw, 8rem); letter-spacing: -0.02em;
  text-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.hero-title .en {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.3rem, 4.5vw, 2.6rem); color: var(--ember-soft); margin-top: 0.2em;
  letter-spacing: 0.01em;
}
.hero-slogan {
  font-size: clamp(1.15rem, 2.6vw, 1.7rem); font-weight: 500; max-width: 22ch;
  color: var(--dough); margin-bottom: 1.8rem;
}
.hero-slogan em { font-style: normal; color: var(--ember-soft); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero-wink {
  margin-top: 1.4rem; font-family: var(--font-display); font-style: italic;
  color: var(--dough-dim); font-size: 1rem;
}

.scroll-hint { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 2px solid var(--line-strong); border-radius: 14px; }
.scroll-hint span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 2px;
  background: var(--dough); transform: translateX(-50%); animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 14px); } 100% { opacity: 0; } }

/* ============================================================
   공통 섹션
   ============================================================ */
section { position: relative; }
.about, .menu, .drinks, .gallery, .location { padding-block: clamp(4.5rem, 11vh, 8rem); }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.74rem; font-weight: 700;
  color: var(--ember); margin-bottom: 0.9rem;
}
h2 { font-size: clamp(1.9rem, 4.6vw, 3.1rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; }
.section-head { max-width: 56ch; margin-bottom: 2.8rem; }
.section-note { margin-top: 0.9rem; color: var(--dough-dim); font-size: 0.98rem; }
.section-note a { color: var(--gold); border-bottom: 1px solid currentColor; }

/* ---------- About ---------- */
.about { background:
  linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); }
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-copy h2 { margin-bottom: 1.4rem; }
.about-copy p { color: var(--dough-dim); margin-bottom: 1.1rem; max-width: 46ch; }
.about-points { display: grid; gap: 0.9rem; margin-top: 2rem; }
.about-points li {
  display: flex; flex-direction: column; padding: 1rem 1.2rem; border-radius: var(--radius);
  background: rgba(239,230,214,0.035); border: 1px solid var(--line);
  border-left: 3px solid var(--ember);
}
.about-points b { font-size: 1.02rem; }
.about-points span { color: var(--dough-dim); font-size: 0.92rem; }

.about-figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 0.8s var(--ease); }
.about-figure:hover img { transform: scale(1.04); }
.about-figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.3rem 1.1rem;
  font-family: var(--font-display); font-style: italic; font-size: 0.96rem;
  background: linear-gradient(transparent, rgba(20,16,14,0.85)); color: var(--dough);
}

/* ---------- Menu ---------- */
.menu { background: var(--ink-2); }
.menu-cat {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.3rem, 3vw, 1.9rem); color: var(--gold);
  margin: 2.6rem 0 1.3rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 0.6rem;
}
.menu-cat::before { content: "🔥"; font-size: 0.85em; filter: saturate(1.1); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.dish {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.dish:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.dish-img { aspect-ratio: 4/3; overflow: hidden; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.dish:hover .dish-img img { transform: scale(1.06); }
.dish-body { padding: 1.1rem 1.2rem 1.3rem; }
.dish-body h4 { display: flex; justify-content: space-between; align-items: baseline; gap: 0.6rem;
  font-size: 1.1rem; font-weight: 700; margin-bottom: 0.45rem; }
.dish-body p { color: var(--dough-dim); font-size: 0.92rem; line-height: 1.55; }
.price { font-size: 0.74rem; font-weight: 600; color: var(--whiskey); white-space: nowrap;
  background: rgba(181,114,42,0.12); padding: 0.25em 0.7em; border-radius: 999px; flex-shrink: 0; }
.dish--text { grid-column: span 1; justify-content: center; min-height: 150px;
  background: linear-gradient(135deg, var(--ink-3), rgba(91,123,58,0.08)); }
.dish--text .dish-body { padding: 1.4rem 1.3rem; }
.dish-body h4 em { font-style: normal; font-weight: 400; font-size: 0.74rem; color: var(--dough-dim); }
.cat-en { font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 0.6em; color: var(--dough-dim); margin-left: 0.1rem; }
.menu-cat::before { content: "🔥"; }
.dish-img { position: relative; }
.dish-tag { position: absolute; top: 0.7rem; left: 0.7rem; background: var(--ember); color: #fff;
  font-size: 0.72rem; font-weight: 700; padding: 0.25em 0.7em; border-radius: 999px;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.6); }
.menu-addon { margin-top: 1rem; color: var(--dough-dim); font-size: 0.92rem; }
.menu-addon b { color: var(--whiskey); }
.addon-inline { display: inline-block; margin-left: 0.3rem; color: var(--whiskey); font-size: 0.82rem; }

/* 음료 · 주류 리스트 */
.drink-menu { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem 2.2rem; margin-top: 0.5rem; }
.drink-col { padding: 1.2rem 0; }
.drink-col h4 { display: flex; align-items: baseline; gap: 0.5rem; font-size: 1.08rem; font-weight: 700;
  padding-bottom: 0.7rem; margin-bottom: 0.8rem; border-bottom: 1px solid var(--line); }
.drink-col h4 span { font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 0.78rem; color: var(--gold); }
.drink-col ul { display: grid; gap: 0.6rem; }
.drink-col li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.drink-col li span { color: var(--dough); font-size: 0.95rem; }
.drink-col li span em { font-style: normal; color: var(--dough-dim); font-size: 0.78rem; display: block; }
.drink-col li b { color: var(--gold); font-weight: 600; font-size: 0.92rem; white-space: nowrap; }
.drink-col li b s { color: var(--dough-dim); opacity: 0.6; font-weight: 400; margin-right: 0.2em; }
.drink-note { margin-top: 1rem; font-size: 0.82rem; color: var(--dough-dim); line-height: 1.5; }
.drink-note s { opacity: 0.6; }

/* ---------- Drinks ---------- */
.drinks { background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.drinks-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.drinks-figure { position: relative; }
.drinks-figure .df-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block;
  border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.drinks-figure .df-accent { position: absolute; left: 14px; bottom: 14px; width: 40%; aspect-ratio: 3/4;
  object-fit: cover; border-radius: 12px; border: 3px solid var(--ink);
  box-shadow: 0 14px 32px -10px rgba(0,0,0,.78); transform: rotate(-4deg); }
.drinks-copy h2 { margin-bottom: 1.3rem; }
.drinks-copy h2 em { font-family: var(--font-ko-display); font-style: normal; color: var(--gold); }
.drinks-copy > p { color: var(--dough-dim); max-width: 44ch; margin-bottom: 1.8rem; }
.drink-list { display: grid; gap: 0.7rem; }
.drink-list li { display: flex; align-items: baseline; gap: 0.9rem; padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line); }
.drink-list b { min-width: 6.5em; color: var(--gold); }
.drink-list span { color: var(--dough-dim); font-size: 0.94rem; }
.drinks-foot { margin-top: 1.6rem; font-size: 0.85rem; color: var(--dough-dim); opacity: 0.8; }

/* '퐁당' 마이크로 인터랙션 */
.plop { position: absolute; top: 14%; left: 50%; transform: translateX(-50%); width: 80px; height: 60%;
  pointer-events: none; }
.plop .drop { position: absolute; top: 0; left: 50%; width: 12px; height: 16px; transform: translateX(-50%);
  background: radial-gradient(circle at 40% 30%, var(--gold), var(--whiskey) 70%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; opacity: 0; }
.plop .ring { position: absolute; bottom: 4%; left: 50%; width: 40px; height: 12px;
  transform: translateX(-50%) scale(0); border: 2px solid var(--gold); border-radius: 50%; opacity: 0; }
.plop.go .drop { animation: dropFall 1.1s var(--ease) forwards; }
.plop.go .ring { animation: ripple 1.1s var(--ease) 0.55s forwards; }
@keyframes dropFall {
  0% { opacity: 0; top: 0; }
  15% { opacity: 1; }
  55% { opacity: 1; top: calc(100% - 24px); transform: translateX(-50%) scaleY(1.15); }
  70% { opacity: 0; top: calc(100% - 18px); transform: translateX(-50%) scaleY(0.6); }
  100% { opacity: 0; }
}
@keyframes ripple {
  0% { transform: translateX(-50%) scale(0.2); opacity: 0.9; }
  100% { transform: translateX(-50%) scale(1.6); opacity: 0; }
}

/* ---------- Gallery ---------- */
.gallery { background: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px;
  gap: 0.9rem; grid-auto-flow: dense; }
.g-item { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--ink-3); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease), filter 0.4s; }
.g-item::after { content: "＋"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 1.6rem; color: #fff; background: rgba(20,16,14,0.35); opacity: 0; transition: opacity 0.3s var(--ease); }
.g-item:hover img, .g-item:focus-visible img { transform: scale(1.07); }
.g-item:hover::after, .g-item:focus-visible::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- Location ---------- */
.location { background: linear-gradient(180deg, var(--ink), var(--ink-2)); }
.location-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.location-info h2 { margin-bottom: 1.8rem; }
.location-info .floor { color: var(--ember); }
.info-list { display: grid; gap: 1.1rem; margin-bottom: 2rem; }
.info-list > div { display: grid; grid-template-columns: 5.5em 1fr; gap: 1rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--line); }
.info-list dt { color: var(--gold); font-weight: 600; font-size: 0.95rem; }
.info-list dd { color: var(--dough); }
.info-list dd a { color: var(--ember-soft); border-bottom: 1px solid currentColor; }
.muted { color: var(--dough-dim); font-size: 0.88rem; display: block; margin-top: 0.2rem; }
.badge-soft { display: inline-block; background: rgba(232,179,62,0.14); color: var(--gold);
  padding: 0.3em 0.85em; border-radius: 999px; font-size: 0.85rem; font-weight: 600; }
.location-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.location-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  min-height: 420px; box-shadow: var(--shadow); background: var(--ink-3); }
.location-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.map-open { position: absolute; right: 12px; bottom: 12px; z-index: 2;
  background: rgba(20,16,14,0.92); color: var(--dough); padding: 0.55em 0.95em; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; border: 1px solid var(--line-strong); backdrop-filter: blur(6px);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease); }
.map-open:hover { border-color: var(--ember); color: #fff; }

/* about 평점 한 줄 */
.about-rating { margin-top: 1.4rem; font-size: 0.92rem; color: var(--dough-dim);
  font-family: var(--font-display); font-style: italic; }
.about-rating b { color: var(--gold); font-style: normal; font-family: var(--font-body); }

.inline-link { display: inline-block; margin-left: 0.5rem; color: var(--ember-soft);
  font-size: 0.9rem; border-bottom: 1px solid currentColor; }

/* ============================================================
   예약 · 포장
   ============================================================ */
.booking { background: var(--ink-2); }
.booking-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }

.booking-form { background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem); display: grid; gap: 1.1rem; }

/* 세그먼트 토글 */
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; background: rgba(0,0,0,0.25);
  padding: 0.35rem; border-radius: 999px; }
.seg-opt { position: relative; }
.seg-opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.seg-opt span { display: block; text-align: center; padding: 0.6em 0.8em; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; color: var(--dough-dim); transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.seg-opt input:checked + span { background: var(--ember); color: #fff; }
.seg-opt input:focus-visible + span { outline: 2px solid var(--ember-soft); outline-offset: 2px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field[hidden] { display: none; }
.lbl-when[hidden] { display: none; }
.field label { font-size: 0.88rem; color: var(--gold); font-weight: 600; }
.field label em { color: var(--dough-dim); font-style: normal; font-weight: 400; }
.booking-form input, .booking-form textarea {
  width: 100%; background: rgba(0,0,0,0.28); color: var(--dough);
  border: 1px solid var(--line-strong); border-radius: 10px; padding: 0.75em 0.9em;
  font: inherit; color-scheme: dark; transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.booking-form input::placeholder, .booking-form textarea::placeholder { color: rgba(201,190,172,0.45); }
.booking-form input:focus, .booking-form textarea:focus { outline: none; border-color: var(--ember); background: rgba(0,0,0,0.4); }
.booking-form textarea { resize: vertical; min-height: 76px; }
.booking-form input:user-invalid { border-color: #c0573f; }

.form-msg { min-height: 1.2em; font-size: 0.9rem; margin: 0.1rem 0; }
.form-msg.error { color: #f0a08a; }
.form-msg.ok { color: var(--basil); filter: brightness(1.4); }

.form-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 0.3rem; }
.form-actions .btn { flex: 1 1 auto; justify-content: center; }
.btn .sub { font-weight: 400; font-size: 0.82em; opacity: 0.85; }
.form-foot { font-size: 0.8rem; color: var(--dough-dim); opacity: 0.8; margin-top: 0.2rem; }

.booking-aside { background: linear-gradient(160deg, rgba(226,86,43,0.10), rgba(46,37,32,0.5));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2rem);
  display: grid; gap: 0.8rem; align-content: start; }
.booking-aside h3 { font-size: 1.2rem; font-weight: 800; }
.booking-aside > p { color: var(--dough-dim); font-size: 0.94rem; margin-bottom: 0.3rem; }
.booking-aside .btn { justify-content: center; }
.aside-points { display: grid; gap: 0.55rem; margin-top: 0.8rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.aside-points li { position: relative; padding-left: 1.4rem; color: var(--dough); font-size: 0.94rem; }
.aside-points li::before { content: "✓"; position: absolute; left: 0; color: var(--ember); font-weight: 700; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #120E0C; padding-top: clamp(3rem, 7vh, 5rem); border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand .brand-text b { font-size: 1.3rem; font-weight: 800; }
.footer-brand .brand-text i { font-family: var(--font-display); font-style: italic; color: var(--gold); }
.footer-brand p { color: var(--dough-dim); margin-top: 0.8rem; font-family: var(--font-display); font-style: italic; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-cols h5 { color: var(--gold); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 0.8rem; }
.footer-cols p { color: var(--dough-dim); font-size: 0.94rem; margin-bottom: 0.3rem; }
.footer-cols a:hover { color: var(--ember-soft); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  padding: 1.4rem 0 2rem; border-top: 1px solid var(--line); color: var(--dough-dim); }
.footer-bottom .rip { color: var(--whiskey); }
.footer-bottom .footer-op { color: var(--dough-dim); }
.footer-bottom .footer-credit { flex-basis: 100%; margin-top: 0.5rem; color: var(--dough-dim);
  opacity: 0.72; font-size: 0.8rem; line-height: 1.6; }

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center;
  background: rgba(12,9,8,0.92); backdrop-filter: blur(6px); padding: 4vw;
  opacity: 0; animation: fadeIn 0.25s var(--ease) forwards; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow); }
.lb-close { position: fixed; top: 18px; right: 24px; font-size: 2.4rem; line-height: 1; color: #fff;
  width: 48px; height: 48px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   반응형
   ============================================================ */
@media (max-width: 960px) {
  .nav, .header-call, .lang-desktop { display: none; }
  .nav-toggle { display: flex; }
  .about-grid, .drinks-grid, .location-grid, .booking-grid { grid-template-columns: 1fr; }
  .booking-aside { order: -1; }
  .drinks-figure { order: -1; max-width: 480px; }
  .about-figure { max-width: 520px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .drink-menu { grid-template-columns: repeat(2, 1fr); gap: 0.5rem 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }
}
@media (max-width: 600px) {
  .wrap { width: min(100% - 2rem, var(--wrap)); }
  .menu-grid { grid-template-columns: 1fr; }
  .drink-menu { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 2; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero { align-items: center; padding-top: 84px; }
  .info-list > div { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ============================================================
   prefers-reduced-motion 존중
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .ember-glow { animation: none; opacity: 0.7; }
  .ember-field, .ember-canvas, .scroll-hint span { display: none; }
  .reveal { opacity: 1; transform: none; }
}
