 :root {
    /* ── Houston Area GIS Day brand colors (from Brand Guide) ── */
    --navy: #006699;          /* brand Dk Blue — primary headers, nav */
    --navy-mid: #0099CC;      /* brand Blue — gradient mid */
    --navy-light: #00CCFF;    /* brand Lt Blue — accents, hover */
    --red: #0099CC;           /* primary CTA accent (brand Blue) */
    --red-light: #00CCFF;     /* lighter accent (brand Lt Blue) */
    --red-dark: #006699;      /* deeper accent (brand Dk Blue) */
    --cyan: #04738D;          /* brand Cyan — secondary */
    --yellow: #E5B517;        /* brand Yellow — awards, highlights */
    --dark-red: #992E08;      /* brand Red — warnings/special use only */
    --teal: #0099CC;          /* brand Blue used for links/icons */
    --teal-light: #00CCFF;    /* brand Lt Blue */
    --dk-gray: #3F3E40;       /* brand Dk Gray — body text */
    --gray-mid: #999999;      /* brand Gray — secondary text */
    --gray-light: #CCCCCC;    /* brand Lt Gray — borders, dividers */
    --cream: #f4f7fa;         /* off-white page background */
    --text: #3F3E40;          /* brand Dk Gray for body text */
    --white: #ffffff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
  }

  /* ── SITE NAV ── */
  .site-nav {
    background: var(--navy);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    height: 60px;
  }
  .site-nav .logo-text {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--red-light); }

  /* ── PAGE HEADER ── */
  .page-header {
    background: linear-gradient(135deg, var(--navy) 0%, #243560 50%, #1b3a5a 100%);
    color: var(--white);
    padding: 3.5rem 2rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .page-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
  }
  .page-header h1 span { color: var(--red-light); }
  .page-header p {
    margin-top: 0.75rem;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    position: relative;
  }
  .header-rule {
    width: 60px; height: 3px;
    background: var(--red);
    margin: 1.25rem auto;
    position: relative;
  }

  /* ── YEAR SELECTOR — not sticky, sits directly under the header ── */
  .year-selector-section {
    background: var(--white);
    border-bottom: 2px solid var(--gray-light);
    padding: 2rem 2rem 1.75rem;
    text-align: center;
  }
  .year-selector-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 1.25rem;
  }
  .year-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
  }
  .year-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 0.3rem;
    transition: transform 0.18s;
  }
  .year-btn:hover { transform: translateY(-3px); }
  .year-icon {
    width: 62px; height: 62px;
    border-radius: 10px;
    background: var(--navy);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
  }
  .year-icon::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.2s;
  }
  .year-btn:hover .year-icon {
    background: var(--teal);
    border-color: var(--teal-light);
    box-shadow: 0 4px 16px rgba(192,39,45,0.3);
  }
  .year-btn:hover .year-icon::after { transform: scaleX(1); }
  .year-btn.current .year-icon { background: var(--yellow); color: #3f3E40; }
  .year-btn.current .year-icon::after { background: var(--yellow); }
  .year-label {
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--gray-mid);
  }
  .year-btn.current .year-label { color: var(--red); }

  /* ── ANCHOR NAV — sticky just below site-nav ── */
  .anchor-nav {
    background: var(--navy);
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 100;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  }
  .anchor-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0.8rem 1.2rem;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
  }
  .anchor-nav a:hover {
    color: var(--red-light);
    border-bottom-color: var(--red-light);
  }
  .anchor-nav a.active {
    color: var(--white);
    border-bottom-color: var(--red);
  }

  /* offset anchor scroll so sections clear both sticky bars (60px nav + ~38px anchor nav) */
  .content-section {
    scroll-margin-top: 100px;
  }

  /* ── YEAR BANNER ── */
  .year-banner {
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .year-badge {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    min-width: 110px;
    text-align: right;
    letter-spacing: -0.02em;
  }
  .year-banner-info h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.8);

    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .year-banner-info p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.15rem;
  }

  /* ── LAYOUT ── */
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  .content-section {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--gray-light);
  }
  .content-section:last-child { border-bottom: none; }

  .section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .section-icon {
    width: 42px; height: 42px;
    background: var(--teal);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .section-icon svg { width: 20px; height: 20px; fill: white; }
  .section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
  }
  .section-header .rule { flex: 1; height: 1px; background: var(--gray-light); }
  .section-intro {
    color: var(--gray-mid);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 640px;
  }

  /* ── PRESENTERS ── */
  .presenter-group-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .presenter-group-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-light);
  }
  .presenters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
  }
  .presenter-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .presenter-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .presenter-avatar { height: 4px; background: linear-gradient(90deg, var(--teal), var(--navy)); }
  .presenter-body { padding: 1.2rem; }
  .presenter-badge {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
  }
  .presenter-badge--keynote { background: var(--cyan); }
  .presenter-avatar--plenary { background: linear-gradient(90deg, var(--navy), var(--navy-mid)); }
  .presenter-avatar--keynote { background: linear-gradient(90deg, var(--cyan), var(--navy)); }
  .presenter-card--featured { border-color: var(--navy); }
  .presenter-card--featured .presenter-name { font-size: 1.15rem; }
  .presenter-name { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--navy); }
  .presenter-title { font-size: 0.84rem; color: var(--cyan); font-weight: 600; margin-top: 0.15rem; }
  .presenter-org { font-size: 0.8rem; color: var(--gray-mid); margin-top: 0.1rem; }
  .presenter-topic { font-size: 0.87rem; color: var(--text); margin-top: 0.75rem; line-height: 1.5; padding-top: 0.75rem; border-top: 1px solid var(--gray-light); }

  /* ── HIGHLIGHTS ── */
  .highlights-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .highlight-stat {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-top: 3px solid var(--navy);
    border-radius: 8px;
    padding: 1.25rem 1rem;
    text-align: center;
  }
  .highlight-stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
  }
  .highlight-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-top: 0.4rem;
  }
  .highlights-body {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    padding: 1.75rem 2rem;
  }
  .highlights-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }
  .highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.97rem;
    color: var(--text);
    line-height: 1.55;
  }
  .highlights-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--navy-mid);
    flex-shrink: 0;
    margin-top: 0.42em;
  }

  /* ── WORKSHOPS ── */
  .workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
  }
  .workshop-card {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--gray-light);
    border-top: 3px solid var(--navy);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
  }
  .workshop-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .workshop-photo {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
    display: block;
  }
  .workshop-photo-placeholder {
    width: 100%;
    aspect-ratio: 16/7;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.18);
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .workshop-header {
    background: var(--navy);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .workshop-time {
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.04em;
  }
  .workshop-provider {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--red);
    color: var(--white);
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
    white-space: nowrap;
  }
  .workshop-body { padding: 1.25rem; }
  .workshop-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 0.65rem;
  }
  .workshop-desc {
    font-size: 0.87rem;
    color: var(--gray-mid);
    line-height: 1.6;
    margin-bottom: 0.9rem;
  }
  .workshop-outcomes {
    list-style: none;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .workshop-outcomes li {
    font-size: 0.84rem;
    color: var(--text);
    padding-left: 1.1rem;
    position: relative;
  }
  .workshop-outcomes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 0.78rem;
  }
  .workshop-pricing {
    display: flex;
    gap: 0.75rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--gray-light);
    margin-top: auto;
  }
  .workshop-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.25rem 1.25rem;
    border-top: 1px solid var(--gray-light);
    margin-top: auto;
  }
  .workshop-logo {
    height: 36px;
    max-width: 110px;
    object-fit: contain;
    display: block;
  }
  .workshop-logo-placeholder {
    height: 36px;
    min-width: 90px;
    background: var(--cream);
    border: 1px dashed var(--gray-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-mid);
    padding: 0 0.75rem;
  }
  .workshop-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--cream);
    border-radius: 6px;
    padding: 0.5rem 0.9rem;
    flex: 1;
    text-align: center;
  }
  .price-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-mid);
  }
  .price-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
  }


  /* ── PASTE ZONE ── */
  .paste-zone {
    border: 2px dashed var(--gray-light);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    color: var(--gray-mid);
    background: var(--white);
  }
  .paste-zone-icon { font-size: 2rem; margin-bottom: 0.75rem; opacity: 0.5; }
  .paste-zone p { font-size: 0.92rem; }
  .paste-zone strong { color: var(--navy); }

  /* ── GALLERY ── */
  .gallery-albums {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
  }
  .gallery-album-card {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--gray-light);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .gallery-album-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
  .gallery-album-cover {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--navy);
    overflow: hidden;
  }
  .album-thumb-main {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
  }
  .gallery-album-card:hover .album-thumb-main { transform: scale(1.04); }
  .album-thumb-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  }
  .album-photo-strip {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    display: flex;
    height: 52px;
    gap: 2px;
    background: rgba(0,0,0,0.4);
  }
  .album-photo-strip img {
    flex: 1;
    object-fit: cover;
    opacity: 0.75;
    transition: opacity 0.2s;
  }
  .gallery-album-card:hover .album-photo-strip img { opacity: 1; }
  .album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27,42,74,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .gallery-album-card:hover .album-overlay { opacity: 1; }
  .album-flip-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--navy);
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .album-flip-btn:hover { background: var(--cream); transform: scale(1.04); }
  .gallery-album-info {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  .gallery-album-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    flex: 1;
  }
  .gallery-album-count {
    font-size: 0.78rem;
    color: var(--gray-mid);
  }
  .gallery-album-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    border: 1px solid var(--gray-light);
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
  }
  .gallery-album-link:hover { border-color: var(--navy); color: var(--red); }

  /* ── LIGHTBOX (shared by gallery flipper & award modal) ── */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,15,30,0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }
  .lightbox.open { display: flex; }
  .lightbox-inner {
    position: relative;
    max-width: min(90vw, 1000px);
    width: 100%;
    text-align: center;
  }
  .lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  .lightbox-caption {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    margin-top: 1rem;
    line-height: 1.5;
  }
  .lightbox-counter {
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    margin-top: 0.4rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.08em;
  }
  .lightbox-close {
    position: fixed;
    top: 1rem; right: 1.25rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s, transform 0.15s;
    z-index: 1001;
  }
  .lightbox-close:hover { color: var(--white); transform: scale(1.15); }
  .lightbox-prev, .lightbox-next {
    position: fixed;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 2rem;
    width: 48px; height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 1001;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
  }
  .lightbox-prev { left: 1rem; }
  .lightbox-next { right: 1rem; }
  .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
  /* ── AWARDS ── */
  .awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
  }
  .award-card {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--gray-light);
    padding: 1.4rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .award-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
  .award-medal {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), #f0c830);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(229,181,23,0.4);
  }
  .award-medal svg { width: 22px; height: 22px; fill: var(--dk-gray); }
  .award-category { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); }
  .award-name { font-family: 'Oswald', sans-serif; font-size: 1.05rem; color: var(--navy); font-weight: 600; margin-top: 0.2rem; }
  .award-org { font-size: 0.83rem; color: var(--gray-mid); margin-top: 0.1rem; }

  /* ── STUDENTS ── */
  .students-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .stat-card {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--gray-light);
    padding: 1.5rem 1.25rem;
    text-align: center;
  }
  .stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-top: 0.4rem;
  }
  .students-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
  .sub-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    border-bottom: 2px solid var(--gray-light);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }
  .school-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }
  .school-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: var(--text);
  }
  .school-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--navy);
    flex-shrink: 0;
  }
  .school-list li.award-winner .school-dot { background: var(--yellow); }
  .school-list li.award-winner { font-weight: 600; }
  .award-tag {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.1rem 0.45rem;
    border-radius: 4px;
    margin-left: auto;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .student-awards-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .student-award-item {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-light);
    border-left: 3px solid var(--navy-mid);
    padding: 0.9rem 1rem;
  }
  .student-award-category {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.2rem;
  }
  .student-award-name { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
  .student-award-school { font-size: 0.8rem; color: var(--gray-mid); margin-top: 0.1rem; }

  /* ── FOOTER ── */
  .site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 2rem;
    font-size: 0.85rem;
    margin-top: 4rem;
  }
  .site-footer a { color: var(--navy-light); text-decoration: none; }

  @media (max-width: 680px) {
    .students-columns { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .year-icon { width: 52px; height: 52px; font-size: 0.85rem; }
    .nav-links { display: none; }
    .year-badge { display: none; }
    .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
  }
