/* ========================================
   향촌흑염소 유량동본점 — Brand Site
   ======================================== */

:root {
  --bg-deep:    #0a0807;
  --bg-night:   #14100d;
  --bg-soot:    #1c1612;
  --gold-1:     #d4af37;
  --gold-2:     #c9a961;
  --gold-3:     #f0d486;
  --gold-mute:  #8b7339;
  --cream:      #f5efe2;
  --cream-mute: #cbc1ae;
  --line:       rgba(212, 175, 55, 0.18);
  --line-soft:  rgba(245, 239, 226, 0.08);
  --accent-red: #8b1d2c;

  --serif-ko: 'Noto Serif KR', 'Nanum Myeongjo', 'Apple SD Gothic Neo', serif;
  --serif-en: 'Cinzel', 'Noto Serif KR', serif;
  --sans-ko:  'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;

  --maxw: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans-ko);
  background: var(--bg-deep);
  color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  position: relative;
  z-index: 2;
}

/* ===== Background atmosphere ===== */
.cursor-aurora {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 30%),
              rgba(212, 175, 55, 0.10),
              rgba(212, 175, 55, 0.03) 30%,
              transparent 60%);
  transition: background 0.3s ease;
}
.grain-overlay {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}
.particles {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold-3);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 6px rgba(240, 212, 134, 0.6);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(110vh) translateX(0) scale(0.8); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-10vh) translateX(var(--drift, 30px)) scale(1.1); opacity: 0; }
}

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 8, 7, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 12px 0;
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand-mark {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif-ko);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.brand-mark-ko {
  font-family: var(--serif-ko);
  font-size: 20px;
  color: var(--gold-2);
  border: 1px solid var(--gold-mute);
  padding: 4px 8px;
  letter-spacing: 0.1em;
}
.brand-mark-divider {
  width: 1px; height: 18px; background: var(--line);
}
.brand-mark-text {
  font-size: 16px; color: var(--cream);
  letter-spacing: 0.18em;
}
.primary-nav {
  display: flex; gap: 28px;
}
.primary-nav a {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--cream-mute);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold-2);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.primary-nav a:hover { color: var(--gold-3); }
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta {
  font-family: var(--serif-en);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--gold-3);
  border: 1px solid var(--gold-mute);
  padding: 10px 18px;
  transition: all 0.3s ease;
}
.header-cta:hover {
  background: var(--gold-2);
  color: var(--bg-deep);
  border-color: var(--gold-2);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  font-family: var(--sans-ko); font-weight: 500;
  font-size: 14px; letter-spacing: 0.14em;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
  color: var(--bg-deep); font-weight: 700;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.4);
}
.btn-ghost {
  color: var(--cream); border-color: var(--line);
  background: rgba(245, 239, 226, 0.04);
}
.btn-ghost:hover {
  border-color: var(--gold-2); color: var(--gold-3);
  background: rgba(212, 175, 55, 0.08);
}
.btn-gold-lg, .btn-outline-lg {
  padding: 18px 36px; font-size: 15px;
}
.btn-gold-lg {
  background: linear-gradient(135deg, var(--gold-3), var(--gold-1) 50%, var(--gold-2));
  color: var(--bg-deep); font-weight: 700;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.35);
}
.btn-gold-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(212, 175, 55, 0.5);
}
.btn-outline-lg {
  color: var(--cream); border-color: var(--gold-mute);
  background: rgba(10, 8, 7, 0.4);
}
.btn-outline-lg:hover {
  border-color: var(--gold-2); color: var(--gold-3);
  background: rgba(212, 175, 55, 0.06);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg-layer {
  position: absolute; inset: 0; z-index: 0;
}
.hero-image {
  position: absolute; inset: -8%;
  background-size: cover; background-position: center;
  filter: brightness(0.42) saturate(1.1) contrast(1.05);
  transform: scale(1.05) translateY(0);
  will-change: transform;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(10,8,7,0.4) 40%, rgba(10,8,7,0.95) 100%),
    linear-gradient(180deg, rgba(10,8,7,0.6) 0%, transparent 30%, rgba(10,8,7,0.95) 100%);
}
.hero-ornament {
  position: absolute; width: 70px; height: 70px;
  border: 1px solid var(--gold-mute);
  z-index: 2; opacity: 0.5;
}
.hero-ornament-tl { top: 110px; left: 30px; border-right: 0; border-bottom: 0; }
.hero-ornament-tr { top: 110px; right: 30px; border-left: 0; border-bottom: 0; }
.hero-ornament-bl { bottom: 50px; left: 30px; border-right: 0; border-top: 0; }
.hero-ornament-br { bottom: 50px; right: 30px; border-left: 0; border-top: 0; }

.hero-content {
  position: relative; z-index: 3;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  text-align: center;
}
.hero-eyebrow {
  font-family: var(--serif-en);
  font-size: 12px; letter-spacing: 0.5em;
  color: var(--gold-3);
  margin: 0 0 28px;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--serif-ko);
  font-weight: 700;
  margin: 0 0 32px;
  line-height: 1.1;
}
.hero-title-line {
  display: block;
  font-size: clamp(48px, 9vw, 110px);
  background: linear-gradient(180deg, var(--gold-3) 0%, var(--gold-2) 60%, var(--gold-mute) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: 0.04em;
  text-shadow: 0 8px 40px rgba(212, 175, 55, 0.15);
}
.hero-title-sub {
  display: block;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.32em;
  margin-top: 8px;
}
.hero-tagline {
  font-family: var(--serif-ko);
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--cream-mute);
  margin: 0 auto 48px;
  max-width: 640px;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.hero-stats > div {
  text-align: center;
}
.hero-stats span {
  display: block;
  font-family: var(--serif-en);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--gold-3);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero-stats em {
  display: block;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--cream-mute);
  margin-top: 8px;
}

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; gap: 6px;
  z-index: 4;
}
.scroll-cue span {
  display: block; width: 1px; height: 12px;
  background: var(--gold-mute);
  animation: scrollPulse 1.6s ease-in-out infinite;
}
.scroll-cue span:nth-child(2) { animation-delay: 0.2s; }
.scroll-cue span:nth-child(3) { animation-delay: 0.4s; }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Section base ===== */
section { position: relative; }
.section-eyebrow {
  font-family: var(--serif-en);
  font-size: 11px; letter-spacing: 0.5em;
  color: var(--gold-2);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--serif-ko);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  margin: 0 0 24px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.section-title.light { color: var(--cream); }
.section-sub {
  font-size: 15px; color: var(--cream-mute);
  margin: 0;
  letter-spacing: 0.04em;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ===== Story ===== */
.story {
  padding: clamp(80px, 12vh, 140px) 0;
  background:
    linear-gradient(180deg, var(--bg-deep), var(--bg-night) 50%, var(--bg-deep));
}
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story-text .lead {
  font-family: var(--serif-ko);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--gold-3);
  line-height: 1.6;
  margin: 0 0 24px;
  font-weight: 400;
}
.story-text p {
  color: var(--cream-mute);
  font-size: 15px;
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}
.story-visual {
  position: relative;
  min-height: 540px;
}
.story-img-wrap {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.story-img-wrap:first-child {
  width: 75%; height: 60%;
  top: 0; left: 0;
}
.story-img-offset {
  width: 60%; height: 55%;
  bottom: 0; right: 0;
}
.story-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}
.story-img-wrap:hover img { transform: scale(1.06); }

/* ===== Signature ===== */
.signature {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--bg-soot);
  position: relative;
}
.signature::before, .signature::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 30%, var(--line) 70%, transparent);
}
.signature::before { top: 0; }
.signature::after { bottom: 0; }

.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.sig-card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--bg-night);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), border-color 0.4s ease;
}
.sig-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-mute);
}
.sig-img {
  height: 240px;
  background-size: cover; background-position: center;
  position: relative;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}
.sig-card:hover .sig-img { transform: scale(1.06); }
.sig-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,8,7,0.7));
}
.sig-meta {
  padding: 28px 24px 32px;
  position: relative;
}
.sig-meta::before {
  content: ""; position: absolute;
  top: -1px; left: 24px; width: 40px; height: 1px;
  background: var(--gold-2);
}
.sig-meta h3 {
  font-family: var(--serif-ko);
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--gold-3);
  letter-spacing: 0.04em;
}
.sig-meta p {
  margin: 0; font-size: 14px;
  color: var(--cream-mute);
  line-height: 1.7;
}

/* ===== Gallery (masonry) ===== */
.gallery {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--bg-deep);
}
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.mas-item {
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line-soft);
}
.mas-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s cubic-bezier(.2,.8,.2,1), filter 0.6s ease;
  filter: brightness(0.85) saturate(1.1);
}
.mas-item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.15);
}
.mas-tall { grid-row: span 2; }
.mas-wide { grid-column: span 2; }

/* ===== Visit ===== */
.visit {
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  overflow: hidden;
}
.visit-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.32) saturate(1.05);
  transform: scale(1.1);
}
.visit-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,8,7,0.85), rgba(10,8,7,0.5) 60%, rgba(10,8,7,0.95));
}
.visit-card {
  max-width: 880px;
  margin: 0 auto;
  background: rgba(10, 8, 7, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--gold-mute);
  padding: clamp(32px, 5vw, 60px);
  position: relative;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.visit-card::before, .visit-card::after {
  content: ""; position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--gold-2);
}
.visit-card::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.visit-card::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.info-grid {
  margin: 36px 0 40px;
  text-align: left;
  border-top: 1px solid var(--line);
}
.info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.info-label {
  font-family: var(--serif-ko);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--gold-2);
}
.info-value {
  font-size: 16px;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.info-value a { color: var(--gold-3); border-bottom: 1px solid var(--gold-mute); }
.info-value .muted { color: var(--cream-mute); font-size: 13px; }

.visit-actions {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap;
}

/* ===== Contact band ===== */
.contact-band {
  padding: clamp(60px, 9vh, 100px) 0;
  background:
    linear-gradient(120deg, var(--bg-night), var(--bg-soot) 50%, var(--bg-night));
  position: relative;
}
.contact-band::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mute), transparent);
}
.band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.band-title {
  font-family: var(--serif-ko);
  font-size: clamp(24px, 3vw, 36px);
  margin: 0 0 12px;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.band-sub {
  margin: 0; color: var(--cream-mute);
}
.band-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* ===== Footer ===== */
.site-footer {
  background: #050403;
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}
.foot-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.foot-brand h3 {
  font-family: var(--serif-ko);
  font-size: 20px;
  margin: 18px 0 12px;
  color: var(--gold-3);
  letter-spacing: 0.06em;
}
.foot-brand p { margin: 0; color: var(--cream-mute); font-size: 14px; line-height: 1.7; }
.foot-links { display: flex; flex-direction: column; gap: 10px; }
.foot-links a {
  font-size: 13px; letter-spacing: 0.1em; color: var(--cream-mute);
  transition: color 0.3s ease;
}
.foot-links a:hover { color: var(--gold-3); }

.foot-biz {
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 10px;
}
.foot-biz-inner {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 12px; color: var(--cream-mute);
  letter-spacing: 0.05em;
}
.foot-biz-inner span { color: var(--cream-mute); }

.foot-copy {
  margin-top: 20px;
  font-family: var(--serif-en);
  font-size: 12px; letter-spacing: 0.18em;
  color: rgba(245, 239, 226, 0.4);
  text-align: center;
}

/* ===== Reveal animations ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s cubic-bezier(.2,.8,.2,1), transform 1.1s cubic-bezier(.2,.8,.2,1);
}
[data-reveal].in {
  opacity: 1; transform: none;
}
[data-reveal].in.delayed-1 { transition-delay: 0.1s; }
[data-reveal].in.delayed-2 { transition-delay: 0.2s; }

/* ===== Header CTA icon + nav toggle ===== */
.header-cta { display: inline-flex; align-items: center; gap: 8px; }
.header-cta .ic-phone { color: var(--gold-3); transition: color 0.3s ease; }
.header-cta:hover .ic-phone { color: var(--bg-deep); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 0.3s ease;
}
.nav-toggle span {
  width: 22px; height: 1.5px; background: var(--cream);
  transition: transform 0.35s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-toggle:hover { border-color: var(--gold-mute); }

/* ===== Mobile drawer ===== */
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(82vw, 320px);
  background: var(--bg-deep);
  border-left: 1px solid var(--line);
  z-index: 80;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
  overflow-y: auto;
  padding: 90px 24px 32px;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-inner { display: flex; flex-direction: column; gap: 4px; }
.drawer-inner > a {
  font-family: var(--serif-ko);
  padding: 16px 4px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 17px;
  color: var(--cream);
  letter-spacing: 0.06em;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.drawer-inner > a:hover, .drawer-inner > a:active {
  color: var(--gold-3);
  padding-left: 12px;
}
.drawer-cta {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.drawer-cta .btn { width: 100%; padding: 16px 20px; }
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(10, 8, 7, 0.55);
  backdrop-filter: blur(4px);
  z-index: 70;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* ===== Menu section ===== */
.menu {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--bg-night);
  position: relative;
}
.menu::before, .menu::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 30%, var(--line) 70%, transparent);
}
.menu::before { top: 0; } .menu::after { bottom: 0; }

.menu-feature, .set-grid, .menu-side {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}
.menu-feature { grid-template-columns: repeat(3, 1fr); }
.set-grid     { grid-template-columns: repeat(3, 1fr); }
.menu-side    { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-left: auto; margin-right: auto; margin-bottom: 32px; }

.menu-poster {
  border: 1px solid var(--line);
  background: var(--bg-soot);
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.5s cubic-bezier(.2,.8,.2,1);
  position: relative;
}
.menu-poster::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(212,175,55,0.06));
  pointer-events: none;
}
.menu-poster img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}
.menu-poster:hover {
  border-color: var(--gold-mute);
  transform: translateY(-4px);
}
.menu-poster:hover img { transform: scale(1.04); }

.menu-note {
  text-align: center;
  margin-top: 32px;
  padding: 28px;
  border: 1px dashed var(--line);
  background: rgba(245, 239, 226, 0.02);
}
.menu-note p {
  margin: 0 0 16px;
  color: var(--cream-mute);
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* ===== Reviews ===== */
.reviews {
  padding: clamp(80px, 12vh, 140px) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.05), transparent 40%),
    var(--bg-deep);
}
.rating-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto 56px;
  padding: 32px;
  border: 1px solid var(--gold-mute);
  background: rgba(212, 175, 55, 0.03);
  flex-wrap: wrap;
  text-align: left;
}
.rs-score { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.rs-num {
  font-family: var(--serif-en);
  font-size: 64px; font-weight: 700;
  color: var(--gold-3);
  line-height: 1;
  letter-spacing: 0;
}
.rs-stars { display: inline-flex; gap: 2px; }
.rs-count {
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--cream-mute);
  text-transform: uppercase;
}
.rs-divider {
  width: 1px; height: 100px; background: var(--line);
  align-self: center;
}
.rs-meta { flex: 1; min-width: 280px; }
.rs-meta p {
  margin: 0 0 16px;
  color: var(--cream-mute);
  font-size: 14px;
  line-height: 1.7;
}
.rs-meta strong { color: var(--gold-3); font-weight: 500; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.rev-card {
  background: var(--bg-night);
  border: 1px solid var(--line);
  padding: 28px;
  position: relative;
  transition: border-color 0.4s ease, transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.rev-card::before {
  content: "“";
  position: absolute;
  top: 8px; right: 18px;
  font-family: var(--serif-ko);
  font-size: 64px;
  color: var(--gold-mute);
  opacity: 0.4;
  line-height: 1;
}
.rev-card:hover {
  border-color: var(--gold-mute);
  transform: translateY(-3px);
}
.rev-stars {
  display: flex; gap: 2px; margin-bottom: 16px;
}
.rev-stars svg {
  width: 14px; height: 14px; fill: var(--gold-2);
}
.rev-text {
  margin: 0 0 20px;
  font-family: var(--serif-ko);
  font-size: 15px;
  line-height: 1.75;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.rev-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.rev-name { color: var(--gold-3); font-weight: 500; }
.rev-tag {
  color: var(--cream-mute);
  border: 1px solid var(--line);
  padding: 3px 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* ===== Mobile sticky CTA ===== */
.mobile-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  display: none;
  gap: 10px;
  padding: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.mobile-cta.show {
  opacity: 1; transform: none;
  pointer-events: auto;
}
.mc-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  font-family: var(--sans-ko);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 2px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.mc-call {
  background: rgba(10, 8, 7, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gold-3);
  border: 1px solid var(--gold-mute);
}
.mc-book {
  background: linear-gradient(135deg, var(--gold-3), var(--gold-1));
  color: var(--bg-deep);
}
.mc-btn:active { transform: scale(0.98); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .primary-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { gap: 12px; }
  .brand-mark-text { display: none; }

  .story-grid { grid-template-columns: 1fr; }
  .story-visual { min-height: 420px; }
  .masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .mas-wide { grid-column: span 2; }
  .info-row { grid-template-columns: 1fr; gap: 6px; }
  .info-label { font-size: 12px; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
  .hero-stats > div { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
  .hero-stats > div:last-child { border-bottom: 0; }
  .band-inner { flex-direction: column; align-items: flex-start; }
  .foot-top { flex-direction: column; }
  .hero-ornament { width: 40px; height: 40px; }

  .menu-feature, .set-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-side { grid-template-columns: 1fr; max-width: 520px; }
  .review-grid { grid-template-columns: 1fr; }
  .rating-summary { gap: 20px; padding: 24px; flex-direction: column; text-align: center; }
  .rs-divider { width: 60%; height: 1px; }
  .rs-meta { text-align: center; }

  .mobile-cta { display: flex; }
  .site-footer { padding-bottom: 100px; }
  body { padding-bottom: 0; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .header-inner { padding: 0 18px; }

  .masonry { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .mas-wide, .mas-tall { grid-column: span 1; grid-row: span 1; }
  .menu-feature, .set-grid { grid-template-columns: 1fr; }

  .hero { min-height: 88vh; padding: 120px 0 60px; }
  .hero-title-line { font-size: clamp(42px, 12vw, 72px); }
  .hero-title-sub { font-size: clamp(16px, 4vw, 22px); letter-spacing: 0.24em; }
  .hero-tagline { font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; padding: 16px 20px; }
  .visit-actions .btn { width: 100%; padding: 16px 20px; }
  .band-actions { width: 100%; flex-direction: column; }
  .band-actions .btn { width: 100%; padding: 16px 20px; }

  .visit-card { padding: 24px 18px; }
  .info-label { letter-spacing: 0.1em; }
  .info-value { font-size: 15px; }

  .menu-poster { border-width: 1px; }
  .rev-card { padding: 22px; }
  .rev-text { font-size: 14px; }

  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(24px, 6vw, 32px); }

  .scroll-cue { display: none; }
  .grain-overlay { display: none; }
}

@media (hover: none) and (pointer: coarse) {
  .menu-poster:hover, .sig-card:hover, .mas-item:hover, .rev-card:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
