/* ============================================================
   Lawrence Winnerman — global styles
   Implements the locked brand system (see ../brand-foundation.md
   and ../brand-assets/brand-reference.md). Do NOT add new tokens
   without updating those documents first.
   ============================================================ */

:root {
  /* Color tokens — LOCKED */
  --lw-cream:  #F4F1EB;
  --lw-red:    #C73526;
  --lw-slate:  #434A52;
  --lw-muted:  #9A9489;
  --lw-rule:   #C9C5BC;

  /* Type stacks — Adobe Typekit kit qbo5oht */
  --font-display: "arno-pro-display", "arno-pro", Georgia, "Times New Roman", serif;
  --font-subhead: "arno-pro-subhead", "arno-pro", Georgia, "Times New Roman", serif;
  --font-body:    "arno-pro", Georgia, "Times New Roman", serif;
  --font-ui:      "acumin-pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Type scale */
  --fs-hero:        clamp(3rem, 8vw, 6rem);     /* Display name */
  --fs-tagline:     clamp(1.25rem, 2.4vw, 1.75rem);
  --fs-h2:          clamp(1.875rem, 4vw, 3rem);
  --fs-h3:          clamp(1.25rem, 2.2vw, 1.5rem);
  --fs-body:        1.125rem;
  --fs-small:       0.9375rem;
  --fs-eyebrow:     0.8125rem;

  /* Layout */
  --max-width:      1200px;
  --gutter:         clamp(1.5rem, 4vw, 4rem);
  --section-pad-y:  clamp(4rem, 10vw, 8rem);
}

/* Reset --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  background: var(--lw-cream);
  color: var(--lw-slate);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--lw-red); }

/* Sections — anchor scroll offset for sticky nav */
section { scroll-margin-top: 88px; padding: var(--section-pad-y) 0; }

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Typography roles */
.eyebrow {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lw-red);
  margin: 0 0 1.25rem;
}
h1.display-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-hero);
  line-height: 0.98;
  color: var(--lw-slate);
  margin: 0;
  letter-spacing: -0.01em;
}
h2 {
  font-family: var(--font-subhead);
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: 1.08;
  color: var(--lw-slate);
  margin: 0 0 1.5rem;
  letter-spacing: -0.005em;
}
h3 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-h3);
  color: var(--lw-slate);
  margin: 0 0 0.5rem;
}
p { margin: 0 0 1rem; }
em, i { font-style: italic; }

/* Red accent rule */
.rule-red {
  display: block;
  width: 4rem;
  height: 6px;
  background: var(--lw-red);
  border: 0;
  margin: 1.5rem 0;
}

/* Tagline */
.tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-tagline);
  line-height: 1.25;
  color: var(--lw-slate);
  margin: 0;
}
.tagline span { display: block; }

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  background: var(--lw-red);
  color: var(--lw-cream);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { color: var(--lw-cream); opacity: 0.92; transform: translateY(-1px); }

/* Footer / metadata */
.meta {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: var(--fs-small);
  color: var(--lw-muted);
}

/* Section separator */
.sep {
  border: 0;
  border-top: 1px solid var(--lw-rule);
  margin: 0;
}
