/* ── CSS Custom Properties (Single Source of Truth) ─────────────────────── */
:root {
  /* Colors — Exact match to brand bible */
  --purple:           #4A3070;
  --purple-mid:       #6B4D9E;
  --purple-light:     #8B6FC0;
  --purple-dark:      #362354;
  --purple-deep:      #1E1230;
  --purple-faint:     rgba(74,48,112,0.06);
  --purple-faint2:    rgba(74,48,112,0.10);

  --gold:             #C9A96E;
  --gold-light:       #D4BC8A;
  --gold-pale:        #F5F0E6;

  --dark-section:     #16102A;
  --hero-bg:          #1E1230;

  /* Text */
  --text-primary:     #1E1530;
  --text-secondary:   #4A4358;
  --text-muted:       #7A7390;
  --text-faint:       #A8A2B8;
  --text-on-dark:     #F5F2ED;
  --text-on-dark-sub: #C4B5D8;
  --text-on-dark-muted:#8B7AB0;

  /* Backgrounds */
  --bg:               #fafaf8;
  --bg-alt:           #F5F2ED;
  --bg-warm:          #FAF7F2;
  --bg-card:          #FFFFFF;

  /* Borders */
  --border:           rgba(74,48,112,0.12);
  --border-gold:      rgba(201,169,110,0.35);

  /* Radius */
  --radius-sm:        8px;
  --radius-md:        10px;
  --radius-lg:        16px;
  --radius-xl:        20px;

  /* Shadows */
  --shadow:           0 4px 20px rgba(74,48,112,0.10);
  --shadow-lg:        0 8px 40px rgba(74,48,112,0.16);

  /* Transitions */
  --transition:       0.22s cubic-bezier(0.4,0,0.2,1);

  /* Layout */
  --max-w:            1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

input, textarea, select, button {
  font-family: inherit;
}

/* ── Container ────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Typography Helpers ───────────────────────────────────────────────────── */
.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple);
  display: block;
  margin-bottom: 12px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

.wordmark {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
}

/* ── Button Styles (Shared) ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--bg-alt);
  color: var(--purple);
  border-color: var(--bg-alt);
}

.btn-primary:hover {
  background: #EBE7DE;
  border-color: #EBE7DE;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74,48,112,0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(245,242,237,0.25);
}

.btn-ghost:hover {
  background: rgba(245,242,237,0.08);
  border-color: rgba(245,242,237,0.45);
}

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

.btn-purple:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  font-size: 13px;
  padding: 10px 20px;
}

.btn-lg {
  font-size: 16px;
  padding: 16px 34px;
}
