@font-face {
  font-display: swap;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/jost-400.woff2") format("woff2"),
    url("../fonts/jost-400.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/jost-500.woff2") format("woff2"),
    url("../fonts/jost-500.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Jost";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/jost-600.woff2") format("woff2"),
    url("../fonts/jost-600.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Jost";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/jost-700.woff2") format("woff2"),
    url("../fonts/jost-700.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Jost";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/jost-800.woff2") format("woff2"),
    url("../fonts/jost-800.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Judson";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/judson-400.woff2") format("woff2"),
    url("../fonts/judson-400.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Judson";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/judson-700.woff2") format("woff2"),
    url("../fonts/judson-700.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Prata";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/prata-400.woff2") format("woff2"),
    url("../fonts/prata-400.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Eugellyca";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/eugellyca.woff2") format("woff2"),
    url("../fonts/eugellyca.ttf") format("truetype");
}

:root {
  --font-display: "Eugellyca", cursive;
  --font-heading: "Prata", Georgia, serif;
  --font-body: "Judson", Georgia, serif;
  --font-ui: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --color-brand-sand: #dab9a6;
  --color-brand-taupe: #c6a897;
  --color-brand-bronze: #a87e65;
  --color-brand-muted: #ae9384;
  --color-blush-surface: #e9d4c8;

  --color-ink: #000000;
  --color-charcoal: #54595f;
  --color-muted: #7a7a7a;
  --color-body: #4f4f4f;
  --color-white: #ffffff;
  --color-divider: #b3b3b3;

  --color-success: #237a4b;
  --color-warning: #8a5b00;
  --color-danger: #b42318;
  --color-focus: #637bb3;

  --surface-page: #fbf8f6;
  --surface-panel: #ffffff;
  --surface-accent: #f4e8e1;

  --radius-xs: 4px;
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 10px;

  --shadow-panel: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 0 10px rgba(0, 0, 0, 0.12);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
}

body {
  background: var(--surface-page);
  color: var(--color-body);
  font-family: var(--font-body);
  letter-spacing: 0;
}

.ui-heading {
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0;
}

.ui-label,
.ui-button,
.ui-nav {
  font-family: var(--font-ui);
  letter-spacing: 0;
}

.ui-panel {
  background: var(--surface-panel);
  border: 1px solid rgba(174, 147, 132, 0.22);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-panel);
}

.ui-button-primary {
  align-items: center;
  background: var(--color-brand-sand);
  border: 0;
  border-radius: var(--radius-md);
  color: var(--color-ink);
  display: inline-flex;
  font-family: var(--font-ui);
  font-weight: 500;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
}

.ui-button-primary:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}
