    :root {
        --pad: min(4vw, 6vh);
        --accent: #650600;
        --text: #111;
        --muted: #666;
        --bg: #f4f4f4;
    }

    html, body {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        background: var(--bg);
        color: var(--text);
        font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1rem; /* Slightly larger than default (~17.6px if root is 16px) */
  	font-weight: 500;  /* Slightly bolder than normal (default is 400) */
  	line-height: 1.6;  /* Improve vertical spacing */
    }

a {
  color: var(--accent); /* Same as the current h2 color */
  text-decoration: underline;
  font-weight: 600;
}

/* Optional: change link hover color if needed */
a:hover {
  color: #800000;
}



    /* Header */
    .header {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: var(--pad);
        box-sizing: border-box;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 2vw;
    }

    .logo {
        width: clamp(120px, 18vw, 28vw);
        height: auto;
        display: block;
    }

    .location {
        margin-left: auto;
        text-align: right;
        font-weight: 700;
        color: var(--accent);
        font-size: clamp(16px, 2.5vw, 3vw);
        line-height: 1.2;
        padding-left: 2vw;
    }

    .visually-hidden {
        position: absolute !important;
        height: 1px; width: 1px;
        overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
        white-space: nowrap;
    }

    /* Hero image */
    .hero {
        width: 100%;
    }
    .hero img {
        width: 100vw;        /* full-bleed on mobile */
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 2vw;
    }

    /* Members */
    .members {
        width: 100%;
        box-sizing: border-box;
        padding: var(--pad);
    }
    .members h2 {
        margin: 0 0 2vw 0;
        font-size: clamp(18px, 2.4vw, 3vw);
        color: var(--accent);
        text-align: center;
    }
    .members ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.2vw 2vw;
        max-width: 90vw;
        margin-inline: auto;
        text-align: center;
    }
    @media (min-width: 700px) {
        .members ul { grid-template-columns: repeat(2, 1fr); text-align: left; }
    }
    @media (min-width: 1100px) {
        .members ul { grid-template-columns: repeat(3, 1fr); }
    }

    .members a {
        text-decoration: none;
        color: var(--accent);
        border-bottom: 0.2vw solid transparent;
	font-weight: 600;
    }
    .members a:hover,
    .members a:focus {
        border-bottom-color: currentColor;
        outline: none;
    }

    .role {
        opacity: 0.85;
    }





    /* Footer */
    .footer {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        padding: calc(var(--pad) * 0.5) 0;
        border-top: 0.3vw solid #ccc;
        color: var(--muted);
        font-size: clamp(12px, 1.6vw, 14px);
        margin-top: 4vw;
    }


