/* =========================
   BASE (elegante + minimale)
========================= */

:root {
  --color-primary: #0f172a;
  --color-accent: #c4a47c;
  --color-light: #f8f7f5;
  --color-border: #e5e5e5;

  --text-main: #111;
  --text-soft: #666;

  --radius: 8px;
}

body {
  background: #fff;
  color: var(--text-main);
  line-height: 1.6;
}

section {
  position: relative;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}