/* Sacha Capelluto — Editorial Magazine EPK */

:root {
  --cream: #F7F3EC;
  --ink: #1A1814;
  --burgundy: #8B3A3A;
  --warm-gray: #6B6560;
  --line: rgba(26, 24, 20, 0.12);
  --font-display: 'Playfair Display SC', Georgia, serif;
  --font-editorial: 'Libre Baskerville', Georgia, serif;
  --font-ui: 'Karla', system-ui, sans-serif;
  --max-w: 1320px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

::selection {
  background: var(--burgundy);
  color: var(--cream);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--pad);
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--burgundy);
  color: var(--cream);
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(var(--max-w), 100% - var(--pad) * 2);
  margin-inline: auto;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--cream);
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  text-align: center;
}
.preloader-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: 0.08em;
  display: block;
}
.preloader-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--burgundy);
  margin: 1rem auto;
}
.preloader-role {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* Custom cursor — clap cinéma */
body.has-cursor,
body.has-cursor a,
body.has-cursor button {
  cursor: none !important;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  will-change: transform;
}

body.has-cursor .cursor.is-active { opacity: 1; }

.cursor-clap {
  position: relative;
  width: 40px;
  height: 34px;
  margin: -6px 0 0 -20px;
  transition: transform 0.35s var(--ease);
}

.cursor-clap-arm {
  position: absolute;
  top: 0;
  left: 2px;
  right: 2px;
  height: 14px;
  background: repeating-linear-gradient(
    -38deg,
    var(--burgundy) 0 4px,
    var(--cream) 4px 8px
  );
  border: 1px solid var(--ink);
  border-radius: 2px 2px 0 0;
  transform-origin: 4px 100%;
  transform: rotate(-24deg);
  transition: transform 0.18s var(--ease);
  z-index: 2;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.cursor-clap-label {
  font-family: var(--font-ui);
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.cursor-clap-base {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 0 0 3px 3px;
  display: grid;
  place-items: center;
  z-index: 1;
}

.cursor-clap-mark {
  font-family: var(--font-display);
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  color: var(--burgundy);
}

.cursor.is-hover .cursor-clap {
  transform: scale(1.08);
}

.cursor.is-hover .cursor-clap-label {
  opacity: 1;
}

.cursor.is-gallery .cursor-clap {
  transform: scale(1.18);
}

.cursor.is-gallery .cursor-clap-base {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.cursor.is-gallery .cursor-clap-mark {
  color: var(--cream);
}

.cursor.is-gallery .cursor-clap-label {
  opacity: 1;
}

.cursor.is-clap .cursor-clap-arm {
  transform: rotate(2deg);
}

.cursor.is-clap .cursor-clap {
  transform: scale(0.94);
}

@media (prefers-reduced-motion: reduce) {
  .cursor-clap-arm { transition-duration: 0.01ms; }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}
.header.is-scrolled {
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  display: block;
}
.nav-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.nav-links {
  display: none;
  gap: 2rem;
}
.nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--burgundy);
  transition: width 0.3s var(--ease);
}
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }
.nav-cta {
  display: none;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--ink);
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--cream);
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  margin: -12px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s;
}
.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 1001;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(1.5rem, 8vh, 3rem) var(--pad) max(2rem, env(safe-area-inset-bottom));
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

@media (max-height: 700px) {
  .mobile-menu {
    gap: 0.85rem;
    padding-top: 1.25rem;
  }

  .mobile-link {
    font-size: 1.25rem;
  }

  .mobile-link--cta {
    margin-top: 0.5rem;
    padding: 0.6rem 1.5rem;
  }
}
.mobile-link--cta {
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
}

.mobile-link.is-active {
  color: var(--burgundy);
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-block; }
  .nav-toggle { display: none; }
}

@media (max-width: 899px) {
  .nav-links,
  .nav-cta {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 80vh;
  min-height: 80dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

@media (max-width: 899px) {
  .hero {
    min-height: 92vh;
    min-height: 92dvh;
  }
}
.hero-media {
  position: absolute;
  inset: 0;
  min-height: inherit;
}
.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 36%;
}

@media (min-width: 1024px) {
  .hero-img {
    object-position: 44% 34%;
  }
}

@media (max-width: 767px) {
  .hero-img {
    object-position: 50% 32%;
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 24, 20, 0.85) 0%,
    rgba(26, 24, 20, 0.45) 22%,
    rgba(26, 24, 20, 0.12) 50%,
    transparent 72%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 8vh, 5rem) var(--pad);
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  color: var(--cream);
}

@media (min-width: 1024px) {
  .hero-content {
    max-width: min(42rem, 46vw);
    margin-left: 0;
    margin-right: auto;
    padding-left: max(var(--pad), 3vw);
  }
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.04em;
}
.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 0.5rem 0 1.5rem;
  opacity: 0.9;
}
/* Buttons */
.btn {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
  border: 1px solid var(--burgundy);
}
.btn-primary:hover {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

/* Casting bar */
.casting-bar {
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--cream);
}
.casting-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  padding: 1rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.casting-item {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}
.casting-label {
  opacity: 0.55;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

/* Chapters */
.chapters {
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.chapters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.chapter-card {
  background: var(--cream);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.4s var(--ease);
  min-height: 140px;
}
.chapter-card:hover {
  background: rgba(139, 58, 58, 0.06);
}
.chapter-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--burgundy);
  letter-spacing: 0.1em;
}
.chapter-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: 0.04em;
}
.chapter-arrow {
  margin-top: auto;
  font-size: 1.25rem;
  color: var(--burgundy);
  transition: transform 0.3s var(--ease);
}
.chapter-card:hover .chapter-arrow { transform: translateX(6px); }

@media (min-width: 768px) {
  .chapters-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}
.section-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--burgundy);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 1rem;
}

.section-num--hero {
  color: rgba(247, 243, 236, 0.8);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  line-height: 1.1;
}
.section-title--sticky {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  z-index: 5;
}

/* About */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
.about-bio {
  font-family: var(--font-editorial);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.85;
  color: var(--warm-gray);
  max-width: 58ch;
}
.about-quote {
  margin-top: 2rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--burgundy);
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--ink);
  max-width: 50ch;
}
.about-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 50% 28%;
}

@media (max-width: 899px) {
  .about-visual img {
    object-position: 50% 38%;
  }

  .section {
    padding-bottom: calc(clamp(4rem, 10vw, 7rem) + 5.5rem);
  }
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
}

/* Marquee */
.marquee {
  margin-top: 4rem;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 180s linear infinite;
}
.marquee-track span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--warm-gray);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* CV */
.cv-layout {
  display: grid;
  gap: 3rem;
}
.cv-formation,
.cv-timeline-wrap {
  min-width: 0;
}
.cv-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
}
.cv-formation-list li {
  font-family: var(--font-editorial);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.cv-timeline {
  position: relative;
  padding-left: 2rem;
}
.cv-timeline-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 100%;
}
.cv-timeline-line {
  stroke: var(--burgundy);
  stroke-width: 1;
  opacity: 0.4;
}
.cv-year-block {
  position: relative;
  padding-bottom: 2rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.cv-year-block.is-visible {
  opacity: 1;
  transform: none;
}
.cv-year-block::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--burgundy);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 1px var(--burgundy);
}
.cv-year {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.cv-items li {
  font-family: var(--font-editorial);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--warm-gray);
  padding: 0.25rem 0 0.25rem 0.5rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.cv-items a {
  color: var(--burgundy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.cv-items a:hover {
  color: var(--ink);
}
.cv-print { margin-top: 2rem; }

@media (max-width: 899px) {
  .section-title--sticky {
    position: static;
  }
}

@media (min-width: 900px) {
  .cv-layout { grid-template-columns: 1fr 1.6fr; gap: 4rem; }
}

/* Gallery */
.gallery .container {
  width: 100%;
  max-width: none;
  padding-inline: clamp(0.75rem, 2.5vw, 2rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(140px, 42vw);
  gap: clamp(0.45rem, 1vw, 0.75rem);
  width: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: none;
  min-height: 0;
}

.gallery-item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}

.gallery-item--lead {
  grid-column: 1 / -1;
  grid-row: span 2;
  min-height: clamp(280px, 55vw, 520px);
}

.gallery-item--lead img {
  object-position: center 18%;
}

.gallery-item:hover img {
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, minmax(170px, 26vh));
    grid-auto-rows: minmax(170px, 26vh);
    gap: clamp(0.5rem, 1vw, 0.85rem);
  }

  .gallery-item--lead {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    min-height: 0;
  }
}

/* Contact */
.contact-inner {
  max-width: 36rem;
}

.contact-list li {
  padding: 0.4rem 0;
  font-family: var(--font-editorial);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.6;
}

.contact-list li:first-child {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-family: var(--font-ui);
  margin-bottom: 0.5rem;
}

.contact-list a:hover { color: var(--burgundy); }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--warm-gray);
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
}
.footer-nav a:hover { color: var(--burgundy); }

/* FAB */
.fab {
  position: fixed;
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  right: max(1.5rem, env(safe-area-inset-right));
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fab-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(26, 24, 20, 0.2);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.fab-btn:hover {
  transform: scale(1.08);
  background: var(--burgundy);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(26, 24, 20, 0.92);
  display: grid;
  place-items: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox-img {
  max-height: 80vh;
  max-width: 90vw;
  object-fit: contain;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  padding: 1rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 0.5rem; right: 0.5rem; }
.lightbox-prev { left: 0.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 0.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-caption {
  position: absolute;
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  left: 1rem;
  right: 1rem;
  text-align: center;
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

@media (max-width: 899px) {
  .lightbox {
    padding: 1rem;
    padding-top: max(3.5rem, env(safe-area-inset-top));
    padding-bottom: max(4rem, env(safe-area-inset-bottom));
  }
  .lightbox-img {
    max-height: min(70vh, 70dvh);
    max-width: 100%;
  }
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    display: grid;
    place-items: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
  }
  .lightbox-close {
    top: max(0.25rem, env(safe-area-inset-top));
    right: max(0.25rem, env(safe-area-inset-right));
  }
  .lightbox-prev {
    left: max(0.25rem, env(safe-area-inset-left));
  }
  .lightbox-next {
    right: max(0.25rem, env(safe-area-inset-right));
  }
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-img { transform: none !important; }
  .marquee-track { animation: none; }
}

/* Print CV */
@media print {
  .header, .preloader, .cursor, .fab, .lightbox, .marquee,
  .chapters, .gallery, .contact, .footer, .casting-bar {
    display: none !important;
  }
  body { background: white; color: black; }
  .hero { min-height: auto; page-break-after: avoid; }
  .hero-media { position: relative; height: 200px; }
  .hero-content { color: black; padding: 1rem; }
  .cv { padding: 0; }
  .section-title--sticky { position: static; }
  .cv-year-block { opacity: 1 !important; transform: none !important; }
  .cv-print { display: none; }
}
