* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-paper);
  color: var(--color-ink);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
  /* Korean breaks between any characters by default, which orphans syllables
     (e.g. "더 케이스퀘어" -> "...퀘" / "어"). keep-all breaks only at spaces.
     No effect on English/Latin text. */
  word-break: keep-all;
}

/* Champagne-gold display headline (per brand reference) */
h1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.08em;             /* keep descenders unclipped */
}
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); color: var(--color-ink); }
h2.h--gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.08em;
}
h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  line-height: 1.25;
  color: var(--color-ink);
  word-break: keep-all;
}

p { font-size: clamp(0.98rem, 1.05vw, 1.1rem); max-width: 62ch; color: var(--color-ink-muted); }

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.bleed { width: 100%; }

.section { padding: var(--space-xl) 0; }

/* Uppercase letter-spaced label */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

/* Oversized editorial numeral */
.numeral {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
  color: var(--color-accent);
  opacity: 0.45;
}

.lead { font-size: clamp(1.05rem, 1.4vw, 1.3rem); color: var(--color-ink-muted); }

hr.rule { border: 0; height: 1px; background: var(--color-line); margin: var(--space-md) 0; }

/* Glass material (frosted panel; approximation, not a native platform material) */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  box-shadow: var(--glass-highlight), 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
}
@supports not (backdrop-filter: blur(1px)) {
  .glass { background: #17140F; }
}
@media (prefers-reduced-transparency: reduce) {
  .glass {
    background: #17140F;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
