/* Design tokens extracted from hd-website — keeps branding consistent. */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:wght@600;700&display=swap");

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

:root,
[data-theme="light"] {
  --bg:        #FAF8F5;
  --bg-alt:    #F0ECE6;
  --surface:   #FFFFFF;
  --text:      #1A1613;
  --text-mid:  #5C5550;
  --text-soft: #8A837C;
  --accent:    #C4622D;
  --accent-hover: #A84F1F;
  --accent-soft: rgba(196, 98, 45, 0.08);
  --border:    #E2DDD6;
  --border-strong: #C9C2B8;
  --card-shadow: 0 1px 3px rgba(26, 22, 19, 0.04), 0 4px 16px rgba(26, 22, 19, 0.04);
  --card-shadow-hover: 0 2px 8px rgba(26, 22, 19, 0.06), 0 8px 32px rgba(26, 22, 19, 0.06);
}

[data-theme="dark"] {
  --bg:        #141210;
  --bg-alt:    #1C1A17;
  --surface:   #201E1B;
  --text:      #EDE9E3;
  --text-mid:  #A9A29A;
  --text-soft: #716B64;
  --accent:    #E07A3E;
  --accent-hover: #F09050;
  --accent-soft: rgba(224, 122, 62, 0.1);
  --border:    #2E2B27;
  --border-strong: #3E3A35;
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.15);
  --card-shadow-hover: 0 2px 8px rgba(0, 0, 0, 0.25), 0 8px 32px rgba(0, 0, 0, 0.2);
}

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
