:root {
  --ink: #0b1d2a;
  --navy: #102e43;
  --teal: #1e6e7a;
  --aqua: #35b8be;
  --mist: #cff2f2;
  --paper: #fbf8f2;
  --line: #cfdadd;
  --soft-line: #e6ecef;
  --muted: #60737d;
  --gold: #d4b07a;
  --white: #ffffff;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 16% 8%, rgba(207, 242, 242, 0.8), rgba(207, 242, 242, 0) 22rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 66%, #f7fcfc 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(74rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) 0 3rem;
}

.masthead {
  width: min(55rem, 100%);
  margin: 0 auto 1.35rem;
  text-align: center;
}

.brand-logo {
  display: inline-block;
  width: min(100%, 42rem);
  text-decoration: none;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.hub-panel {
  width: min(62rem, 100%);
  min-height: 38rem;
  margin: 0 auto;
  border: 1px solid rgba(16, 46, 67, 0.16);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 26px 80px rgba(11, 29, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}

.signpost-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  width: calc(100% - 3rem);
  margin: 1.4rem auto 0;
  border: 1px solid rgba(16, 46, 67, 0.14);
  border-radius: 0.65rem;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(11, 29, 42, 0.06);
}

.signpost-bar a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: center;
  gap: 0.5rem;
  min-height: 3.35rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.signpost-bar a:hover,
.signpost-bar a:focus-visible {
  border-color: rgba(30, 110, 122, 0.2);
  background: rgba(207, 242, 242, 0.42);
  outline: none;
}

.signpost-bar img {
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 0.45rem;
  object-fit: contain;
}

.panel-content {
  display: grid;
  gap: 1.6rem;
  padding: clamp(1.4rem, 4vw, 2.35rem);
}

.intro {
  display: grid;
  gap: 1.25rem;
  padding: 0.5rem 0 0.25rem;
}

.intro > div {
  max-width: 46rem;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro p:not(.eyebrow),
.destination p {
  color: var(--muted);
  line-height: 1.6;
}

.destinations {
  display: grid;
  gap: 0.85rem;
}

.destination {
  display: grid;
  grid-template-columns: 3.1rem minmax(0, 1fr);
  column-gap: 0.9rem;
  align-items: center;
  border: 1px solid var(--soft-line);
  border-radius: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(11, 29, 42, 0.06);
}

.destination:hover,
.destination:focus-visible {
  border-color: rgba(30, 110, 122, 0.42);
  box-shadow: 0 14px 32px rgba(11, 29, 42, 0.1);
  outline: none;
}

.destination img {
  grid-row: span 3;
  display: block;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0.7rem;
  object-fit: contain;
}

.destination span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0.3rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1.1;
}

.destination p {
  margin-bottom: 0;
}

.social-banner {
  display: block;
  width: min(100%, 34rem);
  height: auto;
  margin: 0.4rem auto 0;
  border-radius: 0.5rem;
  box-shadow: 0 14px 34px rgba(11, 29, 42, 0.14);
}

@media (max-width: 720px) {
  .masthead {
    width: min(100%, 29rem);
  }

  .brand-logo {
    width: min(100%, 24rem);
  }

  .hub-panel {
    min-height: 0;
  }

  .signpost-bar {
    width: calc(100% - 2rem);
    grid-template-columns: 1fr;
  }

  .signpost-bar a {
    border-bottom: 0;
  }
}

@media (max-width: 430px) {
  .page-shell {
    width: min(100% - 1rem, 74rem);
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 3.4rem);
  }

  .panel-content {
    padding-inline: 1rem;
  }
}
