/* ============================================================
   BASE — Reset, CSS variables, global typography
   ============================================================ */

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

:root {
  /* Brand colors */
  --gold:       #C9A84C;
  --gold-light: #E2C97E;
  --gold-dark:  #9A7A30;

  /* Dark palette */
  --dark:   #0f0d08;
  --dark-2: #1a1710;
  --dark-3: #252119;

  /* Light palette */
  --off-white: #f8f6f2;
  --gray:      #f2f0ec;

  /* Text */
  --text-dark:  #1a1710;
  --text-mid:   #4a4540;
  --text-light: #8a8480;

  /* Layout */
  --nav-h:      72px;
  --max-width:  1200px;
  --section-px: 5%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

/* ── Shared section layout ── */
section {
  padding: 90px var(--section-px);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
}

/* ── Scroll reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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