/* ========== RESET ========== */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f5e6d3;
  --bg-alt: #ebd9bf;
  --bg-dark: #2a1d10;
  --bg-darker: #1a0f06;
  --paper: #fdf8ee;
  --ink: #2a1d10;
  --ink-soft: #6e5a45;
  --gold: #c9a961;
  --gold-soft: #d4b97a;
  --red: #a0290e;
  --red-soft: #c14a26;
  --line: #d4c4a8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  word-wrap: break-word;
  font-weight: 500;
  font-size: 17px;
}

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

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: all 0.2s;
  letter-spacing: 1px;
}

.btn--primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn--primary:hover { background: var(--red-soft); border-color: var(--red-soft); }

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--gold);
}
.btn--ghost:hover { background: var(--gold); color: var(--ink); }

.btn--map {
  background: #03c75a;
  color: #fff;
  border-color: #03c75a;
}
.btn--map:hover { background: #02a647; border-color: #02a647; }

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(42, 29, 16, 0.97);
  color: var(--paper);
  padding: 14px 0;
  border-bottom: 1px solid var(--gold);
  backdrop-filter: blur(8px);
}
.header__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: 'Nanum Myeongjo', serif;
}
.logo__year {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  border-right: 1px solid var(--gold);
  padding-right: 12px;
}
.logo__name {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1px;
}
.logo .accent { color: var(--gold); }

.nav { display: flex; gap: 28px; font-size: 1rem; font-weight: 500; }
.nav a { color: var(--paper); transition: color 0.2s; }
.nav a:hover { color: var(--gold); }

.header__cta {
  background: var(--red);
  color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}
.header__cta:hover { background: var(--red-soft); }

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--paper);
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(26,15,6,0.7) 100%),
    linear-gradient(180deg, rgba(26,15,6,0.3) 0%, rgba(26,15,6,0.5) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 900px;
}
.hero__chinese {
  font-family: 'Nanum Myeongjo', serif;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 12px;
  margin-bottom: 16px;
  font-weight: 400;
}
.hero__year {
  font-family: 'Nanum Myeongjo', serif;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 6px;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}
.hero__year::before, .hero__year::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: var(--gold);
}
.hero__year::before { right: calc(100% + 16px); }
.hero__year::after { left: calc(100% + 16px); }
.hero__title {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.4em;
  margin-bottom: 32px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.hero__title-line {
  display: block;
}
.hero__sub {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 48px;
  color: #f5e6d3;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--gold);
  font-family: 'Nanum Myeongjo', serif;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(0.5); transform-origin: top; }
}

/* ========== BROADCAST ========== */
.broadcast {
  background: var(--gold);
  color: var(--ink);
  padding: 32px 24px;
  border-top: 3px double var(--ink);
  border-bottom: 3px double var(--ink);
}
.broadcast__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.broadcast__title {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 0.85rem;
  letter-spacing: 6px;
  margin-bottom: 20px;
  color: var(--bg-dark);
}
.broadcast__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.broadcast__item { text-align: center; }
.broadcast__channel {
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--ink);
  color: var(--gold);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.broadcast__show {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.broadcast__date {
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 2px;
}
.broadcast__divider {
  font-size: 1.5rem;
  color: var(--ink);
}

/* ========== SECTION COMMON ========== */
.section { padding: 100px 0; }
.section__head {
  text-align: center;
  margin-bottom: 64px;
}
.section__chinese {
  font-family: 'Nanum Myeongjo', serif;
  color: var(--red);
  font-size: 0.95rem;
  letter-spacing: 8px;
  margin-bottom: 12px;
  font-weight: 400;
}
.section__title {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 2px;
}
.section__title em {
  font-style: normal;
  color: var(--red);
  position: relative;
}
.section__sub {
  margin-top: 16px;
  color: var(--ink-soft);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}

/* ========== ABOUT ========== */
.about {
  background: var(--bg);
  position: relative;
}
.about::before, .about::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 8px;
  left: 0;
  background: repeating-linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 16px);
  opacity: 0.15;
}
.about::before { top: 0; }
.about::after { bottom: 0; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about__photo {
  position: relative;
}
.about__photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: sepia(0.15) saturate(0.95);
  border: 8px solid var(--paper);
  box-shadow: 0 8px 24px rgba(42,29,16,0.2);
}
.about__photo::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: -1;
}
.about__photo-caption {
  margin-top: 16px;
  text-align: center;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.about__heading {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 32px;
  letter-spacing: 1px;
}
.about__heading em {
  font-style: normal;
  color: var(--red);
}
.about__quote {
  background: var(--paper);
  border-left: 4px solid var(--gold);
  padding: 36px 40px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 2;
  color: #2a1d10;
  position: relative;
}
.about__quote::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 16px;
  font-family: 'Nanum Myeongjo', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.3;
}
.about__quote p { margin-bottom: 14px; }
.about__quote p:last-child { margin-bottom: 0; }
.about__quote strong {
  color: var(--red);
  font-weight: 700;
  background: rgba(160,41,14,0.08);
  padding: 0 4px;
}
.about__greeting {
  font-style: italic;
  color: var(--ink-soft);
  margin-top: 8px;
}
.about__sig {
  text-align: right;
  margin-top: 24px;
  font-family: 'Nanum Myeongjo', serif;
  font-style: italic;
  color: var(--red);
  font-size: 1rem;
}

/* ========== STORY ========== */
.story {
  position: relative;
  padding: 140px 24px;
  color: var(--paper);
  text-align: center;
  overflow: hidden;
}
.story__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) sepia(0.3);
}
.story__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse, transparent 0%, rgba(26,15,6,0.85) 100%);
}
.story__container {
  position: relative;
  z-index: 2;
}
.story__year {
  font-family: 'Nanum Myeongjo', serif;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 8px;
  margin-bottom: 24px;
}
.story__title {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.3;
  margin-bottom: 32px;
}
.story__title em {
  font-style: normal;
  color: var(--gold);
}
.story__sub {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #f0e0c8;
  max-width: 650px;
  margin: 0 auto 64px;
  line-height: 2;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.story__badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.story__badge {
  border: 1px solid var(--gold);
  padding: 24px 32px;
  min-width: 160px;
}
.story__badge-num {
  font-family: 'Nanum Myeongjo', serif;
  color: var(--gold);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.story__badge-label {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  line-height: 1.5;
}

/* ========== MENU ========== */
.menu {
  background: var(--bg-alt);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}
.menu-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  overflow: hidden;
  transition: transform 0.3s;
}
.menu-card:hover {
  transform: translateY(-6px);
}
.menu-card--signature {
  border-color: var(--red);
  border-width: 3px;
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px var(--gold);
}
.menu-card__photo {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.menu-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.menu-card:hover .menu-card__photo img {
  transform: scale(1.05);
}
.menu-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: #fff;
  padding: 4px 14px;
  font-family: 'Nanum Myeongjo', serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 4px;
}
.menu-card__body {
  padding: 28px 28px 32px;
}
.menu-card__name {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.menu-card__weight {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  letter-spacing: 1px;
  font-weight: 500;
}
.menu-card__desc {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  color: #3a2a1a;
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.menu-card__price {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 1px;
}
.menu-card__price .won {
  font-size: 1rem;
  margin-left: 4px;
  font-weight: 500;
  color: var(--ink-soft);
}

/* SIGNATURE SIDE - 한우 된장찌개 */
.signature-side {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: var(--ink);
  color: var(--paper);
  margin: 64px 0 48px;
  border: 2px solid var(--gold);
  overflow: hidden;
  position: relative;
}
.signature-side__photo {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.signature-side__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.signature-side__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: #fff;
  padding: 6px 14px;
  font-family: 'Nanum Myeongjo', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.signature-side__body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.signature-side__eyebrow {
  font-family: 'Nanum Myeongjo', serif;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 6px;
  margin-bottom: 12px;
  font-weight: 400;
}
.signature-side__title {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.signature-side__title em {
  font-style: normal;
  color: var(--gold);
}
.signature-side__lead {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: #d4b97a;
  margin-bottom: 24px;
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}
.signature-side__story {
  margin-bottom: 28px;
}
.signature-side__story p {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: #f0e0c8;
  margin-bottom: 12px;
}
.signature-side__story p:last-child { margin-bottom: 0; }
.signature-side__story strong {
  color: var(--gold);
  font-weight: 700;
}
.signature-side__price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px dotted rgba(201, 169, 97, 0.4);
  padding-top: 20px;
}
.signature-side__price-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.signature-side__price-label {
  font-size: 0.85rem;
  color: #c4b08a;
  font-weight: 500;
}
.signature-side__price-val {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

@media (max-width: 768px) {
  .signature-side { grid-template-columns: 1fr; }
  .signature-side__photo { min-height: 280px; }
  .signature-side__body { padding: 28px 24px; }
  .signature-side__title { font-size: 1.8rem; }
  .signature-side__price-row { grid-template-columns: 1fr; gap: 16px; }
}

/* MEAL */
.meal-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.meal-block {
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 32px;
}
.meal-block__head {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px double var(--gold);
}
.meal-block__cat {
  font-family: 'Nanum Myeongjo', serif;
  color: var(--red);
  font-size: 0.95rem;
  letter-spacing: 8px;
  margin-bottom: 8px;
}
.meal-block__title {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.meal-block__note {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
}
.meal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dotted var(--line);
}
.meal-row:last-child { border-bottom: none; }
.meal-row__name {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
}
.meal-row__name small {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-left: 4px;
  font-weight: 500;
}
.meal-row__price {
  font-family: 'Nanum Myeongjo', serif;
  font-weight: 700;
  color: var(--red);
  font-size: 1.05rem;
}

.drink-block {
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 32px;
  text-align: center;
}
.drink-block__title {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 8px 0 24px;
}
.drink-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  font-family: 'Noto Sans KR', sans-serif;
}
.drink-grid span {
  padding: 12px 16px;
  background: var(--bg);
  font-size: 1rem;
  font-weight: 500;
}
.drink-grid strong {
  color: var(--red);
  margin-right: 8px;
  font-family: 'Nanum Myeongjo', serif;
}

/* ========== WHY ========== */
.why {
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.why-card {
  background: var(--paper);
  border: 1px solid var(--gold);
  display: flex;
  overflow: hidden;
  transition: transform 0.3s;
}
.why-card:hover { transform: translateY(-4px); }
.why-card__photo {
  flex: 0 0 200px;
  background-size: cover;
  background-position: center;
}
.why-card__body {
  padding: 28px 32px;
  flex: 1;
}
.why-card__num {
  font-family: 'Nanum Myeongjo', serif;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1;
}
.why-card__title {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.why-card__title em {
  font-style: normal;
  color: var(--red);
}
.why-card__body p {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  color: #2a1d10;
  font-size: 1rem;
  line-height: 1.8;
}

/* ========== REVIEWS ========== */
.reviews {
  background: var(--bg);
  position: relative;
}
.reviews::before, .reviews::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 6px;
  left: 0;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 14px);
  opacity: 0.4;
}
.reviews::before { top: 0; }
.reviews::after { bottom: 0; }

.reviews-grid {
  columns: 3;
  column-gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  break-inside: avoid;
  background: var(--paper);
  border: 1px solid var(--gold);
  padding: 28px 30px 24px;
  margin-bottom: 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  width: 100%;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 29, 16, 0.15);
}
.review-card--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--gold);
  border-width: 2px;
}
.review-card--featured::before {
  content: '★ 추천 후기';
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--red);
  color: #fff;
  padding: 4px 14px;
  font-family: 'Nanum Myeongjo', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.review-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.review-card__quote {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink);
}
.review-card--featured .review-card__quote { color: var(--paper); }
.review-card__quote p {
  margin-bottom: 10px;
}
.review-card__quote p:last-child { margin-bottom: 0; }
.review-card__quote strong {
  color: var(--red);
  font-weight: 700;
  background: rgba(160, 41, 14, 0.06);
  padding: 0 3px;
}
.review-card--featured .review-card__quote strong {
  color: var(--gold);
  background: rgba(201, 169, 97, 0.12);
}
.review-card__source {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dotted var(--line);
  font-family: 'Nanum Myeongjo', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 2px;
}
.review-card--featured .review-card__source {
  color: var(--gold);
  border-top-color: rgba(201, 169, 97, 0.4);
}

.reviews-cta {
  text-align: center;
}
.btn--ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost-light:hover {
  background: var(--ink);
  color: var(--gold);
}
.reviews-stats {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.reviews-stats strong {
  color: var(--red);
  font-family: 'Nanum Myeongjo', serif;
  font-weight: 800;
  margin: 0 4px;
}

/* ========== GALLERY ========== */
.gallery {
  background: var(--bg-dark);
  color: var(--paper);
}
.gallery .section__title { color: var(--paper); }
.gallery .section__chinese { color: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #1a0f06;
  min-height: 160px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  color: var(--paper);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s;
}
.gallery-item--lg {
  grid-column: span 2;
  grid-row: span 2;
}

/* ========== BLOG ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-card {
  background: var(--paper);
  border: 1px solid var(--gold);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s;
  display: block;
  overflow: hidden;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(42, 29, 16, 0.18);
  border-color: var(--red);
}
.blog-card__photo {
  height: 220px;
  background-size: cover;
  background-position: center;
  filter: sepia(0.1);
}
.blog-card__body { padding: 28px 30px; }
.blog-card__date {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 0.85rem;
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.blog-card__title {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 14px;
  color: var(--ink);
}
.blog-card__excerpt {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  color: #4a3a2a;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-card__more {
  font-family: 'Nanum Myeongjo', serif;
  color: var(--red);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

/* ========== FAQ ========== */
.faq {
  background: var(--bg-alt);
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--gold);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item[open] {
  box-shadow: 0 4px 16px rgba(42, 29, 16, 0.1);
  border-color: var(--red);
}
.faq-item__q {
  padding: 22px 26px;
  font-family: 'Nanum Myeongjo', serif;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 60px;
  color: var(--ink);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: '+';
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s;
}
.faq-item[open] .faq-item__q::after {
  content: '−';
  background: var(--red);
  color: #fff;
  transform: translateY(-50%) rotate(180deg);
}
.faq-item__a {
  padding: 0 26px 24px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.85;
  color: #3a2a1a;
  border-top: 1px dotted var(--line);
  padding-top: 20px;
}
.faq-item__a p { margin-bottom: 10px; }
.faq-item__a p:last-child { margin-bottom: 0; }
.faq-item__a strong {
  color: var(--red);
  font-weight: 700;
}
.faq-item__a a {
  color: var(--red);
  border-bottom: 1px solid var(--red);
  font-weight: 700;
}

@media (max-width: 768px) {
  .faq-item__q { padding: 18px 20px; padding-right: 56px; font-size: 1.02rem; }
  .faq-item__q::after { right: 18px; width: 24px; height: 24px; font-size: 1.2rem; }
  .faq-item__a { padding: 0 20px 22px; padding-top: 18px; font-size: 0.95rem; }
}

/* ========== INFO ========== */
.info {
  background: var(--bg);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.info-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.2s;
}
.info-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.info-card--highlight {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--gold);
}
.info-card__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.info-card__label {
  font-family: 'Nanum Myeongjo', serif;
  color: var(--red);
  font-size: 0.9rem;
  letter-spacing: 4px;
  margin-bottom: 12px;
  font-weight: 700;
}
.info-card--highlight .info-card__label { color: var(--gold); }
.info-card__value {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
.info-card__value small {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.info-card__sub {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  margin-top: 8px;
}
.info-card--highlight .info-card__sub { color: #d4b97a; }
.info-card__phone {
  display: block;
  font-family: 'Nanum Myeongjo', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  margin: 8px 0;
}
.info-card__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--red);
  border-bottom: 1px solid var(--red);
}

.facilities {
  background: var(--paper);
  padding: 32px;
  border: 2px solid var(--ink);
  text-align: center;
  margin-bottom: 40px;
}
.facilities__title {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--red);
  letter-spacing: 4px;
}
.facilities__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.facility-tag {
  padding: 10px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--gold);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}

.map-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-darker);
  color: var(--paper);
  padding: 64px 0 24px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201,169,97,0.3);
}
.footer__logo {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.footer__chinese {
  font-family: 'Nanum Myeongjo', serif;
  font-size: 0.95rem;
  color: var(--gold-soft);
  letter-spacing: 4px;
  margin-bottom: 12px;
}
.footer__desc {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  color: #d4b97a;
  font-size: 1rem;
}
.footer__info {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  color: #f0e0c8;
}
.footer__line strong {
  display: inline-block;
  width: 60px;
  color: var(--gold);
  font-weight: 700;
  margin-right: 12px;
}
.footer__line a {
  color: var(--paper);
  border-bottom: 1px dotted var(--gold);
}
.footer__bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 0.85rem;
  color: #8a7560;
  letter-spacing: 1px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav { gap: 18px; font-size: 0.9rem; }
  .header__cta { font-size: 0.8rem; padding: 6px 14px; }
  .hero__title { font-size: 3.5rem; }
  .section__title { font-size: 2.2rem; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; }
  .meal-section { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { columns: 2; }
}

@media (max-width: 768px) {
  .header__inner { flex-wrap: wrap; gap: 12px; padding: 0 16px; }
  .nav { width: 100%; order: 3; gap: 16px; justify-content: center; flex-wrap: wrap; font-size: 0.85rem; }
  .logo__name { font-size: 1.1rem; }
  .header__cta { font-size: 0.8rem; padding: 8px 14px; }

  .hero { min-height: 600px; height: auto; padding: 80px 0 60px; }
  .hero__title { font-size: 2.5rem; letter-spacing: 2px; }
  .hero__sub { font-size: 1.05rem; }
  .hero__year::before, .hero__year::after { width: 30px; }

  .broadcast__items { gap: 16px; }
  .broadcast__divider { display: none; }
  .broadcast__show { font-size: 1.05rem; }

  .section { padding: 70px 0; }
  .section__title { font-size: 1.8rem; }

  .about__heading { font-size: 1.5rem; }
  .about__quote { padding: 24px 24px 20px 32px; font-size: 0.95rem; }

  .story { padding: 100px 24px; }
  .story__title { font-size: 2rem; }
  .story__badges { gap: 16px; }
  .story__badge { padding: 16px 20px; min-width: 110px; }
  .story__badge-num { font-size: 1.8rem; }

  .menu-grid { grid-template-columns: 1fr; }
  .meal-block, .drink-block { padding: 24px 20px; }

  .why-card { flex-direction: column; }
  .why-card__photo { flex: 0 0 200px; height: 200px; width: 100%; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item--lg { grid-column: span 2; grid-row: span 1; }

  .reviews-grid { columns: 1; }
  .review-card { padding: 24px; }

  .footer__top { grid-template-columns: 1fr; gap: 24px; }
  .info-card__phone { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .hero__chinese { font-size: 0.85rem; letter-spacing: 8px; }
  .hero__cta-group { flex-direction: column; }
  .btn { padding: 12px 22px; font-size: 0.95rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item--lg { grid-column: span 2; grid-row: span 1; }
}
