:root {
  --bg: #f4f0e8;
  --bg-soft: #e6ddd0;
  --ink: #111111;
  --ink-soft: #2e2e2e;
  --line: #1f1f1f;
  --gold: #e4aa2d;
  --teal: #146a69;
  --red: #9b2f23;
  --paper: #fffdf8;
  --shadow: 0 18px 40px rgba(15, 15, 15, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg) 0%, #f8f5ef 40%, var(--bg-soft) 100%);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

h1,
h2,
h3,
.brand,
.section-kicker,
.eyebrow {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
}

h1,
h2,
h3,
p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

main {
  position: relative;
  z-index: 2;
}

.background-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 8% 12%, rgba(228, 170, 45, 0.18), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(20, 106, 105, 0.18), transparent 30%),
    radial-gradient(circle at 20% 92%, rgba(155, 47, 35, 0.14), transparent 30%);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
