:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f1fbff;
  --surface-tint: #ebf8ff;
  --text: #16384c;
  --muted: #60798b;
  --primary: #1491d0;
  --primary-strong: #0b72b8;
  --accent: #ffc94d;
  --sea: #5dcbe6;
  --line: rgba(22, 56, 76, 0.1);
  --line-strong: rgba(22, 56, 76, 0.18);
  --shadow-sm: 0 10px 24px rgba(17, 68, 96, 0.06);
  --shadow-md: 0 18px 38px rgba(17, 68, 96, 0.1);
  --shadow-lg: 0 24px 60px rgba(17, 68, 96, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --content-width: min(1260px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(93, 203, 230, 0.1), transparent 20%),
    radial-gradient(circle at 100% 0, rgba(255, 201, 77, 0.1), transparent 16%),
    #ffffff;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
}

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

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

[hidden] {
  display: none !important;
}

p {
  margin: 0 0 1em;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.45em;
  font-family: "Baskerville", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.skip-link,
.screen-reader-text {
  position: absolute;
  left: -9999px;
}

.skip-link:focus,
.screen-reader-text:focus {
  left: 16px;
  top: 16px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--primary-strong);
  color: #fff;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(36, 56, 66, 0.08);
}

.site-header__bar,
.section,
.travel-hero__inner,
.page-hero__inner,
.page-hero__grid,
.report-layout,
.collection-layout,
.content-shell__inner,
.single-hero__inner,
.site-footer__inner {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header__bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
}

.site-branding {
  display: grid;
  gap: 6px;
  flex: 0 0 auto;
}

.site-branding__link {
  display: inline-grid;
  gap: 4px;
}

.site-branding__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.site-branding__title {
  font-size: clamp(1.8rem, 2.7vw, 2.7rem);
  letter-spacing: -0.04em;
}

.site-branding__description {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-header__panel {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.site-navigation .menu,
.site-menu,
.site-footer__menu {
  display: flex;
  align-items: center;
  gap: 14px 22px;
  flex-wrap: wrap;
}

.site-navigation .menu,
.site-menu {
  justify-content: center;
}

.site-navigation a,
.site-navigation li {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
}

.site-header__search {
  width: 100%;
  max-width: 340px;
  justify-self: end;
}

.site-header__toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--primary-strong);
  color: #fff;
  font-weight: 700;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid rgba(36, 56, 66, 0.08);
  box-shadow: var(--shadow-sm);
}

.search-form__field {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.96rem;
  min-height: 40px;
  padding: 0;
}

.search-form__suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(36, 56, 66, 0.08);
  box-shadow: var(--shadow-lg);
}

.search-form__suggestions[hidden] {
  display: none !important;
}

.search-suggestion {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(36, 56, 66, 0.06);
}

.search-suggestion strong {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.35;
}

.search-suggestion__meta,
.search-suggestion__excerpt {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.search-suggestion.is-active,
.search-suggestion:hover {
  border-color: rgba(20, 145, 208, 0.18);
  background: rgba(20, 145, 208, 0.08);
}

.search-form__button,
.button,
.travel-search__tab,
.travel-search__submit,
.travel-search__reset,
.newsletter-panel__form button,
.site-footer__newsletter-form button,
.guide-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button:hover,
.search-form__button:hover,
.travel-search__tab:hover,
.travel-search__submit:hover,
.travel-search__reset:hover,
.newsletter-panel__form button:hover,
.site-footer__newsletter-form button:hover,
.guide-card__cta:hover {
  transform: translateY(-2px);
}

.search-form__button,
.button--primary,
.travel-search__submit,
.newsletter-panel__form button,
.site-footer__newsletter-form button {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #0f86cb 55%, var(--sea));
  box-shadow: var(--shadow-sm);
}

.button {
  padding: 14px 22px;
}

.button--ghost,
.travel-search__reset,
.guide-card__cta {
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--primary-strong);
}

.site-content {
  padding-bottom: 40px;
}

.section,
.travel-hero,
.page-hero,
.single-hero,
.content-shell {
  margin-top: 24px;
}

.section__heading {
  display: grid;
  gap: 10px;
  align-items: start;
  justify-items: start;
  max-width: 980px;
  margin-bottom: 18px;
}

.section__heading--compact {
  margin-bottom: 14px;
}

.section-kicker,
.story-card__tag,
.destination-teaser__badge,
.guide-card__label,
.single-hero__pill,
.editorial-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20, 145, 208, 0.1);
  color: var(--primary-strong);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section__heading h2,
.page-hero__inner h1,
.page-hero__copy h1,
.single-hero__copy h1 {
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
}

.section__heading h2 {
  max-width: 20ch;
  margin-bottom: 0;
  line-height: 0.98;
}

.section__heading p:last-child:not(.section-kicker) {
  max-width: 42rem;
  margin: 0;
  font-size: 1rem;
}

.section__heading p:last-child,
.page-hero__description,
.single-hero__excerpt,
.site-branding__description,
.destination-teaser__body p,
.story-card__body p,
.guide-card__excerpt,
.newsletter-panel__content p,
.site-footer p,
.site-footer li,
.content-shell__inner,
.single-hero__caption,
.photo-credit {
  color: var(--muted);
}

.travel-hero__backdrop {
  position: relative;
  min-height: clamp(360px, 44vw, 540px);
  background-position: center;
  background-size: cover;
}

.travel-hero__backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 48, 72, 0.48) 0%, rgba(7, 48, 72, 0.2) 38%, rgba(7, 48, 72, 0.06) 72%, rgba(7, 48, 72, 0.02) 100%);
}

.travel-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: clamp(40px, 6vw, 74px) 0;
}

.travel-hero__copy {
  display: grid;
  gap: 22px;
  max-width: min(1120px, 72%);
  color: #fff;
}

.travel-hero__copy h1 {
  font-size: clamp(3.2rem, 5.7vw, 5.5rem);
  margin-bottom: 0;
  max-width: 20ch;
  line-height: 0.94;
  text-shadow: 0 14px 28px rgba(7, 26, 36, 0.28);
}

.travel-hero__copy h1 span {
  display: block;
  white-space: nowrap;
}

.travel-hero__copy p {
  margin: 0;
  max-width: 44rem;
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 10px 20px rgba(7, 26, 36, 0.2);
}

.travel-search {
  margin-top: 0;
  width: min(100%, 420px);
  justify-self: end;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.travel-search__guide {
  margin: 0 0 12px;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--muted);
}

.travel-search__tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.travel-search__tab {
  appearance: none;
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(36, 56, 66, 0.08);
  text-align: center;
  font-size: 0.98rem;
  font-weight: 700;
}

.travel-search__tab.is-active {
  background: rgba(20, 145, 208, 0.12);
  color: var(--primary-strong);
}

.travel-search__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.travel-search__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.travel-search__field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.travel-search__field span {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text);
}

.travel-search__field input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(36, 56, 66, 0.14);
  border-radius: 14px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
}

.travel-search__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.travel-choice-chip {
  appearance: none;
  border: 1px solid rgba(36, 56, 66, 0.1);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}

.travel-choice-chip:hover,
.travel-choice-chip.is-active {
  transform: translateY(-1px);
  background: rgba(20, 145, 208, 0.12);
  border-color: rgba(20, 145, 208, 0.22);
  color: var(--primary-strong);
}

.travel-choice-chip--destination {
  border-radius: 14px;
  padding: 10px 12px;
  min-height: 0;
  display: grid;
  justify-items: start;
  gap: 4px;
  width: 100%;
}

.travel-choice-chip__meta {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.travel-choice-empty {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.travel-builder {
  display: grid;
  gap: 12px;
}

.travel-builder__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.travel-builder__step,
.travel-builder__results {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(36, 56, 66, 0.08);
}

.travel-builder__step-head {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.travel-builder__step-head--results {
  grid-template-columns: 28px minmax(0, 1fr);
}

.travel-builder__step-head h3 {
  margin: 0 0 2px;
  font-size: 1rem;
}

.travel-builder__step-head p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted);
}

.travel-builder__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(20, 145, 208, 0.12);
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.travel-builder__choices,
.travel-builder__destinations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.travel-search__submit {
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
}

.travel-search__reset {
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
}

.travel-search__footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 14px;
  align-items: center;
}

.travel-search__status {
  margin: 0;
  font-size: 0.96rem;
}

.travel-search__status {
  font-weight: 700;
  color: var(--primary-strong);
  text-align: right;
}

.quick-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-filter-row__item {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

.quick-filter-row__item.is-active {
  background: rgba(20, 145, 208, 0.12);
  color: var(--primary-strong);
  border-color: rgba(20, 145, 208, 0.18);
}

.story-grid,
.destination-grid,
.guide-grid,
.site-footer__columns {
  display: grid;
  gap: 20px;
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card,
.destination-teaser,
.guide-card,
.newsletter-panel,
.page-hero__inner,
.page-hero__copy,
.content-shell__inner,
.single-hero__copy,
.single-hero__visual,
.report-panel,
.report-section-card,
.editorial-photo,
.source-card,
.empty-state,
.site-footer__newsletter,
.site-footer__column {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.destination-teaser,
.guide-card,
.story-card,
.report-layout__main,
.report-layout__aside,
.atlas-split__content,
.atlas-split__visual,
.collection-note,
.report-panel,
.content-shell {
  min-width: 0;
}

.story-card__media img,
.destination-teaser__media img {
  width: 100%;
  object-fit: cover;
}

.story-card__media img {
  aspect-ratio: 16 / 10;
}

.story-card__body,
.destination-teaser__body {
  padding: 18px 20px 20px;
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
}

.story-card__title {
  font-size: 1.55rem;
  margin: 0;
  line-height: 1.08;
}

.destination-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.destination-grid--atlas {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.destination-teaser__media {
  position: relative;
}

.destination-teaser__media img {
  aspect-ratio: 4 / 3;
}

.destination-teaser__badge {
  position: absolute;
  top: 14px;
  z-index: 2;
  left: 14px;
}

.destination-teaser__duration {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--primary-strong);
}

.destination-teaser__title {
  font-size: 1.34rem;
  margin: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.destination-teaser__title a,
.story-card__title a {
  display: inline;
  padding: 0;
  background: transparent;
  border: 0 !important;
  border-radius: 0;
  color: inherit !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transform: none;
  outline: 0;
}

.destination-teaser__title a:hover,
.story-card__title a:hover {
  color: var(--primary-strong);
  transform: none;
}

.destination-teaser__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.destination-teaser__meta li {
  padding: 8px 10px;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
}

.destination-teaser.is-filtered-out {
  display: none;
}

.destination-grid__empty {
  margin-top: 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.destination-grid__empty h3,
.destination-grid__empty p {
  margin: 0;
}

.destination-grid__empty p {
  margin-top: 10px;
  color: var(--muted);
}

.photo-credit {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.82rem;
  align-items: baseline;
  line-height: 1.5;
  margin-top: auto;
}

.photo-credit__name,
.guide-card__source {
  font-weight: 700;
  color: var(--primary-strong);
}

.photo-credit a,
.guide-card__media-credit a,
.single-hero__caption a,
.source-card a {
  color: var(--primary-strong);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.photo-credit__license,
.photo-credit em {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
}

.newsletter-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background:
    radial-gradient(circle at 10% 40%, rgba(255, 201, 77, 0.14), transparent 24%),
    radial-gradient(circle at 85% 30%, rgba(93, 203, 230, 0.16), transparent 20%),
    var(--surface);
}

.newsletter-panel__content h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.newsletter-panel__form {
  display: flex;
  gap: 10px;
}

.newsletter-panel__form input,
.site-footer__newsletter-form input {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(36, 56, 66, 0.14);
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.94);
}

.newsletter-panel__form button,
.site-footer__newsletter-form button {
  padding: 0 18px;
}

.guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-grid--featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}

.guide-card__media {
  padding: 16px 16px 0;
}

.guide-card__media-frame {
  display: block;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(36, 56, 66, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.guide-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.guide-card__media-credit {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 6px 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.guide-card__media-credit span {
  font-weight: 700;
  color: var(--text);
}

.guide-card__media-credit-name {
  font-weight: 600;
  color: var(--primary-strong);
}

.guide-card__media-credit em {
  font-style: normal;
  font-weight: 700;
  color: var(--primary);
}

.guide-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
}

.guide-card__topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.guide-card__title {
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  margin-top: 12px;
}

.guide-card__title a,
.collection-note strong a {
  color: inherit;
  text-decoration: none;
}

.guide-card__title a:hover,
.collection-note strong a:hover {
  color: var(--primary-strong);
}

.guide-card__cta {
  margin-top: 18px;
  align-self: flex-start;
}

.page-hero__inner,
.content-shell__inner,
.report-panel,
.report-section-card,
.source-card,
.empty-state,
.site-footer__newsletter,
.site-footer__column {
  padding: 28px;
}

.page-hero__inner--atlas {
  display: grid;
  gap: 20px;
}

.page-hero__grid,
.report-layout,
.collection-layout,
.single-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.page-hero__copy,
.single-hero__copy,
.single-hero__visual,
.report-panel,
.report-section-card,
.source-card,
.empty-state {
  display: grid;
  gap: 16px;
  align-content: start;
}

.page-hero__copy,
.single-hero__copy,
.single-hero__visual {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.page-hero__copy {
  max-width: 70rem;
}

.page-hero__copy h1 {
  max-width: 18ch;
  margin-bottom: 0;
}

.page-hero__grid--legal {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
}

.page-hero__inner--atlas .page-hero__copy h1 {
  max-width: 22ch;
}

.page-hero__description,
.single-hero__excerpt,
.single-hero__lead {
  max-width: 58rem;
}

.legal-summary-panel {
  align-self: start;
}

.legal-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.legal-meta-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid rgba(36, 56, 66, 0.08);
}

.legal-meta-card span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-strong);
}

.legal-meta-card strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
}

.legal-meta-card strong a,
.legal-section a {
  color: var(--primary-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.legal-meta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.legal-section {
  align-self: start;
}

.legal-section p {
  margin: 0;
}

.page-hero__visuals,
.collection-layout__main,
.collection-layout__aside,
.report-layout__main,
.report-layout__aside {
  display: grid;
  gap: 24px;
  align-content: start;
}

.atlas-report {
  display: grid;
  gap: 24px;
}

.atlas-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.atlas-fact {
  height: 100%;
}

.atlas-editorial-row,
.atlas-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.atlas-editorial-row--reverse .atlas-editorial-row__content,
.atlas-split--reverse .atlas-split__content {
  order: 2;
}

.atlas-editorial-row--reverse .atlas-editorial-row__visual,
.atlas-split--reverse .atlas-split__visual {
  order: 1;
}

.atlas-editorial-row__content,
.atlas-editorial-row__visual,
.atlas-split__content,
.atlas-split__visual {
  display: grid;
}

.atlas-editorial-row__content .content-shell,
.atlas-editorial-row__visual .destination-teaser,
.atlas-editorial-row__visual .editorial-photo,
.atlas-split__content .content-shell,
.atlas-split__visual .destination-teaser,
.atlas-split__visual .editorial-photo {
  height: 100%;
}

.atlas-editorial-row__content .content-shell__inner {
  max-width: none;
  height: 100%;
}

.atlas-split--text-only {
  grid-template-columns: minmax(0, 1fr);
}

.atlas-split--text-only .atlas-split__visual {
  display: none;
}

.atlas-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 24px;
  align-items: start;
}

.atlas-feature-row--reverse .atlas-feature-row__copy {
  order: 2;
}

.atlas-feature-row--reverse .atlas-feature-row__visual {
  order: 1;
}

.atlas-feature-row__copy,
.atlas-feature-row__visual {
  min-width: 0;
  display: grid;
  align-self: start;
}

.atlas-feature-row__copy {
  height: auto;
}

.atlas-feature-row__visual {
  gap: 18px;
  align-content: start;
}

.atlas-feature-row__destination {
  display: grid;
  gap: 12px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.atlas-feature-row__insights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.atlas-feature-row__insight {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid rgba(36, 56, 76, 0.08);
}

.atlas-feature-row__insight span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-strong);
}

.atlas-feature-row__insight strong {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.4;
}

.atlas-feature-row__destination strong {
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.35;
}

.atlas-feature-row__visual .editorial-photo {
  height: auto;
  padding: 0;
}

.atlas-feature-row__visual-copy {
  display: grid;
  gap: 12px;
}

.atlas-feature-row__visual-copy p {
  margin: 0;
}

.atlas-feature-row__visual-facts {
  display: grid;
  gap: 10px;
}

.atlas-feature-row__visual-fact {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid rgba(36, 56, 76, 0.08);
}

.atlas-feature-row__visual-fact span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-strong);
}

.atlas-feature-row__visual-fact strong {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.45;
}

.page-hero__visuals,
.collection-layout__aside,
.report-layout__aside {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-hero__visuals--atlas {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 0;
}

.hero-chips li,
.hero-chips a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(20, 145, 208, 0.1);
  color: var(--primary-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-chips--light li {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-chips--light a {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.single-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.single-hero__figure {
  margin: 0;
}

.single-hero__lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
}

.single-hero__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 560px;
  object-fit: cover;
  border-radius: 16px;
}

.single-hero__placeholder {
  min-height: 100%;
  padding: 34px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(93, 203, 230, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 201, 77, 0.16), transparent 26%),
    var(--surface-soft);
  display: grid;
  align-content: end;
  gap: 10px;
}

.single-hero__placeholder span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-strong);
}

.single-hero__placeholder strong {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.content-shell__inner {
  max-width: 920px;
  display: grid;
  gap: 1rem;
}

.content-shell__inner img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.content-shell__inner h2,
.content-shell__inner h3 {
  color: var(--text);
}

.content-shell__inner p,
.content-shell__inner li {
  line-height: 1.75;
}

.content-shell__inner a {
  color: var(--primary-strong);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.content-shell__inner blockquote {
  margin: 2em 0;
  padding: 22px;
  border-left: 4px solid var(--accent);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 201, 77, 0.12);
  font-family: "Baskerville", "Iowan Old Style", Georgia, serif;
  font-size: 1.16rem;
}

.source-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.source-card__grid > div {
  padding: 18px;
  border-radius: 14px;
  background: var(--surface-soft);
}

.report-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.report-highlights--stacked {
  grid-template-columns: 1fr;
}

.report-highlight {
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid rgba(36, 56, 66, 0.08);
}

.report-highlight p,
.report-section-card p,
.collection-note p,
.report-panel p:last-child:not(.section-kicker),
.editorial-photo__caption {
  margin: 0;
}

.report-section-card h2,
.report-panel h2 {
  margin-bottom: 0;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.report-section-card p {
  color: var(--muted);
  line-height: 1.75;
}

.report-facts,
.collection-notes {
  display: grid;
  gap: 12px;
}

.collection-notes--two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-fact,
.collection-note {
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid rgba(36, 56, 66, 0.08);
}

.report-fact {
  display: grid;
  gap: 6px;
}

.report-fact span,
.collection-note span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-strong);
}

.report-fact strong,
.collection-note strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
}

.collection-note p {
  color: var(--muted);
  line-height: 1.6;
}

.report-sections {
  display: grid;
  gap: 20px;
}

.editorial-gallery {
  display: grid;
  gap: 20px;
}

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

.editorial-gallery--two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editorial-gallery--three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-gallery--stacked {
  grid-template-columns: 1fr;
}

.atlas-filter-form {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.atlas-filter-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.atlas-filter-form input {
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(36, 56, 66, 0.12);
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.95);
  min-width: 0;
}

.atlas-chip-groups {
  display: grid;
  gap: 18px;
}

.atlas-chip-group {
  display: grid;
  gap: 10px;
}

.atlas-directory {
  display: grid;
  gap: 24px;
}

.atlas-directory__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.atlas-directory__group {
  display: grid;
  gap: 12px;
}

.atlas-directory__group h3 {
  margin: 0;
  font-size: 1rem;
}

.atlas-directory__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.atlas-directory__list li {
  display: grid;
  gap: 3px;
}

.atlas-directory__list a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.atlas-directory__list a:hover {
  color: var(--primary-strong);
}

.atlas-directory__list span {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.editorial-photo {
  height: 100%;
  padding: 14px;
}

.editorial-photo__frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(36, 56, 66, 0.08);
  box-shadow: var(--shadow-sm);
}

.editorial-photo__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.editorial-photo__caption {
  display: grid;
  gap: 6px;
  padding: 12px 4px 2px;
  align-content: start;
  text-wrap: pretty;
}

.editorial-photo__location {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-strong);
}

.editorial-photo__title {
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.35;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.editorial-photo__credit,
.editorial-photo__license {
  color: var(--muted);
  font-size: 0.82rem;
}

.editorial-photo__credit {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

.editorial-photo__credit a {
  color: var(--primary-strong);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.editorial-photo--feature {
  padding: 18px;
}

.editorial-photo--row .editorial-photo__image {
  aspect-ratio: 16 / 11;
}

.editorial-photo--stacked .editorial-photo__image {
  aspect-ratio: 16 / 10;
}

.report-panel .search-form {
  width: 100%;
}

.report-panel .search-form__field {
  min-width: 0;
  width: 100%;
}

.site-header__search .search-form {
  max-width: 340px;
  margin-left: auto;
}

.hero__actions--stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.report-panel--photos,
.source-card {
  grid-column: 1 / -1;
}

.magazine-bands {
  display: grid;
  gap: 24px;
}

.magazine-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: start;
}

.magazine-band--reverse .magazine-band__intro {
  order: 2;
}

.magazine-band--reverse .magazine-band__notes {
  order: 1;
}

.magazine-band__intro,
.magazine-band__notes {
  min-width: 0;
  display: grid;
  align-content: start;
  align-self: start;
}

.magazine-band__intro {
  height: auto;
}

.magazine-band__insights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.magazine-band__insight {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid rgba(36, 56, 76, 0.08);
}

.magazine-band__insight span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-strong);
}

.magazine-band__insight strong {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.4;
}

.hero-chips--soft li,
.hero-chips--soft a {
  background: var(--surface-soft);
  color: var(--text);
}

.empty-state {
  text-align: center;
}

.site-footer {
  margin-top: 44px;
  padding: 56px 0 66px;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 201, 77, 0.12), transparent 18%),
    radial-gradient(circle at 86% 14%, rgba(93, 203, 230, 0.12), transparent 18%),
    #ffffff;
  border-top: 1px solid rgba(36, 56, 66, 0.08);
}

.site-footer__inner {
  display: grid;
  gap: 22px;
}

.site-footer__eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-strong);
}

.site-footer__intro h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}

.site-footer__newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.site-footer__columns {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.site-footer__column h3,
.site-footer__newsletter h3 {
  font-size: 1.3rem;
}

.site-footer__column ul {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: var(--primary-strong);
}

.site-footer__bottom {
  display: flex;
  justify-content: flex-start;
  padding-top: 8px;
  border-top: 1px solid rgba(36, 56, 66, 0.08);
}

.site-footer__bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.pagination-wrap {
  margin-top: 24px;
}

.section__foot {
  margin-top: 24px;
}

.collection-note strong a,
.editorial-photo__credit a,
.photo-credit a {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.pagination .nav-links,
.page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-numbers {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

.js-ready [data-reveal].is-visible {
  animation: rise-in 0.65s cubic-bezier(0.21, 0.88, 0.31, 0.99) forwards;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .site-header__bar {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header__panel {
    grid-template-columns: 1fr;
  }

  .travel-search__fields,
  .destination-grid,
  .story-grid,
  .guide-grid,
  .site-footer__columns,
  .newsletter-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-grid--atlas,
  .atlas-facts,
  .atlas-editorial-row,
  .atlas-split,
  .atlas-feature-row,
  .magazine-band {
    grid-template-columns: 1fr;
  }

  .atlas-feature-row__insights,
  .magazine-band__insights,
  .collection-notes--two-up,
  .legal-meta-grid,
  .legal-sections {
    grid-template-columns: 1fr;
  }

  .page-hero__grid,
  .report-layout,
  .collection-layout,
  .single-hero__inner {
    grid-template-columns: 1fr;
  }

  .page-hero__copy h1 {
    max-width: 14ch;
  }

  .travel-hero__copy h1 {
    max-width: 16ch;
  }

  .page-hero__visuals,
  .page-hero__visuals--atlas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-gallery--three-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atlas-filter-form__row {
    grid-template-columns: 1fr;
  }

  .report-highlights {
    grid-template-columns: 1fr;
  }

  .collection-notes--two-up {
    grid-template-columns: 1fr;
  }

  .travel-hero__inner {
    align-items: start;
  }

  .travel-search__submit {
    min-height: 54px;
  }

  .section__heading h2 {
    max-width: 18ch;
  }

  .section__heading p:last-child:not(.section-kicker) {
    max-width: 44rem;
  }
}

@media (max-width: 860px) {
  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__panel {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 12px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }

  .site-header__panel.is-open {
    display: flex;
  }

  .site-navigation .menu,
  .site-menu,
  .site-footer__menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-form {
    width: 100%;
  }

  .search-form__field {
    min-width: 0;
    width: 100%;
  }

  .travel-search__fields,
  .destination-grid,
  .story-grid,
  .guide-grid,
  .site-footer__columns,
  .source-card__grid,
  .newsletter-panel {
    grid-template-columns: 1fr;
  }

  .page-hero__visuals,
  .page-hero__visuals--atlas,
  .editorial-gallery--hero,
  .editorial-gallery--three-up {
    grid-template-columns: 1fr;
  }

  .travel-search__actions {
    grid-template-columns: 1fr;
  }

  .travel-search__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-panel__form,
  .site-footer__newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .travel-hero__backdrop {
    min-height: auto;
  }

  .travel-hero__copy h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
    max-width: 10.5ch;
  }

  .travel-hero__copy h1 span {
    white-space: normal;
  }

  .travel-search__tabs {
    grid-template-columns: 1fr;
  }

  .page-hero__copy,
  .content-shell__inner,
  .single-hero__copy,
  .single-hero__visual,
  .report-panel,
  .report-section-card,
  .source-card,
  .empty-state,
  .site-footer__newsletter,
  .site-footer__column {
    padding: 20px;
  }

  .editorial-photo {
    padding: 12px;
  }

  .section-kicker,
  .story-card__tag,
  .destination-teaser__badge,
  .guide-card__label,
  .single-hero__pill,
  .editorial-chip {
    max-width: 100%;
    width: auto;
    padding: 7px 10px;
    font-size: 0.66rem;
    line-height: 1.35;
    letter-spacing: 0.08em;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    justify-content: flex-start;
    align-self: flex-start;
  }

  .destination-teaser__media {
    display: grid;
    gap: 10px;
  }

  .destination-teaser__badge {
    position: static;
    margin: 0 12px 2px;
  }

  .story-card__body,
  .destination-teaser__body,
  .guide-card__body {
    gap: 14px;
  }

  .story-card__title,
  .destination-teaser__title,
  .guide-card__title {
    font-size: 1.18rem;
    line-height: 1.12;
  }

  .destination-teaser__body p,
  .story-card__body p,
  .guide-card__excerpt {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .guide-card__topline {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    align-items: start;
    gap: 8px;
  }

  .guide-card__source,
  .photo-credit,
  .guide-card__media-credit {
    line-height: 1.45;
  }
}
