:root {
  --bg-primary: #140f05;
  --bg-secondary: #1a160d;
  --text-heading: #faf3eb;
  --text-body: #cebfb1;
  --text-muted: #8b7e70;
  --text-feature: #e2d3c4;
  --accent-primary: #ffac7c;
  --accent-dark: #833219;
  --border-default: #433922;
  --border-light: #faf3eb;
  --surface-card: #281e13;
  --surface-cta: #ffac7c;
  --surface-hover: #281e13;
  --shadow-soft: 0 30px 80px rgba(0, 0, 0, 0.24);
  --container: min(1400px, calc(100vw - 32px));
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--bg-primary);
  color: var(--text-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
      circle at 15% 10%,
      rgba(255, 172, 124, 0.08),
      transparent 24%
    ),
    radial-gradient(circle at 85% 15%, rgba(131, 50, 25, 0.14), transparent 22%);
  opacity: 0.95;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

em {
  color: var(--accent-primary);
  font-style: italic;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text-heading);
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 7vw, 5.3rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.6rem, 2vw, 2.3rem);
  font-weight: 700;
  line-height: 1.08;
}

@media (max-width: 760px) {
  :root {
    --container: min(1400px, calc(100vw - 24px));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
