@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #050505;
  --bg-soft: #0b0a08;
  --cream: #f3eee7;
  --gold: #c8a24a;
  --text: #d7d0c7;
  --muted: #91887d;
  --border: #24211f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: "Inter", sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; }

.navbar {
  min-height: 118px;
  padding: 14px 6%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
}

.main-nav { display: flex; gap: 38px; }
.main-nav a, .language button {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.main-nav a:hover { color: var(--gold); }

.logo { height: 118px; width: auto; object-fit: contain; }
.language { display: flex; justify-content: flex-end; gap: 10px; }
.language button {
  background: transparent;
  border: 1px solid var(--border);
  padding: 15px 22px;
  cursor: pointer;
}
.language button.active, .language button:hover { border-color: var(--gold); color: var(--gold); }

.hero {
  min-height: calc(100vh - 118px);
  position: relative;
  display: flex;
  align-items: center;
  padding: 8% 7%;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.48), rgba(0,0,0,.82)),
    url("https://images.unsplash.com/photo-1503095396549-807759245b35?w=1800") center/cover;
}

.hero-content {
  max-width: 820px;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease both;
}

.kicker {
  color: var(--gold);
  letter-spacing: 9px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(64px, 8vw, 126px);
  line-height: 0.88;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -2px;
  margin-bottom: 32px;
}

.hero h1 em { color: var(--gold); font-style: italic; font-weight: 500; }

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.9;
  margin-bottom: 42px;
}

.hero-actions { display: flex; align-items: center; gap: 26px; }

.btn {
  display: inline-block;
  background: var(--cream);
  color: #111;
  padding: 19px 46px;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.btn:hover { background: var(--gold); transform: translateY(-2px); }

.circle-link {
  width: 58px;
  height: 58px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 20px;
}

.section, .page { padding: 100px 7%; }

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}

.section-title, .page-title {
  font-family: "Cormorant Garamond", serif;
  color: var(--cream);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 500;
  line-height: 1;
}

.gold-link {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 12px;
  text-transform: uppercase;
}

.actor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.actor-card {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.actor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.78);
  transition: 0.7s ease;
}

.actor-card:hover img { transform: scale(1.06); filter: brightness(0.55); }

.actor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 42%, rgba(0, 0, 0, 0.92));
}

.actor-info {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 32px;
  z-index: 2;
}

.actor-info p, .actor-card > p {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 14px;
}

.actor-info h3, .actor-card h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--cream);
  font-size: 43px;
  font-weight: 500;
  line-height: 1;
}

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  background: #080807;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-preview p, .contact-box p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.contact-box {
  border: 1px solid var(--border);
  padding: 44px;
  background: #080807;
}

.page { padding-top: 155px; min-height: 100vh; }

.footer {
  border-top: 1px solid var(--border);
  padding: 40px 7%;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  letter-spacing: 4px;
  font-size: 12px;
}

/* ---------------- PREMIUM ACTOR PROFILE ---------------- */

.lux-profile { background: #050505; color: #f3eee7; }

.lux-hero {
  min-height: calc(100vh - 118px);
  display: grid;
  grid-template-columns: 48% 52%;
  border-bottom: 1px solid var(--border);
}

.lux-image {
  height: calc(100vh - 118px);
  overflow: hidden;
  background: #0b0a08;
}

.lux-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.88);
}

.lux-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10%;
  background: #050505;
}

.lux-kicker {
  color: var(--gold);
  letter-spacing: 7px;
  font-size: 12px;
  margin-bottom: 34px;
  text-transform: uppercase;
}

.lux-intro h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(62px, 8vw, 118px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--cream);
}

.lux-role {
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 36px;
  font-size: 13px;
}

.lux-bio {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 17px;
}

.lux-content {
  padding: 90px 12%;
  background: #050505;
}

.lux-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 70px;
  padding: 42px 0;
  border-bottom: 1px solid var(--border);
}

.lux-block h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--cream);
}

.lux-block p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 6px;
}

.lux-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lux-skills span {
  border: 1px solid var(--border);
  padding: 13px 18px;
  color: var(--muted);
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@media(max-width: 1000px) {
  .navbar { grid-template-columns: 1fr; justify-items: center; }
  .main-nav { flex-wrap: wrap; justify-content: center; }
  .language { justify-content: center; }
  .actor-grid, .about-preview { grid-template-columns: 1fr; }
  .actor-card { height: 560px; }
  .section-top { align-items: flex-start; flex-direction: column; }
  .footer { flex-direction: column; text-align: center; }
  .lux-hero { grid-template-columns: 1fr; }
  .lux-image { height: 70vh; }
  .lux-block { grid-template-columns: 1fr; gap: 18px; }
  .lux-content { padding: 70px 8%; }
}

@media(max-width: 600px) {
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 11px; letter-spacing: 3px; }
  .logo { height: 90px; }
  .hero { padding: 22% 7%; }
  .hero-text { font-size: 16px; }
  .hero-actions { flex-wrap: wrap; }
}


/* ---------------- TENAY GALLERY SLIDESHOW ---------------- */

.back-link {
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 45px;
  display: inline-block;
  transition: 0.3s ease;
}

.back-link:hover {
  color: var(--gold);
}

.gallery-section {
  background: #050505;
  padding: 110px 7%;
  border-top: 1px solid var(--border);
}

.gallery-heading {
  margin-bottom: 45px;
}

.gallery-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 400;
  color: var(--cream);
}

.slideshow {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  gap: 20px;
}

.slide-frame {
  height: 78vh;
  min-height: 620px;
  background: #0b0a08;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: zoom-in;
}

.slide-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.slide-btn {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold);
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s ease;
}

.slide-btn:hover {
  border-color: var(--gold);
  background: rgba(200, 162, 74, 0.08);
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.thumbs img {
  height: 110px;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.45;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.3s ease;
}

.thumbs img:hover,
.thumbs img.active {
  opacity: 1;
  border-color: var(--gold);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  place-items: center;
  z-index: 9999;
  padding: 40px;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 28px;
  right: 36px;
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 48px;
  cursor: pointer;
}

@media(max-width:900px) {
  .gallery-section {
    padding: 70px 6%;
  }

  .slideshow {
    grid-template-columns: 1fr;
  }

  .slide-frame {
    height: 70vh;
    min-height: 460px;
  }

  .slide-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    background: rgba(5,5,5,0.65);
  }

  .prev { left: 10px; }
  .next { right: 10px; }

  .thumbs {
    grid-template-columns: repeat(5, 1fr);
  }

  .thumbs img {
    height: 82px;
  }
}


/* ---------------- FINAL EDITORIAL TENAY PAGE ---------------- */

.editorial-cover {
  position: relative;
  min-height: calc(100vh - 118px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 7%;
  border-bottom: 1px solid var(--border);
  background: #050505;
}

.editorial-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  filter: brightness(0.58);
}

.editorial-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.25), rgba(0,0,0,0.82));
}

.editorial-cover-text {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.editorial-cover-text h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(70px, 11vw, 160px);
  line-height: 0.82;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -3px;
}

.editorial-cover-text > p:not(.lux-kicker) {
  color: var(--gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 30px;
}

.editorial-cv {
  padding-top: 105px;
}

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.slide-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  opacity: 0.5;
}

.slide-dots button.active {
  background: var(--gold);
  opacity: 1;
}

.slide-frame img {
  transition: opacity 0.25s ease;
}

@media(max-width:900px) {
  .editorial-cover {
    min-height: 78vh;
    padding: 9%;
  }

  .editorial-cover-text h1 {
    font-size: clamp(56px, 18vw, 95px);
  }
}


/* ---------------- DILAN PROFILE ADJUSTMENTS ---------------- */

.dilan-cover img {
  object-position: center 18%;
}

@media(max-width:900px) {
  .dilan-cover img {
    object-position: center center;
  }
}


/* ---------------- ALL ACTOR CONTENT PAGES ---------------- */

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

.all-talent-grid .actor-card {
  height: 520px;
}

.actor-cover img {
  object-position: center 12%;
}

.actor-cover .editorial-cover-text h1 {
  max-width: 1100px;
}

.lux-block:first-child h2 {
  color: var(--gold);
}

@media(max-width:1200px) {
  .all-talent-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .all-talent-grid .actor-card {
    height: 430px;
  }

  .actor-cover img {
    object-position: center center;
  }
}

@media(max-width:600px) {
  .all-talent-grid {
    grid-template-columns: 1fr;
  }
}


/* ---------------- FINAL HERO SLIDING ACTORS + ORDER ---------------- */

.hero-actor-slider {
  position: relative;
  overflow: hidden;
  background: #050505;
}

.hero-moving-bg {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 22px;
  width: max-content;
  animation: bhActorSlide 70s linear infinite;
  opacity: 0.55;
  filter: grayscale(100%) brightness(0.78);
}

.hero-moving-bg img {
  height: 100%;
  min-width: 28vw;
  width: 28vw;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 45%, rgba(200,162,74,0.10), transparent 35%),
    linear-gradient(90deg, rgba(0,0,0,0.86), rgba(0,0,0,0.52), rgba(0,0,0,0.88));
  z-index: 1;
}

.hero-actor-slider .hero-content {
  position: relative;
  z-index: 2;
}

@keyframes bhActorSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.actor-cover-sibel-ulutas img {
  object-fit: contain;
  background: #050505;
  filter: brightness(0.72);
}

.actor-cover-sibel-ulutas::after {
  background: linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.35), rgba(0,0,0,0.88));
}

@media(max-width:900px) {
  .hero-moving-bg img {
    min-width: 70vw;
    width: 70vw;
  }
}


/* ---------------- SAFE PREMIUM EFFECTS ---------------- */

.main-nav a,
.language button,
.btn,
.logo,
.actor-card,
.lux-skills span,
.slide-btn,
.thumbs img {
  transition: all 0.35s ease;
}

.main-nav a:hover {
  color: var(--gold);
  letter-spacing: 6px;
}

.language button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.logo:hover {
  transform: scale(1.03);
}

.btn:hover {
  background: var(--gold);
  color: #050505;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(200, 162, 74, 0.18);
}

.hero-content {
  animation: softFadeUp 1s ease both;
}

@keyframes softFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.actor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
}

.actor-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.78);
}

.actor-card:hover .actor-info {
  transform: translateY(-4px);
}

.actor-info {
  transition: transform 0.35s ease;
}

.lux-block {
  transition: border-color 0.35s ease;
}

.lux-block:hover {
  border-color: rgba(200, 162, 74, 0.48);
}

.lux-skills span:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.slide-btn:hover {
  background: var(--gold);
  color: #050505;
  border-color: var(--gold);
}

.thumbs img:hover {
  transform: translateY(-4px);
  opacity: 1;
  border-color: var(--gold);
}

/* Ana sayfa arka plan görselleri biraz daha net */
.hero-moving-bg {
  opacity: 0.58;
  filter: grayscale(65%) brightness(0.82) contrast(1.08);
}

.hero-overlay {
  background:
    radial-gradient(circle at 20% 45%, rgba(200,162,74,0.10), transparent 35%),
    linear-gradient(90deg, rgba(0,0,0,0.80), rgba(0,0,0,0.45), rgba(0,0,0,0.82));
}


/* ---------------- UNCROPPED PROFILE HERO IMAGES ---------------- */

.actor-cover {
  background: #050505;
}

.actor-cover > img {
  object-fit: contain !important;
  object-position: center center !important;
  background: #050505;
}

.actor-cover::after {
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.52) 42%,
      rgba(0,0,0,0.35) 68%,
      rgba(0,0,0,0.72) 100%
    ) !important;
}

@media (max-width: 900px) {
  .actor-cover {
    min-height: 78vh;
  }

  .actor-cover > img {
    object-fit: contain !important;
    object-position: center center !important;
  }
}


/* ---------------- LOGO + HOMEPAGE BUTTON UPDATE ---------------- */

.logo {
  object-fit: contain;
  background: transparent;
}

.hero-content .btn {
  margin-top: 38px;
}


/* =========================================================
   MANUAL FINAL EDIT — 10 JULY
   ========================================================= */

.home-roster-link {
  margin-top: 72px !important;
  display: inline-block;
}

/* ABOUT */
.about-page { min-height: 100vh; background: #050505; }
.about-hero { padding: 170px 8% 90px; border-bottom: 1px solid var(--border); }
.about-hero h1 {
  max-width: 980px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(64px, 9vw, 136px);
  line-height: .88;
  font-weight: 400;
  color: var(--cream);
}
.about-copy { max-width: 1080px; padding: 95px 8% 130px; }
.about-copy p { color: var(--text); font-size: clamp(17px, 1.45vw, 21px); line-height: 1.95; margin-bottom: 30px; }
.about-copy .signature { color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 34px; font-style: italic; margin: 48px 0; }
.about-copy .about-closing { color: var(--cream); font-family: "Cormorant Garamond", serif; font-size: clamp(30px, 4vw, 54px); line-height: 1.2; }

/* CONTACT */
.contact-page { min-height: calc(100vh - 118px); display: grid; grid-template-columns: 1.1fr .9fr; }
.contact-intro { padding: 150px 8%; border-right: 1px solid var(--border); }
.contact-intro h1 { font-family: "Cormorant Garamond", serif; font-size: clamp(58px, 7.5vw, 112px); font-weight: 400; line-height: .9; color: var(--cream); }
.contact-details { padding: 150px 8%; display: flex; flex-direction: column; justify-content: center; gap: 0; }
.contact-details a { display: block; padding: 34px 0; border-bottom: 1px solid var(--border); }
.contact-details span { display: block; color: var(--gold); letter-spacing: 5px; text-transform: uppercase; font-size: 11px; margin-bottom: 12px; }
.contact-details strong { color: var(--cream); font-weight: 400; font-size: clamp(18px, 2vw, 27px); overflow-wrap: anywhere; }
.contact-details a:hover strong { color: var(--gold); }

/* PROFILE HERO — full portrait visible, cinematic blurred background */
.actor-cover {
  min-height: calc(100vh - 118px) !important;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 6.5% 7%;
  background: #050505;
}
.actor-cover::before {
  content: "";
  position: absolute;
  inset: -5%;
  z-index: -3;
  background-image: var(--cover-image);
  background-position: center;
  background-size: cover;
  filter: blur(24px) brightness(.35);
  transform: scale(1.12);
}
.actor-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.22) 55%, rgba(0,0,0,.55) 100%) !important;
}
.actor-cover > img {
  position: absolute !important;
  inset: 0 !important;
  z-index: -2 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
  filter: brightness(.9) !important;
}
.actor-cover .editorial-cover-text { width: 100%; max-width: none; position: relative; z-index: 2; }
.actor-cover .editorial-cover-text h1 {
  width: 100%;
  max-width: 1450px !important;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(68px, 10.5vw, 178px) !important;
  line-height: .78 !important;
  letter-spacing: -4px;
  font-weight: 400;
  color: var(--cream);
  text-wrap: balance;
  text-shadow: 0 4px 35px rgba(0,0,0,.65);
}
.actor-cover .editorial-cover-text > p:not(.lux-kicker) { margin-top: 30px; color: var(--gold); letter-spacing: 7px; }

@media (max-width: 900px) {
  .contact-page { grid-template-columns: 1fr; }
  .contact-intro { border-right: 0; border-bottom: 1px solid var(--border); padding: 110px 7% 70px; }
  .contact-details { padding: 70px 7% 100px; }
  .about-hero { padding: 120px 7% 65px; }
  .about-copy { padding: 70px 7% 100px; }
  .actor-cover { min-height: 78vh !important; padding: 8%; }
  .actor-cover .editorial-cover-text h1 { font-size: clamp(52px, 16vw, 92px) !important; letter-spacing: -2px; }
}


/* =========================================================
   PROFILE HERO: PHOTO LEFT / NAME RIGHT — NO OVERLAP
   ========================================================= */

.actor-cover {
  min-height: calc(100vh - 118px) !important;
  display: grid !important;
  grid-template-columns: minmax(340px, 44%) minmax(0, 56%) !important;
  align-items: stretch !important;
  padding: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  background: #050505 !important;
  isolation: isolate;
}

.actor-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--cover-image);
  background-size: cover;
  background-position: center;
  filter: blur(30px) brightness(.18);
  transform: scale(1.12);
  opacity: .7;
}

.actor-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.10) 0%,
    rgba(0,0,0,.28) 44%,
    rgba(0,0,0,.90) 57%,
    rgba(0,0,0,.98) 100%
  ) !important;
}

.actor-cover > img {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  grid-column: 1 !important;
  width: 100% !important;
  height: 100% !important;
  max-height: calc(100vh - 118px) !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 28px 22px 28px 4vw !important;
  background: transparent !important;
  filter: brightness(.96) !important;
  align-self: center !important;
}

.actor-cover .editorial-cover-text {
  grid-column: 2 !important;
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: none !important;
  padding: clamp(56px, 7vw, 115px) clamp(44px, 6vw, 110px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.actor-cover .back-link {
  margin-bottom: clamp(42px, 6vh, 82px) !important;
}

.actor-cover .lux-kicker {
  margin-bottom: 24px !important;
}

.actor-cover .editorial-cover-text h1 {
  width: 100% !important;
  max-width: 760px !important;
  margin: 0 !important;
  font-size: clamp(58px, 7.2vw, 132px) !important;
  line-height: .82 !important;
  letter-spacing: -3px !important;
  text-wrap: balance;
  overflow-wrap: anywhere;
  text-shadow: none !important;
}

.actor-cover .editorial-cover-text > p:not(.lux-kicker) {
  margin-top: 36px !important;
}

/* Language controls */
.language button.active {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: rgba(200, 162, 74, .08) !important;
}

.language button {
  cursor: pointer;
}

@media (max-width: 900px) {
  .actor-cover {
    min-height: auto !important;
    grid-template-columns: 1fr !important;
  }

  .actor-cover::after {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.05) 0%,
      rgba(0,0,0,.18) 48%,
      rgba(0,0,0,.96) 70%,
      rgba(0,0,0,1) 100%
    ) !important;
  }

  .actor-cover > img {
    grid-column: 1 !important;
    height: 64vh !important;
    max-height: 720px !important;
    padding: 20px 20px 0 !important;
  }

  .actor-cover .editorial-cover-text {
    grid-column: 1 !important;
    padding: 48px 7% 76px !important;
  }

  .actor-cover .back-link {
    margin-bottom: 34px !important;
  }

  .actor-cover .editorial-cover-text h1 {
    max-width: 100% !important;
    font-size: clamp(52px, 16vw, 92px) !important;
    letter-spacing: -2px !important;
  }
}
.actor-social {
  display: flex;
  justify-content: center;
  padding: 40px 0 70px;
}

.actor-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.actor-social a:hover {
  transform: scale(1.12);
  opacity: 0.75;
}

.actor-social img {
  width: 30px;
  height: 30px;
  display: block;
}