:root {
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.82);
  --dim: rgba(255, 255, 255, 0.7);
  --line: rgba(255, 255, 255, 0.45);
  --line-hover: rgba(255, 255, 255, 0.92);
}

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

body {
  overflow: hidden;
  background: #000;
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  opacity: 0;
  animation: page-fade 1.4s ease forwards;
}

.bg,
.shade {
  position: fixed;
  inset: 0;
}

.bg {
  background: url("background.jpg") center center / cover no-repeat;
  transform: scale(1);
  animation: slow-zoom 40s linear forwards;
}

.shade {
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.24) 0%,
      rgba(0, 0, 0, 0.34) 38%,
      rgba(0, 0, 0, 0.44) 100%
    );
}

.top-left,
.center,
.bottom {
  position: fixed;
  z-index: 2;
  opacity: 0;
  animation: rise-in 1.15s ease forwards;
}

.top-left {
  left: 56px;
  top: 44px;
  animation-delay: 0.18s;
}

.title {

    font-family: "Source Sans 3", sans-serif;

    text-transform: uppercase;

    font-size: .92rem;

    font-weight: 300;

    letter-spacing: .32em;

    color: rgba(255,255,255,.78);

    line-height: 1.0;
}

.title span {

    display:block;

    margin-top:3px;

    font-family: "Cormorant Garamond", serif;

    font-size:3.05rem;

    font-weight:300;

    letter-spacing:-0.04em;

    line-height:.92;

    text-transform:none;

    color:rgba(255,255,255,.98);

    text-shadow:
        0 2px 18px rgba(0,0,0,.22);
}

.divider{

    width:72px;

    height:1px;

    margin:16px 0 14px;

    background:rgba(255,255,255,.28);
}

.subtitle{

    font-family:"Source Sans 3", sans-serif;

    font-size:.98rem;

    font-weight:300;

    line-height:1.3;

    letter-spacing:.14em;

    color:rgba(255,255,255,.70);
}


.center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0.45s;
}

.enter {
  display: inline-block;
  color: var(--text);
  text-decoration: none;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 300;
  letter-spacing: 0.34em;
  padding: 0 0 14px 0;
  border-bottom: 1px solid var(--line);
  transition: letter-spacing 0.35s ease, border-color 0.35s ease, opacity 0.35s ease;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.18);
}

.enter:hover {
  letter-spacing: 0.42em;
  border-color: var(--line-hover);
}

.enter:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 10px;
  border-radius: 2px;
}

.bottom {
  left: 0;
  bottom: 32px;
  width: 100%;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--dim);
  padding: 0 24px;
  box-sizing: border-box;
  animation-delay: 0.72s;
}

@keyframes page-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
  }
}

@keyframes slow-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

@media (max-width: 700px) {

  .top-left {
    left: 24px;
    top: 26px;
    right: 24px;
  }

  .title {
    font-size: 0.78rem;
    letter-spacing: .22em;
    line-height: 1.15;
  }

  .title span {
    margin-top: 4px;
    font-size: 2.15rem;
    line-height: .95;
  }

  .divider {
    width: 52px;
    margin: 12px 0;
  }

  .subtitle {
    margin-top: 0;
    font-size: .88rem;
    line-height: 1.45;
    letter-spacing: .08em;
    text-transform: none;
  }

  .enter {
    font-size: 1.15rem;
    letter-spacing: .18em;
    padding-bottom: 10px;
  }

  .enter:hover {
    letter-spacing: .22em;
  }

  .bottom {

    left: 20px;
    right: 20px;
    width: auto;
    bottom: 18px;
    font-size: .78rem;
    line-height: 1.5;
  }
}
}