:root {
  --blue: #79b9ea;
  --blue2: #3477c6;
  --ink: #1f2633;
  --muted: #667080;
  --line: #d9e5f1;
  --paper: #fff;
  --pearl: #f7fbff;
  --shadow: 0 14px 38px rgba(38, 74, 112, .13)
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #fff 0%, #f8fbff 48%, #fff 100%);
  line-height: 1.45
}
a {
  color: inherit;
  text-decoration: none
}
img {
  max-width: 100%;
  display: block
}
.container {
  width: min(1180px, 92vw);
  margin: auto
}
.eyebrow {
  font-size: .82rem;
  letter-spacing: .28em;
  text-transform: uppercase
}
.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: .09em;
  text-align: center;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  margin: 0 0 16px
}
.section-title:before, .section-title:after {
  content: "";
  display: inline-block;
  width: 52px;
  height: 1px;
  background: var(--blue2);
  vertical-align: middle;
  margin: 0 18px
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8eef5
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px
}
.logo {
  width: 270px;
  max-width: 34vw
}
.main-nav {
  display: flex;
  gap: 28px;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  align-items: center
}
.main-nav a {
  padding: 30px 0 12px;
  border-bottom: 2px solid transparent
}
.main-nav a:hover, .main-nav a.active {
  color: #2f69b4;
  border-color: #2f69b4
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem
}
.hero {
  position: relative;
  min-height: 520px;
  background: url('../images/employment-hero.png') center/cover no-repeat;
  display: flex;
  align-items: center
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .91) 31%, rgba(255, 255, 255, .18) 55%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 92vw);
  margin: auto;
  padding: 65px 0
}
.hero-copy {
  width: min(560px, 55vw)
}
.hero-rule {
  width: 64px;
  height: 2px;
  background: var(--blue);
  margin: 18px 0 20px
}
.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(4rem, 7.3vw, 7rem);
  line-height: .9;
  margin: 0;
  color: #3f444b;
  text-shadow: 0 2px 0 #fff
}
.hero p {
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  max-width: 500px;
  margin: 30px 0
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 34px;
  border: 0;
  background: linear-gradient(#9bd1f4, #5e9fe0);
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 6px 16px rgba(51, 111, 178, .28);
  cursor: pointer
}
.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03)
}
.intro {
  padding: 48px 0 42px;
  text-align: center
}
.intro-copy {
  max-width: 760px;
  margin: 0 auto 34px
}
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0
}
.feature {
  padding: 10px 28px;
  position: relative
}
.feature + .feature {
  border-left: 1px solid #a9c8e8
}
.icon {
  font-size: 2.5rem;
  color: #397bd0;
  margin-bottom: 10px
}
.feature h3 {
  font-size: .78rem;
  text-transform: uppercase;
  margin: 0 0 8px
}
.feature p {
  font-size: .88rem;
  margin: 0;
  color: #28313e
}
.positions {
  padding: 10px 0 46px
}
.position-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(55, 87, 120, .06)
}
.position-card {
  text-align: center;
  border: 1px solid #dce5ef;
  padding: 18px 14px;
  min-height: 260px;
  background: linear-gradient(180deg, #fff, #fbfdff)
}
.position-card .icon {
  font-size: 2.25rem
}
.position-card h3 {
  font-size: .84rem;
  line-height: 1.1;
  text-transform: uppercase;
  min-height: 38px
}
.position-card p {
  font-size: .78rem;
  margin: 12px 0 0;
  color: #303846
}
.requirements {
  padding: 0 0 42px
}
.requirements-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}
.requirements-image {
  min-height: 620px;
  background: url('../images/stage-interior.png') center/cover no-repeat
}
.requirements-content {
  padding: 30px 35px
}
.requirements-columns {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 28px
}
.requirements h3 {
  font-size: .78rem;
  text-transform: uppercase;
  margin: 8px 0 12px
}
.checklist, .role-list {
  margin: 0;
  padding: 0;
  list-style: none
}
.checklist li {
  position: relative;
  padding: 0 0 10px 25px;
  font-size: .78rem
}
.checklist li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #4b8dd7;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  font-size: 10px;
  display: grid;
  place-items: center;
  color: #377dc9
}
.role-list > li {
  margin-bottom: 13px;
  font-size: .74rem
}
.role-list strong {
  display: block;
  text-transform: uppercase;
  font-size: .76rem
}
.role-list ul {
  margin: 4px 0 0;
  padding-left: 16px
}
.audition-note {
  color: #3174bc;
  font-style: italic;
  margin-top: 8px
}
.hours-card {
  margin: 18px auto 0;
  max-width: 360px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid #d8e3ef;
  padding: 17px 22px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  text-align: left
}
.hours-card .clock {
  font-size: 2rem;
  color: #337ac8
}
.hours-card h4 {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem
}
.hours-card p {
  font-size: .75rem;
  margin: 3px 0
}
.application {
  padding: 42px 0;
  background: linear-gradient(135deg, #fff, #f8fbff)
}
.application-form {
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(50, 83, 120, .05)
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px
}
.field.span-2 {
  grid-column: span 2
}
.field.span-4 {
  grid-column: 1/-1
}
.field label {
  font-size: .72rem;
  font-weight: 700
}
.req {
  color: #bf2534
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #d5dfe9;
  padding: 11px;
  background: #fff;
  font: inherit;
  font-size: .8rem;
  min-height: 42px
}
.field textarea {
  min-height: 82px;
  resize: vertical
}
.checkbox {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: .76rem
}
.checkbox input {
  width: auto;
  min-height: auto;
  margin-top: 3px
}
.submit-row {
  text-align: center;
  margin-top: 22px
}
.form-note {
  text-align: center;
  font-size: .72rem;
  margin: 13px 0 0;
  color: #4f5966
}
.status {
  display: none;
  margin: 15px auto 0;
  max-width: 700px;
  padding: 12px;
  border: 1px solid #9bc8ec;
  background: #f2f9ff;
  text-align: center;
  font-size: .82rem
}
.cta {
  padding: 32px 0;
  text-align: center;
  background: radial-gradient(circle at 50% 40%, #fff 0, #f3f8ff 65%, #eaf3fc 100%)
}
.cta h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: .12em;
  margin: 0 0 8px
}
.cta p {
  margin: 0 0 16px
}
.site-footer {
  border-top: 1px solid #dae5ef;
  background: #fff
}
.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr .9fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px 0
}
.footer-logo {}
.footer-block {
  font-size: .76rem
}
.footer-block strong {
  display: block;
  text-transform: uppercase
}
.socials {
  display: flex;
  gap: 16px;
  font-weight: 700;
  font-size: 1rem
}
.footer-bottom {
  border-top: 1px solid #edf1f5;
  padding: 10px 0;
  font-size: .68rem;
  text-align: center;
  color: #697380
}
@media(max-width:1000px) {
  .main-nav {
    gap: 14px;
    font-size: .68rem
  }
  .position-grid {
    grid-template-columns: repeat(3, 1fr)
  }
  .requirements-grid {
    grid-template-columns: 1fr
  }
  .requirements-image {
    min-height: 500px
  }
  .form-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .field.span-4 {
    grid-column: 1/-1
  }
  .footer-main {
    grid-template-columns: 1fr 1fr
  }
  .hero {
    min-height: 460px
  }
}
@media(max-width:760px) {
  .nav-wrap {
    min-height: 68px
  }
  .logo {
    width: 210px
  }
  .menu-toggle {
    display: block
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 15px 6vw;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08)
  }
  .main-nav.open {
    display: flex
  }
  .main-nav a {
    padding: 10px 0
  }
  .hero {
    min-height: 620px;
    background-position: 64% center;
    align-items: flex-end
  }
  .hero:after {
    background: linear-gradient(180deg, rgba(255, 255, 255, .05) 0, rgba(255, 255, 255, .28) 42%, rgba(255, 255, 255, .97) 72%)
  }
  .hero-content {
    padding: 360px 0 45px
  }
  .hero-copy {
    width: 100%
  }
  .hero h1 {
    font-size: 3.4rem
  }
  .hero p {
    font-size: 1.15rem;
    margin: 18px 0
  }
  .feature-row {
    grid-template-columns: 1fr
  }
  .feature + .feature {
    border-left: 0;
    border-top: 1px solid #c9dced
  }
  .position-grid {
    grid-template-columns: 1fr 1fr;
    padding: 14px
  }
  .requirements-content {
    padding: 28px 20px
  }
  .requirements-columns {
    grid-template-columns: 1fr
  }
  .form-grid {
    grid-template-columns: 1fr
  }
  .field.span-2, .field.span-4 {
    grid-column: auto
  }
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center
  }
  .footer-logo {
    margin: auto
  }
  .socials {
    justify-content: center
  }
  .section-title:before, .section-title:after {
    width: 24px;
    margin: 0 8px
  }
}
@media(max-width:480px) {
  .position-grid {
    grid-template-columns: 1fr
  }
  .position-card {
    min-height: auto
  }
  .hero h1 {
    font-size: 3rem
  }
  .section-title {
    font-size: 1.2rem
  }
  .application-form {
    padding: 16px
  }
}
/* Keep the center requirements section aligned to the same page width as every other section. */
.requirements .container {
  width: min(1180px, 92vw);
  margin-inline: auto
}
.requirements-grid {
  overflow: hidden;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-radius: 8px
}
.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding: 44px 46px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
	line-height: 20px;
}
.footer img {}
.footer h4 {
  text-transform: uppercase;
  color: #004ada;
}
.footer a {
  display: block;
  color: #24345d;
  text-decoration: none;
  margin: 9px 0
}
.footer p {
  color: #465677;
  line-height: 1.7
}
.footer-links ul {
  padding: 0px;
  display: flex;
}
.footer-links ul li {
  padding: 5px 10px;
  list-style: none;
}
.footer-links ul li i {
  font-size: 18px;
}


@media (max-width: 900px) {
  .hero, .two-col, .info-strip, .gallery-row, .model-grid, .quick-cards, .footer {
    grid-template-columns: 1fr;
  }
}


@media screen and (min-width: 320px) and (max-width: 768px) { 
    /* STYLES HERE */
	
	.hero-content {
		padding: 60px 0 45px;
	}
	
}


/* Floating container */
.social-float {
    position: fixed;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
}

/* Icon links */
.social-float a {
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    margin: 5px 0;
    text-align: center;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Hover effect */
.social-float a:hover {
    padding-right: 10px;
}

/* Individual colors */
.facebook { background: #3b5998; }
.twitter  { background: #1da1f2; }
.instagram{ background: #e1306c; }
.linkedin { background: #0077b5; }
.youtube  { background: #ff0000; }
.phone { background: #0077b5; }
.whatsapp  { background: #25d366; }
