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

:root {
  --bg: #f5f3ef;
  --ink: #111111;
  --muted: #7a7570;
  --red: #c94a2b;
  --red-dark: #a33821;
  --pale: #ede9e2;
  --line: #d8d4cd;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Syne", sans-serif;
  font-weight: 400;

  /* ── NAV ── */
  .top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    mix-blend-mode: multiply;

    .nav-brand {
      font-family: "Bebas Neue", sans-serif;
      font-size: 1.4rem;
      letter-spacing: 0.1em;
      color: var(--ink);
      text-decoration: none;
    }

    .nav-items {
      display: flex;
      gap: 32px;
      list-style: none;

      a {
        font-size: 0.68rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--ink);
        text-decoration: none;
        font-weight: 600;
        position: relative;
      }

      a::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--red);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.25s;
      }

      a:hover::after {
        transform: scaleX(1);
      }
    }
  }
}

/* ── NAV COLOR TRANSITIONS ── */
.top-nav .nav-brand,
.top-nav .nav-items a {
  transition: color 0.4s ease;
}
.top-nav.nav-light {
  mix-blend-mode: normal;
}
.top-nav.nav-light .nav-brand,
.top-nav.nav-light .nav-items a {
  color: var(--bg);
}
.top-nav.nav-light .nav-items a::after {
  background: var(--bg);
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}
.hero-photo {
  position: relative;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% top;
  display: block;
  filter: contrast(1.05);
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--bg) 100%);
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 48px 64px 40px;
  position: relative;
}
.hero-number {
  position: absolute;
  top: 40px;
  right: 40px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 9rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.05);
  letter-spacing: -0.02em;
  user-select: none;
}
.hero-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--red);
  max-width: 60px;
}
h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
h1 .big {
  display: block;
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.85;
}
.hero-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 360px;
  margin-bottom: 40px;
  font-family: "EB Garamond", serif;
  font-size: 1.1rem;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--ink);
  padding: 11px 24px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  transition:
    background 0.2s,
    color 0.2s;
}
.pill:hover,
.pill.filled {
  background: var(--ink);
  color: var(--bg);
}
.pill.filled {
  border-color: var(--ink);
}
.pill.filled:hover {
  background: var(--red);
  border-color: var(--red);
}
.hero-credits {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-credit-item {
  text-align: center;
}
.hero-credit-item .role {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  display: block;
}
.hero-credit-item .show {
  font-family: "EB Garamond", serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
}

/* ── MARQUEE BAND ── */
.band {
  background: var(--ink);
  overflow: hidden;
  padding: 12px 0;
}
.band-track {
  display: flex;
  animation: track 16s linear infinite;
}
.band-track span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--bg);
  padding: 0 32px;
  white-space: nowrap;
}
.band-track span.dot {
  color: var(--red);
  padding: 0 8px;
}
@keyframes track {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── ABOUT ── */
#about {
  padding: 120px 40px;
}
.about-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.about-col-1 {
  grid-column: span 2;
}
.label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.label::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--red);
}
h2.big-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.about-body-text {
  font-family: "EB Garamond", serif;
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 24px;
}
.btn-solid {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 14px 32px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-solid:hover {
  background: var(--red-dark);
}
.about-sidebar {
  padding-top: 60px;
}
.stat-block {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.stat-block .num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--ink);
}
.stat-block .stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.rep-stack {
  margin-top: 40px;
}
.rep-stack h4 {
  font-size: 0.63rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  font-weight: 600;
}
.rep-entry {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.rep-entry strong {
  font-size: 0.88rem;
  color: var(--ink);
}
.rep-entry span {
  font-size: 0.78rem;
  color: var(--muted);
}
.rep-entry a {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── REELS ── */
#showreels {
  background: var(--pale);
  padding: 100px 40px;
}
.reels-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
}
.reel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.reel-box {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}
.reel-box.main {
  /*aspect-ratio: 4/5;*/
}
.reel-box.side {
  aspect-ratio: 3/4;
}
.reel-bg-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  opacity: 0.07;
}
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
}
/*.reel-box::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: rgba(201, 74, 43, 0);*/
/*  transition: background 0.3s;*/
/*}*/
/*.reel-box:hover::after {*/
/*  background: rgba(201, 74, 43, 0.2);*/
/*}*/
.reel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 60px 40px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease;
}
.reel-info--hidden {
  opacity: 0;
}
.reel-tag {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 6px;
}
.reel-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #fff;
}
.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.reel-box:hover .reel-play {
  border-color: var(--red);
  transform: translate(-50%, -50%) scale(1.1);
}
.reel-play::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 18px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.9);
  margin-left: 5px;
}

/* ── GALLERY ── */
#gallery {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.gal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}
.gal-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.9;
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 220px 220px;
  gap: 8px;
}
.gal-grid .gi {
  overflow: hidden;
  background: var(--pale);
}
.gal-grid .gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gal-grid .gi:hover img {
  transform: scale(1.06);
}
.gal-grid .gi:nth-child(1) {
  grid-column: 1 / 5;
}
.gal-grid .gi:nth-child(2) {
  grid-column: 5 / 9;
}
.gal-grid .gi:nth-child(3) {
  grid-column: 9 / 13;
}
.gal-grid .gi:nth-child(4) {
  grid-column: 1 / 7;
}
.gal-grid .gi:nth-child(5) {
  grid-column: 7 / 10;
}
.gal-grid .gi:nth-child(6) {
  grid-column: 10 / 13;
}

/* ── CONTACT ── */
#contact {
  background: var(--ink);
  color: var(--bg);
  padding: 100px 40px;
}
.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 48px;
  margin-bottom: 48px;
}
.contact-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
}
.contact-head h2 span {
  color: var(--red);
}
.contact-head p {
  font-family: "EB Garamond", serif;
  font-size: 1.1rem;
  color: rgba(245, 243, 239, 0.5);
  line-height: 1.8;
}
.contact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.c-item {
}
.c-item h4 {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 14px;
}
.c-item strong {
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
  margin-bottom: 3px;
}
.c-item span {
  font-size: 0.82rem;
  color: rgba(245, 243, 239, 0.4);
  display: block;
  margin-bottom: 8px;
}
.c-item a {
  font-size: 0.78rem;
  color: rgba(245, 243, 239, 0.35);
}
.c-item a:hover {
  color: var(--red);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(245, 243, 239, 0.25);

  a {
    color: rgba(245, 243, 239, 0.25);
    text-decoration: none;
  }

  a:hover {
    color: var(--red);
  }
}

/* ── ENTRANCE ANIM ── */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-text > * {
  animation: slideUp 0.7s ease both;
}
.hero-kicker {
  animation-delay: 0.1s;
}
h1 {
  animation-delay: 0.2s;
}
.hero-desc {
  animation-delay: 0.35s;
}
.hero-actions {
  animation-delay: 0.5s;
}
.hero-credits {
  animation-delay: 0.65s;
}

@media (min-height: 800px) and (min-width: 901px) {
  .hero-text {
    justify-content: center;
    padding-top: clamp(60px, 10vh, 120px);
    padding-bottom: 40px;
  }
}

@media (max-width: 900px) {
  body {
    cursor: auto;
  }
  .cursor {
    display: none;
  }
  nav {
    padding: 16px 20px;
  }
  .nav-items {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    height: 60vw;
  }
  .hero-text {
    padding: 32px 24px 48px;
  }
  h1 .big {
    font-size: clamp(3.5rem, 18vw, 8rem);
  }
  #about,
  #showreels,
  #gallery,
  #contact {
    padding: 72px 24px;
  }
  .about-wrap {
    grid-template-columns: 1fr;
  }
  .about-col-1 {
    grid-column: span 1;
  }
  .reel-grid {
    grid-template-columns: 1fr;
  }
  .reel-box.main,
  .reel-box.side {
    aspect-ratio: 16/9;
  }
  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gal-grid .gi {
    grid-column: span 1 !important;
  }
  .contact-head {
    grid-template-columns: 1fr;
  }
  .contact-list {
    grid-template-columns: 1fr;
  }
}

/* ── RESUME PAGE ── */
.resume-hero {
  background: var(--ink);
  color: var(--bg);
  padding: 140px 40px 80px;
}
.resume-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.resume-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--bg);
  margin-bottom: 16px;
}
.resume-title span {
  color: var(--red);
}
.resume-sub {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.5);
  font-weight: 600;
  margin-bottom: 40px;
}
.resume-download-pill {
  border-color: rgba(245, 243, 239, 0.3);
  color: var(--bg);
}
.resume-download-pill:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.resume-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}
.resume-stat {
  background: var(--ink);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
}
.resume-stat-val {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--bg);
  line-height: 1;
}
.resume-stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.4);
  margin-top: 4px;
}
.resume-rep-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 12px;
}
.resume-rep-entry {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.resume-rep-entry strong {
  font-size: 0.88rem;
  color: var(--bg);
  font-weight: 600;
}
.resume-rep-entry span {
  font-size: 0.75rem;
  color: rgba(245, 243, 239, 0.4);
}
.resume-section {
  padding: 80px 40px;
}
.resume-section.pale {
  background: var(--pale);
}
.resume-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.resume-section-head {
  margin-bottom: 40px;
}
.resume-section-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
}
.credits-table {
  border-top: 2px solid var(--ink);
}
.credits-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.credits-header span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.credit-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.credit-role {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.credit-production {
  font-family: "EB Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
}
.credit-org {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--ink);
}
.training-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
}
.training-item:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid var(--line);
}
.training-item:nth-child(even) {
  padding-left: 48px;
}
.training-discipline {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  padding-top: 4px;
}
.training-details {
  font-family: "EB Garamond", serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}
.training-details strong {
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.05em;
}
.skills-section {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 40px;
}
.skills-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.skills-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--bg);
  margin-bottom: 32px;
}
.skills-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.skill-tag {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  color: rgba(245, 243, 239, 0.65);
}
.profile-links {
  margin-top: 24px;
}
.profile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-decoration: none;
  color: rgba(245, 243, 239, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.profile-link:hover {
  color: var(--red);
}
.profile-link-name {
  font-weight: 600;
  color: var(--bg);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.profile-link:hover .profile-link-name {
  color: var(--red);
}

@media (max-width: 900px) {
  .resume-hero {
    padding: 100px 24px 60px;
  }
  .resume-hero-inner {
    grid-template-columns: 1fr;
  }
  .resume-section {
    padding: 60px 24px;
  }
  .credits-header {
    display: none;
  }
  .credit-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }
  .training-grid {
    grid-template-columns: 1fr;
  }
  .training-item {
    grid-template-columns: 100px 1fr;
  }
  .training-item:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }
  .training-item:nth-child(even) {
    padding-left: 0;
  }
  .skills-section {
    padding: 60px 24px;
  }
  .skills-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
