/* =========================================================
   ONGA · 온가 — Korean Restaurant
   Design system + layout
   ========================================================= */

:root {
  /* Palette — warm "hanok" tones */
  --cream: #faf5ec;
  --cream-2: #f3ead9;
  --paper: #fffdf9;
  --ink: #241a16;
  --ink-soft: #5a4b42;
  --burgundy: #8b1e1e;
  --burgundy-deep: #6d1414;
  --clay: #b8542f;
  --gold: #c9a24b;
  --gold-soft: #e6cf95;
  --line: rgba(36, 26, 22, 0.12);

  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -24px rgba(36, 26, 22, 0.45);
  --shadow-sm: 0 8px 24px -16px rgba(36, 26, 22, 0.5);

  --font-display: "Cormorant Garamond", "Noto Serif KR", Georgia, serif;
  --font-kr: "Noto Serif KR", serif;
  --font-body: "Inter", "Noto Serif KR", system-ui, sans-serif;

  --t: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 130px) 0; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--clay);
  margin-bottom: 14px;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.lead { font-size: 1.12rem; color: var(--ink-soft); margin: 18px 0; }
.section-head { max-width: 680px; margin: 0 auto clamp(40px, 6vw, 68px); text-align: center; }
.section-head__note { margin-top: 14px; font-size: 0.9rem; color: var(--ink-soft); }

.link-arrow {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  color: var(--burgundy);
  border-bottom: 2px solid var(--gold-soft);
  padding-bottom: 2px;
  transition: var(--t);
}
.link-arrow:hover { border-color: var(--burgundy); transform: translateX(4px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: 50px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--t);
  white-space: nowrap;
}
.btn--primary { background: var(--burgundy); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--burgundy-deep); transform: translateY(-2px); }
.btn--outline { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn--outline:hover { background: #fff; color: var(--burgundy); }
.btn--ghost { border-color: var(--burgundy); color: var(--burgundy); padding: 10px 20px; }
.btn--ghost:hover { background: var(--burgundy); color: #fff; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--burgundy-deep);
  color: var(--gold-soft);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 9px 24px;
}
.topbar__item { color: #f5e9d6; transition: var(--t); }
a.topbar__item:hover { color: #fff; }
.topbar__open { color: var(--gold-soft); font-weight: 600; }
.topbar__dot { opacity: 0.5; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 236, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--t);
}
.nav.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); background: rgba(255, 253, 249, 0.92); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 14px; }

.brand { display: flex; align-items: baseline; gap: 10px; }
.brand__mark {
  font-family: var(--font-kr);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--burgundy);
  line-height: 1;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 1.05rem;
  color: var(--ink);
}

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--burgundy);
  transition: var(--t);
}
.nav__links a:not(.btn):hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--t);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(40,10,10,0.92) 0%, rgba(60,14,14,0.78) 40%, rgba(80,18,18,0.45) 100%),
    radial-gradient(120% 90% at 80% 0%, rgba(201,162,75,0.18), transparent 55%),
    url("../assets/onga-hero.jpg") center/cover no-repeat,
    linear-gradient(160deg, #4a1010 0%, #7a1818 45%, #8b1e1e 100%);
}
.hero__bg::after {
  /* subtle traditional pattern overlay */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; padding-block: 80px; }
.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 22px;
  font-weight: 600;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255,255,255,0.9);
  margin: 26px 0 36px;
  max-width: 560px;
}
.hero__sub em { color: var(--gold-soft); font-style: italic; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 40px; }
.badge {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
}

/* Steam animation */
.hero__steam {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 120px; height: 60%;
  display: none;
}
.hero__steam span {
  position: absolute;
  bottom: 0;
  width: 14px; height: 14px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  filter: blur(8px);
  animation: steam 6s ease-in-out infinite;
}
.hero__steam span:nth-child(2) { left: 40px; animation-delay: 1.6s; }
.hero__steam span:nth-child(3) { left: 80px; animation-delay: 3.2s; }
@keyframes steam {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  30% { opacity: 0.6; }
  100% { transform: translateY(-220px) scale(2.6); opacity: 0; }
}
@media (min-width: 900px) { .hero__steam { display: block; } }

.hero__scroll {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.7);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about__media { position: relative; }
.about__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(40,10,10,0.10), rgba(20,8,8,0.55)),
    url("../assets/galbijjim.jpg") center/cover no-repeat,
    linear-gradient(135deg, #9a2424, #5e1212);
  box-shadow: var(--shadow);
  display: grid;
  place-items: end start;
  overflow: hidden;
}
.about__kanji {
  font-family: var(--font-kr);
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  margin: 26px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.about__accent {
  position: absolute;
  right: -18px; bottom: -18px;
  width: 55%; height: 55%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

/* ---------- Features ---------- */
.features { background: var(--cream-2); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--t);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.feature__icon {
  font-size: 2rem;
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  background: var(--cream);
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
}
.feature h3 { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; margin-bottom: 10px; }
.feature p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Menu ---------- */
.menu { background: var(--cream); }
.menu__group { margin-bottom: 64px; }
.menu__group-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 6px;
}
.menu__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 48px;
  margin-top: 28px;
}
.menu-item {
  padding: 20px 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.menu-item__name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.menu-item__desc { color: var(--ink-soft); font-size: 0.95rem; margin-top: 6px; }
.menu-item__tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 50px;
}
.tag--star { background: var(--gold-soft); color: var(--burgundy-deep); }
.tag--spicy { background: #f3d4cc; color: var(--clay); }

/* Priced (happy hour) */
.menu__group--happy {
  background: var(--paper);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}
.menu__group-banner { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.menu__group-time {
  font-weight: 600;
  color: var(--clay);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.menu__group-sub { color: var(--ink-soft); margin-top: 4px; }
.price-note { font-size: 0.82rem; color: var(--clay); font-weight: 600; }
.menu__list--priced { grid-template-columns: 1fr; gap: 0; }
.menu-item--priced {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.menu-item__price { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--burgundy); white-space: nowrap; }
.menu-item__price i { color: var(--line); font-style: normal; }
.spicy-dot { font-style: normal; font-size: 0.68rem; color: var(--clay); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.menu__banchan { text-align: center; color: var(--ink-soft); font-size: 1.05rem; margin-top: 8px; }
.menu__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream-2); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 24px;
}
.gallery__item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
}
.gallery__item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,30,30,0.35), rgba(110,20,20,0.75));
  transition: var(--t);
}
.gallery__item:hover::before { background: linear-gradient(135deg, rgba(139,30,30,0.15), rgba(110,20,20,0.55)); }
/* Gallery photos — swap these files in assets/ to update images */
.gallery__item[data-img="g1"] { background-image: url("../assets/galbijjim.jpg"); }
.gallery__item[data-img="g2"] { background-image: url("../assets/seolleongtang.jpg"); }
.gallery__item[data-img="g3"] { background-image: url("../assets/yukgaejang.jpg"); }
.gallery__item[data-img="g4"] { background-image: url("../assets/banchan.jpg"); }
.gallery__item[data-img="g5"] { background-image: url("../assets/onga-hero.jpg"); }
.gallery__item[data-img="g6"] { background-image: url("../assets/interior.jpg"); }
.gallery__item figcaption {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  transition: var(--t);
}
.gallery__item:hover figcaption { transform: translateY(-4px); }

/* ---------- Quote ---------- */
.quote { background: var(--burgundy); color: #fff; text-align: center; }
.quote__inner { max-width: 820px; margin: 0 auto; }
.quote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: 34px;
}
.quote .btn--primary { background: var(--gold); color: var(--burgundy-deep); }
.quote .btn--primary:hover { background: var(--gold-soft); }

/* ---------- Visit ---------- */
.visit { background: var(--cream); }
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.visit__details { margin-top: 28px; display: grid; gap: 22px; }
.visit__details li { display: grid; gap: 4px; }
.visit__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--clay);
  font-weight: 700;
}
.visit__details a, .visit__details span:not(.visit__label) { font-size: 1.1rem; color: var(--ink); }
.visit__details a:hover { color: var(--burgundy); }
.visit__social { display: flex; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.visit__social a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--burgundy);
  border-bottom: 2px solid var(--gold-soft);
  padding-bottom: 2px;
  transition: var(--t);
}
.visit__social a:hover { border-color: var(--burgundy); }
.visit__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.visit__map iframe { width: 100%; height: 420px; border: 0; display: block; filter: saturate(0.95); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #d9cdc4; padding: 56px 0 30px; }
.footer__inner { display: grid; gap: 28px; text-align: center; justify-items: center; }
.footer__brand .brand__mark { color: var(--gold-soft); font-size: 2rem; }
.footer__brand p { margin-top: 8px; font-size: 0.92rem; color: #b6a89e; }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.footer__links a { font-size: 0.92rem; transition: var(--t); }
.footer__links a:hover { color: var(--gold-soft); }
.footer__copy { font-size: 0.82rem; color: #8a7d74; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; width: 100%; max-width: 600px; }

/* ---------- Floating call ---------- */
.floating-call {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--burgundy);
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
  box-shadow: var(--shadow);
  transition: var(--t);
}
.floating-call:hover { background: var(--burgundy-deep); transform: scale(1.08); }

/* ---------- Order modal ---------- */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(36, 16, 16, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}
.order-modal.open { opacity: 1; visibility: visible; }
.order-modal__card {
  position: relative;
  width: min(440px, 100%);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 42px);
  text-align: center;
  transform: translateY(14px) scale(0.98);
  transition: transform var(--t);
}
.order-modal.open .order-modal__card { transform: none; }
.order-modal__mark { font-family: var(--font-kr); font-weight: 700; font-size: 1.8rem; color: var(--burgundy); }
.order-modal__title { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; margin: 6px 0 4px; }
.order-modal__sub { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 26px; }
.order-modal__options { display: grid; gap: 12px; }
.order-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--ink);
  transition: var(--t);
}
.order-opt:hover { border-color: var(--burgundy); background: var(--cream); transform: translateY(-2px); }
.order-opt__name { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.order-opt__name span { font-size: 0.78rem; font-weight: 500; color: var(--ink-soft); }
.order-opt__arrow { color: var(--burgundy); font-size: 1.1rem; }
.order-modal__close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  font-size: 1.6rem; line-height: 1;
  color: var(--ink-soft); cursor: pointer;
  transition: var(--t);
}
.order-modal__close:hover { color: var(--burgundy); }
.order-modal__call { margin-top: 22px; font-size: 0.88rem; color: var(--ink-soft); }
.order-modal__call a { color: var(--burgundy); font-weight: 600; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: var(--paper);
    padding: 100px 32px 40px;
    box-shadow: var(--shadow);
    transform: translateX(100%);
    transition: transform var(--t);
  }
  .nav__links.open { transform: none; }
  .nav__links a:not(.btn) { font-size: 1.1rem; padding: 8px 0; }
  .nav__links .btn { margin-top: 14px; }

  .about__grid, .visit__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .menu__list { grid-template-columns: 1fr; gap: 0; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .about__accent { display: none; }
}
@media (max-width: 520px) {
  .topbar__inner { gap: 6px; font-size: 0.72rem; }
  .topbar__dot { display: none; }
  .gallery__grid { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
}

/* =========================================================
   Sub-pages (Menu, Blog)
   ========================================================= */
.page-hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: clamp(70px, 12vw, 130px) 0 clamp(54px, 8vw, 90px);
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(40,10,10,0.78), rgba(60,14,14,0.88));
}
.page-hero--menu .page-hero__bg { background: url("../assets/onga-hero.jpg") center/cover no-repeat; }
.page-hero--blog .page-hero__bg { background: url("../assets/seolleongtang.jpg") center/cover no-repeat; }
.page-hero--post .page-hero__bg { background: url("../assets/galbijjim.jpg") center/cover no-repeat; }
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
}
.page-hero p { color: rgba(255,255,255,0.88); margin-top: 14px; font-size: 1.1rem; }
.page-hero .eyebrow { color: var(--gold-soft); }
.breadcrumb { margin-top: 22px; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: var(--gold-soft); }
.breadcrumb a:hover { color: #fff; }

/* ---- Full menu ---- */
.fullmenu { background: var(--cream); }
.menu-cat { margin-bottom: clamp(44px, 6vw, 72px); }
.menu-cat__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; border-bottom: 2px solid var(--gold-soft); padding-bottom: 12px; }
.menu-cat__head h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 600; color: var(--burgundy); }
.menu-cat__head .kr { color: var(--clay); font-weight: 600; font-size: 1.1rem; }
.menu-cat__list { display: grid; gap: 6px; }
.mrow { display: grid; grid-template-columns: 1fr auto; gap: 6px 20px; padding: 18px 0; border-bottom: 1px dashed var(--line); align-items: baseline; }
.mrow__name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink); }
.mrow__name .spicy { color: var(--clay); font-size: 0.95rem; }
.mrow__price { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--burgundy); white-space: nowrap; }
.mrow__desc { grid-column: 1 / -1; color: var(--ink-soft); font-size: 0.95rem; max-width: 70ch; margin-top: 2px; }
.mrow__tag { display: inline-block; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 2px 9px; border-radius: 50px; background: var(--gold-soft); color: var(--burgundy-deep); margin-left: 8px; vertical-align: middle; }
.menu-note { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 48px; color: var(--ink-soft); font-size: 0.95rem; }
.menu-note strong { color: var(--ink); }

/* ---- Blog ---- */
.blog { background: var(--cream); }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: var(--t);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.post-card__img { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.post-card__body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--clay); font-weight: 600; margin-bottom: 10px; }
.post-card__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1.2; color: var(--ink); margin-bottom: 12px; }
.post-card__excerpt { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.post-card__more { margin-top: 18px; font-weight: 600; color: var(--burgundy); }
.post-card:hover .post-card__more { color: var(--burgundy-deep); }

/* ---- Article ---- */
.article { background: var(--cream); }
.article__wrap { max-width: 760px; margin: 0 auto; }
.article__body { font-size: 1.08rem; color: var(--ink); }
.article__body h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 600; color: var(--burgundy); margin: 38px 0 14px; }
.article__body h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin: 28px 0 10px; }
.article__body p { margin-bottom: 20px; color: var(--ink-soft); line-height: 1.8; }
.article__body strong { color: var(--ink); }
.article__body ul { margin: 0 0 20px 1.2em; list-style: disc; color: var(--ink-soft); }
.article__body li { margin-bottom: 8px; }
.article__figure { margin: 8px 0 34px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.article__figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article__lang { display: inline-block; margin-bottom: 24px; font-weight: 600; color: var(--burgundy); border-bottom: 2px solid var(--gold-soft); padding-bottom: 2px; }
.article__back { display: inline-block; margin-top: 40px; font-weight: 600; color: var(--burgundy); }
.article__divider { border: none; border-top: 1px solid var(--line); margin: 44px 0; }
.article__kr { color: var(--ink-soft); }

@media (max-width: 880px) {
  .blog__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
