/* ======================================================
   VITAL VIBES BC — main.css
   강남 브런치 카페 · Light Airy · Ivory + Dusty Pink
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Noto+Sans+KR:wght@300;400;500;700&family=Noto+Serif+KR:wght@200;300;400;500;700&display=swap');

/* ── CSS Variables (BC 전용 — 아이보리 + 더스티핑크) ── */
:root {
  --primary:        #3A2028;
  --primary-mid:    #5C3040;
  --primary-light:  #C4A0B0;
  --gold:           #C89060;
  --gold-light:     #E8C8A8;
  --rose:           #C48090;
  --rose-light:     #EDD0D8;
  --bg:             #FEFCF7;
  --surface:        #F8F3EC;
  --surface-alt:    #F0E8E0;
  --dark:           #1A1010;
  --body:           #3A3030;
  --muted:          #8A7878;
  --white:          #FFFFFF;
  --border:         rgba(58,32,40,0.1);
  --border-gold:    rgba(200,144,96,0.25);
  --font-display:   'Fraunces', Georgia, serif;           /* 영문 전용 · italic 허용 */
  --font-ko:        'Noto Serif KR', Georgia, serif;      /* 한글 헤딩 · italic 금지 */
  --font-serif:     'Noto Serif KR', Georgia, serif;
  --font-body:      'Plus Jakarta Sans', 'Noto Sans KR', system-ui, sans-serif;
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:    cubic-bezier(0.77, 0, 0.175, 1);
  --container:      1440px;
  --px:             1.5rem;
  --section-py:     5rem;
}
@media (min-width: 768px) {
  :root { --px: 5rem; --section-py: 8rem; }
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font-body); background: var(--bg); color: var(--body); line-height: 1.7; overflow-x: hidden; cursor: none; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: none; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Custom Cursor ── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--rose);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  will-change: transform;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease-out), height .25s var(--ease-out), border-color .2s, background .2s;
  will-change: transform;
}
body.cursor-hover .cursor-dot  { width: 0; height: 0; }
body.cursor-hover .cursor-ring { width: 64px; height: 64px; background: rgba(196,128,144,.08); border-color: transparent; }

/* ── Layout ── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--px); padding-right: var(--px); }
.section { padding-top: var(--section-py); padding-bottom: var(--section-py); }

/* ── Typography ── */
/* Cormorant Garamond: display 전용, 크기↑ 자간↓ weight 300–400 */
.display-xl { font-family: var(--font-display); font-size: clamp(3.5rem, 12vw, 9rem); line-height: .98; letter-spacing: -.01em; font-weight: 300; }
.display-lg { font-family: var(--font-display); font-size: clamp(2.75rem, 7vw, 6rem); line-height: 1.05; letter-spacing: -.005em; font-weight: 300; }
.headline    { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.75rem); line-height: 1.15; font-weight: 400; letter-spacing: .01em; }
.subhead     { font-family: var(--font-body); font-size: clamp(1rem, 2vw, 1.125rem); line-height: 1.55; font-weight: 500; letter-spacing: .02em; }
.label       { font-family: var(--font-body); font-size: .7rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.body-lg     { font-size: 1rem; line-height: 1.85; color: var(--muted); }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 1.5rem var(--px);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(254,252,247,0.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(58,32,40,0.06);
  transition: padding .3s, background .3s, box-shadow .3s;
}
.nav.scrolled { padding-top: 1rem; padding-bottom: 1rem; background: rgba(254,252,247,0.92); box-shadow: 0 1px 24px rgba(58,32,40,0.07); }
.nav__logo { font-family: var(--font-display); font-size: 1.75rem; color: var(--primary); letter-spacing: .02em; font-style: italic; font-weight: 400; transition: opacity .3s; }
.nav__logo:hover { opacity: .7; }
.nav__links { display: none; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .nav__links { display: flex; } }
.nav__link { font-family: var(--font-body); font-size: .75rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); position: relative; padding-bottom: 2px; transition: color .3s; }
.nav__link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .4s var(--ease-out); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link:hover { color: var(--primary-mid); }
.nav__cta { display: none; font-family: var(--font-body); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--white); background: var(--primary); padding: .75rem 1.75rem; border-radius: 2px; transition: background .3s, transform .2s; position: relative; overflow: hidden; z-index: 1; }
@media (min-width: 1024px) { .nav__cta { display: block; } }
.nav__cta::before { content: ''; position: absolute; inset: 0; background: var(--rose); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease-in-out); z-index: -1; }
.nav__cta:hover::before { transform: scaleX(1); transform-origin: left; }
.nav__hamburger { display: flex; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; cursor: pointer; }
@media (min-width: 768px) { .nav__hamburger { display: none; } }
.nav__hamburger span { display: block; height: 1px; background: var(--primary); transition: transform .3s, opacity .3s, width .3s; }
.nav__hamburger span:nth-child(2) { width: 70%; }
.nav__hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav__mobile { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--primary); z-index: 99; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2rem; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease-out); }
.nav__mobile.open { opacity: 1; pointer-events: all; }
.nav__mobile a { font-family: var(--font-display); font-size: 2.5rem; color: var(--white); font-style: italic; transition: color .3s; }
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1.5rem; color: var(--white); background: none; border: none; cursor: pointer; opacity: .7; transition: opacity .2s; }
.nav__mobile-close:hover { opacity: 1; }

/* ── Announcement Bar ── */
.announce-bar {
  background: var(--primary);
  color: rgba(255,255,255,.85);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-align: center;
  padding: .6rem var(--px);
  position: sticky;
  top: 0;
  z-index: 101;
}
.announce-bar a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; }
.announce-bar a:hover { color: var(--white); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(232,200,168,.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(237,208,216,.3) 0%, transparent 60%),
    linear-gradient(160deg, #FEFCF7 0%, #F8F3EC 50%, #F0E4D8 100%);
  will-change: transform;
}
.hero__deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--primary);
  opacity: .04;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -.02em;
}
.hero__deco--1 { font-size: clamp(6rem, 15vw, 14rem); top: 8%; right: -2%; font-weight: 900; }
.hero__deco--2 { font-size: clamp(4rem, 10vw, 9rem); bottom: 12%; left: -1%; font-weight: 400; }
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 var(--px);
  max-width: 900px;
  width: 100%;
}
.hero__kicker {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp .8s .2s var(--ease-out) forwards;
}
.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 10.5rem);
  line-height: .95;
  letter-spacing: -.01em;
  color: var(--primary);
  font-weight: 300;
  margin-bottom: 1.75rem;
  position: relative;
}
.hero__h1 em { font-style: italic; color: var(--rose); }
.h1-line { display: block; overflow: hidden; }
.h1-line__inner { display: block; transform: translateY(110%); transition: transform .9s var(--ease-out); }
.h1-line__inner.is-up { transform: translateY(0); }
.hero__sub {
  font-size: clamp(.9375rem, 2vw, 1.125rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp .8s .6s var(--ease-out) forwards;
}
.hero__ctas {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp .8s .8s var(--ease-out) forwards;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 3rem;
  padding: .55rem 1.25rem;
  border: 1px solid var(--border-gold);
  background: rgba(254,252,247,.7);
  font-size: .75rem;
  letter-spacing: .06em;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp .8s 1s var(--ease-out) forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp .8s 1.2s var(--ease-out) forwards;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s 1.5s ease-in-out infinite;
}

/* ── Trust Strip ── */
.trust-strip { background: var(--primary); padding: 1.5rem 0; overflow: hidden; }
.trust-strip__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; max-width: var(--container); margin: 0 auto; padding: 0 var(--px); }
.trust-item { text-align: center; padding: .75rem 2rem; }
.trust-item__num { display: block; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); font-weight: 400; font-style: italic; line-height: 1.1; }
.trust-item__label { display: block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: .25rem; }
.trust-strip__divider { width: 1px; height: 2.5rem; background: rgba(255,255,255,.12); margin: 0 .5rem; }
@media (max-width: 640px) { .trust-strip__divider:nth-child(4), .trust-strip__divider:nth-child(6) { display: none; } .trust-item { padding: .6rem 1.25rem; } }

/* ── Section Rule ── */
.section-rule { width: 2.5rem; height: 1px; background: var(--gold); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .875rem 2rem; border-radius: 2px;
  position: relative; overflow: hidden; z-index: 1;
  transition: color .3s, border-color .3s;
  cursor: pointer;
}
.btn::before { content: ''; position: absolute; inset: 0; transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease-in-out); z-index: -1; }
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn--primary { background: var(--rose); color: var(--white); border: 1px solid var(--rose); }
.btn--primary::before { background: #a06070; }
.btn--dark    { background: var(--primary); color: var(--white); border: 1px solid var(--primary); }
.btn--dark::before { background: var(--primary-mid); }
.btn--outline { background: transparent; color: var(--primary); border: 1px solid var(--border); }
.btn--outline::before { background: var(--surface-alt); }

/* ── Floating CTA ── */
.float-cta { position: fixed; bottom: 2rem; right: 1.5rem; display: flex; flex-direction: column; gap: .5rem; z-index: 89; }
.float-cta__btn { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; background: var(--primary); color: var(--white); box-shadow: 0 4px 20px rgba(58,32,40,.25); transition: transform .25s, box-shadow .25s; position: relative; }
.float-cta__btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(58,32,40,.35); }
.float-cta__btn--sms { background: var(--rose); }
.float-cta__pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--primary); animation: pulse 2.5s ease-out infinite; }
@keyframes pulse { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(2);opacity:0} }

/* ── Intro (2-col) ── */
.intro__grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .intro__grid { grid-template-columns: 1fr 1fr; } }
.intro__body { font-size: .9375rem; color: var(--muted); line-height: 1.85; margin-top: 1rem; }
.intro__img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.intro__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.intro__img-wrap:hover img { transform: scale(1.03); }
.intro__img-ghost { position: absolute; top: 1.25rem; left: 1.25rem; right: -1.25rem; bottom: -1.25rem; border: 1px solid var(--border-gold); z-index: -1; }
.intro__link { display: inline-flex; align-items: center; gap: .5rem; margin-top: 2rem; font-size: .8125rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); border-bottom: 1px solid var(--border-gold); padding-bottom: .25rem; transition: color .3s, border-color .3s; }
.intro__link:hover { color: var(--rose); border-color: var(--rose); }

/* ── Menu Cards ── */
.menu-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); }
@media (min-width: 640px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
.menu-card { background: var(--bg); padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 1rem; position: relative; transition: background .3s; }
.menu-card:hover { background: var(--surface); }
.menu-card__num { font-family: var(--font-display); font-size: 3.5rem; color: var(--primary); opacity: .06; line-height: 1; font-style: italic; font-weight: 900; position: absolute; top: 1rem; right: 1.5rem; user-select: none; }
.menu-card__icon { font-size: 1.75rem; }
.menu-card__title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--primary); font-weight: 400; }
.menu-card__desc { font-size: .875rem; color: var(--muted); line-height: 1.75; }
.menu-card__tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: auto; padding-top: 1rem; }
.menu-tag { font-size: .68rem; font-weight: 600; letter-spacing: .08em; padding: .25rem .7rem; background: var(--surface-alt); color: var(--muted); border-radius: 100px; }

/* ── Space (Floor Cards) ── */
.space-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .space-grid { grid-template-columns: repeat(3, 1fr); } }
.space-card { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.space-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); filter: brightness(.85); }
.space-card:hover .space-card__img { transform: scale(1.04); filter: brightness(.9); }
.space-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(58,32,40,.7) 0%, rgba(58,32,40,.1) 50%, transparent 100%); }
.space-card__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.75rem; }
.space-card__floor { font-size: .7rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.space-card__title { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); font-style: italic; font-weight: 400; line-height: 1.1; margin-bottom: .5rem; }
.space-card__desc { font-size: .8125rem; color: rgba(255,255,255,.75); line-height: 1.6; }

/* ── Event Cards (Handhold-style numbered) ── */
.event-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); }
@media (min-width: 640px) { .event-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .event-grid { grid-template-columns: repeat(4, 1fr); } }
.event-card { background: var(--bg); padding: 2.5rem 2rem 3rem; position: relative; overflow: hidden; transition: background .3s; }
.event-card:hover { background: var(--surface); }
.event-card__bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--rose); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out); }
.event-card:hover .event-card__bar { transform: scaleX(1); }
.event-card__num { font-family: var(--font-display); font-size: .85rem; font-style: italic; color: var(--gold); letter-spacing: .05em; margin-bottom: 1.25rem; display: block; }
.event-card__title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--primary); margin-bottom: .75rem; font-weight: 400; }
.event-card__desc { font-size: .8125rem; color: var(--muted); line-height: 1.75; }
.event-card__link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1.5rem; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--rose); transition: gap .3s; }
.event-card:hover .event-card__link { gap: .6rem; }

/* ── Review Tags Section ── */
.review-stats { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-bottom: 3rem; padding: 2rem; border: 1px solid var(--border); }
.review-stat__num { display: block; font-family: var(--font-display); font-size: 2.5rem; color: var(--primary); font-style: italic; font-weight: 400; line-height: 1; }
.review-stat__label { display: block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; }
.review-stat__divider { width: 1px; height: 3rem; background: var(--border); }
.review-tags { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.review-tag { display: inline-flex; align-items: center; gap: .5rem; font-size: .8125rem; padding: .5rem 1rem; border: 1px solid var(--border); background: var(--surface); color: var(--body); border-radius: 100px; }
.review-tag__icon { color: var(--gold); font-size: .65rem; }
.review-tag__count { font-size: .7rem; font-weight: 700; color: var(--rose); margin-left: .25rem; }

/* ── FAQ ── */
.faq-section__grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: 1fr 2fr; } }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; text-align: left; cursor: pointer; }
.faq-item__q-text { font-size: .9375rem; font-weight: 500; color: var(--primary); line-height: 1.55; }
.faq-item__icon { font-size: 1.25rem; color: var(--gold); flex-shrink: 0; transition: transform .35s var(--ease-out); font-weight: 300; }
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-out); }
.faq-item__a-inner { padding: 0 0 1.5rem; font-size: .875rem; color: var(--muted); line-height: 1.8; }

/* ── CTA Section ── */
.cta-section { background: var(--primary); text-align: center; }
.cta-section .label { color: var(--gold); }
.cta-section .headline { color: var(--white); margin-top: 1rem; }
.cta-section .body-lg { color: rgba(255,255,255,.65); margin-top: 1rem; }
.cta-divider { width: 2.5rem; height: 1px; background: var(--rose); margin: 1.25rem auto; }
.cta-buttons { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }

/* ── Map ── */
.map-section__grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
@media (min-width: 1024px) { .map-section__grid { grid-template-columns: 1fr 1.4fr; } }
.map-info__item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.map-info__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.map-info__label { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .35rem; }
.map-info__text { font-size: .875rem; color: var(--body); line-height: 1.7; }
.map-embed { position: relative; padding-bottom: 62%; overflow: hidden; }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.15) contrast(1.05); }

/* ── Chip tags ── */
.chip { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .85rem; border-radius: 2px; background: var(--surface); color: var(--primary); border: 1px solid var(--border); }
.chip--gold { background: transparent; color: var(--gold); border-color: var(--border-gold); }
.chip--rose { background: transparent; color: var(--rose); border-color: rgba(196,128,144,.3); }

/* ── Featured Pages Grid ── */
.featured-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .featured-grid { grid-template-columns: repeat(3, 1fr); } }
.featured-card { display: block; border: 1px solid var(--border); color: inherit; text-decoration: none; overflow: hidden; transition: transform .35s var(--ease-out), border-color .3s; }
.featured-card:hover { transform: translateY(-5px); border-color: var(--rose-light); }
.featured-card__img-wrap { aspect-ratio: 3/2; overflow: hidden; background: var(--surface-alt); }
.featured-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.9); transition: transform .6s var(--ease-out), filter .4s; }
.featured-card:hover .featured-card__img-wrap img { transform: scale(1.05); filter: brightness(1); }
.featured-card__body { padding: 1.5rem; }
.featured-card__title { font-family: var(--font-serif); font-size: 1rem; color: var(--primary); font-weight: 400; margin-bottom: .35rem; }
.featured-card__short { font-size: .8125rem; color: var(--muted); margin-bottom: .75rem; line-height: 1.6; }
.featured-card__cta { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--rose); }

/* ======================================================
   EDITORIAL OVERHAUL — floema-inspired
   ====================================================== */

/* ── Loader ── */
body:not(.loaded) { overflow: hidden; }
#bc-loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--primary);
  display: flex; align-items: flex-end; padding: 3rem var(--px);
}
.loader__bar {
  width: 100%; height: 1px;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0);
}
.loader__wordmark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-style: italic; font-weight: 300;
  color: var(--white); letter-spacing: .04em;
  opacity: .85;
}

/* ── Nav hidden on scroll down ── */
.nav { transition: transform .4s var(--ease-out), padding .3s, background .3s, box-shadow .3s; }
.nav--hidden { transform: translateY(-100%); }

/* ── Line mask reveal ── */
.line-wrap { overflow: hidden; display: block; }
.line-inner { display: block; will-change: transform; white-space: nowrap; }

/* ── HERO EDITORIAL ── */
.hero-edit {
  min-height: 100svh; min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding: 0;
  overflow: hidden;
  position: relative;
  background: var(--bg);
  padding-top: 6rem;
}
@media (min-width: 1024px) {
  .hero-edit {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    padding-top: 0;
  }
}
.hero-edit__left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 3rem var(--px) 5rem;
  position: relative; z-index: 2;
}
@media (min-width: 1024px) {
  .hero-edit__left { padding: 10rem 4rem 6rem; }
}
.hero-edit__kicker {
  font-size: .68rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 2.5rem; display: block;
}
.hero-edit__h1 {
  font-family: var(--font-ko);
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: .95; letter-spacing: -.01em;
  color: var(--primary); font-weight: 200;
  margin-bottom: 2.5rem;
}
.hero-edit__h1 em { font-style: italic; color: var(--rose); }
.hero-edit__body {
  font-size: clamp(.8125rem, 1.5vw, .9375rem);
  color: var(--muted); line-height: 1.85; max-width: 380px;
  margin-bottom: 2.5rem;
}
.hero-edit__ctas { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.hero-edit__cta-main {
  font-size: .7rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: .25rem;
  transition: color .3s, border-color .3s;
}
.hero-edit__cta-main:hover { color: var(--rose); border-color: var(--rose); }
.hero-edit__cta-sub {
  font-size: .7rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  transition: color .3s;
}
.hero-edit__cta-sub:hover { color: var(--primary); }
.hero-edit__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: 2.5rem; font-size: .68rem; letter-spacing: .1em;
  color: var(--gold); padding: .5rem 1rem;
  border: 1px solid var(--border-gold);
  align-self: flex-start;
}
.hero-edit__right {
  position: relative;
  overflow: hidden;
  min-height: 55vw;
}
@media (min-width: 1024px) {
  .hero-edit__right { min-height: unset; }
}
.hero-edit__img {
  position: absolute; inset: 0;
  clip-path: inset(0% 0% 0% 0%);
}
.hero-edit__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;  /* 음식 상단이 잘 보이도록 */
}
.hero-edit__scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5); z-index: 3;
}
@media (min-width: 1024px) {
  .hero-edit__scroll-hint { left: auto; right: 2rem; transform: none; color: var(--muted); }
}
.hero-edit__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s 1.5s ease-in-out infinite;
}

/* ── Marquee ── */
.marquee-section {
  overflow: hidden; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .9rem 0; background: var(--bg);
}
.marquee-inner { display: flex; align-items: center; gap: 0; overflow: hidden; }
.marquee__track {
  display: flex; align-items: center; gap: 0;
  flex-shrink: 0; white-space: nowrap;
}
.marquee__item {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.5rem); font-weight: 300;
  color: var(--primary); padding: 0 2.5rem; letter-spacing: .02em;
}
.marquee__dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  margin: 0 1rem;
}

/* ── Section header (editorial) ── */
.sec-head {
  display: flex; align-items: baseline; gap: 1.5rem;
  margin-bottom: 4rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.sec-head__num {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: .9rem; color: var(--gold); letter-spacing: .08em; flex-shrink: 0;
}
.sec-head__label {
  font-size: .65rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}
.section-label-num {
  position: absolute; top: -2rem; right: 0;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(6rem, 14vw, 12rem); font-weight: 300;
  color: var(--primary); opacity: .04; line-height: 1;
  user-select: none; pointer-events: none; letter-spacing: -.04em;
}

/* ── About editorial ── */
.about-edit {
  display: grid; grid-template-columns: 1fr;
  gap: 4rem; align-items: start; position: relative;
}
@media (min-width: 1024px) {
  .about-edit { grid-template-columns: 1fr 1fr; gap: 8rem; }
}
.about-edit__img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
}
.about-edit__img-wrap img {
  width: 100%; height: 115%; object-fit: cover;
  transform: translateY(-7.5%);
}
.about-edit__headline {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.0; font-weight: 300; color: var(--primary);
  margin-bottom: 2.5rem; letter-spacing: -.01em;
}
.about-edit__body {
  font-size: .9rem; color: var(--muted); line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* ── Menu hover list (floema style) ── */
.menu-hover { border-top: 1px solid var(--border); }
.menu-hover__item {
  display: grid; grid-template-columns: 3rem 1fr auto;
  align-items: center; gap: 2rem;
  padding: 2rem 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: opacity .3s;
  position: relative;
}
.menu-hover__item.is-dim { opacity: .3; }
.menu-hover__item.is-active .menu-hover__title { color: var(--rose); }
.menu-hover__num {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 1rem; color: var(--gold);
}
.menu-hover__title {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 300;
  color: var(--primary); transition: color .3s; letter-spacing: -.01em;
}
.menu-hover__tags {
  display: flex; gap: .5rem; flex-wrap: wrap; justify-content: flex-end;
}
.menu-hover__tag {
  font-size: .65rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); padding: .25rem .7rem;
  border: 1px solid var(--border); border-radius: 100px;
}
.menu-hover__desc {
  display: none;
  grid-column: 2; font-size: .8125rem; color: var(--muted);
  line-height: 1.75; margin-top: .5rem; padding-bottom: .5rem;
}
@media (min-width: 768px) { .menu-hover__item { grid-template-columns: 4rem 1fr auto; } }

/* ── Space full bleed ── */
.space-fullbleed {
  position: relative; height: 100vh; overflow: hidden;
  display: flex; align-items: flex-end;
}
.space-fullbleed__bg {
  position: absolute; inset: 0;
}
.space-fullbleed__bg img {
  width: 100%; height: 115%; object-fit: cover;
  filter: brightness(.55);
}
.space-fullbleed__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,10,20,.7) 0%, rgba(30,10,20,.1) 50%, transparent 100%);
}
.space-fullbleed__content {
  position: relative; z-index: 2; padding: 4rem var(--px) 5rem; width: 100%;
}
.space-fullbleed__headline {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(2.5rem, 8vw, 7rem);
  color: var(--white); line-height: .95; margin-bottom: 3rem;
  letter-spacing: -.02em;
}
.space-stats {
  display: flex; gap: 4rem; flex-wrap: wrap;
}
.space-stat__num {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem); color: var(--white); line-height: 1;
  display: block;
}
.space-stat__label {
  font-size: .65rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: .35rem;
  display: block;
}

/* ── Event list (floema hover reveal) ── */
.events-edit { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 1024px) { .events-edit { grid-template-columns: 1fr 1fr; gap: 0; } }
.event-list { border-top: 1px solid var(--border); }
.event-list__item {
  display: grid; grid-template-columns: 3rem 1fr;
  gap: 1.5rem; padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .2s;
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .event-list__item { grid-template-columns: 4rem 1fr; padding: 2rem 0; } }
.event-list__item::before {
  content: ''; position: absolute; inset: 0;
  background: var(--surface); transform: scaleX(0);
  transform-origin: left; transition: transform .4s var(--ease-out);
}
.event-list__item:hover::before { transform: scaleX(1); }
.event-list__item > * { position: relative; z-index: 1; }
.event-list__num {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 1rem; color: var(--gold); padding-top: .15rem;
}
.event-list__title {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem); color: var(--primary);
  margin-bottom: .4rem; transition: color .3s; letter-spacing: -.01em;
}
.event-list__item:hover .event-list__title { color: var(--rose); }
.event-list__desc { font-size: .8rem; color: var(--muted); line-height: 1.7; }
.event-list__cta {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: .75rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--rose);
}

/* Hover reveal image (fixed follow cursor) */
.event-reveal {
  position: fixed; width: 280px; height: 340px;
  z-index: 999; pointer-events: none;
  opacity: 0; scale: .94; overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(58,32,40,.3);
  transform: translateX(-9999px);
}
.event-reveal__img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}

/* ── Reviews editorial ── */
.review-quote {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(2rem, 5vw, 4.5rem); color: var(--primary);
  line-height: 1.1; letter-spacing: -.01em;
  max-width: 900px; margin-bottom: 3rem;
}
.review-quote em { color: var(--rose); font-style: normal; }

/* ── CTA editorial ── */
.cta-edit {
  background: var(--primary); overflow: hidden; position: relative;
}
.cta-edit__bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(5rem, 18vw, 20rem);
  color: rgba(255,255,255,.03); white-space: nowrap;
  pointer-events: none; user-select: none; letter-spacing: -.05em;
  line-height: 1;
}
.cta-edit__content {
  position: relative; z-index: 1; text-align: center;
  padding: var(--section-py) var(--px);
}
.cta-edit__headline {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(3rem, 8vw, 7rem); color: var(--white);
  line-height: .95; letter-spacing: -.02em; margin-bottom: 2rem;
}
.cta-edit__sub {
  font-size: .9rem; color: rgba(255,255,255,.55);
  line-height: 1.8; max-width: 400px; margin: 0 auto 3rem;
}
.cta-edit__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; padding: 1rem 2.25rem;
  border: 1px solid rgba(255,255,255,.25); color: var(--white);
  border-radius: 2px; transition: background .3s, border-color .3s;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn-fill {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; padding: 1rem 2.25rem;
  background: var(--rose); color: var(--white);
  border: 1px solid var(--rose); border-radius: 2px;
  transition: background .3s;
}
.btn-fill:hover { background: #a06070; }

/* ── Cursor enhancements ── */
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--rose); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(58,32,40,.4);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform;
  display: flex; align-items: center; justify-content: center;
}
.cursor-ring::after {
  content: attr(data-text);
  font-size: .5rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary); white-space: nowrap;
  opacity: 0; transition: opacity .2s;
}
.cursor-ring[data-text]::after { opacity: 1; }

/* ── Horizontal scroll (mobile menu) ── */
@media (max-width: 767px) {
  .menu-hover__item { grid-template-columns: 2.5rem 1fr; gap: 1rem; }
  .menu-hover__tags { display: none; }
}

/* ── Grid utilities ── */
.reveal-hidden { overflow: hidden; }

/* ======================================================
   MOBILE OPTIMIZATIONS
   ====================================================== */

/* ── 터치 디바이스: 커서 숨김 ── */
@media (hover: none) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  a, button { cursor: pointer; }
  .event-reveal { display: none; }
  /* 모바일에서 menu-hover dim 효과 제거 */
  .menu-hover__item.is-dim { opacity: 1; }
  /* 모바일 터치 활성화 피드백 */
  .event-list__item:active { background: var(--surface); }
  .menu-hover__item:active .menu-hover__title { color: var(--rose); }
}

/* ── Hero mobile ── */
@media (max-width: 1023px) {
  .hero-edit {
    grid-template-columns: 1fr;
    grid-template-rows: auto 52vw;
    padding-top: 5rem;
    min-height: auto;
  }
  .hero-edit__left {
    padding: 2.5rem 1.5rem 2rem;
    justify-content: flex-start;
    order: 1;
  }
  .hero-edit__right {
    order: 2;
    min-height: 52vw;
    max-height: 60vw;
  }
  .hero-edit__img { position: absolute; inset: 0; }
  .hero-edit__scroll-hint { display: none; }
  .hero-edit__h1 { font-size: clamp(2.5rem, 9.5vw, 4.5rem); margin-bottom: 1.5rem; }
  .hero-edit__badge { margin-top: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-edit { grid-template-rows: auto 65vw; }
  .hero-edit__right { max-height: 65vw; }
}

/* ── Announce bar mobile ── */
@media (max-width: 640px) {
  .announce-bar {
    font-size: .65rem;
    padding: .5rem 1rem;
    white-space: normal;
    line-height: 1.5;
  }
}

/* ── Section label num: overflow 방지 ── */
.section-label-num { overflow: hidden; }
@media (max-width: 767px) {
  .section-label-num { font-size: clamp(5rem, 22vw, 8rem); }
}

/* ── CTA bg-text overflow 방지 ── */
.cta-edit { overflow: hidden; }
.cta-edit__bg-text {
  font-size: clamp(4rem, 18vw, 20rem);
  overflow: hidden;
}
@media (max-width: 640px) {
  .cta-edit__headline { font-size: clamp(2.5rem, 10vw, 5rem); }
}

/* ── About grid mobile ── */
@media (max-width: 1023px) {
  .about-edit { gap: 2.5rem; }
  .about-edit__img-wrap { aspect-ratio: 16/9; max-height: 56vw; }
  .about-edit__img-wrap img { height: 100%; }
  .about-edit__headline { font-size: clamp(2rem, 8vw, 3.5rem); }
}

/* ── Menu hover mobile: 설명 항상 노출 ── */
@media (max-width: 767px) {
  .menu-hover__title { font-size: clamp(1.2rem, 5vw, 1.75rem); }
  .menu-hover__item { padding: 1.25rem 0; gap: 1rem; }
}

/* ── Space fullbleed mobile ── */
@media (max-width: 767px) {
  .space-fullbleed { height: 75vw; min-height: 320px; }
  .space-fullbleed__headline { font-size: clamp(2rem, 8vw, 4rem); margin-bottom: 1.5rem; }
  .space-stats { gap: 2rem; }
  .space-stat__num { font-size: clamp(1.75rem, 7vw, 3rem); }
}

/* ── Event list mobile ── */
@media (max-width: 767px) {
  .event-list__item { gap: 1rem; padding: 1.25rem 0; }
  .event-list__num { font-size: .875rem; padding-top: .1rem; }
  .event-list__title { font-size: clamp(1.1rem, 4.5vw, 1.4rem); }
}

/* ── Events grid mobile ── */
@media (max-width: 1023px) {
  .events-edit { grid-template-columns: 1fr !important; gap: 2rem !important; }
}

/* ── Review quote mobile ── */
@media (max-width: 640px) {
  .review-quote { font-size: clamp(1.75rem, 8vw, 3rem); margin-bottom: 2rem; }
}

/* ── FAQ grid mobile ── */
@media (max-width: 1023px) {
  .faq-section__grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
}

/* ── Map grid mobile ── */
@media (max-width: 1023px) {
  .map-section__grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .map-embed { padding-bottom: 75%; }
}

/* ── Marquee mobile: 느리게 ── */
@media (max-width: 767px) {
  .marquee__item { font-size: clamp(.875rem, 4vw, 1.25rem); padding: 0 1.5rem; }
}

/* ── Sec head mobile ── */
@media (max-width: 767px) {
  .sec-head { margin-bottom: 2.5rem; padding-bottom: 1rem; }
}

/* ── Button full-width mobile ── */
@media (max-width: 480px) {
  .cta-edit__btns { flex-direction: column; align-items: center; }
  .btn-fill, .btn-ghost { width: 100%; max-width: 300px; justify-content: center; }
  .hero-edit__ctas { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ── Section padding mobile ── */
@media (max-width: 767px) {
  :root { --section-py: 4rem; }
}

/* ── Loader 완전 제거 ── */
#bc-loader { display: none !important; }
body:not(.loaded) { overflow: auto !important; }

/* ======================================================
   FONT RULES: 한글 no-italic / 영문 Fraunces
   ====================================================== */

/* ── 영문 전용 요소 — Fraunces italic (logo, deco) ── */
.nav__logo,
.cta-edit__bg-text,
.hero-edit__deco--1,
.hero-edit__deco--2,
.loader__wordmark,
.marquee__item.eng,
.sec-num-eng {
  font-family: var(--font-display);
  font-style: italic;
}

/* ── 한글 헤딩 — Noto Serif KR, NO italic ── */
.hero-edit__h1,
.about-edit__headline,
.space-fullbleed__headline,
.review-quote,
.cta-edit__headline,
.event-list__title,
.menu-hover__title,
.headline,
.faq-item__q-text {
  font-family: var(--font-ko);
  font-style: normal !important;    /* 한글 이탤릭 강제 금지 */
}

/* 한글 헤딩 weight 계층 */
.hero-edit__h1           { font-weight: 200; }   /* ultra light — 대형 임팩트 */
.about-edit__headline    { font-weight: 300; }
.review-quote            { font-weight: 200; }
.cta-edit__headline      { font-weight: 200; }
.space-fullbleed__headline { font-weight: 300; }
.event-list__title       { font-weight: 400; font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
.menu-hover__title       { font-weight: 300; }
.headline                { font-weight: 400; }

/* ── 섹션 넘버 — Fraunces italic (숫자는 영문 폰트 적용 OK) ── */
.sec-head__num,
.event-list__num,
.menu-hover__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

/* ── 마르키 — 한글은 Noto Serif, 영문은 Fraunces ── */
.marquee__item {
  font-family: var(--font-ko);
  font-style: normal;
  font-weight: 300;
}
.marquee__item.eng {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

/* ── nav logo — 영문이므로 Fraunces italic OK ── */
.nav__logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 200;
  font-size: 1.6rem;
  letter-spacing: .01em;
}

/* ── 모바일 nav logo ── */
@media (max-width: 767px) {
  .nav__mobile a {
    font-family: var(--font-ko);
    font-style: normal;
    font-weight: 300;
    font-size: 2rem;
  }
}

/* ── accent 클래스 — 한글 강조 (색상만, italic 없음) ── */
.accent {
  color: var(--rose);
  font-style: normal;
}

/* ── em 태그 한글 보호 — em 안에 한글 있을 경우 대비 ── */
em:lang(ko),
[lang="ko"] em {
  font-style: normal;
  font-weight: 500;
  color: var(--rose);
}

/* ── 본문 Plus Jakarta Sans weight 활용 ── */
body           { font-weight: 300; }
p              { font-weight: 300; }
.label         { font-weight: 600; letter-spacing: .18em; font-family: var(--font-body); }
.btn, .nav__link, .nav__cta { font-family: var(--font-body); font-weight: 600; }
.hero-edit__cta-main,
.hero-edit__cta-sub { font-family: var(--font-body); }
.faq-item__q-text  { font-family: var(--font-ko); font-weight: 400; }
.review-tag        { font-family: var(--font-body); font-weight: 400; }
.spec-table        { font-family: var(--font-body); font-size: .875rem; }

/* ── 타이포그래피 클래스 재정의 ── */
.display-xl { font-family: var(--font-ko); font-style: normal; font-weight: 200;
              font-size: clamp(3.5rem, 12vw, 9rem); line-height: .95; }
.display-lg { font-family: var(--font-ko); font-style: normal; font-weight: 300;
              font-size: clamp(2.75rem, 7vw, 6rem); line-height: 1.05; }
.subhead    { font-family: var(--font-body); font-weight: 400;
              font-size: clamp(1rem, 2vw, 1.125rem); }

/* ── space-stat 숫자 — Fraunces italic OK (숫자) ── */
.space-stat__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 200;
}

/* ======================================================
   PHOTO MARQUEE — GSAP 기반 음식 사진 흐름
   ====================================================== */

/* 전체 컨테이너 */
.photo-marquee {
  overflow: hidden;
  padding: .75rem 0;
  background: var(--bg);
  /* 좌우 페이드 마스크 */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

/* 각 행 — flex 가로 나열, GSAP이 이 요소를 직접 움직임 */
.pm-row {
  display: flex;
  gap: 12px;
  padding: 6px 0;
  width: max-content;   /* 콘텐츠 폭 그대로 — GSAP이 픽셀 단위 계산 */
  will-change: transform;
}

/* 개별 이미지 카드 — 고정 크기 */
.pm-item {
  flex-shrink: 0;
  width: 320px;
  height: 210px;
  overflow: hidden;
  border-radius: 2px;
  position: relative;   /* 자식 img가 absolute로 채움 */
}

/* 이미지: absolute inset → 완벽한 커버, 찌그러짐 없음 */
.pm-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .5s var(--ease-out);
  display: block;
}

.pm-item:hover img { transform: scale(1.07); }

/* 모바일 */
@media (max-width: 640px) {
  .pm-item { width: 220px; height: 148px; }
  /* 두 번째 행 숨김 */
  .pm-row:nth-child(2) { display: none; }
}
