/* CSS Reset */
*,*::after,*::before{box-sizing:border-box}*{margin:0}body{line-height:1.4;-webkit-font-smoothing:antialiased}a{color:inherit;text-decoration:none;}canvas,img,picture,svg,video{display:block;max-width:100%;max-inline-size:100%;block-size:auto;}button,input,select,textarea{font:inherit}h1,h2,h3,h4,h5,h6,p{overflow-wrap:break-word}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-VariableFont_wght.ttf') format('truetype supports variations'),
  url('../fonts/Outfit-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-optical-sizing: auto;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Theater';
    src: url('../fonts/Theater-Bold.woff2') format('woff2'),
    url('../fonts/Theater-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: 'Berolina';
  src: url('../fonts/Berolina.woff2') format('woff2'),
    url('../fonts/Berolina.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Teutonic';
  src: url('../fonts/Teutonic.woff2') format('woff2'),
    url('../fonts/Teutonic.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Knorke';
  src: url('../fonts/Knorke.woff2') format('woff2'),
    url('../fonts/Knorke.woff') format('woff');
  font-weight: 700;
  font-style: bold;
  font-display: swap;
}

/* Variables */
:root {
  --text: #ffffff;
  --page: #000000;
  --acct: #ff0000;
  --actd: #397575;
  --acts: color-mix(in srgb, var(--actd) 50%, var(--page));
  --actl: color-mix(in srgb, var(--text) 67%, transparent);
  --guic: #808080;
  --sans: 'Outfit', sans-serif;
  --titl: 'Theater', sans-serif;
  --seri: 'Berolina', serif;
  --serc: 'Teutonic', serif;
  --ser2: 'Knorke', serif;
  --swiper-theme-color: #397575;
  --swiper-pagination-color: #397575;
  --swiper-pagination-bullet-inactive-color: #ffffff;
}

/* Styles */
html { padding: 0; }
body {
  padding: 0;
  background-color: var(--page);
  color: var(--text);
  font-family: var(--sans);
  font-weight: normal;
  accent-color: var(--acct);
}

a {
  color: var(--actd);
  line-break: loose;
}

p {
  color: var(--text);
  margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ser2);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  width: 100%;
}

.wrapper {
  max-width: 64rem;
  height: 100%;
  margin: 0 auto;
  display: inherit;
  position: relative;
  justify-content: inherit;
  align-items: inherit;
  align-content: inherit;
  flex-direction: inherit;
  flex-wrap: inherit;
  text-align: inherit;
  padding: 0;
}

.nobr {
  white-space: nowrap;
}

.center {
  text-align: center;
}

.float-left {
  float: left;
}

header {
  background-image: url('../images/head-bg-1.webp'), linear-gradient(90deg, var(--acts) 0%, var(--actd)35%, var(--actd) 65%, var(--acts) 100%);
  background-position: bottom -1.25rem center, center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000000;
  background-blend-mode: overlay, normal;
  height: 13.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  .fx {
    width: 100%;
    height: 100%;
    background-color: #052d2a80;
  }
}

.header-title {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  figure {
    width: auto;
    max-width: none;
    padding-top: 1.25rem;
  }
}

.header-logo {
  display: block;
  height: auto;
  width: 14rem;
}

.main {
  padding-bottom: 1rem;
}

/* Menu */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 110px 20px 15px 50px;
  background-color: rgba(0,0,0,.97);
  z-index: 5;
  transform: translateX(-100%);
  transition: all .2s ease-in-out;
}
.no-menu .menu {
  display: none;
}
.menu-icon {
  display: block;
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 10;
  width: 40px;
  height: 40px;
}
.no-menu .menu-icon {
  display: none;
}
.menu-btn:checked ~ .menu-icon {
  position: fixed;
}
.menu-icon-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffffc0;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  transform: translate(-12px, -1px);
  transition: all .2s ease-in-out;
}
.menu-icon-bar.top {
  transform-origin: left bottom;
  transform: translate(-12px, -9px) rotate(0deg);
}
.menu-icon-bar.bot {
  transform-origin: left top;
  transform: translate(-12px, 7px) rotate(0deg);
}
.menu-btn {
  display: none;
}
.menu-btn:checked ~ .menu-icon .menu-icon-bar.top {
  transform: translate(-10px, -10px) rotate(45deg);
}
.menu-btn:checked ~ .menu-icon .menu-icon-bar.mid {
  opacity: 0;
}
.menu-btn:checked ~ .menu-icon .menu-icon-bar.bot {
  transform: translate(-10px, 8px) rotate(-45deg);
}
.menu-btn:checked ~ .menu {
  transform: translateX(0);
}
.menu_item {
  display: block;
  color: white;
  text-transform: uppercase;
  padding: 0 0 20px;
  font-size: 14px;
  font-weight: 700;
  &.active {
    color: var(--actd);
    pointer-events: none;
    &::before {
      content: '★\2002';
    }
  }
  &.inactive {
    opacity: .5;
    pointer-events: none;
  }
  &.sub {
    margin-left: .25rem;
    &::before {
      opacity: .5;
      content: '☆\2002';
    }
    &.active {
      &::before {
        content: '★\2002';
      }
    }
  }
}

/* Main */

.austral {
  padding: 0 0 1rem;
}

.austral-title {
  height: 6.25rem;
  background-color: #000000;
  background-image: linear-gradient(180deg, #604000), url('../images/marquee.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay, normal;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--titl);
  font-size: 3rem;
  line-height: 1;
  color: var(--page);
  text-transform: uppercase;
  padding-top: .75rem;
  text-shadow: 0 0 .375rem #ffffff;
  margin-bottom: 1.5rem;
}

.austral-credit {
  font-size: 1.5rem;
  padding: 0 1.25rem;
  margin-bottom: 1.75rem;
}

.austral-intro {
  padding: 0 1.25rem;
}

.roster {
  width: calc(100% - 1.25rem);
  height: 38.25rem;
  padding: 1rem 0 5.5rem;
  &.interior {
    height: 26.25rem;
    padding: 1rem 0 2rem;
    .roster-star {
      width: 14.0625rem;
    }
    .star-name {
      font-size: 2rem;
    }
    .star-type {
      font-size: 10px;
    }
  }
}

.roster-title {
  font-size: 2rem;
  margin-bottom: .25rem;
  color: var(--actl);
}

.home {
  .roster-title {
    margin-bottom: 1rem;
  }
}

.roster-list {
  padding: 0;
}

.roster-star {
  width: 18.75rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #808080;
  background-blend-mode: multiply, overlay, normal;
  &.pola {
    --guic: #BFA626;
    --guid: color-mix(in srgb, var(--guic) 10%, var(--page));
    background-color: var(--guic);
    background-image: linear-gradient(180deg, var(--guic), var(--guid)), url('../images/stars/pola.webp'), url('../images/paper1.webp');
  }
  &.greta {
    --guic: #A9A797;
    --guid: color-mix(in srgb, var(--guic) 10%, var(--page));
    background-color: var(--guic);
    background-image: linear-gradient(180deg, var(--guic), var(--guid)), url('../images/stars/greta.webp'), url('../images/paper2.webp');
  }
  &.lillian {
    --guic: #D0837C;
    --guid: color-mix(in srgb, var(--guic) 10%, var(--page));
    background-color: var(--guic);
    background-image: linear-gradient(180deg, var(--guic), var(--guid)), url('../images/stars/lillian.webp'), url('../images/paper3.webp');
  }
  &.thelma {
    --guic: #A79063; /* D1B47B */
    --guid: color-mix(in srgb, var(--guic) 10%, var(--page));
    background-color: var(--guic);
    background-image: linear-gradient(180deg, var(--guic), var(--guid)), url('../images/stars/thelma.webp'), url('../images/paper4.webp');
  }
  &.joan {
    --guic: #865C9F;
    --guid: color-mix(in srgb, var(--guic) 10%, var(--page));
    background-color: var(--guic);
    background-image: linear-gradient(180deg, var(--guic), var(--guid)), url('../images/stars/joan.webp'), url('../images/paper2.webp');
  }
  &.simone {
    --guic: #008C9D;
    --guid: color-mix(in srgb, var(--guic) 10%, var(--page));
    background-color: var(--guic);
    background-image: linear-gradient(180deg, var(--guic), var(--guid)), url('../images/stars/simone.webp'), url('../images/paper2.webp');
  }
  &.brando {
    --guic: #CFCBCB;
    --guid: color-mix(in srgb, var(--guic) 10%, var(--page));
    background-color: var(--guic);
    background-image: linear-gradient(180deg, var(--guic), var(--guid)), url('../images/stars/brando.webp'), url('../images/paper1.webp');
  }
  &.selected {
    display: none;
    --guic: #202020;
    .star-link {
      pointer-events: none;
      backdrop-filter: grayscale(100%) blur(4px);
      filter: grayscale(100%) opacity(10%);
    }
  }
}

.star-link {
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 1.25rem;
  position: relative;
}

.star-name {
  display: flex;
  flex-direction: column;
  font-size: 2.75rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  color: #f0f0f0f0;
  width: 15rem;
  position: absolute;
  right: 1.75rem;
  top: 1.25rem;
  text-align: right;
  font-family: var(--serc);
}

.star-image {
  height: 100%;
}

.model {
  padding: 0 0 1rem;
  background-image: url('../images/curtains.webp');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-color: color-mix(in srgb, var(--acct) 25%, #000000);
  background-blend-mode: multiply;
  margin-bottom: 2rem;
}

.model-content {
  display: flex;
  gap: 1.25rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.model-description {
  font-size: 18px;
}

.model-item.roster-star {
  flex: 0 0 auto;
  width: 18.75rem;
  height: 31.75rem;
  box-shadow: 0 0 4rem color-mix(in srgb, var(--acct) 50%, transparent);
}

.model-info {
  padding: 0 1.5rem;
}

.button-cta {
  display: inline-block;
  background-color: var(--actd);
  border-radius: .375rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  padding: .375rem 1rem;
  margin: 1rem 0;
  box-shadow: 0 2px 0 var(--acts);
}

.model-price {
  width: 10rem;
  margin: 2rem auto 1rem;
  border: 1px solid color-mix(in srgb, var(--text) 50%, transparent);
  font-family: var(--ser2);
  font-size: 1.25rem;
  text-align: center;
  padding: .5rem .5rem .25rem;
  background-color: #00000040;
  span {
    font-family: var(--seri);
  }
}

.model-note {
  font-size: 1rem;
  font-style: italic;
  color: color-mix(in srgb, var(--text) 67%, transparent);
}

.specs-title {
  font-family: var(--ser2);
  font-size: 1.75rem;
  color: var(--actl);
  letter-spacing: 1px;
}

.specs-subtitle {
  font-family: var(--ser2);
  font-size: 1.25rem;
  color: var(--actl);
  letter-spacing: 1px;;
}

.specs-wrapper {
  width: 100%;
  margin: 1rem auto;
  border: .1875rem solid color-mix(in srgb, var(--text) 50%, transparent);
  background-color: #00000040;
  backdrop-filter: blur(.5rem);
}

.model-specs {
  list-style-type: none;
  padding: .75rem 1rem;
  margin: .25rem;
  font-family: var(--seri);
  font-size: 1.25rem;
  letter-spacing: 1px;
  border: 1px solid color-mix(in srgb, var(--text) 50%, transparent);
}

.model-spec {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .25rem;
}

.pola, .lillian {
  .model-spec {
    &:nth-child(3) { .spec-value { max-width: 53%; } }
    &:nth-child(6) { .spec-value { max-width: 67%; } }
    &:nth-child(7) { .spec-value { max-width: 50%; } }
    &:nth-child(8) { .spec-value { max-width: 54%; } }
    &:nth-child(9) { .spec-value { max-width: 56%; } }
  }
}

.greta {
  .model-spec {
    &:nth-child(3) { .spec-value { max-width: 65%; } }
    &:nth-child(6) { .spec-value { max-width: 67%; } }
    &:nth-child(7) { .spec-value { max-width: 50%; } }
    &:nth-child(8) { .spec-value { max-width: 54%; } }
    &:nth-child(9) { .spec-value { max-width: 56%; } }
  }
}

.thelma {
  .model-spec {
    &:nth-child(6) { .spec-value { max-width: 50%; } }
    &:nth-child(7) { .spec-value { max-width: 54%; } }
    &:nth-child(8) { .spec-value { max-width: 56%; } }
  }
}

.joan {
  .model-spec {
    &:nth-child(2) { .spec-value { max-width: 65%; } }
    &:nth-child(7) { .spec-value { max-width: 67%; } }
    &:nth-child(8) { .spec-value { max-width: 70%; } }
  }
}

.simone {
  .model-spec {
    &:nth-child(3) { .spec-value { max-width: 53%; } }
    &:nth-child(6) { .spec-value { max-width: 67%; } }
    &:nth-child(7) { .spec-value { max-width: 70%; } }
  }
}

.brando {
  .model-spec {
    &:nth-child(5) { .spec-value { max-width: 50%; } }
    &:nth-child(6) { .spec-value { max-width: 54%; } }
    &:nth-child(7) { .spec-value { max-width: 72%; } }
  }
}

.spec-name, .spec-value {
  flex: 0 1 auto;
}

.spec-value {
  max-width: 60%;
  text-align: justify;
}

.spec-separator {
  flex: 10 0 auto;
  margin-top: 1.0625rem;
  border-bottom: .125rem dotted color-mix(in srgb, var(--text) 50%, transparent);
}

.gallery {
  margin: 2rem 0;
  display: none;
}

.gallery-title {
  color: var(--acct);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.gallery-container {
  margin: 0 1rem;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: .5rem;
}

.gallery-item {
  width: calc((100% / 2) - .5rem);
  max-width: 11.875rem;
}

.socials {
  padding: 1.5rem 0 2rem;
  background-color: #101010;
}

.socials-title {
  font-size: 1.75rem;
  color: var(--actl);
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.social-list {
  margin: 0;
  padding: 0 1.25rem;
  list-style-type: none;
  display: flex;
  justify-content: center;
  font-size: .75rem;
  text-transform: uppercase;
  gap: 2.5rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .25rem;
  &::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    background-size: 1.875rem;
    background-position: center;
    background-repeat: no-repeat;
  }
  &.facebook {
    &::before {
      background-image: url('../images/facebook-icon.svg');
    }
  }
  &.instagram {
    &::before {
      background-image: url('../images/instagram-icon.svg');
    }
  }
  &.youtube {
    &::before {
      background-image: url('../images/youtube-icon.svg');
    }
  }
}

.member {
  background-color: var(--acts);
  padding: 2rem 0;
}

.member-title {
  font-size: 1.75rem;
  color: var(--actl);
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.member-list {
  margin: 0;
  padding: 0 1.25rem;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-direction: column;
}

.member-link {
  height: 4.5rem;
}

.member-logo {
  height: 100%;
  mix-blend-mode: luminosity;
}

footer {
  background-color: #fff;
  color: #000;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}

.foot-copy {
  margin: 0;
  color: inherit;
}

.error {
  margin: 1rem;
  color: #ff0000;
  background-color: #ffc0c0;
  border-radius: .5rem;
  padding: 1rem;
}

.success {
  margin: 1rem;
  color: #00c000;
  background-color: #c0ffc0;
  border-radius: .5rem;
  padding: 1rem;
}

.form-intro {
  padding: 1.5rem 1rem 1rem;
}

.form-title {
  font-size: 1.75rem;
  color: var(--actl);
  margin-bottom: 1rem;
}

.form {
  padding: 0 1rem 1.5rem;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  &.center {
    justify-content: center;
  }
  input {
    border: 1px solid transparent;
    border-radius: .375rem;
    padding: .125rem .5rem;
    &:user-invalid {
      border-color: #ff0000;
      background-color: #ffe0e0;
      color: #800000;
    }
    &:user-valid {
      border-color: #00c000;
      background-color: #e0ffe0;
      color: #008000;
    }
  }
}

label {
  sup {
    color: var(--acct);
  }
}

.form-button {
  border: none;
  border-radius: .375rem;
  background-color: var(--actd);
  color: var(--text);
  padding: .375rem;
  box-shadow: 0 .25rem var(--acts);
  min-width: 15.625rem;
  &:hover {
    background-color: #339999;
  }
  &:disabled {
    opacity: .5;
    filter: grayscale(100%);
    pointer-events: none;
  }
}

.mail-image {
  width: 100%;
  aspect-ratio: 1024 / 751;
  max-width: 28.125rem;
  display: block;
  margin: 0 auto 1rem;
  background-image: url('../images/correos.webp');
  background-color: var(--actd);
  background-size: contain;
  background-blend-mode: multiply;
}

.comeandsee {
  margin-top: 2rem;
  hr {
    border: none;
    height: 1px;
    background-image: linear-gradient(90deg, color-mix(in srgb, var(--actd) 10%, var(--page)) 0%, color-mix(in srgb, var(--actd) 50%, var(--page)) 33%, color-mix(in srgb, var(--actd) 50%, var(--page)) 67%, color-mix(in srgb, var(--actd) 10%, var(--page)) 100%);
  }
  .wrapper {
    padding: 0 1rem;
  }
}

.comeandsee-title {
  margin: 2rem 0 1rem;
  font-size: 1.75rem;
  color: var(--actl);
}

.story {
  padding: 2rem 1rem 0;
}

.story-motto {
  font-size: 1.25rem;
  font-style: italic;
  text-align: center;
}

.story-title {
  font-size: 1.75rem;
  color: var(--actl);
  margin-bottom: 1rem;
}

.workshop-title, .visit-title {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: var(--actl);
  margin-bottom: 1rem;
}

.workshop-logo {
  width: 11.25rem;
  margin-right: 1rem;
}

.workshop-image {
  width: 100%;
  max-width: 640px;
  display: block;
  margin: 0 auto 1rem;
}

.map {
  padding: 0 0 2rem;
}

.map-extras {
  padding: 0 1rem;
}

.address-title {
  font-size: 1.25rem;
  color: var(--actl);
  margin: 1rem 0 .25rem;
}

.map-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  p {
    margin: 0;
  }
}

@media only screen and (min-width: 64rem) {
  header {
    background-position: bottom -6.875rem center, center;
    height: 15.625rem;
  }
  .header-logo {
    width: 18.75rem;
  }
  .menu-btn {
    pointer-events: none;
  }
  .menu-icon {
    display: none;
    pointer-events: none;
  }
  .menu {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    padding: .5rem 0;
    background-color: color-mix(in srgb, var(--actd) 25%, var(--page));
    background-image: linear-gradient(90deg, color-mix(in srgb, var(--actd) 5%, var(--page)) 0%, color-mix(in srgb, var(--actd) 25%, var(--page)) 33%, color-mix(in srgb, var(--actd) 25%, var(--page)) 67%, color-mix(in srgb, var(--actd) 5%, var(--page)) 100%);
    transition: none;
    transform: none;
    z-index: 1;
  }
  .menu_item {
    display: inline-block;
    padding: 0 .625rem;
    &.mobile {
      display: none;
    }
  }
  .menu_item:hover {
    color: var(--accl);
    text-shadow: 0 2px 0 #00000040;
  }
  .menu_item.active {
    color: var(--text);
    opacity: .25;
  }
  .menu_item.active::before {
    content: none;
  }
  .austral {
    padding: 0 0 1rem 0;
  }
  .austral-title {
    height: 7.5rem;
    background-size: contain;
    font-size: 3.25rem;
    margin-bottom: 2rem;
  }
  .austral-intro {
    font-size: 1.125rem;
    padding: 0;
    line-height: 1.5;
  }
  .model {
    padding: 0 0 1.5rem;
  }
  .model-content {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .model-info {
    padding: 0 1rem;
  }
  .spec-value {
    max-width: none;
  }
  .pola, .greta, .lillian, .thelma, .joan, .simone, .brando {
    .model-spec {
      &:nth-child(2) { .spec-value { max-width: none; } }
      &:nth-child(3) { .spec-value { max-width: none; } }
      &:nth-child(5) { .spec-value { max-width: none; } }
      &:nth-child(6) { .spec-value { max-width: none; } }
      &:nth-child(7) { .spec-value { max-width: none; } }
      &:nth-child(8) { .spec-value { max-width: none; } }
      &:nth-child(9) { .spec-value { max-width: none; } }
    }
  }
  .specs-wrapper {
    width: 90%;
  }
  .gallery-item {
    width: calc((100% / 5) - .5rem);
  }
  .member-list {
    flex-direction: row;
    justify-content: space-evenly;
    gap: 0;
  }
  .form-container {
    gap: 1.25rem;
    width: 40rem;
    margin: 0 auto;
  }
  .form-block {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: .5rem;
    label {
      width: 13.75rem;
      text-align: right;
    }
  }
  .comeandsee {
    .wrapper {
      padding: 0;
    }
  }
  .map-extras {
    padding: 0;
  }
  .map-links {
    flex-direction: row;
    gap: .5rem;
    p {
      &::after {
        content: '|';
        padding-left: .5rem;
        color: var(--acts);
      }
      &:last-of-type {
        &::after {
          content: none;
        }
      }
    }
  }
}