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

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

:root {
  /* Color palette -- monochromatic warm charcoal */
  --bg: #FAFAF8;
  --bg-dark: #3B3024;
  --white: #FFFFFF;
  --text-primary: #3B3024;
  --text-secondary: #7A756D;
  --text-tertiary: #A09B93;
  --accent: #3B3024;
  --accent-hover: #2A2118;
  --accent-light: rgba(59, 48, 36, 0.04);
  --accent-border: rgba(59, 48, 36, 0.12);
  --border: #E8E6E1;
  --border-light: #F0EFEB;
  --card-bg: #FFFFFF;
  --card-hover: #F5F4F0;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --ls-heading: -0.02em;
  --ls-body: -0.005em;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;

  /* Layout */
  --max-w: 1140px;
  --radius: 2px;
  --radius-sm: 2px;
  --radius-xs: 2px;
  --radius-full: 0px;
}

html {
  font-family: var(--font-body);
  letter-spacing: var(--ls-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

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