/* =============================================
   PLUSIEURS — styles.css
   à plusieurs. many.
   ============================================= */

:root {
  --cobalt: #0014A7;
  --cobalt-deep: #000A5A;
  --cobalt-bright: #0022D6;
  --paper: #FFFFFF;
  --ink: #0A0A0A;
  --ink-deep: #000000;
  --mute: rgba(255, 255, 255, 0.55);
  --mute-2: rgba(255, 255, 255, 0.3);
  --rule: rgba(255, 255, 255, 0.15);

  --f-display: 'Archivo Narrow', sans-serif;
  --f-italic: 'Archivo', sans-serif;
  --f-body: 'Poppins', sans-serif;
  --f-mono: 'DM Mono', monospace;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout: cubic-bezier(0.83, 0, 0.17, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 56px;
}

/* ============================================= */
/* RESET                                         */
/* ============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  background: var(--cobalt);
  color: var(--paper);
  font-family: var(--f-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

button { background: none; border: none; font: inherit; color: inherit; cursor: none; }
a { color: inherit; text-decoration: none; cursor: none; }
img { max-width: 100%; display: block; user-select: none; -webkit-user-drag: none; }

::selection { background: var(--paper); color: var(--cobalt); }

/* ============================================= */
/* UTILITIES                                     */
/* ============================================= */
.mono {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.6;
}
.mono--label {
  color: var(--mute);
  display: block;
}

/* ============================================= */
/* LOADER                                        */
/* ============================================= */

/* ============================================= */
/* INTRO SPLASH — logo animation                 */
/* ============================================= */
.intro-splash {
  position: fixed;
  inset: 0;
  background: var(--ink-deep);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  clip-path: inset(0 0 0% 0);
}

.intro-splash__logo {
  width: clamp(100px, 18vw, 200px);
  color: var(--paper);
}

.intro-splash__shape {
  opacity: 0;
}

.intro-splash__wordmark {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0;
}

.intro-splash__wordmark em {
  font-style: normal;
  font-weight: 500;
}

.intro-splash__line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--paper);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.loader {
  position: fixed;
  inset: 0;
  background: var(--cobalt);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 40px;
}

.loader__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.loader__bracket {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
}

.loader__label::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--paper);
  margin-left: 4px;
  animation: blink 1s infinite;
  vertical-align: middle;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.loader__progress {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--paper);
}

.loader__bar {
  display: block;
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.loader__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--paper);
}

/* ============================================= */
/* CUSTOM CURSOR                                 */
/* ============================================= */
/* Touch devices — use native cursor, hide custom */
@media (hover: none), (pointer: coarse) {
  html, body, button, a, [data-cursor] { cursor: auto !important; }
  .cursor { display: none !important; }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  color: var(--paper);
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width 0.45s var(--ease-out), height 0.45s var(--ease-out), opacity 0.3s;
  opacity: 0;
}

.cursor__svg {
  width: 100%;
  height: 100%;
  transition: transform 0.45s var(--ease-out);
}

.cursor.is-active {
  width: 76px;
  height: 76px;
}
.cursor.is-active .cursor__svg {
  transform: rotate(20deg);
}
.cursor.is-ready { opacity: 1; }

@media (hover: none) {
  .cursor { display: none; }
  html, body, button, a { cursor: auto; }
}

/* ============================================= */
/* PERMANENT NAV — asymmetric (wordmark L, menu R) */
/* ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 200;
  pointer-events: none;
}

.nav > * { pointer-events: auto; }

.nav__wordmark {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--paper);
  padding: 6px 0;
  flex: 0 0 auto;
}
.nav__wordmark em {
  font-family: var(--f-mono);
  font-style: normal;
  font-weight: 500;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 0 0 auto;
}

.nav__link {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--paper);
  opacity: 0.55;
  padding: 6px 0;
  position: relative;
  transition: opacity 0.35s var(--ease-out);
}

.nav__link sup {
  font-size: 8px;
  margin-left: 1px;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}

.nav__link:hover,
.nav__link.is-active {
  opacity: 1;
}
.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ============================================= */
/* BOTTOM BAR                                    */
/* ============================================= */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 200;
  pointer-events: none;
}
.bottom-bar > * { pointer-events: auto; }
.bottom-bar__left {
  display: flex;
  align-items: center;
  gap: 18px;
  pointer-events: auto;
}

.bottom-bar__email {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 6px 0;
  position: relative;
}
.bottom-bar__email::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}
.bottom-bar__email:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.bottom-bar__back {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 6px 0;
}

.progress-indicator {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
}
.progress-indicator__sep { opacity: 0.4; }
.progress-indicator span:last-child { opacity: 0.4; }
#progressNum {
  font-size: 13px;
  font-weight: 500;
}

/* ============================================= */
/* HERO — SILENT EDITORIAL (brutalist luxe)      */
/* ============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: var(--cobalt);
  overflow: hidden;
}

/* Subtle fixed grain texture — gives the cobalt a printed-paper feel */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* Rule lines (brand-book signature) */
.hero__rule {
  position: absolute;
  left: 28px;
  right: 28px;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.22);
  z-index: 2;
  transform-origin: left center;
  transform: scaleX(0);
}
.hero__rule--top { top: calc(var(--nav-h) + 8px); }
.hero__rule--bot { bottom: calc(var(--nav-h) + 8px); }

/* Logo — top right, bigger editorial stamp */
.hero__logo-wrap {
  position: absolute;
  top: calc(var(--nav-h) + 36px);
  right: 28px;
  width: clamp(220px, 24vw, 320px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  opacity: 0;
}

.hero__logo {
  width: 100%;
  height: auto;
  display: block;
  color: var(--paper);
}

.hero__logo-shape {
  opacity: 0;
  transform-origin: center;
}

/* Location label — top left, compact */
.hero__location {
  position: absolute;
  top: calc(var(--nav-h) + 36px);
  left: 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 3;
  opacity: 0;
}
.hero__location .mono {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 1.5;
}
.hero__location .mono--big {
  font-size: 14px;
  color: var(--paper);
  font-weight: 500;
  padding: 2px 0;
}

/* CLAIM — single phrase, two lines, held together */
.hero__claim {
  position: absolute;
  top: 60%;
  right: 28px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 3;
  opacity: 0;
  text-align: right;
  max-width: 360px;
}
.hero__claim-line {
  font-family: var(--f-italic);
  font-weight: 200;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--paper);
  text-transform: lowercase;
}
.hero__claim-line em {
  font-weight: 500;
  font-style: italic;
}

/* Wordmark — bottom left, massive, the real subject */
.hero__wordmark {
  position: absolute;
  bottom: calc(var(--nav-h) + 28px);
  left: 28px;
  right: 28px;
  z-index: 3;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(72px, 15vw, 240px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--paper);
  overflow: hidden;
  opacity: 0;
}

.hero__tag {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 8px;
  overflow: hidden;
  opacity: 0;
}

.hero__translation {
  font-family: var(--f-italic);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(20px, 4vw, 56px);
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.5);
}
.hero__translation em {
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

/* ===== MINIMALIST TICKET — play button next to "— many" ===== */
.player {
  display: inline-flex;
  align-items: stretch;
  height: 26px;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.5);
  color: var(--paper);
  padding: 0;
  cursor: none;
  font: inherit;
  transition: background 0.5s var(--ease-out), border-color 0.5s var(--ease-out), color 0.5s var(--ease-out);
}
.player:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--cobalt);
}
.player:focus { outline: none; }
.player:focus-visible { outline: 1px dashed var(--paper); outline-offset: 3px; }

/* Left cell — cobalt square with play icon */
.player__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  flex-shrink: 0;
  background: var(--cobalt);
  color: var(--paper);
  border-right: 0.5px solid rgba(255,255,255,0.35);
  transition: background 0.5s var(--ease-out), border-right-color 0.5s var(--ease-out);
}
.player:hover .player__cell {
  background: var(--cobalt-bright, #0022D6);
  border-right-color: var(--cobalt);
}
.player__svg {
  width: 9px;
  height: 9px;
  display: block;
}

/* Equalizer — shown instead of triangle when playing */
.player__eq {
  display: none;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5px;
  width: 10px;
  height: 9px;
}
.player__eq span {
  display: block;
  width: 2px;
  background: currentColor;
  transform-origin: bottom center;
  animation: plusieurs-eq 0.9s ease-in-out infinite;
}
.player__eq span:nth-child(1) { height: 80%; }
.player__eq span:nth-child(2) { height: 100%; animation-delay: 0.2s; }
.player__eq span:nth-child(3) { height: 60%; animation-delay: 0.4s; }
@keyframes plusieurs-eq {
  0%, 100% { transform: scaleY(0.3); }
  50%      { transform: scaleY(1); }
}

/* Right side — song name */
.player__name {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

/* Playing state — swap icon */
.player.is-playing .player__svg { display: none; }
.player.is-playing .player__eq { display: flex; }

@media (prefers-reduced-motion: reduce) {
  .player__eq span { animation: none; transform: scaleY(0.7); }
}

/* Scroll indicator — bottom center */
.hero__scroll {
  position: absolute;
  bottom: calc(var(--nav-h) + 24px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
}
.hero__scroll .mono {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.75;
}
.hero__scroll-arrow {
  font-size: 14px;
  color: var(--paper);
  opacity: 0.75;
  animation: hero-scroll-bounce 2.4s var(--ease-inout) infinite;
}
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(6px); opacity: 0.9; }
}

/* ============================================= */
/* MANIFESTO — single magazine spread (LA MAISON + strophes) */
/* ============================================= */
.manifesto-sec {
  position: relative;
  height: 200vh;
  background: var(--cobalt);
}

.manifesto-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 56px calc(var(--nav-h) + 40px);
}

.manifesto-spread {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

/* Left side — LA MAISON title (unchanged feel) */
.manifesto-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.manifesto-intro__h {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(64px, 12vw, 200px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 8px 0 0;
}
.manifesto-intro__h em {
  font-family: var(--f-italic);
  font-weight: 100;
  font-style: italic;
  letter-spacing: -0.015em;
}

/* Right side — strophes sidebar */
.manifesto-strophes {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 40px;
  border-left: 0.5px solid rgba(255,255,255,0.3);
  max-width: 580px;
}

.ms-strophe {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: baseline;
}

.ms-strophe__num {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.ms-strophe__text {
  font-family: var(--f-italic);
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--paper);
  margin: 0;
}
.ms-strophe__text em {
  font-weight: 500;
  font-style: italic;
}

/* The closing note — slightly bigger, separated by a top rule */
.ms-strophe--last {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 0.5px solid rgba(255,255,255,0.25);
}
.ms-strophe--last .ms-strophe__text {
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .manifesto-sticky {
    padding: calc(var(--nav-h) + 24px) 28px;
  }
  .manifesto-spread {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .manifesto-strophes {
    padding-left: 20px;
    border-left: 0.5px solid rgba(255,255,255,0.3);
  }
  .manifesto-sec {
    height: 160vh;
  }
}

/* ============================================= */
/* ROSTER TEASE — option A asymmetric            */
/* ============================================= */
.roster-tease {
  background: var(--ink-deep);
  min-height: 100vh;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle fixed grain texture — same language as hero */
.roster-tease::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
  opacity: 0.08;
  mix-blend-mode: screen;
  pointer-events: none;
}

.roster-tease__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(360px, 44%);
  grid-template-rows: 1fr auto;
  gap: 40px 60px;
  align-items: center;
}

/* Left text block */
.rt-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.roster-tease__h {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(80px, 13vw, 200px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0;
}

.rt-line {
  display: block;
  overflow: hidden;
}
.rt-line em {
  font-family: var(--f-italic);
  font-weight: 100;
  font-style: italic;
  letter-spacing: -0.015em;
}

/* Right preview grid — taller now, more cells visible */
.rt-preview {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
  align-self: stretch;
}

.rt-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  border: 0.5px solid rgba(255,255,255,0.25);
  height: 100%;
  min-height: 360px;
}

.rt-cell {
  background: transparent;
  border-right: 0.5px solid rgba(255,255,255,0.12);
  border-bottom: 0.5px solid rgba(255,255,255,0.12);
  position: relative;
  padding: 14px 16px;
  transition: background 0.5s var(--ease-out);
}
.rt-cell:nth-child(2n) { border-right: none; }
.rt-cell:nth-last-child(-n+2) { border-bottom: none; }

.rt-cell__num {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
}
.rt-cell__label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--paper);
  letter-spacing: 0.02em;
}

.rt-cell--featured {
  background: var(--cobalt);
}
.rt-cell--featured .rt-cell__num {
  color: rgba(255,255,255,0.7);
}
.rt-preview:hover .rt-cell--featured {
  background: #001ad6;
}

/* Full-width footer row across both columns */
.rt-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 0.5px solid rgba(255,255,255,0.2);
}
.rt-footer .mono,
.rt-footer__link {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
}
.rt-footer .mono {
  color: rgba(255,255,255,0.55);
}
.rt-footer__link {
  text-decoration: none;
  transition: letter-spacing 0.6s var(--ease-out);
  padding: 4px 0;
}
.rt-footer__link:hover {
  letter-spacing: 0.24em;
}

@media (max-width: 768px) {
  .roster-tease__inner {
    grid-template-columns: 1fr;
  }
  .rt-preview-grid { min-height: 280px; }
}

/* ============================================= */
/* CONTACT                                       */
/* ============================================= */
.contact-sec {
  background: var(--ink-deep);
  min-height: 100vh;
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-sec__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-sec__h {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(72px, 14vw, 240px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 20px 0 48px;
}
.contact-sec__h em {
  font-family: var(--f-italic);
  font-weight: 100;
  font-style: italic;
  letter-spacing: -0.015em;
}
.cs-line {
  display: block;
  overflow: hidden;
}

.contact-sec__email {
  font-family: var(--f-mono);
  font-size: clamp(14px, 1.8vw, 22px);
  letter-spacing: 0.02em;
  color: var(--paper);
  padding: 4px 0;
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}
.contact-sec__email::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.contact-sec__email:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

.contact-sec__tagline {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: var(--mute);
  max-width: 320px;
}

.contact-sec__quote {
  margin: 0 0 40px;
  max-width: 780px;
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 24px;
}
.cs-quote__fr {
  font-family: var(--f-italic);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 1.3;
  color: var(--paper);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.cs-quote__fr em {
  font-weight: 500;
  font-style: italic;
}
.cs-quote__en {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0;
}

.contact-sec__footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.12);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-sec__col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-sec__col span:last-child {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--paper);
}

/* ============================================= */
/* ROSTER PAGE                                   */
/* ============================================= */
.is-roster-page {
  background: var(--ink-deep);
}

.nav--roster {
  mix-blend-mode: normal;
}

/* ===== ROSTER GRID PAGE (v4 — direction A) ===== */
.roster-grid-page {
  min-height: 100vh;
  background: var(--ink-deep);
  padding: calc(var(--nav-h) + 40px) 28px calc(var(--nav-h) + 24px);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Subtle fixed grain texture on black — same language as hero */
.roster-grid-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
  opacity: 0.08;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.roster-grid-page > * {
  position: relative;
  z-index: 1;
}

.rg-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 0.5px solid rgba(255,255,255,0.18);
  margin-bottom: 28px;
}
.rg-header .mono {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.rg-header .mono--label {
  color: var(--paper);
}

.rg-title-wrap {
  margin-bottom: 26px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 0.5px solid rgba(255,255,255,0.18);
}

.rg-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-transform: lowercase;
  color: var(--paper);
  margin: 0;
}
.rg-line {
  display: inline-block;
  overflow: hidden;
}
.rg-line em {
  font-family: var(--f-italic);
  font-weight: 200;
  font-style: italic;
  letter-spacing: -0.02em;
}

.rg-title-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  text-align: right;
  flex: 0 0 auto;
  align-self: flex-end;
  padding-bottom: 14px;
}
.rg-title-meta em {
  font-style: italic;
  font-weight: 500;
  color: var(--paper);
}

/* THE 4×2 GRID */
.rg-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  border: 0.5px solid rgba(255,255,255,0.18);
  min-height: 60vh;
}

.rg-cell {
  background: var(--ink-deep);
  border-right: 0.5px solid rgba(255,255,255,0.12);
  border-bottom: 0.5px solid rgba(255,255,255,0.12);
  position: relative;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  cursor: none;
  transition: background 0.6s var(--ease-out);
  min-height: 220px;
}

.rg-cell:nth-child(4n) { border-right: none; }
.rg-cell:nth-last-child(-n+4) { border-bottom: none; }

.rg-cell__num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  align-self: flex-start;
}

.rg-cell__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.75);
  line-height: 1.2;
}
.rg-cell__label em {
  font-style: italic;
  color: var(--paper);
  font-weight: 500;
}

.rg-cell__hint {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
  transition: color 0.4s var(--ease-out);
}

/* Featured cell — Kane, image with subtle bottom vignette for text legibility */
.rg-cell--featured {
  background-image: image-set(
    url('assets/kane-03.webp') type('image/webp'),
    url('assets/kane-03.jpg') type('image/jpeg')
  );
  background-image: url('assets/kane-03.webp'), url('assets/kane-03.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  isolation: isolate;
}
/* Subtle bottom-up darkening for guaranteed WCAG AA text contrast */
.rg-cell--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 35%, rgba(0,0,0,0) 65%);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.rg-cell--featured:hover::after {
  opacity: 0.7;
}
.rg-cell--featured > * {
  position: relative;
  z-index: 1;
}
.rg-cell--featured .rg-cell__num {
  color: var(--paper);
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0,0,0,0.8);
}
.rg-cell--featured .rg-cell__label {
  color: var(--paper);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-shadow: 0 1px 14px rgba(0,0,0,0.85);
}
.rg-cell--featured .rg-cell__label em {
  color: var(--paper);
  font-weight: 700;
}
.rg-cell--featured .rg-cell__hint {
  color: var(--paper);
  opacity: 0.9;
  text-shadow: 0 1px 10px rgba(0,0,0,0.8);
  transition: opacity 0.4s var(--ease-out);
}
.rg-cell--featured:hover .rg-cell__hint {
  opacity: 1;
}

/* Empty cells — non-interactive */
.rg-cell--empty {
  cursor: default;
}
.rg-cell--empty .rg-cell__label,
.rg-cell--empty .rg-cell__hint {
  opacity: 0.55;
}

/* ===== MINI WINDOW — follows cursor on Kane cell hover ===== */
.rg-mini {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  background: var(--cobalt);
  border: 0.5px solid rgba(255,255,255,0.35);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transform: translate(-9999px, -9999px);
  transition: opacity 0.35s var(--ease-out);
  will-change: transform, opacity;
}

.rg-mini.is-visible {
  opacity: 1;
}

.rg-mini__img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-bottom: 0.5px solid rgba(255,255,255,0.25);
  background: #000;
}

.rg-mini__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  filter: grayscale(100%) contrast(1.15);
  display: block;
}

.rg-mini__body {
  padding: 16px 18px 18px;
}

.rg-mini__bracket {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.rg-mini__bracket em {
  font-style: italic;
  font-weight: 500;
  color: var(--paper);
}

.rg-mini__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 6px;
}

.rg-mini__roles {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  margin: 0 0 12px;
  text-transform: lowercase;
}
.rg-mini__roles em {
  font-style: normal;
  color: var(--paper);
}
.rg-mini__status {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 12px;
  padding: 4px 8px;
  display: inline-block;
  border: 0.5px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
}

.rg-mini__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 0.5px solid rgba(255,255,255,0.25);
}
.rg-mini__footer .mono {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.rg-mini__arrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--paper);
}

/* ===== TALENT PAGE — full-page overlay, scrollable ===== */
.talent-page {
  position: fixed;
  inset: 0;
  background: var(--ink-deep);
  z-index: 500;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: calc(var(--nav-h) + 16px) 40px calc(var(--nav-h) + 32px);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.talent-page.is-open {
  pointer-events: auto;
}

/* The background image stays fixed while content scrolls */
.talent-page__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Block scroll chain to the page behind */
body.talent-open {
  overflow: hidden;
}

.talent-page__close {
  background: none;
  border: none;
  padding: 6px 0;
  cursor: pointer;
  flex: 0 0 auto;
}
.talent-page__close .mono {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  transition: opacity 0.4s var(--ease-out);
}
.talent-page__close:hover .mono {
  opacity: 0.7;
}

.talent-page--open {
  background: var(--ink-deep);
}

.talent-page__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.85) 100%),
              linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.9));
}
.talent-page__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
}

.talent-page > *:not(.talent-page__bg) {
  position: relative;
  z-index: 2;
}

.talent-page__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid rgba(255,255,255,0.18);
  margin-bottom: 24px;
}
.talent-page__header .mono {
  color: var(--mute);
}
.talent-page__header > .mono--label {
  flex: 1;
  text-align: center;
}

.talent-page__name-wrap {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  padding-top: 40px;
}
.talent-page__name-col {
  flex: 1;
  min-width: 0;
}

/* Compact socials block — sits to the right of the big name */
.talent-page__socials {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 8px;
  padding-bottom: 14px;
  min-width: 180px;
}
.talent-page__socials .mono--label {
  margin-bottom: 2px;
}
.talent-social {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--paper);
  text-decoration: none;
  transition: color 0.4s var(--ease-out), gap 0.4s var(--ease-out);
}
.talent-social:hover {
  gap: 14px;
  color: var(--cobalt-bright);
}
.talent-social__platform {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.4s var(--ease-out);
}
.talent-social:hover .talent-social__platform { color: var(--cobalt-bright); }
.talent-social__handle {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--paper);
  transition: color 0.4s var(--ease-out);
}
.talent-social:hover .talent-social__handle { color: var(--cobalt-bright); }
.talent-social__arrow {
  font-size: 11px;
  opacity: 0.6;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}
.talent-social:hover .talent-social__arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

@media (max-width: 768px) {
  .talent-page__name-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .talent-page__socials {
    align-items: flex-start;
    text-align: left;
    padding-top: 14px;
    padding-bottom: 0;
    border-top: 0.5px solid rgba(255,255,255,0.15);
    width: 100%;
    min-width: 0;
  }
}

.talent-page__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(72px, 17vw, 280px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 16px;
}

.tpn-word {
  display: block;
  overflow: hidden;
}

.talent-page__name--placeholder {
  color: rgba(255, 255, 255, 0.14);
  letter-spacing: 0.02em;
}

.talent-page__roles {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: clamp(11px, 1.1vw, 14px);
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  text-transform: lowercase;
}
.talent-page__roles em {
  font-style: normal;
  font-weight: 500;
  color: var(--paper);
}

.talent-page__info {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-top: 40px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.15);
}

.talent-page__info-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.talent-page__info-col p {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.talent-page__info-col p em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--paper);
}

.talent-page__specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.talent-page__specs li {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  padding-bottom: 6px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.12);
}
.talent-page__specs li span:first-child {
  color: var(--mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.talent-page__credits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.talent-page__credits li {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 13px;
  padding-bottom: 6px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}
.talent-page__credits li em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 500;
}

/* ===== TALENT TOP — compact header + name ===== */
.talent-page__top {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== CONNECT — Instagram + TikTok prominent ===== */
.talent-page__connect {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.talent-page__connect-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 0.5px solid rgba(255,255,255,0.25);
}
.tc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  text-decoration: none;
  color: var(--paper);
  border-right: 0.5px solid rgba(255,255,255,0.18);
  transition: background 0.5s var(--ease-out), padding 0.5s var(--ease-out), color 0.4s var(--ease-out);
  position: relative;
  gap: 16px;
}
.tc-link:last-child { border-right: none; }
.tc-link:hover {
  background: rgba(255,255,255,0.06);
  padding-left: 36px;
  color: var(--cobalt-bright);
}
.tc-link:hover .tc-link__platform,
.tc-link:hover .tc-link__handle,
.tc-link:hover .tc-link__arrow {
  color: var(--cobalt-bright);
}
.tc-link__platform {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  flex: 0 0 auto;
  width: 80px;
}
.tc-link__handle {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -0.015em;
  color: var(--paper);
  flex: 1;
}
.tc-link__arrow {
  font-size: 18px;
  color: var(--paper);
  opacity: 0.6;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.tc-link:hover .tc-link__arrow {
  opacity: 1;
  transform: translate(3px, -3px);
}

/* ===== SHOWREEL play button ===== */
.talent-page__reel {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reel-btn {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 0;
  background: none;
  border: none;
  color: var(--paper);
  text-align: left;
  transition: gap 0.5s var(--ease-out), color 0.4s var(--ease-out);
}
.reel-btn:hover { gap: 30px; color: var(--cobalt-bright); }
.reel-btn:hover .reel-btn__icon,
.reel-btn:hover .reel-btn__title,
.reel-btn:hover .reel-btn__sub {
  color: var(--cobalt-bright);
}
/* Coming-soon variant — non-interactive */
.reel-btn--soon { cursor: default; opacity: 0.7; }
.reel-btn--soon:hover { gap: 22px; color: var(--paper); }
.reel-btn--soon:hover .reel-btn__icon,
.reel-btn--soon:hover .reel-btn__title,
.reel-btn--soon:hover .reel-btn__sub { color: var(--paper); }
.reel-btn__icon {
  width: 60px;
  height: 60px;
  display: block;
  color: var(--paper);
  flex: 0 0 auto;
}
.reel-btn__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.reel-btn__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reel-btn__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.015em;
  text-transform: lowercase;
  color: var(--paper);
}
.reel-btn__sub {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ===== GALLERY (outer wrapper — reused from old archive) ===== */
.talent-page__archive {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.talent-page__archive-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.archive-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.archive-btn {
  width: 34px;
  height: 34px;
  border: 0.5px solid rgba(255,255,255,0.35);
  background: none;
  color: var(--paper);
  font-family: var(--f-mono);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}
.archive-btn:hover {
  background: var(--paper);
  color: var(--ink-deep);
  border-color: var(--paper);
}
.archive-btn:disabled {
  opacity: 0.25;
  cursor: default;
}
.archive-count {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  min-width: 60px;
  text-align: center;
}

.archive-track {
  display: flex;
  gap: 16px;
  will-change: transform;
  transition: transform 0.7s var(--ease-expo);
}
.archive-card {
  flex: 0 0 auto;
  width: clamp(200px, 22vw, 280px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.archive-card__img {
  width: 100%;
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.15);
  overflow: hidden;
}
.archive-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  display: block;
}
.archive-card--placeholder .archive-card__img {
  background: rgba(255,255,255,0.04);
  position: relative;
}
.archive-card--placeholder .archive-card__img::after {
  content: '—';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-family: var(--f-mono);
  font-size: 32px;
}
.archive-card__label {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 768px) {
  .talent-page__connect-list {
    grid-template-columns: 1fr;
  }
  .tc-link {
    border-right: none;
    border-bottom: 0.5px solid rgba(255,255,255,0.18);
  }
  .tc-link:last-child { border-bottom: none; }
}

/* Toast notification */
.toast-notify {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--paper);
  color: var(--ink-deep);
  padding: 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 9000;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  pointer-events: none;
  max-width: 360px;
  text-align: center;
}
.toast-notify.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast-notify .mono {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cobalt);
  font-weight: 500;
}
.toast-notify span:last-child {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(0,0,0,0.6);
}

/* ===== GALLERY — editorial asymmetric grid ===== */
.talent-page__archive-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.gallery-count {
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
  width: 100%;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.1);
  transition: background 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}
.gallery-tile:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
}

.gallery-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-out), filter 0.6s var(--ease-out);
}
.gallery-tile:hover .gallery-tile__img {
  transform: scale(1.03);
}

.gallery-tile__num {
  position: absolute;
  top: 14px;
  left: 14px;
  color: rgba(255,255,255,0.75);
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.gallery-tile__hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  color: rgba(255,255,255,0.55);
  z-index: 2;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* Placeholder state — no image, thin crosshair center */
.gallery-tile--placeholder {
  background: rgba(255,255,255,0.02);
}
.gallery-tile--placeholder::before,
.gallery-tile--placeholder::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255,255,255,0.15);
  transform: translate(-50%, -50%);
  transition: background 0.4s var(--ease-out);
}
.gallery-tile--placeholder::before {
  width: 14px;
  height: 0.5px;
}
.gallery-tile--placeholder::after {
  width: 0.5px;
  height: 14px;
}
.gallery-tile--placeholder:hover::before,
.gallery-tile--placeholder:hover::after {
  background: rgba(255,255,255,0.4);
}
.gallery-tile--placeholder .gallery-tile__num {
  color: rgba(255,255,255,0.35);
  text-shadow: none;
}
.gallery-tile--placeholder .gallery-tile__hint {
  color: rgba(255,255,255,0.3);
  text-shadow: none;
}

/* "+" tile — add more frames CTA */
.gallery-tile--add {
  background: transparent;
  border: 0.5px dashed rgba(255,255,255,0.3);
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  transition: background 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
  cursor: none;
}
.gallery-tile--add:hover {
  background: var(--cobalt);
  border-color: var(--cobalt);
  border-style: solid;
}
.gallery-tile__plus {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: clamp(60px, 9vw, 120px);
  line-height: 0.8;
  color: rgba(255,255,255,0.55);
  transition: color 0.4s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}
.gallery-tile--add:hover .gallery-tile__plus {
  color: var(--paper);
  transform: rotate(90deg);
}
.gallery-tile__add-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  transition: color 0.4s var(--ease-out);
  pointer-events: none;
}
.gallery-tile--add:hover .gallery-tile__add-label {
  color: var(--paper);
}

/* Tile variants — asymmetric sizes */
.gallery-tile--hero      { grid-column: span 8; aspect-ratio: 4/5; }
.gallery-tile--portrait  { grid-column: span 4; aspect-ratio: 3/4; }
.gallery-tile--landscape { grid-column: span 6; aspect-ratio: 3/2; }
.gallery-tile--square-big{ grid-column: span 6; aspect-ratio: 1/1; }
.gallery-tile--square    { grid-column: span 4; aspect-ratio: 1/1; }
.gallery-tile--tall      { grid-column: span 4; aspect-ratio: 2/3; }
.gallery-tile--wide      { grid-column: span 8; aspect-ratio: 16/9; }

/* Tablet */
@media (max-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .gallery-tile--hero,
  .gallery-tile--wide      { grid-column: span 6; }
  .gallery-tile--landscape,
  .gallery-tile--square-big{ grid-column: span 6; }
  .gallery-tile--portrait,
  .gallery-tile--square,
  .gallery-tile--tall      { grid-column: span 3; }
}

/* Mobile */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-tile--hero,
  .gallery-tile--portrait,
  .gallery-tile--landscape,
  .gallery-tile--square,
  .gallery-tile--square-big,
  .gallery-tile--wide,
  .gallery-tile--tall {
    grid-column: span 1;
  }
}

.talent-page__book {
  align-self: flex-start;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink-deep);
  background: var(--paper);
  padding: 18px 36px;
  display: inline-block;
  max-width: 1400px;
  margin: 0 auto 0 auto;
  transition: transform 0.4s var(--ease-out), color 0.4s var(--ease-out);
}
.talent-page__book:hover {
  transform: translateY(-3px);
  color: var(--cobalt-bright);
}

.talent-page__empty {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-top: 40px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.15);
}
.talent-page__empty p {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: var(--mute);
  max-width: 500px;
}

.roster-outro {
  min-height: 70vh;
  background: var(--cobalt);
  display: flex;
  align-items: center;
  padding: 120px 40px;
}

.roster-outro__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.roster-outro__h {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 28px;
}
.ro-line {
  display: block;
  overflow: hidden;
}
.ro-line em {
  font-family: var(--f-italic);
  font-weight: 100;
  font-style: italic;
  letter-spacing: -0.015em;
}

.roster-outro__lead {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--mute);
  max-width: 500px;
  margin-bottom: 40px;
}

.roster-outro__email {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0.02em;
  color: var(--paper);
  padding: 4px 0;
  border-bottom: 1px solid var(--paper);
  margin-right: 40px;
}

.roster-outro__back {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.roster-outro__back:hover { opacity: 1; }

/* ============================================= */
/* PORTFOLIO PAGE                                */
/* ============================================= */
.is-portfolio-page {
  background: var(--ink-deep);
}

.nav--dark {
  mix-blend-mode: normal;
}

/* Portfolio intro — compact header that sits above the constellation in the same viewport */
.portfolio-intro {
  background: var(--ink-deep);
  padding: calc(var(--nav-h) + 40px) 28px 24px;
  position: relative;
  border-bottom: 0.5px solid rgba(255,255,255,0.18);
}

.portfolio-intro__inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-intro__h {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 0.86;
  letter-spacing: -0.025em;
  text-transform: lowercase;
  color: var(--paper);
  margin: 10px 0 0;
}
.pi-line {
  display: inline-block;
  overflow: hidden;
  margin-right: 12px;
}
.pi-line em {
  font-family: var(--f-italic);
  font-weight: 200;
  font-style: italic;
  letter-spacing: -0.015em;
}

.portfolio-intro__lead {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.55;
  color: var(--mute);
  max-width: 360px;
  text-align: right;
}
.portfolio-intro__lead em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--paper);
}

.portfolio-intro__arrow {
  display: none;
}

/* Portfolio canvas — the constellation, sits directly below intro */
.portfolio-canvas {
  position: relative;
  /* Fill the remaining viewport after intro + nav */
  min-height: calc(100vh - var(--nav-h) - 140px);
  background: var(--ink-deep);
  padding: 0 28px 40px;
  overflow: hidden;
}

.pf-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
}

.pf-label {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pf-label--tl {
  top: 50px;
  left: 40px;
}
.pf-label--br {
  bottom: 50px;
  right: 40px;
  text-align: right;
  align-items: flex-end;
}
.pf-label .mono {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 1.5;
}
.pf-label .mono--label {
  color: var(--paper);
  opacity: 0.9;
}

.pf-constellation {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 520px;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 2;
}

.pf-dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 14px;
  z-index: 3;
}

.pf-dot__circle {
  width: 8px;
  height: 8px;
  background: var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255,255,255,0.5);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.pf-dot__label {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  transition: color 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  position: relative;
  font-weight: 400;
}
.pf-dot__label em {
  font-style: italic;
  color: var(--paper);
  font-weight: 500;
}

.pf-dot__label::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 0.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s var(--ease-out);
}

.pf-dot:hover .pf-dot__circle,
.pf-dot.is-active .pf-dot__circle {
  transform: scale(2);
  box-shadow: 0 0 32px rgba(255,255,255,0.9);
}
.pf-dot:hover .pf-dot__label,
.pf-dot.is-active .pf-dot__label {
  color: var(--paper);
}
.pf-dot:hover .pf-dot__label::before,
.pf-dot.is-active .pf-dot__label::before {
  transform: scaleX(1);
}

.pf-dot--active .pf-dot__circle {
  width: 11px;
  height: 11px;
  box-shadow: 0 0 28px rgba(255,255,255,0.8);
}
.pf-dot--active .pf-dot__label {
  color: var(--paper);
  font-size: 15px;
}

.pf-dot--empty .pf-dot__circle {
  background: rgba(255,255,255,0.3);
  box-shadow: 0 0 8px rgba(255,255,255,0.2);
  width: 6px;
  height: 6px;
}
.pf-dot--empty .pf-dot__label {
  color: rgba(255,255,255,0.32);
  font-size: 12px;
}

/* Mini window — compact card that appears beside hovered dot */
.pf-mini {
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  background: var(--cobalt);
  border: 0.5px solid rgba(255,255,255,0.3);
  padding: 0;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out), transform 0.5s var(--ease-out);
  transform: translate(0, 8px);
}

.pf-mini.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.pf-mini__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(0,0,0,0.35);
  border-bottom: 0.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pf-mini__img-label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
}

.pf-mini__body {
  padding: 14px 16px 16px;
}

.pf-mini__bracket {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--paper);
  margin-bottom: 8px;
}
.pf-mini__bracket em {
  font-style: italic;
  font-weight: 500;
}

.pf-mini__desc {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}

.pf-mini__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 0.5px solid rgba(255,255,255,0.2);
}
.pf-mini__footer .mono {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.pf-mini__arrow {
  font-size: 14px;
  color: var(--paper);
  font-weight: 500;
}

/* Portfolio outro */
.portfolio-outro {
  min-height: 60vh;
  background: var(--ink-deep);
  border-top: 0.5px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  padding: 100px 40px;
}

.portfolio-outro__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.portfolio-outro__h {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 170px);
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 28px;
}
.po-line {
  display: block;
  overflow: hidden;
}
.po-line em {
  font-family: var(--f-italic);
  font-weight: 100;
  font-style: italic;
  letter-spacing: -0.015em;
}

.portfolio-outro__lead {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--mute);
  max-width: 500px;
  margin-bottom: 40px;
}

.portfolio-outro__email {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0.02em;
  color: var(--paper);
  padding: 4px 0;
  border-bottom: 1px solid var(--paper);
  margin-right: 40px;
}

.portfolio-outro__back {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.portfolio-outro__back:hover { opacity: 1; }

/* ============================================= */
/* HAMBURGER MENU                                */
/* ============================================= */
.nav__burger {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 301;
  background: none;
  border: none;
  cursor: none;
  padding: 6px 0;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--paper);
  transition: transform 0.5s var(--ease-out), opacity 0.3s;
}
.nav__burger span:first-child { margin-bottom: 8px; }
.nav__burger.is-open span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}
.nav__burger.is-open span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* ============================================= */
/* RESPONSIVE                                    */
/* ============================================= */
@media (max-width: 900px) {
  .nav {
    padding: 0 16px;
  }
  .nav__burger { display: block; }

  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: var(--ink-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 32px;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-out);
  }
  .nav__menu.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav__menu .nav__link {
    font-size: 28px;
    font-family: var(--f-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    opacity: 1;
    padding: 14px 0;
    border-bottom: 0.5px solid rgba(255,255,255,0.12);
    width: 100%;
    display: block;
  }
  .nav__menu .nav__link::after { display: none; }
  .nav__menu .nav__link sup { display: none; }
  .nav__menu .nav__link.is-active { color: var(--paper); }

  .bottom-bar { padding: 0 16px; }
  .bottom-bar__email { display: none; }
  .progress-indicator { display: none; }

  /* HERO */
  .hero__logo-wrap {
    width: clamp(100px, 28vw, 160px);
    top: calc(var(--nav-h) + 20px);
    right: 16px;
  }
  .hero__location {
    top: calc(var(--nav-h) + 20px);
    left: 16px;
  }
  .hero__claim {
    top: auto;
    bottom: calc(var(--nav-h) + 140px);
    right: 16px;
    left: 16px;
    text-align: left;
    transform: none;
    max-width: 100%;
  }
  .hero__claim-line {
    font-size: clamp(16px, 4.5vw, 22px);
  }
  .hero__wordmark {
    bottom: calc(var(--nav-h) + 16px);
    left: 16px;
    right: 16px;
  }
  .hero__title {
    font-size: clamp(48px, 18vw, 100px);
  }
  .hero__tag {
    gap: 8px;
  }
  .hero__translation {
    font-size: clamp(16px, 6vw, 32px);
  }
  .hero__rule {
    left: 16px;
    right: 16px;
  }
  .hero__scroll { display: none; }

  /* MANIFESTO */
  .manifesto-sticky {
    padding: calc(var(--nav-h) + 24px) 20px;
  }
  .manifesto-spread {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .manifesto-intro__h {
    font-size: clamp(48px, 16vw, 120px);
  }
  .manifesto-strophes {
    padding-left: 16px;
    max-width: 100%;
  }
  .manifesto-sec {
    height: 160vh;
  }

  /* ROSTER TEASE */
  .roster-tease { padding: 80px 20px; }
  .roster-tease__inner {
    grid-template-columns: 1fr;
  }
  .roster-tease__h {
    font-size: clamp(56px, 18vw, 120px);
  }
  .rt-preview-grid { min-height: 280px; }

  /* CONTACT */
  .contact-sec { padding: 80px 20px 60px; }
  .contact-sec__h {
    font-size: clamp(48px, 16vw, 140px);
  }
  .contact-sec__footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* TALENT PAGE */
  .talent-page {
    padding: calc(var(--nav-h) + 16px) 20px 80px;
  }
  .talent-page__name {
    font-size: clamp(48px, 18vw, 140px);
  }
  .talent-page__info {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .talent-page__header {
    flex-wrap: wrap;
    gap: 12px;
  }
  .talent-page__connect-list {
    grid-template-columns: 1fr;
  }
  .tc-link {
    border-right: none;
    border-bottom: 0.5px solid rgba(255,255,255,0.18);
  }
  .tc-link:last-child { border-bottom: none; }

  /* ROSTER GRID */
  .roster-grid-page {
    padding: calc(var(--nav-h) + 20px) 16px calc(var(--nav-h) + 16px);
  }
  .rg-header {
    flex-direction: column;
    gap: 4px;
  }
  .rg-title-wrap {
    flex-direction: column;
    gap: 8px;
  }
  .rg-title-meta {
    text-align: left;
    align-self: flex-start;
    padding-bottom: 0;
  }
  .rg-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    min-height: auto;
  }
  .rg-cell {
    min-height: 160px;
    padding: 14px 12px;
  }
  .rg-cell__label {
    font-size: 10px;
  }

  /* PORTFOLIO */
  .portfolio-intro {
    padding: calc(var(--nav-h) + 24px) 16px 20px;
  }
  .portfolio-intro__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .portfolio-intro__lead {
    text-align: left;
    max-width: 100%;
  }
  .pf-constellation {
    height: 55vh;
    min-height: 400px;
  }
  .pf-dot__label {
    font-size: 10px;
  }
  .pf-dot--active .pf-dot__label {
    font-size: 11px;
  }
  .pf-dot--empty .pf-dot__label {
    font-size: 9px;
  }

  .portfolio-outro { padding: 60px 20px; }
  .portfolio-outro__h {
    font-size: clamp(40px, 12vw, 100px);
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .contact-sec__footer {
    grid-template-columns: 1fr;
  }
  .rg-title {
    font-size: clamp(36px, 12vw, 60px);
  }
}
