:root {
  /* Original design tokens */
  --ink: #24123f;
  --cream: #f4fbfc;
  --paper: #ffffff;
  --sand: #c9eff0;
  --coral: #ff4f9a;
  --pink: #8b5cf6;
  --yellow: #ffc857;
  --hero-blue-dark: #071b4a;
  --hero-blue: #1859ac;
  --hero-blue-soft: #d8e8ff;
  --blue: var(--hero-blue);
  --deep-blue: var(--hero-blue-dark);
  --nav-blue: #5b2385;
  --nav-orange: #d71970;
  --white: #ffffff;
  --border: 2px solid var(--ink);
  --shadow: 5px 5px 0 var(--ink);
  --shell: min(1240px, calc(100% - 48px));
  --header-height: 76px;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --type-section: clamp(43px, 5.8vw, 76px);
  --type-card: clamp(24px, 2.2vw, 34px);
  --space-section: clamp(76px, 8vw, 110px);

  /* Standardized design system variables */
  --text: #24123f;
  --text-muted: #6c757d;
  --primary-100: #d8e8ff;
  --primary-500: #1859ac;
  --primary-700: #1859ac;
  --primary-800: #071b4a;
  --accent-400: #d71970;
  --accent-500: #5b2385;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --background: #f4fbfc;
  --border-color: #e2e8f0;
  --surface-100: #f4fbfc;
  --box-shadow-sm: 0 1px 3px 0 rgba(34, 40, 42, 0.1);
  --box-shadow-md: 0 4px 20px 0 rgba(33, 37, 41, 0.05);
  --box-shadow-lg: 0 4px 20px 0 rgba(33, 37, 41, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  background: var(--paper);
  scroll-behavior: smooth;
}

section[id],
aside[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--yellow);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}

.skip-link:focus {
  transform: none;
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.pg-wrap {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 100vh;
}

.content.main-wrapper {
  flex-grow: 1;
}

.site-header {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 0 24px;
  color: var(--nav-blue);
  background: var(--white);
  border-bottom: 1px solid #f0c8dc;
}

.logo {
  width: 220px;
  height: auto;
}

.site-header.is-over-dark {
  border-bottom-color: #90b7ed;
  box-shadow: 0 5px 22px rgb(7 27 74 / 16%);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--nav-blue);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding: 28px 0;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 9px 14px;
  color: var(--nav-blue);
  background: var(--white);
  border: 1.5px solid var(--nav-blue);
  border-radius: 999px;
  box-shadow: none;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--nav-blue);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 525px;
  padding: 30px 0 260px;
  color: var(--white);
  background: #f06a77;
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgb(7 27 74 / 97%) 0%, rgb(10 48 112 / 90%) 28%, rgb(24 89 172 / 60%) 62%, rgb(255 79 154 / 8%) 88%),
    linear-gradient(0deg, rgb(4 20 57 / 68%), transparent 54%);
}

.hero-backdrop {
  position: absolute;
  z-index: -2;
  right: -8vw;
  bottom: -42px;
  width: min(92vw, 1250px);
  height: auto;
  object-fit: contain;
  object-position: bottom right;
  opacity: 0.72;
}

.hero-art {
  position: absolute;
  right: max(2vw, calc((100vw - 1320px) / 2));
  bottom: 0;
  width: auto;
  height: min(800px, 112%);
  object-fit: contain;
  object-position: bottom right;
  opacity: 0.8;
}

.hero-content {
  position: relative;
}

.hero h1,
.section h2,
.itinerary-section h2,
.article-collection h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 940px;
  font-family: var(--font-display);
  font-size: clamp(60px, 7.5vw, 100px);
  font-weight: 850;
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.hero-title-accent {
  color: var(--yellow);
}

.hero-title-line {
  display: inline-block;
  white-space: nowrap;
}

.hero-copy {
  width: max-content;
  max-width: 100%;
  margin: 30px 0 0;
  font-size: clamp(12px, 1.45vw, 20px);
  line-height: 1.45;
  white-space: nowrap;
}

.hero-copy strong {
  font-weight: 650;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 52px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 900;
  border: var(--border);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--coral);
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: none;
}

.moodboard {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 32px));
  margin: -230px auto 0;
  padding: 0 46px 70px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.4vw, 30px);
}

:is(.mood-card, .story-tile, .place-card, .activity-card, .itinerary-card):nth-child(4n + 1),
.article-card:nth-child(4n + 1) {
  --card-shadow: var(--coral);
}

:is(.mood-card, .story-tile, .place-card, .activity-card, .itinerary-card):nth-child(4n + 2),
.article-card:nth-child(4n + 2) {
  --card-shadow: var(--yellow);
}

:is(.mood-card, .story-tile, .place-card, .activity-card, .itinerary-card):nth-child(4n + 3),
.article-card:nth-child(4n + 3) {
  --card-shadow: var(--blue);
}

:is(.mood-card, .story-tile, .place-card, .activity-card, .itinerary-card):nth-child(4n),
.article-card:nth-child(4n) {
  --card-shadow: var(--pink);
}

.mood-card {
  position: relative;
  display: block;
  height: clamp(300px, 28vw, 400px);
  color: var(--white);
  background: var(--ink);
  border-radius: 12px;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.mood-card:hover {
  transform: translate(-5px, -5px) rotate(-1.2deg);
  box-shadow: 9px 9px 0 var(--card-shadow);
}

.mood-card:nth-child(even):hover {
  transform: translate(-5px, -5px) rotate(1.2deg);
}

.mood-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(
    0deg,
    rgb(36 18 63 / 100%) 0%,
    rgb(50 20 88 / 88%) 26%,
    rgb(50 20 88 / 5%) 100%
  );
}

.mood-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0, 1);
}

.mood-card:hover img {
  transform: scale(1.055);
}

.mood-card-copy {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 20px;
  left: 18px;
  display: flex;
  flex-direction: column;
}

.mood-card-copy small {
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.mood-card-copy strong {
  font-family: var(--font-display);
  font-size: var(--type-card);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.mood-card-copy > span {
  margin-top: 9px;
  font-size: 12px;
  line-height: 1.35;
  opacity: 0.9;
}

.section {
  padding: var(--space-section) 0;
}

.section--compact {
  padding-block: 68px;
}

.discovery-section + .discovery-section {
  padding-top: 42px;
}

.discovery-section--shopping {
  background: #f7f8fa;
}

.discovery-section--activities {
  background: transparent;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.section-heading h2,
.section h2 {
  font-size: var(--type-section);
}

.section-lede {
  max-width: 520px;
  margin: 18px 0 0;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55;
}

@media (min-width: 1101px) {
  .section-lede--wide {
    max-width: none;
    white-space: nowrap;
  }
}

.carousel-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
}

.scroll-button {
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: var(--white);
  border: var(--border);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.scroll-button:hover {
  background: var(--yellow);
  transform: rotate(-8deg);
}

.scroll-button:disabled {
  cursor: default;
  opacity: 0.35;
  transform: none;
}

.scroll-button:focus-visible {
  outline-color: var(--hero-blue-dark);
}

.card-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 18px;
  padding: 14px 14px 28px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: inline mandatory;
  cursor: grab;
  touch-action: pan-x pan-y;
}

.card-row img {
  user-select: none;
  -webkit-user-drag: none;
}

.card-row:focus-visible {
  outline: 3px solid var(--hero-blue);
  outline-offset: 3px;
}

.card-row.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.card-row.is-dragging a {
  pointer-events: none;
}

.card-row::-webkit-scrollbar {
  display: none;
}

.card-row > * {
  scroll-snap-align: start;
}

.card-row--editorial {
  grid-auto-columns: minmax(260px, 30%);
  align-items: end;
}

.story-tile {
  position: relative;
  height: 380px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 12px;
  box-shadow: none;
  overflow: hidden;
  cursor: pointer;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.story-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 0 var(--card-shadow);
}

.story-tile:nth-child(even):hover {
  transform: translateY(-6px);
}

.story-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0, 1);
}

.story-tile:hover img {
  transform: scale(1.06);
}

.image-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(36 18 63 / 100%) 0%, rgb(50 20 88 / 8%) 62%);
}

.story-tile-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 8px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.story-tile h3,
.story-tile .story-tile-heading {
  display: block;
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.1vw, 29px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.05em;
  color: var(--white);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.story-tile p,
.story-tile .story-tile-desc {
  display: block;
  margin: 0;
  font-size: 12px;
  opacity: 0.88;
}

.section-heading--center {
  align-items: center;
}

.destination-row {
  grid-auto-columns: minmax(260px, 30%);
}

.place-card {
  position: relative;
  height: 400px;
  background: var(--ink);
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.place-card:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow: 0 8px 0 var(--card-shadow);
}

.place-card:nth-child(even):hover {
  transform: translateY(-6px) scale(1.005);
}

.place-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgb(36 18 63 / 100%) 0%, rgb(50 20 88 / 8%) 62%);
}

.place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84);
  transition: transform 500ms ease, filter 300ms ease;
}

.place-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.2);
}

.place-card-copy {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  color: var(--white);
  flex-direction: column;
}

.place-card-copy small {
  display: inline-flex;
  width: max-content;
  margin-bottom: 10px;
  padding: 4px 8px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.place-card-copy strong {
  margin: 2px 0 7px;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.6vw, 35px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.place-card-copy span {
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 22px;
  color: #0b4f9f;
  font-size: 13px;
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.text-link--top {
  flex: 0 0 auto;
  margin: 0 0 8px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 24px;
}

.activity-card {
  position: relative;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 12px;
  box-shadow: none;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

#activity-guide {
  border: 0;
}

.activity-card--wide {
  grid-column: auto;
}

.activity-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgb(36 18 63 / 100%) 0%, rgb(50 20 88 / 8%) 62%);
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.activity-card:hover img {
  transform: scale(1.06) rotate(0.5deg);
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 0 var(--card-shadow);
}

.activity-card:nth-child(even):hover {
  transform: translateY(-6px);
}

.activity-card > span {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  flex-direction: column;
}

.activity-card strong {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.editorial-section {
  position: relative;
  padding: 0 0 var(--space-section);
  background: var(--white);
  overflow: hidden;
}

.editorial-section::before {
  position: absolute;
  inset: 0 0 auto;
  height: 320px;
  content: "";
  background: linear-gradient(135deg, var(--hero-blue-dark), #0a3070 62%, #123f84);
}

.editorial-section > .page-shell {
  position: relative;
  z-index: 1;
  padding-top: 72px;
}

.section-heading--editorial {
  align-items: center;
  min-height: 112px;
  margin-bottom: 48px;
  color: var(--white);
}

.section-heading--editorial > div {
  position: relative;
  padding-left: 24px;
}

.section-heading--editorial > div::before {
  position: absolute;
  inset: 4px auto 3px 0;
  width: 6px;
  content: "";
  background: linear-gradient(180deg, var(--yellow), var(--coral));
  border-radius: 999px;
}

.section-heading--editorial .section-lede {
  color: #d8e8ff;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px 22px;
}

.article-card {
  position: relative;
}

.article-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  background: var(--sand);
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.article-card:hover .article-image {
  transform: translateY(-5px);
  box-shadow: 0 7px 0 var(--card-shadow);
}

.article-card:nth-child(even):hover .article-image {
  transform: translateY(-5px);
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.article-card:hover .article-image img {
  transform: scale(1.04);
}

.article-meta {
  display: inline-flex;
  width: max-content;
  padding: 4px 8px;
  margin-bottom: 9px;
  color: #a5005d;
  background: #ffe3f0;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.article-card:nth-child(3n + 2) .article-meta {
  color: var(--hero-blue-dark);
  background: var(--hero-blue-soft);
}

.article-card h3,
.article-card .article-card-heading {
  display: block;
  max-width: 90%;
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.1vw, 29px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--ink);
}

.article-card:hover h3,
.article-card:hover .article-card-heading {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.itinerary-section {
  color: var(--white);
  background: var(--deep-blue);
  border-block: 0;
}

.itinerary-heading-group {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 42px;
}

.itinerary-heading-group h2 {
  font-size: clamp(50px, 6vw, 84px);
}

.itinerary-heading-group p {
  max-width: 440px;
  margin: 0 0 6px;
  color: #d8e4e7;
  font-size: 17px;
}

.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.itinerary-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 14px;
}

.itinerary-column:nth-child(1) { --card-shadow: var(--coral); }
.itinerary-column:nth-child(2) { --card-shadow: var(--yellow); }
.itinerary-column:nth-child(3) { --card-shadow: var(--blue); }

.itinerary-column:nth-child(1) .itinerary-card { --card-shadow: var(--coral); }
.itinerary-column:nth-child(2) .itinerary-card { --card-shadow: var(--yellow); }
.itinerary-column:nth-child(3) .itinerary-card { --card-shadow: var(--blue); }

.itinerary-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  border-radius: 12px;
  box-shadow: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 300ms ease;
}

.itinerary-column:nth-child(1) .itinerary-card:hover {
  transform: translate(-5px, -5px) rotate(-1deg);
  box-shadow: 9px 9px 0 var(--card-shadow);
}

.itinerary-column:nth-child(2) .itinerary-card:hover {
  transform: translateY(-9px) scale(1.015);
  box-shadow: 0 10px 0 var(--card-shadow);
}

.itinerary-column:nth-child(3) .itinerary-card:hover {
  transform: translate(5px, -5px) rotate(1.2deg);
  box-shadow: -9px 9px 0 var(--card-shadow);
}

.itinerary-card > img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 300ms ease;
}

.itinerary-column:nth-child(1) .itinerary-card:hover > img {
  transform: scale(1.055);
}

.itinerary-column:nth-child(2) .itinerary-card:hover > img {
  filter: saturate(1.18);
  transform: scale(1.04) translateY(-3px);
}

.itinerary-column:nth-child(3) .itinerary-card:hover > img {
  transform: scale(1.06) rotate(-0.6deg);
}

.itinerary-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: 22px 24px 24px;
}

.itinerary-card-copy > span:first-child {
  color: #a50f5a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.itinerary-card-copy h3,
.itinerary-card-copy .itinerary-card-heading {
  display: block;
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.4vw, 36px);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--ink);
}

.itinerary-card:hover .itinerary-card-copy h3,
.itinerary-card:hover .itinerary-card-copy .itinerary-card-heading {
  color: #a50f5a;
}

.itinerary-links {
  padding: 2px 5px 0;
  color: var(--white);
}

.itinerary-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.itinerary-links li {
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 30%);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 720;
  letter-spacing: -0.015em;
}

.itinerary-links li:first-child {
  border-top: 0;
}

.itinerary-links li a {
  display: flex;
  min-height: 58px;
  padding: 15px 2px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.3;
  transition: color 180ms ease, transform 180ms ease;
}

.itinerary-links li a:hover {
  color: var(--yellow);
  transform: translateX(4px);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.itinerary-links li a::after {
  flex: 0 0 auto;
  content: "↗";
  color: var(--yellow);
  font-size: 15px;
  transition: transform 180ms ease;
}

.itinerary-links li a:hover::after {
  transform: translate(3px, -3px);
}

.article-collection {
  position: relative;
  padding: 82px 0;
  background: linear-gradient(120deg, var(--yellow) 0%, var(--yellow) 55%, #ff8a70 100%);
  border-bottom: var(--border);
}

.collection-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.compact-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.compact-article-card {
  position: relative;
  display: block;
  min-height: 190px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgb(36 18 63 / 14%);
  border-radius: 18px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.compact-article-card:nth-child(1) { --list-accent: var(--coral); }
.compact-article-card:nth-child(2) { --list-accent: var(--blue); }
.compact-article-card:nth-child(3) { --list-accent: var(--pink); }
.compact-article-card:nth-child(4) { --list-accent: var(--blue); }
.compact-article-card:nth-child(5) { --list-accent: var(--coral); }
.compact-article-card:nth-child(6) { --list-accent: var(--pink); }
.compact-article-card:nth-child(7) { --list-accent: var(--hero-blue); }
.compact-article-card:nth-child(8) { --list-accent: var(--blue); }

.compact-article-card:first-child {
  grid-column: span 2;
  min-height: 250px;
  padding: clamp(30px, 4vw, 52px);
  color: var(--white);
  background: var(--deep-blue);
}

.compact-article-card:first-child > span {
  color: var(--yellow);
}

.compact-article-card:first-child h3,
.compact-article-card:first-child .compact-article-heading {
  max-width: 720px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.98;
}

.compact-article-card:hover {
  background: var(--white);
  border-color: var(--list-accent);
  box-shadow: 8px 8px 0 var(--list-accent);
  transform: translateY(-5px);
}

.compact-article-card:nth-child(even):hover {
  transform: translateY(-5px);
}

.compact-article-card:first-child:hover {
  color: var(--white);
  background: #0a3070;
}

.compact-article-card::after {
  position: absolute;
  right: 24px;
  bottom: 20px;
  content: "↗";
  color: var(--list-accent);
  font-size: 22px;
  opacity: 0.45;
  transition: opacity 180ms ease, transform 180ms ease;
}

.compact-article-card:hover::after {
  opacity: 1;
  transform: translate(4px, -4px);
}

.compact-article-card > span {
  color: var(--ink);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.compact-article-card h3,
.compact-article-card .compact-article-heading {
  display: block;
  max-width: 92%;
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: -0.03em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.topic-directory {
  padding: 78px 0 88px;
  color: var(--white);
  background: var(--deep-blue);
  border-bottom: 0;
}

.topic-directory h2 {
  margin: 0 0 34px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.topic-links {
  display: flex;
  max-width: 1160px;
  gap: 13px;
  flex-wrap: wrap;
}

.topic-links a {
  display: inline-flex;
  min-height: 54px;
  padding: 13px 24px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 750;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.topic-links a:nth-child(3n + 1) { background: var(--yellow); }
.topic-links a:nth-child(3n + 2) { background: #ff5aa5; }
.topic-links a:nth-child(3n) { background: var(--paper); }

.topic-links a:nth-child(3n + 1) { --pill-shadow: var(--yellow); }
.topic-links a:nth-child(3n + 2) { --pill-shadow: var(--blue); }
.topic-links a:nth-child(3n) { --pill-shadow: var(--pink); }

.topic-links a:hover {
  background: var(--white);
  box-shadow: 5px 5px 0 var(--pill-shadow);
  transform: translate(-3px, -3px) rotate(-1deg);
}

.topic-links a:focus-visible {
  outline-color: var(--yellow);
  box-shadow: 0 0 0 5px var(--hero-blue);
}

.resource-directory {
  margin-top: 48px;
}

.resource-directory h3 {
  margin: 0 0 20px;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.1;
}

.resource-directory nav {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 28px;
}

.resource-directory a {
  display: inline-flex;
  min-height: 30px;
  padding-block: 3px;
  align-items: center;
  color: rgb(255 255 255 / 82%);
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 650;
  line-height: 1.2;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition: color 180ms ease, transform 180ms ease, text-decoration-color 180ms ease;
}

.resource-directory a:hover {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-color: currentColor;
  transform: translateY(-2px);
}

.article-collection h2 {
  font-size: clamp(50px, 6vw, 82px);
}

.site-footer {
  padding: 62px 0 24px;
  color: var(--white);
  background: #030b1f;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding-bottom: 48px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 6px 20px;
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-link:hover {
  color: var(--yellow);
}

.footer-links a,
.footer-link {
  padding-block: 4px;
}

.footer-bottom {
  position: relative;
  padding-top: 27px;
  border-top: 0;
}

.footer-bottom::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 112px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--coral), var(--yellow) 52%, #55a8ff);
  border-radius: 999px;
}

.site-disclaimer {
  max-width: 1080px;
  margin: 0;
  color: #b2c2dc;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.site-disclaimer a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgb(255 255 255 / 45%);
  text-underline-offset: 3px;
}

.site-disclaimer a:hover {
  color: var(--yellow);
  text-decoration-color: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Preserve card hover motion after the scroll-reveal transform has completed. */
.reveal.is-visible:is(.story-tile, .place-card, .activity-card):hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 0 var(--card-shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
  transition-delay: 0ms !important;
}

.reveal.is-visible:is(.story-tile, .place-card, .activity-card):nth-child(even):hover {
  transform: translateY(-6px);
}

.itinerary-column:nth-child(1) .itinerary-card.reveal.is-visible:hover {
  transform: translate(-5px, -5px) rotate(-1deg);
  box-shadow: 9px 9px 0 var(--card-shadow);
  transition-delay: 0ms !important;
}

.itinerary-column:nth-child(2) .itinerary-card.reveal.is-visible:hover {
  transform: translateY(-9px) scale(1.015);
  box-shadow: 0 10px 0 var(--card-shadow);
  transition-delay: 0ms !important;
}

.itinerary-column:nth-child(3) .itinerary-card.reveal.is-visible:hover {
  transform: translate(5px, -5px) rotate(1.2deg);
  box-shadow: -9px 9px 0 var(--card-shadow);
  transition-delay: 0ms !important;
}

/* LAYOUT RESET */
.home .container.main {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.container.layout {
  max-width: 100%;
  padding: 0;
}

.container.layout .row.layout {
  margin: 0;
}

.container.layout .row.layout > .cols {
  overflow-x: hidden;
}

.home .container.layout .row.layout > .cols {
  padding: 0;
}

.pages .main-wrapper .container.main {
  padding: 24px 16px;
  max-width: 1240px;
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
}

/* TABLE RESET */
table { margin: 32px 0; }

table th, table td {
  border-color: var(--border-color) !important;
  padding: 8px 16px !important;
}

table td {
  color: var(--text) !important;
}

table th {
  background: var(--primary-500) !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: bold !important;
}

table tbody tr:nth-child(even) td {
  background: var(--surface-100) !important;
}

@media (max-width: 992px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    border: 0 !important;
  }
}

/* CONTACT US FORM */
#contact-form {
  margin: 45px auto 0;
  max-width: 500px;
}

#contact-form input,
#contact-form textarea {
  flex: 1;
  border: 2px solid var(--gray-300);
  border-radius: 6px;
  outline: 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text);
  min-width: 100%;
}

#contact-form input:active,
#contact-form input:focus,
#contact-form textarea:active,
#contact-form textarea:focus {
  border: 2px solid var(--primary-500);
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: var(--gray-600);
}

#contact-form button {
  background: var(--primary-500);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
  width: 100%;
}

#contact-form button:hover {
  background: var(--accent-500);
}

/* ═══════════════════════════════════
           WIDGETS
═══════════════════════════════════ */

/* IMAGE STYLE RESET */
.item-current-image img {
  box-shadow: none !important;
  border-radius: 4px !important;
  border-color: var(--gray-300) !important;
}

/* SUBLIST */
.item-sublist a {
  width: 100%;
  height: 100%;
}

.item.item-bubbles {
  margin-bottom: 32px;
}

.item-bubbles .row {
  margin: 0;
}

.bubbles-chip {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text);
  display: flex;
  font-weight: 500;
  height: 100%;
  padding: 16px 48px 16px 24px;
  position: relative;
  transition: padding 0.2s ease-in-out;
}

.bubbles-chip:hover {
  color: var(--text);
  background: var(--surface-100);
  border-color: var(--primary-500);
  padding-left: 20px;
}

.bubbles-chip:active,
.bubbles-chip:focus {
  background: var(--primary-100);
  color: var(--text);
}

.bubbles-link {
  display: block;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
}

.bubbles-link .bubbles-outer {
  height: 100%;
  padding: 5px;
  max-width: 100%;
}

.sibling.link-button .bubbles-link .bubbles-outer,
.sibling.link-button .bubbles-chip {
  height: auto;
}

.col-gap:has(> .item-bubbles)::before {
  display: none !important;
}

.bubbles-chip::after {
  content: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.87771 7.01782H1.02042C0.737361 7.01782 0.496528 6.91886 0.297917 6.72094C0.0993056 6.52317 0 6.2833 0 6.00136C0 5.71942 0.0993056 5.4781 0.297917 5.2774C0.496528 5.07657 0.737361 4.97615 1.02042 4.97615H8.87771L5.66583 1.76428C5.46111 1.55955 5.35681 1.31719 5.35292 1.03719C5.34889 0.757332 5.45076 0.510249 5.65854 0.295943C5.86632 0.0948319 6.11014 -0.00377823 6.39 0.000110661C6.66986 0.00399955 6.91236 0.108583 7.1175 0.313861L12.0713 5.27407C12.1699 5.37282 12.2464 5.4856 12.3008 5.6124C12.3551 5.73935 12.3823 5.86865 12.3823 6.00032C12.3823 6.13199 12.3551 6.26122 12.3008 6.38803C12.2464 6.51497 12.1727 6.62497 12.0798 6.71803L7.10958 11.688C6.89403 11.9037 6.65368 12.0081 6.38854 12.0012C6.12354 11.9942 5.88715 11.8862 5.67938 11.6772C5.4716 11.4629 5.36771 11.2166 5.36771 10.9382C5.36771 10.6599 5.4716 10.4192 5.67938 10.2162L8.87771 7.01782Z' fill='%2324123f'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}

.bubbles-chip:hover::after {
  right: 10px;
}

/* SUBLIST CARDS */
.item-sublist {
  padding-top: 0 !important;
}

.item-sublist:has(.sublist.card) .row > div {
  padding: 10px !important;
}

.sublist.card {
  border: none;
  border-radius: 0;
  transition: 0.2s ease-in;
}

.sublist.card .card-img-holder {
  aspect-ratio: 16 / 9;
  position: relative;
  width: 100%;
  height: auto;
}

.sublist.card .card-img-holder img {
  position: absolute;
  border-radius: 0;
  transition: 0.2s ease-in;
}

.sublist.card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.3;
  color: var(--text);
  margin-top: 14px;
}

.sublist.card h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--text);
  margin-top: 12px;
}

.sublist.card.horizontal h5 {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--text);
  margin-top: 0;
}

.sublist.card .card-body {
  padding: 0;
}

.sublist.card:hover h2,
.sublist.card:hover h5 {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--primary-500);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.sublist.card:hover img {
  transform: scale(1.06);
}

@media (max-width: 767.98px) {
  .item-sublist:has(.sublist.card) .row > div {
    padding: 0 0 10px !important;
  }

  .item-sublist {
    padding-bottom: 0 !important;
  }

  .item-sublist:has(.horizontal) {
    margin-bottom: 20px;
  }

  .container.layout .row.layout > .cols {
    padding: 0;
  }

  .row div:has(> .sublist.card) {
    padding: 0 !important;
  }

  .row:has(> div .sublist.card) {
    margin: 0;
  }

  .sublist.card {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
  }

  .sublist.card.horizontal {
    margin-bottom: 0;
  }

  .sublist.card .card-img-top {
    border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    width: 120px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .sublist.card .card-body {
    flex: 1;
  }

  .sublist.card.horizontal .card-title {
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .sublist.card.horizontal h5 {
    font-size: 16px;
  }
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 34px, 760px);
  }

  .scroll-button {
    display: none;
  }

  .primary-nav > a[aria-current="location"] {
    color: var(--nav-orange);
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    padding: 100px 24px 40px;
    align-items: stretch;
    justify-content: flex-start;
    color: var(--nav-blue);
    background: var(--white);
    flex-direction: column;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .nav-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav > a:not(.nav-cta) {
    padding: 15px 0;
    border-bottom: 1px solid rgb(91 35 133 / 34%);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(28px, 8vw, 52px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .primary-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    align-self: flex-start;
    margin-top: 24px;
    color: var(--nav-blue);
    background: var(--white);
    border-color: var(--nav-blue);
    font-size: 15px;
  }

  .nav-open .site-header,
  .nav-open .site-header.is-sticky {
    color: var(--nav-blue);
    background: var(--white);
  }

  .hero {
    min-height: 680px;
  }

  .moodboard {
    padding: 0 34px 60px;
  }

  .mood-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mood-card {
    height: 350px;
  }

  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
  }

  .itinerary-heading-group {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .itinerary-grid {
    grid-template-columns: 1fr;
  }

  .itinerary-card {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
  }

  .itinerary-card > img {
    height: 100%;
    min-height: 340px;
  }

  .collection-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .compact-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resource-directory nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compact-article-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
    --header-height: 66px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .hero {
    min-height: 620px;
    padding-bottom: 220px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgb(7 27 74 / 98%) 0%, rgb(10 48 112 / 90%) 42%, rgb(24 89 172 / 48%) 88%);
  }

  .hero-backdrop {
    right: 50%;
    bottom: 255px;
    width: 920px;
    max-width: none;
    object-position: bottom center;
    opacity: 0.58;
    transform: translateX(50%);
  }

  .hero-art {
    right: auto;
    left: 90%;
    bottom: 120px;
    height: min(710px, 170%);
    object-position: bottom center;
    transform: translateX(-50%);
    opacity: 0.7;
  }

  .hero h1 {
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: clamp(60px, 16vw, 92px);
    line-height: 0.82;
  }

  .hero h1 br {
    display: none;
  }

  .hero-title-line {
    font-size: 0.48em;
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .hero-copy {
    width: auto;
    max-width: 330px;
    margin: 16px 0 0;
    padding-left: 0;
    font-size: clamp(13px, 3.7vw, 15px);
    white-space: normal;
  }

  .moodboard {
    width: calc(100% - 20px);
    margin-top: -180px;
    padding: 0 18px 12px;
    box-shadow: none;
  }

  .mood-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 3px 3px 0;
  }

  .mood-card,
  .mood-card:nth-child(2),
  .mood-card:nth-child(-n + 2) {
    width: 100%;
    height: 300px;
    border: 0;
  }

  .mood-card::after {
    background: linear-gradient(0deg, rgb(36 18 63 / 100%) 0%, rgb(50 20 88 / 18%) 62%);
  }

  .section {
    padding: 76px 0;
  }

  .section--compact {
    padding-block: 58px;
  }

  .moodboard + .discovery-section {
    padding-top: 36px;
  }

  .discovery-section + .discovery-section {
    padding-top: 36px;
  }

  .section-heading {
    flex-wrap: wrap;
    gap: 18px;
    align-items: end;
    margin-bottom: 28px;
  }

  .section-heading h2,
  .section h2 {
    font-size: 43px;
  }

  .section-lede {
    font-size: 15px;
  }

  .card-row {
    width: 100%;
    grid-auto-columns: 79vw;
  }

  .story-tile {
    height: 350px;
  }

  .carousel-controls {
    display: none;
  }

  .scroll-button {
    width: 44px;
    height: 44px;
  }

  .destination-row {
    grid-auto-columns: 76vw;
  }

  .place-card {
    height: 350px;
  }

  .activity-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
    gap: 16px;
  }

  .activity-card--wide {
    grid-column: auto;
  }

  .activity-card strong {
    font-size: 29px;
  }

  .section-heading--editorial {
    display: block;
    min-height: 0;
    margin-bottom: 36px;
  }

  .editorial-section {
    padding: 25px 0 76px;
  }

  .editorial-section::before {
    height: 300px;
  }

  .editorial-section > .page-shell {
    padding-top: 0;
  }

  .section-heading--editorial > div {
    padding-left: 18px;
  }

  .section-heading--editorial > div::before {
    width: 5px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .article-card h3,
  .article-card .article-card-heading {
    font-size: 25px;
  }

  .itinerary-heading-group h2 {
    font-size: 48px;
  }

  .itinerary-heading-group p {
    font-size: 15px;
  }

  .itinerary-card {
    display: block;
    min-height: 0;
  }

  .itinerary-card > img {
    height: 210px;
    min-height: 0;
  }

  .article-collection {
    padding: 68px 0;
  }

  .article-collection h2 {
    font-size: 51px;
  }

  .compact-article-grid {
    grid-template-columns: 1fr;
  }

  .compact-article-card {
    min-height: 0;
  }

  .compact-article-card:first-child {
    grid-column: auto;
    min-height: 0;
  }

  .topic-directory {
    padding: 58px 0 66px;
  }

  .topic-links {
    gap: 10px;
  }

  .topic-links a {
    min-height: 46px;
    padding: 10px 17px;
    font-size: 14px;
  }

  .resource-directory {
    margin-top: 42px;
  }

  .resource-directory nav {
    gap: 9px 18px;
  }

  .resource-directory a {
    width: auto;
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (min-width: 621px) and (max-width: 669px) {
  .hero-art {
    right: -33vw;
  }
}

@media (min-width: 670px) and (max-width: 789px) {
  .hero-art {
    right: -28vw;
  }
}

@media (min-width: 790px) and (max-width: 1100px) {
  .hero-art {
    right: -12vw;
  }
}

@media (max-width: 620px) {
  .hero::before {
    position: absolute;
    z-index: 1;
    inset: 14% 0 0;
    content: "";
    background: linear-gradient(0deg, rgb(7 27 74 / 98%) 46%, rgb(24 89 172 / 34%) 76%, transparent 100%);
    pointer-events: none;
  }

  .hero-art {
    z-index: 0;
  }

  .hero-content {
    z-index: 2;
    text-align: center;
  }

  .hero h1 {
    align-items: center;
  }

  .hero-copy {
    margin-inline: auto;
  }
}

@media (min-width: 411px) and (max-width: 620px) {
  .hero-art {
    right: auto;
    left: 57%;
    bottom: 170px;
    height: min(520px, 170%);
    object-position: bottom center;
    transform: translateX(-50%);
    opacity: 1;
  }
}

@media (max-width: 410px) {
  .hero-art {
    z-index: 0;
    right: auto;
    left: 54%;
    bottom: 230px;
    height: min(416px, 167%);
    object-position: bottom center;
    transform: translateX(-50%);
    opacity: 1;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
