@font-face {
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("../fonts/noto-serif/noto-serif-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Noto Serif";
  font-style: italic;
  font-weight: 500 800;
  font-display: swap;
  src: url("../fonts/noto-serif/noto-serif-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Brand colors */
  --gc-blue: #00255e;
  --gc-blue-dark: #001a42;
  --gc-blue-deep: #001126;
  --gc-gold: #d4af37;
  --gc-gold-soft: #f4d35e;

  /* Backgrounds */
  --gc-bg: #fbf8f4;
  --gc-bg-soft: #f3f5f9;
  --gc-white: #ffffff;

  /* Text */
  --gc-text: var(--gc-blue);
  --gc-muted: #5f6f86;
  --gc-light-text: #ffffff;

  /* Borders and shadows */
  --gc-border: rgba(0, 37, 94, 0.12);
  --gc-border-light: rgba(255, 255, 255, 0.18);
  --gc-shadow-soft: 0 18px 45px rgba(0, 37, 94, 0.1);
  --gc-shadow-card: 0 14px 35px rgba(0, 37, 94, 0.08);

  /* Typography */
  --gc-font-heading: "Noto Serif", "Playfair Display", serif;
  --gc-font-body: "Nunito Sans", Arial, sans-serif;

  /* Layout */
  --gc-container: 1180px;
  --gc-radius-sm: 10px;
  --gc-radius-md: 16px;
  --gc-radius-lg: 24px;
  --gc-radius-xl: 32px;
}

/* Smooth anchor scrolling */
html {
  scroll-behavior: smooth;
}

/* Offset for anchor links, useful if you have a sticky header */
h2,
h3 {
  scroll-margin-top: 110px;
}
