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

:root {
  --gold: #D4960A;
  --gold-light: #F0B429;
  --gold-dim: #8B6207;
  --gold-pale: #FDF0CC;
  --dark: #1A0F07;
  --dark2: #2C1810;
  --dark3: #3D2415;
  --maroon: #8B1A1A;
  --maroon-light: #B02222;
  --terra: #C0471A;
  --cream: #F5EDD8;
  --cream2: #EDE0C4;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

section {
  padding: 96px 48px;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--cream);
  margin-bottom: 20px;
}

.section-title span { color: var(--gold); }

.section-body {
  font-size: 16px;
  color: rgba(245,237,216,0.65);
  max-width: 540px;
  line-height: 1.75;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); }
