:root {
  /* Colors */
  --maroon: #6B1D2A;
  --maroon-dark: #4E1520;
  --maroon-light: #8B3040;
  --navy: #1B2A4A;
  --navy-light: #2A3D66;
  --gold: #C9963B;
  --gold-light: #D4AB5C;
  --gold-pale: #F5E6C8;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --charcoal: #2C2C2C;
  --white: #FFFFFF;
  --text: #333333;
  --text-light: #666666;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: 80px;
  --container-max: 1200px;
  --container-pad: 24px;
  --card-pad: 36px 28px;
  --btn-pad: 14px 32px;
  --grid-gap: 24px;

  /* Radius */
  --radius: 10px;
  --radius-sm: 6px;

  /* Transitions */
  --transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
  :root {
    --section-pad: 50px;
  }
}
