:root {
      --red:        #C8102E;
      --red-dark:   #9E0C24;
      --red-soft:   #FBE3E6;
      --gold:       #C98A00;
      --yellow:     #FFD100;
      --yellow-soft:#FFF5CC;
      --blue:       #003893;
      --blue-soft:  #E5EAF4;
      --off-white:  #FAFAF7;
      --warm-gray:  #F0EDE6;
      --stone:      #E4E0D8;
      --mid-gray:   #8A8680;
      --text:       #1C1A17;
      --text-light: #5C5854;
      --serif:      'Cormorant Garamond', Georgia, serif;
      --sans:       'Outfit', system-ui, sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
    body { font-family: var(--sans); background: var(--off-white); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: clip; max-width: 100vw; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    button { font-family: inherit; cursor: pointer; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
    .flag-stripe { height: 5px; background: linear-gradient(to right, var(--yellow) 33.33%, var(--blue) 33.33% 66.66%, var(--red) 66.66%); }

    /* ============ STARS (max 7) ============ */
    .star { display: inline-block; fill: var(--yellow); flex-shrink: 0; }
    .star-red   { fill: var(--red); }
    .star-blue  { fill: var(--blue); }
    .star-gold  { fill: var(--gold); }

    /* ============ BUTTONS ============ */
    .btn { display: inline-flex; align-items: center; gap: .5rem; border-radius: 100px; font-weight: 600; font-size: .87rem; letter-spacing: .015em; padding: .85rem 1.65rem; transition: transform .2s, box-shadow .2s, background .2s, color .2s; cursor: pointer; border: 1.5px solid transparent; line-height: 1; }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.08); }
    .btn-yellow { background: var(--yellow); color: var(--text); }
    .btn-yellow:hover { background: #FFE040; box-shadow: 0 10px 24px rgba(255,209,0,.32); }
    .btn-dark { background: var(--text); color: #fff; }
    .btn-dark:hover { background: var(--red); color: #fff; }
    .btn-outline { background: transparent; color: var(--text); border-color: var(--text); }
    .btn-outline:hover { background: var(--text); color: #fff; }
    .btn-sm { padding: .6rem 1.1rem; font-size: .8rem; }
    .btn svg.arrow { width: 14px; height: 14px; transition: transform .25s; }
    .btn:hover svg.arrow { transform: translateX(3px); }

    /* ============ NAV ============ */
    nav { position: sticky; top: 0; z-index: 200; background: rgba(250,250,247,0.92); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, background .3s; }
    nav.scrolled { border-bottom-color: var(--stone); background: rgba(250,250,247,.97); }
    .nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 76px; }
    .nav-logo { display: flex; align-items: center; gap: .8rem; }
    .nav-logo img { width: 46px; height: 46px; object-fit: contain; }
    .nav-name { display: flex; flex-direction: column; line-height: 1; font-family: var(--serif); }
    .nav-name .nm-1 { font-size: 1.05rem; font-weight: 700; color: var(--red); letter-spacing: .02em; }
    .nav-name .nm-2 { font-size: 1.35rem; font-weight: 500; color: var(--blue); font-style: italic; letter-spacing: -.02em; margin-top: -2px; }
    .nav-links { display: flex; gap: 1.8rem; align-items: center; }
    .nav-links a { font-size: .85rem; font-weight: 500; color: var(--text-light); letter-spacing: .01em; position: relative; transition: color .2s; }
    .nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-cta { background: var(--red); color: #fff !important; padding: .55rem 1.15rem; border-radius: 100px; font-weight: 600 !important; font-size: .83rem !important; }
    .nav-cta:hover { background: var(--red-dark); }
    .nav-cta::after { display: none !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: 0; }
    .hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .25s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-menu { display: none; flex-direction: column; background: #fff; border-top: 1px solid var(--stone); }
    .mobile-menu a { padding: .85rem 2rem; font-size: .95rem; color: var(--text-light); border-bottom: 1px solid var(--warm-gray); font-weight: 500; }
    .mobile-menu.open { display: flex; }

    /* ============ SECTION DEFAULTS ============ */
    section { padding: 6rem 2rem; position: relative; }
    .eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
    .eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--red); display: block; }
    .stitle { font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; color: var(--text); margin-bottom: .85rem; }
    .stitle em { font-style: italic; color: var(--red); font-weight: 500; }
    .ssub { font-size: 1.02rem; color: var(--text-light); line-height: 1.7; max-width: 640px; }

    /* ============ HERO ============ */
    .hero { padding: 5.5rem 2rem 5rem; min-height: 88vh; display: flex; align-items: center; background: linear-gradient(180deg, var(--off-white) 0%, #fff 100%); position: relative; overflow: hidden; }
    .hero::before { content: ''; position: absolute; top: -120px; right: -120px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(255,209,0,.18) 0%, transparent 70%); pointer-events: none; }
    .hero::after { content: ''; position: absolute; bottom: -160px; left: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(0,56,147,.06) 0%, transparent 70%); pointer-events: none; }

    .h-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; width: 100%; }
    .h-text { position: relative; }
    .h-tag { display: inline-flex; align-items: center; gap: .6rem; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text-light); margin-bottom: 1.4rem; background: #fff; padding: .55rem 1rem; border-radius: 100px; border: 1px solid var(--stone); }
    .h-tag .flagchip { width: 22px; height: 13px; border-radius: 2px; background: linear-gradient(180deg, var(--yellow) 33.33%, var(--blue) 33.33% 66.66%, var(--red) 66.66%); }
    h1 { font-family: var(--serif); font-size: clamp(2.6rem, 5.4vw, 4.4rem); font-weight: 500; line-height: 1; letter-spacing: -.02em; color: var(--text); margin-bottom: 1.4rem; }
    h1 em { font-style: italic; color: var(--red); font-weight: 500; }
    h1 .accent-y { color: var(--blue); font-style: italic; }
    .h-body { font-size: 1.05rem; color: var(--text-light); line-height: 1.75; max-width: 520px; margin-bottom: 1.4rem; }
    .h-body-2 { font-size: .95rem; color: var(--text-light); line-height: 1.7; max-width: 520px; margin-bottom: 2.2rem; font-style: italic; }
    .h-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }
    .h-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--stone); max-width: 520px; }
    .h-num { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: var(--blue); line-height: 1; margin-bottom: .25rem; }
    .h-lbl { font-size: .68rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; line-height: 1.3; }

    /* HERO VISUAL — refined collage instead of single dark photo */
    .h-visual { display: flex; justify-content: center; align-items: center; position: relative; padding: 2rem; }
    .collage { position: relative; width: 100%; max-width: 460px; aspect-ratio: 1/1.05; }
    .collage-frame {
      position: absolute;
      border-radius: 14px;
      background: var(--warm-gray);
      overflow: hidden;
      border: 1px solid var(--stone);
      display: flex; align-items: center; justify-content: center;
      color: var(--mid-gray); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
      text-align: center; padding: 1rem;
    }
    .collage-frame::before { content: ''; position: absolute; inset: 0; background:
      repeating-linear-gradient(45deg, transparent 0 18px, rgba(0,0,0,.025) 18px 20px); pointer-events: none; }
    .cf-1 { top: 0; left: 0; width: 66%; height: 76%; transform: rotate(-2deg); box-shadow: 0 24px 50px -22px rgba(0,0,0,.22); }
    .cf-2 { bottom: 0; right: 0; width: 50%; height: 56%; transform: rotate(3deg); box-shadow: 0 20px 40px -16px rgba(0,0,0,.18); background: linear-gradient(135deg, var(--yellow-soft), #fff); border-color: rgba(255,209,0,.35); }
    .cf-3 { bottom: 8%; left: 4%; width: 36%; height: 28%; transform: rotate(-5deg); background: var(--text); color: #fff; box-shadow: 0 14px 30px -8px rgba(0,0,0,.35); display: flex; flex-direction: column; gap: .25rem; padding: .9rem; font-family: var(--serif); font-style: italic; font-size: .85rem; letter-spacing: 0; text-transform: none; line-height: 1.3; }
    .cf-3 .qmark { color: var(--yellow); font-size: 1.5rem; font-family: var(--sans); font-style: normal; }
    .cf-stars { position: absolute; top: 12%; right: -6%; display: flex; flex-direction: column; gap: .6rem; opacity: .55; z-index: -1; }
    .cf-stars svg { width: 18px; height: 18px; }

    /* ============ ABOUT ============ */
    .about { background: #fff; }
    .ab-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 5rem; align-items: start; }
    .ab-left { position: sticky; top: 96px; }

    /* Photo frame — shared shell for both placeholder and real-photo states. */
    .ab-photo {
      position: relative;
      width: 100%;
      max-width: 100%;
      aspect-ratio: 4 / 5;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--stone);
      background: linear-gradient(135deg, var(--warm-gray), #fff);
    }
    /* Placeholder state (no <img> inside, i.e. .has-photo not applied). */
    .ab-photo:not(.has-photo) {
      display: flex; flex-direction: column; gap: .8rem;
      align-items: center; justify-content: center;
      padding: 1.5rem; text-align: center;
      color: var(--mid-gray); font-size: .72rem; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
    }
    .ab-photo:not(.has-photo)::before {
      content: ''; position: absolute; inset: 0;
      background: repeating-linear-gradient(45deg, transparent 0 22px, rgba(0,0,0,.022) 22px 24px);
      pointer-events: none;
    }
    .ab-photo svg.ph-icon { width: 48px; height: 48px; fill: currentColor; opacity: .35; }
    /* Photo state — real <img> fills the frame. Crop biased downward so the
       Sentir Venezuela banner stays visible while dancers' faces stay centered. */
    .ab-photo.has-photo { background: var(--text); }
    .ab-photo.has-photo > img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 38%;
      display: block;
    }

    /* Year/founded badge — overlays bottom-right corner of the photo. */
    .ab-badge {
      position: absolute; bottom: -1.4rem; right: -1.4rem;
      width: 132px; height: 132px; border-radius: 50%;
      background: var(--red); color: #fff;
      display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
      box-shadow: 0 14px 32px rgba(200,16,46,.28);
      z-index: 2;
    }
    .ab-badge .yr { font-family: var(--serif); font-size: 2.05rem; font-weight: 700; line-height: 1; }
    .ab-badge .sub { font-size: .58rem; text-transform: uppercase; letter-spacing: .14em; opacity: .9; margin-top: .25rem; font-weight: 600; }

    .ab-right { display: flex; flex-direction: column; gap: 1.85rem; min-width: 0; }
    .ab-right > * { min-width: 0; }
    .ab-section-label { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: .85rem; }
    .ab-quote { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--text); line-height: 1.55; padding-left: 1.6rem; border-left: 4px solid var(--yellow); overflow-wrap: break-word; }
    .highlights { display: flex; flex-direction: column; gap: .85rem; }
    /* Bullet via absolutely-positioned ::before so the text remains a normal block
       (not an anonymous flex item) and wraps at word boundaries like prose should. */
    .hl-item {
      position: relative;
      padding-left: 1.35rem;
      font-size: .94rem;
      color: var(--text-light);
      line-height: 1.6;
      overflow-wrap: break-word;
    }
    .hl-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: .68rem;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--red);
    }
    .hl-item a { color: var(--red); font-weight: 600; }
    .hl-item a:hover { text-decoration: underline; }
    .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .mc { background: var(--warm-gray); border-radius: 14px; padding: 1.4rem; transition: transform .25s; }
    .mc:hover { transform: translateY(-3px); }
    .mc h4 { font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: .55rem; font-family: var(--sans); }
    .mc p { font-size: .9rem; color: var(--text); line-height: 1.6; }
    .mc.blue { background: var(--blue); }
    .mc.blue h4 { color: var(--yellow); }
    .mc.blue p { color: rgba(255,255,255,.92); }
    .founders-row { display: flex; gap: .6rem; flex-wrap: wrap; }
    .fp { display: flex; align-items: center; gap: .55rem; background: var(--warm-gray); border-radius: 100px; padding: .3rem .95rem .3rem .3rem; font-size: .82rem; font-weight: 500; }
    .fp-avatar { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .68rem; font-weight: 700; color: #fff; flex-shrink: 0; letter-spacing: .04em; }
    .objectives { border-top: 1px solid var(--stone); padding-top: 1.5rem; }
    .objectives summary { font-family: var(--serif); font-size: 1.2rem; font-style: italic; cursor: pointer; list-style: none; display: flex; align-items: center; gap: .85rem; color: var(--text); }
    .objectives summary::-webkit-details-marker { display: none; }
    .objectives summary::before { content: '+'; width: 28px; height: 28px; border-radius: 50%; background: var(--text); color: var(--yellow); display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-size: 1.1rem; font-style: normal; font-weight: 400; transition: transform .25s; flex-shrink: 0; }
    .objectives[open] summary::before { transform: rotate(45deg); }
    .objectives ul { padding: 1rem 0 0 2.7rem; font-size: .9rem; color: var(--text-light); line-height: 1.7; list-style: disc; }
    .objectives li { margin-bottom: .35rem; }

    /* ============ TEAM ============ */
    .team { background: var(--off-white); }
    .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
    .tcard { background: #fff; border: 1px solid var(--stone); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s, border-color .3s; }
    .tcard:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -28px rgba(0,0,0,.22); border-color: var(--mid-gray); }
    .tc-photo { aspect-ratio: 4/3; background: var(--warm-gray); position: relative; overflow: hidden; }
    .tc-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .6s ease; }
    .tcard:hover .tc-photo img { transform: scale(1.05); }
    .tc-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background:
      repeating-linear-gradient(45deg, var(--yellow-soft) 0 14px, var(--warm-gray) 14px 28px); }
    .tc-ph span { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mid-gray); font-weight: 600; background: rgba(255,255,255,.7); padding: .35rem .6rem; border-radius: 4px; }
    /* Initials avatar shown when an instructor's photo file isn't found in src/instructor/. */
    .tc-avatar { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-size: 3rem; font-weight: 600; color: #fff; letter-spacing: .02em;
      background: linear-gradient(135deg, var(--blue), #001f5e); }
    .tc-credit { width: 100%; height: 100%; background: linear-gradient(135deg, var(--text) 0%, #2a2722 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .45rem; color: #fff; }
    .tc-credit svg { width: 26px; height: 26px; fill: var(--yellow); }
    .tc-credit span { font-family: var(--serif); font-style: italic; font-size: .92rem; }
    .tc-body { padding: 1.2rem 1.25rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
    .tc-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; letter-spacing: -.01em; margin-bottom: .25rem; line-height: 1.2; }
    .tc-role { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: .7rem; line-height: 1.4; }
    .tc-bio { font-size: .86rem; color: var(--text-light); line-height: 1.6; flex: 1; }
    .tc-more { font-size: .8rem; font-weight: 600; color: var(--blue); margin-top: .85rem; display: inline-flex; gap: .25rem; width: max-content; transition: gap .2s; }
    .tc-more:hover { gap: .55rem; }

    /* ============ PROGRAMS ============ */
    .programs { background: #fff; }
    .prog-banner { 
      margin-top: 2.5rem; 
      margin-bottom: 2.5rem; 
      border-radius: 18px; 
      overflow: hidden; 
      aspect-ratio: 24/9; 
      border: 1px solid var(--stone);
      position: relative;
      background: #f4f1eb; /* subtle fallback */
    }
    .prog-banner::before { 
      display: none; /* photo banner — no need for the pattern overlay */
    }
    .prog-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
    .pg-card { background: var(--off-white); border: 1px solid var(--stone); border-radius: 14px; padding: 1.7rem 1.6rem 1.5rem; transition: transform .25s, border-color .25s, background .25s; position: relative; }
    .pg-card::before { content: ''; position: absolute; top: 0; left: 1.6rem; width: 28px; height: 3px; background: var(--yellow); transition: width .3s; }
    .pg-card:hover { transform: translateY(-3px); border-color: var(--yellow); }
    .pg-card:hover::before { width: 60px; }
    .pg-icon { font-size: 1.5rem; margin: .35rem 0 .9rem; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 10px; background: var(--yellow-soft); }
    .pg-card h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; margin-bottom: .5rem; line-height: 1.25; }
    .pg-card p { font-size: .87rem; color: var(--text-light); line-height: 1.62; }

    /* Teaser styling for Art in the Park (wide card in programs grid) */
    .pg-wide {
      grid-column: span 3;
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      opacity: 0.7;
      background: var(--warm-gray);
      border-color: var(--stone);
      position: relative;
    }

    .pg-wide .pg-icon {
      margin: 0;
      opacity: 0.6;
    }
    .pg-wide-content {
      flex: 1;
      padding-right: 5.5rem; /* space for absolute badge */
    }
    .pg-wide h3 {
      font-size: 1.5rem;
      margin-bottom: .3rem;
      color: var(--mid-gray);
    }
    .pg-wide p {
      color: var(--mid-gray);
    }
    .coming-soon-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: var(--yellow);
      color: var(--text);
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .2rem .55rem;
      border-radius: 999px;
      box-shadow: 0 1px 3px rgba(0,0,0,.1);
      z-index: 2;
    }

    /* Teaser styling for programs that are still in development (wide card in programs grid) */

    .pg-dev {
      opacity: 0.7;
      background: var(--warm-gray);
      border-color: var(--stone);
      position: relative;
    }

    .pg-dev h3 {
      font-size: 1.5rem;
      margin-bottom: .3rem;
      color: var(--mid-gray);
    }
    .pg-dev p {
      color: var(--mid-gray);
    }

    .in-development-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: var(--yellow);
      color: var(--text);
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .2rem .55rem;
      border-radius: 999px;
      box-shadow: 0 1px 3px rgba(0,0,0,.1);
      z-index: 2;
    }

    .prog-ctas { display: flex; gap: .85rem; flex-wrap: wrap; justify-content: center; margin-top: 2.5rem; }

    /* ============ GET INVOLVED ============ */
    .get-involved { background: var(--off-white); }
    .gi-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 4.5rem; align-items: start; margin-top: 3rem; }
    .ways { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
    .way { display: flex; gap: 1.1rem; align-items: flex-start; background: #fff; border: 1px solid var(--stone); border-radius: 14px; padding: 1.3rem 1.35rem; transition: box-shadow .2s, transform .2s, border-color .2s; }
    .way:hover { box-shadow: 0 14px 32px -16px rgba(0,0,0,.14); transform: translateY(-2px); border-color: var(--red); }
    .wi { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
    .wi-red { background: var(--red-soft); }
    .wi-blue { background: var(--blue-soft); }
    .wi-gold { background: var(--yellow-soft); }
    .wb h4 { font-weight: 600; font-size: 1rem; margin-bottom: .2rem; }
    .wb p { font-size: .85rem; color: var(--text-light); line-height: 1.55; margin-bottom: .5rem; }
    .wb a.way-cta { color: var(--red); font-size: .8rem; font-weight: 600; display: inline-flex; align-items: center; gap: .25rem; transition: gap .2s; }
    .wb a.way-cta:hover { gap: .55rem; }

    .don-side h3 { font-family: var(--serif); font-size: 1.85rem; font-weight: 600; margin-bottom: .35rem; }
    .don-side .dsub { font-size: .95rem; color: var(--text-light); margin-bottom: 1.6rem; line-height: 1.65; }
    .tiers { display: flex; flex-direction: column; gap: .55rem; }
    .tier { display: flex; align-items: flex-start; gap: 1rem; background: #fff; border: 1px solid var(--stone); border-radius: 12px; padding: .9rem 1.1rem; border-left: 4px solid transparent; transition: border-left-color .25s, transform .2s; }
    .tier:hover { border-left-color: var(--red); transform: translateX(2px); }
    .tier .t-amt { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--red); flex-shrink: 0; min-width: 76px; line-height: 1.4; }
    .tier .t-desc { font-size: .85rem; color: var(--text-light); line-height: 1.55; flex: 1; }
    .tier.featured { background: linear-gradient(90deg, var(--yellow-soft), #fff); border-left-color: var(--yellow); position: relative; }
    .tier.featured .t-amt { color: var(--blue); }
    .tier.featured .star { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; }
    .tier.other .t-amt { color: var(--mid-gray); font-style: italic; }
    .don-info { margin-top: 1.5rem; background: var(--warm-gray); border-radius: 14px; padding: 1.35rem 1.5rem; font-size: .85rem; color: var(--text-light); line-height: 1.7; border-left: 4px solid var(--blue); }
    .don-info strong { color: var(--text); }
    .don-info a { color: var(--blue); border-bottom: 1px solid var(--blue); }
    .don-info .note { font-style: italic; font-size: .8rem; color: var(--mid-gray); margin-top: .5rem; display: block; }
    .don-quote { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--red); text-align: center; margin-top: 2.5rem; padding: 1.5rem; line-height: 1.45; }

    /* ============ PARTNERS ============ */
    .partners { background: #fff; padding: 4rem 2rem; }
    .partners-header { text-align: center; margin-bottom: 2.5rem; }
    .partners-header .eyebrow { justify-content: center; }
    .partners-header h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--text); }
    .partners-list { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); }
    .partners-list li { border-right: 1px solid var(--stone); text-align: center; }
    .partners-list li:last-child { border-right: 0; }
    .partners-list a { display: block; padding: 1.6rem .9rem; font-family: var(--serif); font-style: italic; font-size: 1.02rem; color: var(--text-light); transition: background .25s, color .25s; line-height: 1.3; }
    .partners-list a:hover { background: var(--off-white); color: var(--red); }

    /* ============ GALLERY ============ */
    .gallery { background: var(--off-white); }
    .gal-header-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
    .gtabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
    .gtab { padding: .55rem 1.15rem; border-radius: 100px; font-size: .8rem; font-weight: 600; cursor: pointer; border: 1px solid var(--stone); color: var(--text-light); background: #fff; transition: all .2s; font-family: var(--sans); }
    .gtab:hover { color: var(--text); border-color: var(--text); }
    .gtab.active { background: var(--text); color: #fff; border-color: var(--text); }
    .gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
    .gcell { border-radius: 12px; overflow: hidden; background: var(--warm-gray); position: relative; transition: transform .25s, box-shadow .25s, opacity .3s; cursor: pointer; }
    .gcell:hover { transform: scale(1.015); box-shadow: 0 18px 36px -16px rgba(0,0,0,.22); }
    .gcell img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
    .gcell:hover img { transform: scale(1.06); }
    .gcell.tall { grid-row: span 2; }
    .gcell.wide { grid-column: span 2; }
    .gcell.is-hidden { display: none; }
    /* Shimmer skeleton shown while we fetch random thumbnails from Appwrite. */
    .gcell.skeleton {
      background: linear-gradient(110deg, var(--warm-gray) 0%, var(--stone) 40%, var(--warm-gray) 80%);
      background-size: 200% 100%;
      animation: galShimmer 1.4s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes galShimmer {
      0%   { background-position: 100% 0; }
      100% { background-position: -100% 0; }
    }
    /* Empty/error state spans the full row */
    .gcell.notice {
      grid-column: 1 / -1;
      display: flex; align-items: center; justify-content: center;
      color: var(--mid-gray); font-size: .9rem;
      background: var(--warm-gray);
      padding: 1rem;
      cursor: default;
    }
    .gcell.notice a { color: var(--red); font-weight: 600; margin-left: .35rem; }
    /* Shuffle button — styled like the existing gtabs but with an icon */
    #galShuffle { display: inline-flex; align-items: center; gap: .45rem; }
    #galShuffle svg { width: 14px; height: 14px; fill: currentColor; }
    #galShuffle:disabled { opacity: .5; cursor: not-allowed; }
    .gal-social { margin-top: 2.25rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .9rem; color: var(--text-light); }
    .spill { display: flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid var(--stone); border-radius: 100px; padding: .55rem 1.1rem; font-size: .82rem; font-weight: 600; color: var(--text); transition: all .2s; }
    .spill:hover { border-color: var(--red); color: var(--red); }
    .spill svg { width: 16px; height: 16px; fill: currentColor; }

    /* ============ CONTACT ============ */
    .contact { background: #fff; }
    .ct-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
    .ct-info { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 1.4rem; }
    .ct-row { display: flex; gap: 1rem; align-items: flex-start; }
    .ci { width: 46px; height: 46px; border-radius: 12px; background: var(--warm-gray); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .ci svg { width: 20px; height: 20px; fill: var(--red); }
    .ct-row h5 { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--mid-gray); margin-bottom: .25rem; }
    .ct-row p, .ct-row a { font-size: .95rem; color: var(--text); }
    .ct-row a:hover { color: var(--red); }
    .soc-row { display: flex; gap: .65rem; margin-top: 1.5rem; flex-wrap: wrap; }
    .sb { display: flex; align-items: center; gap: .5rem; border: 1px solid var(--stone); border-radius: 8px; padding: .55rem .95rem; font-size: .82rem; font-weight: 600; color: var(--text-light); transition: all .2s; }
    .sb:hover { border-color: var(--red); color: var(--red); }
    .sb svg { width: 16px; height: 16px; fill: currentColor; }

    .cf-wrap { background: var(--off-white); border-radius: 18px; padding: 2.2rem 2rem; border: 1px solid var(--stone); }
    .cf-wrap h3 { font-family: var(--serif); font-size: 1.85rem; font-weight: 600; margin-bottom: .35rem; }
    .cf-wrap p.intro { font-size: .9rem; color: var(--text-light); margin-bottom: 1.65rem; line-height: 1.6; }
    .ff { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
    .ff label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); }
    .ff input, .ff textarea, .ff select { background: #fff; border: 1.5px solid var(--stone); border-radius: 8px; padding: .8rem 1rem; font-size: .92rem; font-family: var(--sans); color: var(--text); outline: none; width: 100%; transition: border-color .2s, background .2s; }
    .ff input:focus, .ff textarea:focus, .ff select:focus { border-color: var(--red); }
    .ff textarea { resize: vertical; min-height: 130px; }
    .form-success { margin-top: 1rem; padding: .85rem 1.1rem; background: var(--yellow-soft); border: 1px solid var(--yellow); border-radius: 8px; color: var(--text); font-size: .88rem; font-weight: 500; }
    .cf-or { margin-top: 1.2rem; font-size: .85rem; color: var(--text-light); text-align: center; }
    .cf-or a { color: var(--red); font-weight: 600; }

    /* ============ FOOTER ============ */
    footer { background: var(--warm-gray); color: var(--text-light); padding: 4rem 2rem 0; border-top: 1px solid var(--stone); }
    .ft-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 2fr; gap: 3.5rem; padding-bottom: 2.5rem; }
    .ft-brand img { width: 64px; margin-bottom: 1rem; }
    .ft-tag { font-family: var(--serif); font-size: 1.1rem; line-height: 1.45; color: var(--text); margin-bottom: .5rem; font-weight: 500; }
    .ft-tag svg.star { width: 14px; vertical-align: -2px; margin-right: 4px; }
    .ft-sub { font-size: .82rem; color: var(--text-light); font-style: italic; }
    .ft-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .ft-cols h5 { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-bottom: .85rem; }
    .ft-cols a { display: block; font-size: .87rem; padding: .3rem 0; color: var(--text-light); transition: color .2s; }
    .ft-cols a:hover { color: var(--text); }
    .ft-bottom { max-width: 1200px; margin: 0 auto; padding: 1.5rem 0; border-top: 1px solid var(--stone); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .78rem; color: var(--mid-gray); }
    .ft-bottom a:hover { color: var(--red); }

    /* ============ REVEAL ============ */
    .rv { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
    .rv.in { opacity: 1; transform: none; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
    .h-text > * { opacity: 0; animation: fadeUp .7s ease forwards; }
    .h-tag { animation-delay: .08s; }
    h1 { animation-delay: .22s; }
    .h-body { animation-delay: .36s; }
    .h-body-2 { animation-delay: .45s; }
    .h-ctas { animation-delay: .54s; }
    .h-stats { animation-delay: .68s; }
    .h-visual { opacity: 0; animation: fadeUp .85s .5s ease forwards; }

    @media (prefers-reduced-motion: reduce) {
      .rv, .h-text > *, .h-visual { opacity: 1 !important; transform: none !important; animation: none !important; }
      html { scroll-behavior: auto; }
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 1000px) {
      .h-content, .ab-grid, .gi-grid, .ct-grid { grid-template-columns: 1fr; gap: 3rem; }
      /* Grid items need min-width:0 so long words/links don't blow the column wider than the viewport. */
      .ab-grid > * { min-width: 0; }
      .ab-left { position: static; }
      /* Photo: full-width within the column, capped so it doesn't dominate the viewport. */
      .ab-photo {
        aspect-ratio: 4 / 3;
        max-width: min(520px, 100%);
        margin-inline: auto;
      }
      /* Badge moves INSIDE the photo on stacked layouts. Negative offsets get clipped
         by overflow:hidden on the photo, which made them look weird on phones. */
      .ab-badge {
        width: 96px; height: 96px;
        bottom: .8rem; right: .8rem;
      }
      .ab-badge .yr { font-size: 1.55rem; }
      .h-visual { order: -1; }
      .collage { max-width: 360px; }
      .team-grid, .prog-grid { grid-template-columns: 1fr 1fr; }
      .partners-list { grid-template-columns: repeat(2, 1fr); }
      .partners-list li { border-right: 0; border-bottom: 1px solid var(--stone); }
      .partners-list li:nth-child(2n) { border-right: 0; }
      .partners-list li:nth-child(odd) { border-right: 1px solid var(--stone); }
      .partners-list li:nth-last-child(-n+2) { border-bottom: 0; }
      .gal-grid { grid-template-columns: repeat(2, 1fr); }
      .gcell.wide { grid-column: span 1; }
      .ft-inner { grid-template-columns: 1fr; gap: 2.5rem; }

      .pg-wide {
        grid-column: span 2;
        opacity: 0.75;
      }
    }
    @media (max-width: 700px) {
      section { padding: 4rem 1.25rem; }
      /* Avoid double horizontal padding (section + container) on small screens. */
      .container { padding: 0; max-width: 100%; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .h-stats { grid-template-columns: 1fr; gap: 1rem; }
      .team-grid, .prog-grid, .mv-grid { grid-template-columns: 1fr; }

      /* About — phone polish */
      .about .stitle { font-size: 1.85rem; }
      .ab-right { gap: 1.3rem; }
      .ab-quote { font-size: 1.08rem; padding-left: 1rem; border-left-width: 3px; }
      .ab-photo {
        /* Shorter, wider crop on phones so the section feels lean. */
        aspect-ratio: 16 / 11;
        max-width: 100%;
        margin-inline: 0;
      }
      .ab-badge {
        width: 76px; height: 76px;
        bottom: .55rem; right: .55rem;
      }
      .ab-badge .yr { font-size: 1.25rem; }
      .ab-badge .sub { font-size: .5rem; letter-spacing: .12em; }
      .hl-item { font-size: .9rem; }
      .mv-grid { gap: .75rem; }
      .mc { padding: 1.1rem 1.15rem; }
      .founders-row { gap: .4rem; }
      .fp { font-size: .76rem; padding: .25rem .75rem .25rem .25rem; }
      .fp-avatar { width: 26px; height: 26px; font-size: .6rem; }
      .objectives summary { font-size: 1rem; gap: .6rem; }
      .objectives summary::before { width: 24px; height: 24px; font-size: 1rem; }
      .objectives ul { padding: .9rem 0 0 2.2rem; font-size: .86rem; }

      .pg-wide {
        grid-column: span 1;
        opacity: 0.8;
      }
      .partners-list { grid-template-columns: 1fr; }
      .partners-list li { border-right: 0; border-bottom: 1px solid var(--stone); }
      .partners-list li:last-child { border-bottom: 0; }
      .partners-list li:nth-child(odd) { border-right: 0; }
      .gal-grid { grid-auto-rows: 160px; }
      .ft-cols { grid-template-columns: 1fr 1fr; }
      .cf-wrap { padding: 1.6rem 1.3rem; }
      h1 { font-size: 2.3rem; }
      .nav-name .nm-2 { font-size: 1.15rem; }
      .nav-cta { display: none; }
    }
    @media (max-width: 380px) {
      .ab-photo { aspect-ratio: 5 / 4; }
      .ab-badge { width: 64px; height: 64px; bottom: .45rem; right: .45rem; }
      .ab-badge .yr { font-size: 1.05rem; }
      .ab-badge .sub { font-size: .45rem; }
      .founders-row .fp { font-size: .72rem; }
    }
  
    /* Instruments seal in hero collage */
    /* Free-floating editorial silhouettes — no frame */
    .cf-instruments-corner {
      position: absolute;
      bottom: 0%;
      right: -8%;
      width: 45%;
      z-index: 10;
      pointer-events: none;
      filter:
        drop-shadow(2px 6px 14px rgba(0,0,0,.18))
        drop-shadow(-1px -2px 6px rgba(0,0,0,.06));
    }
    .cf-instruments-free {
      position: absolute;
      bottom: -6%;
      right: -10%;
      width: 64%;
      z-index: 10;
      pointer-events: none;
      filter:
        drop-shadow(2px 6px 14px rgba(0,0,0,.18))
        drop-shadow(-1px -2px 6px rgba(0,0,0,.06));
    }

    /* Hero dancer — frameless editorial silhouette */
    .cf-photo-free {
      position: absolute;
      top: 43%;
      left: 50%;
      width: min(43vw, 620px);
      max-width: none;
      height: auto;
      object-fit: contain;
      object-position: center;
      z-index: 2;
      pointer-events: none;
      transform: translate(-50%, -50%) rotate(-2deg);
      -webkit-mask-image: linear-gradient(to bottom, #000 48%, transparent 96%);
      mask-image: linear-gradient(to bottom, #000 48%, transparent 96%);
      filter:
        drop-shadow(2px 4px 14px rgba(0,0,0,.16))
        drop-shadow(-1px -2px 6px rgba(0,0,0,.06));
    }
    .cf-3 { z-index: 4; }
    .cf-1.cf-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    /* ============ BIO MODAL ============ */
    .bio-backdrop { position: fixed; inset: 0; background: rgba(10,8,6,.55); z-index: 500; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
    .bio-backdrop.open { opacity: 1; pointer-events: all; }
    .bio-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%) scale(.97); z-index: 501; width: min(680px, 94vw); max-height: 88vh; overflow-y: auto; background: #fff; border-radius: 20px; box-shadow: 0 40px 80px -20px rgba(0,0,0,.35); opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; }
    .bio-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%) scale(1); }
    .bio-modal-inner { padding: 2.2rem 2.4rem 2.4rem; }
    .bio-modal-close { position: absolute; top: 1.1rem; right: 1.2rem; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--stone); background: var(--warm-gray); color: var(--text-light); font-size: 1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
    .bio-modal-close:hover { background: var(--red-soft); border-color: var(--red); color: var(--red); }
    .bio-top { display: flex; gap: 1.5rem; align-items: flex-start; margin-bottom: 1.5rem; }
    .bio-photo-wrap { width: 100px; height: 100px; border-radius: 14px; overflow: hidden; background: var(--warm-gray); flex-shrink: 0; border: 1px solid var(--stone); position: relative; }
    .bio-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
    .bio-avatar { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 2rem; font-weight: 600; color: #fff; }
    .bio-info { flex: 1; }
    .bio-name { font-family: var(--serif); font-size: 1.75rem; font-weight: 600; line-height: 1.1; margin-bottom: .3rem; color: var(--text); }
    .bio-role { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red); }
    .bio-divider { height: 1px; background: var(--stone); margin-bottom: 1.4rem; }
    .bio-text { font-size: .95rem; color: var(--text-light); line-height: 1.75; }
    .bio-text p + p { margin-top: .9rem; }
    @media (max-width: 500px) {
      .bio-top { flex-direction: column; gap: 1rem; }
      .bio-photo-wrap { width: 80px; height: 80px; }
      .bio-modal-inner { padding: 1.6rem 1.4rem 2rem; }
    }