:root {
  --primary: #c4a35a;
  --primary-dark: #a6853a;
  --secondary: #0e1520;
  --background: #f6f3ee;
  --surface: #ffffff;
  --text: #121820;
  --muted: #5c6570;
  --border: #e4ddd3;
  --success: #1f7a4d;
  --warning: #b36b00;
  --danger: #b42318;
  --navy: #0b1220;
  --navy-2: #151d2e;
  --cream: #fbf8f2;
  --shadow: 0 18px 50px rgba(11, 18, 32, 0.12);
  --radius: 16px;
  --header-h: 88px;
  --font: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font-family: inherit; }
