/* Truly site-wide styles only: CSS variables, reset, and base typography.
   Anything specific to one component or page lives with that file instead —
   see components/ for shared UI pieces, or the CSS file next to each page. */

:root {
  --color-bg: #f6f2ea;
  --color-bg-alt: #ffffff;
  --color-ink: #1b1b1d;
  --color-ink-soft: #4a4640;
  --color-panel: #1f2126;
  --color-panel-soft: #2a2d33;
  --color-panel-ink: #f1ece1;
  --color-panel-ink-soft: #b9b3a6;
  --color-accent: #b8863b;
  --color-accent-bright: #d9a455;
  --color-line: rgba(27, 27, 29, 0.12);
  --color-line-dark: rgba(241, 236, 225, 0.14);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", sans-serif;
  --font-logo: "Teko", "Arial Narrow", sans-serif;

  --max-width: 1180px;
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

/* Centered content column reused by every section on every page */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  margin: 0;
  letter-spacing: 0.005em;
}

h1, h2 {
  text-transform: uppercase;
}

p {
  margin: 0;
}

/* Small uppercase label used above headings across every page */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--color-accent);
}

/* Base vertical rhythm between page sections */
section {
  padding: 96px 0;
}

@media (max-width: 760px) {
  section {
    padding: 64px 0;
  }
}
