* { box-sizing: border-box; }

:root { color-scheme: dark; }

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

body {
  background: #080808;
  color: #f2eee5;
  font-family: Arial, Helvetica, sans-serif;
}

button { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 12px 16px;
  background: #f2eee5;
  color: #080808;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.entry {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto auto 1fr;
  overflow: hidden;
}

.entry__header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(22px, 4vw, 64px);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.entry__brand {
  margin: 0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.entry__language {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(242,238,229,.58);
}

.entry__language button {
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: .68rem;
  letter-spacing: .12em;
  cursor: pointer;
}

.entry__language button[aria-pressed="true"],
.entry__language button:hover,
.entry__language button:focus-visible { color: #f2eee5; }

.entry__intro {
  padding: clamp(38px, 6vh, 76px) clamp(22px, 4vw, 64px) clamp(24px, 4vh, 48px);
}

.entry__eyebrow {
  margin: 0 0 12px;
  color: rgba(242,238,229,.58);
  font-size: .68rem;
  letter-spacing: .18em;
}

.entry__intro h1 {
  margin: 0;
  line-height: 1;
}

.entry__logo-img {
  width: 100%;
  max-width: 860px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: invert(0.95);
  margin-top: -8.8%;
  margin-bottom: -18.3%;
}

@media (min-width: 1000px) {
  .entry__logo-img {
    margin-top: -76px;
    margin-bottom: -157px;
  }
}

.entry__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.14);
}

.experience-card {
  position: relative;
  min-height: 42svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  padding: clamp(28px, 5vw, 76px);
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}

.experience-card + .experience-card { border-left: 1px solid rgba(255,255,255,.14); }

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 520ms cubic-bezier(.16,1,.3,1);
}

.experience-card--classic::before { background: #c5b28f; }
.experience-card--dynamic::before { background: #00a3c7; }

.experience-card:hover::before,
.experience-card:focus-visible::before { transform: scaleY(1); }

.experience-card:hover,
.experience-card:focus-visible { color: #080808; outline: none; }

.experience-card__number {
  position: absolute;
  top: clamp(22px, 4vw, 52px);
  right: clamp(22px, 4vw, 52px);
  color: rgba(242,238,229,.42);
  font-size: .68rem;
  letter-spacing: .15em;
}

.experience-card:hover .experience-card__number,
.experience-card:focus-visible .experience-card__number { color: rgba(8,8,8,.52); }

.experience-card__title {
  font-size: clamp(2.9rem, 8vw, 8.5rem);
  font-weight: 800;
  line-height: .86;
  letter-spacing: -.075em;
}

.experience-card--classic .experience-card__title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.experience-card__copy {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
}

@media (max-width: 760px) {
  .entry { grid-template-rows: auto auto 1fr; }
  .entry__header { min-height: 68px; padding: 14px 18px; }
  .entry__brand { max-width: 145px; font-size: .68rem; line-height: 1.15; }
  .entry__intro { padding: 34px 18px 26px; }
  .entry__options { grid-template-columns: 1fr; }
  .experience-card { min-height: 30svh; padding: 28px 18px; }
  .experience-card + .experience-card { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
}

@media (prefers-reduced-motion: reduce) {
  .experience-card::before { transition: none; }
}
