:root {
  --ink: #141414;
  --muted: #5f666d;
  --line: #d9ded8;
  --surface: #ffffff;
  --paper: #f6f7f2;
  --coral: #ff2635;
  --teal: #137a72;
  --blue: #315fb7;
  --yellow: #f0bd35;
  --green: #77a64a;
  --shadow: 0 18px 55px rgba(20, 20, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px clamp(20px, 4vw, 64px);
  color: var(--surface);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(20, 20, 20, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--coral);
  border-radius: 50%;
  color: var(--coral);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}

.main-nav a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-account-link {
  display: none;
}

.cabinet-menu {
  display: grid;
  width: 44px;
  height: 44px;
  align-content: center;
  gap: 6px;
  justify-items: center;
  color: inherit;
  text-decoration: none;
}

.cabinet-menu span {
  display: block;
  width: 30px;
  height: 2px;
  background: currentColor;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #151515;
  color: var(--surface);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-pk-management.png");
  background-position: center;
  background-size: cover;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 44%, rgba(255, 38, 53, 0.16), rgba(0, 0, 0, 0) 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.74) 37%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 34%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 860px) minmax(220px, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px clamp(24px, 4vw, 64px);
  padding: 132px clamp(20px, 4vw, 64px) 58px;
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(64px, 7.8vw, 128px);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  color: var(--coral);
}

.hero-lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2.1vw, 25px);
}

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

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(90deg, var(--coral), #d60f1c);
  color: var(--surface);
  box-shadow: 0 18px 42px rgba(255, 38, 53, 0.32);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(0, 0, 0, 0.28);
  color: var(--surface);
  backdrop-filter: blur(12px);
}

.hero-proof svg {
  fill: var(--coral);
}

.hero-proof {
  display: grid;
  width: min(100%, 650px);
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.68);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.hero-proof div {
  display: grid;
  min-height: 82px;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 12px;
  padding: 16px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

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

.hero-proof svg {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
}

.hero-proof span,
.hero-proof strong {
  display: block;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.hero-proof strong {
  color: var(--surface);
  font-size: 18px;
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  padding-top: 42px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.intro-item {
  min-height: 235px;
  padding: 28px;
  background: var(--surface);
}

.item-index {
  display: inline-block;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.intro-item h2 {
  margin: 58px 0 12px;
  font-size: 24px;
  line-height: 1.1;
}

.intro-item p,
.section-heading p,
.casting-body p,
.news-card p,
.contact-copy p {
  color: var(--muted);
}

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

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: 0;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 32px;
}

.split-heading > p {
  margin: 0 0 8px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 18px;
}

.news-card,
.actor-card,
.casting-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.news-card {
  min-height: 300px;
  padding: 28px;
}

.feature-card {
  background: var(--ink);
  color: var(--surface);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.72);
}

.news-card time {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.feature-card time {
  color: var(--yellow);
}

.news-card h3 {
  margin: 50px 0 12px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.news-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

.actors-section {
  background: var(--surface);
}

.actor-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.search-box {
  display: grid;
  min-width: min(420px, 100%);
  gap: 8px;
}

.search-box span,
.contact-form span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.search-box input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
  color: var(--ink);
  outline: none;
}

.search-box input {
  height: 50px;
  padding: 0 16px;
}

.contact-form input {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  padding: 12px 14px;
  resize: vertical;
}

.search-box input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(19, 122, 114, 0.12);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-stack {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.category-filter .filter-button {
  min-width: 116px;
}

.filter-button {
  min-width: 64px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.filter-button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface);
}

.actor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.actor-card {
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.actor-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.actor-card.is-hidden {
  display: none;
}

.portrait {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  overflow: hidden;
}

.portrait::before,
.portrait::after {
  position: absolute;
  content: "";
}

.portrait::before {
  width: 168px;
  height: 168px;
  border: 18px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
}

.portrait::after {
  right: 22px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border: 12px solid rgba(20, 20, 20, 0.12);
  border-radius: 50%;
}

.portrait span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 54px;
  font-weight: 800;
}

.portrait-coral {
  background: linear-gradient(135deg, var(--coral), #f49d70);
}

.portrait-teal {
  background: linear-gradient(135deg, var(--teal), #77c6a7);
}

.portrait-blue {
  background: linear-gradient(135deg, var(--blue), #83a8df);
}

.portrait-yellow {
  background: linear-gradient(135deg, var(--yellow), #87ad55);
}

.actor-info {
  padding: 18px;
}

.actor-info h3 {
  margin: 0;
  font-size: 23px;
}

.actor-info p {
  margin: 4px 0 16px;
  color: var(--muted);
}

.actor-info span {
  display: inline-flex;
  padding: 7px 9px;
  border-radius: 8px;
  background: #eef4ea;
  color: #365d2a;
  font-size: 12px;
  font-weight: 800;
}

.casting-list {
  display: grid;
  gap: 14px;
}

.casting-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
}

.casting-date {
  display: grid;
  min-height: 116px;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
}

.casting-date span,
.casting-date strong {
  display: block;
}

.casting-date span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.casting-date strong {
  margin-top: -18px;
  font-size: 29px;
}

.casting-body h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
}

.casting-body p {
  max-width: 760px;
  margin: 12px 0 16px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contacts-section {
  background: var(--ink);
  color: var(--surface);
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.contact-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-list span {
  color: rgba(255, 255, 255, 0.58);
}

.contact-list a {
  font-weight: 800;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.contact-account-link {
  margin-top: 28px;
}

.site-footer {
  background: #0c0c0c;
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.footer-inner a {
  color: var(--surface);
  font-weight: 800;
  text-decoration: none;
}

.account-page {
  background: #f3f5ef;
}

.account-header {
  position: sticky;
}

.account-main {
  padding: 42px 0 86px;
}

.account-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

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

.account-top h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 0.95;
}

.account-back {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.account-grid > * {
  min-width: 0;
}

.account-auth,
.account-workspace,
.cabinet-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.account-auth {
  display: grid;
  gap: 18px;
  padding: 18px;
}

.account-auth.is-compact {
  position: sticky;
  top: 88px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 6px;
  padding: 4px;
  border-radius: 8px;
  background: #edf0e8;
}

.auth-tab {
  min-width: 0;
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
}

.auth-tab.active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(20, 20, 20, 0.07);
}

.auth-form {
  display: none;
  gap: 14px;
}

.auth-form.active {
  display: grid;
}

.auth-form label,
.profile-form label {
  display: grid;
  gap: 8px;
}

.auth-form span,
.profile-form span,
.profile-status span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.auth-form input,
.profile-form input,
.profile-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
  color: var(--ink);
  outline: none;
}

.auth-form input,
.profile-form input {
  height: 48px;
  padding: 0 14px;
}

.profile-form textarea {
  padding: 12px 14px;
  resize: vertical;
}

.auth-form input:focus,
.profile-form input:focus,
.profile-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(19, 122, 114, 0.12);
}

.auth-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.auth-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.account-workspace {
  display: none;
  gap: 22px;
  padding: 24px;
}

.account-workspace.is-active {
  display: grid;
}

.workspace-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.workspace-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.profile-status {
  min-width: 132px;
  padding: 14px;
  border-radius: 8px;
  background: #edf4ec;
}

.profile-status strong,
.profile-status span {
  display: block;
}

.profile-status strong {
  margin-top: 4px;
  color: #365d2a;
}

.progress-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.progress-line {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf0e8;
}

.progress-line span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
  transition: width 180ms ease;
}

.progress-wrap strong {
  font-size: 14px;
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.file-field {
  padding: 14px;
  border: 1px dashed #b8c2b5;
  border-radius: 8px;
  background: #fbfcf8;
}

.file-field input {
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.file-field em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
}

.account-light-button {
  border: 1px solid var(--line);
  background: #edf0e8;
  color: var(--ink);
}

.cabinet-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
  gap: 16px;
}

.cabinet-panel {
  padding: 18px;
}

.cabinet-panel h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.mini-casting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.mini-casting strong,
.mini-casting span {
  display: block;
}

.mini-casting span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.mini-casting button {
  min-width: 132px;
  min-height: 40px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--surface);
  cursor: pointer;
  font-weight: 800;
}

.mini-casting button:disabled {
  border-color: #d6dfd3;
  background: #edf4ec;
  color: #365d2a;
  cursor: default;
}

.public-preview {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.public-preview .portrait {
  min-height: 118px;
  border-radius: 8px;
}

.public-preview .portrait::before {
  width: 78px;
  height: 78px;
  border-width: 9px;
}

.public-preview .portrait::after {
  display: none;
}

.public-preview .portrait span {
  width: 54px;
  height: 54px;
  font-size: 28px;
}

.public-preview strong,
.public-preview span {
  display: block;
}

.public-preview span {
  margin-top: 4px;
  color: var(--muted);
}

.public-preview p {
  margin: 12px 0 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-inner,
  .contacts-layout,
  .split-heading,
  .account-grid,
  .cabinet-panels {
    grid-template-columns: 1fr;
  }

  .hero::before {
    background-position: 62% center;
  }

  .hero-inner {
    grid-template-rows: auto auto auto;
    align-content: end;
  }

  .hero-proof {
    width: min(100%, 740px);
    grid-column: auto;
    grid-row: auto;
  }

  .intro-grid,
  .news-grid,
  .actor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: inline-grid;
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 40;
    place-items: center;
    flex-shrink: 0;
    margin-left: auto;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(0, 0, 0, 0.26);
    color: var(--surface);
  }

  .cabinet-menu {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .mobile-account-link {
    display: block;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 100vh;
  }

  .hero::before {
    background-position: 62% center;
  }

  .hero-inner {
    min-height: 100vh;
    padding: 118px 18px 34px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 68%, rgba(0, 0, 0, 0.28) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.08) 44%);
  }

  .hero-actions {
    display: grid;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 13vw, 54px);
  }

  .hero .eyebrow {
    max-width: 300px;
    font-size: 11px;
    line-height: 1.3;
  }

  .hero-lede {
    max-width: 320px;
    font-size: 18px;
  }

  .hero-proof,
  .intro-grid,
  .news-grid,
  .actor-grid,
  .casting-card {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .intro-item {
    min-height: auto;
  }

  .intro-item h2,
  .news-card h3 {
    margin-top: 34px;
  }

  .actor-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-stack {
    justify-items: stretch;
  }

  .filter-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-filter {
    grid-template-columns: 1fr;
  }

  .portrait {
    min-height: 220px;
  }

  .casting-card {
    gap: 16px;
  }

  .casting-date {
    min-height: 90px;
  }

  .contact-list li {
    display: grid;
    gap: 5px;
  }

  .account-main {
    padding-top: 28px;
  }

  .account-shell {
    width: calc(100vw - 32px);
  }

  .account-top,
  .workspace-head,
  .mini-casting {
    align-items: stretch;
    flex-direction: column;
  }

  .account-top {
    display: grid;
  }

  .account-back,
  .form-actions .button {
    width: 100%;
  }

  .account-workspace {
    padding: 18px;
  }

  .account-auth {
    padding: 16px;
  }

  .auth-tab {
    font-size: 14px;
  }

  .form-row,
  .public-preview {
    grid-template-columns: 1fr;
  }

  .mini-casting button {
    width: 100%;
  }
}

@media (max-width: 740px) {
  .site-header .nav-toggle {
    position: fixed !important;
    top: 14px !important;
    right: 16px !important;
    z-index: 999 !important;
    display: inline-grid !important;
    border: 0;
    background: transparent;
    color: #ffffff;
  }

  .site-header .nav-toggle span {
    width: 30px;
    background: #ffffff;
  }
}
