    :root {
      --xerox-red: #e31837;
      --xerox-dark: #0a0a0a;
      --xerox-charcoal: #1a1a1a;
      --xerox-mid: #2d2d2d;
      --xerox-grey: #6b6b6b;
      --xerox-light: #f5f0eb;
      --xerox-cream: #faf7f4;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--xerox-cream);
      color: var(--xerox-dark);
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--xerox-cream); }
    ::-webkit-scrollbar-thumb { background: var(--xerox-red); border-radius: 2px; }

    /* ─── NAVBAR ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1.2rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(250, 247, 244, 0.85);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(201,168,76,0.2);
      transition: all 0.4s ease;
    }
    nav.scrolled { padding: 0.8rem 4rem; background: rgba(250,247,244,0.97); }
    .nav-logo {
      display: flex; align-items: center; gap: 0.75rem;
      text-decoration: none;
    }
    .nav-logo-mark {
      width: 38px; height: 38px;
      background: var(--xerox-red);
      display: flex; align-items: center; justify-content: center;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    }
    .nav-logo-mark span {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700; font-size: 1.1rem; color: white;
    }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
    .nav-logo-text strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem; font-weight: 700; color: var(--xerox-dark); letter-spacing: 0.04em;
    }
    .nav-logo-text small {
      font-family: 'Space Mono', monospace;
      font-size: 0.55rem; color: var(--xerox-red); letter-spacing: 0.15em; text-transform: uppercase;
    }
    .nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
    .nav-links a {
      font-size: 0.85rem; font-weight: 500; color: var(--xerox-charcoal);
      text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
      position: relative; transition: color 0.3s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -3px; left: 0;
      width: 0; height: 1.5px; background: var(--xerox-red); transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--xerox-red); }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a.active { color: var(--xerox-red); }
    .nav-links a.active::after { width: 100%; }
    .nav-cta {
      background: var(--xerox-red) !important; color: white !important;
      padding: 0.55rem 1.4rem; border-radius: 2px;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: #b5112a !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--xerox-dark); }
    .mobile-nav {
      display: none; position: fixed; inset: 0;
      background: white; z-index: 999;
      flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600;
      color: var(--xerox-dark); text-decoration: none;
    }
    .mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

    /* ─── HERO ─── */
    .events-hero {
      min-height: 70vh;
      background: var(--xerox-dark);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding: 8rem 5rem 5rem;
      position: relative;
      overflow: hidden;
    }
    .eh-bg-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .eh-bg-glow {
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(227,24,55,0.12) 0%, transparent 70%);
      top: -100px; left: 50%;
      transform: translateX(-50%);
    }
    .eh-content {
      position: relative; z-index: 2;
      text-align: center;
      max-width: 800px;
    }
    .eh-badge {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.25);
      padding: 0.4rem 1.2rem; border-radius: 2px;
      margin-bottom: 1.8rem;
      animation: fadeUp 0.8s ease 0.2s both;
    }
    .eh-badge span {
      font-family: 'Space Mono', monospace; font-size: 0.65rem;
      letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
    }
    .eh-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 6vw, 6rem);
      font-weight: 300; line-height: 1.0; color: white;
      margin-bottom: 1.2rem;
      animation: fadeUp 0.8s ease 0.4s both;
    }
    .eh-title em { font-style: italic; color: var(--xerox-red); }
    .eh-title strong { font-weight: 700; }
    .eh-sub {
      font-size: 1rem; color: rgba(255,255,255,0.45);
      line-height: 1.7; max-width: 540px; margin: 0 auto 2.5rem;
      animation: fadeUp 0.8s ease 0.6s both;
    }
    .eh-tabs {
      display: flex; align-items: center; justify-content: center;
      gap: 0.5rem;
      animation: fadeUp 0.8s ease 0.8s both;
    }
    .eh-tab {
      padding: 0.65rem 1.6rem;
      font-family: 'DM Sans', sans-serif; font-size: 0.8rem;
      font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
      border: 1px solid rgba(255,255,255,0.15);
      background: transparent; color: rgba(255,255,255,0.5);
      cursor: pointer; border-radius: 2px; transition: all 0.3s;
    }
    .eh-tab:hover { border-color: rgba(255,255,255,0.4); color: white; }
    .eh-tab.active { background: var(--xerox-red); border-color: var(--xerox-red); color: white; }

    /* ─── UPCOMING EVENTS ─── */
    .upcoming-section {
      padding: 6rem 5rem;
      background: var(--xerox-cream);
    }
    .section-label {
      font-family: 'Space Mono', monospace; font-size: 0.65rem;
      letter-spacing: 0.2em; text-transform: uppercase; color: var(--xerox-red);
      margin-bottom: 0.8rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300;
      line-height: 1.1; color: var(--xerox-dark);
    }
    .section-title strong { font-weight: 700; }
    .section-title em { font-style: italic; color: var(--xerox-red); }
    .upcoming-header { margin-bottom: 3.5rem; }

    .upcoming-featured {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2px; background: rgba(0,0,0,0.07);
      margin-bottom: 2px;
    }
    .upcoming-card {
      background: var(--xerox-cream);
      padding: 3rem; position: relative; overflow: hidden;
      transition: background 0.3s;
    }
    .upcoming-card:hover { background: white; }
    .upcoming-card.featured {
      background: var(--xerox-dark);
      grid-column: span 2;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; align-items: center;
      padding: 4rem 5rem;
    }
    .uc-label {
      display: inline-flex; align-items: center; gap: 0.5rem;
      margin-bottom: 1.2rem;
    }
    .uc-label-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--xerox-red); animation: pulse 2s infinite;
    }
    .uc-label-text {
      font-family: 'Space Mono', monospace; font-size: 0.6rem;
      letter-spacing: 0.15em; text-transform: uppercase; color: var(--xerox-red);
    }
    .uc-label.gold .uc-label-dot { background: var(--gold); animation: none; }
    .uc-label.gold .uc-label-text { color: var(--gold); }

    .uc-date {
      font-family: 'Space Mono', monospace; font-size: 0.7rem;
      color: var(--xerox-grey); letter-spacing: 0.1em; margin-bottom: 0.8rem;
    }
    .upcoming-card.featured .uc-date { color: rgba(255,255,255,0.4); }
    .uc-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem; font-weight: 600; color: var(--xerox-dark);
      line-height: 1.2; margin-bottom: 0.8rem;
    }
    .upcoming-card.featured .uc-title { font-size: 2.6rem; color: white; font-weight: 300; }
    .upcoming-card.featured .uc-title strong { font-weight: 700; }
    .uc-desc {
      font-size: 0.85rem; color: var(--xerox-grey);
      line-height: 1.65; margin-bottom: 1.5rem;
    }
    .upcoming-card.featured .uc-desc { color: rgba(255,255,255,0.45); font-size: 0.9rem; }
    .uc-meta {
      display: flex; align-items: center; gap: 1.5rem;
      flex-wrap: wrap; margin-bottom: 1.5rem;
    }
    .uc-meta-item {
      display: flex; align-items: center; gap: 0.4rem;
      font-size: 0.78rem; color: var(--xerox-grey);
    }
    .upcoming-card.featured .uc-meta-item { color: rgba(255,255,255,0.45); }
    .uc-meta-item svg { flex-shrink: 0; }
    .uc-cta {
      display: inline-flex; align-items: center; gap: 0.6rem;
      font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
      text-transform: uppercase; text-decoration: none;
      color: var(--xerox-red); transition: gap 0.3s;
    }
    .uc-cta:hover { gap: 1rem; }
    .upcoming-card.featured .uc-cta {
      background: var(--xerox-red); color: white;
      padding: 0.8rem 2rem; border-radius: 1px;
      clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
      transition: background 0.3s;
    }
    .upcoming-card.featured .uc-cta:hover { background: #b5112a; gap: 0.6rem; }
    .uc-countdown {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 4px; padding: 2rem;
    }
    .uc-countdown-title {
      font-family: 'Space Mono', monospace; font-size: 0.6rem;
      letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .countdown-display {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
    }
    .cd-unit { text-align: center; }
    .cd-num {
      font-family: 'Cormorant Garamond', serif; font-size: 2.5rem;
      font-weight: 700; color: white; line-height: 1; display: block;
    }
    .cd-label {
      font-family: 'Space Mono', monospace; font-size: 0.55rem;
      letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3);
      margin-top: 0.3rem;
    }
    .cd-sep {
      font-family: 'Cormorant Garamond', serif; font-size: 2.5rem;
      color: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center;
    }
    .uc-register-note {
      font-size: 0.75rem; color: rgba(255,255,255,0.3);
      margin-top: 1rem;
    }

    .upcoming-secondary {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px; background: rgba(0,0,0,0.07);
    }

    /* ─── PAST EVENTS ─── */
    .past-section {
      padding: 6rem 5rem;
      background: var(--xerox-light);
    }
    .past-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 3rem;
    }
    .past-filter {
      display: flex; gap: 0.5rem;
    }
    .filter-btn {
      padding: 0.45rem 1.1rem;
      font-family: 'Space Mono', monospace; font-size: 0.6rem;
      letter-spacing: 0.1em; text-transform: uppercase;
      border: 1px solid rgba(0,0,0,0.15); background: transparent;
      color: var(--xerox-grey); cursor: pointer; border-radius: 2px; transition: all 0.3s;
    }
    .filter-btn:hover { border-color: var(--xerox-red); color: var(--xerox-red); }
    .filter-btn.active { background: var(--xerox-red); border-color: var(--xerox-red); color: white; }

    .past-events-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .past-card {
      background: white; border-radius: 2px;
      overflow: hidden; cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .past-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
    .pc-image {
      height: 220px; position: relative;
      overflow: hidden; background: var(--xerox-dark);
    }
    .pc-image-bg {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 4rem;
      transition: transform 0.5s ease;
    }
    .past-card:hover .pc-image-bg { transform: scale(1.08); }
    .pc-image-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    }
    .pc-image-tags {
      position: absolute; top: 12px; left: 12px;
      display: flex; gap: 6px;
    }
    .pc-tag {
      font-family: 'Space Mono', monospace; font-size: 0.55rem;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.25rem 0.6rem; border-radius: 1px;
    }
    .pc-tag.red { background: var(--xerox-red); color: white; }
    .pc-tag.gold { background: var(--gold); color: var(--xerox-dark); }
    .pc-tag.dark { background: rgba(0,0,0,0.6); color: white; }
    .pc-image-year {
      position: absolute; bottom: 12px; right: 12px;
      font-family: 'Cormorant Garamond', serif; font-size: 3rem;
      font-weight: 700; color: rgba(255,255,255,0.12); line-height: 1;
    }
    .pc-body { padding: 1.5rem; }
    .pc-event-date {
      font-family: 'Space Mono', monospace; font-size: 0.62rem;
      color: var(--xerox-grey); letter-spacing: 0.1em; margin-bottom: 0.5rem;
    }
    .pc-event-name {
      font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
      font-weight: 600; color: var(--xerox-dark); margin-bottom: 0.5rem; line-height: 1.2;
    }
    .pc-event-desc {
      font-size: 0.82rem; color: var(--xerox-grey); line-height: 1.6; margin-bottom: 1rem;
    }
    .pc-stats {
      display: flex; gap: 1.5rem;
      padding-top: 0.8rem; border-top: 1px solid rgba(0,0,0,0.06);
    }
    .pc-stat-item { }
    .pc-stat-num {
      font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
      font-weight: 700; color: var(--xerox-red); line-height: 1;
    }
    .pc-stat-label {
      font-family: 'Space Mono', monospace; font-size: 0.55rem;
      letter-spacing: 0.08em; text-transform: uppercase; color: var(--xerox-grey);
      margin-top: 0.2rem;
    }

    /* ─── GALLERY ─── */
    .gallery-section {
      padding: 6rem 5rem;
      background: var(--xerox-cream);
    }
    .gallery-header { margin-bottom: 3rem; }
    .gallery-filter {
      display: flex; gap: 0.5rem; margin-top: 1.5rem;
    }

    .gallery-masonry {
      columns: 4; column-gap: 1rem;
    }
    .gallery-item {
      break-inside: avoid; margin-bottom: 1rem;
      position: relative; overflow: hidden; border-radius: 2px;
      cursor: pointer;
    }
    .gallery-item:hover .gi-overlay { opacity: 1; }
    .gallery-item:hover .gi-bg { transform: scale(1.05); }
    .gi-bg {
      width: 100%; display: block;
      transition: transform 0.5s ease;
    }
    .gi-placeholder {
      background: var(--xerox-dark);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .gi-placeholder-inner {
      display: flex; flex-direction: column; align-items: center;
      justify-content: center; gap: 0.5rem;
      padding: 2rem;
    }
    .gi-emoji { font-size: 2rem; opacity: 0.5; }
    .gi-caption-preview {
      font-family: 'Space Mono', monospace; font-size: 0.55rem;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(255,255,255,0.3); text-align: center;
    }
    .gi-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
      opacity: 0; transition: opacity 0.3s;
      display: flex; flex-direction: column;
      justify-content: flex-end; padding: 1rem;
    }
    .gi-event-name {
      font-family: 'Cormorant Garamond', serif; font-size: 0.95rem;
      font-weight: 600; color: white; line-height: 1.2;
    }
    .gi-event-date {
      font-family: 'Space Mono', monospace; font-size: 0.55rem;
      color: rgba(255,255,255,0.5); letter-spacing: 0.1em; margin-top: 0.2rem;
    }

    /* ─── LIGHTBOX ─── */
    .lightbox {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,0.95); z-index: 2000;
      align-items: center; justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lb-content {
      max-width: 700px; width: 90%; text-align: center;
      animation: scaleIn 0.3s ease;
    }
    .lb-placeholder {
      width: 100%; height: 400px;
      background: var(--xerox-charcoal);
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
      border-radius: 4px;
    }
    .lb-emoji { font-size: 5rem; }
    .lb-name {
      font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
      font-weight: 600; color: white;
    }
    .lb-date { font-family: 'Space Mono', monospace; font-size: 0.65rem; color: var(--gold); letter-spacing: 0.1em; }
    .lb-close {
      position: absolute; top: 2rem; right: 2rem;
      background: none; border: none; color: white;
      font-size: 1.5rem; cursor: pointer; opacity: 0.6; transition: opacity 0.3s;
    }
    .lb-close:hover { opacity: 1; }
    .lb-nav {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 1.5rem;
    }
    .lb-nav-btn {
      background: none; border: 1px solid rgba(255,255,255,0.2);
      color: white; font-size: 1.2rem; width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; border-radius: 50%; transition: all 0.3s;
    }
    .lb-nav-btn:hover { border-color: var(--xerox-red); color: var(--xerox-red); }
    .lb-counter {
      font-family: 'Space Mono', monospace; font-size: 0.65rem;
      color: rgba(255,255,255,0.4); letter-spacing: 0.1em;
    }

    /* ─── TIMELINE ─── */
    .timeline-section {
      padding: 6rem 5rem;
      background: var(--xerox-dark);
    }
    .timeline-section .section-label { color: var(--gold); }
    .timeline-section .section-title { color: white; }
    .timeline-header { margin-bottom: 4rem; }
    .timeline {
      position: relative; max-width: 860px; margin: 0 auto;
    }
    .timeline::before {
      content: ''; position: absolute;
      left: 50%; top: 0; bottom: 0; width: 1px;
      background: linear-gradient(180deg, transparent, rgba(201,168,76,0.3) 10%, rgba(201,168,76,0.3) 90%, transparent);
      transform: translateX(-50%);
    }
    .tl-item {
      display: grid; grid-template-columns: 1fr 40px 1fr;
      gap: 1.5rem; margin-bottom: 3rem; align-items: start;
    }
    .tl-item:nth-child(even) .tl-left { order: 3; text-align: left; }
    .tl-item:nth-child(even) .tl-right { order: 1; text-align: right; }
    .tl-item:nth-child(odd) .tl-left { text-align: right; }
    .tl-left, .tl-right { padding-top: 0.3rem; }
    .tl-year {
      font-family: 'Cormorant Garamond', serif; font-size: 0.85rem;
      font-weight: 700; color: var(--gold); letter-spacing: 0.05em;
    }
    .tl-event-name {
      font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
      font-weight: 600; color: white; margin: 0.2rem 0;
    }
    .tl-event-detail {
      font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.55;
    }
    .tl-dot {
      width: 40px; height: 40px;
      background: var(--xerox-dark); border: 2px solid var(--xerox-red);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 1rem; flex-shrink: 0; z-index: 1; position: relative;
    }
    .tl-dot.gold { border-color: var(--gold); }

    /* ─── REGISTER CTA ─── */
    .register-section {
      padding: 6rem 5rem;
      background: var(--xerox-red);
      text-align: center;
      position: relative; overflow: hidden;
    }
    .register-section::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        45deg, transparent, transparent 40px,
        rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 41px
      );
    }
    .rs-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
    .rs-label {
      font-family: 'Space Mono', monospace; font-size: 0.65rem;
      letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6);
      margin-bottom: 1rem;
    }
    .rs-title {
      font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.8rem);
      font-weight: 300; color: white; line-height: 1.1; margin-bottom: 1rem;
    }
    .rs-title strong { font-weight: 700; }
    .rs-sub {
      font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 2.5rem;
    }
    .rs-actions { display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
    .btn-white {
      background: white; color: var(--xerox-red);
      padding: 0.9rem 2.2rem; font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em;
      text-transform: uppercase; text-decoration: none; border: none; cursor: pointer;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
    .btn-ghost-white {
      color: white; font-size: 0.85rem; font-weight: 500;
      letter-spacing: 0.04em; text-decoration: none;
      display: flex; align-items: center; gap: 0.5rem; transition: gap 0.3s;
    }
    .btn-ghost-white:hover { gap: 0.9rem; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--xerox-dark); padding: 5rem 5rem 2rem;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4rem; margin-bottom: 4rem;
    }
    .footer-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; margin-bottom: 1.2rem; }
    .footer-logo-mark {
      width: 36px; height: 36px; background: var(--xerox-red);
      display: flex; align-items: center; justify-content: center;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    }
    .footer-logo-mark span { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1rem; color: white; }
    .footer-logo-text strong { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: white; display: block; }
    .footer-logo-text small { font-family: 'Space Mono', monospace; font-size: 0.5rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }
    .footer-desc { font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; }
    .footer-partner-badge { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.2rem; padding: 0.4rem 0.8rem; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); border-radius: 2px; }
    .fpb-text { font-family: 'Space Mono', monospace; font-size: 0.55rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
    .fpb-logo { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; color: white; }
    .fpb-logo span { color: var(--xerox-red); }
    .footer-col-title { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.7rem; }
    .footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
    .footer-links a:hover { color: white; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07); }
    .footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
    .footer-social { display: flex; gap: 1rem; }
    .social-btn { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.75rem; transition: all 0.3s; }
    .social-btn:hover { border-color: var(--xerox-red); color: var(--xerox-red); }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.8); }
    }
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      nav { padding: 1rem 2rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .events-hero { padding: 7rem 2rem 4rem; }
      .upcoming-section, .past-section, .gallery-section, .timeline-section, .register-section { padding: 5rem 2rem; }
      .upcoming-featured { grid-template-columns: 1fr; }
      .upcoming-card.featured { grid-column: 1; grid-template-columns: 1fr; padding: 3rem 2rem; }
      .upcoming-secondary { grid-template-columns: 1fr 1fr; }
      .past-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
      .past-events-grid { grid-template-columns: 1fr 1fr; }
      .gallery-masonry { columns: 2; }
      .timeline::before { left: 20px; }
      .tl-item { grid-template-columns: 20px 1fr; gap: 1rem; }
      .tl-item:nth-child(even) .tl-left,
      .tl-item:nth-child(odd) .tl-left { display: none; }
      .tl-item:nth-child(even) .tl-right,
      .tl-item:nth-child(odd) .tl-right { order: 2; text-align: left; }
      .tl-dot { width: 30px; height: 30px; font-size: 0.8rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    @media (max-width: 640px) {
      .eh-title { font-size: 2.8rem; }
      .upcoming-secondary { grid-template-columns: 1fr; }
      .past-events-grid { grid-template-columns: 1fr; }
      .gallery-masonry { columns: 1; }
      .footer-grid { grid-template-columns: 1fr; }
      .rs-actions { flex-direction: column; }
      .countdown-display { grid-template-columns: repeat(2, 1fr); }
    }