/* =========================================================
   VATBAE — DESIGN TOKENS & BASE
   Warm neutral / editorial streetwear system
========================================================= */
:root {
  --cream: #FBF6EF;
  --off-white: #FFFDFB;
  --charcoal: #201209;
  --brown-deep: #31190D;
  --rust: #C86B4A;
  --rust-dark: #A3502F;
  --tan: #D4A276;
  --text-muted: #7A6A5A;
  --border-soft: rgba(32, 18, 9, 0.1);

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --shadow-card: 0 14px 34px rgba(32, 18, 9, 0.10);
  --shadow-card-hover: 0 20px 44px rgba(32, 18, 9, 0.16);

  --font-display: "Syne", sans-serif;
  --font-ui: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;

  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--charcoal);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: var(--font-ui);
  cursor: pointer;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------------- EYEBROW LABEL ---------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--rust);
  display: inline-block;
}

/* ---------------- SECTION HEADINGS ---------------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 14px 0 16px;
  color: var(--charcoal);
}

.section-head p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rust);
  border-color: var(--rust);
  color: #fff;
}

.btn-primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(32, 18, 9, 0.25);
}

.btn-outline {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: #fff;
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}

.btn-dark:hover {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
  transform: translateY(-3px);
}

/* ---------------- REVEAL ON SCROLL ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------------- UTILITIES ---------------- */
.section {
  padding: 100px 0;
}

@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .section-head { margin-bottom: 40px; }
}

.bg-cream { background: var(--cream); }
.bg-charcoal { background: var(--charcoal); color: #fff; }
.bg-rust { background: var(--rust); color: #fff; }

.text-center { text-align: center; }
