/* tokens loaded via layout <link> */

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: var(--lh-relaxed);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

/* ── Layout ─────────────────────────────── */
.container {
  width: min(1200px, 100% - 2 * var(--sp-8));
  margin-inline: auto;
}

/* ── Typography helpers ─────────────────── */
.heading-serif {
  font-family: var(--ff-heading);
  font-weight: var(--fw-light);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

/* ── Branding manual specific ─────────────── */
.brand-section {
  padding: var(--sp-24) 0;
  border-bottom: 1px solid rgba(38,30,10,0.08);
}
.brand-section:last-child { border-bottom: none; }

.section-label {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--sp-8);
}

.section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-light);
  color: var(--color-text);
  margin-bottom: var(--sp-4);
}
