    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    /* ── PALETTE ──────────────────────────────────────────
       Pure white base. Hot pink brand. Black for authority.
       Tiny sage + coral accents. Think: Vogue meets ministry.
    ──────────────────────────────────────────────────── */
    :root {
      --white:   #FFFFFF;
      --snow:    #FAFAFA;
      --off:     #F4F1ED;           /* barely-there warm tint */
      --ink:     #0A0A0A;           /* pure near-black */
      --mid:     #6B6460;           /* warm gray text */
      --pink:    #E8458C;           /* brand hot pink */
      --pink-lt: #FF6BA8;
      --pink-pale: #FFF0F6;
      --coral:   #FF6B52;           /* accent */
      --sage:    #5E8B75;           /* accent */
      --border:  rgba(10,10,10,0.08);
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }
    body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; max-width: 100%; }

    /* ── NAV ─────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: 70px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 4rem;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .n-logo { height: 70px; width: auto; display: block; }
    .n-links { display: flex; gap: 1.75rem; list-style: none; }
    .n-links a { color: var(--mid); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; transition: color 0.2s; }
    .n-links a:hover { color: var(--pink); }
    .n-cta { background: var(--pink); color: var(--white); padding: 0.6rem 1.6rem; border-radius: 4px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
    .n-cta:hover { background: var(--pink-lt); }

    /* ── TICKER ──────────────────────────────────────── */
    .ticker { position: fixed; top: 70px; left: 0; right: 0; z-index: 199; height: 32px; background: var(--ink); overflow: hidden; display: flex; align-items: center; }
    .tck-track { display: flex; animation: run 32s linear infinite; white-space: nowrap; }
    .tck-track:hover { animation-play-state: paused; }
    .tck-item { padding: 0 3rem; font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.12em; text-transform: uppercase; flex-shrink: 0; }
    .tck-item em { color: var(--pink); font-style: normal; }
    @keyframes run { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

    /* ── HERO PHOTO CAROUSEL ─────────────────────────── */
    .hero {
      position: relative;
      height: calc(100vh - 102px);
      min-height: 500px;
      margin-top: 102px;   /* nav 70px + ticker 32px */
      overflow: hidden;
    }

    /* Ken-Burns slides */
    .hs-slides { position: absolute; inset: 0; }
    .hs-slide {
      position: absolute; inset: 0;
      opacity: 0;
      transition: opacity 1.4s ease;
    }
    .hs-slide.active { opacity: 1; }
    .hs-slide-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      background-color: #000;
    }

    /* Slide backgrounds are set entirely by JS (SITE_MEDIA config above) */

    /* ── Split slide: portrait left, text right, dark bg ── */
    .hs-slide-split { background: #0A0A0A; }
    .hs-split-portrait {
      position: absolute;
      left: 0; bottom: 0;
      height: 100%;
      width: auto;
      max-width: 48%;
      object-fit: cover;
      object-position: center top;
      -webkit-mask-image: linear-gradient(to right, black 55%, transparent 100%);
      mask-image: linear-gradient(to right, black 55%, transparent 100%);
    }
    .hs-split-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        to right,
        transparent 30%,
        rgba(10,10,10,0.5) 50%,
        rgba(10,10,10,0.85) 70%,
        #0A0A0A 100%
      );
    }
    .hs-split-text {
      position: absolute;
      left: 45%; right: 0;
      top: 50%; transform: translateY(-50%);
      padding: 2rem 4rem 2rem 2rem;
      z-index: 10;
    }
    .hs-split-eyebrow {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--pink);
      margin-bottom: 1rem;
    }
    .hs-split-heading {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 5vw, 5rem);
      font-weight: 900; line-height: 1.05;
      letter-spacing: -0.03em; color: var(--white);
      margin-bottom: 1.25rem;
    }
    .hs-split-sub {
      font-size: clamp(0.82rem, 1.3vw, 1rem);
      color: rgba(255,255,255,0.78);
      font-weight: 300; line-height: 1.7;
      max-width: 420px;
      font-style: italic;
      margin-bottom: 0.5rem;
    }
    .hs-split-ref {
      font-size: clamp(0.82rem, 1.3vw, 1rem);
      color: var(--white);
      font-weight: 700;
      letter-spacing: 0.02em;
    }
    @media (max-width: 700px) {
      .hs-split-portrait { max-width: 70%; opacity: 0.4; }
      .hs-split-text { left: 0; right: 0; padding: 2rem; text-align: center; }
      .hs-split-sub { max-width: 100%; }
    }

    /* Dark overlay so text is always readable */
    .hs-slide::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.02) 40%,
        rgba(0,0,0,0.25) 100%
      );
    }

    /* Caption overlay: centred on slide */
    .hs-caption {
      position: absolute; inset: 0; z-index: 10;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      padding: 2rem;
      overflow: hidden;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.9s ease 0.4s, transform 0.9s ease 0.4s;
    }
    .hs-slide.active .hs-caption { opacity: 1; transform: translateY(0); }

    .hs-badge {
      display: inline-block;
      border: 1.5px solid rgba(255,255,255,0.6);
      color: rgba(255,255,255,0.9);
      padding: 0.35rem 1.25rem; border-radius: 50px;
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
      margin-bottom: 1.75rem;
      backdrop-filter: blur(8px);
    }
    .hs-logo-wrap { margin-bottom: 1.5rem; }

    .hs-h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.8rem, 6vw, 6.5rem);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--white);
      margin-bottom: 1.25rem;
      max-width: 90vw;
      word-break: break-word;
    }
    .hs-h1 em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.85); }

    .hs-tagline {
      font-size: clamp(0.82rem, 1.5vw, 1.15rem);
      color: rgba(255,255,255,0.78);
      letter-spacing: 0.04em;
      margin-bottom: 2.5rem;
      font-weight: 300;
      max-width: min(560px, 88vw);
      word-break: break-word;
    }
    .hs-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    .btn-pink {
      background: var(--pink); color: var(--white);
      padding: 1rem 2.5rem; border-radius: 4px;
      font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
      text-decoration: none; border: none; cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-pink:hover { background: var(--pink-lt); transform: translateY(-2px); }
    .btn-lined {
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(8px);
      color: var(--white);
      padding: 1rem 2.5rem; border-radius: 4px;
      border: 1.5px solid rgba(255,255,255,0.5);
      font-size: 0.85rem; font-weight: 600;
      text-decoration: none; cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
    }
    .btn-lined:hover { background: rgba(255,255,255,0.22); border-color: white; }

    /* Slide counter top-right */
    .hs-counter {
      position: absolute; top: 1.5rem; right: 2rem; z-index: 20;
      font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.6);
      letter-spacing: 0.12em;
    }

    /* Prev / next arrows */
    .hs-arrow {
      position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
      width: 52px; height: 52px; border-radius: 50%;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.3);
      color: white; font-size: 1.4rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background 0.2s;
    }
    .hs-arrow:hover { background: rgba(232,69,140,0.5); border-color: var(--pink); }
    .hs-arrow-l { left: 1.5rem; }
    .hs-arrow-r { right: 1.5rem; }

    /* Dot nav bottom-centre */
    .hs-dots {
      position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
      z-index: 20; display: flex; gap: 0.5rem; align-items: center;
    }
    .hs-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,0.35); border: none; cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }
    .hs-dot.active { background: var(--pink); transform: scale(1.4); }

    /* Thin progress bar at very bottom of hero */
    .hs-progress {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 20;
      height: 3px; background: rgba(255,255,255,0.15);
    }
    .hs-progress-bar {
      height: 100%; background: var(--pink);
      width: 0%; transition: none;
    }

    /* ── INFO BAR (below hero) ───────────────────────── */
    .info-bar {
      background: var(--ink);
      display: grid; grid-template-columns: 0.6fr 1.6fr 1fr 1.2fr;
    }
    .ib-cell {
      padding: 2rem 2.5rem;
      border-right: 1px solid rgba(255,255,255,0.07);
      display: flex; flex-direction: column; gap: 0.4rem;
    }
    .ib-cell:last-child { border-right: none; }
    .ib-label {
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--pink);
    }
    .ib-value { font-size: 1rem; font-weight: 600; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    /* ── COUNTDOWN BAR (white bar) ───────────────────── */
    .cd-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 2rem 4rem;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 2rem;
    }
    .cd-bar-left { display: flex; flex-direction: column; gap: 0.25rem; }
    .cd-bar-left .cd-theme {
      font-family: 'Fraunces', serif; font-style: italic;
      font-size: 1.2rem; color: var(--ink);
    }
    .cd-bar-left .cd-sub {
      font-size: 0.78rem; color: var(--mid); letter-spacing: 0.04em;
    }
    .cd-group { display: flex; align-items: center; gap: 1rem; }
    .cd-unit { text-align: center; }
    .cd-num {
      font-family: 'Fraunces', serif;
      font-size: 3rem; font-weight: 900;
      color: var(--ink); line-height: 1; display: block;
    }
    .cd-lbl { font-size: 0.58rem; color: var(--mid); letter-spacing: 0.15em; text-transform: uppercase; }
    .cd-colon { font-family: 'Fraunces', serif; font-size: 2.5rem; color: var(--pink); padding-bottom: 0.5rem; font-weight: 900; }
    .cd-bar-right { display: flex; flex-wrap: wrap; gap: 0.6rem; }
    .etag { padding: 0.45rem 1rem; border-radius: 50px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; }
    .etag-dark { background: var(--ink); color: var(--white); }
    .etag-pink { background: var(--pink-pale); color: var(--pink); border: 1px solid rgba(232,69,140,0.25); }
    .etag-sage { background: rgba(94,139,117,0.1); color: var(--sage); border: 1px solid rgba(94,139,117,0.2); }

    /* ── SHARED ──────────────────────────────────────── */
    .s { padding: 6rem 4rem; }
    .si { max-width: 1200px; margin: 0 auto; }
    .eye { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.75rem; }
    .hd { font-family: 'Fraunces', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 900; color: var(--ink); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1.5rem; }
    .hd em { font-style: italic; color: var(--pink); font-weight: 300; }
    .pink-bar { width: 36px; height: 3px; background: var(--pink); border-radius: 2px; margin-bottom: 2.5rem; }

    /* ── SCRIPTURE MARQUEE (full-bleed pink) ────────── */
    .scr-band { background: var(--pink); padding: 1.5rem 0; overflow: hidden; }
    .scr-track { display: flex; animation: run 45s linear infinite; white-space: nowrap; }
    .scr-track:hover { animation-play-state: paused; }
    .scr-item { padding: 0 4rem; flex-shrink: 0; display: flex; align-items: center; gap: 1.5rem; }
    .scr-text { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,0.92); }
    .scr-star { color: rgba(255,255,255,0.4); }

    /* ── ABOUT ───────────────────────────────────────── */
    .ab-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
    .ab-text p { color: var(--mid); font-size: 1.02rem; line-height: 1.9; margin-bottom: 1.3rem; }
    .ab-text p:first-of-type { font-size: 1.15rem; color: var(--ink); font-weight: 400; }
    .ab-cards { display: flex; flex-direction: column; gap: 0; border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; }
    .ab-card { padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); display: flex; gap: 1.25rem; align-items: flex-start; transition: background 0.2s; }
    .ab-card:last-child { border-bottom: none; }
    .ab-card:hover { background: var(--pink-pale); }
    .ab-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--pink-pale); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
    .ab-card h4 { font-size: 0.92rem; font-weight: 700; color: var(--ink); margin-bottom: 0.25rem; }
    .ab-card p { font-size: 0.82rem; color: var(--mid); line-height: 1.6; margin: 0; }

    /* ── SPEAKERS CAROUSEL ───────────────────────────── */
    .spk-s { background: var(--snow); }
    .spk-carousel { position: relative; overflow: visible; margin-top: 3rem; }
    .spk-carousel > div { overflow: hidden; }
    .spk-track { display: flex; gap: 1.5rem; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
    .spk-card {
      flex: 0 0 calc(25% - 1.125rem); min-width: 210px;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 2rem 1.5rem; text-align: center;
      transition: border-color 0.25s, transform 0.25s;
    }
    .spk-card:hover { border-color: var(--pink); transform: translateY(-5px); }
    .spk-av { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1rem; background: var(--pink-pale); border: 2px solid var(--pink); display: flex; align-items: center; justify-content: center; color: var(--pink); font-size: 1.6rem; }
    .spk-nm { font-family: 'Fraunces', serif; font-size: 1rem; color: var(--ink); margin-bottom: 0.2rem; font-weight: 700; }
    .spk-rl { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.75rem; }
    .spk-bi { font-size: 0.8rem; color: var(--mid); line-height: 1.6; }
    .arrow-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 44px; height: 44px; border-radius: 50%; background: var(--pink); border: none; color: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.4rem; transition: background 0.2s, transform 0.2s; box-shadow: 0 4px 16px rgba(232,69,140,0.35); }
    .arrow-btn:hover { background: var(--pink-lt); transform: translateY(-50%) scale(1.1); }
    .arrow-l { left: -26px; }
    .arrow-r { right: -26px; }

    /* ── SCHEDULE ────────────────────────────────────── */
    .sch-wrap { display: grid; grid-template-columns: 180px 1fr; gap: 3rem; margin-top: 3rem; align-items: start; }
    .sch-days { display: flex; flex-direction: column; gap: 0.5rem; position: sticky; top: 80px; }
    .day-tab { padding: 1rem 1.25rem; border-radius: 8px; border: 1.5px solid var(--border); background: var(--white); cursor: pointer; text-align: left; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
    .day-tab.act { background: var(--pink); border-color: var(--pink); }
    .day-tab .dlbl { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); display: block; margin-bottom: 0.15rem; }
    .day-tab.act .dlbl { color: rgba(255,255,255,0.7); }
    .day-tab .ddate { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 700; color: var(--ink); }
    .day-tab.act .ddate { color: var(--white); }
    .spanel2 { display: none; }
    .spanel2.act { display: flex; flex-direction: column; gap: 0; }
    .sch-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 1.5rem; padding: 1.5rem 1.25rem; border-radius: 8px; align-items: center; transition: background 0.15s; }
    .sch-row:hover { background: var(--snow); }
    .sch-time { font-family: 'Fraunces', serif; font-size: 0.88rem; font-style: italic; color: var(--pink); font-weight: 700; }
    .sch-title { font-weight: 700; color: var(--ink); font-size: 0.95rem; margin-bottom: 0.2rem; }
    .sch-detail { font-size: 0.8rem; color: var(--mid); }
    .chip { padding: 0.2rem 0.65rem; border-radius: 50px; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
    .chip-k { background: var(--pink-pale); color: var(--pink); }
    .chip-w { background: rgba(94,139,117,0.1); color: var(--sage); }
    .chip-p { background: rgba(255,107,82,0.1); color: var(--coral); }
    .chip-n { background: var(--off); color: var(--mid); }

    /* ── HISTORY ─────────────────────────────────────── */
    .hist-s { background: var(--ink); }
    .hist-s .eye { color: var(--pink); }
    .hist-s .hd { color: var(--white); }
    .hist-car { position: relative; overflow: visible; margin-top: 3rem; }
    .hist-car > div { overflow: hidden; }
    .hist-trk { display: flex; gap: 1.5rem; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
    .hc {
      flex: 0 0 calc(33.333% - 1rem); min-width: 260px;
      border-radius: 12px; overflow: hidden;
      border: 1px solid rgba(255,255,255,0.07);
      transition: border-color 0.3s, transform 0.3s;
    }
    .hc:hover { border-color: var(--pink); transform: translateY(-4px); }
    .hc-media { height: 180px; background: rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: center; position: relative; color: rgba(255,255,255,0.1); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
    .hc-yr { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--pink); color: var(--white); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.65rem; border-radius: 3px; }
    .hc-play { position: absolute; width: 46px; height: 46px; border-radius: 50%; background: rgba(232,69,140,0.85); display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; cursor: pointer; }
    .hc-play:hover { transform: scale(1.1); }
    .no-play-btn .hc-play { display: none; }
    .hc-body { padding: 1.5rem; background: rgba(255,255,255,0.02); }
    .hc-title { font-family: 'Fraunces', serif; color: var(--white); font-size: 1rem; margin-bottom: 0.4rem; font-weight: 700; }
    .hc-desc { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 0.75rem; }
    .hc-meta { display: flex; gap: 1rem; font-size: 0.7rem; color: var(--pink); align-items: center; flex-wrap: nowrap; }
    .h-dotrow { display: flex; gap: 0.5rem; justify-content: center; margin-top: 2rem; }
    .hdot2 { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.15); border: none; cursor: pointer; transition: background 0.3s; }
    .hdot2.act { background: var(--pink); }

    /* ── TESTI MARQUEE ───────────────────────────────── */
    .tm-band { background: var(--pink-pale); padding: 3rem 0; overflow: hidden; border-top: 1px solid rgba(232,69,140,0.1); border-bottom: 1px solid rgba(232,69,140,0.1); }
    .tm-track { display: flex; animation: run 55s linear infinite; white-space: nowrap; }
    .tm-track:hover { animation-play-state: paused; }
    .tm-item { padding: 0 3rem; flex-shrink: 0; display: flex; align-items: center; gap: 1.5rem; }
    .tm-q { font-family: 'Fraunces', serif; font-style: italic; font-size: 0.95rem; color: var(--ink); max-width: 380px; white-space: normal; line-height: 1.65; }
    .tm-who { flex-shrink: 0; border-left: 2px solid var(--pink); padding-left: 1rem; white-space: nowrap; }
    .tm-name { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
    .tm-loc { font-size: 0.72rem; color: var(--mid); }
    .tm-sep { color: var(--pink); font-size: 1.5rem; padding: 0 1.5rem; }

    /* ── REGISTRATION ────────────────────────────────── */
    .reg-s { background: var(--white); }
    .reg-wrapper {
      max-width: 820px; margin: 3rem auto 0;
      border: 1.5px solid var(--border);
      border-radius: 16px; overflow: hidden;
    }
    .reg-top {
      background: var(--ink);
      padding: 2.5rem 3rem;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
    }
    .reg-top-title { font-family: 'Fraunces', serif; font-size: 1.7rem; color: var(--white); font-weight: 900; margin-bottom: 0.2rem; }
    .reg-top-sub { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
    .reg-price-big { font-family: 'Fraunces', serif; font-size: 3.8rem; color: var(--pink); line-height: 1; font-weight: 900; }
    .reg-price-big sup { font-size: 1.6rem; vertical-align: super; }
    .reg-price-note { font-size: 0.68rem; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; text-transform: uppercase; }
    .reg-body { padding: 2.5rem 3rem; }
    .reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 2.5rem; }
    .ri2 { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.88rem; color: var(--mid); }
    .ri2-ck { width: 18px; height: 18px; border-radius: 4px; background: var(--pink-pale); border: 1.5px solid var(--pink); display: flex; align-items: center; justify-content: center; color: var(--pink); font-size: 0.6rem; flex-shrink: 0; margin-top: 0.1rem; }
    .rf { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
    .rfg { display: flex; flex-direction: column; gap: 0.35rem; }
    .rfg.full { grid-column: 1/-1; }
    .rfg label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); }
    .rfg input, .rfg select, .rfg textarea { padding: 0.8rem 1rem; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--ink); background: var(--snow); transition: border-color 0.2s; }
    .rfg input:focus, .rfg select:focus, .rfg textarea:focus { outline: none; border-color: var(--pink); background: var(--white); }
    .rfg input::placeholder, .rfg textarea::placeholder { color: rgba(107,100,96,0.4); }
    .rfg select option { background: white; }
    .rfg textarea { min-height: 80px; resize: vertical; }
    .reg-btn { margin-top: 2rem; width: 100%; padding: 1.1rem; background: var(--pink); color: var(--white); border: none; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, transform 0.15s; }
    .reg-btn:hover { background: var(--pink-lt); transform: translateY(-1px); }
    .reg-btn:disabled { background: #C8C4C0; cursor: not-allowed; transform: none; }

    /* ── GALLERY — ALBUM CAROUSEL ───────────────────── */
    .gal-s { background: var(--ink); padding: 6rem 4rem; }
    .gal-s .eye { color: var(--pink); }
    .gal-s .hd { color: var(--white); }
    .gal-body { margin-top: 3rem; }
    .gal-empty { color: rgba(255,255,255,0.35); font-style: italic; text-align: center; padding: 3rem 0; }

    /* ── Carousel ── */
    .gal-carousel-wrap { position: relative; }
    .gal-track-outer { overflow: hidden; }
    .gal-track {
      display: flex;
      gap: 20px;
      transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
      will-change: transform;
    }

    /* Album cards — width driven by JS via inline style */
    .gal-album-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 4/3;
      flex-shrink: 0;
      border: 2px solid transparent;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    }
    .gal-album-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(232,69,140,0.18); }
    .gal-album-card.active { border-color: var(--pink); box-shadow: 0 0 0 1px var(--pink), 0 24px 60px rgba(232,69,140,0.25); }

    .gal-cover-img { position: absolute; inset: 0; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
    .gal-cover-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .gal-album-card:hover .gal-cover-img,
    .gal-album-card.active .gal-cover-img { transform: scale(1.06); }

    .gal-cover-gradient {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.92) 100%);
    }
    .gal-cover-content {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 24px;
    }
    .gal-year-label {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.5rem,5vw,4rem);
      font-weight: 700; line-height: 1; color: var(--white);
      letter-spacing: -0.03em; margin-bottom: 8px;
    }
    .gal-card-footer { display: flex; align-items: center; justify-content: space-between; }
    .gal-count-badge {
      background: rgba(232,69,140,0.2); border: 1px solid rgba(232,69,140,0.4);
      border-radius: 100px; padding: 4px 12px;
      font-size: 11px; font-weight: 600; color: var(--pink); letter-spacing: 0.06em;
    }
    .gal-view-btn {
      display: flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 600; color: var(--white);
      background: rgba(232,69,140,0.15); border: 1px solid rgba(232,69,140,0.3);
      border-radius: 100px; padding: 7px 16px; cursor: pointer;
      transition: background 0.25s, border-color 0.25s;
    }
    .gal-view-btn svg { width: 14px; height: 14px; }
    .gal-album-card:hover .gal-view-btn,
    .gal-album-card.active .gal-view-btn { background: var(--pink); border-color: var(--pink); }

    /* Carousel nav */
    .gal-carousel-nav { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 20px; }
    .gal-carousel-btn {
      width: 40px; height: 40px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.6); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: 0.25s;
    }
    .gal-carousel-btn:hover:not(:disabled) { border-color: var(--pink); color: var(--pink); background: rgba(232,69,140,0.1); }
    .gal-carousel-btn:disabled { opacity: 0.25; cursor: default; }
    .gal-carousel-btn svg { width: 18px; height: 18px; }
    .gal-dots { display: flex; gap: 6px; align-items: center; }
    .gal-dot {
      width: 7px; height: 7px; border-radius: 50%; border: none;
      background: rgba(255,255,255,0.2); cursor: pointer;
      transition: background 0.25s, transform 0.25s; padding: 0;
    }
    .gal-dot.gal-dot-active { background: var(--pink); transform: scale(1.5); }

    /* ── Album panel ── */
    .gal-panel-wrap { overflow: hidden; max-height: 0; transition: max-height 0.55s cubic-bezier(0.4,0,0.2,1); }
    .gal-panel-wrap.open { max-height: 500px; }
    .gal-panel {
      background: rgba(255,255,255,0.04); border-radius: 16px;
      padding: 28px; margin-top: 20px;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .gal-panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
    .gal-panel-title { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--white); font-weight: 400; }
    .gal-panel-close {
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12); background: transparent;
      color: rgba(255,255,255,0.45); cursor: pointer;
      display: flex; align-items: center; justify-content: center; transition: 0.25s;
    }
    .gal-panel-close:hover { background: rgba(255,255,255,0.06); color: var(--white); }
    .gal-panel-close svg { width: 16px; height: 16px; }

    /* ── Photo strip ── */
    .gal-strip-wrap { position: relative; }
    .gal-strip {
      display: flex; gap: 12px;
      overflow-x: auto; scroll-behavior: smooth;
      padding-bottom: 8px;
      scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.15) transparent;
    }
    .gal-strip::-webkit-scrollbar { height: 4px; }
    .gal-strip::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
    .gal-strip-item {
      flex: 0 0 220px; border-radius: 10px; overflow: hidden;
      cursor: pointer; aspect-ratio: 4/3; position: relative;
    }
    .gal-strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
    .gal-strip-item:hover img { transform: scale(1.07); }
    .gal-strip-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 55%);
      opacity: 0; transition: opacity 0.25s;
      display: flex; align-items: flex-end; padding: 12px;
    }
    .gal-strip-item:hover .gal-strip-overlay { opacity: 1; }
    .gal-strip-title { font-family: 'Fraunces', serif; font-size: 0.82rem; color: var(--white); }

    /* Strip scroll buttons — floating side arrows */
    .gal-strip-btn {
      position: absolute; top: 50%; transform: translateY(-60%);
      z-index: 2; width: 44px; height: 44px; border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.55);
      background: rgba(10,10,10,0.7); backdrop-filter: blur(8px);
      color: var(--white); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.4);
      transition: background 0.25s, border-color 0.25s;
    }
    .gal-strip-prev { left: -16px; }
    .gal-strip-next { right: -16px; }
    .gal-strip-btn:hover { background: var(--pink); border-color: var(--pink); }
    .gal-strip-btn:disabled { opacity: 0; pointer-events: none; }
    .gal-strip-btn svg { width: 18px; height: 18px; }

    /* ── Lightbox ── */
    .gal-lightbox {
      position: fixed; inset: 0; z-index: 1000;
      opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
    }
    .gal-lightbox.open { opacity: 1; pointer-events: all; }
    .gal-lb-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.92); }
    .gal-lb-content {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 24px;
    }
    .gal-lb-img-wrap { position: relative; max-width: 900px; width: 100%; }
    .gal-lb-img-wrap img {
      width: 100%; max-height: 72vh; object-fit: contain;
      border-radius: 10px; display: block; background: #111;
    }
    .gal-lb-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 100%; display: flex; justify-content: space-between;
      padding: 0 16px; box-sizing: border-box; pointer-events: none;
    }
    .gal-lb-btn {
      width: 56px; height: 56px; border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.6);
      background: rgba(10,10,10,0.6); backdrop-filter: blur(10px);
      color: var(--white); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      pointer-events: all; box-shadow: 0 2px 16px rgba(0,0,0,0.5);
      transition: background 0.2s, border-color 0.2s;
    }
    .gal-lb-btn:hover { background: var(--pink); border-color: var(--pink); }
    .gal-lb-btn svg { width: 24px; height: 24px; }
    .gal-lb-meta {
      display: flex; align-items: center; justify-content: space-between;
      max-width: 900px; width: 100%; margin-top: 16px;
    }
    .gal-lb-title { font-family: 'Fraunces', serif; font-size: 1rem; color: var(--white); }
    .gal-lb-year { font-size: 0.78rem; color: var(--pink); margin-top: 2px; }
    .gal-lb-close {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--pink); border: none; color: white;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .gal-lb-close svg { width: 18px; height: 18px; }

    /* ── CONTACT ─────────────────────────────────────── */
    .ct-s { background: var(--white); }
    .ct-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 5rem; align-items: start; }
    .ct-left p { color: var(--mid); line-height: 1.85; margin-bottom: 2rem; }
    .ctd { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
    .ctd-ico { width: 40px; height: 40px; border-radius: 8px; background: var(--pink-pale); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
    .ctd-txt strong { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); display: block; margin-bottom: 0.15rem; }
    .ctd-txt span { color: var(--mid); font-size: 0.9rem; }
    .ct-form { background: var(--snow); border: 1.5px solid var(--border); border-radius: 16px; padding: 2.75rem; }
    .ct-form h3 { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 900; margin-bottom: 1.75rem; letter-spacing: -0.02em; }
    .ctf-r { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .ctfg { margin-bottom: 1.1rem; }
    .ctfg label { display: block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.4rem; }
    .ctfg input, .ctfg select, .ctfg textarea { width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--ink); background: var(--white); transition: border-color 0.2s; }
    .ctfg input:focus, .ctfg select:focus, .ctfg textarea:focus { outline: none; border-color: var(--pink); }
    .ctfg input::placeholder, .ctfg textarea::placeholder { color: rgba(107,100,96,0.35); }
    .ctfg textarea { min-height: 90px; resize: vertical; }
    .ct-submit { width: 100%; padding: 1rem; background: var(--ink); color: var(--white); border: none; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.83rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
    .ct-submit:hover { background: var(--pink); }

    /* ── FOOTER ──────────────────────────────────────── */
    footer { background: var(--ink); padding: 5rem 4rem 3rem; }
    .ft { max-width: 1200px; margin: 0 auto; }
    .ft-top2 { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .ft-logo2 { height: 70px; width: auto; margin-bottom: 1rem; }
    .ft-desc2 { color: rgba(255,255,255,0.3); font-size: 0.85rem; line-height: 1.9; margin-bottom: 1.5rem; }
    .ft-socs { display: flex; gap: 0.5rem; }
    .ft-sc { width: 34px; height: 34px; border-radius: 6px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.85rem; transition: background 0.2s, color 0.2s; }
    .ft-sc:hover { background: var(--pink); color: var(--white); }
    .fcol h5 { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink); margin-bottom: 1.2rem; }
    .fcol ul { list-style: none; }
    .fcol ul li { margin-bottom: 0.6rem; }
    .fcol ul li a { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
    .fcol ul li a:hover { color: var(--white); }
    .ft-bot2 { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
    .ft-bot2 p { color: rgba(255,255,255,0.18); font-size: 0.75rem; }

    /* ── iPad landscape (901px–1180px) ─────────────────── */
    @media (min-width:901px) and (max-width:1180px) {
      nav{padding:0 2rem;}
      .n-links{gap:1.1rem;}
      .n-links a{font-size:0.7rem;}
      .s{padding:5rem 2.5rem;}
      .gal-s{padding:5rem 2.5rem;}
      .info-bar{grid-template-columns:0.7fr 2fr 1fr 1.1fr; max-width:100%; overflow:hidden;}
      .ib-cell{padding:1.25rem 1.5rem;}
      .ib-value{font-size:0.88rem;}
      .cd-bar{padding:1.75rem 2.5rem;}
      .ab-wrap{gap:3.5rem;}
      .ct-grid{gap:3rem;}
      .ft-top2{grid-template-columns:1.5fr 1fr 1fr 1fr; gap:2rem;}
      footer{padding:4rem 2.5rem 2.5rem;}
      .spk-card{flex:0 0 calc(33.333% - 1rem);}
      .hc{flex:0 0 calc(50% - 0.75rem);}
      .reg-wrapper{max-width:95%;}
      .arrow-l{left:-16px;} .arrow-r{right:-16px;}
    }

    @media (max-width:900px) {
      nav{padding:0 1.5rem;} .n-links{display:none;}
      .hero{margin-top:88px;}
      .hs-arrow{display:none;}
      .info-bar{grid-template-columns:1fr 1fr;}
      .cd-bar{padding:1.5rem;}
      .cd-num{font-size:2.2rem;}
      .ab-wrap{grid-template-columns:1fr; gap:2.5rem;}
      .sch-wrap{grid-template-columns:1fr;}
      .sch-days{flex-direction:row;flex-wrap:wrap;position:static;}
      .s{padding:4rem 1.5rem;}
      .ct-grid{grid-template-columns:1fr; gap:2.5rem;}
      .ft-top2{grid-template-columns:1fr 1fr;}
      footer{padding:3rem 1.5rem 2rem;}
      .reg-grid{grid-template-columns:1fr;} .rf{grid-template-columns:1fr;}
      .reg-body{padding:2rem 1.5rem;}
      .ticker{top:62px;}
    }

    @media (max-width:480px) {
      /* Nav */
      nav{height:56px; padding:0 1rem;}
      .n-logo{height:56px;}
      .n-cta{padding:0.5rem 1rem; font-size:0.68rem;}
      .ticker{top:56px; height:28px;}
      .hero{margin-top:84px;}

      /* Info bar — stack all 4 cells */
      .info-bar{grid-template-columns:1fr 1fr;}
      .ib-cell{padding:1rem 1.25rem;}
      .ib-value{font-size:0.82rem; white-space:normal;}

      /* Countdown — stack vertically */
      .cd-bar{flex-direction:column; align-items:flex-start; gap:1.25rem; padding:1.25rem 1rem;}
      .cd-num{font-size:1.8rem;}
      .cd-colon{font-size:2rem;}
      .cd-group{gap:0.6rem;}
      .cd-bar-right{flex-wrap:wrap; gap:0.4rem;}
      .etag{font-size:0.65rem; padding:0.35rem 0.75rem;}

      /* Sections */
      .s{padding:3rem 1rem;}
      .gal-s{padding:3rem 1rem;}

      /* Gallery — strip items narrower on small phones */
      .gal-strip-item { flex: 0 0 160px; }

      /* Speakers — full width cards */
      .spk-card{flex:0 0 85vw;}

      /* Schedule */
      .sch-row{grid-template-columns:70px 1fr; gap:0.75rem;}
      .chip{display:none;}

      /* Registration */
      .reg-top{padding:1.5rem 1rem;}
      .reg-body{padding:1.5rem 1rem;}
      .reg-price-big{font-size:2.8rem;}
      .ctf-r{grid-template-columns:1fr;}

      /* Footer — full stack */
      .ft-top2{grid-template-columns:1fr;}
      footer{padding:2.5rem 1rem 1.5rem;}
      .ft-bot2{flex-direction:column; gap:0.5rem; text-align:center;}

      /* Contact form */
      .ct-form{padding:1.5rem 1rem;}
      .ctf-r{grid-template-columns:1fr;}

      /* Lightbox nav */
      .gal-lb-btn { width: 44px; height: 44px; }
      .gal-lb-btn svg { width: 20px; height: 20px; }
    }

    /* ── TOAST NOTIFICATION ──────────────────────────────── */
    .toast {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
      display: flex; align-items: flex-start; gap: 1rem;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 1.25rem 1.5rem;
      box-shadow: 0 8px 40px rgba(10,10,10,0.14);
      max-width: 380px; width: calc(100vw - 3rem);
      transform: translateY(120%);
      opacity: 0;
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
      pointer-events: none;
    }
    .toast.show { transform: translateY(0); opacity: 1; pointer-events: all; }
    .toast.toast-error { border-color: rgba(232,69,140,0.4); }
    .toast.toast-success { border-color: rgba(94,139,117,0.4); }
    .toast-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; margin-top: 0.1rem; }
    .toast-body { flex: 1; }
    .toast-title { font-weight: 700; font-size: 0.9rem; color: var(--ink); margin-bottom: 0.2rem; }
    .toast-msg { font-size: 0.82rem; color: var(--mid); line-height: 1.5; }
    .toast-close {
      background: none; border: none; cursor: pointer;
      color: var(--mid); font-size: 0.8rem; padding: 0;
      flex-shrink: 0; line-height: 1; margin-top: 0.1rem;
      transition: color 0.2s;
    }
    .toast-close:hover { color: var(--ink); }
