/* 참참생돈구이 — 공개 사이트 (딥 블랙 / 골드 · 웜레드 포인트) */

:root {
  --bg: #0e0e0f;
  --bg-2: #141416;
  --surface: #1b1b1e;
  --surface-2: #232327;
  --line: #2f2f34;
  --text: #f4f1ea;
  --text-muted: #a9a39a;
  --text-dim: #75716b;
  --gold: #c9a24b;
  --gold-soft: #e0be6e;
  --red: #d64533;
  --red-soft: #e4664f;
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1160px;
  --header-h: 76px;
  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 .5em; font-weight: 800; letter-spacing: -0.01em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: clamp(56px, 9vw, 104px) 0; }
.section--tight { padding: clamp(40px, 6vw, 64px) 0; }
.section-alt { background: var(--bg-2); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.section-lead { color: var(--text-muted); max-width: 46ch; margin-top: .4em; }

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px;
  font-weight: 700; font-size: .96rem;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: #1a1408; }
.btn--gold:hover { background: var(--gold-soft); }
.btn--outline { border-color: var(--line); color: var(--text); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-soft); }
.btn--lg { padding: 16px 28px; font-size: 1.02rem; }

/* ---------- 헤더 ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(13, 13, 14, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  background: #0d0d0e;
  border-bottom-color: var(--line);
}
/* 히어로가 없는 페이지는 항상 불투명 헤더 */
body:not(.has-hero) .site-header { background: #0d0d0e; border-bottom-color: var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 46px; width: auto; }
@media (max-width: 900px) { .brand img { height: 38px; } }
.brand .brand-fallback { font-weight: 800; font-size: 1.15rem; letter-spacing: .02em; }
.brand .brand-fallback .accent { color: var(--red-soft); }

.nav { display: flex; align-items: center; gap: 14px; }
.nav a {
  padding: 9px 10px; border-radius: 8px;
  font-size: .95rem; font-weight: 600; color: var(--text-muted);
  letter-spacing: .01em;
  transition: color .15s ease, background .15s ease;
}
.nav a:hover, .nav a.active { color: var(--text); background: rgba(255,255,255,.06); }
.nav .nav-cta { display: none; }
.header-cta { display: flex; align-items: center; gap: 8px; }
.header-cta .btn { padding: 10px 16px; font-size: .9rem; }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  background: transparent; border-radius: 10px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--text);
  position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 모바일 내비 ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-header .wrap { position: relative; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch;
    background: var(--bg); border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(0,0,0,.5);
    padding: 14px 20px 22px; gap: 2px;
    transform: translateY(-130%); transition: transform .28s ease;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  body.nav-open .nav { transform: translateY(0); }
  .nav a { padding: 14px; font-size: 1.05rem; border-radius: 10px; color: var(--text); }
  .nav a.active { background: transparent; color: var(--gold-soft); }
  .nav .nav-cta { display: flex; gap: 8px; margin-top: 12px; }
  .nav .nav-cta .btn { flex: 1; justify-content: center; padding: 14px; }
  .header-cta { display: none; }
}

/* ---------- 히어로 ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 40px) 0 64px;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.35) 0%, rgba(10,10,11,.55) 45%, rgba(10,10,11,.96) 100%);
}
.hero__inner {
  position: relative; z-index: 1; max-width: 720px;
  --hero-title-scale: 1; --hero-text-scale: 1;
}
.hero__inner[style*="center"] { margin-inline: auto; }
.hero h1 {
  font-size: calc(clamp(2.1rem, 6.4vw, 4rem) * var(--hero-title-scale));
  letter-spacing: -0.02em; margin-bottom: .3em;
}
.hero h1 .accent { color: var(--gold-soft); }
.hero .eyebrow { font-size: calc(.78rem * var(--hero-text-scale)); }
.hero p.lead {
  font-size: calc(clamp(1rem, 2.4vw, 1.22rem) * var(--hero-text-scale));
  color: #e7e2d8; max-width: 40ch;
}
.hero__inner[style*="center"] p.lead { margin-inline: auto; }

/* PC: 히어로 제목·보조설명은 한 줄로 (크기를 키워도 자동 줄바꿈 없음).
   줄을 바꾸려면 관리자에서 제목 입력칸에 직접 Enter 로 줄바꿈(→ <br>). */
@media (min-width: 901px) {
  .hero__inner { max-width: none; }
  .hero h1, .hero .eyebrow, .hero p.lead { white-space: nowrap; }
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__inner[style*="center"] .hero__actions { justify-content: center; }

/* 히어로 글꼴 옵션 (관리자 선택) */
.hero__inner.font-serif h1 { font-family: "Nanum Myeongjo", serif; font-weight: 800; letter-spacing: -0.01em; }
.hero__inner.font-display h1 { font-family: "Black Han Sans", var(--font); font-weight: 400; letter-spacing: 0; }

/* 홈 배너 (중간 홍보 띠) */
.home-banner { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.home-banner__title {
  font-size: calc(clamp(1.5rem, 3.5vw, 2.1rem) * var(--hero-title-scale, 1));
  margin-bottom: .3em;
}
.home-banner .eyebrow, .home-banner .section-lead { font-size: calc(1em * var(--hero-text-scale, 1)); }
.home-banner.font-serif .home-banner__title { font-family: "Nanum Myeongjo", serif; }
.home-banner.font-display .home-banner__title { font-family: "Black Han Sans", var(--font); font-weight: 400; }
.hero__slidedots { position: absolute; bottom: 26px; right: 20px; z-index: 2; display: flex; gap: 8px; }
.hero__slidedots button { width: 8px; height: 8px; border-radius: 999px; border: none; background: rgba(255,255,255,.3); cursor: pointer; }
.hero__slidedots button.active { background: var(--gold); width: 22px; }
.hero-slide { position: absolute; inset: 0; display: none; }
.hero-slide.active { display: block; }
.hero-slide img, .hero-slide video { width: 100%; height: 100%; object-fit: cover; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  z-index: 2; color: var(--text-dim); font-size: .68rem; letter-spacing: .2em;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  pointer-events: none;
}
@media (max-width: 900px) { .scroll-hint { display: none; } }
.scroll-hint::after { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ---------- 정보 스트립 ---------- */
.infostrip { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.infostrip .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.infostrip .cell { padding: 22px 18px; }
.infostrip .k { font-size: .74rem; letter-spacing: .16em; color: var(--gold); text-transform: uppercase; }
.infostrip .v { margin-top: 6px; font-weight: 600; }
@media (max-width: 720px) { .infostrip .wrap { grid-template-columns: 1fr; } .infostrip .cell { padding: 16px 4px; border-bottom: 1px solid var(--line); } .infostrip .cell:last-child { border-bottom: none; } }

/* ---------- 메뉴 하이라이트 ---------- */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.menu-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .16s ease, border-color .2s ease;
}
.menu-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.menu-card__img { aspect-ratio: 4/3; background: var(--surface-2); position: relative; }
.menu-card__img img { width: 100%; height: 100%; object-fit: cover; }
.menu-card__img .noimg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--text-dim); font-size: .85rem; }
.menu-card__body { padding: 16px 18px 18px; }
.menu-card__name { font-weight: 700; font-size: 1.08rem; display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.menu-card__price { color: var(--gold-soft); white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-card__desc { color: var(--text-muted); font-size: .9rem; margin-top: 6px; }
.tag { display: inline-block; font-size: .7rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; letter-spacing: .04em; }
.tag--signature { background: rgba(201,162,75,.16); color: var(--gold-soft); }
.tag--soldout { background: rgba(214,69,51,.16); color: var(--red-soft); }

/* ---------- 메뉴 페이지 ---------- */
.menu-board { margin: 32px 0 8px; }
.menu-board img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.menu-board figcaption { color: var(--text-dim); font-size: .82rem; margin-top: 10px; text-align: center; }

.menu-cat { margin-top: 56px; }
.menu-cat:first-of-type { margin-top: 24px; }
.menu-cat__head { display: flex; align-items: baseline; gap: 14px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.menu-cat__head h2 { font-size: 1.4rem; margin: 0; }
.menu-cat__note { color: var(--text-dim); font-size: .84rem; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-row { display: grid; grid-template-columns: 84px 1fr auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.menu-row.no-thumb { grid-template-columns: 1fr auto; }
.menu-row__thumb { width: 84px; height: 84px; border-radius: 10px; object-fit: cover; background: var(--surface-2); }
.menu-row__name { font-weight: 700; }
.menu-row__name .tag { margin-left: 8px; vertical-align: middle; }
.menu-row__desc { color: var(--text-muted); font-size: .88rem; }
.menu-row__price { color: var(--gold-soft); font-weight: 700; font-variant-numeric: tabular-nums; text-align: right; }
.menu-row.is-soldout .menu-row__name { color: var(--text-dim); text-decoration: line-through; }
.menu-origin { margin-top: 40px; padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--text-muted); font-size: .85rem; }
@media (max-width: 560px) {
  .menu-row { grid-template-columns: 64px 1fr; grid-template-areas: "thumb name" "thumb desc" "thumb price"; column-gap: 12px; row-gap: 2px; }
  .menu-row.no-thumb { grid-template-columns: 1fr; grid-template-areas: "name" "desc" "price"; }
  .menu-row__thumb { grid-area: thumb; width: 64px; height: 64px; align-self: start; margin-top: 4px; }
  .menu-row__name { grid-area: name; }
  .menu-row__desc { grid-area: desc; }
  .menu-row__price { grid-area: price; text-align: left; margin-top: 4px; }
}

/* ---------- 이벤트 ---------- */
.event-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; margin-top: 36px; }
.event-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .16s ease, border-color .2s ease; }
.event-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.event-card__img { aspect-ratio: 16/10; background: var(--surface-2); }
.event-card__img img { width: 100%; height: 100%; object-fit: cover; }
.event-card__body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.event-card__meta { display: flex; gap: 8px; align-items: center; font-size: .78rem; color: var(--text-dim); margin-bottom: 8px; }
.status-badge { font-size: .72rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.status-badge.진행중, .status-badge.상시 { background: rgba(201,162,75,.18); color: var(--gold-soft); }
.status-badge.예정 { background: rgba(120,150,200,.18); color: #9db6dd; }
.status-badge.종료 { background: rgba(120,116,110,.2); color: var(--text-dim); }
.event-card__title { font-size: 1.12rem; margin-bottom: 6px; }
.event-card__summary { color: var(--text-muted); font-size: .9rem; }
.event-card__more { margin-top: auto; padding-top: 14px; color: var(--gold-soft); font-weight: 700; font-size: .88rem; }

.article { max-width: 760px; margin: 0 auto; }
.article h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.article__meta { color: var(--text-dim); font-size: .85rem; margin-bottom: 22px; display: flex; gap: 10px; align-items: center; }
.article__hero { border-radius: var(--radius); overflow: hidden; margin: 22px 0 30px; border: 1px solid var(--line); }
.prose { color: #e2ddd3; }
.prose p { margin: 0 0 1.1em; }
.prose h2, .prose h3 { margin-top: 1.6em; color: var(--text); }
.prose img { border-radius: 10px; margin: 1.2em 0; border: 1px solid var(--line); }
.prose a { color: var(--gold-soft); text-decoration: underline; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.1em; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.2em 0; }
.prose th, .prose td { border: 1px solid var(--line); padding: 8px 12px; text-align: left; }
.source-note { margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--text-dim); font-size: .85rem; }

/* ---------- 매장안내 ---------- */
.info-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
@media (max-width: 860px) { .info-layout { grid-template-columns: 1fr; gap: 28px; } }
.info-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 320px; background: var(--surface); }
.info-map iframe, .info-map img { width: 100%; height: 100%; min-height: 320px; border: 0; }
.location-map { margin: 16px 0 0; }
.location-map img { width: 100%; border-radius: var(--radius-sm); border: 1px solid var(--line); background: #fff; }
.location-map figcaption { color: var(--text-dim); font-size: .82rem; margin-top: 8px; }
.info-dl { display: grid; grid-template-columns: 92px 1fr; gap: 14px 18px; }
.info-dl dt { color: var(--gold); font-weight: 700; font-size: .92rem; }
.info-dl dd { margin: 0; color: var(--text); }
.info-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ---------- 갤러리 ---------- */
.gallery-grid {
  margin-top: 40px;
  columns: 3 260px; column-gap: 16px;
}
.gallery-item {
  break-inside: avoid; margin: 0 0 16px; cursor: pointer;
  border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line);
  background: var(--surface); transition: border-color .2s ease, transform .16s ease;
}
.gallery-item:hover, .gallery-item:focus-visible { border-color: var(--gold); transform: translateY(-3px); outline: none; }
.gallery-item img { width: 100%; display: block; }
.gallery-item figcaption { padding: 10px 12px; font-size: .84rem; color: var(--text-muted); }
@media (max-width: 560px) { .gallery-grid { columns: 2 150px; column-gap: 10px; } .gallery-item { margin-bottom: 10px; } }

.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center; padding: 40px 16px;
}
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: 8px; }
.lightbox__cap { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; color: var(--text-muted); font-size: .9rem; padding: 0 20px; }
.lightbox__close { position: absolute; top: 16px; right: 20px; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2rem; line-height: 1; }
.lightbox__prev { left: 12px; } .lightbox__next { right: 12px; }
.lightbox button { background: rgba(255,255,255,.1); border: none; color: #fff; width: 44px; height: 44px; border-radius: 999px; cursor: pointer; font-family: inherit; }
.lightbox button:hover { background: rgba(255,255,255,.22); }

/* ---------- 브랜드 소개 ---------- */
.about-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
@media (max-width: 860px) { .about-hero { grid-template-columns: 1fr; gap: 24px; } }
.about-hero__img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.about-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.highlight-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; margin-top: 40px; }
.highlight-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.highlight-card .num { color: var(--gold); font-weight: 800; font-size: .8rem; letter-spacing: .1em; }
.highlight-card h3 { font-size: 1.1rem; margin: 10px 0 6px; }
.highlight-card p { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* ---------- CTA 밴드 ---------- */
.cta-band { background: linear-gradient(135deg, #1a1712, var(--bg-2)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.cta-band h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
.cta-band p { color: var(--text-muted); }
.cta-band .info-actions { justify-content: center; }

/* ---------- 푸터 ---------- */
.site-footer { background: #0a0a0b; border-top: 1px solid var(--line); padding: 50px 0 40px; color: var(--text-muted); font-size: .9rem; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
@media (max-width: 760px) { .site-footer .cols { grid-template-columns: 1fr; gap: 22px; } }
.site-footer img.f-logo { height: 42px; width: auto; margin-bottom: 14px; opacity: .9; }
.site-footer h4 { color: var(--text); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer .legal { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--text-dim); font-size: .8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ---------- 모바일 하단 고정 액션바 ---------- */
.mobile-bar { display: none; }
@media (max-width: 900px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; inset: auto 0 0 0; z-index: 90;
    background: rgba(14,14,15,.96); border-top: 1px solid var(--line);
    backdrop-filter: blur(8px);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-bar a { padding: 15px; text-align: center; font-weight: 700; font-size: .96rem; }
  .mobile-bar a + a { border-left: 1px solid var(--line); }
  .mobile-bar a.call { color: var(--gold-soft); }
  .mobile-bar a.map { color: var(--text); }
  body { padding-bottom: 56px; }
  body.nav-open .mobile-bar { display: none; }
}

/* ---------- 팝업 ---------- */
.popup-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.72); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.popup-overlay[hidden] { display: none; }
.popup {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  max-width: 420px; width: 100%; overflow: hidden; animation: popin .25s ease;
  display: flex; flex-direction: column; max-height: calc(100dvh - 40px);
}
@keyframes popin { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.popup__scroll { overflow-y: auto; -webkit-overflow-scrolling: touch; }
.popup__media { display: block; background: #0c0c0d; }
.popup__media img { width: 100%; height: auto; max-height: 62vh; object-fit: contain; display: block; margin: 0 auto; }
@media (max-width: 480px) { .popup__media img { max-height: 52vh; } }
.popup__body { padding: 18px 22px 12px; }
.popup__body h3 { margin: 0 0 6px; }
.popup__body p { color: var(--text-muted); font-size: .92rem; margin: 0; }
.popup__actions {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding: 12px 22px 18px; border-top: 1px solid var(--line);
}
.popup__actions .btn { padding: 11px 18px; font-size: .92rem; flex: 1; justify-content: center; }
.popup__actions button.linklike {
  background: none; border: none; color: var(--text-dim); font-size: .84rem;
  cursor: pointer; font-family: inherit; padding: 6px 4px;
}
.popup__actions .row { display: flex; justify-content: space-between; align-items: center; width: 100%; }

/* ---------- 안내(창업/예약) 미리보기 배지 ---------- */
.preview-ribbon {
  position: fixed; top: calc(var(--header-h) + 10px); right: 12px; z-index: 150;
  background: var(--red); color: #fff; font-size: .78rem; font-weight: 700;
  padding: 7px 12px; border-radius: 8px;
}

/* ---------- 에러 페이지 ---------- */
.error-page { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; }
.error-page .code { font-size: 4rem; font-weight: 800; color: var(--gold); }

/* ---------- 유틸 ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
