:root {
  color-scheme: dark;
  --background: #192b32;
  --background-overlay: rgb(25 43 50 / 87%);
  --gold: #c5a77b;
  --text: #ece3d9;
}

* {
  box-sizing: border-box;
}

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

p { font-family: 'Kameron', sans-serif; font-weight: 400; }
a { font-family: "Hedvig Letters Serif", serif; font-weight: 700; }

body {
  background: var(--background);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  text-size-adjust: 100%;
}

main {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.landing-card {
  --watermark-offset-y: 60px;
  --watermark-width: 80%;
  --watermark-aspect-ratio: 1200 / 1052;

  container-type: inline-size;
  width: min(100%, 640px);
  margin: 0 auto;
  padding: var(--watermark-offset-y) 20px clamp(64px, 12vh, 110px);
  background:
    linear-gradient(var(--background-overlay), var(--background-overlay)),
    url("/media/watermark.png") 50% var(--watermark-offset-y) / var(--watermark-width) auto
      no-repeat;
  text-align: center;
}

.destinations {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.34em;
  width: var(--watermark-width);
  margin: 0 auto;
  aspect-ratio: var(--watermark-aspect-ratio);
  font-size: clamp(1.15rem, 5.875cqi, 2.35rem);
}

.destinations a {
  color: var(--gold);
  font-size: 1em;
  font-weight: 700;
  line-height: 1.2;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.destinations a:hover,
.destinations a:focus-visible {
  color: var(--text);
}

.destinations a:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 6px;
}

.wordmark {
  display: block;
  width: 180px;
  max-width: 55%;
  height: auto;
  margin: -20px auto 20px;
  opacity: 0.7;
}

.addresses {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.45em;
  margin: 0;
  color: #ddd;
  font-size: clamp(0.65rem, 1.8cqi, 0.72rem);
  line-height: 1.5;
}

.addresses span + span::before {
  content: "| ";
}

@media (max-width: 500px) {
  .landing-card {
    --watermark-offset-y: 42px;
    --watermark-width: 94%;
  }

  .addresses {
    display: block;
  }

  .addresses span {
    display: block;
  }

  .addresses span + span::before {
    content: "";
  }
}
