@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");
@import url("https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@700;800&display=swap");

/* =========================================================
   대하반점 평화점 — 디자인 시스템 v2
   컨셉: 「식욕이 도는 중국집」
     · 난색 고대비 — 짙은 팥죽빛 바탕 + 주칠 red + 금(金)
     · 중식 시각언어 — 회문(回紋) 띠 / 홍등 / 월동문(圓窓) / 청화백자 테두리
     · 서체 대비 — 명조 간판체(제목) + Pretendard(본문)
     · 사진이 없으므로 음식은 벡터 일러스트 + 김(steam)으로 표현
   ========================================================= */

:root {
  color-scheme: light;

  /* 지면 */
  --paper: #fff6e6;
  --paper-2: #f8ead0;
  --paper-3: #eedcb8;

  /* 먹·간장 계열 (텍스트) */
  --ink: #24100a;
  --ink-2: #5c3b2a;
  --ink-3: #8c6b55;

  /* 주칠 red — 채도를 올려 식욕 자극 */
  --red: #c42b1c;
  --red-2: #9c1409;
  --red-3: #6b0c05;

  /* 히어로 다크 */
  --dark: #1c0a07;
  --dark-2: #3a120c;

  /* 금(金) */
  --gold: #e3b44c;
  --gold-2: #f6da9b;
  --gold-3: #a97c22;

  /* 포인트 — 청화백자 blue, 파·청경채 green, 면·계란 yolk */
  --blue: #1f4e8c;
  --green: #4e8a3c;
  --yolk: #f2c14e;

  --line: rgba(36, 16, 10, 0.16);
  --line-strong: rgba(36, 16, 10, 0.32);

  --radius: 4px;
  --shell: 1180px;
  --bar-h: 66px;

  --f-body: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --f-display: "Nanum Myeongjo", "Apple SD Gothic Neo", "Malgun Gothic", serif;

  /* 회문(回紋) 띠 — 중식 장식의 핵심 모티프 */
  --meander: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='26' viewBox='0 0 40 26'%3E%3Cpath d='M-2 21H6V5h22v11H16v-5' fill='none' stroke='%23e3b44c' stroke-width='3'/%3E%3Cpath d='M38 21h8' stroke='%23e3b44c' stroke-width='3'/%3E%3C/svg%3E");
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: -0.015em;
  word-break: keep-all;
  overflow-wrap: break-word;
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px));
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: 20px; }

/* =========================================================
   공용 파츠
   ========================================================= */

.eyebrow {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background: var(--red);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.eyebrow::after {
  content: "";
  flex: 1 1 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { display: none; }
.eyebrow--gold { color: var(--gold-2); }
.eyebrow--gold::before { background: var(--gold); }

.section { padding-block: clamp(56px, 8vw, 104px); }
.section__head { max-width: 700px; margin-bottom: 42px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title { font-size: clamp(28px, 4.4vw, 44px); margin-top: 16px; }
.section__lead { margin-top: 18px; color: var(--ink-2); font-size: 17px; }

/* 회문 띠 — 섹션 구분자 */
.band {
  height: 26px;
  background-color: var(--red-2);
  background-image: var(--meander);
  background-repeat: repeat-x;
  border-block: 2px solid var(--red-3);
}

/* 버튼 */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff6e6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(107, 12, 5, 0.35); }
.btn:active { transform: translateY(0); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: #35180a; box-shadow: 0 2px 0 var(--gold-3); }
.btn--gold:hover { box-shadow: 0 10px 24px rgba(227, 180, 76, 0.4); }
.btn--jade { --btn-bg: var(--green); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(36, 16, 10, 0.05); box-shadow: none; }
/* 어두운 배경 위의 고스트 버튼 */
.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: var(--gold-2);
  border-color: rgba(246, 218, 155, 0.45);
  box-shadow: none;
}
.btn--ghost-light:hover { background: rgba(246, 218, 155, 0.1); box-shadow: none; }
.btn--wide { width: 100%; }

.btn__ico { width: 19px; height: 19px; flex: 0 0 auto; }

/* 영업 상태 배지 */
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px 7px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.status__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-3); flex: 0 0 auto; }
.status[data-state="open"] { border-color: rgba(78, 138, 60, 0.5); color: #35651f; }
.status[data-state="open"] .status__dot { background: var(--green); animation: pulse 2s ease-in-out infinite; }
.status[data-state="soon"] { border-color: rgba(169, 124, 34, 0.6); color: #8a5f12; }
.status[data-state="soon"] .status__dot { background: var(--gold); }
.status[data-state="closed"] { color: var(--ink-3); }

/* 다크 배경 위 */
.on-dark .status {
  background: rgba(255, 246, 230, 0.1);
  border-color: rgba(246, 218, 155, 0.35);
  color: var(--gold-2);
}
.on-dark .status[data-state="open"] { color: #b6e29a; border-color: rgba(182, 226, 154, 0.5); }
.on-dark .status[data-state="open"] .status__dot { background: #9fd97f; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(78, 138, 60, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(78, 138, 60, 0); }
}

/* 가격 행 (점선 리더) */
.price-row { display: flex; align-items: baseline; gap: 10px; padding-block: 9px; }
.price-row__name { flex: 0 0 auto; font-weight: 700; }
.price-row__note { font-weight: 500; font-size: 14px; color: var(--ink-3); margin-left: 6px; }
.price-row__dots { flex: 1 1 auto; border-bottom: 1px dotted currentColor; opacity: 0.32; transform: translateY(-4px); min-width: 18px; }
.price-row__price { flex: 0 0 auto; font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.price-row__price--ask { font-weight: 600; font-size: 14px; color: var(--ink-3); }

.badge-hot {
  display: inline-block;
  margin-left: 7px;
  padding: 2px 8px;
  border-radius: 2px;
  background: var(--red);
  color: #fff3e0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  vertical-align: 2px;
}

/* =========================================================
   음식 일러스트 · 김(steam) · 월동문(圓窓)
   ========================================================= */

.dish { width: 100%; height: auto; display: block; }

/* 그릇에서 피어오르는 김 */
.steam { position: absolute; left: 50%; top: 2%; width: 46%; transform: translateX(-50%); pointer-events: none; }
.steam path {
  fill: none;
  stroke: rgba(255, 246, 230, 0.55);
  stroke-width: 5;
  stroke-linecap: round;
  opacity: 0;
  animation: rise 4.2s ease-in-out infinite;
}
.steam path:nth-child(2) { animation-delay: 1.4s; }
.steam path:nth-child(3) { animation-delay: 2.8s; }

@keyframes rise {
  0%   { opacity: 0; transform: translateY(14px) scaleY(0.82); }
  28%  { opacity: 0.85; }
  70%  { opacity: 0.45; }
  100% { opacity: 0; transform: translateY(-26px) scaleY(1.12); }
}

/* 월동문(月洞門) — 중식당 원형 문 프레임 */
.moon {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 7%;
  background:
    radial-gradient(circle at 50% 38%, rgba(243, 176, 74, 0.28), transparent 62%),
    linear-gradient(160deg, rgba(255, 246, 230, 0.07), rgba(255, 246, 230, 0.02));
  box-shadow:
    0 0 0 2px rgba(227, 180, 76, 0.5),
    0 0 0 13px rgba(156, 20, 9, 0.55),
    0 0 0 15px rgba(227, 180, 76, 0.65),
    0 34px 70px -24px rgba(0, 0, 0, 0.7);
}
.moon__inner { position: relative; width: 100%; }

/* 월동문에 실제 사진을 담는 변형 */
.moon--photo { padding: 0; overflow: hidden; }
.moon__img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.moon--photo .steam { top: 6%; z-index: 2; }

@media (prefers-reduced-motion: reduce) {
  .steam path { animation: none; opacity: 0.5; }
  .status__dot { animation: none !important; }
  * { scroll-behavior: auto !important; }
}

/* =========================================================
   홍등(紅燈)
   ========================================================= */

.lanterns {
  position: absolute;
  inset: 0 0 auto 0;
  height: 0;
  pointer-events: none;
  z-index: 2;
}
.lantern { position: absolute; top: 0; transform-origin: 50% -40px; animation: sway 6s ease-in-out infinite; }
.lantern--1 { left: 6%; --lz: 82px; }
.lantern--2 { left: 15%; --lz: 132px; animation-delay: -2.4s; }
.lantern--3 { right: 7%; --lz: 104px; animation-delay: -1.2s; }

.lantern__cord { display: block; width: 2px; height: var(--lz); margin-inline: auto; background: var(--gold-3); }
.lantern__body {
  display: block;
  width: 54px;
  height: 46px;
  border-radius: 50%;
  background:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0 1px, transparent 1px 9px),
    radial-gradient(circle at 34% 32%, #ef5a3c, var(--red) 46%, var(--red-3));
  box-shadow: 0 0 26px rgba(228, 78, 40, 0.55), inset 0 0 12px rgba(0, 0, 0, 0.3);
  position: relative;
}
.lantern__body::before,
.lantern__body::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 6px;
  background: var(--gold);
  border-radius: 1px;
}
.lantern__body::before { top: -4px; }
.lantern__body::after { bottom: -4px; }
.lantern__tassel {
  display: block;
  width: 3px;
  height: 22px;
  margin: 6px auto 0;
  background: linear-gradient(180deg, var(--gold), transparent);
}

@keyframes sway {
  0%, 100% { transform: rotate(-2.4deg); }
  50% { transform: rotate(2.4deg); }
}
@media (prefers-reduced-motion: reduce) { .lantern { animation: none; } }
@media (max-width: 900px) { .lantern--2, .lantern--3 { display: none; } .lantern--1 { left: auto; right: 5%; } }

/* =========================================================
   헤더 — 중식당 간판
   ========================================================= */

.hdr {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, var(--red-2), var(--red-3));
  border-bottom: 3px solid var(--gold-3);
  color: var(--paper);
}
.hdr::after {
  content: "";
  display: block;
  height: 8px;
  background-image: var(--meander);
  background-repeat: repeat-x;
  background-size: 40px 26px;
  opacity: 0.5;
}
.hdr__inner { display: flex; align-items: center; gap: 20px; min-height: 66px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: 0 0 auto; color: inherit; }
.brand__seal {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--red-3);
  border-radius: 3px;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(107, 12, 5, 0.4);
}
.brand__name { font-family: var(--f-display); font-size: 21px; font-weight: 800; letter-spacing: -0.02em; color: var(--paper); }
.brand__sub { display: block; font-size: 11.5px; font-weight: 600; color: var(--gold-2); letter-spacing: 0.06em; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.nav__link {
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255, 246, 230, 0.86);
  padding-block: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--gold-2); border-color: var(--gold); }

.hdr__cta { display: none; }
@media (min-width: 900px) {
  .hdr__cta { display: inline-flex; min-height: 44px; padding-inline: 18px; font-size: 15px; }
}
@media (max-width: 899px) {
  .nav { gap: 16px; }
  .nav__link { font-size: 14.5px; }
  .brand__sub { display: none; }
}
@media (max-width: 560px) {
  .hdr__inner { gap: 12px; min-height: 58px; }
  .nav__link[data-optional] { display: none; }
  .nav {
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, #000 88%, transparent);
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav__link { font-size: 14px; white-space: nowrap; flex: 0 0 auto; }
  .brand__seal { width: 34px; height: 34px; font-size: 11px; }
  .brand__name { font-size: 18px; }
}

/* =========================================================
   히어로 — 어두운 난색 + 홍등 + 음식 일러스트
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  padding-block: clamp(64px, 8vw, 104px) clamp(52px, 7vw, 88px);
  background:
    radial-gradient(760px 520px at 78% 34%, rgba(196, 43, 28, 0.55), transparent 68%),
    radial-gradient(900px 620px at 12% 8%, rgba(169, 124, 34, 0.26), transparent 66%),
    linear-gradient(165deg, var(--dark) 0%, #2d0e09 52%, var(--dark-2) 100%);
}
/* 상단 금색 광 */
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}

.hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.hero__title {
  font-size: clamp(36px, 6.4vw, 66px);
  line-height: 1.22;
  margin-top: 22px;
  color: var(--paper);
  text-shadow: 0 3px 26px rgba(0, 0, 0, 0.5);
}
.hero__title em {
  font-style: normal;
  color: var(--gold-2);
  position: relative;
  white-space: nowrap;
}
/* 강조어 아래 붓터치 */
.hero__title em::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.04em;
  height: 0.16em;
  background: linear-gradient(90deg, transparent, rgba(196, 43, 28, 0.85) 12%, rgba(196, 43, 28, 0.85) 88%, transparent);
  border-radius: 40%;
  z-index: -1;
}

.hero__lead {
  margin-top: 24px;
  font-size: clamp(16px, 1.9vw, 19px);
  color: rgba(255, 246, 230, 0.8);
  max-width: 30em;
}

/* 수상 배지 라인 */
.award-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 8px 16px 8px 13px;
  border: 1px solid rgba(227, 180, 76, 0.55);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(227, 180, 76, 0.16), rgba(227, 180, 76, 0.06));
  color: var(--gold-2);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.award-line svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--gold); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(246, 218, 155, 0.24);
}
.fact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid rgba(246, 218, 155, 0.32);
  border-radius: 999px;
  background: rgba(255, 246, 230, 0.07);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 246, 230, 0.85);
}
.fact strong { color: var(--gold-2); font-weight: 800; }

.hero__art { position: relative; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 400px; margin-inline: auto; order: -1; }
}

/* =========================================================
   가격표 띠 — 벽에 걸린 중국집 가격판
   ========================================================= */

.board {
  position: relative;
  background: linear-gradient(175deg, var(--red) 0%, var(--red-2) 60%, var(--red-3) 100%);
  color: #fff6e6;
  padding: 30px clamp(20px, 4vw, 40px) 26px;
  box-shadow: inset 0 0 0 2px rgba(227, 180, 76, 0.45), 0 20px 44px -26px rgba(0, 0, 0, 0.7);
}
.board__head { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.board__title { font-size: clamp(20px, 2.6vw, 26px); color: var(--gold-2); }
.board__rule { flex: 1 1 auto; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }
.board__tag { font-family: var(--f-body); font-size: 12px; font-weight: 800; letter-spacing: 0.2em; color: rgba(246, 218, 155, 0.65); }

.board__list {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px clamp(24px, 4vw, 52px);
}
.board .price-row { border-bottom: 1px solid rgba(255, 246, 230, 0.16); }
.board .price-row__price { color: var(--gold-2); }
.board__foot { margin-top: 18px; font-size: 13px; line-height: 1.65; color: rgba(255, 246, 230, 0.7); font-weight: 500; }
.board__foot a { color: var(--gold-2); }

@media (max-width: 900px) { .board__list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .board__list { grid-template-columns: 1fr; } }

/* =========================================================
   우측 플로팅 퀵 채널 (전화·예약·배달·지도)
   ========================================================= */

.quickfab {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 48;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quickfab__btn {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #fff;
  text-decoration: none;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 22px -6px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  transition: transform 0.14s ease, filter 0.14s ease;
}
.quickfab__btn:hover { transform: translateY(-2px) scale(1.03); filter: brightness(1.08); }
.quickfab__btn svg { width: 22px; height: 22px; }

.qf--call { background: var(--red); }
.qf--naver { background: #03c75a; }
.qf--place { background: #1f8f4e; }
.qf--baemin { background: #2ac1bc; color: #08343a; }
.qf--coupang { background: #1f6fff; }

/* 모바일: 하단 고정 액션바 위로 올려 겹침 방지 */
@media (max-width: 899px) {
  .quickfab {
    right: 12px;
    bottom: calc(var(--bar-h) + 12px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
  }
  .quickfab__btn { width: 52px; height: 52px; border-radius: 14px; font-size: 10px; }
  .quickfab__btn svg { width: 19px; height: 19px; }
}
@media print { .quickfab { display: none !important; } }
@media (prefers-reduced-motion: reduce) { .quickfab__btn { transition: none; } }

/* =========================================================
   후기 키워드 마퀴
   ========================================================= */

.marquee {
  background: var(--ink);
  color: var(--paper);
  padding-block: 15px;
  overflow: hidden;
  display: flex;
  user-select: none;
  border-block: 2px solid var(--gold-3);
}
.marquee__track {
  display: flex;
  flex: 0 0 auto;
  gap: 34px;
  padding-right: 34px;
  animation: slide 34s linear infinite;
  white-space: nowrap;
}
.marquee__item { font-size: 15.5px; font-weight: 600; letter-spacing: -0.02em; display: inline-flex; align-items: center; gap: 34px; }
.marquee__item::after { content: ""; width: 9px; height: 9px; background: var(--gold); clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
@keyframes slide { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } .marquee { overflow-x: auto; } }

/* =========================================================
   주문 방법 3채널
   ========================================================= */

.channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .channels { grid-template-columns: 1fr; } }

.channel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 26px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--ch, var(--red));
  border-radius: var(--radius);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.channel:hover { transform: translateY(-5px); box-shadow: 0 20px 38px -22px rgba(36, 16, 10, 0.55); }
.channel__num { font-family: var(--f-body); font-size: 12px; font-weight: 800; letter-spacing: 0.2em; color: var(--ch, var(--red)); }
.channel__title { font-size: 25px; margin-top: 10px; }
.channel__desc { margin-top: 13px; color: var(--ink-2); font-size: 15.5px; }
.channel__list { margin-top: 18px; display: grid; gap: 8px; }
.channel__list li { position: relative; padding-left: 18px; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }
.channel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  background: var(--ch, var(--red));
  opacity: 0.6;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.channel__foot { margin-top: auto; padding-top: 24px; }
.channel__foot--delivery { display: flex; flex-direction: column; gap: 8px; }

/* =========================================================
   다크 섹션 (룸·단체)
   ========================================================= */

.dark {
  position: relative;
  background:
    radial-gradient(680px 420px at 84% 22%, rgba(196, 43, 28, 0.34), transparent 68%),
    linear-gradient(160deg, var(--dark) 0%, #35110c 60%, #43150e 100%);
  color: var(--paper);
}
.dark .section__lead { color: rgba(255, 246, 230, 0.75); }

.group-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
@media (max-width: 880px) { .group-grid { grid-template-columns: 1fr; } }

.spec { border-top: 1px solid rgba(246, 218, 155, 0.28); }
.spec__row { display: grid; grid-template-columns: 116px 1fr; gap: 16px; padding-block: 15px; border-bottom: 1px solid rgba(246, 218, 155, 0.16); }
.spec__k { font-size: 14px; font-weight: 700; color: var(--gold-2); letter-spacing: 0.02em; }
.spec__v { font-size: 15.5px; color: rgba(255, 246, 230, 0.9); }
.spec__v small { display: block; margin-top: 4px; font-size: 13px; color: rgba(255, 246, 230, 0.55); }

/* =========================================================
   신뢰(E-E-A-T) 섹션
   ========================================================= */

.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 860px) { .trust { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .trust { grid-template-columns: 1fr; } }

.trust__item {
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top: 4px solid var(--gold);
}
.trust__ico {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(196, 43, 28, 0.08);
  color: var(--red);
  margin-bottom: 14px;
}
.trust__ico svg { width: 22px; height: 22px; }
.trust__t { font-size: 18px; }
.trust__d { margin-top: 9px; font-size: 14.5px; color: var(--ink-2); line-height: 1.65; }

.keychips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; align-items: center; }
.keychips__label { font-size: 13.5px; font-weight: 700; color: var(--ink-3); margin-right: 4px; }
.keychip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}
.keychip::before { content: "\2713"; color: var(--jade); font-weight: 800; }
.keychips__src { width: 100%; margin-top: 6px; font-size: 12.5px; color: var(--ink-3); }

/* =========================================================
   손님 후기
   ========================================================= */

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .reviews { grid-template-columns: 1fr; } }

.review {
  display: flex;
  flex-direction: column;
  padding: 28px 26px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px -22px rgba(36, 16, 10, 0.4);
}
.review__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review__stars svg { width: 18px; height: 18px; }
.review__quote {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.review__quote::before { content: "\201C"; color: var(--red); margin-right: 2px; }
.review__quote::after { content: "\201D"; color: var(--red); margin-left: 2px; }
.review__src {
  margin-top: auto;
  padding-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 7px;
}
.review__src::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* 후기 요약(별점) 바 */
.review-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}
.review-summary__score { font-family: var(--f-display); font-size: 34px; font-weight: 800; color: var(--red); line-height: 1; }
.review-summary__stars { display: flex; gap: 2px; }
.review-summary__stars svg { width: 20px; height: 20px; }
.review-summary__meta { font-size: 14.5px; color: var(--ink-2); font-weight: 600; }
.review-summary__meta strong { color: var(--ink); }
.review-summary__src { margin-left: auto; font-size: 12.5px; color: var(--ink-3); }

/* =========================================================
   상황별 추천
   ========================================================= */

.occasions { display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: 14px; }
.occasion {
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}
.occasion__t { font-size: 19px; }
.occasion__d { margin-top: 10px; font-size: 14.5px; color: var(--ink-2); line-height: 1.65; }

/* =========================================================
   메뉴판
   ========================================================= */

.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 52px); }
@media (max-width: 820px) { .menu-grid { grid-template-columns: 1fr; } }

.menu-sec + .menu-sec { margin-top: 44px; }
.menu-sec__head { display: flex; align-items: center; gap: 12px; padding-bottom: 12px; border-bottom: 3px solid var(--ink); }
.menu-sec__title { font-size: 23px; }
.menu-sec__en { font-family: var(--f-body); font-size: 12px; font-weight: 800; letter-spacing: 0.18em; color: var(--ink-3); margin-left: auto; }
.menu-sec .price-row { border-bottom: 1px solid var(--line); }
.menu-sec .price-row:last-child { border-bottom: 0; }

/* 메뉴 일러스트 카드 */
.dish-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 52px; }
@media (max-width: 760px) { .dish-cards { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; } }

.dish-card {
  position: relative;
  padding: 26px 22px 24px;
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--dark) 0%, #35110c 100%);
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(227, 180, 76, 0.35);
  text-align: center;
  overflow: hidden;
}
.dish-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background-image: var(--meander);
  background-repeat: repeat-x;
  background-size: 40px 26px;
  opacity: 0.55;
}
.dish-card__art { position: relative; width: 74%; margin: 0 auto 16px; }
.dish-card__name { font-size: 21px; color: var(--gold-2); }
.dish-card__desc { margin-top: 8px; font-size: 14px; color: rgba(255, 246, 230, 0.72); line-height: 1.6; }
.dish-card__price { margin-top: 12px; font-family: var(--f-body); font-size: 16px; font-weight: 800; color: var(--paper); }

.notice {
  margin-top: 34px;
  padding: 22px 24px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.8;
}
.notice strong { color: var(--ink); }
.notice a { color: var(--red); font-weight: 700; }

/* 원산지 표시 */
.origin { border-top: 3px solid var(--ink); margin-top: 12px; }
.origin__row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 2px;
  border-bottom: 1px solid var(--line);
}
.origin__k { flex: 0 0 128px; font-weight: 800; color: var(--ink); }
.origin__v { flex: 1 1 auto; color: var(--ink-2); font-size: 15.5px; }
@media (max-width: 480px) { .origin__k { flex-basis: 96px; } }

/* =========================================================
   FAQ 아코디언
   ========================================================= */

.faq { border-top: 3px solid var(--ink); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 23px 4px;
  background: none;
  border: 0;
  font-family: var(--f-display);
  font-size: clamp(17px, 2vw, 19.5px);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
}
.faq__q:hover { color: var(--red); }
.faq__mark { margin-left: auto; flex: 0 0 auto; width: 24px; height: 24px; position: relative; }
.faq__mark::before, .faq__mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
}
.faq__mark::before { width: 15px; height: 2px; transform: translate(-50%, -50%); }
.faq__mark::after { width: 2px; height: 15px; transform: translate(-50%, -50%); }
.faq__q[aria-expanded="true"] .faq__mark::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a { display: none; padding: 0 44px 26px 4px; color: var(--ink-2); font-size: 16px; line-height: 1.78; }
.faq__a[data-open] { display: block; }
.faq__a p + p { margin-top: 12px; }
.faq__a a { color: var(--red); font-weight: 700; }

/* =========================================================
   매장 정보
   ========================================================= */

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 880px) { .info-grid { grid-template-columns: 1fr; } }

.dl { border-top: 3px solid var(--ink); }
.dl__row { display: grid; grid-template-columns: 108px 1fr; gap: 14px; padding-block: 16px; border-bottom: 1px solid var(--line); }
.dl__k { font-size: 14.5px; font-weight: 700; color: var(--ink-3); }
.dl__v { font-size: 16px; }
.dl__v a { color: var(--red); font-weight: 800; text-decoration: none; }
.dl__v a:hover { text-decoration: underline; }
.dl__v small { display: block; margin-top: 5px; font-size: 13.5px; color: var(--ink-3); }

.map-slot {
  aspect-ratio: 4 / 3;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
  background: repeating-linear-gradient(45deg, rgba(36, 16, 10, 0.04) 0 12px, transparent 12px 24px), var(--paper-2);
  border: 2px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink-3);
  font-size: 14.5px;
  font-weight: 600;
}
.map-slot__t { font-family: var(--f-display); font-size: 17px; font-weight: 800; color: var(--ink-2); }

/* 구글 지도 임베드 */
.map-embed {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px -22px rgba(36, 16, 10, 0.45);
  background: var(--paper-2);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* 사진 프레임 — 월동문 원형. 이미지 있으면 사진, 없으면 자리표시 */
.photo-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(227, 180, 76, 0.5), 0 0 0 13px rgba(156, 20, 9, 0.55), 0 0 0 15px rgba(227, 180, 76, 0.6), 0 30px 64px -26px rgba(0, 0, 0, 0.7);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame__ph {
  display: none;
  position: absolute;
  inset: 0;
  place-content: center;
  gap: 6px;
  text-align: center;
  padding: 24px;
  background: repeating-linear-gradient(45deg, rgba(255, 246, 230, 0.05) 0 10px, transparent 10px 20px), rgba(255, 246, 230, 0.05);
  color: rgba(255, 246, 230, 0.6);
  font-size: 13.5px;
  font-weight: 600;
}
.photo-frame__ph code { color: var(--gold-2); font-size: 12px; }
.photo-frame.is-empty img { display: none; }
.photo-frame.is-empty .photo-frame__ph { display: grid; }

/* 사진 갤러리 */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 780px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery__item {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item .photo-frame__ph {
  display: grid;
  color: var(--ink-3);
  background: repeating-linear-gradient(45deg, rgba(36, 16, 10, 0.04) 0 10px, transparent 10px 20px), var(--paper-2);
}
.gallery__item .photo-frame__ph code { color: var(--ink-2); }
.gallery__item.is-empty img { display: none; }
.gallery__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 14px 12px;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 800;
  color: #fff6e6;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, transparent, rgba(28, 10, 7, 0.82));
}
.gallery__item.is-empty .gallery__cap { display: none; }

/* 쇼츠 영상 */
.shorts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .shorts { grid-template-columns: repeat(2, 1fr); } }
/* 영상 2개일 때: 가운데 정렬 + 적당한 최대폭 */
.shorts--2 {
  grid-template-columns: repeat(2, minmax(0, 300px));
  justify-content: center;
  gap: clamp(16px, 4vw, 32px);
}
.short {
  position: relative;
  margin: 0;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 44px -22px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(227, 180, 76, 0.35);
}
.short iframe, .short video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }

/* =========================================================
   예약 문의 폼
   ========================================================= */

.reserve {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 4px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 700; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 16px;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}
.field textarea { resize: vertical; min-height: 84px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.form-note { margin-top: 14px; font-size: 13.5px; color: var(--ink-3); line-height: 1.65; }

/* =========================================================
   푸터 + 하단 고정 액션바
   ========================================================= */

.ftr {
  background: var(--ink);
  color: rgba(255, 246, 230, 0.72);
  padding-block: 48px 40px;
  font-size: 14.5px;
  border-top: 3px solid var(--gold-3);
}
.ftr__top { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: flex-start; }
.ftr__name { font-family: var(--f-display); font-size: 23px; font-weight: 800; color: var(--gold-2); }
.ftr__links { display: flex; flex-wrap: wrap; gap: 18px; }
.ftr__links a { text-decoration: none; font-weight: 600; }
.ftr__links a:hover { color: var(--gold-2); }
.ftr__meta { margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255, 246, 230, 0.16); font-size: 13.5px; line-height: 1.8; color: rgba(255, 246, 230, 0.55); }

.actionbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  border-top: 3px solid var(--gold);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.actionbar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: var(--bar-h);
  color: var(--paper);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-right: 1px solid rgba(255, 246, 230, 0.14);
  transition: background 0.15s;
}
.actionbar__btn:last-child { border-right: 0; }
.actionbar__btn:hover { background: rgba(196, 43, 28, 0.4); }
.actionbar__btn--call { background: var(--red); }
.actionbar__btn--call:hover { background: var(--red-2); }
.actionbar__ico { width: 21px; height: 21px; }

@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .actionbar { display: none; }
}

/* 접근성 */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

/* 인쇄 (메뉴판 출력용) */
@media print {
  .hdr, .actionbar, .marquee, .hero__actions, .ftr, .band, .dish-cards { display: none !important; }
  body { background: #fff; padding: 0; font-size: 12pt; }
  .section { padding-block: 12pt; }
}
