/* =========================================================
   MAMUTE AFRICANO — Global Stylesheet
   ========================================================= */

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --color-black: #0A0A0A;
  --color-gold: #C9A84C;
  --color-gold-light: #E8C86E;
  --color-gold-dark: #8B6914;
  --color-green-dark: #1A2E1A;
  --color-white: #F5F5F0;
  --color-gray: #9A9A9A;
  --color-surface: #111111;
  --color-surface-2: #1A1A1A;
  --color-whatsapp: #25D366;

  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

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

  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;

  --shadow-gold: 0 0 30px rgba(201, 168, 76, .15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, .5);

  --z-header: 1000;
  --z-menu: 2000;
  --z-fab: 500;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input,
textarea,
select {
  font: inherit;
}

address {
  font-style: normal;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1,
h2,
h3,
.section__title {
  font-family: var(--font-display);
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}

.section__subtitle {
  color: var(--color-gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}

.text--gold {
  color: var(--color-gold);
}
