/* ── DESIGN TOKENS ───────────────────────────────────────────── */
:root {
  --beige:       #C2B1A5;
  --ink:         #1A1A1A;
  --soft:        #F9F7F5;
  --white:       #FFFFFF;
  --naver:       #03C75A;
  --frame:       12px;
  --border:      #f0f0f0;
  --muted:       #999999;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-korean:  'Noto Serif KR', serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;

  --transition:  0.3s ease;
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.04);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ── BEIGE FRAME ─────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  border: var(--frame) solid var(--beige);
  pointer-events: none;
  z-index: 9999;
}

/* ── UTILITY ─────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
