:root {
  --myt-bg: #f7f5f0;
  --myt-text: #111111;
  --myt-soft-text: #2a2a2a;
  --myt-muted: #5a5a5a;
  --myt-line: rgba(17, 17, 17, 0.16);
  --myt-cream: rgba(245, 241, 232, 0.94);
  --myt-font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --myt-page-pad: clamp(18px, 4vw, 64px);
  --myt-header-brand-size: 18px;
  --myt-header-brand-weight: 400;
  --myt-header-brand-letterspacing: 0.11em;
  --myt-header-brand-color: rgba(245, 241, 232, 0.94);
  --myt-header-brand-color-solid: #111111;
  --myt-hero-claim-size: 17px;
  --myt-hero-claim-lineheight: 1.34;
  --myt-hero-claim-weight: 400;
  --myt-hero-claim-letterspacing: 0.05em;
  --myt-hero-claim-color: rgba(245, 241, 232, 0.94);
  --myt-hero-claim-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  --myt-hero-subline-size: 12px;
  --myt-hero-subline-lineheight: 1.3;
  --myt-hero-subline-weight: 400;
  --myt-hero-subline-letterspacing: 0.06em;
  --myt-hero-subline-color: rgba(245, 241, 232, 0.78);
  --myt-hero-subline-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  --myt-hero-cta-size: 11px;
  --myt-hero-cta-lineheight: 1.3;
  --myt-hero-cta-weight: 400;
  --myt-hero-cta-letterspacing: 0.14em;
  --myt-hero-cta-color: rgba(245, 241, 232, 0.88);
  --myt-hero-cta-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--myt-bg);
  color: var(--myt-text);
  font-family: var(--myt-font);
  text-rendering: optimizeLegibility;
}

body,
button {
  font: 400 16px/1.5 var(--myt-font);
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 76px;
  padding: 18px var(--myt-page-pad);
  color: var(--myt-cream);
  background: transparent;
  transition: background 180ms ease, color 180ms ease;
}

.site-header:hover,
.site-header:focus-within,
body.is-scrolled .site-header {
  color: var(--myt-text);
  background: var(--myt-bg);
}

.site-header__brand,
.site-header__nav a {
  text-decoration: none;
}

.site-header__brand {
  justify-self: start;
  font-family: var(--myt-font);
  font-size: var(--myt-header-brand-size);
  font-weight: var(--myt-header-brand-weight);
  letter-spacing: var(--myt-header-brand-letterspacing);
  line-height: 1;
  color: var(--myt-header-brand-color);
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header:hover .site-header__brand,
.site-header:focus-within .site-header__brand,
body.is-scrolled .site-header .site-header__brand {
  color: var(--myt-header-brand-color-solid);
}

.site-header__nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.site-header__nav a,
.text-link {
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, opacity 160ms ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible,
.site-header__nav a.is-active,
.text-link:hover,
.text-link:focus-visible {
  border-bottom-color: currentColor;
  outline: 0;
}

.language-switch {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.language-switch__button {
  min-width: 24px;
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0.7;
}

.flag {
  display: block;
  width: 20px;
  height: 14px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.12);
}

.flag--de {
  background: linear-gradient(
    to bottom,
    #000000 0 33.333%,
    #dd0000 33.333% 66.666%,
    #ffce00 66.666% 100%
  );
}

.flag--gb {
  background:
    linear-gradient(33deg, transparent 0 42%, #ffffff 42% 48%, #c8102e 48% 53%, #ffffff 53% 59%, transparent 59%),
    linear-gradient(147deg, transparent 0 42%, #ffffff 42% 48%, #c8102e 48% 53%, #ffffff 53% 59%, transparent 59%),
    linear-gradient(to right, transparent 0 38%, #ffffff 38% 45%, #c8102e 45% 55%, #ffffff 55% 62%, transparent 62%),
    linear-gradient(to bottom, transparent 0 34%, #ffffff 34% 42%, #c8102e 42% 58%, #ffffff 58% 66%, transparent 66%),
    #012169;
}

.language-switch__button.is-active {
  opacity: 1;
}

.language-switch__button:not(.is-active) {
  opacity: 0.38;
}

.language-switch__button:hover,
.language-switch__button:focus-visible {
  opacity: 1;
  outline: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.14) 12%,
    rgba(0, 0, 0, 0.18) 42%,
    rgba(0, 0, 0, 0.32) 100%
  );
}

.hero__content {
  position: absolute;
  z-index: 1;
  left: 8%;
  bottom: calc(20% - 12px);
  max-width: 420px;
  color: var(--myt-cream);
  text-align: left;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 8px;
  color: var(--myt-hero-claim-color);
  font-size: var(--myt-hero-claim-size);
  line-height: var(--myt-hero-claim-lineheight);
  font-weight: var(--myt-hero-claim-weight);
  letter-spacing: var(--myt-hero-claim-letterspacing);
  text-shadow: var(--myt-hero-claim-shadow);
}

.hero__claim {
  max-width: 32rem;
  margin-bottom: 28px;
  color: var(--myt-hero-subline-color);
  font-size: var(--myt-hero-subline-size);
  line-height: var(--myt-hero-subline-lineheight);
  font-weight: var(--myt-hero-subline-weight);
  letter-spacing: var(--myt-hero-subline-letterspacing);
  text-shadow: var(--myt-hero-subline-shadow);
}

.hero__cta {
  display: inline-block;
  margin-top: 12px;
  transform: translateY(calc((20svh - 12px) / 2 - 32px));
  color: var(--myt-hero-cta-color);
  text-decoration: none;
  font-size: var(--myt-hero-cta-size);
  line-height: var(--myt-hero-cta-lineheight);
  font-weight: var(--myt-hero-cta-weight);
  letter-spacing: var(--myt-hero-cta-letterspacing);
  text-transform: uppercase;
  text-shadow: var(--myt-hero-cta-shadow);
}

.intro {
  min-height: 100svh;
  padding: clamp(36px, 5.5vw, 72px) var(--myt-page-pad) clamp(72px, 11vw, 144px);
}

.intro__inner {
  max-width: 820px;
}

.section-kicker {
  margin-bottom: clamp(27px, 4vh, 36px);
  color: var(--myt-header-brand-color-solid);
  font-size: var(--myt-header-brand-size);
  font-weight: var(--myt-header-brand-weight);
  letter-spacing: var(--myt-header-brand-letterspacing);
  line-height: 1;
  text-transform: uppercase;
}

.intro h2 {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--myt-text);
  font-size: 15px;
  line-height: 1.38;
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: pre-line;
}

.intro h2::first-line {
  letter-spacing: 0.045em;
  word-spacing: 0.18em;
}

.brand-preview-subline {
  display: inline-block;
  max-width: 420px;
  margin-top: clamp(27px, 4vh, 36px);
  color: rgba(17, 17, 17, 0.56);
  font-size: 15px;
  line-height: 1.38;
  font-weight: 400;
  letter-spacing: 0.008em;
  text-decoration: none;
  text-underline-offset: 5px;
  white-space: pre-line;
}

.collections {
  min-height: 100svh;
  padding: calc(76px + 32px) 6px 16px;
  background: var(--myt-bg);
  display: flex;
  align-items: flex-start;
}

@media (min-width: 861px) {
  .collections {
    min-height: calc(100svh - clamp(88px, 10svh, 128px));
  }

  .collection-card__media {
    max-height: calc(100svh - 190px);
  }

  .collection-card__media:hover img,
  .collection-card__media:focus-visible img {
    transform: none;
  }

  .collection-card__media {
    cursor: default;
  }
}

.collection-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  scroll-margin-top: 76px;
}

@media (min-width: 861px) {
  .collection-grid {
    width: min(100%, calc((100svh - 190px) * 12 / 5 + 12px));
    margin-inline: auto;
  }
}

.collection-anchor {
  min-width: 0;
  scroll-margin-top: 88px;
}

.collection-card {
  display: block;
  width: 100%;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.collection-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eeeae2;
  color: inherit;
  text-decoration: none;
}

.collection-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 200ms ease, filter 360ms ease, opacity 360ms ease;
}

.collection-card--aware .collection-card__media img {
  object-position: center top;
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  padding: 24px;
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.28) 0%,
    rgba(17, 17, 17, 0.10) 45%,
    rgba(17, 17, 17, 0) 100%
  );
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.collection-card__soon {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.82rem, 1.02vw, 0.98rem);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  filter: blur(0);
  transition: opacity 260ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1), filter 360ms ease;
}

.collection-card__overlay-title {
  display: block;
  margin-bottom: 8px;
  font-size: 0.86rem;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.collection-card__overlay span:not(.collection-card__overlay-title) {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.collection-card__media:hover img,
.collection-card__media:focus-visible img {
  transform: scale(1.03);
}

.collection-card__media:hover .collection-card__overlay,
.collection-card__media:focus-visible .collection-card__overlay {
  opacity: 1;
}

.collection-card__media:hover .collection-card__soon,
.collection-card__media:focus-visible .collection-card__soon {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px var(--myt-page-pad) 92px;
  border-top: 1px solid var(--myt-line);
  color: var(--myt-muted);
  font-size: 0.82rem;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.site-footer p {
  margin: 0;
  white-space: pre-line;
}

.site-footer__identity {
  display: grid;
  justify-items: start;
  position: relative;
  row-gap: 0.5rem;
}

.site-footer__coming-soon {
  display: inline-block;
}

.site-footer__coming-soon-letter {
  display: inline-block;
  opacity: 0;
  filter: blur(2px);
  transform: translateY(6px);
  transition:
    opacity 1600ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1600ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}

.site-footer__coming-soon-letter.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__coming-soon-letter {
    filter: none;
    transform: none;
    transition: opacity 1600ms ease !important;
    will-change: auto;
  }
}

.site-footer__brand {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--myt-muted);
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-footer__brand span {
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease;
}

.site-footer__brand::after {
  content: " ↓";
  color: rgba(17, 17, 17, 0.28);
  font-size: 0.9em;
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-footer__brand:hover,
.site-footer__brand:focus-visible,
.site-footer__brand[aria-expanded="true"] {
  color: rgba(17, 17, 17, 0.62);
  outline: 0;
}

.site-footer__brand:hover span,
.site-footer__brand:focus-visible span,
.site-footer__brand[aria-expanded="true"] span {
  border-bottom-color: currentColor;
}

.site-footer__brand[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.site-footer__representative {
  margin-top: 0;
  color: rgba(17, 17, 17, 0.46);
  line-height: 1.55;
  text-align: left;
  white-space: normal;
}

.site-footer__representative > span {
  display: block;
  opacity: 0;
  transition: opacity 2200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer__brand[aria-expanded="true"] + .site-footer__representative > span {
  opacity: 1;
}

.site-footer__representative-name {
  display: block;
  margin-bottom: 1rem;
}

.site-footer__legal-trigger {
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-transform: none;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-footer__legal-trigger:hover,
.site-footer__legal-trigger:focus-visible {
  color: rgba(17, 17, 17, 0.68);
  border-bottom-color: currentColor;
  outline: 0;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: var(--myt-page-pad);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.legal-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(247, 245, 240, 0.76);
  backdrop-filter: blur(10px);
}

.legal-modal__panel {
  position: relative;
  width: min(100%, 420px);
  padding: clamp(28px, 5vw, 44px);
  background: rgba(247, 245, 240, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.1);
  color: var(--myt-text);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.legal-modal.is-open .legal-modal__panel {
  opacity: 1;
  transform: translateY(0);
}

.legal-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(17, 17, 17, 0.46);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.legal-modal__close:hover,
.legal-modal__close:focus-visible {
  color: rgba(17, 17, 17, 0.72);
  outline: 0;
}

.legal-modal__label {
  margin: 0 0 28px;
  color: var(--myt-header-brand-color-solid);
  font-size: var(--myt-header-brand-size);
  font-weight: var(--myt-header-brand-weight);
  letter-spacing: var(--myt-header-brand-letterspacing);
  line-height: 1;
  text-transform: uppercase;
}

.legal-modal__content {
  color: rgba(17, 17, 17, 0.64);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.75;
  letter-spacing: 0.03em;
}

.legal-modal__content a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.24);
  transition: color 180ms ease, border-color 180ms ease;
}

.legal-modal__content a:hover,
.legal-modal__content a:focus-visible {
  color: rgba(17, 17, 17, 0.8);
  border-bottom-color: currentColor;
  outline: 0;
}

@media (max-width: 860px) {
  :root {
    --myt-header-brand-size: 17px;
    --myt-page-pad: clamp(18px, 5vw, 32px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    row-gap: 10px;
    min-height: 94px;
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .site-header__nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    display: flex;
    gap: 24px;
    font-size: 0.72rem;
  }

  .collections {
    padding-top: 94px;
    padding-bottom: 84px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    scroll-margin-top: 94px;
  }

  .collection-card__overlay {
    opacity: 1;
  }

  .collection-card__media:hover .collection-card__soon,
  .collection-card__media:focus-visible .collection-card__soon {
    opacity: 0;
    transform: translateY(6px);
  }

  .collection-card__media.is-soon-active:not(.is-soon-filter-off) img {
    filter: sepia(0.62) saturate(1.58) hue-rotate(352deg) brightness(0.9) contrast(1.04);
  }

  .collection-card__media.is-soon-active:not(.is-soon-filter-off) .collection-card__overlay {
    background: linear-gradient(
      to top,
      rgba(138, 101, 38, 0.46) 0%,
      rgba(184, 143, 61, 0.28) 56%,
      rgba(247, 209, 122, 0.11) 100%
    );
    opacity: 0.84;
  }

  .collection-card__media.is-soon-active .collection-card__soon {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(14px);
    transition: opacity 3200ms cubic-bezier(0.22, 1, 0.36, 1), filter 3200ms cubic-bezier(0.22, 1, 0.36, 1), transform 3200ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .collection-card__media.is-soon-active.is-soon-visible .collection-card__soon {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  .collection-card__media:hover img,
  .collection-card__media:focus-visible img {
    transform: none;
  }
}

@media (max-width: 768px) {
  .intro {
    min-height: auto;
    padding-bottom: 0;
  }

  .section-kicker {
    margin-bottom: 21px;
  }

  .intro h2 {
    margin-bottom: 0;
    max-width: 220px;
    font-size: 15px;
    line-height: 1.38;
    letter-spacing: 0.01em;
  }

  .intro h2::first-line {
    letter-spacing: 0.032em;
    word-spacing: 0.12em;
  }

  .brand-preview-subline {
    max-width: 300px;
    margin-top: 21px;
    font-size: 15px;
    line-height: 1.38;
  }

  .brand-preview-subline::after {
    content: " ↓";
    color: rgba(17, 17, 17, 0.34);
    font-size: 0.9em;
    margin-left: 0.18em;
  }

  .site-footer__brand:hover,
  .site-footer__brand:focus-visible,
  .site-footer__brand[aria-expanded="true"] {
    color: rgba(17, 17, 17, 0.62);
  }

  .site-footer__brand:hover span,
  .site-footer__brand:focus-visible span,
  .site-footer__brand[aria-expanded="true"] span {
    border-bottom-color: transparent;
  }

  .site-footer__brand:hover::after,
  .site-footer__brand:focus-visible::after,
  .site-footer__brand[aria-expanded="true"]::after {
    opacity: 1;
  }

  .site-footer__brand::after {
    opacity: 1;
  }

  .collections {
    padding-top: 36px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 92px;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .site-header__nav {
    gap: 20px;
    font-size: 0.7rem;
  }

  .language-switch {
    gap: 6px;
  }

  .language-switch__button {
    min-width: 24px;
    min-height: 24px;
  }

  .hero__content {
    left: var(--myt-page-pad);
    right: var(--myt-page-pad);
    bottom: calc(max(88px, 14svh) - 12px);
  }

  h1 {
    font-size: var(--myt-hero-claim-size);
  }

  .hero__cta {
    transform: translateY(calc((max(88px, 14svh) - 12px) / 2 - 32px));
  }

  .hero__cta::after {
    content: " ↓";
    color: rgba(245, 241, 232, 0.46);
    font-size: 0.9em;
    margin-left: 0.18em;
  }

  .hero__claim {
    max-width: 18rem;
  }

  .hero__video {
    object-position: center top;
  }

  .collections {
    padding: 36px 6px 72px;
  }

  .collection-grid {
    gap: 18px;
    scroll-margin-top: 92px;
  }

  .collection-card__overlay {
    padding: 20px;
  }

  .site-footer {
    display: block;
    padding-bottom: calc(188px + env(safe-area-inset-bottom));
  }

  .site-footer > * + * {
    margin-top: 8px;
  }

  .site-footer__identity {
    justify-items: start;
  }

  .site-footer__brand,
  .site-footer__representative {
    text-align: left;
  }
}
