/*
  Global theme — edit values here to restyle the whole site.
  Palette aligned with Stitch "Ethereal Union" / Material named colors.
*/
:root {
  --color-bg: #faf9f6;
  --color-bg-elevated: #f4f3f1;
  --color-surface: #ffffff;
  --color-surface-container: #efeeeb;
  --color-surface-high: #e9e8e5;
  --color-text: #1a1c1a;
  --color-text-muted: #504444;
  --color-primary: #7d562d;
  --color-on-primary: #ffffff;
  --color-primary-soft: #f9c492;
  --color-primary-fixed-dim: #f0bd8b;
  --color-accent: #8b4c50;
  --color-accent-soft: #ffbec0;
  --color-secondary: #645d55;
  --color-outline-variant: #d4c2c2;
  --color-border: rgba(212, 194, 194, 0.35);
  --color-error: #ba1a1a;

  --font-display: "Noto Serif", "Georgia", serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --text-display: clamp(2.5rem, 6vw, 3.5rem);
  --text-heading: clamp(1.75rem, 3vw, 2.25rem);
  --text-body: 1rem;
  --leading-body: 1.6;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-section: clamp(3rem, 8vw, 5.5rem);

  --radius-lg: 0;
  --shadow-soft: 0 20px 40px rgba(80, 68, 68, 0.06);
  --nav-blur: blur(12px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  background: var(--color-bg-elevated);
}
