:root {
      /* Brand colours */
      --blue:    #1a1aaa;
      --purple:  #9b3fbf;
      --violet:  #c066e0;
      --gold:    #f5c842;
      --neon:    #ffe566;
      --white:   #ffffff;

      /* Surface / backgrounds — Phase 3 overhaul: dark base, purple/gold now accents */
      --dark:    #0d081c;   /* body + default page bg: near-black aubergine */
      --deep:    #070410;   /* deepest pools e.g. behind posters */
      --alt:     #150c28;   /* slightly lighter for alternating sections */
      --surface: rgba(22,12,40,0.65);  /* card surface */
      --border-soft: rgba(245,200,66,0.14);

      /* Page gradients — now near-flat dark with a whisper of purple motion */
      --grad:    linear-gradient(160deg, #0d081c 0%, #150c28 55%, #0d081c 100%);
      --grad-r:  linear-gradient(200deg, #0d081c 0%, #150c28 55%, #0d081c 100%);

      /* Reserved for focused accent moments */
      --accent-glow: radial-gradient(ellipse at 20% 30%, rgba(155,63,191,0.22) 0%, transparent 55%),
                     radial-gradient(ellipse at 85% 80%, rgba(245,200,66,0.10) 0%, transparent 50%);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'DM Sans', sans-serif; background: var(--dark); color: var(--white); min-height: 100vh; }

    /* ══ NAV ══ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      background: rgba(13,13,43,0.93); backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(155,63,191,0.3);
      padding: 0 2rem; display: flex; align-items: center; justify-content: space-between;
      height: 64px;
    }
    .nav-brand { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; background: transparent; border: 0; padding: 0; appearance: none; -webkit-appearance: none; }
    .nav-logo-text {
      width: 40px; height: 40px; background: var(--grad); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif; font-size: 0.65rem; letter-spacing: 0.05em;
      color: var(--gold); border: 2px solid var(--gold);
      text-align: center; padding: 4px; line-height: 1.1;
    }
    /* When you have your logo: replace .nav-logo-text div with
       <img src="htg-logo.png" alt="HTG" class="nav-logo-img"  loading="lazy" /> */
    .nav-logo-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); background: transparent; display: block; }
    .nav-title {
      font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.08em;
      color: var(--neon); text-shadow: 0 0 12px rgba(255,229,102,0.5);
    }
    .nav-links { display: flex; gap: 0.25rem; list-style: none; }
    .nav-links li a {
      color: rgba(255,255,255,0.75); text-decoration: none;
      font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em;
      padding: 0.4rem 0.75rem; border-radius: 6px; transition: all 0.2s; cursor: pointer; display: block;
    }
    .nav-links li a:hover, .nav-links li a.active { color: var(--neon); background: rgba(255,229,102,0.1); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

    /* ══ PAGES ══ */
    .page { display: none; min-height: 100vh; padding-top: 64px; }
    .page.active { display: block; animation: fadeIn 0.35s ease; }
    @keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

    /* ══ SHARED ══ */
    .section-heading {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.8rem, 4.2vw, 3.1rem); letter-spacing: 0.08em; text-align: center;
      color: var(--neon); text-shadow: 0 0 18px rgba(255,229,102,0.22);
      margin-bottom: 2rem;
    }
    .divider { width: 80px; height: 2px; background: linear-gradient(90deg,transparent,rgba(245,200,66,0.5),transparent); margin: 1rem auto; }
    .btn-primary {
      display: inline-block; background: var(--gold); color: var(--dark);
      font-weight: 700; font-size: 0.95rem; padding: 0.8rem 2rem; border-radius: 50px;
      text-decoration: none; cursor: pointer; transition: all 0.2s; border: none; letter-spacing: 0.04em;
    }
    .btn-primary:hover { background: var(--neon); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,200,66,0.3); }
    .social-icon {
      width: 44px; height: 44px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all 0.2s; color: white; text-decoration: none;
    }
    .social-icon:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
    .social-icon svg { width: 20px; height: 20px; fill: currentColor; }
    footer {
      background: rgba(0,0,0,0.4); border-top: 1px solid rgba(155,63,191,0.2);
      padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    }
    footer p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
    .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; letter-spacing: 0.08em; color: var(--gold); opacity: 0.7; }

    /* ══ HOME — HERO (show-focused) ══ */
    .hero {
      background: transparent; padding-bottom: 0;
      display: flex; align-items: center; position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 20% 50%, rgba(255,229,102,0.07) 0%, transparent 60%),
                  radial-gradient(ellipse at 80% 20%, rgba(192,102,224,0.12) 0%, transparent 50%);
      pointer-events: none;
    }
    .hero-inner {
      max-width: 1200px; margin: 0 auto; width: 100%;
      padding: 4rem 2rem; display: grid; grid-template-columns: 360px 1fr; gap: 3.5rem; align-items: center;
      position: relative; z-index: 1;
    }
    .hero-poster {
      border-radius: 12px; overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,229,102,0.18);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .hero-poster:hover { transform: translateY(-4px); box-shadow: 0 32px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,229,102,0.35); }
    .hero-poster img { display: block; width: 100%; height: auto; }
    .hero-showcase { max-width: 640px; }
    .hero-eyebrow {
      font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.18em;
      font-size: 0.82rem; color: var(--gold); text-transform: uppercase;
      margin-bottom: 0.8rem; opacity: 0.95;
    }
    .hero-title {
      font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 6vw, 4.6rem);
      line-height: 0.98; letter-spacing: 0.02em; color: var(--neon);
      text-shadow: 0 0 40px rgba(255,229,102,0.55); margin-bottom: 0.5rem;
    }
    .hero-byline {
      font-family: 'Playfair Display', serif; font-style: italic;
      color: rgba(255,255,255,0.85); font-size: 1.15rem; line-height: 1.4;
      margin-bottom: 1.2rem;
    }
    .hero-pitch {
      font-size: 1rem; line-height: 1.65; color: rgba(255,255,255,0.88);
      margin-bottom: 1.1rem;
    }
    .hero-meta {
      font-size: 0.95rem; color: rgba(255,255,255,0.75);
      margin-bottom: 1.8rem; letter-spacing: 0.01em;
    }
    .hero-ctas {
      display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center;
      margin-bottom: 2rem;
    }
    .btn-primary-lg {
      font-size: 1.05rem; padding: 1rem 2.2rem; letter-spacing: 0.02em;
    }
    .btn-ghost {
      display: inline-block; background: transparent; color: var(--white);
      font-weight: 600; font-size: 0.95rem; padding: 0.95rem 1.6rem; border-radius: 50px;
      text-decoration: none; cursor: pointer; border: 1px solid rgba(255,255,255,0.35);
      transition: all 0.2s; letter-spacing: 0.02em;
    }
    .btn-ghost:hover { border-color: var(--neon); color: var(--neon); background: rgba(255,229,102,0.08); }
    .hero-identity {
      font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6;
      padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12);
      margin-bottom: 1.1rem;
    }
    .hero-identity span:first-child { color: var(--gold); font-family: 'Bebas Neue',sans-serif; letter-spacing: 0.1em; font-size: 0.85rem; }
    .hero-identity-sep { color: rgba(255,255,255,0.3); margin: 0 0.5rem; }
    .hero-identity a { color: var(--neon); text-decoration: none; border-bottom: 1px solid rgba(255,229,102,0.3); }
    .hero-identity a:hover { border-bottom-color: var(--neon); }
    .hero-social-row { display: flex; gap: 0.85rem; }

    /* legacy carousel styles — retained for future use (carousel itself removed from hero)
       Do not remove unless you also remove the CSS below. */
    .carousel { position: relative; border-radius: 18px; overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 3px rgba(255,229,102,0.2); background: rgba(0,0,0,0.3); width: 100%; }
    .carousel-track { display: flex; width: 500%; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
    .carousel-slide { width: 20%; flex: 0 0 20%; overflow: hidden; }
    .carousel-slide img { width: 100%; height: 420px; object-fit: cover; display: block; }
    .carousel-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); gap: 0.5rem; font-size: 0.85rem; text-align: center; padding: 2rem; }
    .carousel-placeholder .ph-icon { font-size: 3rem; }
    .carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.2); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; transition: all 0.2s; font-size: 1rem; }
    .carousel-btn:hover { background: var(--gold); color: var(--dark); }
    .carousel-btn.prev { left: 12px; }
    .carousel-btn.next { right: 12px; }
    .carousel-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 5; }
    .carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.25s; border: none; }
    .carousel-dot.active { background: var(--gold); transform: scale(1.3); }

    /* ══ LIFE ON STAGE — gallery ══ */
    .gallery-section { padding: 4.5rem 2rem; background: rgba(0,0,0,0.15); }
    .gallery-heading-wrap { text-align: center; max-width: 780px; margin: 0 auto 3rem; }
    .gallery-subheading { font-family: 'Playfair Display', serif; font-style: italic; color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.6; margin-top: 0.3rem; }
    .gallery-grid {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
    }
    .gallery-item {
      position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 10px;
      cursor: pointer; background: rgba(0,0,0,0.3);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
    .gallery-item:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.5); }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-item .gallery-caption {
      position: absolute; inset: auto 0 0 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.9) 70%);
      padding: 2rem 1rem 0.9rem; color: white;
      font-family: 'Playfair Display', serif;
      transform: translateY(100%); transition: transform 0.3s ease;
    }
    .gallery-item:hover .gallery-caption { transform: translateY(0); }
    .gallery-caption .gc-title { display: block; font-size: 0.95rem; font-weight: 700; line-height: 1.2; }
    .gallery-caption .gc-meta { display: block; font-size: 0.78rem; color: var(--gold); font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.1em; margin-top: 0.25rem; }
    /* Make caption always visible on smaller screens where hover doesn't apply */
    @media (max-width: 768px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
      .gallery-item .gallery-caption { transform: translateY(0); padding: 1.8rem 0.8rem 0.7rem; }
      .gallery-caption .gc-title { font-size: 0.82rem; }
      .gallery-caption .gc-meta { font-size: 0.7rem; }
    }
    .gallery-footer { text-align: center; margin-top: 2.5rem; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
    .gallery-footer a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(245,200,66,0.4); }
    .gallery-footer a:hover { color: var(--neon); border-bottom-color: var(--neon); }

    /* upcoming */
    .upcoming-strip {
      background: rgba(0,0,0,0.18);
      padding: 3rem 2rem;
    }
    .upcoming-cards { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1.5rem; }
    .event-card {
      background: rgba(13,8,28,0.72);
      border: 1px solid rgba(245,200,66,0.35); border-radius: 16px; padding: 1.75rem; transition: transform 0.2s, border-color 0.2s;
      backdrop-filter: blur(8px); display: flex; flex-direction: column;
    }
    .event-card:hover { transform: translateY(-4px); border-color: rgba(245,200,66,0.6); }
    .event-card .event-icon { font-size: 2.2rem; margin-bottom: 0.9rem; }
    .event-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; letter-spacing: 0.05em; color: var(--gold); margin-bottom: 0.4rem; }
    .event-card p { color: rgba(255,255,255,0.82); font-size: 0.9rem; line-height: 1.6; }
    .event-card .event-meta { margin-top: auto; padding-top: 0.6rem; font-size: 0.78rem; color: rgba(255,255,255,0.5); font-style: italic; }

    /* ══ PRODUCTIONS ══ */
    .productions-page { background: var(--grad); }
    .productions-hero { padding: 4rem 2rem 2rem; text-align: center; }
    .productions-section { max-width: 1200px; margin: 0 auto; padding: 0 2rem 4rem; }
    .prod-subheading { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--gold); text-align: center; margin-bottom: 2rem; font-style: italic; }
    .current-show {
      background: rgba(0,0,0,0.3); border-radius: 20px; border: 1px solid rgba(245,200,66,0.35);
      padding: 2.5rem; display: grid; grid-template-columns: 220px 1fr; gap: 2.5rem; align-items: start; margin-bottom: 3rem;
    }
    .current-show-poster-placeholder {
      width: 220px; background: rgba(255,255,255,0.07); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.78rem; color: rgba(255,255,255,0.35); text-align: center; padding: 1rem; flex-shrink: 0;
    }
    .current-show-info h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; letter-spacing: 0.05em; color: var(--neon); margin-bottom: 0.5rem; }
    .show-badge { display: inline-block; background: var(--gold); color: var(--dark); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; padding: 0.2rem 0.75rem; border-radius: 20px; text-transform: uppercase; margin-bottom: 1rem; }
    .current-show-info p { color: rgba(255,255,255,0.85); line-height: 1.65; margin-bottom: 0.5rem; }
    .past-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 1.5rem; }
    .past-card {
      background: var(--surface); border-radius: 12px; overflow: hidden;
      border: 1px solid var(--border-soft); transition: all 0.22s; cursor: pointer;
      display: flex; flex-direction: column; height: 100%;
    }
    .past-card:hover { border-color: rgba(245,200,66,0.5); transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.5); }
    .past-card-poster {
      aspect-ratio: 3/4;
      background: linear-gradient(145deg,rgba(106,47,160,0.35),rgba(26,26,170,0.25));
      display: flex; align-items: center; justify-content: center;
      font-size: 0.7rem; color: rgba(255,255,255,0.3); text-align: center; padding: 0.5rem; overflow: hidden;
    }
    .past-card-poster img { width: 100%; height: 100%; object-fit: cover; }
    .past-card-info { padding: 0.85rem 1rem 1rem; display: flex; flex-direction: column; gap: 0.15rem; }
    .past-card-info h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--white); margin-bottom: 0.1rem; line-height: 1.3; }
    .past-card-info span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
    .past-card-info .card-director { font-size: 0.76rem; color: rgba(255,229,102,0.68); display: block; margin-top: 0.2rem; }
    .past-card .view-hint { font-size: 0.68rem; color: var(--gold); opacity: 0; transition: opacity 0.2s; display: block; margin-top: 0.2rem; }
    .past-card:hover .view-hint { opacity: 1; }
    .past-card[onclick] .past-card-poster::after {
      content: '▶ More info';
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.75));
      color: var(--gold); font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.08em; text-align: center;
      padding: 1.5rem 0.5rem 0.5rem;
      opacity: 0; transition: opacity 0.2s;
    }
    .past-card[onclick] .past-card-poster { position: relative; }
    .past-card[onclick]:hover .past-card-poster::after { opacity: 1; }
    .past-card[onclick] { cursor: pointer; }
    .past-card[onclick] .past-card-info::before {
      content: '🎭';
      font-size: 0.65rem;
      float: right;
      margin-top: 0.1rem;
      opacity: 0.6;
    }
    .archive-table-wrap { margin-top: 3rem; overflow-x: auto; border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); }
    table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
    thead { background: rgba(155,63,191,0.4); }
    thead th { padding: 0.75rem 1rem; text-align: left; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; white-space: nowrap; }
    tbody tr { border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.15s; }
    tbody tr:hover { background: rgba(255,255,255,0.04); }
    tbody td { padding: 0.65rem 1rem; color: rgba(255,255,255,0.8); }

    /* ══ PRODUCTION DETAIL ══ */
    .prod-subpage { background: var(--grad); }
    .prod-subpage-inner { max-width: 1000px; margin: 0 auto; padding: 3rem 2rem 4rem; }
    .prod-back { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.6); font-size: 0.88rem; cursor: pointer; transition: color 0.2s; margin-bottom: 2.5rem; background: none; border: none; }
    .prod-back:hover { color: var(--gold); }
    .prod-header { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; }
    .prod-poster { border-radius: 12px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 2px rgba(245,200,66,0.2); }
    .prod-poster img { width: 100%; display: block; }
    .prod-poster-placeholder { aspect-ratio: 2/3; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; color: rgba(255,255,255,0.3); text-align: center; padding: 1rem; }
    .prod-title-block h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem,5vw,4rem); letter-spacing: 0.04em; color: var(--neon); line-height: 1; margin-bottom: 0.5rem; }
    .prod-tag { display: inline-block; margin-bottom: 0.75rem; background: rgba(155,63,191,0.35); border: 1px solid rgba(155,63,191,0.5); color: var(--violet); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.85rem; border-radius: 20px; }
    .prod-meta { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.8; margin-top: 0.75rem; }
    .prod-meta strong { color: var(--gold); }
    .prod-section { background: rgba(0,0,0,0.25); border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); padding: 2rem 2.25rem; margin-bottom: 1.75rem; }
    .prod-section h2 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--gold); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .prod-section p { color: rgba(255,255,255,0.83); line-height: 1.8; margin-bottom: 0.75rem; }
    .prod-section p:last-child { margin-bottom: 0; }
    .cast-list { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 0.75rem; }
    .cast-item { display: flex; flex-direction: column; padding: 0.75rem 1rem; background: rgba(255,255,255,0.05); border-radius: 10px; border: 1px solid rgba(255,255,255,0.07); }
    .cast-item .character { font-family: 'Playfair Display', serif; font-style: italic; color: var(--neon); font-size: 0.88rem; margin-bottom: 0.15rem; }
    .cast-item .actor { color: rgba(255,255,255,0.75); font-size: 0.85rem; }
    .programme-list { list-style: none; }
    .programme-list li { display: flex; justify-content: space-between; align-items: baseline; padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); font-size: 0.9rem; }
    .programme-list li:last-child { border-bottom: none; }
    .programme-list .prog-role { color: rgba(255,255,255,0.45); font-size: 0.82rem; }

    /* ══ NEWS ══ */
    .news-page { background: var(--grad-r); }
    .news-page-inner { padding: 4rem 2rem; }
    .news-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 2rem; }
    .news-card { background: var(--surface); border-radius: 16px; overflow: hidden; border: 1px solid var(--border-soft); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; height: 100%; }
    .news-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-color: rgba(245,200,66,0.3); }
    .news-card-img { width: 100%; height: 240px; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.35); color: rgba(255,255,255,0.3); font-size: 0.8rem; overflow: hidden; flex-shrink: 0; }
    .news-card-img img { width: 100%; height: 100%; object-fit: contain; }
    .news-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
    .news-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; display: block; }
    .news-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--white); margin-bottom: 0.75rem; line-height: 1.35; }
    .news-card-body p { color: rgba(255,255,255,0.78); font-size: 0.9rem; line-height: 1.6; }
    .news-card-body .news-cta { margin-top: auto; padding-top: 0.5rem; }

    /* ══ TIMELINE (About page · "Our Story So Far") ══ */
    .timeline { position: relative; padding: 0.5rem 0; }
    .timeline::before {
      content: ''; position: absolute; left: 22px; top: 0; bottom: 0;
      width: 2px; background: linear-gradient(to bottom,
        rgba(245,200,66,0) 0%, rgba(245,200,66,0.5) 8%, rgba(245,200,66,0.5) 92%, rgba(245,200,66,0) 100%);
    }
    .timeline-item {
      position: relative; padding-left: 70px; padding-bottom: 1.75rem;
    }
    .timeline-item:last-child { padding-bottom: 0; }
    .timeline-marker {
      position: absolute; left: 0; top: 0;
      width: 46px; height: 46px; border-radius: 50%;
      background: linear-gradient(145deg, #2a1550 0%, #1a0e30 100%);
      border: 2px solid rgba(245,200,66,0.5);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
      box-shadow: 0 0 0 4px var(--dark), 0 4px 14px rgba(0,0,0,0.5);
    }
    .timeline-current .timeline-marker {
      border-color: var(--gold);
      box-shadow: 0 0 0 4px var(--dark), 0 0 20px rgba(245,200,66,0.4);
    }
    .timeline-body {
      background: var(--surface);
      border: 1px solid var(--border-soft);
      border-radius: 12px; padding: 1.1rem 1.4rem;
    }
    .timeline-current .timeline-body { border-color: rgba(245,200,66,0.4); }
    .timeline-year {
      display: inline-block; font-family: 'Bebas Neue', sans-serif;
      color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em;
      margin-bottom: 0.3rem;
    }
    .timeline-body h4 {
      font-family: 'Playfair Display', serif; font-size: 1.1rem;
      color: var(--white); margin-bottom: 0.45rem; line-height: 1.3;
    }
    .timeline-body p {
      color: rgba(255,255,255,0.78); line-height: 1.6; font-size: 0.92rem;
      margin: 0;
    }
    @media (max-width: 540px) {
      .timeline-item { padding-left: 58px; padding-bottom: 1.4rem; }
      .timeline-marker { width: 40px; height: 40px; font-size: 1rem; }
      .timeline::before { left: 19px; }
      .timeline-body { padding: 0.9rem 1.1rem; }
      .timeline-body h4 { font-size: 1rem; }
    }

    /* ══ NEWS ARCHIVE PAGE ══ */
    .news-archive-page { background: var(--grad); }
    .news-archive-inner { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem 5rem; }
    .news-archive-subhead { text-align: center; color: rgba(255,255,255,0.65); font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; max-width: 640px; margin: -0.75rem auto 2.5rem; line-height: 1.5; }
    .news-year-block { margin-bottom: 3rem; }
    .news-year-block:last-child { margin-bottom: 0; }
    .news-year-heading {
      display: flex; align-items: baseline; gap: 0.9rem;
      padding: 0 0.25rem 0.9rem;
      margin-bottom: 1.5rem;
      border-bottom: 1px solid rgba(245,200,66,0.18);
    }
    .news-year-heading-year {
      font-family: 'Bebas Neue', sans-serif;
      color: var(--gold); font-size: 1.9rem; letter-spacing: 0.08em;
      text-shadow: 0 0 14px rgba(245,200,66,0.2);
    }
    .news-year-heading-count {
      font-family: 'DM Sans', sans-serif;
      color: rgba(255,255,255,0.45); font-size: 0.85rem;
      letter-spacing: 0.02em;
    }
    .news-archive-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    /* ══ HTG typographic placeholder (used on event cards without real photos) ══ */
    .news-card-placeholder {
      width: 100%; height: 240px; position: relative;
      background: linear-gradient(145deg, #1a0e30 0%, #2a1550 100%);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .news-card-placeholder::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 30% 30%, rgba(245,200,66,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 70%, rgba(155,63,191,0.20) 0%, transparent 55%);
      opacity: 0.9;
    }
    .news-card-placeholder .placeholder-mark {
      position: relative; z-index: 1;
      font-family: 'Bebas Neue', sans-serif; color: var(--gold);
      font-size: 3.4rem; letter-spacing: 0.15em; line-height: 1;
      text-shadow: 0 0 30px rgba(245,200,66,0.5);
    }
    .news-card-placeholder .placeholder-context {
      position: relative; z-index: 1; margin-top: 0.6rem;
      font-family: 'Playfair Display', serif; font-style: italic;
      color: rgba(255,255,255,0.7); font-size: 0.88rem; letter-spacing: 0.03em;
      padding: 0 1rem; text-align: center;
    }

    /* ══ AGM floral image per-year tints ══ */
    .news-card-agm-img { width: 100%; height: 240px; object-fit: cover; display: block; }
    .news-card-agm[data-year="2022"] .news-card-agm-img { filter: hue-rotate(30deg)  saturate(0.9); }
    .news-card-agm[data-year="2023"] .news-card-agm-img { filter: hue-rotate(-25deg) saturate(1.0); }
    .news-card-agm[data-year="2024"] .news-card-agm-img { filter: hue-rotate(140deg) saturate(0.85); }
    .news-card-agm[data-year="2025"] .news-card-agm-img { filter: hue-rotate(200deg) saturate(1.0); }
    .news-card-agm[data-year="2026"] .news-card-agm-img { filter: hue-rotate(260deg) saturate(0.9); }


    /* ══ TEAM ══ */
    .team-page { background: var(--grad); }
    .team-page-inner { padding: 4rem 2rem; }
    .team-intro { max-width: 640px; margin: 0 auto 3.5rem; text-align: center; }
    .team-intro p { color: rgba(255,255,255,0.85); font-size: 1.05rem; line-height: 1.7; }
    .team-grid { max-width: 1000px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
    .team-card { text-align: center; flex: 0 0 160px; }
    .team-avatar { width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 1rem; overflow: hidden; border: 3px solid rgba(245,200,66,0.45); background: rgba(255,255,255,0.08); }
    .team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
    .team-avatar-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: rgba(255,255,255,0.3); text-align: center; padding: 0.5rem; }
    .team-avatar-initials { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); background: linear-gradient(145deg, rgba(106,47,160,0.5), rgba(26,26,170,0.4)); letter-spacing: 0.02em; }
    .team-card .role { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
    .team-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--white); }

    /* ══ GET INVOLVED / MASK CLOUD ══ */
    .involved-page { background: var(--grad-r); }
    .involved-page-inner { padding: 4rem 2rem; }
    .involved-intro { max-width: 700px; margin: 0 auto 2.5rem; text-align: center; }
    .involved-intro p { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
    .mask-cloud-wrap { max-width: 860px; margin: 0 auto 3rem; }
    .mask-cloud-wrap svg { width: 100%; height: auto; display: block; }
    .mask-word { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em; fill: white; pointer-events: none; dominant-baseline: middle; text-anchor: middle; }
    .mask-label { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.1em; fill: rgba(255,229,102,0.65); font-size: 13px; text-anchor: middle; dominant-baseline: middle; }
    .involved-cta { text-align: center; padding: 2.5rem; background: rgba(0,0,0,0.25); border-radius: 20px; max-width: 600px; margin: 0 auto; border: 1px solid rgba(245,200,66,0.22); }
    .involved-cta p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 1.5rem; line-height: 1.6; }

    /* Role cards — "What you could do" section on Join Us */
    .roles-section { max-width: 1000px; margin: 3rem auto 0; }
    .roles-heading { margin-bottom: 0.6rem; }
    .roles-grid {
      display: grid; gap: 1.25rem;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      margin-top: 0.5rem;
    }
    .role-card {
      background: var(--surface);
      border: 1px solid var(--border-soft);
      border-radius: 16px;
      padding: 1.6rem 1.4rem 1.4rem;
      transition: transform 0.22s, border-color 0.22s;
    }
    .role-card:hover { transform: translateY(-4px); border-color: rgba(245,200,66,0.35); }
    .role-card-icon {
      font-size: 2rem; margin-bottom: 0.75rem;
      display: block;
    }
    .role-card h4 {
      font-family: 'Bebas Neue', sans-serif;
      color: var(--gold); font-size: 1.25rem;
      letter-spacing: 0.05em; margin-bottom: 0.55rem;
    }
    .role-card p {
      color: rgba(255,255,255,0.78); font-size: 0.92rem;
      line-height: 1.6; margin: 0;
    }

    /* "From a new member" pullquote block on Join Us page */
    .new-member-story {
      max-width: 900px; margin: 3.5rem auto 0;
    }
    .new-member-story-inner {
      background: linear-gradient(180deg, rgba(255,229,102,0.05), rgba(155,63,191,0.05));
      border: 1px solid rgba(245,200,66,0.22);
      border-radius: 18px;
      padding: 2rem 2.25rem 1.75rem;
      position: relative;
    }
    .new-member-story-inner::before {
      content: '\201C';  /* left double quote */
      position: absolute;
      top: 0.1rem; left: 1rem;
      font-family: 'Playfair Display', serif;
      font-size: 5rem; line-height: 1;
      color: rgba(245,200,66,0.28);
      pointer-events: none;
    }
    .new-member-story .panel-kicker { margin-bottom: 0.4rem; }
    .new-member-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.2rem, 2.2vw, 1.5rem);
      color: var(--neon); margin-bottom: 1rem;
      position: relative; z-index: 1;
    }
    .new-member-quote {
      margin: 0; padding: 0;
      font-family: 'Playfair Display', serif;
      font-style: italic;
    }
    .new-member-quote p {
      color: rgba(255,255,255,0.85);
      font-size: 1rem; line-height: 1.7;
      margin-bottom: 0.9rem;
    }
    .new-member-quote p:last-of-type { margin-bottom: 1rem; }
    .new-member-attribution {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-style: normal;
      font-size: 0.88rem;
      color: rgba(245,200,66,0.75);
      letter-spacing: 0.02em;
      margin-top: 0.5rem;
    }
    @media (max-width: 600px) {
      .new-member-story-inner { padding: 1.75rem 1.5rem 1.4rem; }
      .new-member-story-inner::before { font-size: 4rem; left: 0.6rem; }
    }

    /* ══ CONTACT ══ */
    .contact-page { background: var(--grad); }
    .contact-page-inner { padding: 4rem 2rem; }
    .contact-layout { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
    .contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); margin-bottom: 1rem; }
    .contact-info p { color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 1rem; }
    .contact-socials { display: flex; gap: 1rem; margin-top: 1.5rem; }
    .contact-form-wrap { background: rgba(0,0,0,0.3); border-radius: 16px; padding: 2rem; border: 1px solid rgba(255,255,255,0.1); }
    .form-group { margin-bottom: 1.2rem; }
    .form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 0.4rem; }
    .form-group input, .form-group textarea, .form-group select { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; padding: 0.7rem 0.9rem; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.95rem; transition: border-color 0.2s; outline: none; }
    .form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-group select option { background: var(--dark); }
    .form-note { font-size: 0.78rem; color: rgba(255,255,255,0.38); margin-top: 0.9rem; text-align: center; line-height: 1.5; }

    .prod-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 0.75rem;
    }
    .prod-gallery img {
      width: 100%; aspect-ratio: 4/3; object-fit: cover;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.08);
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
    }
    .prod-gallery img:hover { transform: scale(1.03); box-shadow: 0 8px 25px rgba(0,0,0,0.5); }
    .prod-gallery .gif-wrap { grid-column: 1 / -1; text-align: center; }
    .prod-gallery .gif-wrap img { width: 100%; max-width: 500px; aspect-ratio: unset; height: auto; }

    /* ══ Programme scan figure (used in 'extras' sections) ══ */
    .extras-heading { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--gold); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .extras-heading + .programme-scan { margin-top: 0; }
    .programme-scan {
      max-width: 100%; margin: 0 auto 1.75rem;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px; padding: 0.75rem;
      display: flex; flex-direction: column; align-items: center;
      width: fit-content;
    }
    .programme-scan img {
      display: block; border-radius: 8px;
      /* Cap by HEIGHT so images of different aspect ratios look consistent side-by-side.
         max-width prevents super-wide scans overflowing on narrow viewports. */
      max-height: 520px; max-width: 100%; width: auto; height: auto;
    }
    @media (max-width: 768px) {
      .programme-scan img { max-height: 380px; }
    }
    .programme-scan figcaption {
      text-align: center; margin-top: 0.65rem;
      font-family: 'Playfair Display', serif; font-style: italic;
      color: rgba(255,255,255,0.45); font-size: 0.82rem; letter-spacing: 0.02em;
    }
    /* Archive fallback message when a detail page has no content beyond header */
    .archive-fallback {
      text-align: center; padding: 2rem;
      background: var(--surface); border: 1px dashed rgba(255,255,255,0.12);
      border-radius: 14px; color: rgba(255,255,255,0.55);
      font-family: 'Playfair Display', serif; font-style: italic;
    }
    .archive-fallback-icon { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; opacity: 0.7; }


    /* ══ RESPONSIVE ══ */
    @media (max-width: 768px) {
      .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(13,13,43,0.98); padding: 1rem; border-bottom: 1px solid rgba(155,63,191,0.3); }
      .nav-links.open { display: flex; }
      .hamburger { display: flex; }
      .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
      .hero-poster { max-width: 280px; margin: 0 auto; }
      .hero-showcase { max-width: 100%; }
      .hero-ctas { flex-direction: column; align-items: stretch; }
      .hero-ctas .btn-primary-lg, .hero-ctas .btn-ghost { text-align: center; }
      .prod-header { grid-template-columns: 1fr; }
      .contact-layout { grid-template-columns: 1fr; }
      .current-show { grid-template-columns: 1fr; }
      .past-grid { grid-template-columns: repeat(auto-fill,minmax(150px,1fr)); }
    }

.accordion-item { background:rgba(0,0,0,0.25); border:1px solid rgba(255,255,255,0.08); border-radius:12px; margin-bottom:0.75rem; overflow:hidden; }
        .accordion-btn { width:100%; background:none; border:none; padding:1.1rem 1.5rem; display:flex; justify-content:space-between; align-items:center; cursor:pointer; color:var(--white); font-family:'Playfair Display',serif; font-size:1.05rem; text-align:left; transition:background 0.2s; }
        .accordion-btn:hover { background:rgba(255,255,255,0.05); }
        .accordion-btn .acc-year { color:var(--gold); font-family:'Bebas Neue',sans-serif; font-size:1.3rem; letter-spacing:0.06em; margin-right:1rem; }
        .accordion-btn .acc-arrow { color:var(--gold); transition:transform 0.3s; font-size:0.8rem; flex-shrink:0; }
        .accordion-btn.open .acc-arrow { transform:rotate(180deg); }
        .accordion-body { display:none; padding:0 1.5rem 1.5rem; }
        .accordion-body.open { display:block; }
        .accordion-body p { color:rgba(255,255,255,0.82); line-height:1.8; margin-bottom:0.85rem; font-size:0.95rem; }
        .accordion-body p:last-child { margin-bottom:0; }
        .acc-sig { color:rgba(255,229,102,0.7); font-style:italic; font-size:0.88rem; margin-top:1rem !important; }
        .officer-timeline { max-width:800px; margin:0 auto 3.5rem; }
        .officer-year { display:flex; gap:1.5rem; margin-bottom:1.5rem; }
        .officer-year-label { font-family:'Bebas Neue',sans-serif; font-size:1.2rem; color:var(--gold); min-width:60px; padding-top:0.2rem; }
        .officer-year-content { flex:1; background:rgba(0,0,0,0.2); border-radius:10px; border:1px solid rgba(255,255,255,0.07); padding:0.85rem 1.1rem; }
        .officer-year-content p { color:rgba(255,255,255,0.78); font-size:0.88rem; line-height:1.6; margin:0; }
        .long-service-block { background:rgba(245,200,66,0.08); border:1px solid rgba(245,200,66,0.25); border-radius:12px; padding:1.25rem 1.5rem; margin-top:1rem; }
        .long-service-block h4 { color:var(--gold); font-family:'Playfair Display',serif; font-size:1rem; margin-bottom:0.6rem; }
        .long-service-block p { color:rgba(255,255,255,0.78); font-size:0.88rem; line-height:1.7; margin:0; }


.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 500;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--dark);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* Pass 2 cleanup helpers */
.footer-heading{font-family:'Bebas Neue',sans-serif;font-size:0.85rem;letter-spacing:0.08em;color:var(--gold);margin-bottom:0.75rem;}
.footer-link{font-size:0.82rem;color:rgba(255,255,255,0.5);text-decoration:none;}
.footer-link:hover,.footer-link:focus-visible{color:var(--gold);}
.social-icon-size{width:36px;height:36px;}
.footer-text{font-size:0.82rem;color:rgba(255,255,255,0.5);line-height:1.6;}
.footer-grid{max-width:1100px;margin:0 auto;width:100%;display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:2rem;padding-bottom:1.5rem;border-bottom:1px solid rgba(255,255,255,0.1);margin-bottom:1.5rem;}
.footer-stack{display:flex;flex-direction:column;gap:0.35rem;}
.social-row{display:flex;gap:0.75rem;margin-bottom:0.75rem;}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:0.75rem;}
.footer-meta{font-size:0.78rem;color:rgba(255,255,255,0.35);}
.table-year{padding:0.75rem 1rem;text-align:center;font-family:'Bebas Neue',sans-serif;font-size:1.1rem;color:var(--gold);}
.table-cell{padding:0.75rem 1rem;text-align:center;color:rgba(255,255,255,0.88);}
.table-note{padding:0.75rem 1rem;text-align:center;color:rgba(255,255,255,0.55);font-style:italic;}
.table-row-odd{background:rgba(255,255,255,0.04);border-bottom:1px solid rgba(255,255,255,0.06);}
.table-row-even{background:rgba(0,0,0,0.15);border-bottom:1px solid rgba(255,255,255,0.06);}
.content-narrow{max-width:800px;margin:0 auto 3.5rem;}
.content-medium{max-width:900px;margin:0 auto 3.5rem;}
.section-title{font-family:'Playfair Display',serif;font-size:1.5rem;color:var(--gold);margin-bottom:1.25rem;text-align:center;}
.section-title-lg{font-family:'Playfair Display',serif;font-size:1.5rem;color:var(--gold);margin-bottom:1.5rem;text-align:center;}
.panel-box{background:rgba(0,0,0,0.25);border-radius:16px;padding:2rem;border:1px solid rgba(255,255,255,0.08);}
.body-copy{color:rgba(255,255,255,0.85);line-height:1.8;font-size:1rem;margin-top:1rem;}
.mini-heading{font-family:'Bebas Neue',sans-serif;font-size:1.1rem;letter-spacing:0.08em;color:var(--gold);margin-bottom:0.75rem;}
.mb-0{margin-bottom:0;}
.mb-sm{margin-bottom:0.5rem;}
.mt-sm{margin-top:0.75rem;}
.mt-lg{margin-top:2.5rem;}
.text-center{text-align:center;}
.text-sm{font-size:0.9rem;}
.text-sm-muted{font-size:0.9rem;color:rgba(255,255,255,0.6);}
.text-gold{color:var(--gold);}
.is-dim{opacity:0.5;}
.is-hidden{display:none;}
.btn-compact{font-size:0.85rem;padding:0.6rem 1.5rem;}
.button-reset{padding:0;background:none;border:none;}
.overflow-hidden{overflow:hidden;}
.img-fluid{width:100%;height:auto;display:block;}
.rounded-md{border-radius:10px;}
.committee-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(340px,1fr));gap:1.5rem;margin-bottom:2rem;max-width:720px;margin-left:auto;margin-right:auto;}
.hero-panel{padding:4rem 2rem;background:rgba(255,255,255,0.07);}
.container-1100{max-width:1100px;margin:0 auto;}
.cursor-pointer{cursor:pointer;}
.bg-dark-fixed{background:var(--dark);background-attachment:fixed;}
.card-link{display:block;color:inherit;text-decoration:none;}
.card-link:focus-visible{outline:2px solid var(--gold);outline-offset:4px;}
.news-card-img--image{overflow:hidden;}
.news-card-media{width:100%;height:240px;object-fit:cover;object-position:center top;}
.news-card-img--emoji{display:flex;align-items:center;justify-content:center;font-size:3rem;background:rgba(0,0,0,0.3);}
.news-card-img--plain{padding:0;}
.news-card-img--carousel{position:relative;overflow:hidden;padding:0;height:240px;}
.nc-track{display:flex;height:100%;transition:transform 0.4s ease;width:100%;}
.nc-slide{min-width:100%;height:100%;object-fit:cover;background:#000;flex-shrink:0;}
.nc-control{position:absolute;top:50%;transform:translateY(-50%);background:rgba(0,0,0,0.5);border:none;color:#fff;width:28px;height:28px;border-radius:50%;cursor:pointer;font-size:0.8rem;}
.nc-control--prev{left:6px;}
.nc-control--next{right:6px;}
.nc-dots{position:absolute;bottom:6px;left:50%;transform:translateX(-50%);display:flex;gap:5px;}
.nc-dot{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,0.4);display:inline-block;}
.nc-dot.is-active{background:var(--gold);}
.news-cta{margin-top:0.5rem;}
.news-cta-link{color:var(--gold);}
.news-highlight{color:rgba(255,229,102,0.9);}
.news-inline-link{color:var(--gold);}


.table-head{padding:0.85rem 1rem;text-align:center;color:var(--gold);font-family:'Bebas Neue',sans-serif;font-size:1rem;letter-spacing:0.06em;border-bottom:2px solid rgba(245,200,66,0.4);}
.table-head-nowrap{white-space:nowrap;}
.bg-panel-lite{background:rgba(255,255,255,0.04);}
.table-compact{width:100%;border-collapse:collapse;font-size:0.88rem;}
.table-wrap{overflow-x:auto;border-radius:14px;border:1px solid rgba(255,255,255,0.1);}
.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem;}
.caption-note{color:rgba(255,255,255,0.4);font-size:0.78rem;text-align:center;margin-top:0.75rem;font-style:italic;}
.img-centered-lg{width:100%;max-width:700px;display:block;margin:0 auto;}
.w-full{width:100%;}
.link-gold-strong{color:var(--gold);font-weight:700;}


/* Pass 3 utility/component cleanup */
.mt-section-subheading{margin-top:2.5rem;}
.archive-note{text-align:center;color:rgba(255,255,255,0.45);font-size:.85rem;margin:-1.5rem 0 2rem;}
.section-pad-lg{padding:4rem 2rem;}
.copy-intro{color:rgba(255,255,255,0.85);line-height:1.8;font-size:1rem;}
.subsection-kicker{text-align:center;color:rgba(255,255,255,0.65);font-family:'Playfair Display',serif;font-style:italic;font-size:.98rem;}
.text-neon{color:var(--neon);}
.content-wide{max-width:1000px;margin-left:auto;margin-right:auto;}
.section-stack-lg{margin-bottom:3.5rem;}
.section-intro{text-align:center;color:rgba(255,255,255,0.7);margin:0 auto 2.5rem;max-width:600px;}
.caption-muted{color:rgba(255,255,255,0.7);font-size:.88rem;margin-bottom:1.25rem;}
.caption-fine{color:rgba(255,255,255,0.5);font-size:.82rem;font-style:italic;margin-top:1rem;}
.bg-panel-strong{background:rgba(155,63,191,0.5);}
.link-soft-gold{color:rgba(255,229,102,0.6);}
.mt-xl{margin-top:3rem;}
.text-center-intro{text-align:center;color:rgba(255,255,255,0.75);margin-bottom:3rem;font-size:1.05rem;}
.map-embed{width:100%;height:180px;border-radius:10px;border:1px solid rgba(255,255,255,0.15);margin:.75rem 0 1rem;display:block;}
.form-status{margin-top:.75rem;font-size:.85rem;text-align:center;min-height:1.2rem;}
.news-card-media--contain{object-fit:contain;}
.news-card-media--cover{object-fit:cover;}
.news-card-media--center{object-position:center;}
.news-card-media--center-top{object-position:center top;}

.subsection-kicker-wide{margin:0 auto 2.5rem;max-width:560px;line-height:1.5;}


.validation-summary {
  margin: 1rem auto 0;
  max-width: 1200px;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.45;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #f6f1d1;
}
.validation-summary strong {
  font-weight: 700;
}
.validation-summary--warning {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.09);
}
.validation-summary--error {
  border-color: rgba(255, 128, 128, 0.4);
  background: rgba(128, 0, 0, 0.18);
  color: #ffd8d8;
}


/* ══ ABOUT PAGE ══ */
.about-page { background: var(--grad); }
.about-page-inner { max-width: 1280px; margin: 0 auto; padding: 3rem 2.5rem 5rem; }
.about-top { text-align: center; max-width: 780px; margin: 0 auto 3.5rem; }
.about-tagline {
  font-family: 'Playfair Display', serif; font-style: italic;
  color: rgba(255,255,255,0.88); font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.5; margin: -1rem 0 1.5rem;
}
.about-intro-copy {
  color: rgba(255,255,255,0.8); font-size: 1.02rem; line-height: 1.75;
  max-width: 44rem; margin: 0 auto;
}
.about-section { margin-bottom: 4.5rem; }
.about-section:last-child { margin-bottom: 0; }
.about-section > .section-heading { margin-bottom: 0.6rem; }

/* Section intros — centred (top-level) and left (within columns) */
.section-intro-italic {
  text-align: center; font-family: 'Playfair Display', serif; font-style: italic;
  color: rgba(255,255,255,0.65); font-size: 1rem;
  max-width: 640px; margin: 0 auto 2.25rem; line-height: 1.55;
}
.col-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 1.95rem);
  letter-spacing: 0.06em;
  color: var(--neon);
  text-shadow: 0 0 14px rgba(255,229,102,0.22);
  margin-bottom: 0.35rem;
  text-align: left;
}
.col-intro-italic {
  font-family: 'Playfair Display', serif; font-style: italic;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem; line-height: 1.55;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Panel-box inner typography */
.panel-kicker {
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 0.82rem;
  color: var(--gold); margin-bottom: 0.5rem;
}
.panel-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  line-height: 1.25; color: var(--neon); margin-bottom: 1rem;
}
.panel-body {
  color: rgba(255,255,255,0.82); line-height: 1.75;
  font-size: 0.98rem; margin-bottom: 0.85rem;
}
.panel-body:last-child { margin-bottom: 0; }

/* ── Editorial row: Who we are + At a glance ── */
.about-editorial-row {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}
.about-lead-panel { padding: 2rem 2.25rem 1.9rem; }
.about-sidebar-panel {
  padding: 1.75rem 1.9rem;
  background: linear-gradient(180deg, rgba(245,200,66,0.06), rgba(155,63,191,0.04));
  display: flex; flex-direction: column; justify-content: flex-start;
}
.at-a-glance {
  list-style: none; margin: 0.3rem 0 0; padding: 0;
  display: grid; gap: 0.85rem;
}
.at-a-glance li {
  color: rgba(255,255,255,0.85); line-height: 1.55;
  font-size: 0.97rem; padding-left: 1.3rem; position: relative;
}
.at-a-glance li::before {
  content: '▸'; position: absolute; left: 0; top: 0;
  color: var(--gold); font-size: 0.85rem;
}

/* ── Committee bio cards ── */
.committee-bio-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
}
.committee-bio-card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: 14px; padding: 1.5rem 1.1rem 1.35rem; text-align: center;
  transition: transform 0.22s, border-color 0.22s;
}
.committee-bio-card:hover { transform: translateY(-3px); border-color: rgba(245,200,66,0.35); }
.committee-bio-card .team-avatar { width: 110px; height: 110px; margin: 0 auto 1rem; }
.committee-bio-card .role {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem;
}
.committee-bio-card h4 {
  font-family: 'Playfair Display', serif; font-size: 1.2rem;
  color: var(--white); margin-bottom: 0.7rem;
}
.committee-bio { font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.72); }

/* ── The mosaic: timeline left + right column stack ── */
.about-mosaic {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.15fr);
  gap: 2.25rem;
  align-items: start;
}
.about-mosaic-timeline {
  /* timeline has its own internal line; no outer card needed */
}
.about-mosaic-timeline .timeline { margin-top: 0.25rem; }
.about-mosaic-right {
  display: flex; flex-direction: column; gap: 1.75rem;
}
.about-service-block {
  padding: 1.75rem 1.8rem;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
}
.about-service-block .caption-fine {
  margin-top: 1rem; text-align: left;
}

/* What we do — feature cards stacked in a grid */
.about-feature-grid { display: grid; gap: 0.85rem; margin-top: 0.3rem; }
.about-feature {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
}
.about-feature h4 {
  font-family: 'Playfair Display', serif;
  color: var(--neon); font-size: 1.02rem; margin-bottom: 0.3rem;
}
.about-feature p {
  color: rgba(255,255,255,0.72); line-height: 1.55; font-size: 0.9rem; margin: 0;
}

/* Long service cards */
.long-service-grid {
  display: grid; gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.long-service-card {
  padding: 1.25rem 1rem 1.1rem;
  background: rgba(245,200,66,0.06);
  border: 1px solid rgba(245,200,66,0.22);
  border-radius: 14px; text-align: center;
}
.long-service-card--featured {
  background: linear-gradient(160deg, rgba(245,200,66,0.18), rgba(155,63,191,0.12));
  border-color: rgba(245,200,66,0.55);
  box-shadow: 0 0 20px rgba(245,200,66,0.12);
}
.long-service-card--featured .long-service-years {
  color: var(--neon); font-size: 1.75rem;
  text-shadow: 0 0 12px rgba(255,229,102,0.3);
}
.long-service-card--placeholder {
  background: rgba(255,255,255,0.025);
  border: 1px dashed rgba(255,255,255,0.18);
}
.long-service-card--placeholder .long-service-years {
  color: rgba(245,200,66,0.6);
}
.long-service-card--placeholder p {
  color: rgba(255,255,255,0.4);
}
.long-service-years {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 0.06em;
  color: var(--gold); margin-bottom: 0.3rem;
}

.long-service-card p {
  color: rgba(255,255,255,0.72); font-size: 0.72rem;
  line-height: 1.5; margin: 0;
}

/* Responsive collapse */
@media (max-width: 980px) {
  .about-editorial-row,
  .about-mosaic { grid-template-columns: 1fr; }
  .about-mosaic { gap: 2.75rem; }
  .col-heading, .col-intro-italic { text-align: center; }
  .about-service-block .caption-fine { text-align: center; }
}
@media (max-width: 720px) {
  .about-page-inner { padding: 2.5rem 1.25rem 4rem; }
  .about-section { margin-bottom: 3.5rem; }
  .about-lead-panel, .about-sidebar-panel, .about-service-block {
    padding: 1.5rem 1.25rem;
  }
}

/* ══ IMAGE CROPPING FIX — favour top of frame (faces over feet) ══ */
.gallery-item img {
  object-position: center top;
}
.prod-gallery img {
  object-position: center top;
}

/* ══ GALLERY FOOTER EXTRA LINK ══ */
.gallery-footer-gallery-link {
  color: var(--neon);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,229,102,0.3);
  font-weight: 600;
}
.gallery-footer-gallery-link:hover {
  border-bottom-color: var(--neon);
}

/* ══ GALLERY FULL PAGE ══ */
.gallery-full-page {
  background: var(--grad);
  min-height: 100vh;
}
.gallery-full-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.gallery-page-subhead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  text-align: center;
  margin: -1.2rem 0 2.5rem;
  line-height: 1.5;
}
.gallery-page-footer {
  text-align: center;
  margin-top: 2.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}
.gallery-page-footer a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,200,66,0.35);
}
.gallery-page-footer a:hover {
  color: var(--neon);
  border-bottom-color: var(--neon);
}

/* ══ MOSAIC GRID ══ */
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 0.9rem;
}
.mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: rgba(0,0,0,0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: block;
}
.mosaic-item--wide { grid-column: span 2; }
.mosaic-item--tall { grid-row: span 2; }
.mosaic-item--large { grid-column: span 2; grid-row: span 2; }
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s ease;
}
.mosaic-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,229,102,0.25);
}
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-caption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.92) 70%);
  padding: 2.5rem 1.1rem 1rem;
  color: white;
  font-family: 'Playfair Display', serif;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.mosaic-item:hover .mosaic-caption { transform: translateY(0); }
.mosaic-caption .gc-title { display: block; font-size: 0.97rem; font-weight: 700; line-height: 1.2; }
.mosaic-caption .gc-meta { display: block; font-size: 0.78rem; color: var(--gold); font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.1em; margin-top: 0.25rem; }
@media (max-width: 900px) {
  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .mosaic-item--wide { grid-column: span 2; }
  .mosaic-caption { transform: translateY(0); padding: 2rem 0.9rem 0.75rem; }
}
@media (max-width: 540px) {
  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .mosaic-item--wide { grid-column: span 1; }
}

/* ══ LIGHTBOX ══ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 2, 15, 0.93);
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}
.lightbox-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(92vw, 1100px);
  max-height: 90vh;
  animation: lightboxPop 0.3s ease;
}
@keyframes lightboxPop {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.75), 0 0 0 1px rgba(255,229,102,0.18);
  display: block;
  transition: opacity 0.15s ease;
}
.lightbox-caption {
  margin-top: 1rem;
  color: rgba(255,255,255,0.75);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 0.02em;
}
.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 3;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox-close:hover { background: rgba(255,100,100,0.35); border-color: rgba(255,100,100,0.5); }
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
@media (max-width: 600px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; }
}

/* ══ GALLERY ZOOM BUTTON ══ */
.gallery-zoom-btn {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s, border-color 0.2s;
  z-index: 5;
}
.gallery-item:hover .gallery-zoom-btn,
.mosaic-item:hover .gallery-zoom-btn {
  opacity: 1;
  transform: scale(1);
}
.gallery-zoom-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
/* Always visible on touch devices */
@media (hover: none) {
  .gallery-zoom-btn { opacity: 1; transform: scale(1); }
}

/* ══ ABOUT PAGE — ARCHIVE PHOTO GRID ══ */
.archive-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  /* 5 items: row 1 has 3, row 2 has 2 — centre the last 2 */
}
/* Nudge the 4th item to start at column 1 of a 3-col centred pair */
.archive-photo-item:nth-child(4) { grid-column: 1; }
/* Actually use a neat trick: make row 2 span centred by auto placement */

.archive-photo-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
/* Centre the 2nd row (items 4-5) within the 3-col grid */
.archive-photo-item:nth-child(4) {
  grid-column: 1 / 2;
  /* shift right by half a column to visually centre the pair */
  margin-left: calc(50% + 0.625rem);
  /* works out to col 1.5 in a 3-col grid — let's use a subgrid trick instead */
}

/* Simpler approach: wrap in a proper layout */
.archive-photo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.archive-photo-item {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
/* Centre last 2 items in a 6-col grid (each span 2, total 4 cols, offset 1) */
.archive-photo-item:nth-child(4) { grid-column: 2 / 4; }
.archive-photo-item:nth-child(5) { grid-column: 4 / 6; }

.archive-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: zoom-in;
  /* Variable height — let images breathe at natural ratio */
}
.archive-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 11px;
  transition: transform 0.4s ease;
  object-fit: cover;
  /* Tall items get a fixed height so row 1 is consistent */
}
.archive-photo-item--tall .archive-photo-wrap img {
  /* no fixed height — let portrait images show naturally */
}
.archive-photo-wrap:hover img {
  transform: scale(1.03);
}
.archive-photo-wrap .gallery-zoom-btn {
  opacity: 0;
  transform: scale(0.85);
}
.archive-photo-wrap:hover .gallery-zoom-btn {
  opacity: 1;
  transform: scale(1);
}

.archive-photo-caption {
  text-align: center;
}
.archive-photo-title {
  display: block;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.archive-photo-meta {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--gold);
  opacity: 0.8;
}

@media (max-width: 860px) {
  .archive-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .archive-photo-item        { grid-column: span 1; }
  .archive-photo-item:nth-child(4) { grid-column: span 1; }
  .archive-photo-item:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 500px) {
  .archive-photo-grid { grid-template-columns: 1fr; }
  .archive-photo-item,
  .archive-photo-item:nth-child(4),
  .archive-photo-item:nth-child(5) { grid-column: span 1; }
}

/* ══ NEW MEMBER STORY — with photo variant ══ */
.new-member-story-inner--with-photo {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 2rem;
  align-items: center;
}
.new-member-story-photo {
  position: relative;
  flex-shrink: 0;
}
.new-member-story-photo img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,229,102,0.15);
}
.new-member-story-photo .gallery-zoom-btn {
  opacity: 0;
  transform: scale(0.85);
}
.new-member-story-photo:hover .gallery-zoom-btn {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 680px) {
  .new-member-story-inner--with-photo {
    grid-template-columns: 1fr;
  }
  .new-member-story-photo {
    max-width: 240px;
    margin: 0 auto;
  }
}
