:root {
  color-scheme: dark;
  --ink: #f7f4ef;
  --muted: #b9c0c7;
  --soft: #ece2d2;
  --charcoal: #111418;
  --panel: #191e24;
  --panel-2: #222932;
  --line: rgba(255, 255, 255, 0.12);
  --red: #b51f2d;
  --red-2: #e24653;
  --gold: #d7a84f;
  --blue: #5aa4c8;
  --green: #77b88a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(181, 31, 45, 0.18), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(90, 164, 200, 0.14), transparent 28%);
  z-index: -1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 20, 24, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.brand img {
  width: 178px;
  height: auto;
}

.nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a,
.site-footer a {
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  min-height: calc(100vh - 78px);
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 72px) 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(2.9rem, 7.4vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-text {
  max-width: 720px;
  color: var(--soft);
  font-size: clamp(1.08rem, 1.6vw, 1.38rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 14px 34px rgba(181, 31, 45, 0.28);
}

.button.primary:hover {
  background: var(--red-2);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 14px;
  align-items: stretch;
}

.spotlight-card,
.spotlight-grid img,
.client-card,
.service-grid article,
.booking-form {
  border: 1px solid var(--line);
  background: rgba(25, 30, 36, 0.88);
  box-shadow: var(--shadow);
}

.spotlight-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
}

.spotlight-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.spotlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-card span,
.spotlight-card strong {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 2;
}

.spotlight-card span {
  bottom: 56px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.spotlight-card strong {
  bottom: 18px;
  font-size: 1.55rem;
}

.spotlight-grid {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 14px;
}

.spotlight-grid img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  border-radius: 8px;
  object-fit: cover;
}

@media (min-width: 981px) and (max-width: 1350px) {
  .hero {
    gap: clamp(24px, 4vw, 54px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.5rem, 5vw, 4.3rem);
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.stats div {
  padding: 28px clamp(16px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  color: white;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1;
}

.stats span {
  display: block;
  max-width: 230px;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(58px, 8vw, 106px) clamp(18px, 5vw, 72px);
}

.intro-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
}

.intro-copy,
.contact-copy p {
  color: var(--soft);
  font-size: 1.08rem;
}

.section-heading {
  margin-bottom: 30px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 6vw, 86px);
  align-items: end;
}

.split-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-grid article {
  min-height: 270px;
  padding: 24px;
  border-radius: 8px;
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--blue);
  font-weight: 900;
}

.service-grid p,
.client-card p {
  color: var(--muted);
}

.cast-groups {
  border-top: 1px solid var(--line);
  background: #0d0f12;
}

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

.cast-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 3px 16px;
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cast-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 168, 79, 0.56);
  background: var(--panel-2);
}

.cast-card span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
}

.cast-card strong {
  align-self: end;
  font-size: 1.12rem;
}

.cast-card small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.talent {
  background: #f6f1e8;
  color: #171a1f;
}

.talent .eyebrow {
  color: var(--red);
}

.talent-heading {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
}

.search {
  display: grid;
  gap: 8px;
  min-width: min(360px, 100%);
  color: #4e5863;
  font-size: 0.82rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(17, 20, 24, 0.18);
  border-radius: 6px;
  background: white;
  color: #171a1f;
  font: inherit;
}

input,
select {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  padding: 12px;
  resize: vertical;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.filter {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(17, 20, 24, 0.16);
  border-radius: 999px;
  background: transparent;
  color: #303841;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.filter.active,
.filter:hover {
  background: #171a1f;
  color: white;
}

.clear-cast {
  border-color: rgba(181, 31, 45, 0.34);
  color: var(--red);
}

.client-count {
  min-height: 26px;
  color: #66717d;
  font-weight: 800;
}

.roster-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  margin-bottom: 18px;
}

.shortlist-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 22px;
  padding: 18px 20px;
  border: 1px solid rgba(181, 31, 45, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(17, 20, 24, 0.08);
}

.shortlist-bar[hidden] {
  display: none;
}

.shortlist-bar > div:first-child {
  display: grid;
  gap: 4px;
}

.shortlist-bar strong {
  color: var(--red);
}

.shortlist-bar span {
  color: #66717d;
  font-size: 0.86rem;
}

.shortlist-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.cast-booking-button {
  min-height: 40px;
  border-color: rgba(181, 31, 45, 0.25);
  background: var(--red);
  color: white;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 42px;
  border: 1px dashed rgba(17, 20, 24, 0.22);
  border-radius: 8px;
  color: #66717d;
  text-align: center;
}

.client-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-color: rgba(17, 20, 24, 0.1);
  border-radius: 8px;
  background: white;
  color: #171a1f;
  box-shadow: 0 18px 44px rgba(17, 20, 24, 0.1);
}

.portrait-wrap {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #d9dde2;
  cursor: pointer;
}

.portrait-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  background: #d9dde2;
  transition: transform 220ms ease;
}

.portrait-wrap:hover img {
  transform: scale(1.025);
}

.representation {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(17, 20, 24, 0.86);
  color: white;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.client-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(135deg, rgba(181, 31, 45, 0.9), rgba(17, 20, 24, 0.96)),
    #171a1f;
  color: white;
  font-size: 2.6rem;
  font-weight: 950;
}

.client-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.client-card h3 {
  margin: 2px 0 8px;
  font-size: 1.2rem;
}

.client-type {
  margin: 0;
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.credits {
  flex: 1;
  margin: 0;
  color: #66717d;
  font-size: 0.86rem;
  line-height: 1.55;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}

.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}

.credit-label {
  margin-bottom: 7px;
  color: #66717d;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-credits {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 20px;
  color: #444e59;
  font-size: 0.9rem;
}

.other-credits {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(17, 20, 24, 0.1);
}

.other-credits summary {
  color: #8b1a24;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.other-credits p {
  margin: 10px 0 0;
  color: #66717d;
  font-size: 0.84rem;
}

.athlete-details {
  display: grid;
  gap: 12px;
  margin: 0;
}

.athlete-details div {
  display: grid;
  gap: 2px;
}

.athlete-details dt {
  color: #66717d;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.athlete-details dd {
  margin: 0;
  color: #303841;
  font-size: 0.9rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: #f0e0dc;
  color: #8b1a24;
  font-size: 0.74rem;
  font-weight: 900;
}

.tag.exclusive {
  background: #e1f0e5;
  color: #2d6d3f;
}

.tag.non-exclusive {
  background: #e7ebef;
  color: #4e5863;
}

.profile-button {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(17, 20, 24, 0.15);
  border-radius: 6px;
  background: #171a1f;
  color: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.profile-button:hover {
  background: var(--red);
}

.shortlist-button {
  min-height: 42px;
  border: 1px solid rgba(17, 20, 24, 0.18);
  border-radius: 6px;
  background: white;
  color: #171a1f;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.shortlist-button:hover,
.shortlist-button.selected {
  border-color: rgba(181, 31, 45, 0.4);
  background: #f7e9e7;
  color: var(--red);
}

.archive {
  border-top: 1px solid var(--line);
  background: var(--panel);
}

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

.archive-card {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0f12;
  text-decoration: none;
}

.archive-card::after {
  content: "";
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.94));
}

.archive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.form-honey {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-status {
  margin: 0;
  padding: 13px 15px;
  border: 1px solid rgba(74, 145, 91, 0.38);
  border-radius: 6px;
  background: rgba(225, 240, 229, 0.12);
  color: #bce5c5;
  font-weight: 800;
}

.archive-card:hover img {
  transform: scale(1.04);
}

.archive-card span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  display: grid;
  color: var(--soft);
  font-size: 0.9rem;
}

.archive-card strong {
  color: white;
  font-size: 1.5rem;
}

.archive-years {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.archive-years span {
  margin-right: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-years a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.archive-years a:hover {
  border-color: var(--gold);
  color: white;
}

.team-section {
  background: #111418;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.team-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--soft);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.team-card:hover,
.team-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(216, 164, 61, 0.68);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  outline: none;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  background: var(--panel-2);
}

.team-card div {
  padding: 15px;
}

.team-card h3,
.team-card p {
  margin-bottom: 0;
}

.team-card h3 {
  font-size: 1rem;
}

.team-card p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.8rem;
}

.team-card .team-card-action {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.media-section {
  background: var(--soft);
  color: #171a1f;
}

.media-section .eyebrow {
  color: var(--red);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.media-grid a {
  display: grid;
  align-content: end;
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(17, 20, 24, 0.14);
  border-radius: 8px;
  background: white;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.media-grid .media-card {
  position: relative;
  isolation: isolate;
  min-height: 250px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(10, 12, 15, 0.08) 0%, rgba(10, 12, 15, 0.9) 82%),
    var(--media-image),
    #171a1f;
  background-position: center;
  background-size: cover;
  color: white;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(181, 31, 45, 0.18), transparent 48%);
}

.media-card > div {
  display: grid;
  position: relative;
  z-index: 1;
}

.media-grid .media-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(13, 15, 18, 0.68);
  color: white;
  font-size: 1.05rem;
  line-height: 1;
  text-transform: none;
  backdrop-filter: blur(6px);
}

.media-grid .media-card div > span {
  color: #f4c963;
}

.media-grid .media-card strong {
  color: white;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.media-grid .media-card small {
  color: rgba(255, 255, 255, 0.8);
}

.media-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(17, 20, 24, 0.12);
}

.media-grid span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.media-grid strong {
  margin-top: 6px;
  font-size: 1.1rem;
}

.media-grid small {
  margin-top: 5px;
  color: #66717d;
  font-size: 0.78rem;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(181, 31, 45, 0.2), transparent 42%),
    var(--panel);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 22px;
  border-radius: 8px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
}

.booking-form .wide {
  grid-column: 1 / -1;
}

.direct-contact a {
  color: white;
  font-weight: 800;
}

.talent-dialog {
  width: min(940px, calc(100% - 28px));
  max-height: min(820px, calc(100vh - 28px));
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: #f6f1e8;
  color: #171a1f;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.58);
}

.talent-dialog::backdrop {
  background: rgba(4, 6, 8, 0.82);
  backdrop-filter: blur(7px);
}

.inquiry-dialog {
  width: min(620px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: #f6f1e8;
  color: #171a1f;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.58);
}

.inquiry-dialog::backdrop {
  background: rgba(4, 6, 8, 0.86);
  backdrop-filter: blur(7px);
}

.inquiry-dialog-body {
  padding: clamp(30px, 7vw, 58px);
}

.inquiry-dialog-body > p:not(.eyebrow) {
  margin: -4px 0 24px;
  color: #66717d;
}

.inquiry-dialog .dialog-close {
  position: sticky;
}

.inquiry-form {
  display: grid;
  gap: 16px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: #4e5863;
  font-size: 0.85rem;
  font-weight: 900;
}

.inquiry-form input,
.inquiry-form textarea {
  border-color: rgba(17, 20, 24, 0.18);
  background: white;
  color: #171a1f;
}

.inquiry-form .button {
  min-height: 52px;
}

.section-status {
  margin: 0 0 24px;
  padding: 14px 16px;
  border: 1px solid rgba(74, 145, 91, 0.32);
  border-radius: 7px;
  background: #e1f0e5;
  color: #2d6d3f;
  font-weight: 850;
}

.section-status[hidden] {
  display: none;
}

.dialog-close {
  position: sticky;
  top: 14px;
  z-index: 3;
  float: right;
  width: 42px;
  height: 42px;
  margin: 14px 14px -56px 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 20, 24, 0.9);
  color: white;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  min-height: 600px;
}

.team-dialog-profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  min-height: 560px;
}

.team-dialog-photo {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
  background: #d9dde2;
}

.team-dialog-body {
  align-self: center;
  padding: clamp(30px, 5vw, 60px);
}

.team-dialog-body h2 {
  margin-bottom: 8px;
}

.team-dialog-title {
  margin: 0 0 24px;
  color: var(--red);
  font-weight: 900;
}

.team-dialog-bio {
  margin: 0;
  color: #4e5863;
  font-size: 1rem;
  line-height: 1.8;
}

.dialog-photo {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center top;
  background: #d9dde2;
}

.dialog-body {
  align-self: center;
  padding: clamp(28px, 5vw, 58px);
}

.dialog-body .client-tags {
  margin-bottom: 24px;
}

.dialog-body h2 {
  margin-bottom: 14px;
}

.dialog-body .top-credits,
.dialog-body .athlete-details {
  font-size: 1rem;
}

.dialog-body .other-credits {
  border-top-color: rgba(17, 20, 24, 0.12);
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.dialog-actions .secondary {
  border-color: rgba(17, 20, 24, 0.18);
  background: white;
}

.dialog-actions .inquiry-button,
.dialog-actions .inquiry-button span {
  color: #171a1f !important;
  -webkit-text-fill-color: #171a1f;
  opacity: 1;
}

.dialog-actions .inquiry-button {
  appearance: none;
  white-space: nowrap;
}

.dialog-actions .inquiry-button:hover {
  border-color: var(--red);
  background: #f7e9e7;
  color: var(--red) !important;
  -webkit-text-fill-color: var(--red);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #0d0f12;
}

.site-footer img {
  width: 110px;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero,
  .intro-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .stats,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cast-grid,
  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .talent-heading {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .shortlist-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .shortlist-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.6rem);
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .spotlight-card {
    min-height: 410px;
  }

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

  .spotlight-grid img {
    min-height: 96px;
  }

  .stats,
  .service-grid,
  .booking-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .cast-grid,
  .archive-grid,
  .team-grid,
  .media-grid,
  .dialog-profile,
  .team-dialog-profile {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dialog-photo,
  .team-dialog-photo {
    max-height: 430px;
    min-height: 0;
  }

  .roster-status {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }
}
