* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
body {
  margin: 0;
  background: #120d26;
  color: #f5f3fa;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.65;
}
a {
  color: inherit;
  text-underline-offset: 0.25em;
}
a:focus-visible {
  outline: 3px solid #ff8a78;
  outline-offset: 5px;
}
header,
main,
footer {
  max-width: 70rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 2rem;
}
header > a,
nav a,
footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
nav {
  display: flex;
  gap: 1.5rem;
}
nav a {
  font-size: 0.9rem;
}
img {
  display: block;
  width: 159px;
  height: auto;
}
.hero {
  padding-block: 5rem 6rem;
  max-width: 52rem;
}
h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin: 0 0 2rem;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
  margin: 0 0 1.5rem;
}
h3 {
  font-size: 1.25rem;
}
.intro {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  color: #cdc7dd;
  max-width: 46rem;
}
.availability {
  color: #a49dba;
  max-width: 38rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff5441;
  color: #120d26;
  border-radius: 14px;
  padding: 1rem 1.5rem;
  text-decoration: none;
  font-weight: 700;
  margin-top: 1rem;
  min-height: 44px;
}
.button:hover {
  background: #ff8a78;
}
section:not(.hero) {
  border-top: 1px solid #352a5e;
  padding-block: 3.5rem;
}
section > p {
  max-width: 46rem;
  color: #cdc7dd;
}
.email {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: #ff8a78;
}
.legal {
  font-size: 0.875rem;
  color: #cdc7dd;
}
.legal h2 {
  font-size: 1.4rem;
}
dl {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 0.75rem 1.5rem;
}
dt {
  font-weight: 650;
}
dd {
  margin: 0;
}
footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #352a5e;
  padding-block: 1.5rem 2rem;
  font-size: 0.8rem;
  color: #a49dba;
}
.skip {
  position: absolute;
  inset-block-start: -5rem;
  inset-inline-start: 1rem;
  padding: 1rem;
  background: #f5f3fa;
  color: #120d26;
}
.skip:focus {
  inset-block-start: 0;
}
@media (max-width: 600px) {
  header {
    gap: 1rem;
    align-items: flex-start;
  }
  header img {
    width: 125px;
  }
  nav {
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  nav a {
    font-size: 0.8rem;
  }
  .hero {
    padding-block: 3rem 4rem;
  }
  dl {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  dd {
    margin-block-end: 0.75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.notice h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.notice {
  max-width: 54rem;
}
