/* ============================================================
   SWOAK — Press Kit — style.css  (rebuild V9)
   ============================================================ */

/* ── FONTS ── */
@font-face {
  font-family: 'Nersans';
  src: url('fonts/nersans.woff') format('woff'),
       url('fonts/nersans.otf')  format('opentype');
  font-weight: normal;
  font-style:  normal;
  font-display: swap;
}
@font-face {
  font-family: 'Akkurat';
  src: url('fonts/akkurat.woff') format('woff'),
       url('fonts/akkurat.ttf')  format('truetype');
  font-weight: normal;
  font-style:  normal;
  font-display: swap;
}

/* ── VARIABLES ── */
:root {
  --bg:               #0a0a0a;
  --fg:               #f0ede6;
  --muted:            #3a3a3a;
  --accent:           #c8b89a;
  --line:             rgba(240, 237, 230, 0.10);
  --line-strong:      rgba(240, 237, 230, 0.22);
  --nav-h:            72px;
  --max:              1400px;
  --pad:              40px;
}

/* ── SKIP TO CONTENT (accessibilité clavier) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 20px;
  z-index: 9999;
  background: var(--accent);
  color: var(--bg);
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: inherit;
  transition: top .15s;
}
.skip-link:focus { top: 20px; }

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

html {
  scroll-behavior: smooth;
  /* offset ancres pour compenser la nav fixe */
  scroll-padding-top: calc(var(--nav-h) + 24px);
}

body {
  background:  var(--bg);
  color:       var(--fg);
  font-family: 'Akkurat', sans-serif;
  font-size:   13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  -webkit-font-smoothing:  antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

/* ── ACCESSIBILITÉ : focus visible ── */
a:focus-visible,
button:focus-visible,
.ref-item:focus-visible,
.refs-list-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:       0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration:      0.01ms !important;
    scroll-behavior:          auto   !important;
  }
  /* Force la visibilité des éléments animés */
  .hero-tag, .hero-name, .hero-sub, .hero-photo, .hero-year,
  .nav-logo, .nav-links a, .reveal {
    opacity:   1 !important;
    transform: none !important;
  }
}


/* ═══════════════════════════════════════════════
   CURSEUR CUSTOM (desktop pointer uniquement)
═══════════════════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }

  #cursor {
    position: fixed;
    top: 0; left: 0;
    width:  18px;
    height: 18px;
    margin-left: -9px;
    margin-top:  -9px;
    border-radius: 50%;
    background: #fff;
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 10000;
    will-change: transform;
    transition: width .18s ease, height .18s ease, margin .18s ease;
  }
  #cursor.is-down {
    width: 28px; height: 28px;
    margin-left: -14px; margin-top: -14px;
  }
  #cursor.is-link {
    width: 36px; height: 36px;
    margin-left: -18px; margin-top: -18px;
  }

  a, button, .ref-item, .refs-list-item,
  .contact-item, .aftermovie-card {
    cursor: none;
  }
}
@media (hover: none), (pointer: coarse) {
  #cursor { display: none !important; }
}


/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: transparent;
  transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}
#main-nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 4px 24px rgba(0,0,0,.55);
}

.nav-logo {
  font-family: 'Nersans', serif;
  font-size: 30px;
  letter-spacing: .10em;
  text-decoration: none;
  color: var(--fg);
  line-height: 1;
  opacity: 0;
  animation: fadeUp .8s ease .15s forwards;
  transition: color .2s;
}
.nav-logo:hover { color: var(--accent); }

/* Nav links list */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links > li > a {
  display: inline-block;
  padding: 10px 12px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg);
  border-radius: 5px;
  opacity: 0;
  animation: fadeUp .8s ease .35s forwards;
  transition: color .2s, background .2s;
}
.nav-links > li > a:hover {
  color: var(--accent);
  background: rgba(240,237,230,.04);
}

/* Toggle langue */
.nav-lang button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg);
  font-family: inherit;
  font-size: 11px;
  letter-spacing: .15em;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  gap: 4px;
  align-items: center;
  transition: border-color .2s, color .2s;
}
.nav-lang button:hover { border-color: var(--accent); color: var(--accent); }
.nav-lang .lang-sep    { color: var(--muted); }
.nav-lang [data-lang].active { color: var(--accent); }

/* Burger (mobile) */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  z-index: 201;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--fg);
  transition: transform .25s, opacity .25s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 40px) var(--pad) 80px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-text { max-width: 720px; }

.hero-tag {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .9s ease .5s forwards;
}

.hero-name {
  font-family: 'Nersans', serif;
  font-size: clamp(72px, 13vw, 180px);
  line-height: .88;
  letter-spacing: -.01em;
  opacity: 0;
  animation: fadeUp 1s ease .3s forwards;
}

.hero-sub {
  margin-top: 28px;
  font-size: 12px;
  line-height: 1.9;
  color: rgba(240,237,230,.55);
  max-width: 380px;
  opacity: 0;
  animation: fadeUp .9s ease .7s forwards;
}

.hero-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.2s ease .4s forwards;
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%,  #000 45%,  #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%,  #000 8%,   #000 88%, transparent 100%);
          mask-image:
    linear-gradient(to right,  transparent 0%,  #000 45%,  #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%,  #000 8%,   #000 88%, transparent 100%);
  -webkit-mask-composite: destination-in;
          mask-composite: intersect;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: contrast(1.05) saturate(.9);
}

.hero-year {
  position: absolute;
  right: calc(var(--pad) - 8px);
  bottom: 80px;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--muted);
  writing-mode: vertical-rl;
  opacity: 0;
  animation: fadeUp .9s ease 1s forwards;
}


/* Bloque le scroll horizontal de la page sans casser le carousel interne */
#main-content { overflow-x: clip; }

/* ═══════════════════════════════════════════════
   SECTIONS — base commune
═══════════════════════════════════════════════ */
section {
  padding: 80px var(--pad);
  border-bottom: 1px solid var(--line);
}

/* Centrage des contenus sur grands écrans */
.section-header,
#refs-container,
.rider-intro,
.rider-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 48px;
}
.section-num {
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--accent);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Nersans', serif;
  font-size: clamp(28px, 4.5vw, 52px);
  letter-spacing: -.01em;
  line-height: 1;
  font-weight: normal;
}
.section-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}



/* ═══════════════════════════════════════════════
   BIO
═══════════════════════════════════════════════ */
#bio-text {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.bio-text p {
  font-size: 13px;
  line-height: 2;
  color: rgba(240,237,230,.7);
  margin-bottom: 28px;
}
.bio-text p:last-child { margin-bottom: 0; }
.bio-text p strong { color: var(--fg); font-weight: 400; }


/* ═══════════════════════════════════════════════
   RÉFÉRENCES
═══════════════════════════════════════════════ */
#refs-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.refs-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.refs-subcat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0 10px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1px;
}
.refs-subcat-flag { font-size: 14px; letter-spacing: 0; }

/* Grid type — flex-wrap pour éviter les ghost cells */
.refs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.ref-item {
  flex: 0 0 calc(100% / 3);
  box-sizing: border-box;
  background: var(--bg);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  outline: 1px solid var(--line);
  transition: background .2s;
}
.ref-item:hover { background: #111; }
a.ref-item { text-decoration: none; color: inherit; }
a.ref-item:hover .ref-venue { color: var(--accent); }

.ref-venue {
  font-family: 'Nersans', serif;
  font-size: 15px;
  margin-bottom: 5px;
  transition: color .2s;
}
.ref-city {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.ref-detail {
  font-size: 9px;
  color: rgba(240,237,230,.4);
  letter-spacing: .06em;
}
.ref-link-arrow {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 10px;
  color: rgba(240,237,230,.3);
  transition: color .2s, transform .2s;
}
a.ref-item:hover .ref-link-arrow { color: var(--accent); transform: translate(2px,-2px); }

/* List type */
.refs-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
}
.refs-list-item {
  background: var(--bg);
  padding: 18px 22px;
  font-family: 'Nersans', serif;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: background .2s, color .2s;
}
.refs-list-item:hover { background: #111; }
a.refs-list-item:hover { color: var(--accent); }
.refs-list-item .ref-link-arrow {
  position: static;
  font-size: 11px;
  font-family: 'Akkurat', sans-serif;
  color: rgba(240,237,230,.3);
  transition: color .2s;
}
a.refs-list-item:hover .ref-link-arrow { color: var(--accent); }


.contact-link {
  font-size: 10px;
  color: rgba(240,237,230,.45);
  text-decoration: none;
  margin-top: 4px;
  letter-spacing: .06em;
  transition: color .2s;
}
.contact-link:hover { color: var(--accent); }


/* ═══════════════════════════════════════════════
   AFTERMOVIES
═══════════════════════════════════════════════ */
/* Carousel horizontal — 1 ligne, scroll snap */
.media-grid {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(200,184,154,.2) transparent;
}
.media-grid::-webkit-scrollbar { height: 4px; }
.media-grid::-webkit-scrollbar-track { background: transparent; }
.media-grid::-webkit-scrollbar-thumb { background: rgba(200,184,154,.2); border-radius: 2px; }

.aftermovie-card {
  flex: 0 0 min(270px, calc(100vw - 56px));
  scroll-snap-align: start;
  background: #0d0d0d;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color .2s;
}
.aftermovie-card:hover { border-color: rgba(200,184,154,.4); }

.aftermovie-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
/* YouTube Shorts — ratio portrait 9:16, pleine largeur de la carte (270px) */
.aftermovie-embed--shorts {
  padding-top: 0;
  height: 480px;
  width: 100%;
}
.aftermovie-embed iframe,
.aftermovie-embed .embed-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Les iframes Shorts sont positionnées via la hauteur fixe */
.aftermovie-embed--shorts iframe {
  position: static;
  width: 100%;
  height: 100%;
}

/* Poster-link pour la card Mouv dans le carousel */
.aftermovie-poster-link {
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.aftermovie-poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, opacity .3s;
}
.aftermovie-poster-link:hover img {
  transform: scale(1.03);
  opacity: .85;
}
.embed-poster {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  cursor: pointer;
  border: 0;
}
.play-triangle {
  width: 52px; height: 52px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  transition: transform .2s, background .2s;
}
.embed-poster:hover .play-triangle { transform: scale(1.08); background: var(--fg); }
.play-triangle::before {
  content: '';
  position: absolute;
  top: 50%; left: 56%;
  transform: translate(-50%,-50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--bg);
}

.aftermovie-meta { padding: 18px 22px; display: flex; flex-direction: column; gap: 5px; }
.aftermovie-platform { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.aftermovie-name { font-family: 'Nersans', serif; font-size: 17px; }
.aftermovie-detail { font-size: 10px; color: rgba(240,237,230,.4); }


/* ═══════════════════════════════════════════════
   RIDER
═══════════════════════════════════════════════ */

/* — Accordion — */
.rider-details > summary {
  display: flex;           /* reprend le layout de .section-header */
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
  user-select: none;
  margin-bottom: 0;        /* géré par padding-top de .rider-body-inner à l'ouverture */
}
.rider-details > summary::-webkit-details-marker,
.rider-details > summary::marker { display: none; }

.rider-toggle {
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .35s ease;
}
.rider-details[open] .rider-toggle { transform: rotate(90deg); }
.rider-details > summary:hover .rider-toggle { color: var(--fg); }

.rider-hint {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(240,237,230,.35);
  flex-shrink: 0;
  transition: color .2s, opacity .2s;
}
.rider-details > summary:hover .rider-hint { color: var(--accent); }

.rider-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s ease;
}
.rider-details[open] .rider-body { grid-template-rows: 1fr; }

.rider-body-inner {
  overflow: hidden;
  min-height: 0;
  padding-top: 0;
  transition: padding-top .4s ease;
}
.rider-details[open] .rider-body-inner { padding-top: 48px; }

/* — Contenu — */
.rider-intro {
  max-width: var(--max);
  margin: 0 auto 40px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(240,237,230,.6);
}
.rider-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}
.rider-card {
  background: var(--bg);
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .2s;
}
.rider-card:hover { background: #111; }
.rider-card--full { grid-column: 1 / -1; }

.rider-card-title {
  font-family: 'Nersans', serif;
  font-size: 19px;
  font-weight: normal;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.rider-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rider-card-list li {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(240,237,230,.75);
  padding-left: 18px;
  position: relative;
}
.rider-card-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--accent);
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-left:  calc(-1 * var(--pad));
  margin-right: calc(-1 * var(--pad));
}
.contact-item {
  background: var(--bg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .2s;
}
.contact-item:hover { background: #111; }
a.contact-item { text-decoration: none; color: inherit; }
a.contact-item:hover .contact-val { color: var(--accent); }
.contact-platform { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); }
.contact-val { font-family: 'Nersans', serif; font-size: 20px; }


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  padding: 48px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
footer span {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}


/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes riderCardIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.rider-details[open] .rider-card {
  animation: riderCardIn .35s ease both;
  animation-delay: calc(var(--i, 0) * 55ms);
}

/* Reveal au scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — 1100px
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --pad: 32px; }

  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo { aspect-ratio: 4/5; max-width: 100%; }


  #refs-container { grid-template-columns: 1fr; gap: 32px; }

  .nav-links > li > a { font-size: 11px; padding: 9px 10px; }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — 860px (burger menu)
═══════════════════════════════════════════════ */
@media (max-width: 860px) {
  .nav-burger { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: 80vw;
    max-width: 340px;
    z-index: 200;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(var(--nav-h) + 16px) 24px 32px;
    gap: 2px;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,.6);
  }
  .nav-links.open { transform: translateX(0); }

  .nav-links > li > a {
    font-size: 15px;
    padding: 16px 12px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    animation: none;
    opacity: 1;
  }
  .nav-lang { margin-top: 14px; }
  .nav-lang button { width: 100%; justify-content: center; padding: 14px 12px; }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — 640px
═══════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --pad: 20px; }

  body { font-size: 12px; }

  .nav-logo { font-size: 24px; }

  section { padding: 60px var(--pad); }
  .section-header { margin-bottom: 36px; gap: 14px; }
  .section-line { display: none; }

  .hero-name { font-size: clamp(52px, 17vw, 96px); }
  .hero-sub  { font-size: 11px; max-width: 100%; margin-top: 20px; }
  .hero-tag  { margin-bottom: 16px; }
  .hero-year { display: none; }

  .ref-item       { padding: 14px 8px; }
  .ref-venue      { font-size: 11px; }
  .ref-city       { font-size: 8px; }
  .ref-detail     { font-size: 8px; }
  .refs-list-item { font-size: 12px; padding: 12px 10px; }
  .refs-subcat    { font-size: 8px; }

  .rider-grid { grid-template-columns: 1fr; }
  .rider-card { padding: 22px 18px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-item { padding: 28px 20px; }
  .contact-val  { font-size: 18px; }

  footer {
    padding: 32px var(--pad);
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — 380px
═══════════════════════════════════════════════ */
@media (max-width: 380px) {
  .hero-name { font-size: 50px; }
  .ref-venue { font-size: 10px; }

}


/* ═══════════════════════════════════════════════
   PRINT
═══════════════════════════════════════════════ */
@media print {
  *, *::before, *::after {
    background:  #fff !important;
    color:       #000 !important;
    box-shadow:  none !important;
  }
  #main-nav, .nav-burger, .nav-lang,
  #cursor, footer, .embed-poster, iframe { display: none !important; }

  body { font-size: 11px; }
  section { padding: 16px 0; border-bottom: 1px solid #ccc; break-inside: avoid; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .hero-name { font-size: 48px; }
  .reveal { opacity: 1 !important; transform: none !important; }
  a { text-decoration: underline; }
}
