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

  :root {
    --black:       #080810;
    --deep-night:  #0e0e1c;
    --dark-purple: #16112a;
    --med-purple:  #221a3a;
    --rose:        #c4547a;
    --rose-light:  #e8789a;
    --gold:        #c8a84b;
    --gold-light:  #e8c96a;
    --gold-pale:   #f5e6b0;
    --teal:        #4aaabb;
    --white:       #ffffff;
    --off-white:   #f0eaf8;
    --silver:      #d8d4e8;
    --grey:        #7a7890;
  }

  html, body {
    width: 100%; height: 100%;
    overflow: hidden;
    background: var(--black);
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    cursor: default;
  }

  /* ─── SLIDESHOW ─── */
  #deck {
    position: relative;
    width: 100vw; height: 100vh;
    overflow: hidden;
  }

  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.75s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }
  .slide.active {
    opacity: 1;
    pointer-events: all;
  }

  /* animated children */
  .slide .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .slide.active .reveal { opacity: 1; transform: none; }
  .slide.active .reveal:nth-child(1)  { transition-delay: 0.15s; }
  .slide.active .reveal:nth-child(2)  { transition-delay: 0.28s; }
  .slide.active .reveal:nth-child(3)  { transition-delay: 0.41s; }
  .slide.active .reveal:nth-child(4)  { transition-delay: 0.54s; }
  .slide.active .reveal:nth-child(5)  { transition-delay: 0.67s; }
  .slide.active .reveal:nth-child(6)  { transition-delay: 0.80s; }
  .slide.active .reveal:nth-child(7)  { transition-delay: 0.93s; }

  /* ─── DECORATIVE BORDER ─── */
  .gold-frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
  }
  .gold-frame::before, .gold-frame::after {
    content: '';
    position: absolute;
    background: var(--gold);
  }
  .gold-frame::before { left: 0; right: 0; height: 3px; }
  .gold-frame::after  { left: 0; right: 0; bottom: 0; height: 3px; }
  .gold-frame .side-l, .gold-frame .side-r {
    position: absolute;
    top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
  }
  .gold-frame .side-r { right: 0; }

  /* ─── NAV ─── */
  #nav {
    position: fixed;
    bottom: 2.2vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 100;
  }
  .nav-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--grey);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
  }
  .nav-dot.active { background: var(--gold); transform: scale(1.5); }
  .nav-arrow {
    background: none;
    border: 1px solid var(--grey);
    color: var(--grey);
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s;
  }
  .nav-arrow:hover { border-color: var(--gold); color: var(--gold); }

  /* slide counter */
  #counter {
    position: fixed;
    top: 3vh; right: 3vw;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--grey);
    z-index: 100;
  }

  /* ─── SHARED ELEMENTS ─── */
  .eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(8px, 1vw, 11px);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6em;
  }
  .slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3.2vw, 44px);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0.6em;
  }
  .rule-gold { width: 100%; height: 1px; background: var(--gold); margin: 1em 0; }
  .rule-rose { width: 100%; height: 1px; background: var(--rose); margin: 1em 0; }

  /* ─── LOGO ─── */
  .logo-sm {
    width: clamp(38px, 4vw, 54px);
    height: clamp(38px, 4vw, 54px);
    object-fit: contain;
  }
  .logo-lg {
    width: clamp(120px, 14vw, 190px);
    height: clamp(120px, 14vw, 190px);
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(200,168,75,0.18));
  }

  /* ─── SLIDE LAYOUTS ─── */
  .pad {
    padding: 4vh 5vw calc(4vh + 90px);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  /* ─── S1: COVER ─── */
  #s1 { background: var(--black); }
  #s1 .cover-header {
    display: flex;
    align-items: center;
    gap: 1.2vw;
    margin-bottom: auto;
  }
  #s1 .cover-agency {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(8px, 0.9vw, 11px);
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--white);
  }
  #s1 .cover-header .logo-sm {
    width: clamp(76px, 8vw, 108px);
    height: clamp(76px, 8vw, 108px);
  }
  #s1 .cover-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  #s1 .title-revival {
    font-family: 'Playfair Display', serif;
    font-size: clamp(56px, 10vw, 140px);
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--white);
    line-height: 0.95;
    text-shadow: 0 2px 40px rgba(200,168,75,0.08);
  }
  #s1 .title-night {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 5.5vw, 76px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.2em;
    color: var(--gold);
    line-height: 1.2;
  }
  #s1 .cover-rule {
    width: 340px; max-width: 60%;
    height: 1px;
    background: var(--gold);
    margin: 1.4vh auto;
  }
  #s1 .era-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(13px, 1.5vw, 19px);
    font-style: italic;
    letter-spacing: 0.06em;
    color: var(--silver);
  }
  #s1 .cover-footer {
    text-align: center;
    padding-bottom: 1vh;
  }
  #s1 .artists-line {
    font-size: clamp(9px, 1vw, 12px);
    letter-spacing: 2px;
    color: var(--grey);
    margin-bottom: 0.5em;
  }
  #s1 .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(15px, 3.6vw, 18px);
    font-style: italic;
    color: var(--rose-light);
    line-height: 1.35;
    padding: 0 0.75rem;
  }

  /* ─── S2: CONCEPT ─── */
  #s2 { background: var(--deep-night); }
  #s2 .left-bar {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
  }
  #s2 .s2-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3vw;
    flex: 1;
    align-items: start;
    padding-top: 1vh;
  }
  #s2 .s2-left { display: flex; flex-direction: column; gap: 1.8vh; }
  #s2 .s2-body {
    font-size: clamp(12px, 1.25vw, 15px);
    line-height: 1.7;
    color: var(--silver);
  }
  #s2 .s2-body strong { color: var(--gold-light); font-weight: 600; }
  #s2 .s2-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(19px, 2vw, 26px);
    font-style: italic;
    color: var(--gold-pale);
    line-height: 1.45;
    padding-left: 1em;
    border-left: 2px solid var(--gold);
  }
  #s2 .s2-quote-image-wrap {
    position: relative;
    margin-top: 1.4vh;
    padding: 5px;
    background: var(--dark-purple);
    border: 1px solid rgba(200, 168, 75, 0.55);
    border-radius: 2px;
    box-shadow:
      0 0 0 1px rgba(196, 84, 122, 0.25) inset,
      0 10px 28px rgba(0, 0, 0, 0.45);
    max-width: 100%;
  }
  #s2 .s2-quote-image-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(
      90deg,
      var(--rose),
      var(--gold-light)
    );
  }
  #s2 .s2-quote-image {
    display: block;
    width: 100%;
    max-height: min(28vh, 240px);
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 1px;
  }
  #s2 .era-cards { display: flex; flex-direction: column; gap: 2vh; }
  .era-card {
    border: 1px solid;
    border-radius: 2px;
    padding: 1.4vh 1.5vw;
    position: relative;
    overflow: hidden;
  }
  .era-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
  }
  .era-card.card-80  { border-color: var(--rose); background: rgba(34,26,58,0.7); }
  .era-card.card-80::before { background: var(--rose); }
  .era-card.card-90  { border-color: var(--gold); background: rgba(34,26,58,0.7); }
  .era-card.card-90::before { background: var(--gold); }
  .era-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(17px, 1.75vw, 22px);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 0.7em;
  }
  .era-card.card-80 h3 { color: var(--rose-light); }
  .era-card.card-90 h3 { color: var(--gold-light); }
  .era-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }
  .era-card ul li {
    font-size: clamp(14px, 1.35vw, 17px);
    color: var(--off-white);
    padding-left: 1.2em;
    position: relative;
    line-height: 1.4;
  }
  .era-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--grey); }

  /* ─── S3: DISPOSITIF ─── */
  #s3 { background: var(--black); }
  #s3 .art-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5vw;
    flex: 1;
    margin-top: 1.5vh;
  }
  .art-card {
    border: 1px solid;
    border-radius: 2px;
    padding: clamp(14px, 2.4vh, 26px) clamp(12px, 1.75vw, 22px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.6vh;
    background: var(--dark-purple);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .art-card:hover {
    transform: translateY(-3px);
  }
  .art-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
  }
  .art-card.c-rose   { border-color: rgba(196,84,122,0.5); }
  .art-card.c-rose::before   { background: var(--rose); }
  .art-card.c-rose:hover { box-shadow: 0 8px 30px rgba(196,84,122,0.2); }
  .art-card.c-gold   { border-color: rgba(200,168,75,0.5); }
  .art-card.c-gold::before   { background: var(--gold); }
  .art-card.c-gold:hover { box-shadow: 0 8px 30px rgba(200,168,75,0.2); }
  .art-card.c-teal   { border-color: rgba(74,171,184,0.5); }
  .art-card.c-teal::before   { background: var(--teal); }
  .art-card.c-teal:hover { box-shadow: 0 8px 30px rgba(74,171,184,0.2); }
  .art-card .card-icon { font-size: clamp(16px, 1.8vw, 22px); }
  .art-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(10px, 1.05vw, 13px);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .art-card.c-rose h3 { color: var(--rose-light); }
  .art-card.c-gold h3 { color: var(--gold-light); }
  .art-card.c-teal h3 { color: var(--teal); }
  .art-card p {
    font-size: clamp(10px, 1vw, 12.5px);
    color: var(--silver);
    line-height: 1.55;
  }
  #s3 .art-card-dj .card-video-wrap,
  #s3 .art-card-aperitif .card-video-wrap {
    width: 100%;
    margin-top: auto;
    aspect-ratio: 16 / 9;
    border-radius: 2px;
    overflow: hidden;
    background: var(--black);
    flex-shrink: 0;
  }
  #s3 .art-card-perc .card-media-bottom,
  #s3 .art-card-danseuses .card-media-bottom,
  #s3 .art-card-chanteurs .card-media-bottom,
  #s3 .art-card-groupe .card-media-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: auto;
    flex-shrink: 0;
    gap: 0.5vh;
  }
  #s3 .art-card-perc .card-video-wrap,
  #s3 .art-card-danseuses .card-video-wrap,
  #s3 .art-card-chanteurs .card-video-wrap,
  #s3 .art-card-groupe .card-video-wrap {
    position: relative;
    width: min(100%, 280px);
    min-height: 120px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    overflow: hidden;
    background: var(--black);
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  }
  #s3 .art-card-perc .card-youtube-link,
  #s3 .art-card-chanteurs .card-youtube-link,
  #s3 .art-card-groupe .card-youtube-link,
  #s3 .art-card-danseuses .card-vimeo-link {
    display: block;
    text-align: center;
    font-size: clamp(9px, 0.85vw, 11px);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gold);
    text-decoration: none;
  }
  #s3 .art-card-perc .card-youtube-link:hover,
  #s3 .art-card-chanteurs .card-youtube-link:hover,
  #s3 .art-card-groupe .card-youtube-link:hover,
  #s3 .art-card-danseuses .card-vimeo-link:hover {
    text-decoration: underline;
    color: var(--gold-light);
  }
  #s3 .art-card-dj .card-video-wrap video,
  #s3 .art-card-aperitif .card-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  #s3 .art-card-perc .card-video-wrap iframe,
  #s3 .art-card-danseuses .card-video-wrap iframe,
  #s3 .art-card-chanteurs .card-video-wrap iframe,
  #s3 .art-card-groupe .card-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  #s3 .s3-site-footer {
    text-align: center;
    margin-top: 1vh;
  }
  #s3 .s3-site-link:link,
  #s3 .s3-site-link:visited {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--grey);
    text-decoration: none;
  }
  #s3 .s3-site-link:hover,
  #s3 .s3-site-link:focus-visible {
    color: var(--silver);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* ─── S4: DÉROULÉ ─── */
  #s4 { background: var(--deep-night); }
  #s4 .right-bar {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
  }
  #s4 .timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    margin-top: 1.5vh;
    position: relative;
    padding-left: 0;
  }
  #s4 .timeline::before {
    content: '';
    position: absolute;
    left: 90px;
    top: 12px; bottom: 12px;
    width: 1px;
    background: var(--rose);
    opacity: 0.6;
  }
  .tl-item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex: 1;
    position: relative;
  }
  .tl-time {
    width: 78px;
    min-width: 78px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(14px, 1.6vw, 20px);
    font-weight: 700;
    text-align: right;
    padding-right: 16px;
    padding-top: 6px;
    line-height: 1;
  }
  .tl-dot {
    width: 12px; min-width: 12px; height: 12px;
    border-radius: 50%;
    margin-top: 9px;
    position: relative;
    z-index: 2;
  }
  .tl-content {
    flex: 1;
    padding-left: 14px;
    border: 1px solid;
    border-radius: 2px;
    padding: 0.7vh 1vw 0.7vh 1.2vw;
    margin-left: 12px;
    background: var(--med-purple);
    position: relative;
    overflow: hidden;
  }
  .tl-content::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
  }
  .tl-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(10px, 1.1vw, 13px);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.3em;
  }
  .tl-content p {
    font-size: clamp(10px, 1vw, 12px);
    color: var(--silver);
    line-height: 1.5;
  }
  .c-tl-teal  .tl-time, .c-tl-teal  .tl-dot { color: var(--teal); background: var(--teal); }
  .c-tl-teal  .tl-content { border-color: rgba(74,171,184,0.4); }
  .c-tl-teal  .tl-content::before { background: var(--teal); }
  .c-tl-teal  .tl-content h3 { color: var(--teal); }
  .c-tl-rose  .tl-time, .c-tl-rose  .tl-dot { color: var(--rose); background: var(--rose); }
  .c-tl-rose  .tl-content { border-color: rgba(196,84,122,0.4); }
  .c-tl-rose  .tl-content::before { background: var(--rose); }
  .c-tl-rose  .tl-content h3 { color: var(--rose); }
  .c-tl-gold  .tl-time, .c-tl-gold  .tl-dot { color: var(--gold); background: var(--gold); }
  .c-tl-gold  .tl-content { border-color: rgba(200,168,75,0.4); }
  .c-tl-gold  .tl-content::before { background: var(--gold); }
  .c-tl-gold  .tl-content h3 { color: var(--gold); }
  .c-tl-rl    .tl-time, .c-tl-rl    .tl-dot { color: var(--rose-light); background: var(--rose-light); }
  .c-tl-rl    .tl-content { border-color: rgba(232,120,154,0.4); }
  .c-tl-rl    .tl-content::before { background: var(--rose-light); }
  .c-tl-rl    .tl-content h3 { color: var(--rose-light); }
  .tl-time-display { display: block; }
  #s4 .footnote {
    font-size: clamp(13px, 3.5vw, 20px);
    color: var(--grey);
    font-style: italic;
    text-align: center;
    margin-top: 1vh;
    line-height: 1.45;
    padding: 0 0.75rem;
  }

  /* ─── S5: PARTENARIAT ─── */
  #s5 { background: var(--black); }
  #s5 .partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5vw;
    flex: 1;
    margin-top: 1.5vh;
  }
  .partner-card {
    border: 1px solid;
    border-radius: 2px;
    padding: 2vh 1.8vw;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--dark-purple);
  }
  .partner-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
  }
  .partner-card.p-rose { border-color: rgba(196,84,122,0.5); }
  .partner-card.p-rose::before { background: var(--rose); }
  .partner-card.p-gold { border-color: rgba(200,168,75,0.5); }
  .partner-card.p-gold::before { background: var(--gold); }
  .partner-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.3em;
    line-height: 1.2;
  }
  .partner-card.p-rose h3 { color: var(--rose-light); }
  .partner-card.p-gold h3 { color: var(--gold-light); }
  .partner-card .sub {
    font-size: 14px;
    font-style: italic;
    color: var(--grey);
    text-align: center;
    margin-bottom: 0;
  }
  .partner-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7vh;
    flex: 1;
    margin-top: clamp(1.5rem, 3vh, 2.25rem);
  }
  .partner-card ul li {
    font-size: 16px;
    color: var(--off-white);
    display: flex;
    align-items: flex-start;
    gap: 0.8em;
    line-height: 1.45;
  }
  .partner-card ul li::before {
    content: '';
    display: block;
    width: 8px; min-width: 8px; height: 8px;
    border-radius: 1px;
    margin-top: 4px;
  }
  .partner-card.p-rose ul li::before { background: var(--rose); }
  .partner-card.p-gold ul li::before { background: var(--gold); }
  #s5 .partner-footer {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(15px, 3.4vw, 17px);
    font-style: italic;
    color: var(--gold-pale);
    text-align: center;
    margin-top: 1.5vh;
    line-height: 1.45;
    padding: 0 0.75rem;
  }

  /* ─── S6: RAISONS ─── */
  #s6 { background: var(--deep-night); }
  #s6 .left-bar-rose {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--rose);
  }
  #s6 .reasons-list {
    display: flex;
    flex-direction: column;
    gap: 1.1vh;
    flex: 1;
    margin-top: 1.5vh;
  }
  .reason-row {
    display: flex;
    align-items: stretch;
    background: var(--med-purple);
    border: 1px solid;
    border-radius: 2px;
    overflow: hidden;
    flex: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .reason-row:hover { transform: translateX(4px); }
  .reason-row.r-rose  { border-color: rgba(196,84,122,0.4); }
  .reason-row.r-rose:hover  { box-shadow: -4px 0 20px rgba(196,84,122,0.15); }
  .reason-row.r-gold  { border-color: rgba(200,168,75,0.4); }
  .reason-row.r-gold:hover  { box-shadow: -4px 0 20px rgba(200,168,75,0.15); }
  .reason-row.r-teal  { border-color: rgba(74,171,184,0.4); }
  .reason-row.r-teal:hover  { box-shadow: -4px 0 20px rgba(74,171,184,0.15); }
  .reason-num {
    width: 52px; min-width: 52px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 900;
    color: var(--black);
  }
  .reason-row.r-rose  .reason-num { background: var(--rose); }
  .reason-row.r-gold  .reason-num { background: var(--gold); }
  .reason-row.r-teal  .reason-num { background: var(--teal); }
  .reason-row.r-rl    { border-color: rgba(232,120,154,0.4); }
  .reason-row.r-rl:hover { box-shadow: -4px 0 20px rgba(232,120,154,0.15); }
  .reason-row.r-rl    .reason-num { background: var(--rose-light); }
  .reason-row.r-gl    { border-color: rgba(232,201,106,0.4); }
  .reason-row.r-gl:hover { box-shadow: -4px 0 20px rgba(232,201,106,0.15); }
  .reason-row.r-gl    .reason-num { background: var(--gold-light); }
  .reason-body {
    flex: 1;
    padding: 0.6vh 1.2vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2em;
  }
  .reason-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
  }
  @media (max-width: 768px) {
    .reason-body h3 {
      font-size: 22px;
    }
  }
  .reason-row.r-rose  .reason-body h3 { color: var(--rose-light); }
  .reason-row.r-gold  .reason-body h3 { color: var(--gold-light); }
  .reason-row.r-teal  .reason-body h3 { color: var(--teal); }
  .reason-row.r-rl    .reason-body h3 { color: var(--rose-light); }
  .reason-row.r-gl    .reason-body h3 { color: var(--gold-light); }
  .reason-body p {
    font-size: clamp(10px, 1vw, 12px);
    color: var(--silver);
    line-height: 1.45;
  }

  /* ─── S7: CTA ─── */
  #s7 { background: var(--black); justify-content: center; align-items: center; text-align: center; }
  #s7 .glow {
    position: absolute;
    width: 50vw; height: 50vw;
    max-width: 600px; max-height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22,17,42,0.8) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  #s7 .cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5vh;
  }
  #s7 .cta-question {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 40px);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.2;
  }
  #s7 .cta-rule {
    width: 300px;
    height: 1px;
    background: var(--gold);
  }
  #s7 .contact-box {
    border: 1px solid rgba(200,168,75,0.5);
    padding: 2.5vh 3.5vw;
    background: var(--dark-purple);
    position: relative;
    overflow: hidden;
    min-width: 400px;
    max-width: 560px;
  }
  #s7 .contact-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
  }
  #s7 .contact-name {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(12px, 1.3vw, 15px);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold-light);
    margin-bottom: 0.5em;
  }
  #s7 .contact-details {
    font-size: clamp(11px, 1.1vw, 13px);
    color: var(--off-white);
    line-height: 2;
  }
  #s7 .contact-details .contact-link:link,
  #s7 .contact-details .contact-link:visited {
    color: inherit;
    text-decoration: none;
  }
  #s7 .contact-details .contact-link:hover,
  #s7 .contact-details .contact-link:focus-visible {
    color: var(--gold-pale);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  #s7 .contact-sub {
    font-size: clamp(10px, 0.95vw, 12px);
    font-style: italic;
    color: var(--grey);
    margin-top: 0.5em;
  }
  #s7 .cta-bottom {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(13px, 1.4vw, 17px);
    font-style: italic;
    letter-spacing: 3px;
    color: var(--rose);
  }

  /* progress bar */
  #progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.6s ease;
    z-index: 200;
  }

  /* keyboard hint */
  #hint {
    position: fixed;
    bottom: 2.2vh;
    right: 3vw;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--grey);
    opacity: 0.6;
    z-index: 100;
  }
