
  :root {
    --cream: #f5f0e8;
    --deep: #0d0a06;
    --gold: #c9932a;
    --gold-light: #e8b84b;
    --rust: #8b3a1a;
    --sage: #4a6741;
    --warm-white: #faf7f2;
    --muted: #6b6055;
    --border: rgba(201,147,42,0.25);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--deep);
    color: var(--cream);
    overflow-x: hidden;
    cursor: default;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
    background: linear-gradient(to bottom, rgba(13,10,6,0.95), transparent);
    backdrop-filter: blur(4px);
    transition: background 0.4s;
  }
  nav.scrolled { background: rgba(13,10,6,0.97); }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Cormorant Garamond', serif;
  }
  .nav-logo-text { display: flex; flex-direction: column; justify-content: center; }
  .nav-logo .title { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.12em; color: var(--gold); }
  .nav-logo .subtitle { font-size: 0.62rem; letter-spacing: 0.25em; color: var(--cream); opacity: 0.6; text-transform: uppercase; }

  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--cream); opacity: 0.75; text-decoration: none;
    transition: opacity 0.3s, color 0.3s;
  }
  .nav-links a:hover { opacity: 1; color: var(--gold-light); }

  .nav-cta:hover { background: var(--gold); color: var(--deep); }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .rti-logo-nav {
    height: 40px;
    width: auto;
    object-fit: contain;
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
  }

  .hero-slider {
    position: absolute; inset: 0; z-index: 0;
  }
  .hero-slide {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 1.5s ease-in-out;
  }
  .hero-slide.active { opacity: 0.4; }

  .hero-bg {
    position: absolute; inset: 0; z-index: 1;
    background: 
      radial-gradient(ellipse 80% 60% at 20% 50%, rgba(139,58,26,0.28) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 80% 80%, rgba(74,103,65,0.22) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 60% 20%, rgba(201,147,42,0.18) 0%, transparent 55%);
  }

  .hero-grain {
    position: absolute; inset: 0; z-index: 1;
    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.035'/%3E%3C/svg%3E");
    opacity: 0.5; pointer-events: none;
  }

  .hero-lines {
    position: absolute; inset: 0; pointer-events: none; z-index: 1;
  }
  .hero-lines::before {
    content: '';
    position: absolute; top: 0; left: 50%; width: 1px; height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
    opacity: 0.07;
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: 0 80px;
    max-width: 900px;
    animation: heroIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes heroIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 28px;
    display: flex; align-items: center; gap: 16px;
  }
  .hero-eyebrow::before {
    content: ''; width: 40px; height: 1px; background: var(--gold);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 300; line-height: 1.05;
    color: var(--cream);
    margin-bottom: 28px;
  }
  .hero-title em { color: var(--gold-light); font-style: italic; }

  .hero-body {
    font-size: 1.05rem; line-height: 1.8;
    color: var(--cream); opacity: 0.72;
    max-width: 540px; margin-bottom: 48px;
    font-weight: 300;
  }

  .hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }

  .btn-primary {
    display: inline-block;
    background: var(--gold); color: var(--deep);
    padding: 14px 36px; font-size: 0.72rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    text-decoration: none; font-weight: 600;
    transition: all 0.3s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-ghost {
    display: inline-block;
    border: 1px solid rgba(245,240,232,0.3); color: var(--cream);
    padding: 14px 36px; font-size: 0.72rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  .hero-scroll {
    position: absolute; bottom: 40px; left: 80px;
    display: flex; align-items: center; gap: 12px;
    font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--cream); opacity: 0.4;
    animation: pulse 2.5s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{opacity:0.4} 50%{opacity:0.7} }
  .hero-scroll::before {
    content: ''; width: 1px; height: 50px;
    background: linear-gradient(to bottom, transparent, var(--cream));
  }

  .hero-stat-strip {
    position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 0;
    border-left: 1px solid var(--border);
  }
  .stat-item {
    padding: 30px 40px;
    border-bottom: 1px solid var(--border);
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem; font-weight: 300; color: var(--gold-light);
    line-height: 1;
  }
  .stat-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.5; margin-top: 4px; }

  /* ── SECTION BASE ── */
  section { padding: 100px 80px; }
  .section-label {
    font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300; line-height: 1.1;
    margin-bottom: 24px;
  }

  /* ── IMPACT BANNER ── */
  #impact {
    padding: 60px 80px;
    background: linear-gradient(135deg, rgba(139,58,26,0.15), rgba(201,147,42,0.08));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .impact-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .impact-item {
    padding: 30px 40px;
    border-right: 1px solid var(--border);
  }
  .impact-item:last-child { border-right: none; }
  .impact-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300; color: var(--gold-light);
    line-height: 1;
  }
  .impact-text { font-size: 0.78rem; line-height: 1.6; opacity: 0.65; margin-top: 8px; }

  /* Hide broken images */
  img.broken-image { display: none !important; }
  img:not([src]) { visibility: hidden; }

  /* ── MISSION ── */
  #mission {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: left;
  }
  .mission-card {
    position: absolute;
    background: rgba(245,240,232,0.04);
    border: 1px solid var(--border);
    padding: 32px;
    backdrop-filter: blur(8px);
  }
  .mission-card.main {
    inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    background: linear-gradient(to top, rgba(13,10,6,0.95) 0%, rgba(13,10,6,0.3) 100%),
                url('/media/gallery/3.webp') center/cover no-repeat;
    padding-right: 180px;
  }
  .mission-card.floating {
    width: 220px; bottom: -30px; right: -30px;
    background: var(--gold);
    color: var(--deep);
  }
  .mission-card.floating .big { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600; }
  .mission-card.floating .small { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; }

  .mission-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-style: italic; font-weight: 300;
    line-height: 1.5; color: var(--cream);
  }
  .mission-attr { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 12px; }

  .mission-body { font-size: 1rem; line-height: 1.9; opacity: 0.7; font-weight: 300; margin-bottom: 32px; }

  /* ── EVENTS / FUNDRAISERS ── */
  #events { background: rgba(245,240,232,0.02); }

  .events-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px; margin-top: 60px;
  }
  .event-card {
    position: relative; overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--gold);
    cursor: pointer;
    transition: transform 0.4s;
    border: 1px solid var(--gold);
  }
  .event-card:hover { transform: scale(1.02); z-index: 2; }

  .event-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
  }
  .event-slider { position: absolute; inset: 0; z-index: 0; }
  .event-slider img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 1s ease-in-out;
  }
  .event-slider img.active { opacity: 1; }

  .event-year {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--gold);
    color: var(--deep);
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 2px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  }

  .event-details {
    padding: 15px;
    background: var(--gold);
    color: var(--deep);
  }

  .event-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 4px;
    text-transform: uppercase;
  }
  .event-feat { 
    font-size: 0.65rem; 
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.8;
  }
  .event-raised { display: none; }

  /* big upcoming card */
  .event-card.big { grid-column: span 1; aspect-ratio: auto; min-height: 500px; }

  /* ── PROJECTS ── */
  #projects {
    background: linear-gradient(to bottom, rgba(74,103,65,0.06), rgba(13,10,6,0.0));
  }
  .projects-list { margin-top: 60px; }
  .project-item {
    display: grid; grid-template-columns: 80px 1fr auto;
    gap: 32px; align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
    cursor: default;
  }
  .project-item:hover { background: rgba(201,147,42,0.04); padding-left: 16px; }
  .project-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 300; color: var(--gold);
    opacity: 0.4;
  }
  .project-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 300; margin-bottom: 6px;
  }
  .project-desc { font-size: 0.82rem; opacity: 0.55; line-height: 1.6; }
  .project-tag {
    font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 6px 14px; border: 1px solid var(--border);
    color: var(--gold); white-space: nowrap;
  }

  /* ── ABOUT / TEAM ── */
  #about { }
  .team-intro {
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 80px; margin-bottom: 80px;
  }
  .team-intro-text { font-size: 1rem; line-height: 1.9; opacity: 0.7; font-weight: 300; }

  .members-grid-new {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px; margin-top: 40px;
  }
  .member-card-new {
    background: rgba(245,240,232,0.03); border: 1px solid var(--border);
    transition: all 0.3s; padding: 24px 16px; text-align: center;
    position: relative; overflow: hidden;
  }
  .member-card-new:hover { border-color: var(--gold); transform: translateY(-5px); }
  .member-card-new img {
    width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
    margin-bottom: 16px; border: 2px solid var(--gold);
  }
  .member-card-new .name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold-light); margin-bottom: 4px; }
  .member-card-new .role { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
  .member-card-new .bio { font-size: 0.85rem; opacity: 0.7; line-height: 1.5; font-weight: 300; }

  /* ── LEADERSHIP GRID ── */
  .leadership-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 40px;
  }
  .leader-card {
    background: rgba(245,240,232,0.03);
    border: 1px solid var(--border);
    padding: 32px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .leader-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .leader-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    background: rgba(201,147,42,0.06);
  }
  .leader-card:hover::before { opacity: 1; }
  .leader-card img {
    width: 130px; height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid var(--gold);
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  .leader-card:hover img {
    border-color: var(--gold-light);
    box-shadow: 0 0 20px rgba(201,147,42,0.3);
  }
  .leader-card .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 6px;
  }
  .leader-card .role {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }
  .leader-card .bio {
    font-size: 0.85rem;
    opacity: 0.65;
    line-height: 1.5;
    font-weight: 300;
  }

  .view-all-wrap {
    text-align: center;
    margin-top: 48px;
  }
  .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
    background: transparent;
  }
  .btn-view-all:hover {
    background: var(--gold);
    color: var(--deep);
    transform: translateY(-2px);
  }
  .btn-view-all .arrow {
    transition: transform 0.3s;
  }
  .btn-view-all:hover .arrow {
    transform: translateX(4px);
  }

  /* ── GALLERY ── */
  #gallery { padding-bottom: 60px; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    gap: 8px; margin-top: 60px;
  }
  .gallery-item {
    overflow: hidden; position: relative;
    background: rgba(245,240,232,0.04);
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color 0.3s;
    aspect-ratio: 1 / 1;
  }
  .gallery-item:hover { border-color: var(--gold); }
  
  .gallery-inner {
    position: absolute; inset: 0;
    transition: transform 0.6s ease;
  }
  .gallery-item:hover .gallery-inner { transform: scale(1.06); }
  
  .gallery-inner img {
    width: 100%; height: 100%; object-fit: cover; opacity: 0.8;
    transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-inner img { opacity: 1; }

  .gallery-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(13,10,6,0.85), transparent);
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-label { opacity: 1; }

  .gallery-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    opacity: 0.08; font-size: 4rem;
  }

  /* ── CONTACT / FORM ── */
  #contact {
    background: linear-gradient(135deg, rgba(139,58,26,0.1), rgba(13,10,6,0.5));
    border-top: 1px solid var(--border);
  }

  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 80px; margin-top: 60px; align-items: start;
  }

  .contact-left h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 300; margin-bottom: 24px; line-height: 1.3;
  }
  .contact-left p { font-size: 0.9rem; line-height: 1.9; opacity: 0.65; margin-bottom: 40px; font-weight: 300; }

  .contact-types { display: flex; flex-direction: column; gap: 16px; }
  .contact-type {
    padding: 16px 20px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
  }
  .contact-type:hover, .contact-type.active {
    border-color: var(--gold); background: rgba(201,147,42,0.06);
  }
  .contact-type-label {
    font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
  }
  .contact-type-desc { font-size: 0.82rem; opacity: 0.6; }

  .form-wrap { }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
  .form-group label {
    font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.6;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(245,240,232,0.05);
    border: 1px solid var(--border);
    padding: 14px 18px;
    color: var(--cream);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
    resize: vertical;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold); }
  .form-group select option { background: var(--deep); }

  .form-submit {
    width: 100%;
    background: var(--gold); color: var(--deep);
    border: none; padding: 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 600; cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    padding: 60px 80px 40px;
    border-top: 1px solid var(--border);
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
  }
  .footer-brand p { font-size: 0.85rem; line-height: 1.8; opacity: 0.55; margin-top: 16px; font-weight: 300; }
  .footer-brand .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 400; color: var(--gold);
  }
  .footer-col h4 {
    font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    font-size: 0.85rem; color: var(--cream); opacity: 0.55;
    text-decoration: none; transition: opacity 0.3s;
  }
  .footer-col ul li a:hover { opacity: 1; }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 30px; border-top: 1px solid var(--border);
    font-size: 0.72rem; opacity: 0.4;
  }

  .domain-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.7rem; letter-spacing: 0.15em; color: var(--gold); opacity: 0.8;
  }
  .domain-badge::before { content: '🌐'; font-size: 0.9rem; }

  /* ── SCROLL ANIMATIONS ── */
  .fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  .fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  .fade-in.visible { opacity: 1; }

  /* ── MOBILE NAV ── */
  .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
  .hamburger span { width: 24px; height: 1px; background: var(--cream); transition: all 0.3s; }

  /* ── MARQUEE ── */
  .marquee-wrap {
    padding: 20px 0; background: var(--gold);
    overflow: hidden; white-space: nowrap;
  }
  .marquee-inner {
    display: inline-flex; gap: 0;
    animation: marquee 25s linear infinite;
  }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .marquee-item {
    font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--deep); padding: 0 40px;
    display: flex; align-items: center; gap: 16px;
  }
  .marquee-item::after { content: '◆'; font-size: 0.5rem; opacity: 0.5; }

  /* ── CAUSE STRIP ── */
  .cause-strip {
    padding: 80px;
    background: linear-gradient(135deg, rgba(74,103,65,0.15), rgba(201,147,42,0.05));
    text-align: center;
  }
  .cause-strip .big-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300; line-height: 1.2;
    max-width: 800px; margin: 0 auto 32px;
  }
  .cause-strip .big-text span { color: var(--gold-light); font-style: italic; }

  /* ── WORK SLIDER ── */
  .work-slider-wrap {
    margin-top: 40px;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .work-slider-label {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .work-slider-label::before,
  .work-slider-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }
  .work-slider {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 2px;
  }
  .work-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .work-slide {
    min-width: 33.333%;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
  }
  .work-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: opacity 0.4s, transform 0.6s;
  }
  .work-slide:hover img {
    opacity: 1;
    transform: scale(1.05);
  }
  .work-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 18px;
    background: linear-gradient(to top, rgba(13,10,6,0.9), transparent);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .work-slide:hover .work-slide-caption {
    opacity: 1;
  }
  .work-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
  }
  .work-nav-btns {
    display: flex;
    gap: 12px;
  }
  .work-slider-achievement {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--cream);
    opacity: 0.9;
    line-height: 1.3;
  }
  .work-slider-achievement span {
    color: var(--gold);
    font-style: italic;
  }
  .work-nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: rgba(245,240,232,0.04);
    color: var(--gold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .work-nav-btn:hover {
    background: var(--gold);
    color: var(--deep);
    border-color: var(--gold);
  }

  @media (max-width: 1024px) {
    .work-slide { min-width: 50%; }
  }
  @media (max-width: 600px) {
    .work-slide { min-width: 100%; }
  }

  /* ── UPCOMING HIGHLIGHT ── */
  .upcoming-banner {
    margin: 4px 0;
    padding: 48px 60px;
    background: linear-gradient(135deg, #0d0d1f, #1a1a3a, #1a2b4a);
    border: 1px solid rgba(100,130,200,0.2);
    display: grid; grid-template-columns: 1fr auto;
    gap: 40px; align-items: center;
    position: relative; overflow: hidden;
  }
  .upcoming-banner::before {
    content: '';
    position: absolute; top: -50%; left: -20%; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(100,130,255,0.1), transparent);
  }
  .upcoming-tag {
    font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
  }
  .upcoming-tag .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold-light);
    animation: blink 1.5s ease-in-out infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

  .upcoming-banner h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem; font-weight: 300; line-height: 1.1;
    margin-bottom: 8px;
  }
  .upcoming-banner p { font-size: 0.85rem; opacity: 0.6; }
  .upcoming-cta {
    padding: 16px 36px; border: 1px solid var(--gold-light);
    color: var(--gold-light); text-decoration: none;
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    transition: all 0.3s; white-space: nowrap;
  }
  .upcoming-cta:hover { background: var(--gold-light); color: var(--deep); }

  /* Decorative elements in gallery */
  .gallery-overlay-text {
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; opacity: 0.12;
    font-size: 5rem; color: white;
    bottom: -10px; right: 10px;
    white-space: nowrap;
  }

  @media (max-width: 1024px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    section { padding: 70px 24px; }
    #mission { grid-template-columns: 1fr; gap: 40px; }
    .mission-visual { height: 350px; }
    .mission-card.main { padding-right: 32px; padding-bottom: 80px; }
    .impact-grid { grid-template-columns: repeat(2,1fr); }
    .events-grid { grid-template-columns: 1fr 1fr; }
    .core-team { grid-template-columns: repeat(3,1fr); }
    .members-grid { grid-template-columns: repeat(2,1fr); }
    .leadership-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    footer { padding: 60px 24px 40px; }
    .footer-brand .logo-text { margin: 0 auto; }
    .footer-col ul { display: flex; flex-direction: column; align-items: center; }
    .hero-scroll { display: none; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: auto; gap: 4px; }
    .gallery-item:nth-child(n) { grid-column: span 1 !important; grid-row: span 1 !important; }
    .hero-content { padding: 0 24px; }
    .hero-stat-strip { display: none; }
    .team-intro { grid-template-columns: 1fr; gap: 24px; }
    #impact { padding: 40px 24px; }
    .upcoming-banner { grid-template-columns: 1fr; padding: 32px; }
    .cause-strip { padding: 60px 24px; }
    .form-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    .leadership-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ── LIGHTBOX ── */
  .lightbox {
    display: none; position: fixed; z-index: 2000; inset: 0;
    background: rgba(13,10,6,0.95); backdrop-filter: blur(5px);
    align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
  }
  .lightbox.active { display: flex; opacity: 1; }
  .lightbox-content {
    max-width: 90%; max-height: 90vh; object-fit: contain;
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
    border: 1px solid var(--border);
  }
  .lightbox-close {
    position: absolute; top: 30px; right: 40px;
    color: var(--cream); font-size: 40px; font-weight: 300; cursor: pointer;
    transition: color 0.3s; line-height: 1;
  }
  .lightbox-close:hover { color: var(--gold); }
  .lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    color: var(--cream); font-size: 50px; font-weight: 300; cursor: pointer;
    padding: 20px; transition: color 0.3s; user-select: none;
  }
  .lightbox-prev { left: 30px; }
  .lightbox-next { right: 30px; }
  .lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }

  /* ---- added by build-site.js ---- */
  .avatar-initials {
    width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--gold); background: rgba(201,147,42,0.08);
    font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--gold-light);
  }
  .avatar-initials.sm { width: 120px; height: 120px; margin-bottom: 16px; }
  .event-img-wrap { background: radial-gradient(circle at 30% 20%, rgba(201,147,42,0.28), #120d06 72%); }
  .team-page-head { padding-top: 130px; }
  .team-group-note { margin-top: 10px; opacity: 0.6; font-weight: 300; }
  .team-group { margin-top: 70px; }
