/* Shared theme: same palette, modern treatment */
:root {
  --bg: #312E2B;
  --surface: #f7f3ef;
  --surface-soft: #efe8e1;
  --tan: #d3bdb0;
  --tan-soft: rgba(211, 189, 176, 0.55);
  --plum: #69385c;
  --plum-deep: #4a2740;
  --mauve: #715b64;
  --olive: #899373;
  --ink: #3b3236;
  --ink-soft: #6d6058;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.25), 0 12px 32px -12px rgba(0, 0, 0, 0.45);
  --shadow-lift: 0 2px 4px rgba(0, 0, 0, 0.25), 0 20px 44px -16px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--plum);
  color: var(--tan);
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

a {
  color: var(--plum);
  text-decoration-color: var(--tan);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--plum-deep);
}
