:root {
  color-scheme: dark;
  --white: #fff;
  --muted: #616161;
  --blue: #0000ff;
}

@font-face {
  font-display: swap;
  font-family: "Sophie Helvetica";
  font-style: normal;
  font-weight: 700;
  src: url("assets/helvetica-neue-bold.woff2") format("woff2");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #000;
  color: var(--white);
  font-family: "Sophie Helvetica", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: underline;
  transition: color 120ms ease;
}

a:hover,
button:hover {
  color: var(--blue);
}

button,
input,
select {
  color: inherit;
  font: inherit;
  text-transform: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.header {
  min-height: 370px;
  padding: 40px 50px 0;
  position: relative;
  transition: min-height 320ms ease;
}

.header.menu-open {
  min-height: 575px;
}

.logo {
  display: block;
  line-height: 0;
  text-decoration: none;
  width: min(48.5vw, 615px);
}

.logo img {
  display: block;
  height: auto;
  width: 100%;
}

.store-tools {
  font-size: 18px;
  position: absolute;
  right: 30px;
  text-align: right;
  top: 27px;
}

.utility-links,
.basket {
  margin: 0;
}

.basket {
  align-items: baseline;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.basket select {
  background: #fff;
  border: 0;
  color: #000;
  font-size: 16px;
  padding: 1px 3px;
}

.audio-toggle {
  font-size: 17px;
  margin-top: 20px;
}

.shop-navigation {
  font-size: 34px;
  left: 50px;
  position: absolute;
  top: 262px;
}

.menu-toggle,
.dates-link {
  display: block;
  font-size: inherit;
  text-decoration: underline;
}

.shop-links {
  font-size: 17px;
  list-style: none;
  margin: 10px 0 12px;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 320ms ease;
}

.shop-links.is-open {
  max-height: 270px;
}

.shop-links li {
  margin: 5px 0;
}

.gallery {
  overflow: hidden;
  padding-bottom: 82px;
  position: relative;
}

.gallery-track {
  display: flex;
  transform: translateX(0);
  transition: transform 560ms ease;
}

.gallery-cell {
  display: block;
  flex: 0 0 40%;
  line-height: 0;
  text-decoration: none;
}

.gallery-cell img {
  display: block;
  height: auto;
  width: 100%;
}

.gallery-dots {
  bottom: 28px;
  display: flex;
  gap: 17px;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
}

.dot {
  background: var(--muted);
  border-radius: 50%;
  height: 20px;
  transition: background 120ms ease;
  width: 20px;
}

.dot.is-selected {
  background: #fff;
}

.dot:hover {
  background: var(--blue);
}

.mailing-list {
  padding: 0 50px 80px;
}

.mailing-list form {
  align-items: center;
  display: flex;
  gap: 10px;
  max-width: 510px;
}

.mailing-list input {
  background: transparent;
  border: 0;
  border-bottom: 2px solid #fff;
  border-radius: 0;
  font-size: 16px;
  min-width: 290px;
  outline: none;
  padding: 0 0 8px;
}

.mailing-list input::placeholder {
  color: #fff;
  opacity: 1;
}

.mailing-list button {
  border: 2px solid #fff;
  border-radius: 28px;
  font-size: 16px;
  padding: 7px 14px 6px;
  white-space: nowrap;
}

.mailing-list button:hover {
  border-color: var(--blue);
}

@media (max-width: 760px) {
  .header {
    min-height: 375px;
    padding: 22px 20px 0;
  }

  .header.menu-open {
    min-height: 560px;
  }

  .logo {
    width: min(85vw, 500px);
  }

  .store-tools {
    font-size: 14px;
    left: 20px;
    right: auto;
    text-align: left;
    top: 160px;
  }

  .basket {
    justify-content: flex-start;
  }

  .shop-navigation {
    font-size: 27px;
    left: 20px;
    top: 255px;
  }

  .gallery-cell {
    flex-basis: 100%;
  }

  .gallery-dots {
    bottom: 25px;
    gap: 12px;
  }

  .dot {
    height: 14px;
    width: 14px;
  }

  .mailing-list {
    padding: 0 20px 45px;
  }

  .mailing-list form {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .mailing-list input {
    min-width: min(100%, 320px);
    width: 100%;
  }
}
