:root {
  --void: #0b0d09;
  --void-2: #151810;
  --void-3: #1d2117;
  --paper: #f4efe2;
  --paper-dim: #b9b3a2;
  --amber: #d6a24a;
  --teal: #5c8a7d;
  --teal-dim: #3e5f55;
  --rust: #c05b36;
  --line: rgba(244,239,226,.14);
  --line-strong: rgba(244,239,226,.28);
  --font-serif: "Fraunces", serif;
  --font-sans: "Work Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: var(--void);
  color: var(--paper);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }
}

a {
  color: inherit;
}

::selection {
  background: var(--amber);
  color: var(--void);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width:600px) {
  .wrap {
    padding: 0 20px;
  }
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -.01em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--amber);
  content: "";
}

/* ===== Nav ===== */
nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(11,13,9,.72);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 32px;
}

.nav-name {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: .02em;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  color: var(--paper-dim);
  text-decoration: none;
  transition: color .25s ease;
}

.nav-links a:hover, .nav-links a:focus-visible {
  color: var(--amber);
}

.nav-links a.active {
  color: var(--amber);
}

@media (max-width:720px) {
  .nav-links {
    display: none;
  }
}

.nav-dl {
  flex-shrink: 0;
  margin-bottom: 4px;
}

.nav-cv {
  flex-shrink: 0;
  margin: 0 2px;
  padding: 8px 12px;
  background: var(--amber);
  color: var(--void) !important;
  font-size: 12px;
  letter-spacing: .08em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s ease;
}

.nav-cv:hover {
  color: var(--void) !important;
  opacity: .85;
}

@media (max-width:480px) {
  .nav-cv {
    margin: 0 4px;
    padding: 8px 10px;
    font-size: 10px;
  }

  .nav-name {
    font-size: 14px;
  }

  .nav-inner {
    padding: 10px 16px;
  }
}

/* Mobile hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  gap: 3px;
  width: 32px;
  height: 32px;
  margin-left: 8px;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: none;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 0 auto;
  background: var(--paper);
  transition: transform .25s ease, opacity .25s ease;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width:720px) {
  .nav-burger {
    display: flex;
  }
}

.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line);
  background: var(--void);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--paper-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-mobile a.active {
  color: var(--amber);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: flex-end;
  min-height: 100svh;
  padding-top: 120px;
}

.hero-bg {
  position: absolute;
  background:
    radial-gradient(
      ellipse 900px 600px at 78% 8%,
      rgba(214,162,74,.16),
      transparent 60%), radial-gradient(ellipse 700px 500px at 10% 100%,
      rgba(92,138,125,.16),
      transparent 60%
    );
  inset: 0;
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: end;
  gap: 48px;
  grid-template-columns: 1.15fr .85fr;
  width: 100%;
  padding-bottom: 64px;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  height: min(64vh, 620px);
  border: 1px solid var(--line-strong);
}

@media (max-width:860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    order: -1;
    max-width: 340px;
    height: min(52vh, 460px);
    margin: 0 auto;
  }
}

@media (max-width:600px) {
  .hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 40px;
  }

  .hero-grid {
    gap: 28px;
    padding-bottom: 0;
  }

  .hero-photo {
    max-width: 280px;
    height: min(46vh, 380px);
  }

  .hero-sub {
    font-size: 15.5px;
  }

  .ticket {
    display: flex;
    width: 100%;
  }

  .ticket > div {
    flex: 1;
    padding: 12px 14px;
  }
}

.hero-photo img {
  width: 100%;
  height: 100%;
  filter: grayscale(.15) contrast(1.05);
  object-fit: cover;
  object-position: 50% 20%;
}

.hero-photo::after {
  position: absolute;
  background:
    linear-gradient(
      0,
      rgba(11,13,9,.85) 0,
      rgba(11,13,9,0) 38%
    );
  content: "";
  inset: 0;
}

.hero-text {
  position: relative;
}

.hero-text h1 {
  margin: 18px 0 14px;
  font-size: clamp(48px, 7.4vw, 92px);
  line-height: .96;
}

.hero-text .role {
  color: var(--paper-dim);
  font-weight: 400;
  font-style: italic;
}

.hero-sub {
  max-width: 36ch;
  margin-top: 18px;
  color: var(--paper-dim);
  font-size: 17px;
}

.ticket {
  display: inline-flex;
  align-items: stretch;
  margin-top: 36px;
  border: 1px solid var(--line-strong);
  background: var(--void-2);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
}

.ticket > div {
  padding: 14px 18px;
}

.ticket .stub-left {
  border-right: 1px dashed var(--line-strong);
  color: var(--paper-dim);
}

.ticket .stub-left strong {
  display: block;
  margin-bottom: 4px;
  color: var(--paper);
  font-size: 13px;
  letter-spacing: .08em;
}

.ticket .stub-right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--amber);
}

.ticket .num {
  font-size: 22px;
  font-weight: 500;
  animation: flicker 3.6s infinite steps(1);
}

@keyframes flicker {
  0%, 92%, 100% {
    opacity: 1;
  }

  93% {
    opacity: .4;
  }

  95% {
    opacity: 1;
  }

  96% {
    opacity: .55;
  }
}

/* ===== Section scaffolding ===== */
section {
  position: relative;
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width:600px) {
  section {
    padding: 72px 0;
  }
}

.section-head {
  display: grid;
  align-items: end;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(30px,4vw,44px);
  font-weight: 500;
}

.section-head p {
  max-width: 44ch;
  color: var(--paper-dim);
  font-size: 15px;
}

@media (max-width:860px) {
  .section-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width:600px) {
  .section-head {
    gap: 14px;
    margin-bottom: 36px;
  }

  .section-head h2 {
    font-size: 28px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== At a glance ===== */
.glance {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
}

.glance .cell {
  padding: 24px 28px;
  background: var(--void);
}

.glance .cell .k {
  margin-bottom: 8px;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.glance .cell .v {
  font-size: 16px;
}

@media (max-width:720px) {
  .glance {
    grid-template-columns: 1fr;
  }
}

@media (max-width:600px) {
  .glance .cell {
    padding: 18px 20px;
  }

  .glance .cell .v {
    font-size: 15px;
  }
}

/* ===== Film section ===== */
.film-layout {
  display: grid;
  align-items: start;
  gap: 56px;
  grid-template-columns: .9fr 1.1fr;
}

.film-tag {
  margin-bottom: 18px;
  color: var(--#008080);
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
}

.film-body p {
  margin-bottom: 16px;
  color: var(--paper-dim);
  font-size: 16px;
}

.film-body p:first-child {
  color: var(--paper);
  font-size: 18px;
}

.film-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  border-bottom: 1px solid transparent;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color .2s ease;
}

.film-link:hover {
  border-color: var(--amber);
}

.film-still {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--void-2);
}

.film-still img {
  display: block;
  width: 100%;
}

.film-still figcaption {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  color: var(--paper-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
}

@media (max-width:860px) {
  .film-layout {
    grid-template-columns: 1fr;
  }
}

/* ===== Character section ===== */
.character {
  background: var(--void-2);
}

.char-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: .8fr 1.2fr;
}

.char-name {
  font-size: clamp(30px,3.6vw,42px);
  line-height: 1.08;
}

.char-name .small {
  display: block;
  margin-bottom: 10px;
  color: var(--#008080);
  font-family: var(--font-mono);
  font-size: 12px;
  font-style: normal;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.char-etym {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 2px solid var(--amber);
  color: var(--paper-dim);
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
}

.char-body p {
  margin-bottom: 16px;
  color: var(--paper-dim);
  font-size: 16px;
  text-align: justify;
}

.char-body strong {
  color: var(--paper);
  font-weight: 500;
}

.char-body img {
  float: left;
  max-width: 50%;
  max-height: 50%;
  margin-right: 16px;
}

@media (max-width:600px) {
  .char-body img {
    max-width: 220px;
    margin: 0 16px 12px 0;
  }
}

@media (max-width:860px) {
  .char-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Timeline / Story ===== */
.bio-intro-wrap {
  display: flex;
  gap: 32px;
  margin-bottom: 64px;
}

.bio-intro-text {
  flex: 1;
}

.bio-intro-media {
  flex: 0 0 40%;
}

.bio-intro-media img {
  display: block;
  width: 100%;
}

.bio-intro {
  margin-bottom: 16px;
  color: var(--paper-dim);
  font-size: 16px;
  text-align: justify;
}

.bio-intro:last-child {
  margin-bottom: 0;
}

.bio-intro strong {
  color: var(--paper);
  font-weight: 500;
}

@media (max-width:720px) {
  .bio-intro-wrap {
    flex-direction: column;
  }

  .bio-intro-media {
    flex: none;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

.queue {
  display: flex;
  flex-direction: column;
}

.queue-item {
  display: grid;
  gap: 32px;
  grid-template-columns: 120px 1fr;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.queue-item:last-child {
  border-bottom: 1px solid var(--line);
}

.queue-num {
  padding-top: 4px;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
}

.queue-num span {
  display: block;
  margin-top: 4px;
  color: var(--paper-dim);
  font-size: 10px;
  letter-spacing: .14em;
}

.queue-content {
  display: grid;
  align-items: center;
  gap: 24px;
  grid-template-columns: 1fr auto;
}

.queue-content h3 {
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 500;
}

.queue-content .meta {
  margin-bottom: 10px;
  color: var(--#008080);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.queue-content p {
  max-width: 56ch;
  color: var(--paper-dim);
  font-size: 15px;
}

.queue-thumb {
  overflow: hidden;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border: 1px solid var(--line-strong);
}

.queue-thumb img, .bettysc-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bettysc-banner, .bettysc-banner {
  overflow: hidden;
  flex-shrink: 0;
  order: -1;
  width: 100%;
  height: 360px;
  margin: 24px 0;
  border: 1px solid var(--line-strong);
}

@media (max-width:720px) {
  .bettysc-banner {
    height: 180px;
  }

  .bettysc-banner.is-tall {
    height: 360px;
  }
}

@media (max-width:720px) {
  .queue-item {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  .queue-content {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .queue-thumb {
    order: -1;
    width: 100%;
    height: 180px;
  }
}

@media (max-width:600px) {
  .queue-content h3 {
    font-size: 19px;
  }

  .bio-intro {
    margin-bottom: 40px;
    font-size: 15px;
  }
}

/* ===== BTS gallery ===== */
.bts-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(4, 1fr);
}

.bts-grid img {
  width: 100%;
  height: 260px;
  filter: grayscale(.35) contrast(1.05);
  transition: filter .35s ease, transform .35s ease;
  object-fit: cover;
}

.bts-grid a {
  display: block;
  overflow: hidden;
}

.bts-grid a:hover img {
  transform: scale(1.04);
  filter: grayscale(0);
}

.bts-grid img.obj-top {
  object-position: 50% 12%;
}

.bts-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width:720px) {
  .bts-grid-3 {
    grid-template-columns: repeat(2,1fr);
  }
}

.clips-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.clip-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.clips-wrap .clip-row:first-child {
  margin-top: 40px;
}

.clip-box {
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
  background: #000;
}

.clip-box video {
  display: block;
  width: 100%;
}

.clip-box-portrait {
  width: 220px;
}

.clip-box-portrait video {
  aspect-ratio: 2/3;
}

.clip-box-landscape {
  width: 320px;
}

.clip-box-landscape video {
  aspect-ratio: 960/444;
}

.clip-caption p {
  max-width: 44ch;
  color: var(--paper-dim);
  font-size: 15px;
}

.clip-caption strong {
  color: var(--paper);
  font-weight: 500;
}

@media (max-width:600px) {
  .clip-row {
    flex-direction: column;
    gap: 18px;
  }

  .clip-box-portrait {
    width: 180px;
  }

  .clip-box-landscape {
    width: 100%;
    max-width: 320px;
  }
}

.bts-caption {
  margin-top: 18px;
  color: var(--paper-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.8;
}

.bts-caption strong {
  color: var(--paper);
  font-weight: 500;
}

@media (max-width:720px) {
  .bts-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .bts-grid img {
    height: 190px;
  }
}

/* ===== Range / commercials + vertical drama ===== */
.range-block {
  margin-bottom: 64px;
}

.range-block:last-child {
  margin-bottom: 0;
}

.range-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.range-label::after {
  flex: 1;
  height: 1px;
  background: var(--line);
  content: "";
}

.commercial-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(4, 1fr);
}

.commercial-grid img {
  width: 100%;
  height: 220px;
  border: 1px solid var(--line-strong);
  object-fit: cover;
}

.vertical-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(8, 1fr);
}

.vertical-grid img {
  width: 100%;
  height: 170px;
  border: 1px solid var(--line);
  filter: saturate(.9);
  object-fit: cover;
}

.lifestyle-photo {
  overflow: hidden;
  max-width: 520px;
  border: 1px solid var(--line-strong);
}

.lifestyle-photo img {
  display: block;
  width: 100%;
}

@media (max-width:860px) {
  .commercial-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .vertical-grid {
    grid-template-columns: repeat(4,1fr);
  }
}

@media (max-width:480px) {
  .vertical-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .vertical-grid img {
    height: 200px;
  }
}

/* ===== Off Camera gallery ===== */
.off-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
}

.off-grid a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
}

.off-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.off-grid img {
  width: 100%;
  height: 100%;
  transition: transform .4s ease;
  object-fit: cover;
}

.off-grid a:hover img {
  transform: scale(1.05);
}

@media (max-width:720px) {
  .off-grid {
    grid-template-columns: repeat(2,1fr);
    grid-auto-rows: 160px;
  }

  .off-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ===== Looking ahead ===== */
.ahead {
  background: var(--void-2);
}

.ahead-grid {
  display: grid;
  align-items: start;
  gap: 56px;
  grid-template-columns: .7fr 1.3fr;
}

.ahead-quote {
  color: var(--paper);
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.6vw, 32px);
  font-style: italic;
  line-height: 1.3;
}

.ahead-body p {
  margin-bottom: 16px;
  color: var(--paper-dim);
  font-size: 16px;
}

@media (max-width:860px) {
  .ahead-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Quick facts ===== */
.facts {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.fact {
  padding: 20px 22px;
  border: 1px solid var(--line-strong);
  border-left: 2px solid var(--#008080);
  background: var(--void-2);
  color: var(--paper-dim);
  font-size: 15px;
}

.fact strong {
  color: var(--paper);
  font-weight: 500;
}

@media (max-width:720px) {
  .facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width:600px) {
  .fact {
    padding: 16px 18px;
    font-size: 14px;
  }
}

/* ===== Footer ===== */
footer {
  padding: 90px 0 60px;
}

.footer-grid {
  display: grid;
  align-items: end;
  gap: 40px;
  grid-template-columns: 1.2fr .8fr;
}

footer h2 {
  margin-bottom: 20px;
  font-size: clamp(32px,4.4vw,52px);
  line-height: 1.05;
}

footer p {
  max-width: 44ch;
  color: var(--paper-dim);
}

.footer-meta {
  color: var(--paper-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  text-align: right;
}

.footer-meta div {
  margin-bottom: 8px;
}

@media (max-width:720px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width:600px) {
  footer {
    padding: 64px 0 44px;
  }

  .rep-card {
    margin-top: 48px;
    padding-top: 28px;
  }

  .cv-btn {
    justify-content: center;
    width: 100%;
  }
}

.cv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  margin-right: 12px;
  padding: 13px 22px;
  background: var(--amber);
  color: var(--void);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity .2s ease, transform .2s ease;
}

.cv-btn:hover {
  opacity: .85;
  transform: translateY(-1px);
}

.cv-btn-outline {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--paper);
}

.cv-btn-outline:hover {
  border-color: var(--amber);
  background: var(--void-2);
  opacity: 1;
}

@media (max-width:600px) {
  .cv-btn {
    margin-right: 0;
  }
}

.rep-card {
  margin-top: 70px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.rep-label {
  margin-bottom: 18px;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.rep-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.rep-grid-3 {
  grid-template-columns: 1.3fr 1fr 1fr;
}

.rep-agency {
  margin-bottom: 8px;
  font-family: var(--font-serif);
  font-size: 19px;
}

.rep-col-label {
  margin-bottom: 10px;
  color: var(--#008080);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rep-line {
  margin-bottom: 4px;
  color: var(--paper-dim);
  font-size: 14px;
}

.rep-line span {
  color: var(--paper);
}

.rep-line a {
  border-bottom: 1px solid transparent;
  color: var(--paper-dim);
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease;
}

.rep-line a:hover {
  border-color: var(--amber);
  color: var(--amber);
}

@media (max-width:720px) {
  .rep-grid {
    grid-template-columns: 1fr;
  }

  .rep-grid-3 {
    grid-template-columns: 1fr;
  }
}

.rep-social {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.rep-social a {
  border-bottom: 1px solid transparent;
  color: var(--amber);
  text-decoration: none;
  transition: border-color .2s ease;
}

.rep-social a:hover {
  border-color: var(--amber);
}

.rep-social-dot {
  margin: 0 12px;
  color: var(--paper-dim);
}

/* ===== Print stylesheet ===== */
@media print {
  nav, .ticket, .cv-btn, video, .clip-row, .clips-wrap {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  section {
    padding: 24px 0;
    border-bottom: 1px solid #ccc;
    page-break-inside: avoid;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
  }

  .hero-bg {
    display: none;
  }

  .hero-photo {
    border: 1px solid #ccc;
  }

  a {
    color: #111;
    text-decoration: underline;
  }

  .eyebrow, .section-head p, .k, .range-label, .rep-label, .rep-col-label {
    color: #555 !important;
  }

  .amber, .film-link, .rep-social a {
    color: #111 !important;
  }

  img {
    max-width: 100% !important;
    filter: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .bts-grid, .off-grid, .vertical-grid, .commercial-grid {
    display: block;
  }

  .bts-grid img, .off-grid img, .vertical-grid img, .commercial-grid img {
    display: inline-block;
    max-width: 200px;
    height: auto;
    margin: 4px;
  }
}
