/* css/reset.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --bg:      #0a0805;
  --cream:   #f4ead5;
  --gold:    #c9a961;
  --gold-lt: #e8d098;
  --surface: rgba(20,15,10,0.8);
  --surface-solid: #14100a;
  --border:  #2a2218;
  --muted:   #8a7a65;

  --nav-h: 64px;
  --section-pad: clamp(64px, 10vw, 120px);
  --container: min(1200px, 90vw);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
