:root {
  --red: #a9231f;
  --red-dark: #961b17;
  --black: #070707;
  --text: #1e1f22;
  --muted: #747474;
  --line: #dedede;
  --soft: #f5f5f4;
  --page-pad: clamp(22px, 4.45vw, 74px);
  --heading: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --body: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.62;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--page-pad) 18px;
}

.brand,
.footer-brand {
  font-family: var(--heading);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}

.brand {
  font-size: clamp(36px, 3.2vw, 48px);
  text-shadow:
    1px 0 rgba(0, 0, 0, .22),
    -1px 0 rgba(0, 0, 0, .12),
    0 1px rgba(0, 0, 0, .16);
}

.brand-logo {
  display: block;
  width: clamp(280px, 24vw, 320px);
  height: auto;
}

.brand span {
  color: #f2eee3;
  -webkit-text-stroke: .4px rgba(0, 0, 0, .28);
  text-shadow:
    1px 0 rgba(0, 0, 0, .42),
    0 1px rgba(0, 0, 0, .25),
    2px 1px rgba(0, 0, 0, .12),
    -1px -1px rgba(0, 0, 0, .12);
}

.brand strong,
.footer-brand strong {
  color: var(--red);
  font-weight: 900;
}

.brand strong {
  color: #9d1512;
  -webkit-text-stroke: .25px rgba(0, 0, 0, .18);
  text-shadow:
    1px 0 rgba(0, 0, 0, .28),
    0 1px rgba(0, 0, 0, .18),
    -1px 1px rgba(0, 0, 0, .14);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.main-nav a {
  position: relative;
  padding: 20px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  height: 2px;
  background: transparent;
}

.main-nav a.active {
  color: var(--red);
}

.main-nav a.active::after {
  background: var(--red);
}

.nav-toggle {
  display: none;
}

main {
  padding: 0 var(--page-pad);
}

.hero {
  display: grid;
  grid-template-columns: minmax(520px, 1.55fr) minmax(320px, .95fr);
  gap: clamp(58px, 5.6vw, 90px);
  align-items: center;
}

.hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 982 / 657;
  object-fit: cover;
  filter: grayscale(1);
}

body:has(.main-nav a.active[href="rollen.html"]) .hero-image {
  padding: 0;
  border: 0;
  background: transparent;
}

body:has(.main-nav a.active[href="rollen.html"]) .hero-image img {
  border: 0;
}

.hero-copy {
  padding-top: 18px;
}

.subpage-hero {
  padding-bottom: 36px;
  border-bottom: 1px solid #eeeeee;
}

.eyebrow,
.section-heading h2,
.details h2,
.apply h2,
.side-info h3,
.notice h3,
.detail-card h3 {
  font-family: var(--heading);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.05;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 42px;
  color: var(--red);
  font-size: 20px;
}

.eyebrow::after,
.details h2::after,
.side-info h3::after {
  content: "";
  display: block;
  width: 76px;
  height: 2px;
  margin-top: 10px;
  background: var(--red);
}

h1 {
  margin: 0 0 28px;
  font-family: var(--heading);
  font-size: clamp(66px, 5.5vw, 92px);
  font-weight: 900;
  line-height: .97;
  text-transform: uppercase;
  color: var(--black);
}

.lead {
  max-width: 520px;
  margin: 0;
  font-size: clamp(20px, 1.45vw, 26px);
  line-height: 1.58;
}

.dialect-note {
  margin: 36px 0 0;
  font-weight: 900;
  text-transform: uppercase;
}

.details {
  padding-top: 50px;
}

.details h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(35px, 2.55vw, 48px);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 32px;
}

.detail-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 0 38px;
  min-height: 226px;
  border-left: 1px solid var(--line);
}

.detail-card:first-child {
  border-left: 0;
  padding-left: 0;
}

.detail-card svg,
.additional-box svg {
  width: 56px;
  height: 56px;
  stroke: var(--red);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-card h3 {
  margin: 7px 0 27px;
  font-size: 21px;
}

.detail-card p {
  margin: 0;
  font-size: 19px;
  line-height: 1.65;
}

.section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 34px;
  margin-bottom: 32px;
}

.section-heading span {
  height: 1px;
  background: var(--line);
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  margin-top: 15px;
  background: var(--red);
}

.prep {
  padding-top: 34px;
}

.prep-content {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(350px, 520px);
  gap: 52px;
  align-items: start;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin: 0 0 19px;
  font-size: 20px;
  line-height: 1.45;
}

.steps span {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #bf4541;
  border-radius: 50%;
  color: var(--red);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.notice {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 42px 48px;
  background: var(--soft);
}

.notice-icon {
  width: 58px;
  height: 58px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.notice h3,
.side-info h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.notice p {
  margin: 0;
  font-size: 18px;
  line-height: 1.62;
}

.additional {
  padding-top: 36px;
}

.additional-box {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  align-items: center;
  padding: 35px 46px;
  background: var(--soft);
}

.additional-box p {
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
}

.page-callout {
  padding-top: 38px;
}

.roles-section {
  padding-top: 40px;
}

.roles-section.secondary {
  padding-top: 30px;
}

.roles-grid {
  display: grid;
  gap: 0;
}

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

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

.roles-grid article {
  min-height: 180px;
  padding: 0 36px;
  border-left: 1px solid var(--line);
}

.roles-grid article:first-child {
  border-left: 0;
  padding-left: 0;
}

.roles-grid h3,
.about-text h2,
.values-panel h3 {
  margin: 0 0 16px;
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--black);
}

.roles-grid h3 span {
  font-family: var(--body);
  font-size: 18px;
  font-weight: 500;
  text-transform: none;
}

.roles-grid p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(460px, .97fr) minmax(390px, 1fr);
  gap: clamp(56px, 8vw, 120px);
  padding-top: 62px;
}

.about-text h2 {
  margin-bottom: 36px;
  font-size: clamp(34px, 2.45vw, 44px);
}

.about-text h2::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  margin-top: 16px;
  background: var(--red);
}

.about-text p {
  margin: 0 0 34px;
  font-size: 17px;
  line-height: 1.75;
}

.values-panel {
  padding: 50px 58px 42px;
  background: var(--soft);
}

.values-panel article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  margin-bottom: 38px;
}

.values-panel article:last-child {
  margin-bottom: 0;
}

.values-panel svg {
  width: 50px;
  height: 50px;
  stroke: var(--black);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.values-panel h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.values-panel p {
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
}

.apply {
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(360px, 565px);
  gap: 58px;
  padding-top: 42px;
}

.section-heading.compact {
  margin-bottom: 20px;
}

.casting-form {
  display: grid;
  gap: 10px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
select,
textarea,
.upload {
  width: 100%;
  min-height: 54px;
  border: 1px solid #d7d9dc;
  background: #fff;
  color: var(--text);
  font: 600 16px/1.2 var(--body);
  padding: 0 16px;
  border-radius: 0;
  outline: none;
}

.age-field {
  display: block;
  position: relative;
}

.age-field input {
  padding-bottom: 18px;
}

.age-field span {
  position: absolute;
  left: 16px;
  bottom: 5px;
  color: #7d838a;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

input:focus,
select:focus,
textarea:focus,
.upload:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

input::placeholder,
textarea::placeholder {
  color: #7d838a;
  opacity: 1;
}

select {
  appearance: auto;
  color: #6d737a;
}

.upload {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 8px 0 16px;
  color: #7d838a;
}

.upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 19px;
  border: 1px solid #d7d9dc;
  color: var(--black);
  font-family: var(--heading);
  font-size: 17px;
  text-transform: uppercase;
  white-space: nowrap;
}

textarea {
  min-height: 92px;
  padding-top: 15px;
  resize: vertical;
}

.casting-form button {
  min-height: 52px;
  border: 0;
  background: var(--red);
  color: #fff;
  font: 900 18px/1 var(--body);
  text-transform: uppercase;
  cursor: pointer;
}

.casting-form button:hover {
  background: var(--red-dark);
}

.side-info {
  border-left: 1px solid var(--line);
  padding-left: 50px;
}

.side-info section {
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.side-info section + section {
  padding-top: 42px;
}

.side-info section:last-child {
  border-bottom: 0;
}

.side-info p {
  max-width: 510px;
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.62;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
  padding: 22px var(--page-pad) 18px;
  border-top: 1px solid #efefef;
}

.footer-brand {
  font-size: 31px;
}

.footer-brand .brand-logo {
  width: clamp(280px, 24vw, 320px);
  height: auto;
}

.footer-brand small {
  display: block;
  margin-top: 7px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
  color: var(--black);
}

.socials {
  display: flex;
  align-items: center;
  gap: 28px;
}

.socials a {
  width: 34px;
  height: 34px;
}

.socials svg {
  width: 34px;
  height: 34px;
  fill: var(--black);
  stroke: var(--black);
  stroke-width: 2;
}

.socials a:first-child svg {
  fill: none;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero,
  .prep-content,
  .apply,
  .about-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 0;
  }

  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 38px;
  }

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

  .roles-grid article:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .roles-grid article {
    min-height: 160px;
    margin-bottom: 32px;
  }

  .detail-card:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .side-info {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 36px 0 0;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
    line-height: 1.55;
  }

  .site-header {
    min-height: 82px;
    padding-top: 17px;
    padding-bottom: 14px;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .96);
    z-index: 10;
  }

  .brand {
    font-size: 34px;
  }

  .brand-logo,
  .footer-brand .brand-logo {
    width: clamp(170px, 54vw, 240px);
    height: auto;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    padding: 0;
  }

  .nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--black);
  }

  .main-nav {
    position: absolute;
    left: var(--page-pad);
    right: var(--page-pad);
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 13px 0;
  }

  .main-nav a::after {
    bottom: 6px;
    right: auto;
    width: 66px;
  }

  .hero {
    gap: 32px;
  }

  .subpage-hero {
    padding-bottom: 36px;
  }

  .hero-image {
    margin-left: calc(var(--page-pad) * -1);
    margin-right: calc(var(--page-pad) * -1);
    padding: 0;
    background: transparent;
    border: 0;
  }

  .hero-image img {
    aspect-ratio: 1 / .78;
    border: 0;
  }

  .eyebrow {
    margin-bottom: 26px;
    font-size: 18px;
  }

  h1 {
    font-size: clamp(56px, 18vw, 78px);
    margin-bottom: 22px;
  }

  .lead {
    font-size: 19px;
  }

  .details {
    padding-top: 45px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    margin-top: 26px;
    gap: 0;
  }

  .main-roles,
  .side-roles {
    grid-template-columns: 1fr;
  }

  .roles-section {
    padding-top: 34px;
  }

  .roles-section.secondary {
    padding-top: 18px;
  }

  .roles-grid article,
  .roles-grid article:first-child,
  .roles-grid article:nth-child(odd) {
    min-height: auto;
    padding: 22px 0;
    margin-bottom: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .roles-grid article:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .roles-grid h3 {
    margin-bottom: 8px;
    font-size: 21px;
  }

  .roles-grid h3 span,
  .roles-grid p,
  .about-text p,
  .values-panel p {
    font-size: 16px;
  }

  .about-section {
    gap: 20px;
    padding-top: 40px;
  }

  .about-text h2 {
    margin-bottom: 25px;
  }

  .about-text p {
    margin-bottom: 25px;
    line-height: 1.65;
  }

  .values-panel {
    padding: 30px 24px;
  }

  .values-panel article {
    grid-template-columns: 50px 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .values-panel svg {
    width: 40px;
    height: 40px;
  }

  .values-panel h3 {
    font-size: 19px;
  }

  .detail-card,
  .detail-card:first-child,
  .detail-card:nth-child(3) {
    min-height: auto;
    grid-template-columns: 54px 1fr;
    gap: 19px;
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .detail-card:first-child {
    border-top: 0;
  }

  .detail-card svg,
  .additional-box svg {
    width: 44px;
    height: 44px;
  }

  .detail-card h3 {
    margin: 4px 0 10px;
    font-size: 20px;
  }

  .detail-card p,
  .additional-box p,
  .steps li {
    font-size: 17px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

  .section-heading span {
    display: none;
  }

  .prep-content {
    gap: 30px;
  }

  .steps li {
    gap: 15px;
    margin-bottom: 17px;
  }

  .steps span {
    flex-basis: 27px;
    width: 27px;
    height: 27px;
    font-size: 14px;
  }

  .notice,
  .additional-box {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .notice {
    gap: 16px;
  }

  .notice-icon {
    width: 50px;
    height: 50px;
    font-size: 29px;
  }

  .additional-box {
    gap: 14px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .upload {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 12px 12px 14px;
  }

  .upload b {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 26px;
    gap: 20px;
  }

  .site-footer nav {
    justify-content: flex-start;
    gap: 28px;
  }
}

@media (max-width: 420px) {
  :root {
    --page-pad: 18px;
  }

  .details h2,
  .section-heading h2 {
    font-size: 34px;
  }

  .side-info p,
  .notice p {
    font-size: 16px;
  }
}

@media (min-width: 901px) {
  .casting-page .hero {
    grid-template-columns: minmax(520px, 1.55fr) minmax(320px, .95fr);
    gap: clamp(58px, 5.6vw, 90px);
  }

  .casting-page .detail-grid {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
  }

  .casting-page .detail-card,
  .casting-page .detail-card:nth-child(3) {
    min-height: 226px;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    padding: 0 38px;
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .casting-page .detail-card:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .casting-page .prep-content {
    grid-template-columns: minmax(520px, 1fr) minmax(350px, 520px);
    gap: 52px;
  }

  .casting-page .apply {
    grid-template-columns: minmax(560px, 1fr) minmax(360px, 565px);
    gap: 58px;
  }

  .casting-page .side-info {
    border-left: 1px solid var(--line);
    border-top: 0;
    padding: 0 0 0 50px;
  }

  .casting-page .field-row {
    grid-template-columns: 1fr 1fr;
  }

  .casting-page .upload {
    grid-template-columns: 1fr auto;
    gap: 0;
    padding: 0 8px 0 16px;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .casting-page main {
    padding: 0 42px;
  }

  .casting-page .hero {
    grid-template-columns: 1.42fr .95fr;
    gap: 46px;
  }

  .casting-page h1 {
    font-size: 68px;
  }

  .casting-page .lead {
    font-size: 20px;
  }

  .casting-page .detail-card,
  .casting-page .detail-card:nth-child(3) {
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 0 22px;
  }

  .casting-page .detail-card:first-child {
    padding-left: 0;
  }

  .casting-page .detail-card svg,
  .casting-page .additional-box svg {
    width: 46px;
    height: 46px;
  }

  .casting-page .detail-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .casting-page .detail-card p {
    font-size: 16px;
  }

  .casting-page .prep-content {
    grid-template-columns: 1fr 380px;
    gap: 42px;
  }

  .casting-page .steps li {
    font-size: 16px;
    gap: 16px;
    margin-bottom: 14px;
  }

  .casting-page .steps span {
    flex-basis: 25px;
    width: 25px;
    height: 25px;
    font-size: 13px;
  }

  .casting-page .notice {
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 31px 34px;
  }

  .casting-page .notice-icon {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }

  .casting-page .notice h3 {
    font-size: 18px;
  }

  .casting-page .notice p {
    font-size: 15px;
    line-height: 1.5;
  }

  .casting-page .additional {
    padding-top: 18px;
  }

  .casting-page .additional-box {
    grid-template-columns: 66px 1fr;
    min-height: 90px;
    padding: 22px 40px;
  }

  .casting-page .additional-box p {
    font-size: 15px;
    line-height: 1.45;
  }

  .casting-page .apply {
    grid-template-columns: 1fr 405px;
    gap: 42px;
    padding-top: 22px;
  }

  .casting-page .section-heading.compact {
    margin-bottom: 12px;
  }

  .casting-page .casting-form {
    gap: 7px;
  }

  .casting-page input,
  .casting-page select,
  .casting-page textarea,
  .casting-page .upload {
    min-height: 38px;
    font-size: 13px;
    padding: 0 12px;
  }

  .casting-page .age-field input {
    padding-bottom: 14px;
  }

  .casting-page .age-field span {
    left: 12px;
    bottom: 4px;
    font-size: 10px;
  }

  .casting-page textarea {
    min-height: 64px;
    padding-top: 10px;
  }

  .casting-page .upload {
    padding: 0 6px 0 12px;
  }

  .casting-page .upload b {
    height: 30px;
    padding: 0 14px;
    font-size: 14px;
  }

  .casting-page .casting-form button {
    min-height: 42px;
    font-size: 15px;
  }

  .casting-page .side-info {
    padding-left: 38px;
  }

  .casting-page .side-info h3 {
    font-size: 17px;
  }

  .casting-page .side-info p {
    font-size: 13px;
    line-height: 1.55;
  }
}
