
  :root {
    --magenta: #BB2649;
    --magenta-deep: #8F1D38;
    --cloud: #F0EEE9;
    --ink: #1A1717;
    --ink-soft: #4A4744;
    --muted: #8C887F;
    --border: rgba(26,23,23,0.12);
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --font-serif: Georgia, "Times New Roman", serif;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-sans);
    background: var(--cloud);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ===== HEADER ===== */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6vw;
    background: var(--cloud);
    position: relative;
    z-index: 2;
  }
  header .brand { display: flex; align-items: center; gap: 10px; }
  header .brand img { height: 26px; width: auto; display: block; }
  header .brand span { font-size: 12px; font-weight: 600; letter-spacing: 0.03em; color: var(--ink); text-transform: uppercase; }
  header .langs { display: flex; gap: 4px; font-size: 12px; color: var(--ink-soft); }
  header .langs span { padding: 4px 10px; border-radius: 20px; cursor: pointer; }
  header .langs span.active { background: var(--magenta); color: var(--cloud); font-weight: 600; }
  header .langs span.disabled { cursor: default; opacity: 0.35; pointer-events: none; }

  /* ===== HERO SPLIT ===== */
  .hero-text .lockup { margin-top: 0; }
  .hero-text .lockup-img.hidden { display: none; }
  .hero-text .lockup-img {
    height: var(--lockup-height);
    width: auto;
    max-width: 100%;
    display: block;
  }
  .hero-text .meta {
    text-align: left;
    margin-top: clamp(28px, 5vh, 48px);
  }
  .hero-text .meta-venue {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(16px, 2.1vw, 23px);
    color: var(--ink);
    line-height: 1.3;
  }
  .hero-text .meta-dates {
    font-size: clamp(13px, 1.3vw, 16px);
    font-weight: 600;
    color: var(--magenta);
    margin-top: 8px;
    letter-spacing: 0.02em;
  }
  .hero-text .meta-org {
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 600;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 10px;
  }

  .hero {
    display: flex;
    align-items: stretch;
    min-height: 640px;
    max-height: 82vh;
    --lockup-height: clamp(96px, 12vw, 168px);
  }
  .hero-text {
    flex: 1 1 54%;
    background: var(--cloud);
    display: flex;
    flex-direction: column;
    padding: 4vh 6vw 5vh;
    color: var(--ink);
  }
  .hero-text .lockup-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-photo {
    flex: 1 1 44%;
    position: relative;
    overflow: hidden;
    background: var(--cloud);
    display: flex;
    flex-direction: column;
    padding: 4vh 6vw 5vh;
  }
  .hero-photo .mandorla-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-photo .meta-spacer {
    flex: 0 0 auto;
    height: 78px;
    visibility: hidden;
  }
  .mandorla-stage {
    width: auto;
  }
  .mandorla-stage svg {
    height: var(--lockup-height);
    width: auto;
    display: block;
    overflow: visible;
  }
  .mandorla-group {
    transform-box: view-box;
    transform-origin: 169.65px 169.65px;
    animation: mnd-zoom 10s 1 forwards;
    animation-timing-function: cubic-bezier(0.45, 0, 0.2, 1);
  }
  .mnd-petal {
    fill: #231F20;
    fill-opacity: 0;
    stroke: #231F20;
    stroke-width: 1.6;
    stroke-linejoin: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation-duration: 10s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
  }
  .mnd-p9, .mnd-p3, .mnd-p6 { animation-name: mnd-write; }
  .mnd-p12 { animation-name: mnd-write, mnd-color; animation-timing-function: ease-in-out, ease-in-out; }

  .hero-reveal {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 22%;
    opacity: 0;
    animation: hero-reveal-in 1.2s ease forwards;
    animation-delay: 8.4s;
  }
  @keyframes hero-reveal-in {
    0%   { opacity: 0; }
    100% { opacity: 1; }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-reveal { animation: none; opacity: 1; }
  }

  @keyframes mnd-write {
    0%, 1%    { stroke-dashoffset: 100; fill-opacity: 0; }
    22%       { stroke-dashoffset: 0;   fill-opacity: 0; }
    32%       { stroke-dashoffset: 0;   fill-opacity: 1; }
    84%       { stroke-dashoffset: 0;   fill-opacity: 1; }
    100%      { stroke-dashoffset: 0;   fill-opacity: 1; }
  }
  @keyframes mnd-color {
    0%, 38%   { fill: #231F20; stroke: #231F20; }
    44%       { fill: #B81E4E; stroke: #B81E4E; }
    84%       { fill: #B81E4E; stroke: #B81E4E; }
    100%      { fill: #231F20; stroke: #231F20; }
  }
  @keyframes mnd-zoom {
    0%, 50%    { transform: scale(1);     opacity: 1; }
    72%        { transform: scale(1.12);  opacity: 1; }
    84%        { transform: scale(1.12);  opacity: 1; }
    96%        { transform: scale(1.12);  opacity: 0; }
    100%       { transform: scale(1.12);  opacity: 0; }
  }
  @media (prefers-reduced-motion: reduce) {
    .mandorla-group { animation: none; }
    .mnd-petal { animation: none; fill-opacity: 1; stroke-dashoffset: 0; }
    .mnd-p12 { fill: #B81E4E; stroke: #B81E4E; }
  }

  @media (max-width: 760px) {
    .hero { flex-direction: column; min-height: 0; max-height: none; }
    .hero-photo {
      width: 100%;
      aspect-ratio: unset;
      order: -1;
      padding: 5vh 6vw 3vh;
    }
    .hero-photo .mandorla-center { flex: none; }
    .hero-photo .meta-spacer { display: none; }
    .hero-text {
      padding: 3vh 6vw 5vh;
      align-items: center;
      text-align: center;
    }
    .hero-text .lockup-center { flex: none; }
    .hero-text .lockup { margin: 0 auto; }
    .hero-text .lockup-img { margin: 0 auto; }
  }

  /* ===== CHAPTER (title + bold text + image) ===== */
  .chapter {
    padding: 9vh 6vw 0;
    background: var(--magenta);
  }
  .chapter .inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }
  .chapter .kicker {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(240,238,233,0.75);
    margin-bottom: 16px;
  }
  .chapter h2 {
    font-family: var(--font-sans);
    font-weight: 800;
    font-style: normal;
    letter-spacing: -0.01em;
    line-height: 1;
    white-space: nowrap;
    font-size: clamp(28px, 8vw, 88px);
    color: var(--cloud);
  }
  .chapter p.lead {
    margin-top: 20px;
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 600;
    color: var(--cloud);
    line-height: 1.6;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ===== HORIZONTAL GALLERY ===== */
  .gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6vh 0 8vh;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery-item:first-child { margin-left: auto; }
  .gallery-item:last-child { margin-right: auto; }
  .gallery-item {
    flex: 0 0 auto;
    background: var(--cloud);
    border-radius: 3px;
    padding: 8px;
    scroll-snap-align: start;
    cursor: zoom-in;
  }
  .gallery-item img {
    height: 320px;
    width: auto;
    display: block;
    border-radius: 1px;
  }
  @media (max-width: 760px) {
    .gallery-item img { height: 220px; }
  }

  /* ===== SINGLE IMAGE (no scroll) ===== */
  .single-frame {
    display: flex;
    justify-content: center;
    padding: 6vh 0 8vh;
  }
  .single-frame .gallery-item img {
    height: 400px;
  }
  @media (max-width: 760px) {
    .single-frame .gallery-item img { height: 260px; }
  }

  /* ===== GALLERY NAV ARROWS ===== */
  .gallery-wrap { position: relative; }
  .gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cloud);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--magenta);
    cursor: pointer;
    padding: 0;
  }
  .gallery-arrow svg { width: 16px; height: 16px; }
  .gallery-arrow.prev { left: 10px; }
  .gallery-arrow.next { right: 10px; }
  @media (max-width: 760px) {
    .gallery-arrow { width: 32px; height: 32px; }
    .gallery-arrow svg { width: 14px; height: 14px; }
    .gallery-arrow.prev { left: 6px; }
    .gallery-arrow.next { right: 6px; }
  }

  /* ===== LIGHTBOX — a window that pops up over the page, site stays visible behind ===== */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(240,238,233,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }
  .lightbox.open {
    opacity: 1;
    pointer-events: auto;
  }
  .lightbox .lb-card {
    background: #FFFFFF;
    padding: 20px 26px;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    transform: scale(0.96);
    transition: transform 0.28s cubic-bezier(0.34, 1.35, 0.64, 1);
  }
  .lightbox.open .lb-card {
    transform: scale(1);
  }
  .lightbox .lb-mark {
    display: block;
    width: 18px;
    height: 18px;
    opacity: 0.7;
    margin-bottom: 12px;
    flex: 0 0 auto;
  }
  #lb-img {
    max-width: 80vw;
    max-height: 58vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 1px;
    flex: 0 1 auto;
    min-height: 0;
  }
  .lightbox .lb-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    text-align: center;
    margin-top: 16px;
    flex: 0 0 auto;
  }
  .lightbox .lb-caption {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    text-align: center;
    max-width: 420px;
    margin-top: 6px;
    flex: 0 0 auto;
  }
  .lightbox .lb-caption .lb-credit {
    font-style: italic;
    font-size: 11.5px;
  }
  .lightbox .lb-close,
  .lightbox .lb-prev,
  .lightbox .lb-next {
    position: fixed;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--magenta);
    color: var(--cloud);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
  }
  .lightbox .lb-close svg,
  .lightbox .lb-prev svg,
  .lightbox .lb-next svg { width: 18px; height: 18px; }
  .lightbox .lb-close { top: 18px; right: 18px; }
  .lightbox .lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
  .lightbox .lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
  @media (max-width: 600px) {
    .lightbox { padding: 14px; }
    .lightbox .lb-card { padding: 16px 14px; }
    #lb-img { max-width: 82vw; max-height: 48vh; }
    .lightbox .lb-caption { max-width: 80vw; }
    .lightbox .lb-prev { left: 6px; }
    .lightbox .lb-next { right: 6px; }
    .lightbox .lb-close { top: 10px; right: 10px; }
  }

  /* ===== CTA after chapters ===== */
  .cta-wrap {
    background: var(--magenta);
    display: flex;
    justify-content: center;
    padding: 8vh 6vw 8vh;
  }
  .cta-btn {
    display: inline-block;
    background: var(--cloud);
    color: var(--magenta);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 40px;
  }

  /* ===== ARTICLE ===== */
  .wrap { max-width: 680px; margin: 0 auto; padding: 0 6vw 100px; scroll-margin-top: 30px; }

  .press-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--magenta);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    padding-top: 8vh;
    margin-bottom: 28px;
  }

  article.press h2.title {
    font-family: var(--font-serif);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    font-style: normal;
    line-height: 1.35;
    color: var(--ink);
    text-align: center;
  }
  article.press .deck {
    font-size: 15px;
    color: var(--ink-soft);
    text-align: center;
    margin-top: 16px;
    line-height: 1.6;
    font-style: italic;
  }
  article.press .body {
    margin-top: 36px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink);
  }
  article.press .body p { margin-bottom: 20px; }
  article.press .body p:first-of-type { font-weight: 600; }

  .info-block {
    margin-top: 44px;
    padding: 24px;
    background: rgba(187,38,73,0.06);
    border-left: 3px solid var(--magenta);
    font-size: 14px;
    line-height: 1.8;
    color: var(--ink-soft);
  }
  .info-block .title2 { font-weight: 600; color: var(--ink); margin-bottom: 6px; }

  .contacts {
    margin-top: 32px;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.9;
  }
  .contacts .role { font-weight: 600; color: var(--ink); }
  .contacts a { color: var(--magenta); text-decoration: none; }

  /* ===== FOOTER ===== */
  footer {
    position: relative;
    padding: 40px 6vw 32px;
    border-top: 1px solid var(--border);
    text-align: center;
    background: var(--cloud);
  }
  footer img { height: 30px; margin-bottom: 16px; }
  footer .copy {
    margin-top: 4px;
    font-size: 11px;
    color: var(--muted);
  }
  footer .webdesign {
    position: absolute;
    right: 6vw;
    bottom: 12px;
    font-size: 10px;
    color: #C4C1B8;
  }
