/* ==========================================================
   Base — Reset, Typography, Layout
   ========================================================== */

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--c-bg);
  color: var(--c-ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Layout primitives */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }

/* Typography */
.label-en {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .35em;
  color: var(--c-cyan);
  margin-bottom: 14px;
  display: inline-block;
}
.h-title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-primary);
  letter-spacing: .02em;
}
.h-title em { font-style: normal; color: var(--c-accent-dark); }
.h-sub {
  font-size: 15px;
  color: var(--c-ink-soft);
  margin-top: 16px;
  max-width: 640px;
  line-height: 1.9;
}

@media (max-width: 960px) {
  .section { padding: 60px 0; }
  .h-title { font-size: 28px; }
}
