:root {
  color-scheme: light;
  --surface: #ffffff;
  --surface-muted: #f8f9fa;   /* Google grey-50 */
  --surface-strong: #202124;  /* Google ink (near-black) */
  --surface-alt: #f1f3f4;     /* Google grey-100 */
  --accent: #D93025;          /* Google Red — the warm text/highlight accent (formerly orange) */
  --accent-dark: #B31412;     /* Google Red, deepened (hover) */
  --accent-soft: #FCE8E6;     /* Google Red tint */
  --text-primary: #202124;    /* Google ink */
  --text-muted: #5F6368;      /* Google grey */
  --border: #DADCE0;          /* Google hairline */
  --card-shadow: 0 16px 40px -24px rgba(60, 64, 67, 0.18);
}

@font-face {
  font-family: "Beausite Classic";
  src: url("../fonts/beausiteclassicweb-clear.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Beausite Classic";
  src: url("../fonts/beausiteclassicweb-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Beausite Classic";
  src: url("../fonts/beausiteclassicweb-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Beausite Classic", "Helvetica Neue", Arial, sans-serif;
  background: var(--surface);
  color: var(--text-primary);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
