/* ═══════════════════════════════════════════
   MOODINSHOP · style.css
   Fonts: Anton (EN) · Gowun Batang (KO) · Pretendard (UI)
═══════════════════════════════════════════ */

:root {
  --bg:       #F4EFE8;
  --bg-light: #FDFAF7;
  --dark:     #1A1714;
  --body:     #2C2722;
  --mid:      #544E49;
  --sub:      #7A7470;
  --light:    #9C9890;
  --border:   #DDD5CA;
  --accent:   #BE8B6C;
  --accent-d: #A8785A;
  --f-en: 'Anton', sans-serif;
  --f-ko: 'Gowun Batang', serif;
  --f-ui: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--body);
  font-family: var(--f-ui);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.25;
}

/* ── NAVIGATION ───────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 56px;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(244,239,232,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 56px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--f-en);
  font-size: 18px; letter-spacing: 0.14em;
  color: var(--dark); text-decoration: none; text-transform: uppercase;
}
nav.light .nav-logo { color: white; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-family: var(--f-ui);
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--mid); text-decoration: none;
  padding: 7px 11px; border-radius: 2px; transition: color 0.2s;
}
nav.light .nav-links a { color: rgba(255,255,255,0.75); }
.nav-links a:hover { color: var(--dark); }
nav.light .nav-links a:hover { color: white; }
.nav-links a.active { color: var(--dark); font-weight: 700; }
nav.light .nav-links a.active { color: white; }
.nav-links a.nav-pill {
  background: var(--dark); color: white !important;
  font-weight: 700; border-radius: 1px;
}
nav.light .nav-links a.nav-pill {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
}
.nav-links a.nav-pill:hover { background: var(--accent) !important; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--dark); transition: all 0.3s; }
nav.light .nav-toggle span { background: white; }

/* ── MOBILE OVERLAY ───────────────────────── */
.mob-overlay {
  display: none; position: fixed; inset: 0;
  background: var(--bg-light); z-index: 490;
  flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.mob-overlay.open { display: flex; }
.mob-overlay a {
  font-family: var(--f-en); font-size: 28px; letter-spacing: 0.04em;
  color: var(--dark); text-decoration: none; text-transform: uppercase; padding: 6px;
}
.mob-overlay a.mob-pill {
  font-family: var(--f-ui); font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em; margin-top: 8px; color: var(--accent);
}
.mob-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; font-size: 22px; cursor: pointer; color: var(--mid);
}

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-ui); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-decoration: none; text-transform: uppercase;
  padding: 14px 30px; border-radius: 1px; transition: all 0.28s;
  cursor: pointer; border: none;
}
.btn-white  { background: white; color: var(--dark); }
.btn-white:hover { background: var(--accent); color: white; }
.btn-dark   { background: var(--dark); color: white; }
.btn-dark:hover { background: var(--accent); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-d); }
.btn-outline-white {
  background: transparent; color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: white; color: white; }
.btn-outline { background: transparent; color: var(--dark); border: 1.5px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: white; }

/* ── FADE UP ANIMATION ────────────────────── */
.fu { opacity: 0; transform: translateY(28px); transition: opacity 0.85s ease, transform 0.85s ease; }
.fu.vis { opacity: 1; transform: translateY(0); }
.fu.d1 { transition-delay: 0.1s; }
.fu.d2 { transition-delay: 0.22s; }
.fu.d3 { transition-delay: 0.34s; }
.fu.d4 { transition-delay: 0.46s; }

/* ── SECTION COMMONS ──────────────────────── */
.sec { padding: 112px 56px; }
.si  { max-width: 1200px; margin: 0 auto; }
.lbl {
  font-family: var(--f-ui); font-size: 10px; font-weight: 600;
  letter-spacing: 0.35em; color: var(--sub); text-transform: uppercase; margin-bottom: 16px;
}
h2.en {
  font-family: var(--f-en);
  font-size: clamp(34px, 5vw, 62px); line-height: 1;
  letter-spacing: 0.01em; text-transform: uppercase; color: var(--dark);
}
h2.en em { font-style: normal; color: var(--accent); }
h2.ko {
  font-family: var(--f-ko);
  font-size: clamp(26px, 4vw, 48px); font-weight: 400;
  line-height: 1.35; letter-spacing: -0.01em; color: var(--dark);
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag {
  font-family: var(--f-ui); font-size: 11px; font-weight: 500;
  padding: 6px 14px; border: 1.5px solid var(--border);
  color: var(--mid); border-radius: 20px; transition: all 0.2s;
}
.tag:hover { border-color: var(--accent); color: var(--accent); }

/* ── HOME: HERO ───────────────────────────── */
#hero {
  min-height: 100vh; position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 56px 96px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,10,7,0.84) 0%, rgba(14,10,7,0.22) 55%, rgba(14,10,7,0.05) 100%);
  z-index: 2;
}
.hero-cnt { position: relative; z-index: 3; max-width: 1000px; }
.hero-tag {
  font-family: var(--f-ui); font-size: 10px; font-weight: 500;
  letter-spacing: 0.35em; color: rgba(255,255,255,0.6);
  text-transform: uppercase; margin-bottom: 22px;
}
h1.ht {
  font-family: var(--f-en);
  font-size: clamp(60px, 10.5vw, 124px); line-height: 0.88;
  color: white; letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 36px;
}
.hero-blank { color: var(--accent); display: inline-block; min-width: 260px; transition: opacity 0.28s; }
.hero-sub {
  font-family: var(--f-ko); font-size: 17px;
  color: rgba(255,255,255,0.88); max-width: 420px; line-height: 2.1; margin-bottom: 52px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 44px; right: 56px; z-index: 3;
  writing-mode: vertical-rl; font-family: var(--f-ui); font-size: 9px;
  letter-spacing: 0.32em; color: rgba(255,255,255,0.4);
  display: flex; align-items: center; gap: 14px;
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 52px;
  background: rgba(255,255,255,0.28); animation: sp 2.5s ease-in-out infinite;
}
@keyframes sp {
  0%,100% { opacity: 0.3; transform: scaleY(1); transform-origin: top; }
  50%      { opacity: 0.85; transform: scaleY(0.55); transform-origin: top; }
}

/* ── MARQUEE ──────────────────────────────── */
.marquee-bar { background: var(--dark); padding: 13px 0; overflow: hidden; white-space: nowrap; }
.mtrack { display: inline-flex; animation: mq 32s linear infinite; }
.mi { font-family: var(--f-ui); font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; padding: 0 40px; color: rgba(244,239,232,0.42); }
.mi.hi { color: var(--accent); }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HOME: BRAND STORY ────────────────────── */
.brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; }
.brand-sticky { position: sticky; top: 120px; }
.brand-quote { font-family: var(--f-ko); font-size: clamp(24px, 3.2vw, 42px); font-weight: 400; line-height: 1.55; color: var(--dark); margin-top: 12px; }
.brand-quote span { color: var(--accent); }
.brand-body p { font-family: var(--f-ko); font-size: 16px; line-height: 2.1; color: var(--body); margin-bottom: 18px; }
.pillars { margin-top: 48px; }
.pillar { border-top: 1px solid var(--border); padding: 26px 0; display: flex; gap: 28px; }
.pn { font-family: var(--f-en); font-size: 12px; color: var(--accent); flex-shrink: 0; width: 22px; margin-top: 4px; }
.pillar h4 { font-family: var(--f-ko); font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.pillar p { font-family: var(--f-ui); font-size: 14px; line-height: 1.8; color: var(--mid); }

/* ── HOME: CATEGORIES ─────────────────────── */
.cats-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 24px; }
.cats-hdr-r { font-family: var(--f-ko); font-size: 15px; color: var(--mid); line-height: 1.9; text-align: right; max-width: 270px; }
.cats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); }
.cc { background: var(--bg-light); display: flex; flex-direction: column; cursor: pointer; text-decoration: none; transition: background 0.3s; }
.cc:hover { background: var(--bg); }
.ci { aspect-ratio: 4/5; width: 100%; overflow: hidden; position: relative; }
.ci img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cc:hover .ci img { transform: scale(1.04); }
.cb { padding: 24px 22px 30px; border-top: 1px solid var(--border); }
.cbadge { display: inline-block; background: var(--accent); color: white; font-family: var(--f-ui); font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 4px 10px; margin-bottom: 12px; }
.cn { font-family: var(--f-en); font-size: 32px; letter-spacing: 0.01em; text-transform: uppercase; color: var(--dark); margin-bottom: 6px; line-height: 1; }
.cko { font-family: var(--f-ko); font-size: 13px; color: var(--mid); margin-bottom: 12px; }
.cdesc { font-family: var(--f-ui); font-size: 12px; line-height: 1.8; color: var(--mid); margin-bottom: 18px; }
.ccta { font-family: var(--f-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.2s; }
.cc:hover .ccta { gap: 14px; }

/* ── HOME: MOOD DIAGNOSIS ─────────────────── */
.diag-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 72px; gap: 24px; }
.diag-hdr-r { font-family: var(--f-ko); font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.9; text-align: right; max-width: 260px; }
.qw { max-width: 720px; margin: 0 auto; }
.qdots { display: flex; gap: 6px; margin-bottom: 56px; }
.qd { height: 2px; flex: 1; background: rgba(255,255,255,0.12); border-radius: 1px; transition: background 0.5s; }
.qd.done { background: var(--accent); } .qd.now { background: white; }
.qa { position: relative; min-height: 380px; }
.qs { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; transform: translateX(48px); transition: opacity 0.48s ease, transform 0.48s ease; pointer-events: none; }
.qs.on  { position: relative; opacity: 1; transform: translateX(0); pointer-events: auto; }
.qs.out { position: absolute; opacity: 0; transform: translateX(-48px); }
.qcount { font-family: var(--f-ui); font-size: 10px; font-weight: 600; letter-spacing: 0.28em; color: rgba(255,255,255,0.38); margin-bottom: 18px; text-transform: uppercase; }
.qtext { font-family: var(--f-ko); font-size: clamp(22px, 3.5vw, 40px); font-weight: 400; color: white; line-height: 1.45; margin-bottom: 44px; }
.qopts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.qo { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); padding: 18px 22px; font-family: var(--f-ko); font-size: 14px; cursor: pointer; transition: all 0.22s; text-align: left; line-height: 1.5; }
.qo:hover { background: rgba(190,139,108,0.15); border-color: var(--accent); color: white; }
.qo.sel { background: var(--accent); border-color: var(--accent); color: white; }
.qres { display: none; text-align: center; animation: rF 0.6s ease; }
.qres.show { display: block; }
@keyframes rF { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.rtag { display: inline-block; font-family: var(--f-ui); font-size: 10px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; padding: 5px 16px; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); margin-bottom: 28px; }
.ricon { font-size: 56px; display: block; margin-bottom: 20px; }
.rname { font-family: var(--f-en); font-size: clamp(32px, 4.5vw, 56px); color: white; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 24px; }
.rdesc { font-family: var(--f-ko); font-size: 15px; color: rgba(255,255,255,0.72); max-width: 460px; margin: 0 auto 44px; line-height: 2.1; }
.racts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.retake { background: none; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); padding: 13px 26px; font-family: var(--f-ui); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; }
.retake:hover { border-color: white; color: white; }

/* ── HOME: POPUP SECTION ──────────────────── */
.popup-sec { background: var(--accent); padding: 112px 56px; }
.popup-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.popup-inner .lbl { color: rgba(255,255,255,0.5); }
.popup-title { font-family: var(--f-en); font-size: clamp(48px, 7.5vw, 92px); line-height: 0.88; color: white; text-transform: uppercase; margin: 14px 0 16px; }
.popup-sub { font-family: var(--f-ko); font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 52px; line-height: 2; }
.email-row { display: flex; max-width: 460px; margin: 0 auto 16px; }
.email-row input { flex: 1; padding: 16px 20px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.32); border-right: none; color: white; font-family: var(--f-ui); font-size: 14px; outline: none; }
.email-row input::placeholder { color: rgba(255,255,255,0.48); }
.email-row input:focus { border-color: rgba(255,255,255,0.72); }
.email-row button { padding: 16px 28px; background: white; color: var(--accent); font-family: var(--f-ui); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.25s; }
.email-row button:hover { background: var(--dark); color: white; }
.popup-note { font-family: var(--f-ui); font-size: 11px; color: rgba(255,255,255,0.45); }
.popup-success { display: none; font-family: var(--f-ko); font-size: 22px; color: white; margin: 8px 0 16px; }

/* ── CATEGORY PAGES: HERO ─────────────────── */
.page-hero {
  min-height: 58vh; position: relative;
  display: flex; align-items: flex-end; padding: 0 56px 72px; overflow: hidden;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,10,7,0.82) 0%, rgba(14,10,7,0.2) 58%, transparent 100%);
  z-index: 2;
}
.page-hero-cnt { position: relative; z-index: 3; max-width: 760px; }
.page-hero-tag { font-family: var(--f-ui); font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.page-hero-title { font-family: var(--f-en); font-size: clamp(52px, 8vw, 104px); line-height: 0.88; color: white; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 18px; }
.page-hero-sub { font-family: var(--f-ko); font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.9; }

/* ── CATEGORY PAGES: BODY ─────────────────── */
.page-body { padding: 80px 56px 120px; }
.page-inner { max-width: 1200px; margin: 0 auto; }
.page-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 80px; }
.page-quote { font-family: var(--f-ko); font-size: clamp(22px, 2.8vw, 36px); line-height: 1.65; color: var(--dark); font-weight: 400; }
.page-quote span { color: var(--accent); }
.page-text p { font-family: var(--f-ko); font-size: 16px; line-height: 2.1; color: var(--body); margin-bottom: 16px; }
.plbl { font-family: var(--f-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--sub); margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); margin-bottom: 56px; }
.pcard { background: var(--bg-light); }
.pimg { aspect-ratio: 3/4; width: 100%; overflow: hidden; position: relative; background: linear-gradient(145deg,#D4C4B0,#C0AA90,#A89070); }
.pimg img { width: 100%; height: 100%; object-fit: cover; }
.pimg-ph { position: absolute; bottom: 12px; left: 16px; font-size: 9px; letter-spacing: 0.18em; color: rgba(255,255,255,0.4); font-family: var(--f-ui); text-transform: uppercase; }
.pinfo { padding: 20px 22px 26px; }
.pname { font-family: var(--f-en); font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--dark); margin-bottom: 5px; }
.pko { font-family: var(--f-ko); font-size: 13px; color: var(--mid); margin-bottom: 10px; }
.pdesc { font-family: var(--f-ui); font-size: 12px; line-height: 1.75; color: var(--mid); }
.pcta { text-align: center; margin-top: 48px; }
.page-back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-ui); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sub); cursor: pointer; background: none; border: none; padding: 0 0 32px; transition: color 0.2s; text-decoration: none; }
.page-back:hover { color: var(--dark); }

/* ── SENTENCE: MINI BOOK ──────────────────── */
.mbs-top { background: var(--dark); padding: 80px 56px; text-align: center; }
.mbs-top .lbl { color: rgba(255,255,255,0.4); }
.mbs-title { font-family: var(--f-en); font-size: clamp(34px,5vw,58px); line-height: 1; text-transform: uppercase; color: white; letter-spacing: 0.01em; margin: 12px 0 10px; }
.mbs-sub { font-family: var(--f-ko); font-size: 20px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.mbs-body { max-width: 1200px; margin: 0 auto; padding: 80px 56px; }
.mbs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.mbs-illus { position: sticky; top: 96px; }
.mbs-illus img { width: 100%; border: 1px solid var(--border); background: #F0EBE3; }
.mbs-copy h3 { font-family: var(--f-ko); font-size: 20px; font-weight: 700; color: white; margin: 36px 0 12px; }
.mbs-copy h3:first-child { margin-top: 0; }
.mbs-copy p { font-family: var(--f-ko); font-size: 15px; line-height: 2.1; color: rgba(255,255,255,0.72); margin-bottom: 6px; }
.mbs-spec { margin: 40px 0; border: 1px solid rgba(255,255,255,0.15); padding: 28px 32px; }
.mbs-spec-t { font-family: var(--f-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--sub); margin-bottom: 20px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
.si2 { display: flex; align-items: flex-start; gap: 10px; }
.sdot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 8px; }
.stxt { font-family: var(--f-ui); font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.mbs-pages { margin: 32px 0; background: rgba(255,255,255,0.05); padding: 24px 28px; }
.mbs-pages-t { font-family: var(--f-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--sub); margin-bottom: 16px; }
.pitem { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-family: var(--f-ko); font-size: 13px; color: rgba(255,255,255,0.65); }
.pitem:last-child { border-bottom: none; }
.pinum { font-family: var(--f-en); font-size: 11px; color: var(--accent); letter-spacing: 0.1em; }
.mbs-ctarow { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* ── MAGAZINE ─────────────────────────────── */
.mag-hero { min-height: 70vh; background: var(--dark); display: flex; flex-direction: column; justify-content: flex-end; padding: 140px 56px 80px; position: relative; overflow: hidden; }
.mag-hero-grid { position: absolute; inset: 0; background: repeating-linear-gradient(0deg,transparent,transparent 59px,rgba(255,255,255,0.03) 60px),repeating-linear-gradient(90deg,transparent,transparent 59px,rgba(255,255,255,0.03) 60px); }
.mag-hero-cnt { position: relative; z-index: 2; }
.mag-tag { font-family: var(--f-ui); font-size: 9px; font-weight: 700; letter-spacing: 0.4em; color: rgba(255,255,255,0.35); text-transform: uppercase; margin-bottom: 16px; }
.mag-title { font-family: var(--f-en); font-size: clamp(52px,8.5vw,110px); line-height: 0.88; color: white; letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 20px; }
.mag-hero-sub { font-family: var(--f-ko); font-size: 16px; color: rgba(255,255,255,0.65); max-width: 480px; line-height: 1.9; }
.mag-concept { padding: 80px 56px; background: var(--bg-light); }
.mag-concept-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.mag-quote { font-family: var(--f-ko); font-size: clamp(22px,3vw,38px); font-weight: 400; line-height: 1.55; color: var(--dark); }
.mag-quote span { color: var(--accent); }
.mag-text p { font-family: var(--f-ko); font-size: 15px; line-height: 2.1; color: var(--body); margin-bottom: 16px; }
.mag-issues { padding: 80px 56px; background: var(--bg); }
.mag-issues-inner { max-width: 1200px; margin: 0 auto; }
.issues-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); margin-top: 32px; }
.issue-card { background: var(--bg-light); overflow: hidden; }
.issue-cover { aspect-ratio: 3/4; background: linear-gradient(145deg,#2A2624,#1A1714); position: relative; display: flex; align-items: flex-end; padding: 20px; }
.issue-num { font-family: var(--f-en); font-size: 48px; color: rgba(255,255,255,0.08); position: absolute; top: 16px; left: 20px; }
.issue-cover-lbl { font-family: var(--f-ui); font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.issue-info { padding: 20px 22px 26px; border-top: 1px solid var(--border); }
.issue-vol { font-family: var(--f-en); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.issue-title { font-family: var(--f-ko); font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.issue-desc { font-family: var(--f-ui); font-size: 12px; line-height: 1.7; color: var(--mid); }
.mag-sub { background: var(--dark); padding: 80px 56px 100px; }
.mag-sub-inner { max-width: 720px; margin: 0 auto; }
.sub-perks { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 56px; }
.perk { border-top: 2px solid rgba(255,255,255,0.1); padding-top: 20px; }
.perk-icon { font-size: 24px; margin-bottom: 10px; }
.perk-t { font-family: var(--f-en); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: white; margin-bottom: 6px; }
.perk-d { font-family: var(--f-ko); font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.mag-sub-title { font-family: var(--f-en); font-size: clamp(36px,5vw,58px); line-height: 1; text-transform: uppercase; color: white; letter-spacing: 0.01em; margin: 12px 0 16px; }
.mag-sub-desc { font-family: var(--f-ko); font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.9; margin-bottom: 44px; max-width: 500px; }
.sub-form { display: flex; flex-direction: column; gap: 12px; max-width: 500px; }
.sub-input { padding: 15px 20px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); color: white; font-family: var(--f-ui); font-size: 14px; outline: none; transition: border-color 0.2s; }
.sub-input::placeholder { color: rgba(255,255,255,0.35); }
.sub-input:focus { border-color: rgba(255,255,255,0.45); }
.sub-note { font-family: var(--f-ui); font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 8px; line-height: 1.7; }
.sub-success { display: none; font-family: var(--f-ko); font-size: 20px; color: white; margin-top: 16px; }

/* ── JOIN ─────────────────────────────────── */
.join-hero { min-height: 50vh; background: var(--bg); display: flex; flex-direction: column; justify-content: flex-end; padding: 140px 56px 72px; border-bottom: 1px solid var(--border); }
.join-hero-tag { font-family: var(--f-ui); font-size: 10px; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--sub); margin-bottom: 16px; }
.join-hero-title { font-family: var(--f-en); font-size: clamp(52px,8vw,100px); line-height: 0.9; text-transform: uppercase; color: var(--dark); letter-spacing: 0.01em; margin-bottom: 20px; }
.join-hero-sub { font-family: var(--f-ko); font-size: 17px; color: var(--mid); max-width: 500px; line-height: 1.9; }
.join-types { padding: 80px 56px; background: var(--bg-light); }
.join-types-inner { max-width: 1200px; margin: 0 auto; }
.join-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); margin-top: 48px; }
.jcard { background: var(--bg-light); padding: 44px 36px 48px; transition: background 0.3s; }
.jcard:hover { background: var(--bg); }
.jcard-icon { font-size: 32px; margin-bottom: 20px; }
.jcard-name { font-family: var(--f-en); font-size: 20px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.jcard-ko { font-family: var(--f-ko); font-size: 14px; color: var(--accent); margin-bottom: 16px; }
.jcard-desc { font-family: var(--f-ui); font-size: 13px; line-height: 1.85; color: var(--mid); margin-bottom: 24px; }
.jcard-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.jtag { font-family: var(--f-ui); font-size: 10px; font-weight: 500; padding: 4px 10px; border: 1px solid var(--border); color: var(--sub); border-radius: 20px; }
.join-apply { padding: 80px 56px 100px; background: var(--dark); }
.join-apply-inner { max-width: 760px; margin: 0 auto; }
.join-form { display: flex; flex-direction: column; gap: 12px; margin-top: 44px; }
.join-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ji { padding: 15px 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: white; font-family: var(--f-ui); font-size: 14px; outline: none; transition: border-color 0.2s; }
.ji::placeholder { color: rgba(255,255,255,0.32); }
.ji:focus { border-color: rgba(255,255,255,0.4); }
select.ji option { background: var(--dark); color: white; }
textarea.ji { min-height: 120px; resize: vertical; }
.join-success { display: none; font-family: var(--f-ko); font-size: 20px; color: white; margin-top: 16px; }

/* ── FOOTER ───────────────────────────────── */
footer { background: var(--dark); padding: 72px 56px 44px; }
.fg { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 32px; }
.flogo { font-family: var(--f-en); font-size: 19px; letter-spacing: 0.12em; color: white; text-decoration: none; text-transform: uppercase; display: block; margin-bottom: 14px; }
.fp { font-family: var(--f-ko); font-size: 13px; line-height: 1.9; color: rgba(255,255,255,0.42); margin-bottom: 24px; }
.fsoc { display: flex; gap: 10px; }
.fsoc a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 14px; text-decoration: none; color: rgba(255,255,255,0.5); transition: all 0.2s; }
.fsoc a:hover { border-color: var(--accent); color: var(--accent); }
.fc h5 { font-family: var(--f-ui); font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.fc ul { list-style: none; }
.fc li { margin-bottom: 10px; }
.fc a { font-family: var(--f-ui); font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.fc a:hover { color: white; }
.fb { display: flex; justify-content: space-between; align-items: center; }
.fcp { font-family: var(--f-ui); font-size: 11px; color: rgba(255,255,255,0.22); }
.ftag { font-family: var(--f-en); font-size: 16px; letter-spacing: 0.06em; color: rgba(255,255,255,0.14); text-transform: uppercase; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1100px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  nav, nav.scrolled { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  #hero, .page-hero { padding: 0 24px 80px; }
  .page-hero { min-height: 40vh; padding: 0 24px 52px; }
  .hero-scroll { display: none; }
  .sec, .popup-sec { padding: 72px 24px; }
  footer { padding: 56px 24px 36px; }
  .brand-grid, .page-intro, .mbs-grid, .mag-concept-inner { grid-template-columns: 1fr; gap: 40px; }
  .brand-sticky, .mbs-illus { position: static; }
  .page-body { padding: 52px 24px 80px; }
  .mbs-body { padding: 52px 24px; }
  .mbs-top, .mag-hero { padding: 80px 24px 56px; }
  .mag-concept, .mag-issues, .mag-sub { padding: 56px 24px; }
  .join-hero, .join-types, .join-apply { padding: 80px 24px 56px; }
  .pgrid, .issues-grid { grid-template-columns: 1fr 1fr; }
  .qopts { grid-template-columns: 1fr; }
  .diag-hdr { flex-direction: column; align-items: flex-start; }
  .diag-hdr-r { text-align: left; max-width: 100%; }
  .cats-hdr { flex-direction: column; align-items: flex-start; }
  .cats-hdr-r { text-align: left; }
  .fg { grid-template-columns: 1fr 1fr; gap: 32px; }
  .spec-grid, .sub-perks { grid-template-columns: 1fr; }
  .join-grid { grid-template-columns: 1fr; }
  .join-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  h1.ht { font-size: 52px; }
  .hero-blank { min-width: 0; display: block; }
  .pgrid { grid-template-columns: 1fr; }
  .fg, .issues-grid { grid-template-columns: 1fr; }
  .hero-btns, .mbs-ctarow { flex-direction: column; align-items: flex-start; }
  .email-row { flex-direction: column; }
  .email-row input { border-right: 1px solid rgba(255,255,255,0.32); border-bottom: none; }
  .fb { flex-direction: column; gap: 12px; text-align: center; }
}
