  /* ============== TOKENS — extracted from poster ============== */
  :root {
    --paper: #EFE8DA;
    /* cream paper */
    --paper-warm: #E8DFCD;
    --paper-deep: #DCD1B7;
    --ink: #0E1530;
    /* deep navy ink */
    --ink-soft: #1B244A;
    --ink-mute: #4A537A;
    --violet: #3F31C9;
    /* indigo / violet ribbon */
    --violet-deep: #2B1FA0;
    --orange: #E8612E;
    /* warm orange */
    --teal: #3A8585;
    /* teal ridge */
    --teal-deep: #1F4E51;
    --line: rgba(14, 21, 48, .18);
    --line-soft: rgba(14, 21, 48, .10);

    --serif: 'Archivo', system-ui, sans-serif;
    --display: 'Archivo', system-ui, sans-serif;
    --narrow: 'Archivo Narrow', 'Archivo', sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

    --max: 1320px;
    --gut: clamp(20px, 4vw, 56px);
  }

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

  html,
  body {
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  p {
    margin: 0;
  }

  body {
    font-family: var(--serif);
    background: var(--paper);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    line-height: 1.45;
    /* subtle paper grain */
    background-image:
      radial-gradient(1200px 600px at 80% -10%, rgba(63, 49, 201, .05), transparent 60%),
      radial-gradient(900px 500px at -10% 30%, rgba(232, 97, 46, .04), transparent 60%);
  }

  /* paper texture overlay */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.05  0 0 0 0 0.08  0 0 0 0 0.18  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: .55;
    pointer-events: none;
    mix-blend-mode: multiply;
    z-index: 1;
  }

  a {
    color: inherit;
  }

  img {
    max-width: 100%;
    display: block;
  }

  /* ============== UTILITIES ============== */
  .wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gut);
    position: relative;
    z-index: 2;
  }

  .eyebrow {
    font-family: var(--narrow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    color: var(--ink);
  }

  .eyebrow .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    margin: 0 .55em .12em;
    vertical-align: middle;
  }

  .mono {
    font-family: var(--mono);
    font-feature-settings: "ss01";
  }

  /* bracket-corners motif from the poster */
  .bracketed {
    position: relative;
    display: inline-block;
    padding: .12em .55em .05em .55em;
  }

  .bracketed::before,
  .bracketed::after {
    content: "";
    position: absolute;
    width: .55em;
    height: .55em;
    border: .12em solid currentColor;
    border-radius: 2px;
  }

  .bracketed::before {
    top: -.05em;
    left: -.05em;
    border-right: 0;
    border-bottom: 0;
  }

  .bracketed::after {
    bottom: -.05em;
    right: -.05em;
    border-left: 0;
    border-top: 0;
  }

  /* arrow link */
  .arrow-link {
    display: inline-flex;
    align-items: center;
    gap: .6em;
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    transition: gap .2s ease, color .2s ease;
  }

  .arrow-link:hover {
    gap: 1em;
    color: var(--violet);
    border-color: var(--violet);
  }

  /* ============== NAV ============== */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(239, 232, 218, .78);
    border-bottom: 1px solid var(--line-soft);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px var(--gut);
    max-width: var(--max);
    margin: 0 auto;
    gap: 24px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--display);
    font-weight: 800;
    text-decoration: none;
    color: var(--ink);
    letter-spacing: -.01em;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    position: relative;
  }

  .brand-mark::before,
  .brand-mark::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2.5px solid var(--ink);
  }

  .brand-mark::before {
    top: 0;
    left: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .brand-mark::after {
    bottom: 0;
    right: 0;
    border-left: 0;
    border-top: 0;
  }

  .brand-name {
    font-size: 15px;
    line-height: 1;
  }

  .brand-name small {
    display: block;
    font-family: var(--narrow);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: .16em;
    color: var(--ink-mute);
    margin-top: 4px;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 12.5px;
    font-weight: 600;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--ink);
    position: relative;
    padding: 8px 0;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 1.5px;
    background: var(--violet);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
  }

  .nav-links a:hover::after {
    transform: scaleX(1);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: .6em;
    background: var(--ink);
    color: var(--paper);
    padding: 12px 18px;
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s ease, transform .15s ease;
  }

  .btn:hover {
    background: var(--violet);
  }

  .btn:active {
    transform: translateY(1px);
  }

  .btn.btn-orange {
    background: var(--orange);
    color: white;
  }

  .btn.btn-orange:hover {
    background: #c44d1f;
  }

  .btn.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
  }

  .btn.btn-ghost:hover {
    background: var(--ink);
    color: var(--paper);
  }

  @media (max-width: 880px) {
    .nav-links {
      display: none;
    }
  }

  /* ============== HERO ============== */
  .hero {
    position: relative;
    padding: clamp(30px, 6vw, 64px) 0 clamp(38px, 7vw, 86px);
    overflow: hidden;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: stretch;
  }
   .hero-bg {
    padding: 50px;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: #051427;
    color: var(--paper);
    position: relative;
    
  }
  .hero-image{
    width: 100%;
    height: 100%;
  }
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .max-w-600 {
    max-width: 600px;
  }
  .no-border {
    border: none !important;
  }
  
  .desktop {
     display: block;
    }
    .mobile {
     display: none;
    }

  @media (max-width: 980px) {
    .hero-grid {
      grid-template-columns: 1fr;
    }
    .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
    
  }

  .hero-left {
    position: relative;
  }

  .hero-meta {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: clamp(20px, 3vw, 36px);
  }

  .chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    padding: 7px 12px;
    border-radius: 999px;
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    font-weight: 600;
    background: rgba(255, 255, 255, .4);
  }

  .chip .pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 0 rgba(232, 97, 46, .6);
    animation: pulse 1.8s ease-out infinite;
  }

  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(232, 97, 46, .6);
    }

    100% {
      box-shadow: 0 0 0 14px rgba(232, 97, 46, 0);
    }
  }

  .chip.violet .pulse {
    background: var(--violet);
    box-shadow: 0 0 0 0 rgba(63, 49, 201, .6);
    animation-name: pulse-v;
  }

  @keyframes pulse-v {
    0% {
      box-shadow: 0 0 0 0 rgba(63, 49, 201, .6);
    }

    100% {
      box-shadow: 0 0 0 14px rgba(63, 49, 201, 0);
    }
  }

  .hero-title {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(58px, 10vw, 132px);
    line-height: .88;
    letter-spacing: -.025em;
    margin: 0 0 24px;
    color: var(--ink);
    position: relative;
  }

  .hero-title .row {
    display: block;
    position: relative;
  }

  .hero-title .brackets-l {
    position: absolute;
    width: .5em;
    height: .5em;
    border-left: .08em solid var(--ink);
    border-top: .08em solid var(--ink);
    left: -.18em;
    top: -.05em;
  }

  .hero-title .brackets-r {
    position: absolute;
    width: .5em;
    height: .5em;
    border-right: .08em solid var(--ink);
    border-bottom: .08em solid var(--ink);
    right: -.05em;
    bottom: -.05em;
  }

  .hero-sub {
    font-family: var(--display);
    font-weight: 700;
    color: var(--violet);
    font-size: clamp(18px, 1.8vw, 22px);
    text-transform: uppercase;
    letter-spacing: .14em;
    margin: 8px 0 18px;
  }

  .hero-tags {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: clamp(14px, 1.3vw, 16px);
    color: var(--ink);
    margin-bottom: clamp(28px, 4vw, 44px);
  }

  .hero-tags span {
    display: inline-block;
  }

  .hero-tags .dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--ink);
    border-radius: 50%;
    margin: 0 .9em .14em;
    vertical-align: middle;
  }

  .hero-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 22px;
    align-items: baseline;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-bottom: 28px;
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 13px;
  }

  .hero-info dt {
    color: var(--ink-mute);
    font-weight: 600;
  }

  .hero-info dd {
    margin: 0;
    font-weight: 700;
  }

  .hero-info dd .city {
    color: var(--orange);
  }

  .hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-quote {
    margin-top: clamp(28px, 4vw, 44px);
    font-family: var(--display);
    font-weight: 700;
    color: var(--violet);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: clamp(13px, 1.2vw, 15px);
    line-height: 1.5;
    max-width: 380px;
  }

  /* hero right — poster card */
  .hero-poster {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow:
      0 1px 0 rgba(14, 21, 48, .06),
      0 22px 60px -22px rgba(14, 21, 48, .35);
    /*aspect-ratio: 1 / 1;*/
    background: var(--paper-warm);
  }

  .hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(14, 21, 48, .04));
    pointer-events: none;
  }

  .hero-poster-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(14, 21, 48, .85);
    color: var(--paper);
    padding: 7px 11px;
    font-family: var(--narrow);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: 4px;
    backdrop-filter: blur(4px);
  }

  /* hero edition strip */
  .edition-strip {
    margin-top: clamp(48px, 6vw, 72px);
    display: flex;
    flex-wrap: wrap;
    gap: 16px 26px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    align-items: center;
  }

  .edition-strip strong {
    color: var(--violet);
    font-weight: 700;
  }

  .edition-strip .sep {
    color: var(--line);
  }

  /* ============== SECTIONS ============== */
  section {
    position: relative;
    z-index: 2;
  }

  .section {
    padding: clamp(50px, 6.5vw, 90px) 0;
    position: relative;
  }

  .section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 3vw, 48px);
    align-items: end;
    align-items: start;
    margin-bottom: clamp(36px, 5vw, 64px);
  }

  @media (max-width: 880px) {
    .section-head {
      grid-template-columns: 1fr;
    }
  }

  .section-num {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--ink-mute);
    letter-spacing: .04em;
  }

  .section-title {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(28px, 3vw, 40px);
    line-height: .92;
    letter-spacing: -.02em;
    margin: 8px 0 0;
    color: var(--ink);
  }

  .section-lead {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 56ch;
  }

  /* ============== ABOUT ============== */
  .about {
    /* background: var(--paper); */
    padding: 100px 0 ;
    padding-top: 0px;
  }
.about-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
  }
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
     display: block;
     opacity: 80%;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 56px);
  }

  @media (max-width: 880px) {
    .about-grid {
      grid-template-columns: 1fr;
    }
     .about {
    /* background: var(--paper); */
    padding: 50px 0 ;
    padding-top: 0px;
  }
  }

  .about-card {
    background: white;
    border: 1px solid var(--line-soft);
    padding: clamp(24px, 3vw, 36px);
    border-radius: 4px;
    position: relative;
    box-shadow:
        0 4px 6px rgba(255, 255, 255, 0.11),
        0 10px 15px rgba(255, 255, 255, 0.121);
  }

  .about-card .label {
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
    font-weight: 600;
    color: var(--violet);
    margin-bottom: 14px;
  }

  .about-card h3 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(22px, 2.4vw, 28px);
    margin: 0 0 14px;
    line-height: 1.1;
    letter-spacing: -.01em;
  }

  .about-card p {
    margin: 0 0 14px;
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.6;
  }

  .about-card p:last-child {
    margin-bottom: 0;
  }

  .stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: clamp(36px, 4vw, 56px);
    border-radius: 2px;
    overflow: hidden;
    background-color: transparent;
        margin-bottom: 4px;
  }

  .stat {
    background: var(--paper);
    padding: 24px;
    border-right: 0.5px solid gray;
  }
  .stat:last-child {
    border-right: 0;
   
  }

  .stat .num {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: .95;
    letter-spacing: -.02em;
    color: var(--ink);
  }

  .stat .num.violet {
    color: var(--violet);
  }

  .stat .num.orange {
    color: var(--orange);
  }

  .stat .num.teal {
    color: var(--teal);
  }

  .stat .label {
    margin-top: 10px;
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ink-mute);
  }

  @media (max-width:880px) {
    .stat-row {
      grid-template-columns: repeat(2, 1fr);
    }
    
  }

  /* ============== MANIFESTO ============== */
  .manifesto {
    background: var(--ink);
    color: var(--paper);
    padding: clamp(50px, 6.5vw, 90px) 0;
    position: relative;
    overflow: hidden;
  }

  .manifesto::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, var(--violet) 0%, transparent 65%);
    opacity: .55;
    filter: blur(10px);
  }

  .manifesto::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 65%);
    opacity: .35;
    filter: blur(10px);
  }

  .manifesto .wrap {
    position: relative;
    z-index: 2;
  }

  .manifesto .eyebrow {
    color: rgba(239, 232, 218, .7);
  }

  .manifesto-quote {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(26px, 3vw, 66px);
    line-height: 1;
    letter-spacing: -.02em;
    margin: 24px 0 0;
    max-width: 20ch;
  }

  .manifesto-quote em {
    color: var(--orange);
    font-style: normal;
  }

  .manifesto-foot {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: clamp(48px, 6vw, 72px);
    padding-top: 28px;
    border-top: 1px solid rgba(239, 232, 218, .18);
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    color: rgba(239, 232, 218, .7);
    flex-wrap: wrap;
    gap: 16px;
  }

  .manifesto-foot .tag {
    font-family: var(--display);
    font-weight: 800;
    color: var(--paper);
    letter-spacing: .04em;
    font-size: 14px;
  }

  /* ============== DIMENSIONS ============== */
  .dimensions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  @media (max-width:980px) {
    .dimensions-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width:560px) {
    .dimensions-grid {
      grid-template-columns: 1fr;
    }
  }

  .dim {
    background: var(--paper);
    padding: clamp(22px, 2.6vw, 34px);
    position: relative;
    transition: background .25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .dim:hover {
    background: white;
  }

  .dim-num {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-mute);
    letter-spacing: .04em;
  }

  .dim-kicker {
    margin-top: 14px;
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
    font-weight: 600;
    color: var(--ink-mute);
  }

  .dim-title {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(20px, 2.2vw, 25px);
    line-height: 1;
    letter-spacing: -.01em;
    margin: 8px 0 22px;
    text-transform: uppercase;
    min-height: 2.2em;
  }

  .dim:nth-child(1) .dim-title {
    color: var(--violet);
  }

  .dim:nth-child(2) .dim-title {
    color: var(--orange);
  }

  .dim:nth-child(3) .dim-title {
    color: var(--teal);
  }

  .dim:nth-child(4) .dim-title {
    color: var(--ink);
  }

  .dim ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line-soft);
  }

  .dim li {
    padding: 12px 0;
    font-size: 14.5px;
    border-bottom: 1px solid var(--line-soft);
    display: flex;
    gap: 10px;
    align-items: baseline;
    color: var(--ink-soft);
  }

  .dim li::before {
    content: "›";
    color: var(--ink-mute);
    font-family: var(--mono);
  }

  /* ============== FORMATS DE PROGRAMMATION ============== */
  .festival-formats {
    background: var(--paper);
    padding-top: 0
  }

  .slide-line {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: clamp(14px, 2vw, 26px);
    font-family: var(--narrow);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: clamp(13px, 1.1vw, 17px);
    line-height: 1.35;
    color: var(--ink);
    margin-bottom: clamp(26px, 4vw, 48px);
  }

  .slide-line::after {
    content: "";
    height: 2px;
    background: var(--ink);
    margin-top: .65em;
  }

  .formats-title {
    max-width: 760px;
    margin: 0 0 clamp(30px, 4vw, 46px);
    font-family: var(--display);
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(28px, 3vw, 40px);
    line-height: .98;
    letter-spacing: 0;
    color: var(--ink);
  }

  .formats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 30px) clamp(22px, 3vw, 36px);
  }

  .format-tile {
    min-height: clamp(88px, 9vw, 116px);
    display: grid;
    place-items: center;
    padding: clamp(22px, 3vw, 38px);
    background: rgba(255, 255, 255, .48);
    border: 2px solid currentColor;
    border-radius: 0;
    box-shadow: 0 7px 0 currentColor;
  }

  .format-tile h3 {
    margin: 0;
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(24px, 2.6vw, 36px);
    line-height: .96;
    letter-spacing: 0;
    color: currentColor;
    text-align: center;
  }

  .format-ink {
    color: var(--ink);
  }

  .format-orange {
    color: #d86145;
  }

  .format-violet {
    color: #6745b8;
  }

  .format-teal {
    color: #145b61;
  }

  /* ============== MASTERCLASS FEATURE ============== */
  .masterclass-feature {
    background: var(--paper);
    padding-top: 0
  }

  .masterclass-hero {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    margin-bottom: clamp(28px, 4vw, 42px);
  }

  .masterclass-speaker {
    display: grid;
    grid-template-columns: clamp(120px, 13vw, 172px) 1fr;
    align-items: center;
    gap: clamp(22px, 3vw, 36px);
  }

  .masterclass-speaker img {
    width: clamp(120px, 13vw, 172px);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
  }

  .masterclass-label {
    margin: 0 0 4px;
    font-family: var(--display);
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(23px, 3vw, 40px);
    line-height: .98;
    letter-spacing: .02em;
    color: var(--ink);
  }

  .masterclass-speaker h2 {
    margin: 0;
    font-family: var(--display);
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(23px, 3vw, 40px);
    line-height: 1;
    letter-spacing: 0;
    color: #d86145;
  }

  .masterclass-meta {
    text-align: right;
    min-width: min(410px, 100%);
  }

  .masterclass-meta p {
    margin: 0 0 10px;
    font-family: var(--narrow);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1;
    letter-spacing: .04em;
    color: var(--ink);
  }

  .masterclass-meta span {
    display: block;
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(15px, 1.4vw, 18px);
    color: #d86145;
  }

  .masterclass-topic {
    width: min(760px, 100%);
    margin-bottom: clamp(26px, 3.5vw, 38px);
    padding: clamp(18px, 2vw, 24px) clamp(20px, 2.6vw, 30px);
    background: rgba(255, 255, 255, .5);
    border-radius: 16px;
    box-shadow: 5px 7px 0 rgba(14, 21, 48, .22);
    font-family: var(--display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.2;
    color: #145b61;
  }

  .masterclass-intro {
    max-width: 1240px;
    margin: 0 0 clamp(30px, 4vw, 44px);
    color: var(--ink);
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.55;
    font-weight: 500;
  }

  .masterclass-bio {
    background: rgba(255, 255, 255, .52);
    border-radius: 18px;
    padding: clamp(24px, 3vw, 34px);
    box-shadow: 7px 9px 0 rgba(14, 21, 48, .2);
  }

  .masterclass-bio h3 {
    margin: 0 0 12px;
    font-family: var(--display);
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1;
    letter-spacing: 0;
    color: #6745b8;
  }

  .masterclass-bio p {
    margin: 0;
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.55;
    font-weight: 500;
    color: var(--ink);
  }

  .masterclass-bio p + p {
    margin-top: 22px;
  }

  @media (max-width: 980px) {
    .formats-grid {
      gap: 18px;
    }

    .masterclass-hero {
      grid-template-columns: 1fr;
      align-items: start;
    }

    .masterclass-meta {
      text-align: left;
      min-width: 0;
    }
  }

  @media (max-width: 680px) {
    .slide-line {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .slide-line::after {
      margin-top: 0;
    }

    .formats-grid {
      grid-template-columns: 1fr;
    }

    .format-tile {
      min-height: 96px;
      box-shadow: 0 5px 0 currentColor;
    }

    .masterclass-speaker {
      grid-template-columns: 96px 1fr;
    }

    .masterclass-speaker img {
      width: 96px;
    }

    .masterclass-topic,
    .masterclass-bio {
      border-radius: 10px;
      box-shadow: 4px 5px 0 rgba(14, 21, 48, .2);
    }
  }

  /* ============== PROGRAMME ============== */
  .programme-download {
    padding-top: 0;
  }

  .programme-download-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr auto;
    gap: clamp(20px, 3vw, 42px);
    align-items: center;
    background: var(--ink);
    color: var(--paper);
    border-radius: 4px;
    padding: clamp(24px, 3.5vw, 46px);
    position: relative;
    overflow: hidden;
  }

  .programme-download-card::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -50px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, var(--violet) 0%, transparent 68%);
    opacity: .5;
    filter: blur(16px);
  }

  .programme-download-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--violet), var(--orange), var(--teal));
  }

  .programme-download-card > * {
    position: relative;
    z-index: 2;
  }

  .programme-download-card .section-num {
    color: rgba(239, 232, 218, .6);
  }

  .programme-download-card .section-title {
    color: var(--paper);
  }

  .programme-download-card p {
    color: rgba(239, 232, 218, .78);
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.55;
    max-width: 58ch;
  }

  .programme-download-card .btn {
    justify-content: center;
    white-space: nowrap;
  }

  @media (max-width: 980px) {
    .programme-download-card {
      grid-template-columns: 1fr;
      align-items: start;
    }

    .programme-download-card .btn {
      width: fit-content;
    }
  }

  @media (max-width: 560px) {
    .programme-download-card .btn {
      width: 100%;
      white-space: normal;
      text-align: center;
    }
  }

  .programme {
    padding-top: 0px;
  }

  .table-ronde,
  .atelier,
  .competition-showcase,
  .jury-showcase,
  .expo-showcase {
    padding-top: 0;
  }


  .programme-slider {
    position: relative;
    min-width: 0;
    padding: 0 clamp(42px, 5vw, 64px) 42px;
  }

  .programme-swiper,
  .table-ronde-swiper,
  .atelier-swiper,
  .competition-swiper,
  .jury-swiper {
    width: 100%;
    overflow: hidden;
  }

  .programme-day {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    min-width: 0;
    box-shadow: none;
    height: 100%;
    overflow: hidden;
  }

  .programme-day img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    scale: 1.01;
  }

  .programme-nav {
    position: absolute;
    top: calc(50% - 21px);
    z-index: 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--display);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  }

  .programme-nav:hover,
  .programme-nav:focus-visible {
    transform: translateY(-1px);
    background: var(--orange);
    border-color: var(--orange);
    color: white;
    outline: 0;
  }

  .programme-prev {
    left: 0;
  }

  .programme-next {
    right: 0;
  }

  .table-ronde-prev {
    left: 0;
  }

  .table-ronde-next {
    right: 0;
  }

  .atelier-prev {
    left: 0;
  }

  .atelier-next {
    right: 0;
  }

  .competition-prev {
    left: 0;
  }

  .competition-next {
    right: 0;
  }

  .jury-prev {
    left: 0;
  }

  .jury-next {
    right: 0;
  }

  .programme-slider > .programme-pagination {
    position: absolute;
    left: 50% !important;
    right: auto !important;
    bottom: 0;
    width: auto !important;
    transform: translateX(-50%) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .programme-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    border: 1px solid var(--ink);
    background: transparent;
    opacity: 1;
  }

  .programme-pagination .swiper-pagination-bullet-active {
    background: var(--orange);
    border-color: var(--orange);
  }

  .programme-day-head {
    display: grid;
   
     grid-template-columns: 1fr 0.3fr;
    gap: 18px;
    align-items: start;
    min-height: 169px;
    padding: clamp(22px, 2.4vw, 30px);
    border-bottom: 1px solid var(--line);
    background: white;
    color: var(--ink);
  }

  .programme-kicker {
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-mute);
  }

  .programme-day h3 {
    font-family: var(--display);
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.05;
    margin: 8px 0 10px;
    letter-spacing: 0;
  }

  .programme-day-head p {
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-mute);
    line-height: 1.45;
  }

  .programme-date {
    width: auto;
    aspect-ratio: auto;
    display: block;
    position: static;
    border: 0;
    border-radius: 0;
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(34px, 3.6vw, 48px);
    line-height: 1;
    color: var(--orange);
  }

  .programme-list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: programme;
  }

  .programme-list li {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 14px clamp(18px, 2vw, 26px);
    border-bottom: 1px solid var(--line-soft);
    counter-increment: programme;
    position: relative;
  }

  .programme-list li:last-child {
    border-bottom: 0;
  }

  .programme-list li::before {
    content: none;
  }

  .programme-list time {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--violet);
    letter-spacing: .02em;
    white-space: nowrap;
  }

  .programme-list span {
    display: block;
    padding-right: 0;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--ink-soft);
  }

  @media (max-width: 1080px) {
    .programme-day-head {
       display: grid;
        grid-template-columns: 1fr auto;
         min-height: 0px;
      
     }
  }

  @media (max-width: 560px) {
    .programme-slider {
      padding: 0 0 38px;
    }

    .programme-nav {
      top: auto;
      bottom: 0;
      width: 34px;
      height: 34px;
      font-size: 28px;
    }

    .programme-prev {
      left: calc(50% - 82px);
    }

    .programme-next {
      right: calc(50% - 82px);
    }

    .table-ronde-prev {
      left: calc(50% - 82px);
    }

    .table-ronde-next {
      right: calc(50% - 82px);
    }

    .atelier-prev {
      left: calc(50% - 82px);
    }

    .atelier-next {
      right: calc(50% - 82px);
    }

    .competition-prev {
      left: calc(50% - 82px);
    }

    .competition-next {
      right: calc(50% - 82px);
    }

    .jury-prev {
      left: calc(50% - 82px);
    }

    .jury-next {
      right: calc(50% - 82px);
    }

    .programme-list li {
      grid-template-columns: 1fr;
      gap: 6px;
    }
      
    .programme-list span {
      padding-right: 26px;
    }
  }

  /* ============== COMPÉTITION ============== */
  .comp {
    display: none;
    /* background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%); */
  }

  .comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 64px);
    align-items: stretch;
  }

  @media (max-width:980px) {
    .comp-grid {
      grid-template-columns: 1fr;
    }
  }

  .crit-table {
    border-top: 2px solid var(--ink);
    width: 100%;
  }

  .crit-row {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
  }

  .crit-row dt {
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-mute);
  }

  .crit-row dd {
    margin: 0;
    color: var(--ink);
    font-size: 15.5px;
    line-height: 1.55;
  }

  .deadline-card {
    background: var(--ink);
    color: var(--paper);
    padding: clamp(24px, 3vw, 36px);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }

  .deadline-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--violet);
    opacity: .35;
    filter: blur(20px);
  }

  .deadline-card>* {
    position: relative;
    z-index: 2;
  }

  .deadline-card .label {
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
    color: var(--orange);
    font-weight: 700;
  }

  .deadline-card h3 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(34px, 4vw, 52px);
    line-height: .95;
    letter-spacing: -.02em;
    margin: 12px 0 6px;
  }

  .deadline-card .date {
    font-family: var(--display);
    font-weight: 700;
    color: var(--paper);
    opacity: .7;
    font-size: 15px;
    letter-spacing: .04em;
    margin-bottom: 24px;
  }

  .countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 18px 0 26px;
  }

  .countdown .cell {
    background: rgba(239, 232, 218, .08);
    border: 1px solid rgba(239, 232, 218, .14);
    padding: 14px 6px;
    text-align: center;
    border-radius: 4px;
  }

  .countdown .n {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1;
    letter-spacing: -.02em;
    color: var(--paper);
  }

  .countdown .l {
    margin-top: 6px;
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
    color: rgba(239, 232, 218, .6);
    font-weight: 600;
  }

  .deadline-card .btn {
    background: var(--orange);
    color: white;
    width: 100%;
    justify-content: center;
    padding: 16px;
  }

  .deadline-card .btn:hover {
    background: #c44d1f;
  }

  .deadline-card .fee {
    margin-top: 14px;
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    color: rgba(239, 232, 218, .6);
    text-align: center;
    font-weight: 600;
  }

  .deadline-card .fee strong {
    color: var(--orange);
  }

  /* ============== PALMARÈS ============== */
  .palm {
    /* background: var(--paper); */
  }

  .prizes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
  }

  @media (max-width:980px) {
    .prizes {
      grid-template-columns: 1fr;
    }
  }

  .prize {
    background: white;
    border: 1px solid var(--line-soft);
    padding: clamp(28px, 3vw, 40px);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.2, .7, .2, 1), box-shadow .3s;
  }

  .prize:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px -20px rgba(14, 21, 48, .25);
  }

  .prize::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
  }

  .prize:nth-child(1)::before {
    background: var(--violet);
  }

  .prize:nth-child(2)::before {
    background: var(--orange);
  }

  .prize:nth-child(3)::before {
    background: var(--teal);
  }

  .prize .num {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-mute);
    letter-spacing: .04em;
  }

  .prize .kind {
    margin-top: 12px;
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-mute);
  }

  .prize h3 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(32px, 4vw, 46px);
    line-height: .95;
    letter-spacing: -.02em;
    margin: 6px 0 18px;
  }

  .prize:nth-child(1) h3 {
    color: var(--violet);
  }

  .prize:nth-child(2) h3 {
    color: var(--orange);
  }

  .prize:nth-child(3) h3 {
    color: var(--teal);
  }

  .prize p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px;
  }

  .prize .award {
    border-top: 1px solid var(--line-soft);
    padding-top: 18px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 13.5px;
    letter-spacing: .04em;
    color: var(--ink);
    text-transform: uppercase;
  }

  .prize .award .amount {
    font-family: var(--display);
    font-size: clamp(24px, 2.6vw, 30px);
    font-weight: 900;
    display: block;
    margin-bottom: 4px;
    letter-spacing: -.01em;
  }

  .prize:nth-child(1) .award .amount {
    color: var(--violet);
  }

  .prize:nth-child(2) .award .amount {
    color: var(--orange);
  }

  .prize:nth-child(3) .award .amount {
    color: var(--teal);
    font-size: clamp(18px, 1.8vw, 22px);
  }

  /* ============== CANDIDATURES (form section) ============== */
  .candid {
    display: none;
    background: var(--ink);
    color: var(--paper);
    padding: clamp(50px, 6.5vw, 90px) 0;
    position: relative;
    overflow: hidden;
  }

  .candid::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--violet), transparent 70%);
    opacity: .4;
    filter: blur(20px);
  }

  .section-candid.section-head {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
  }

  @media (max-width: 880px) {
    .section-candid.section-head {
      grid-template-columns: 1fr;
    }
  }

  .candid .wrap {
    position: relative;
    z-index: 2;
  }

  .candid .section-num {
    color: rgba(239, 232, 218, .6);
  }

  .candid .section-title {
    color: var(--paper);
  }

  .candid .section-lead {
    color: rgba(239, 232, 218, .78);
  }

  .candid-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
  }

  @media (max-width:980px) {
    .candid-grid {
      grid-template-columns: 1fr;
    }
  }

  /* steps */
  .steps {
    border-left: 1px solid rgba(239, 232, 218, .18);
    padding-left: 0;
    list-style: none;
    margin: 0;
  }

  .step {
    position: relative;
    padding: 20px 0 26px 36px;
    border-bottom: 1px dashed rgba(239, 232, 218, .14);
  }

  .step:last-child {
    border-bottom: 0;
  }

  .step::before {
    content: counter(step, decimal-leading-zero);
    counter-increment: step;
    position: absolute;
    left: -16px;
    top: 22px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--violet);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    border: 4px solid var(--ink);
  }

  .steps {
    counter-reset: step;
  }

  .step h4 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(18px, 1.8vw, 22px);
    margin: 0 0 8px;
    letter-spacing: -.01em;
  }

  .step p {
    margin: 0;
    color: rgba(239, 232, 218, .72);
    font-size: 14.5px;
    line-height: 1.55;
  }

  .step .meta {
    margin-top: 8px;
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--orange);
    letter-spacing: .04em;
  }

  /* form */
  .form-card {
    background: var(--paper);
    color: var(--ink);
    border-radius: 6px;
    padding: clamp(24px, 3vw, 40px);
    box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .5);
    position: relative;
  }

  .form-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-family: var(--mono);
    font-size: 12px;
  }

  .form-progress .dots {
    display: flex;
    gap: 6px;
  }

  .form-progress .d {
    width: 22px;
    height: 4px;
    background: var(--line);
    border-radius: 2px;
    transition: background .25s ease;
  }

  .form-progress .d.on {
    background: var(--violet);
  }

  .form-progress .label {
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
    color: var(--ink-mute);
    font-weight: 600;
    margin-left: auto;
  }

  .form-card h3 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(24px, 2.6vw, 32px);
    letter-spacing: -.01em;
    line-height: 1.05;
    margin: 0 0 6px;
  }

  .form-card .sub {
    font-size: 14.5px;
    color: var(--ink-mute);
    margin-bottom: 24px;
    line-height: 1.55;
  }

  .form-step {
    display: none;
  }

  .form-step.on {
    display: block;
    animation: fadeIn .35s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .field {
    display: block;
    margin-bottom: 18px;
  }

  .field label {
    display: block;
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-mute);
    margin-bottom: 8px;
  }

  .field label .req {
    color: var(--orange);
    margin-left: 4px;
  }

  .field input[type=text],
  .field input[type=email],
  .field input[type=url],
  .field input[type=number],
  .field select,
  .field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    background: white;
    font-family: var(--serif);
    font-size: 15px;
    color: var(--ink);
    border-radius: 4px;
    transition: border-color .2s ease, box-shadow .2s ease;
    outline: none;
  }

  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(63, 49, 201, .12);
  }

  .field textarea {
    resize: vertical;
    min-height: 100px;
  }

  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  @media (max-width: 600px) {
    .field-row {
      grid-template-columns: 1fr;
    }
  }

  .field .hint {
    margin-top: 6px;
    font-size: 12.5px;
    color: var(--ink-mute);
    line-height: 1.45;
  }

  /* radio cards */
  .radio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  @media (max-width: 600px) {
    .radio-grid {
      grid-template-columns: 1fr;
    }
  }

  .radio-card {
    border: 1px solid var(--line);
    padding: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    display: block;
    background: white;
  }

  .radio-card input {
    display: none;
  }

  .radio-card .t {
    font-family: var(--display);
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .radio-card .t::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--line);
    border-radius: 50%;
    flex-shrink: 0;
    transition: border-color .15s, background .15s;
  }

  .radio-card .d {
    font-size: 13px;
    color: var(--ink-mute);
    line-height: 1.4;
    padding-left: 22px;
  }

  .radio-card:hover {
    border-color: var(--ink-mute);
  }

  .radio-card input:checked~.t::before {
    border-color: var(--violet);
    background: var(--violet);
    box-shadow: inset 0 0 0 3px white;
  }

  .radio-card:has(input:checked) {
    border-color: var(--violet);
    background: rgba(63, 49, 201, .04);
  }

  /* file dropzone */
  .dropzone {
    border: 2px dashed var(--line);
    border-radius: 6px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    background: white;
    transition: border-color .2s, background .2s;
  }

  .dropzone:hover,
  .dropzone.drag {
    border-color: var(--violet);
    background: rgba(63, 49, 201, .04);
  }

  .dropzone input {
    display: none;
  }

  .dropzone .icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 10px;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .dropzone .t {
    font-family: var(--display);
    font-weight: 700;
    font-size: 14.5px;
    margin-bottom: 4px;
  }

  .dropzone .h {
    font-size: 12.5px;
    color: var(--ink-mute);
  }

  .dropzone.has-file {
    border-color: var(--violet);
    border-style: solid;
    background: rgba(63, 49, 201, .05);
  }

  /* checkbox */
  .check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    cursor: pointer;
    background: white;
  }

  .check input {
    margin-top: 2px;
    accent-color: var(--violet);
  }

  .check span {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--ink-soft);
  }

  .form-message {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 6px;
    border: 1px solid var(--line);
    background: white;
    font-size: 14px;
    color: var(--ink-soft);
  }

  .form-message.is-error {
    border-color: rgba(232, 97, 46, .35);
    background: rgba(232, 97, 46, .08);
    color: #7a2f13;
  }

  .form-message.is-success {
    border-color: rgba(58, 133, 133, .35);
    background: rgba(58, 133, 133, .09);
    color: var(--teal-deep);
  }

  .form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    gap: 10px;
  }

  .form-actions .left {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-mute);
  }

  .form-actions .btn[disabled] {
    opacity: .65;
    cursor: wait;
    pointer-events: none;
  }

  /* Recap */
  .recap {
    background: white;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 18px;
  }

  .recap dt {
    font-family: var(--narrow);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 600;
    margin-top: 10px;
  }

  .recap dt:first-child {
    margin-top: 0;
  }

  .recap dd {
    margin: 4px 0 0;
    font-size: 14.5px;
    color: var(--ink);
  }

  /* Success */
  .success {
    text-align: center;
    padding: 30px 16px;
  }

  .success .seal {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--violet);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 30px;
  }

  .success h3 {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 10px;
  }

  .success p {
    color: var(--ink-mute);
    font-size: 14.5px;
    margin: 6px 0;
  }

  .success .ref {
    margin-top: 16px;
    display: inline-block;
    background: var(--paper-warm);
    border: 1px dashed var(--ink);
    padding: 10px 18px;
    font-family: var(--mono);
    font-size: 14px;
    border-radius: 4px;
    letter-spacing: .04em;
  }

  /* ============== RÈGLEMENT ============== */
  .reglement {
    background: var(--paper);
  }

  .reg-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: clamp(20px, 4vw, 56px);
    align-items: start;
  }

  @media (max-width: 980px) {
    .reg-grid {
      grid-template-columns: 1fr;
    }
  }

  .reg-toc {
    position: sticky;
    top: 76px;
    border-top: 1px solid var(--ink);
    padding-top: 20px;
  }

  .reg-toc .label {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-mute);
    margin-bottom: 14px;
  }

  .reg-toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc;
  }

  .reg-toc li {
    counter-increment: toc;
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .reg-toc a {
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: baseline;
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    transition: color .2s;
  }

  .reg-toc a::before {
    content: counter(toc, decimal-leading-zero);
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-mute);
    flex-shrink: 0;
  }

  .reg-toc a:hover {
    color: var(--violet);
  }

  .reg-body {
    max-width: 720px;
  }

  .article {
    padding-bottom: clamp(28px, 3vw, 40px);
    margin-bottom: clamp(28px, 3vw, 40px);
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 90px;
  }

  .article:last-child {
    border-bottom: 0;
  }

  .article .num {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--violet);
    letter-spacing: .04em;
  }

  .article h3 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(24px, 2.8vw, 32px);
    line-height: 1.05;
    letter-spacing: -.01em;
    margin: 4px 0 14px;
  }

  .article p,
  .article li {
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.65;
  }

  .article ul {
    padding-left: 18px;
    margin: 10px 0;
  }

  .article li {
    margin-bottom: 6px;
  }

  .article li strong {
    color: var(--ink);
  }

  .article .callout {
    background: white;
    border-left: 3px solid var(--orange);
    padding: 14px 18px;
    border-radius: 0 4px 4px 0;
    margin: 14px 0;
    font-size: 14.5px;
  }

  .article .callout strong {
    color: var(--ink);
  }

  /* ============== FAQ ============== */
  .faq {
    display: none;
    /* background: var(--paper-warm); */
  }

  .faq-list {
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
  }

  .faq-item {
    border-bottom: 1px solid var(--line);
  }

  .faq-item:last-child {
    border-bottom: 0;
  }

  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    display: flex;
    gap: 16px;
    align-items: baseline;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(17px, 1.8vw, 21px);
    letter-spacing: -.01em;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary::before {
    content: "+";
    font-family: var(--mono);
    font-size: 22px;
    color: var(--violet);
    transition: transform .2s;
    width: 24px;
    flex-shrink: 0;
  }

  .faq-item[open] summary::before {
    content: "−";
  }

  .faq-item .a {
    padding: 0 0 22px 40px;
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.65;
    max-width: 70ch;
  }

  /* ============== ORGANISATEURS ============== */
  .orgs {
    /*background: var(--paper);*/
    padding: clamp(50px, 6.5vw, 90px) 0;
    border-top: 1px solid var(--line);
  }

  .orgs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: clamp(28px, 4vw, 48px);
  }

  @media (max-width: 880px) {
    .orgs-grid {
      grid-template-columns: 1fr;
    }
  }

  .org {
    background: white;
    border: 1px solid var(--line-soft);
    padding: 28px;
    border-radius: 4px;
  }

  .org .role {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--violet);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .org h4 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1;
    letter-spacing: -.01em;
    margin: 0 0 4px;
  }

  .org .place {
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
    color: var(--ink-mute);
    font-weight: 600;
    margin-bottom: 14px;
  }

  .org p {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
  }

  /* ============== FOOTER ============== */
  .foot {
    background: var(--ink);
    color: var(--paper);
    padding: clamp(56px, 6vw, 80px) 0 30px;
    position: relative;
    overflow: hidden;
  }

  .foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
  }

  @media (max-width: 880px) {
    .foot-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 560px) {
    .foot-grid {
      grid-template-columns: 1fr;
    }
  }

  .foot-brand {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(36px, 5vw, 60px);
    line-height: .9;
    letter-spacing: -.02em;
    color: var(--paper);
  }

  .foot-brand .v {
    color: var(--violet);
  }

  .foot-brand .o {
    color: var(--orange);
  }

  .foot p.tag {
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 700;
    color: var(--violet);
    margin-top: 18px;
  }

  .foot h5 {
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
    font-weight: 700;
    color: rgba(239, 232, 218, .55);
    margin: 0 0 14px;
  }

  .foot ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .foot li {
    padding: 4px 0;
  }

  .foot a {
    color: var(--paper);
    text-decoration: none;
    font-size: 14.5px;
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
  }

  .foot a:hover {
    border-color: var(--paper);
  }

  .foot-bottom {
    margin-top: clamp(40px, 5vw, 64px);
    padding-top: 24px;
    border-top: 1px solid rgba(239, 232, 218, .18);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-family: var(--mono);
    font-size: 12px;
    color: rgba(239, 232, 218, .55);
  }

  /* logo strip */
  .logos-strip {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    margin-top: 18px;
    color: rgba(239, 232, 218, .85);
  }

  .logo-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(239, 232, 218, .22);
    padding: 8px 12px;
    border-radius: 4px;
    font-family: var(--narrow);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    font-weight: 600;
  }

  .logo-pill .sq {
    width: 16px;
    height: 16px;
    background: var(--paper);
    display: inline-block;
    border-radius: 2px;
  }

  /* ============== ANIM ============== */
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }
  }

  /* small-screen tweaks */
  @media (max-width: 600px) {
    .hero-info {
      grid-template-columns: 1fr;
    }

    .hero-info dt {
      margin-top: 6px;
    }
  }


  .comp,
  .palm {
    padding-top: 0px !important;
  }


  /* ============== PARTENAIRES ============== */
.partners-section {
  
  border-top: 1px solid var(--line);
}

.partner-block + .partner-block {
  margin-top: clamp(34px, 4vw, 52px);
}

.partner-label {
  font-family: var(--narrow);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-mute);
  margin-bottom: 14px;
}

.logo-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.founders-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partners-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sponsors-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logo-card {
  min-height: clamp(116px, 12vw, 156px);
  display: grid;
  place-items: center;
  background: white;
  padding: clamp(20px, 2.4vw, 34px);
}

.logo-card img {
  width: 100%;
  max-width: 170px;
  max-height: 95px;
  object-fit: contain;
  display: block;
}

@media (max-width: 980px) {
   .sponsors-grid,
  .founders-grid,
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .sponsors-grid,
  .founders-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }
}



/* ============== VOIX INTERNATIONALES ============== */
.speakers-section {
 padding-top: 0px;
}

.speakers-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 48px);
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.speakers-intro {
  max-width: 58ch;
}

.speakers-lead {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 14px;
}

.speakers-intro p:last-child {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.speaker-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.speaker-photo {
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(63, 49, 201, .12), rgba(232, 97, 46, .10)),
    var(--paper-warm);
  overflow: hidden;
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.speaker-photo img[src=""] {
  display: none;
}

.speaker-body {
  padding: 20px;
  min-height: 154px;
}

.speaker-org,
.speaker-role {
  font-family: var(--narrow);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 11px;
  font-weight: 700;
}

.speaker-org {
  color: var(--orange);
  margin-bottom: 8px;
}

.speaker-role {
  color: var(--ink-mute);
  line-height: 1.35;
  min-height: 2.7em;
}

.speaker-card h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1;
  letter-spacing: 0;
  margin: 18px 0 0;
  color: var(--ink);
}

@media (max-width: 980px) {
  .speakers-head,
  .speakers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .speakers-head,
  .speakers-grid {
    grid-template-columns: 1fr;
  }

  .speaker-card {
    display: grid;
    grid-template-columns: 120px 1fr;
  }

  .speaker-photo {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .speaker-body {
    min-height: 0;
    padding: 18px;
  }
}


.partners-grid{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: transparent;
  border: none;
}
.partners-grid .logo-card {
  flex: 0 0 19.9%;
  height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  outline: 1px solid var(--line);
  offset: -1px;
}
@media (min-width: 992px) and (max-width: 1024px) {
  .partners-grid .logo-card {
    flex: 0 0 24.9%;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .partners-grid .logo-card {
    flex: 0 0 33.2%;
    height: 135px;
  }
}
@media (max-width: 768px) {
  .partners-grid .logo-card {
    flex: 0 0 49.9%;
    height: 135px;
  }
}
@media (max-width: 540px) {
  .partners-grid .logo-card {
    flex: 0 0 100%;
  }
}

#whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25D366;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.25);
      text-decoration: none;
      transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease;
      animation: wa-pulse 2.8s ease-in-out infinite;
    }
    #whatsapp-float svg {
      width: 32px;
      height: 32px;
      fill: #fff;
      flex-shrink: 0;
    }
    #whatsapp-float:hover {
      transform: scale(1.12);
      box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65), 0 4px 12px rgba(0,0,0,0.3);
      animation: none;
    }
    .wa-tooltip {
      position: absolute;
      right: 70px;
      background: #111;
      color: #fff;
      font-family: 'Inter', 'Outfit', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.02em;
      white-space: nowrap;
      padding: 7px 14px;
      border-radius: 8px;
      pointer-events: none;
      opacity: 0;
      transform: translateX(6px);
      transition: opacity 0.2s ease, transform 0.2s ease;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .wa-tooltip::after {
      content: '';
      position: absolute;
      right: -7px;
      top: 50%;
      transform: translateY(-50%);
      border: 7px solid transparent;
      border-left-color: #111;
      border-right-width: 0;
    }
    #whatsapp-float:hover .wa-tooltip {
      opacity: 1;
      transform: translateX(0);
    }
    @keyframes wa-pulse {
      0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
      60%  { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
      100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
    }
    @media (max-width: 600px) {
      #whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 54px;
        height: 54px;
      }
      #whatsapp-float svg { width: 28px; height: 28px; }
    }


    .logo-grid.sponsors-grid
    { 
      background:transparent;
      border: 0;

     }