:root {
  /* Colors */
  --color-bg: #F7F1E6;
  --color-surface: #FBF6EC;
  --color-surface-alt: #EDE4D1;
  --color-border: #D6C9AE;
  --color-gold: #B08A4A;
  --color-gold-hover: #8F6E34;
  --color-gold-line: #C9A664;
  --color-olive: #7A7D55;
  --color-oak: #4A3A2E;
  --color-espresso: #2B1F17;
  --color-ink: #1A130D;
  --color-text-primary: #2B1F17;
  --color-text-secondary: #5C4E40;
  --color-text-muted: #8A7A68;
  --color-text-on-dark: #EDE4D1;

  /* Typography */
  --font-body: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-display: "Merriweather", Georgia, "Times New Roman", serif;

  /* Spacing */
  --space-xs: 0.5rem;   /* 8  */
  --space-sm: 1rem;     /* 16 */
  --space-md: 1.5rem;   /* 24 */
  --space-lg: 2rem;     /* 32 */
  --space-xl: 3rem;     /* 48 */
  --space-2xl: 4rem;    /* 64 */
  --space-3xl: 6rem;    /* 96 */
  --space-4xl: 8rem;    /* 128 */
  --space-section: 6.5rem; /* 104 desktop section padding */

  /* Layout */
  --container-max: 1440px;
  --container-inner: 1280px;
  --radius-sharp: 2px;
  --shadow-soft: 0 1px 2px rgba(26, 19, 13, 0.06), 0 8px 24px rgba(26, 19, 13, 0.08);
  --nav-height: 64px;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 220ms ease;
}

@media (min-width: 900px) {
  :root {
    --nav-height: 84px;
  }
}
