  :root {
    --parchment:        #ede2c8;
    --parchment-light:  #f3ead5;
    --parchment-deep:   #d9c8a3;
    --ink:              #1c1a17;
    --ink-soft:         #3c3630;
    --ink-faint:        #6b6055;
    --pomegranate:      #8b1e1e;
    --pomegranate-deep: #6a1414;
    --saffron:          #c9802a;
    --lapis:            #1f3a5f;
    --rule:             #6b5a3e;

    --display: "Fraunces", "EB Garamond", Georgia, serif;
    --body:    "Crimson Pro", "EB Garamond", Georgia, serif;
    --hye:     "Noto Serif Armenian", "Fraunces", serif;
    --mono:    "JetBrains Mono", ui-monospace, monospace;

    --measure: 64ch;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    background: var(--parchment);
    color: var(--ink);
    font-family: var(--body);
    font-size: 19px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
  }

  /* paper grain */
  body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 200;
    opacity: 0.45;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.10  0 0 0 0 0.08  0 0 0 0 0.05  0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }

  /* edge vignette — manuscript margin shadow */
  body::after {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 199;
    background:
      radial-gradient(ellipse at center, transparent 38%, rgba(60,40,15,0.22) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.05), transparent 6%, transparent 94%, rgba(0,0,0,0.05));
  }

  ::selection { background: var(--pomegranate); color: var(--parchment-light); }

  /* ───────── layout primitives ───────── */
  .wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 72px);
    position: relative;
  }

  .rule {
    height: 1px;
    background: var(--rule);
    opacity: 0.45;
    width: 100%;
  }

  /* ───────── top bar ───────── */
  .topbar {
    position: relative;
    z-index: 10;
    padding: 26px 0 18px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 32px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .topbar .mark {
    display: flex; align-items: center; gap: 14px;
  }
  .topbar .mark .logo {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pomegranate);
    flex-shrink: 0;
    transition: transform .6s cubic-bezier(.2,.7,.2,1), color .3s ease;
  }
  .topbar .mark .logo svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .topbar .mark .logo:hover {
    transform: rotate(-6deg) scale(1.06);
    color: var(--pomegranate-deep);
  }
  .topbar .mark .wordmark {
    line-height: 1.25;
  }
  .topbar .mark .wordmark b {
    display: block;
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--ink);
    margin-bottom: 1px;
  }
  nav.top {
    display: flex;
    gap: 32px;
  }
  nav.top a {
    color: var(--ink-soft);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color .25s ease;
  }
  nav.top a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--pomegranate);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
  }
  nav.top a:hover { color: var(--pomegranate); }
  nav.top a:hover::after { transform: scaleX(1); }
  /* mobile hamburger — hidden until the topbar collapses */
  .nav-toggle {
    display: none;
    appearance: none;
    -webkit-appearance: none;
    width: 42px;
    height: 36px;
    padding: 0;
    border: 1px solid var(--rule);
    border-radius: 6px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color .25s ease, color .25s ease;
  }
  .nav-toggle:hover { border-color: var(--pomegranate); color: var(--pomegranate); }
  .nav-toggle__bars,
  .nav-toggle__bars::before,
  .nav-toggle__bars::after {
    content: "";
    display: block;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), background-color .2s ease;
  }
  .nav-toggle__bars { position: relative; }
  .nav-toggle__bars::before { position: absolute; left: 0; top: -6px; }
  .nav-toggle__bars::after  { position: absolute; left: 0; top:  6px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-6px) rotate(-45deg); }

  /* ───────── hero plate (full-bleed photograph) ───────── */
  .hero-plate {
    position: relative;
    left: 50%;
    margin-left: -50vw;
    width: 100vw;
    height: clamp(380px, 66vh, 760px);
    overflow: hidden;
    margin-top: 18px;
    margin-bottom: 12px;
    isolation: isolate;
  }
  .hero-plate img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    display: block;
    filter: sepia(0.14) saturate(0.95) contrast(1.06);
    animation: plateLoad 1.6s cubic-bezier(.2,.7,.2,1) both;
  }
  @keyframes plateLoad {
    from { opacity: 0; transform: scale(1.04); }
    to   { opacity: 1; transform: scale(1); }
  }
  .hero-plate::before {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg,
        rgba(40,25,5,0.20) 0%,
        transparent 22%,
        transparent 64%,
        rgba(40,25,5,0.62) 100%);
    z-index: 1;
  }
  .hero-plate::after {
    content: "";
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.35;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.10  0 0 0 0 0.08  0 0 0 0 0.05  0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }
  .hero-plate .plate-caption {
    position: absolute;
    bottom: clamp(22px, 4vw, 44px);
    left: clamp(24px, 5vw, 80px);
    right: clamp(24px, 5vw, 80px);
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
    color: var(--parchment-light);
  }
  .hero-plate .plate-caption .lede {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.3;
    max-width: 46ch;
    text-shadow: 0 2px 14px rgba(0,0,0,0.55);
    margin: 0;
  }
  .hero-plate .plate-caption .lede b {
    font-style: normal;
    font-weight: 500;
    color: #f3d8a1;
    letter-spacing: 0.02em;
  }
  .hero-plate .plate-caption .credit {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    text-align: right;
    line-height: 1.85;
    opacity: 0.92;
    white-space: nowrap;
  }
  .hero-plate .plate-caption .credit b {
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0;
    text-transform: none;
    color: #f3d8a1;
    display: block;
    margin-bottom: 6px;
  }
  .hero-plate .plate-glyph {
    position: absolute;
    top: clamp(20px, 4vw, 40px);
    right: clamp(24px, 5vw, 80px);
    z-index: 3;
    font-family: var(--hye);
    font-size: clamp(48px, 6vw, 84px);
    color: var(--parchment-light);
    opacity: 0.85;
    line-height: 1;
    text-shadow: 0 4px 24px rgba(0,0,0,0.5);
    font-weight: 400;
  }

  /* ───────── hero ───────── */
  .hero {
    position: relative;
    padding: clamp(40px, 8vh, 110px) 0 clamp(60px, 10vh, 140px);
    isolation: isolate;
  }

  .hero .stamp {
    position: absolute;
    top: 8px; right: 0;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-faint);
    text-align: right;
    line-height: 1.8;
  }
  .hero .stamp em {
    font-style: normal;
    color: var(--pomegranate);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: end;
    position: relative;
    padding-top: clamp(20px, 5vw, 60px);
  }

  /* gigantic Armenian word */
  .colossus {
    font-family: var(--hye);
    font-weight: 500;
    color: var(--pomegranate);
    font-size: clamp(120px, 22vw, 340px);
    line-height: 0.78;
    letter-spacing: -0.02em;
    margin: 0;
    user-select: none;
    text-shadow:
      0 1px 0 rgba(255,240,210,0.4),
      0 -1px 0 rgba(80,30,20,0.15);
    position: relative;
  }
  .colossus .ink {
    background: linear-gradient(180deg, var(--pomegranate-deep) 0%, var(--pomegranate) 60%, #732222 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero-title {
    position: relative;
    margin: -0.08em 0 0;
    font-family: var(--display);
    font-weight: 300;
    color: var(--ink);
    font-size: clamp(36px, 5.6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.015em;
    font-variation-settings: "SOFT" 50, "opsz" 144;
  }
  .hero-title .line { display: block; }
  .hero-title .ecole {
    font-style: italic;
    font-weight: 200;
    letter-spacing: -0.005em;
  }
  .hero-title .ar {
    font-weight: 500;
    letter-spacing: -0.022em;
  }
  .hero-title .de {
    font-style: italic;
    font-weight: 200;
    color: var(--ink-soft);
    padding-left: clamp(40px, 8vw, 120px);
  }

  .hero-meta {
    margin-top: clamp(36px, 5vw, 70px);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(24px, 5vw, 80px);
    align-items: start;
  }
  .hero-meta .tagline {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(20px, 1.8vw, 26px);
    line-height: 1.35;
    color: var(--ink-soft);
    max-width: 30ch;
    border-left: 1px solid var(--rule);
    padding: 4px 0 4px 22px;
  }
  .hero-meta .tagline .hye {
    display: block;
    font-family: var(--hye);
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--pomegranate);
    margin-top: 12px;
    font-weight: 400;
  }
  .hero-meta .corner {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-faint);
    text-align: right;
    line-height: 1.9;
  }
  .hero-meta .corner b {
    display: block;
    font-family: var(--display);
    font-weight: 400;
    font-style: italic;
    font-size: 26px;
    color: var(--pomegranate);
    letter-spacing: 0.01em;
    margin-bottom: 4px;
    text-transform: none;
  }

  /* alphabet marquee ribbon */
  .ribbon {
    position: relative;
    padding: 26px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
    background:
      repeating-linear-gradient(45deg,
        transparent 0, transparent 8px,
        rgba(107,90,62,0.05) 8px, rgba(107,90,62,0.05) 9px);
  }
  .ribbon-track {
    display: flex;
    gap: 48px;
    font-family: var(--hye);
    font-size: 38px;
    color: var(--ink-soft);
    white-space: nowrap;
    animation: glide 90s linear infinite;
    width: max-content;
  }
  .ribbon-track span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .ribbon-track span::after {
    content: "✦";
    font-family: var(--display);
    font-size: 13px;
    color: var(--pomegranate);
    transform: translateY(-6px);
  }
  @keyframes glide {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ───────── section scaffolding ───────── */
  section.s {
    padding: clamp(20px, 2.5vw, 40px) 0;
    position: relative;
  }
  .section-header {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: clamp(20px, 4vw, 56px);
    align-items: baseline;
    margin-bottom: clamp(20px, 3vw, 40px);
  }
  .section-num {
    font-family: var(--hye);
    font-size: 64px;
    line-height: 0.9;
    color: var(--pomegranate);
    font-weight: 500;
    position: relative;
  }
  .section-num small {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: 14px;
    font-weight: 400;
  }
  .section-title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(34px, 4.6vw, 64px);
    line-height: 1;
    letter-spacing: -0.018em;
    color: var(--ink);
    font-style: italic;
  }
  .section-title .strong {
    font-style: normal;
    font-weight: 500;
  }
  .section-title .hye {
    display: block;
    font-family: var(--hye);
    font-style: normal;
    font-weight: 400;
    font-size: 0.45em;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
    margin-top: 8px;
  }

  /* ───────── manifesto ───────── */
  .manifesto-body {
    display: grid;
    grid-template-columns: 100px 1.1fr 1fr;
    gap: clamp(20px, 4vw, 56px);
  }
  .manifesto-body .void { grid-column: 1; }
  .manifesto-body p {
    font-family: var(--display);
    font-size: clamp(20px, 1.65vw, 24px);
    line-height: 1.45;
    color: var(--ink-soft);
    font-weight: 300;
    font-variation-settings: "opsz" 60;
    margin: 0 0 1.1em;
  }
  .manifesto-body p:first-of-type::first-letter {
    font-family: var(--display);
    font-weight: 500;
    font-style: normal;
    color: var(--pomegranate);
    font-size: 5.6em;
    line-height: 0.85;
    float: left;
    padding: 4px 14px 0 0;
    margin-top: 6px;
  }
  .manifesto-body .signature {
    font-family: var(--display);
    font-style: italic;
    font-size: 14px;
    color: var(--ink-faint);
    letter-spacing: 0.04em;
    margin-top: 24px;
  }

  /* ───────── trois disciplines ───────── */
  .discipline {
    display: grid;
    grid-template-columns: 100px 1fr 1.4fr;
    gap: clamp(20px, 4vw, 56px);
    align-items: start;
    padding: clamp(36px, 5vw, 64px) 0;
    border-top: 1px solid var(--rule);
    position: relative;
  }
  .discipline:last-of-type { border-bottom: 1px solid var(--rule); }

  .discipline .glyph-block {
    font-family: var(--hye);
    color: var(--pomegranate);
    font-size: clamp(90px, 9vw, 140px);
    line-height: 0.85;
    font-weight: 400;
    letter-spacing: -0.04em;
  }
  .discipline .glyph-block small {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.28em;
    color: var(--ink-faint);
    margin-top: 10px;
    font-weight: 400;
  }
  .discipline h3 {
    font-family: var(--display);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(28px, 2.8vw, 42px);
    line-height: 1.05;
    margin: 0 0 14px;
    color: var(--ink);
    letter-spacing: -0.015em;
  }
  .discipline h3 .num {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--ink-faint);
    font-style: normal;
    display: block;
    margin-bottom: 8px;
  }
  .discipline p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
  }
  .discipline .meta {
    margin-top: 18px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pomegranate);
  }

  /* ───────── programme coda ───────── */
  .programme-coda {
    margin-top: clamp(40px, 6vw, 80px);
    padding-top: 40px;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: clamp(20px, 4vw, 56px);
    position: relative;
  }
  .programme-coda .coda-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-faint);
    line-height: 1.7;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .programme-coda .coda-label .hye {
    display: block;
    font-family: var(--hye);
    font-size: 22px;
    color: var(--pomegranate);
    letter-spacing: 0.02em;
    text-transform: none;
    margin-top: 10px;
    font-weight: 500;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .programme-coda p {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(19px, 1.6vw, 23px);
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 0 0 1.1em;
    max-width: 58ch;
  }
  .programme-coda p:last-child { margin-bottom: 0; }
  .programme-coda p .strong {
    font-style: normal;
    font-weight: 500;
    color: var(--ink);
  }
  .programme-coda p em {
    color: var(--pomegranate);
    font-style: italic;
    font-weight: 400;
  }

  /* teacher bio inside discipline */
  .discipline .bio {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dotted rgba(107,90,62,0.45);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-faint);
    font-style: italic;
  }
  .discipline .bio b {
    font-style: normal;
    font-weight: 500;
    color: var(--pomegranate);
  }

  /* ───────── galerie — editorial mosaic ───────── */
  .gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 70px;
    gap: clamp(14px, 1.6vw, 28px);
  }
  .gallery figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    box-shadow:
      0 1px 0 rgba(255,240,210,0.4) inset,
      0 8px 32px -12px rgba(40,20,5,0.35);
  }
  .gallery figure::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(40,25,5,0.0) 60%, rgba(40,25,5,0.55) 100%);
    pointer-events: none;
  }
  .gallery img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(0.18) saturate(0.95) contrast(1.04);
    transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .6s ease;
  }
  .gallery figure:hover img {
    transform: scale(1.04);
    filter: sepia(0.05) saturate(1.05) contrast(1.06);
  }
  .gallery figcaption {
    position: absolute;
    left: 16px; right: 16px; bottom: 14px;
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    color: var(--parchment-light);
    letter-spacing: 0.01em;
    line-height: 1.3;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }
  .gallery figcaption b {
    display: block;
    font-style: normal;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 3px;
    color: rgba(255, 220, 180, 0.85);
  }
  .g1 { grid-column: 1 / span 7;  grid-row: 1  / span 7; }
  .g2 { grid-column: 8 / span 5;  grid-row: 1  / span 12; }
  .g3 { grid-column: 1 / span 7;  grid-row: 8  / span 5; }
  .g4 { grid-column: 1 / span 6;  grid-row: 13 / span 7; }
  .g5 { grid-column: 7 / span 6;  grid-row: 13 / span 7; }
  .g6 { grid-column: 4 / span 6;  grid-row: 20 / span 9; }

  /* ───────── practical ───────── */
  .practical-grid {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    /* h4 | big | body | 4 schedule rows */
    grid-template-rows: auto auto 1fr repeat(4, auto);
    column-gap: clamp(20px, 4vw, 56px);
    row-gap: 0;
  }
  .practical-grid .void {
    grid-column: 1;
    grid-row: 1 / -1;
  }
  .practical-col {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1 / -1;
    row-gap: 0;
  }
  .practical-col h4 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin: 0 0 18px;
    font-weight: 400;
    align-self: end;
  }
  .practical-col .big {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(26px, 2.4vw, 34px);
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
  }
  .practical-col .big .strong {
    font-style: normal;
    font-weight: 500;
    color: var(--pomegranate);
  }
  .practical-col > p:not(.big) {
    margin: 0;
    color: var(--ink-soft);
  }
  .schedule {
    margin-top: 24px;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-row: 4 / -1;
    grid-template-rows: subgrid;
    grid-template-columns: 130px minmax(0, 1fr) 120px;
    column-gap: 18px;
    row-gap: 0;
  }
  .schedule .row {
    display: contents;
  }
  .schedule .row > * {
    padding: 12px 0;
    border-bottom: 1px solid rgba(107,90,62,0.25);
    align-self: stretch;
    font-size: 16px;
    min-width: 0;
  }
  .schedule .row b {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pomegranate);
    font-weight: 400;
    white-space: nowrap;
  }
  .schedule .row span {
    font-family: var(--display);
    font-style: italic;
    color: var(--ink-soft);
  }
  .schedule .row em {
    font-style: normal;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-faint);
    letter-spacing: 0.16em;
    text-align: right;
  }

  /* ───────── adult dance — groupe Margarit ───────── */
  .adult-dance {
    margin-top: clamp(48px, 6vw, 84px);
    padding-top: 40px;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: clamp(18px, 4vw, 56px);
  }
  .adult-dance .ad-label { flex: 0 0 100px; }
  .adult-dance > div:not(.ad-label) {
    flex: 1 1 320px;
    min-width: 0;
  }
  .adult-dance .ad-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-faint);
    line-height: 1.7;
  }
  .adult-dance .ad-label .hye {
    display: block;
    font-family: var(--hye);
    font-size: 22px;
    color: var(--pomegranate);
    letter-spacing: 0.02em;
    text-transform: none;
    margin-top: 10px;
    font-weight: 500;
  }
  .adult-dance .big {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(26px, 2.4vw, 34px);
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 30px;
    letter-spacing: -0.01em;
    max-width: 34ch;
  }
  .adult-dance .big .strong {
    font-style: normal;
    font-weight: 500;
    color: var(--pomegranate);
  }
  .adult-dance .big em { color: var(--pomegranate); }
  .venues {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: clamp(20px, 3vw, 48px);
    border-top: 1px solid var(--rule);
    padding-top: 26px;
  }
  .venue .day {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pomegranate);
    font-weight: 400;
    display: block;
  }
  .venue .time {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(22px, 2vw, 28px);
    color: var(--ink);
    display: block;
    margin: 5px 0 16px;
  }
  .venue address {
    font-style: normal;
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
  }
  .venue address b {
    font-weight: 600;
    color: var(--ink);
  }
  @media (max-width: 720px) {
    .adult-dance { grid-template-columns: 1fr; }
    .venues { grid-template-columns: 1fr; gap: 26px; }
  }

  /* ───────── inscription ───────── */
  .inscription {
    padding: clamp(28px, 4vw, 56px) 0 clamp(36px, 5vw, 64px);
    border-top: 1px solid var(--rule);
    position: relative;
  }
  .inscription-inner {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: clamp(20px, 4vw, 56px);
    align-items: end;
  }
  .inscription-big {
    font-family: var(--display);
    font-weight: 200;
    font-style: italic;
    font-size: clamp(48px, 8vw, 110px);
    line-height: 0.95;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0;
  }
  .inscription-big .strong {
    font-style: normal;
    font-weight: 500;
    color: var(--pomegranate);
    background: linear-gradient(180deg, var(--pomegranate) 0%, var(--pomegranate-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .inscription-big .hye {
    font-family: var(--hye);
    font-style: normal;
    font-weight: 500;
    color: var(--pomegranate);
  }
  .inscription-actions {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    align-items: baseline;
    border-top: 1px solid var(--rule);
    padding-top: 24px;
  }
  .inscription-actions a {
    font-family: var(--display);
    font-size: 22px;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--pomegranate);
    padding-bottom: 2px;
    transition: color .25s ease, border-color .25s ease;
  }
  .inscription-actions a:hover {
    color: var(--pomegranate);
  }
  .inscription-actions .note {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-left: auto;
  }

  /* ───────── contact / calling card ───────── */
  .contact-card {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    gap: clamp(20px, 4vw, 56px);
    align-items: start;
    padding-top: 36px;
    border-top: 1px solid var(--rule);
    position: relative;
  }
  .contact-card::before {
    content: "Ֆ";
    position: absolute;
    top: -22px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--hye);
    font-size: 28px;
    color: var(--pomegranate);
    background: var(--parchment);
    padding: 0 14px;
    line-height: 1;
  }
  .contact-card .label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-faint);
    line-height: 1.6;
  }
  .contact-card .label .hye {
    display: block;
    font-family: var(--hye);
    font-size: 16px;
    letter-spacing: 0.02em;
    color: var(--pomegranate);
    text-transform: none;
    margin-top: 8px;
  }
  .contact-card .director-name {
    font-family: var(--display);
    font-weight: 500;
    font-style: italic;
    font-size: clamp(26px, 2.6vw, 36px);
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: -0.012em;
    margin: 0 0 10px;
  }
  .contact-card .director-role {
    font-family: var(--display);
    font-size: 17px;
    line-height: 1.5;
    color: var(--ink-soft);
    font-style: italic;
    margin: 0 0 18px;
    max-width: 38ch;
  }
  .contact-card .director-role .strong {
    font-style: normal;
    font-weight: 500;
    color: var(--ink);
  }
  .contact-card .coords {
    font-family: var(--display);
    font-size: 18px;
    line-height: 1.75;
    color: var(--ink-soft);
  }
  .contact-card .coords dt {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: 14px;
    font-weight: 400;
  }
  .contact-card .coords dt:first-child { margin-top: 0; }
  .contact-card .coords dd {
    margin: 4px 0 0;
  }
  .contact-card .coords a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(139,30,30,0.4);
    padding-bottom: 1px;
    transition: color .25s ease, border-color .25s ease;
  }
  .contact-card .coords a:hover {
    color: var(--pomegranate);
    border-bottom-color: var(--pomegranate);
  }
  .contact-card .coords address {
    font-style: normal;
    font-family: var(--display);
    font-size: 18px;
    line-height: 1.5;
    color: var(--ink-soft);
  }
  .contact-card .coords address em {
    display: block;
    font-style: italic;
    color: var(--pomegranate);
    font-size: 14px;
    letter-spacing: 0.04em;
    margin-top: 6px;
  }

  /* donation / bank-transfer variant of the calling card */
  .donation-card::before { content: "\58F"; } /* Armenian dram sign */
  .donation-card .iban {
    font-family: var(--mono);
    font-size: clamp(16px, 1.8vw, 21px);
    letter-spacing: 0.08em;
    color: var(--pomegranate);
    margin: 18px 0 0;
    padding-top: 14px;
    border-top: 1px solid rgba(107,90,62,0.3);
    word-spacing: 0.12em;
  }
  .donation-card .iban small {
    display: block;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 7px;
    word-spacing: normal;
  }

  /* ───────── footer ───────── */
  footer {
    padding: 40px 0 56px;
    border-top: 1px solid var(--rule);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-ornament {
    display: flex;
    align-items: center;
    gap: clamp(20px, 4vw, 36px);
    margin: 0 0 44px;
    color: var(--pomegranate);
  }
  .footer-ornament .ornament-rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right,
      transparent 0%,
      var(--rule) 20%,
      var(--rule) 80%,
      transparent 100%);
    opacity: 0.55;
  }
  .footer-ornament svg {
    display: block;
    color: var(--pomegranate);
    flex-shrink: 0;
  }
  footer .glyph {
    font-family: var(--hye);
    font-size: 26px;
    color: var(--pomegranate);
    letter-spacing: 0.04em;
    text-transform: none;
  }
  footer a {
    color: var(--ink-faint);
    text-decoration: none;
    transition: color .25s ease;
  }
  footer a:hover { color: var(--pomegranate); }

  .footer-links {
    margin: 30px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .footer-links__label { color: var(--pomegranate); }
  .footer-links .sep { opacity: 0.5; }

  /* reveal animation */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal[data-d="1"] { transition-delay: 0.08s; }
  .reveal[data-d="2"] { transition-delay: 0.18s; }
  .reveal[data-d="3"] { transition-delay: 0.28s; }
  .reveal[data-d="4"] { transition-delay: 0.42s; }
  .reveal[data-d="5"] { transition-delay: 0.56s; }

  /* hero kinetic load */
  .colossus {
    opacity: 0;
    transform: translateY(40px);
    animation: loadCol 1.4s cubic-bezier(.2,.7,.2,1) 0.1s forwards;
  }
  .hero-title .line {
    opacity: 0;
    transform: translateY(20px);
    animation: loadLine 1s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .hero-title .line:nth-child(1) { animation-delay: 0.5s; }
  .hero-title .line:nth-child(2) { animation-delay: 0.6s; }
  .hero-title .line:nth-child(3) { animation-delay: 0.7s; }
  .hero-meta { opacity: 0; animation: fadeIn 1.2s ease 0.9s forwards; }
  @keyframes loadCol  { to { opacity: 1; transform: translateY(0); } }
  @keyframes loadLine { to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn   { to { opacity: 1; } }

  /* ───────── responsive ───────── */
  @media (max-width: 900px) {
    .topbar {
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding-bottom: 14px;
    }
    .topbar .mark { flex: 1 1 0; min-width: 0; }
    .topbar .mark .wordmark { min-width: 0; }
    .nav-toggle { display: inline-flex; order: 2; flex-shrink: 0; }
    nav.top {
      order: 3;
      flex-basis: 100%;
      width: 100%;
      flex-direction: column;
      gap: 0;
      margin-top: 4px;
      display: none;
    }
    nav.top.is-open { display: flex; }
    nav.top a {
      white-space: nowrap;
      padding: 13px 2px;
      border-bottom: 1px solid var(--rule);
    }
    nav.top a:last-child { border-bottom: none; }
    nav.top a::after { display: none; }
    .hero-plate { height: clamp(280px, 52vh, 440px); }
    .hero-plate .plate-caption { flex-direction: column; align-items: flex-start; gap: 14px; }
    .hero-plate .plate-caption .credit { text-align: left; }
    .hero-plate .plate-glyph { font-size: 44px; }
    .hero-meta { grid-template-columns: 1fr; }
    .hero-meta .corner { text-align: left; }
    .section-header { grid-template-columns: minmax(0, 1fr); }
    .section-title { min-width: 0; overflow-wrap: break-word; }
    .section-num { font-size: 44px; }
    .manifesto-body,
    .discipline,
    .practical-grid,
    .programme-coda {
      grid-template-columns: minmax(0, 1fr);
      grid-template-rows: none;
    }
    .practical-col {
      display: block;
      grid-row: auto;
      grid-template-rows: none;
      margin-bottom: 36px;
    }
    .manifesto-body .void,
    .practical-grid .void { display: none; }
    .schedule {
      display: block;
      grid-row: auto;
      grid-template-rows: none;
      grid-template-columns: none;
      margin-top: 20px;
    }
    .schedule .row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      column-gap: 14px;
      align-items: baseline;
      padding: 12px 0;
      border-bottom: 1px solid rgba(107,90,62,0.25);
    }
    .schedule .row > * { border-bottom: none; padding: 0; }
    .schedule .row b { grid-column: 1 / -1; margin-bottom: 5px; }
    .schedule .row span { grid-column: 1; }
    .schedule .row em {
      grid-column: 2;
      text-align: right;
      font-size: 11px;
      letter-spacing: 0.12em;
      white-space: nowrap;
    }
    .gallery {
      grid-template-columns: 1fr;
      grid-auto-rows: auto;
    }
    .g1, .g2, .g3, .g4, .g5, .g6 {
      grid-column: 1;
      grid-row: auto;
      aspect-ratio: 4 / 3;
      height: auto;
    }
    .g2, .g6 { aspect-ratio: 3 / 4; }
    .inscription-inner { grid-template-columns: minmax(0, 1fr); }
    .inscription-big { min-width: 0; }
    .inscription-actions { flex-direction: column; align-items: flex-start; }
    .inscription-actions .note { margin-left: 0; }
    .contact-card { grid-template-columns: minmax(0, 1fr); }
    .contact-card::before { left: 0; transform: none; }
  }

  /* ───────── phones ───────── */
  @media (max-width: 560px) {
    body { font-size: 17px; }
    .wrap { padding: 0 18px; }

    .topbar { padding: 18px 0 12px; }
    .topbar .mark .wordmark b { font-size: 14px; }
    .topbar .mark .logo { width: 34px; height: 34px; }

    .hero-plate { height: clamp(230px, 54vh, 380px); margin-top: 12px; }
    .hero-plate .plate-caption {
      left: 20px; right: 20px; bottom: 20px;
    }
    .hero-plate .plate-caption .lede { font-size: 16px; max-width: 100%; }
    .hero-plate .plate-glyph { font-size: 38px; }

    .ribbon-track { font-size: 30px; gap: 36px; }

    .section-title { font-size: clamp(27px, 8.6vw, 40px); }
    .section-num { font-size: 36px; }

    .manifesto-body p { font-size: 18px; }
    .manifesto-body p:first-of-type::first-letter {
      font-size: 4.4em; padding-right: 10px;
    }

    .discipline { padding: 30px 0; }
    .discipline .glyph-block { font-size: 72px; }
    .discipline h3 { font-size: 25px; }
    .discipline p { font-size: 17px; }

    .schedule .row { padding: 11px 0; }
    .schedule .row span { font-size: 15px; }
    .schedule .row b { font-size: 10px; letter-spacing: 0.12em; }
    .schedule .row em { font-size: 10px; letter-spacing: 0.06em; }

    .venue .time { font-size: 22px; }
    .venue address { font-size: 15px; }

    .inscription-big {
      font-size: clamp(32px, 9.5vw, 52px);
      line-height: 1.02;
      overflow-wrap: anywhere;
    }
    .inscription-actions a { font-size: 19px; overflow-wrap: anywhere; }

    .contact-card .coords,
    .contact-card .coords address { font-size: 16px; }
    .contact-card .director-name { font-size: clamp(24px, 7vw, 32px); }

    .donation-card .iban {
      font-size: 15px;
      letter-spacing: 0.03em;
      word-spacing: normal;
      overflow-wrap: anywhere;
    }
  }

  /* ═══════════ pages intérieures ═══════════
     Ajouté pour /cours-armenien-lausanne, /danse-armenienne-lausanne
     et /inscription. La page d'accueil n'utilise pas ces règles.       */

  /* fil d'Ariane */
  .crumb {
    margin: 26px 0 0;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }
  .crumb a { color: var(--ink-faint); text-decoration: none; border-bottom: 1px solid var(--rule); }
  .crumb a:hover { color: var(--pomegranate); border-color: var(--pomegranate); }
  .crumb .sep { opacity: 0.5; margin: 0 8px; }

  /* en-tête de page intérieure — l'équivalent sobre du héros d'accueil */
  .page-head {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: clamp(20px, 4vw, 56px);
    align-items: start;
    padding: clamp(26px, 4vw, 52px) 0 clamp(22px, 3vw, 38px);
    border-bottom: 1px solid var(--rule);
  }
  .page-head .glyph-col {
    font-family: var(--hye);
    font-size: 64px;
    line-height: 0.9;
    font-weight: 500;
    color: var(--pomegranate);
  }
  .page-head .glyph-col small {
    display: block;
    margin-top: 14px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }
  .page-title {
    margin: 0;
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(34px, 5.4vw, 68px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .page-title .strong { font-weight: 500; color: var(--pomegranate); }
  .page-title .hye { font-family: var(--hye); font-weight: 500; color: var(--pomegranate); }
  .page-lede {
    max-width: 60ch;
    margin: clamp(18px, 2.4vw, 26px) 0 0;
    font-size: clamp(18px, 1.4vw, 21px);
    line-height: 1.6;
    color: var(--ink-soft);
  }
  .page-lede .strong { font-weight: 600; color: var(--ink); }

  /* corps de page intérieure */
  .page-body { padding: clamp(24px, 3.4vw, 46px) 0 0; }
  .page-body > .prose {
    max-width: var(--measure);
    margin-left: calc(100px + clamp(20px, 4vw, 56px));
  }
  .page-body > .prose p { margin: 0 0 1.05em; color: var(--ink-soft); }
  .page-body > .prose p .strong { font-weight: 600; color: var(--ink); }
  .page-body > .prose p em { font-style: italic; }

  /* lien de navigation entre pages, en pied de contenu */
  .page-links {
    margin: clamp(40px, 5vw, 72px) 0 0;
    padding-top: 26px;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: clamp(18px, 3vw, 40px);
  }
  .page-links a {
    display: block;
    text-decoration: none;
    color: var(--ink);
  }
  .page-links .kicker {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--pomegranate);
    margin-bottom: 10px;
  }
  .page-links .label {
    font-family: var(--display);
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.15;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 4px;
    transition: border-color .25s ease, color .25s ease;
    display: inline-block;
  }
  .page-links a:hover .label { color: var(--pomegranate); border-color: var(--pomegranate); }

  /* état actif dans la barre de navigation */
  nav.top a.is-current { color: var(--pomegranate); }
  nav.top a.is-current::after { transform: scaleX(1); }

  @media (max-width: 900px) {
    .page-head { grid-template-columns: minmax(0, 1fr); }
    .page-head .glyph-col { font-size: 44px; }
    .page-head .glyph-col small { margin-top: 8px; }
    .page-body > .prose { margin-left: 0; }
    .page-title { min-width: 0; overflow-wrap: break-word; }
  }
  @media (max-width: 560px) {
    .page-title { font-size: clamp(28px, 8.6vw, 42px); }
    .page-head .glyph-col { font-size: 36px; }
    .page-lede { font-size: 17px; }
  }

  /* grille pratique à une seule colonne (pages intérieures).
     La version d'accueil est en 100px 1fr 1fr, prévue pour deux colonnes ;
     seule, la colonne utile tombait à moitié de largeur et l'horaire
     se brisait mot par mot. */
  .practical-grid.is-single { grid-template-columns: 100px minmax(0, 1fr); }
  @media (max-width: 900px) {
    .practical-grid.is-single { grid-template-columns: minmax(0, 1fr); }
  }

  /* ═══════════ socle d'accessibilité ═══════════ */
  :focus-visible {
    outline: 2px solid var(--pomegranate);
    outline-offset: 3px;
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
    .colossus,
    .hero-title .line,
    .hero-meta { opacity: 1; transform: none; }
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
    }
  }
