    @font-face {
      font-family: 'Khand';
      src: url('../fonts/Khand-Light.ttf') format('truetype');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Khand';
      src: url('../fonts/Khand-Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Khand';
      src: url('../fonts/Khand-Medium.ttf') format('truetype');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Khand';
      src: url('../fonts/Khand-SemiBold.ttf') format('truetype');
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Khand';
      src: url('../fonts/Khand-Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --red: #e30613;        /* Union primary red (site theme-color) */
      --red-dark: #b30410;
      --gold: #ffdd00;       /* subtle crest accent */
      --ink: #1a1a1a;
      --muted: #5c5c5c;
      --white: #ffffff;
      --border: #ececec;
    }

    * { box-sizing: border-box; }

    html, body { height: 100%; margin: 0; }

    body {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100svh;
      padding: 20px;
      background: var(--red);
      background-image: url("../images/background.png");
      background-size: cover;
      background-position: center;
      color: var(--ink);
      font-family: 'Khand', sans-serif;
      font-size: 20px;
      font-weight: 400;
      line-height: 1.6;
    }

    .card {
      width: min(100%, 540px);
      max-width: 540px;
      text-align: center;
      background: var(--white);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    }

    /* Logo slot */
    .brand {
      background: var(--red);
      padding: 36px 32px;
      text-align: center;
    }

    .logo-slot {
      width: 128px;
      height: 128px;
      margin: 0 auto 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.75);
    }

    .logo-slot svg {
      width: 100%;
      height: auto;
      display: block;
    }

    .wordmark {
      margin: 0 auto;
      color: var(--white);
      font-size: 2rem;
      font-weight: 700;
    }

    .body {
      padding: 52px 48px 56px;
    }

    .icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 28px;
      color: var(--red);
    }

    .icon svg {
      width: 100%;
      height: 100%;
    }

    h1 {
      margin: 0 0 16px;
      font-size: 3rem;
      font-weight: 700;
      text-transform: uppercase;
    }

    p {
      margin: 0 auto;
      max-width: 36ch;
      color: var(--muted);
      font-size: 1.25rem;
      font-weight: 400;
    }

    .contact {
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--muted);
    }

    .contact a {
      color: var(--red);
      font-weight: 600;
      text-decoration: none;
    }

    .contact a:hover,
    .contact a:focus-visible { text-decoration: underline; }

    @media (max-width: 600px) {
      body {
        padding: 12px;
        font-size: 18px;
      }

      .card {
        border-radius: 10px;
      }

      .brand {
        padding: 24px 20px;
      }

      .logo-slot {
        width: 104px;
        height: auto;
        margin-bottom: 10px;
      }

      .wordmark {
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1.2;
      }

      .body {
        padding: 34px 22px 36px;
      }

      .icon {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
      }

      h1 {
        margin-bottom: 12px;
        font-size: clamp(2.25rem, 12vw, 2.9rem);
        line-height: 1;
      }

      p {
        font-size: 1.1rem;
      }

      .contact {
        margin-top: 24px;
        padding-top: 20px;
        font-size: 1.05rem;
      }
    }

    @media (max-height: 760px) {
      .brand {
        padding-top: 20px;
        padding-bottom: 20px;
      }

      .body {
        padding-top: 26px;
        padding-bottom: 28px;
      }

      .icon {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
      }

      h1 {
        font-size: clamp(2rem, 10vw, 2.6rem);
        margin-bottom: 10px;
      }

      .contact {
        margin-top: 20px;
        padding-top: 16px;
      }
    }