@charset "UTF-8";
@import 'reset.css';
@font-face {
  font-family: "VTC Du Bois Narrow";
  src: url("VTCDuBois-BoldNarrow.woff2") format("woff2"), url("VTCDuBois-BoldNarrow.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  letter-spacing: 0.06ex;
}
@font-face {
  font-family: "VTC Underscore Book";
  src: url("VTCUnderscore-Book.woff2") format("woff2"), url("VTCUnderscore-Book.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
:root {
  --highlight: #ff6;
  --menu-color: #fff;
  --font-size: 1.1rem;
  --heading-size: 125%;
}

:-webkit-autofill {
  -webkit-text-fill-color: white;
  -webkit-box-shadow: 0 0 0px 1000px black inset;
}

:-moz-autofill {
  -moz-text-fill-color: white;
  -moz-box-shadow: 0 0 0px 1000px black inset;
}

::-moz-autofill {
  -moz-text-fill-color: white;
  -moz-box-shadow: 0 0 0px 1000px black inset;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.618;
}

:-moz-placeholder {
  color: inherit;
  opacity: 0.618;
}

::-moz-placeholder {
  color: inherit;
  opacity: 0.618;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 0.618;
}

::selection {
  background: var(--highlight);
  color: black;
  text-shadow: none;
}

::-moz-selection {
  background: var(--highlight);
  color: black;
  text-shadow: none;
}

html {
  width: 100vw;
  min-height: 100vh;
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  min-height: 100vh;
  scroll-behavior: smooth;
  font-family: "VTC Underscore Book", sans-serif;
  background-color: white;
  color: black;
  font-size: var(--font-size);
  line-height: 1.45;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

button {
  cursor: pointer;
}

a {
  cursor: pointer;
}

input[type=submit] {
  font-size: var(--heading-size);
  font-family: "VTC Du Bois Narrow", sans-serif;
  transform: scaleY(1.25);
  text-transform: uppercase;
  display: inline-flex;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: letter-spacing 0.3s ease;
  text-align: center;
}
input[type=submit]:hover, input[type=submit]:focus {
  letter-spacing: 10px;
}

label {
  font-family: "VTC Du Bois Narrow", sans-serif;
  transform: scaleY(1.25);
  text-transform: uppercase;
  width: 100%;
  min-width: 12em;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  cursor: pointer;
}

h1 {
  display: none;
}

h2 {
  font-size: var(--heading-size);
  font-family: "VTC Du Bois Narrow", sans-serif;
  transform: scaleY(1.25);
  text-transform: uppercase;
  margin-bottom: 1vh;
}

h3 {
  font-size: var(--heading-size);
  line-height: 1.3;
}
h3 + p {
  margin-top: 2vh;
}

h4 {
  font-size: var(--heading-size);
  font-family: "VTC Du Bois Narrow", sans-serif;
  transform: scaleY(1.25);
  text-transform: uppercase;
  text-transform: uppercase;
  margin-bottom: 1vh;
}

header {
  padding: 4vh;
  background-color: var(--highlight);
}

.logo {
  transform-origin: 0 0;
}
.logo svg {
  aspect-ratio: 951.71/619.15;
  fill: currentColor;
}

[data-layout=portrait] header {
  background-color: var(--highlight);
  position: relative;
  z-index: 4;
}
[data-layout=portrait] header .logo svg {
  width: 100%;
}
[data-layout=portrait] menu {
  position: fixed;
  top: 0;
  right: 0;
  padding: 4vh;
  z-index: 3;
}
[data-layout=portrait] footer {
  z-index: 2;
}
[data-layout=portrait] .slideshow {
  position: relative;
  width: 100vw;
  z-index: 2;
}
[data-layout=portrait] .slideshow figure {
  aspect-ratio: 16/9;
}
[data-layout=portrait] .overview {
  position: relative;
  width: 100%;
  max-width: 42em;
  margin: 0 auto;
  z-index: 3;
  padding-bottom: 16vh;
}

[data-layout=landscape] header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 50vw;
  min-height: 50vh !important;
  z-index: 4;
}
[data-layout=landscape] header .logo {
  position: relative;
  width: 100%;
}
[data-layout=landscape] header .logo svg {
  height: 100%;
  width: 100%;
}
[data-layout=landscape] main,
[data-layout=landscape] footer {
  z-index: 3;
}
[data-layout=landscape] menu {
  position: fixed;
  top: 0;
  padding: 4vh 2vh;
  right: 0;
  z-index: 5;
}
[data-layout=landscape] menu li:first-child a, [data-layout=landscape] menu li:first-child button {
  padding-top: 0;
}
[data-layout=landscape] .slideshow {
  position: fixed;
  top: 0;
  left: 50vw;
  width: 50vw;
  height: 100vh;
  z-index: 1;
}
[data-layout=landscape] .overview {
  position: relative;
  margin-top: 100vw;
  left: 25%;
  width: 50%;
  z-index: 2;
}

menu ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}
menu li {
  position: relative;
  z-index: 1;
}
menu li:hover, menu li:focus-within {
  z-index: 2;
}
menu a, menu button {
  font-size: var(--heading-size);
  font-family: "VTC Du Bois Narrow", sans-serif;
  transform: scaleY(1.25);
  text-transform: uppercase;
  display: inline-flex;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1vh 2vh;
  line-height: 1;
  background-color: var(--menu-color);
  transform-origin: 0 0;
}
menu a:focus, menu a:hover, menu button:focus, menu button:hover {
  background-color: black;
  color: white;
}

.faq dt {
  font-size: var(--heading-size);
  position: relative;
  margin-top: 3vh;
  border-top: 2px solid black;
  padding-top: 1vh;
}
.faq dt button {
  font-family: "VTC Du Bois Narrow", sans-serif;
  transform: scaleY(1.25);
  text-transform: uppercase;
  width: 100%;
  text-align: left;
  padding-right: 2em;
  cursor: ns-resize;
}
.faq dt button:focus, .faq dt button:hover {
  text-decoration: underline;
}
.faq dt::after {
  content: "＋";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 1vh;
  pointer-events: none;
}
.faq dt:has(button[aria-expanded=true])::after {
  content: "－";
}
.faq dt:has(button[aria-expanded=true]) + dd {
  display: block;
}
.faq dd {
  padding: 1vh 0 2vh;
  display: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}
form .checkbox {
  margin-top: 1vh;
}

footer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  padding: 4vh;
  height: 100vh;
  background-color: white;
  z-index: 3;
  overflow: hidden;
}
footer .logo {
  position: absolute;
  top: 4vh;
  left: 4vh;
  padding: 0 2vh 2vh 0;
  background-color: white;
}
footer .logo svg {
  position: relative;
  height: 16vh;
}
footer .soon {
  position: absolute;
  top: 4vh;
  right: 4vh;
  padding: 0 0 1vh 2vh;
  background-color: white;
  z-index: 3;
  font-size: var(--heading-size);
  font-family: "VTC Du Bois Narrow", sans-serif;
  transform: scaleY(1.25);
  text-transform: uppercase;
  display: inline-flex;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
}
footer ul {
  display: flex;
  gap: 4vh;
  list-style: none;
}
footer ul li a, footer ul li button {
  display: block;
  font-size: inherit;
  font-family: "VTC Du Bois Narrow", sans-serif;
  transform: scaleY(1.25);
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  letter-spacing: 0.1em;
}
footer ul li a:focus, footer ul li a:hover, footer ul li button:focus, footer ul li button:hover {
  text-decoration: underline;
}
footer figure {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
footer figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.5) hue-rotate(5deg);
}
footer .text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4vh;
  gap: 1vh;
  background-color: black;
  color: white;
}
footer small a:focus, footer small a:hover {
  color: var(--highlight);
}
footer small span {
  display: block;
  margin-top: 0.5em;
}

main {
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  padding: 4vh;
  background-color: white;
  z-index: 1;
}

.slideshow {
  padding: 4vh;
  z-index: 4;
}
.slideshow figure {
  width: 100%;
  height: 100%;
}
.slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slideshow img:not(:first-child) {
  display: none;
}

.dots {
  position: absolute;
  bottom: 6vh;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 16vh);
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  gap: 5px;
}
.dots button {
  position: relative;
  height: 7px;
  aspect-ratio: 2.1/1;
  cursor: pointer;
  border: 1px solid var(--highlight);
}
.dots button:hover, .dots button:focus {
  box-shadow: 0 0 0 1px var(--highlight);
}
.dots button::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
}
.dots button.active {
  background-color: var(--highlight);
}

.next,
.prev {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: pointer;
  text-indent: -100vw;
}
.next::after,
.prev::after {
  content: "";
  position: absolute;
  bottom: 4vh;
  width: 24px;
  height: 24px;
  background-color: var(--highlight);
  visibility: hidden;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  transform: translateY(-50%);
}
.next:hover::after, .next:focus::after,
.prev:hover::after,
.prev:focus::after {
  visibility: visible;
}

.next {
  right: 0;
}
.next::after {
  right: 6vh;
}

.prev {
  left: 0;
}
.prev::after {
  left: 6vh;
  transform: translateY(-50%) rotate(180deg);
}

[data-touch-events=true] .prev::after,
[data-touch-events=true] .next::after {
  visibility: visible;
}

.overview {
  position: relative;
  background-color: var(--highlight);
}

p + p {
  margin-top: 2vh;
}

.screenreader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.info-text {
  position: relative;
}

.text-wrap,
.faq {
  margin-top: 16vh;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  max-height: calc(100vh - 40px - 2em);
  width: calc(100vw - 40px);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  z-index: 2000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}
.modal .iframe-wrap {
  width: 100vw;
  height: 100dvh;
}
.modal h2 {
  margin-right: 100px;
}
.modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.modal:not(.active) iframe {
  display: none;
}

.modal.active {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.modal-wrap {
  padding: 8vh;
  background-color: white;
}

input {
  font-family: "VTC Underscore Book", sans-serif;
  font-size: 100%;
  padding: 0.5vh 1vh;
  border: 2px solid black;
}

.mc-field-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5vh;
}

input[type=email] {
  width: 100%;
  min-width: 12em;
  flex: 1 1 auto;
}

input[type=text] {
  width: 100%;
  min-width: 12em;
  flex: 1 1 auto;
}

.checkbox label {
  line-height: 1;
}

input[type=checkbox] {
  width: 1.4em;
  height: 1.4em;
  border: 2px solid black;
  -webkit-appearance: none;
  margin-right: 1vh;
}
input[type=checkbox]:checked {
  background-color: black;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  font-size: 200%;
  padding: 3vh 4vh 2vh;
}
.modal-close:focus, .modal-close:hover {
  color: red;
}

small {
  font-size: 75%;
  color: #999;
}

@media (min-width: 769px) {
  body {
    --font-size: calc(1.1rem + 0.125vw);
    --heading-size: 150%;
  }
  .dots {
    bottom: 6vh;
    gap: 2vh;
  }
  .modal {
    width: initial;
  }
  .modal-wrap {
    padding: 4vh;
    background-color: white;
  }
  .mc-field-group {
    flex-direction: row;
    align-items: center;
  }
  footer .text {
    padding: 2vh 8vh;
  }
  footer small {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  footer small span + span::before {
    content: " | ";
    margin: 0 1em;
  }
}
