:root {

  /* BRAND */
  --brand-dark: #111827;      /* charcoal */
  --brand-deep: #0b1120;      /* hero/footer deep */
  --brand-primary: #c8a96a;   /* soft gold */
  --brand-accent: #d4af37;    /* premium gold */

  /* TEXT */
  --text-dark: #1f2937;
  --text-light: #ffffff;
  --text-muted: #6b7280;

  /* BG */
  --bg-light: #f8fafc;
  --bg-soft: #f1f5f9;
  --white: #ffffff;

  /* SYSTEM */
  --border-light: #e5e7eb;
  --radius: 14px;
  --shadow-soft: 0 8px 20px rgba(0,0,0,0.08);
  --shadow-premium: 0 20px 60px rgba(0,0,0,0.18);
}

/* RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--brand-accent);
}

img {
  max-width: 100%;
  display: block;
}
