/* ===== base.css — Reset, tokens, typography ===== */

:root {
  /* Sepia + dark palette */
  --bg-900: #16110c;
  --bg-800: #1f1810;
  --bg-700: #2a2015;
  --bg-600: #36291b;
  --panel: #241b12;
  --line: #443525;
  --line-soft: #352819;

  --sepia-50: #f7eddc;
  --sepia-100: #efe0c7;
  --sepia-200: #e2cba3;
  --sepia-300: #d3b07b;
  --sepia-400: #c2925a;
  --sepia-500: #a8773f;
  --sepia-600: #8a5d2c;

  --accent: #c9962f;
  --accent-bright: #e8b748;
  --accent-deep: #8a5d2c;

  --text: #ece1cf;
  --text-soft: #c9b89c;
  --text-mute: #978468;
  --text-faint: #6f5f47;

  --white: #fffaf2;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .35);
  --shadow: 0 10px 30px rgba(0, 0, 0, .45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .55);

  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --ff-display: "Sora", system-ui, sans-serif;
  --ff-text: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-text);
  background: var(--bg-900);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  letter-spacing: .005em;
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(201, 150, 47, .10), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(138, 93, 44, .12), transparent 55%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.12rem; }

p { color: var(--text-soft); }

a {
  color: var(--accent-bright);
  text-decoration: none;
  transition: color .2s var(--ease);
}
a:hover { color: var(--white); }

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

ul, ol { padding-left: 1.25rem; }
li { color: var(--text-soft); margin-bottom: .4rem; }

strong { color: var(--sepia-100); font-weight: 600; }
em { color: var(--sepia-200); }

::selection {
  background: var(--accent);
  color: var(--bg-900);
}

:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  font-family: var(--ff-display);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent-deep);
}

.lead {
  font-size: 1.18rem;
  color: var(--sepia-100);
  line-height: 1.65;
}

.muted { color: var(--text-mute); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
