:root {
  color-scheme: dark;
  --navy: #001426;
  --navy-deep: #000d19;
  --ink: #061d35;
  --cream: #fbfaf6;
  --white: #ffffff;
  --green: #69bf2a;
  --green-dark: #4fa41b;
  --muted: #d4dbe1;
  --card-radius: 1.2rem;
  --shadow: 0 0.9rem 2.2rem rgb(0 7 15 / 24%);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--navy-deep);
  font-family: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background: var(--navy-deep);
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: min(100%, 52rem);
  min-height: 100vh;
  margin-inline: auto;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 0 4rem rgb(0 0 0 / 34%);
}

.hero {
  position: relative;
  height: clamp(13.75rem, 57vw, 22rem);
  overflow: hidden;
  background: #486f89;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--navy));
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 47%;
}

.content {
  padding: 0 clamp(1rem, 5.2vw, 2.8rem) 0;
}

.brand {
  width: min(100%, 43rem);
  margin: clamp(0.6rem, 2.7vw, 1.25rem) auto clamp(1.35rem, 4vw, 2rem);
}

.brand img {
  width: 100%;
  height: auto;
}

.destination-list {
  display: grid;
  grid-auto-rows: 1fr;
  gap: clamp(0.85rem, 2.8vw, 1.1rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.destination-list > li {
  height: 100%;
}

.destination-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3.5vw, 1.8rem);
  align-items: center;
  height: 100%;
  min-height: clamp(11.5rem, 35vw, 12.5rem);
  padding: clamp(1.5rem, 5vw, 2.2rem);
  color: var(--ink);
  text-decoration: none;
  background: var(--cream);
  border: 2px solid rgb(255 255 255 / 80%);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.destination-copy {
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.8vw, 0.8rem);
}

.destination-title {
  font-size: clamp(1.35rem, 4.8vw, 2rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.destination-description {
  max-width: 36rem;
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  font-weight: 440;
  line-height: 1.42;
}

sup {
  position: relative;
  top: -0.12em;
  font-size: 0.58em;
  line-height: 0;
}

.destination-arrow {
  display: grid;
  width: clamp(3.25rem, 11vw, 4rem);
  aspect-ratio: 1;
  place-items: center;
  padding: 0 0 0.12em 0.04em;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: clamp(3rem, 10vw, 3.9rem);
  font-weight: 260;
  line-height: 0.7;
  background: var(--green);
  border-radius: 50%;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.destination-card:hover {
  border-color: var(--green);
  box-shadow: 0 1.1rem 2.6rem rgb(0 7 15 / 32%);
  transform: translateY(-0.18rem);
}

.destination-card:hover .destination-arrow {
  background: var(--green-dark);
  transform: translateX(0.16rem);
}

.destination-card:focus-visible {
  outline: 0.25rem solid var(--green);
  outline-offset: 0.25rem;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(2.1rem, 7vw, 3.4rem) 0 0;
  text-align: center;
}

.headshot {
  width: clamp(8.5rem, 34vw, 12rem);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 0.25rem solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 0.7rem 1.8rem rgb(0 7 15 / 34%);
}

.profile-name {
  margin: clamp(1rem, 3.5vw, 1.35rem) 0 0;
  font-size: clamp(1rem, 3.8vw, 1.3rem);
  font-weight: 430;
  line-height: 1.35;
  letter-spacing: 0.015em;
}

.profile-accent {
  width: 4.75rem;
  height: 0.22rem;
  margin-top: 1.15rem;
  background: var(--green);
  border-radius: 999px;
}

footer {
  padding: 1.35rem 1rem clamp(2.4rem, 8vw, 4.2rem);
  color: var(--muted);
  text-align: center;
}

footer p {
  margin: 0;
  font-size: clamp(0.9rem, 3.3vw, 1.05rem);
  line-height: 1.5;
  letter-spacing: 0.015em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 25rem) {
  .destination-card {
    grid-template-columns: minmax(0, 1fr) 2.8rem;
    min-height: 12.75rem;
    padding: 1.35rem;
  }

  .destination-arrow {
    width: 2.8rem;
    font-size: 2.7rem;
  }
}

@media (max-width: 22rem) {
  .destination-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .destination-arrow {
    justify-self: end;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .destination-card,
  .destination-arrow {
    transition: none;
  }
}
