@layer reset,tokens,base,layout,components,responsive;
@layer reset {
  * {
    box-sizing: border-box;
  }
  body,
  h1,
  h2,
  h3,
  p,
  figure,
  dl,
  dd {
    margin: 0;
  }
  button,
  input {
    font: inherit;
  }
  img,
  svg {
    max-width: 100%;
  }
  a {
    color: inherit;
  }
  button,
  summary {
    cursor: pointer;
  }
  [hidden] {
    display: none !important;
  }
}
@layer tokens {
  :root {
    --ink: #203c37;
    --muted: #617069;
    --paper: #f8f7f2;
    --white: #fffefa;
    --teal: #173f3a;
    --line: #d9ded3;
    --lime: #d9ed9c;
    --sand: #efeee4;
    --accent: #bd603e;
    --body:
      ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --editorial: Georgia, "Times New Roman", serif;
    --container: 1240px;
    --article: 720px;
    --radius: 5px;
    --s1: 8px;
    --s2: 16px;
    --s3: 24px;
    --s4: 32px;
    --s5: 48px;
    --s6: 72px;
    --s7: 96px;
  }
}
@layer base {
  body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  a {
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  button,
  a,
  input,
  summary {
    touch-action: manipulation;
  }
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  summary:focus-visible,
  [tabindex]:focus-visible {
    outline: 3px solid #ab592f;
    outline-offset: 4px;
  }
  h1,
  h2,
  h3 {
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.035em;
  }
  h1,
  h2 {
    font-family: var(--editorial);
  }
  h1 {
    font-size: clamp(2.5rem, 5vw, 4.6rem);
  }
  h2 {
    font-size: clamp(1.8rem, 3vw, 2.65rem);
  }
  h3 {
    font-size: 1.25rem;
  }
  p {
    color: var(--muted);
  }
  svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  small,
  .small {
    font-size: 0.78rem;
    color: var(--muted);
  }
  em {
    font-weight: 400;
  }
  ::selection {
    background: var(--lime);
    color: var(--teal);
  }
  .sr-only,
  .skip:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
  .skip:focus {
    position: fixed;
    z-index: 20;
    left: 20px;
    top: 10px;
    background: var(--lime);
    padding: 12px;
  }
  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    font-weight: 650;
    text-transform: uppercase;
    line-height: 1.5;
    color: var(--muted);
  }
  .text-link {
    font-size: 0.83rem;
    font-weight: 600;
    display: inline-flex;
    gap: 16px;
    align-items: center;
  }
  .button {
    display: inline-flex;
    justify-content: center;
    gap: 24px;
    align-items: center;
    background: var(--teal);
    color: var(--white);
    padding: 14px 22px;
    border: 0;
    border-radius: var(--radius);
  }
  .button:hover {
    background: #28534b;
  }
  .status-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    margin-right: 9px;
  }
}
@layer layout {
  .container {
    width: min(calc(100% - 96px), var(--container));
    margin-inline: auto;
  }
  .section {
    padding-block: var(--s6);
  }
  .site-header {
    border-bottom: 1px solid var(--line);
  }
  .header-inner {
    width: min(calc(100% - 96px), var(--container));
    margin: auto;
    height: 94px;
    display: flex;
    align-items: center;
    gap: 48px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.38rem;
    font-weight: 600;
    letter-spacing: -0.065em;
    white-space: nowrap;
  }
  .logo svg {
    width: 29px;
    height: 34px;
  }
  .logo-dot {
    color: var(--accent);
  }
  .desktop-nav {
    display: flex;
    gap: 30px;
    margin-left: auto;
  }
  .desktop-nav a,
  .header-search {
    font-size: 0.79rem;
  }
  .header-search {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-left: 26px;
    border-left: 1px solid var(--line);
  }
  .header-search svg {
    width: 18px;
  }
  .mobile-nav {
    display: none;
  }
  .hero {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
    padding-block: 68px 58px;
  }
  .hero h1 {
    font-size: clamp(3.5rem, 5.8vw, 5.8rem);
    line-height: 1.02;
    margin: 22px 0 26px;
    letter-spacing: -0.055em;
  }
  .hero h1 em {
    color: #467064;
  }
  .hero-intro {
    font-size: 0.97rem;
    line-height: 1.7;
  }
  .hero-copy {
    min-width: 0;
  }
  .hero-suggestions {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 0.74rem;
    margin-top: 13px;
    flex-wrap: wrap;
  }
  .hero-suggestions > span {
    color: var(--muted);
  }
  .hero-suggestions a {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .world-window {
    align-self: stretch;
    max-height: 520px;
    min-height: 430px;
    background: var(--teal);
    color: #c5d3bf;
    border-radius: 170px 170px 4px 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 6px;
    padding: 50px 28px 24px;
    overflow: hidden;
  }
  .world-window > svg {
    width: 100%;
    height: 0;
    min-height: 0;
    flex: 1 1 0;
  }
  .window-meta {
    font-size: 8px;
    letter-spacing: 0.12em;
    display: flex;
    justify-content: space-between;
    margin: 22px 16px 0;
  }
  .window-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffffff26;
    padding-top: 20px;
    margin-top: -6px;
    font-family: var(--editorial);
    font-size: 1.35rem;
    line-height: 1.2;
  }
  .window-arrow {
    font-size: 2.4rem;
    color: var(--lime);
  }
  .promise-strip {
    border-block: 1px solid var(--line);
  }
  .promise-strip > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    min-height: 62px;
    font-size: 0.73rem;
  }
  .promise-strip span:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
  }
  .promise-strip svg {
    width: 19px;
  }
  .section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 30px;
  }
  .section-heading .eyebrow {
    margin-bottom: 9px;
  }
  .section-heading > .text-link {
    white-space: nowrap;
    margin-bottom: 5px;
  }
  .essentials-band {
    background: var(--sand);
    border-block: 1px solid var(--line);
  }
  .world-section {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 70px;
  }
  .world-section h2 {
    margin: 16px 0 20px;
  }
  .world-section .text-link {
    margin-top: 24px;
  }
  .collections {
    border-top: 1px solid var(--line);
  }
  .section-note {
    font-size: 0.85rem;
    margin-top: -12px;
    margin-bottom: 28px;
  }
  .editorial-note {
    padding: 45px 52px;
    margin-block: 20px 80px;
    border: 1px solid var(--line);
    display: flex;
    gap: 36px;
    background: var(--sand);
  }
  .editorial-note > span svg {
    width: 44px;
    height: 60px;
  }
  .editorial-note h2 {
    font-size: 2rem;
    margin: 8px 0 15px;
  }
  .editorial-note p:not(.eyebrow) {
    max-width: 700px;
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
  .site-footer {
    background: var(--teal);
    color: var(--white);
    padding-top: 50px;
  }
  .site-footer p,
  .site-footer .small {
    color: #b9c9c1;
  }
  .footer-grid {
    display: flex;
    justify-content: space-between;
    padding-bottom: 44px;
  }
  .footer-grid p {
    margin-top: 14px;
    font-size: 0.9rem;
  }
  .footer-grid nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 50px;
    font-size: 0.8rem;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ffffff25;
    padding-block: 20px;
    font-size: 0.7rem;
    color: #b9c9c1;
  }
  .breadcrumbs {
    padding-top: 26px;
    font-size: 0.72rem;
    color: var(--muted);
  }
  .breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
  }
  .breadcrumbs li:not(:last-child):after {
    content: "›";
    margin-left: 8px;
  }
  .page-intro {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .page-intro h1 {
    margin: 14px 0 22px;
  }
  .page-intro > p,
  .page-intro > div > p:not(.eyebrow) {
    max-width: 670px;
  }
  .page-intro .destination-search {
    max-width: 650px;
  }
  .portal-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  .country-stamp {
    border: 1px solid var(--line);
    border-radius: 60px 60px 0 0;
    min-width: 160px;
    padding: 35px 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .country-stamp > span {
    font-size: 2.4rem;
    font-family: var(--editorial);
  }
  .country-stamp small {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }
  .city-coordinates {
    font-family: var(--editorial);
    font-size: 1.8rem;
    color: var(--muted);
    white-space: nowrap;
  }
  .article-shell {
    display: grid;
    grid-template-columns: minmax(0, var(--article)) 240px;
    gap: 70px;
    justify-content: center;
    padding-top: 38px;
  }
  .article {
    min-width: 0;
  }
  .article-header h1 {
    font-size: clamp(2.1rem, 3.7vw, 3.35rem);
    margin: 16px 0 22px;
    line-height: 1.12;
  }
  .article-deck {
    font-size: 1.08rem;
    line-height: 1.65;
  }
  .byline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-block: 22px;
    font-size: 0.72rem;
    color: var(--muted);
  }
  .article-sidebar {
    padding-top: 12px;
    align-self: start;
    position: sticky;
    top: 28px;
  }
  .article-sidebar nav {
    display: grid;
    gap: 15px;
    margin: 20px 0 30px;
    font-size: 0.8rem;
  }
  .sidebar-destination {
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }
  .sidebar-destination h3 {
    font-family: var(--editorial);
    font-size: 1.9rem;
    margin: 10px 0 18px;
  }
  .sidebar-destination a {
    display: block;
    font-size: 0.8rem;
    margin: 12px 0;
  }
  .destination-cta {
    margin-bottom: 72px;
    background: var(--sand);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .destination-cta h2 {
    margin-top: 10px;
  }
}
@layer components {
  .destination-search {
    margin-top: 30px;
    position: relative;
  }
  .destination-search label {
    display: block;
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .search-field {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid #aebcb2;
    border-radius: var(--radius);
    padding: 7px 7px 7px 17px;
    min-height: 62px;
    box-shadow: 0 4px 12px #173f3a05;
  }
  .search-field svg {
    width: 20px;
  }
  .search-field input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    font-size: 0.86rem;
    color: var(--ink);
    padding: 10px 0;
  }
  .search-field input:focus {
    outline-offset: 1px;
  }
  .search-field button {
    background: var(--teal);
    color: var(--white);
    border: 0;
    border-radius: 3px;
    padding: 12px 20px;
    display: flex;
    gap: 18px;
    font-size: 0.8rem;
    white-space: nowrap;
    min-height: 46px;
  }
  .destination-search #search-help {
    margin-top: 6px;
  }
  .search-results {
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 14px 30px #173f3a18;
    max-height: 380px;
    overflow: auto;
    border-radius: var(--radius);
  }
  .search-results > a {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 10px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--line);
    min-height: 62px;
  }
  .search-results > a strong {
    font-size: 0.9rem;
  }
  .search-results > a > span:first-of-type {
    font-size: 0.72rem;
    color: var(--muted);
    grid-row: 2;
  }
  .search-results > a > span:last-child {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }
  .search-results > a:hover,
  .search-results > a:focus {
    background: var(--sand);
    text-decoration: none;
  }
  .search-results > p {
    padding: 20px;
  }
  .city-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 13px;
  }
  .city-tile {
    padding: 22px 18px 18px;
    border: 1px solid var(--line);
    position: relative;
    min-height: 154px;
    background: #e9eee3;
    display: flex;
    flex-direction: column;
    transition: background 0.15s;
  }
  .city-tile:before {
    content: "";
    position: absolute;
    right: 12px;
    top: 16px;
    width: 36px;
    height: 48px;
    border: 1px solid #173f3a12;
    border-radius: 22px 22px 0 0;
  }
  .city-tile:hover {
    background: #dce7d5;
    text-decoration: none;
  }
  .city-tile h3 {
    font-family: var(--editorial);
    font-size: 1.65rem;
    margin: 13px 0 24px;
    position: relative;
    overflow-wrap: anywhere;
  }
  .city-tile .eyebrow {
    font-size: 0.58rem;
    max-width: calc(100% - 25px);
  }
  .tone-1 {
    background: #eeeade;
  }
  .tone-2 {
    background: #e4eceb;
  }
  .tone-3 {
    background: #efe6dd;
  }
  .tile-bottom {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: flex-end;
    margin-top: auto;
    font-size: 0.65rem;
    color: #4b6257;
  }
  .tile-bottom > span:last-child {
    font-size: 1.3rem;
    line-height: 1;
  }
  .topic-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #cdd4c7;
    border-left: 1px solid #cdd4c7;
  }
  .topic-grid > a {
    display: flex;
    gap: 15px;
    align-items: center;
    border-right: 1px solid #cdd4c7;
    border-bottom: 1px solid #cdd4c7;
    padding: 25px 20px;
    min-height: 82px;
    font-size: 0.85rem;
  }
  .topic-grid > a > span:last-child {
    margin-left: auto;
    font-size: 1rem;
  }
  .topic-grid > a:hover {
    background: #e1e5d7;
    text-decoration: none;
  }
  .region-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
  }
  .region-list > a {
    display: flex;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    font-size: 1rem;
  }
  .region-list > a > span:last-child {
    margin-left: auto;
  }
  .region-number {
    font-size: 0.65rem;
    color: var(--muted);
  }
  .collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 32px;
  }
  .collection-grid > a {
    display: block;
    position: relative;
    border-top: 1px solid var(--line);
    padding: 22px 20px 25px 0;
  }
  .collection-number {
    font-family: var(--editorial);
    font-size: 0.95rem;
    color: #8b9588;
  }
  .collection-grid h3 {
    font-family: var(--editorial);
    font-size: 1.48rem;
    margin: 14px 0 9px;
  }
  .collection-grid p {
    font-size: 0.8rem;
    max-width: 90%;
  }
  .collection-grid a > span:last-child {
    position: absolute;
    right: 0;
    bottom: 25px;
  }
  .guide-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }
  .guide-list article {
    border-top: 1px solid var(--line);
    padding: 25px 0;
  }
  .guide-list h3 {
    font-family: var(--editorial);
    font-size: 1.55rem;
    line-height: 1.25;
    margin: 12px 0;
  }
  .guide-list h3 a > span {
    font-family: var(--body);
    font-size: 1rem;
    margin-left: 6px;
  }
  .guide-list p {
    font-size: 0.87rem;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  .guide-list .eyebrow {
    font-size: 0.6rem;
  }
  .region-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .region-pills a {
    border: 1px solid var(--line);
    padding: 10px 15px;
    font-size: 0.78rem;
    min-height: 44px;
  }
  .region-pills a[aria-current],
  .region-pills a:hover {
    background: var(--teal);
    color: var(--white);
    text-decoration: none;
  }
  .directory {
    padding-top: 0;
  }
  .directory-region {
    margin-top: 50px;
  }
  .directory-region h2 {
    font-size: 2rem;
  }
  .country-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 30px;
  }
  .country-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.86rem;
    min-height: 54px;
  }
  .country-list small {
    display: block;
    font-size: 0.63rem;
  }
  .facts-panel {
    border: 1px solid var(--line);
    background: var(--sand);
    padding: 25px 30px;
  }
  .facts-panel dl {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
  }
  .facts-panel dt,
  .at-a-glance dt {
    font-size: 0.63rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .facts-panel dd {
    font-size: 0.95rem;
    overflow-wrap: anywhere;
  }
  .facts-panel > .small {
    border-top: 1px solid var(--line);
    padding-top: 15px;
    margin-top: 20px;
  }
  .facts-panel a {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .status-label {
    display: inline-block;
    font-size: 0.7rem;
    border-left: 2px solid var(--accent);
    padding-left: 10px;
    color: var(--muted);
    margin-top: 23px;
  }
  .more-cities {
    margin-top: 25px;
  }
  .more-cities summary {
    padding: 12px 0;
    font-size: 0.9rem;
  }
  .empty-state {
    padding: 30px;
    border: 1px solid var(--line);
    max-width: 750px;
  }
  .empty-state h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  .empty-state p {
    margin-bottom: 14px;
  }
  .empty-state .text-link {
    margin-top: 8px;
  }
  .verification-banner {
    border: 1px solid #ddc7a9;
    background: #f4eddf;
    padding: 14px 18px;
    display: grid;
    gap: 4px;
    font-size: 0.78rem;
    color: #725732;
    margin-bottom: 30px;
  }
  .callout {
    padding: 24px 28px;
    border-left: 3px solid #8b9e89;
    background: var(--sand);
    margin: 28px 0;
  }
  .callout .eyebrow {
    margin-bottom: 12px;
  }
  .callout p:not(.eyebrow) {
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.75;
  }
  .quick-answer {
    background: #e7edde;
    border-color: #467064;
  }
  .quick-answer > .eyebrow {
    color: var(--teal);
  }
  .warning,
  .important-note {
    background: #f5eddf;
    border-color: #b77a43;
  }
  .at-a-glance {
    border-block: 1px solid var(--line);
    padding-block: 23px;
    margin-block: 28px;
  }
  .at-a-glance h2 {
    font: 600 0.7rem var(--body);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }
  .at-a-glance dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .at-a-glance dd {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .article-body {
    font-size: 1.04rem;
    line-height: 1.85;
  }
  .article-body p {
    margin: 16px 0;
    color: #3d4d44;
  }
  .article-body h2,
  .faq h2,
  .verification h2 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin: 42px 0 20px;
    scroll-margin-top: 24px;
  }
  .article-body h3 {
    font-size: 1.2rem;
    margin: 28px 0 14px;
  }
  .article-body li {
    padding-left: 4px;
    margin: 9px 0;
    color: #3d4d44;
  }
  .article-body a {
    text-decoration: underline;
  }
  .table-scroll {
    max-width: 100%;
    overflow: auto;
    border: 1px solid var(--line);
    margin: 25px 0;
  }
  table {
    border-collapse: collapse;
    text-align: left;
    width: 100%;
    font-size: 0.86rem;
    line-height: 1.6;
  }
  th {
    background: var(--sand);
    font-weight: 600;
  }
  td,
  th {
    padding: 15px 16px;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
    min-width: 125px;
  }
  tr:last-child td {
    border-bottom: 0;
  }
  .faq details {
    border-bottom: 1px solid var(--line);
    padding-block: 18px;
  }
  .faq summary {
    font-size: 0.95rem;
    font-weight: 500;
    min-height: 30px;
  }
  .faq details p {
    margin-top: 16px;
    font-size: 0.92rem;
  }
  .verification {
    border-top: 1px solid var(--line);
    margin-top: 42px;
    padding-top: 30px;
  }
  .verification h2 {
    font-size: 1.65rem;
    margin: 12px 0 18px;
  }
  .verification > p {
    font-size: 0.85rem;
  }
  .verification ol {
    padding-left: 22px;
  }
  .verification li {
    padding: 8px 0;
    font-size: 0.85rem;
  }
  .verification li span {
    display: block;
    color: var(--muted);
    font-size: 0.73rem;
  }
  .prose {
    max-width: 760px;
    padding-bottom: 80px;
  }
  .prose h2 {
    font-size: 1.9rem;
    margin: 36px 0 20px;
  }
  .prose p {
    margin: 16px 0;
  }
  .prose a {
    text-decoration: underline;
  }
  .prose li {
    margin-block: 10px;
  }
  .ad-slot {
    min-height: 250px;
  }
  .article figure img {
    width: 100%;
    height: auto;
  }
  .article figcaption {
    font-size: 0.8rem;
    color: var(--muted);
  }
}
@layer responsive {
  @media (min-width: 1600px) {
    .hero {
      gap: 100px;
    }
    .world-window {
      max-height: 540px;
    }
  }
  @media (max-width: 1100px) {
    .container,
    .header-inner {
      width: calc(100% - 56px);
    }
    .header-inner {
      gap: 24px;
    }
    .desktop-nav {
      gap: 20px;
    }
    .header-search span {
      display: none;
    }
    .hero {
      gap: 35px;
    }
    .world-window {
      min-height: 400px;
    }
    .hero h1 {
      font-size: 4.3rem;
    }
    .city-grid {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .city-tile {
      padding: 18px 12px;
    }
    .city-tile h3 {
      font-size: 1.4rem;
    }
    .article-shell {
      gap: 40px;
      grid-template-columns: minmax(0, 720px) 200px;
    }
    .topic-grid > a {
      padding: 22px 14px;
      gap: 10px;
    }
    .world-section {
      gap: 35px;
    }
  }
  @media (max-width: 800px) {
    .desktop-nav,
    .header-search span {
      display: none;
    }
    .header-search {
      margin-left: auto;
      border: 0;
      padding: 10px;
    }
    .mobile-nav {
      display: block;
      font-size: 0.85rem;
      position: relative;
    }
    .mobile-nav summary {
      padding: 12px;
    }
    .mobile-nav nav {
      position: absolute;
      top: 100%;
      right: 0;
      width: 220px;
      z-index: 15;
      display: grid;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 8px 15px #0001;
    }
    .mobile-nav nav a {
      padding: 13px 20px;
    }
    .header-inner {
      height: 78px;
      gap: 12px;
    }
    .hero {
      grid-template-columns: 1fr 0.75fr;
      gap: 25px;
      padding-block: 45px;
    }
    .hero h1 {
      font-size: 3.8rem;
    }
    .world-window {
      min-height: 350px;
      padding: 35px 18px 22px;
    }
    .window-meta {
      font-size: 6px;
      display: block;
    }
    .window-meta span:last-child {
      display: none;
    }
    .window-bottom {
      font-size: 1rem;
    }
    .search-field button {
      padding: 12px;
    }
    .hero-suggestions {
      gap: 13px;
    }
    .promise-strip > .container {
      flex-wrap: wrap;
      gap: 10px 22px;
      padding-block: 15px;
    }
    .promise-strip span {
      font-size: 0.68rem;
    }
    .city-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .topic-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .world-section {
      grid-template-columns: 1fr;
    }
    .world-section br {
      display: none;
    }
    .world-section > div:first-child p:not(.eyebrow) {
      display: inline;
    }
    .world-section .text-link {
      display: flex;
    }
    .collection-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .country-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .article-shell {
      display: block;
      max-width: 760px;
    }
    .article-sidebar {
      display: none;
    }
    .footer-grid {
      gap: 30px;
    }
    .footer-grid nav {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .facts-panel dl {
      grid-template-columns: 1fr 1fr;
    }
    .section {
      padding-block: 48px;
    }
  }
  @media (max-width: 560px) {
    .container,
    .header-inner {
      width: calc(100% - 36px);
    }
    .logo {
      font-size: 1.2rem;
    }
    .logo svg {
      width: 25px;
    }
    .hero {
      display: block;
      padding-top: 35px;
      padding-bottom: 35px;
    }
    .hero h1 {
      font-size: 3.85rem;
      margin-top: 20px;
    }
    .hero-intro {
      font-size: 0.92rem;
    }
    .world-window {
      display: none;
    }
    .hero .eyebrow {
      font-size: 0.57rem;
    }
    .search-field {
      gap: 9px;
      padding-left: 12px;
    }
    .search-field input {
      font-size: 0.8rem;
    }
    .search-field button {
      font-size: 0.75rem;
      padding: 12px 14px;
      gap: 8px;
    }
    .search-field > svg {
      width: 18px;
    }
    .promise-strip > .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .promise-strip span:first-child {
      grid-column: 1 / -1;
    }
    .promise-strip span:last-child {
      display: none;
    }
    .section-heading {
      align-items: start;
      gap: 17px;
      flex-direction: column;
      margin-bottom: 24px;
    }
    .section-heading h2 {
      font-size: 2rem;
    }
    .section-heading .eyebrow {
      font-size: 0.59rem;
    }
    .city-grid {
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .city-tile {
      min-height: 145px;
      padding: 18px 14px;
    }
    .city-tile h3 {
      font-size: 1.55rem;
    }
    .tile-bottom {
      font-size: 0.6rem;
    }
    .topic-grid > a {
      padding: 20px 14px;
      font-size: 0.76rem;
      gap: 12px;
      min-height: 85px;
    }
    .topic-grid svg {
      width: 22px;
    }
    .topic-grid > a > span:last-child {
      display: none;
    }
    .region-list {
      column-gap: 22px;
    }
    .region-list > a {
      font-size: 0.85rem;
      gap: 10px;
    }
    .region-number {
      font-size: 0.56rem;
    }
    .world-section {
      gap: 28px;
    }
    .collection-grid {
      gap: 0 22px;
    }
    .collection-grid h3 {
      font-size: 1.3rem;
    }
    .collection-grid p {
      font-size: 0.75rem;
    }
    .guide-list {
      grid-template-columns: 1fr;
    }
    .guide-list h3 {
      font-size: 1.5rem;
    }
    .editorial-note {
      padding: 25px;
      gap: 15px;
      margin-bottom: 45px;
    }
    .editorial-note > span {
      display: none;
    }
    .editorial-note h2 {
      font-size: 1.7rem;
    }
    .footer-grid {
      flex-direction: column;
      padding-bottom: 35px;
    }
    .footer-grid nav {
      grid-template-columns: 1fr 1fr;
      font-size: 0.74rem;
      gap: 16px 20px;
    }
    .footer-bottom {
      gap: 15px;
      align-items: flex-start;
      flex-direction: column;
    }
    .portal-intro {
      align-items: flex-start;
    }
    .country-stamp {
      display: none;
    }
    .city-coordinates {
      display: none;
    }
    .page-intro {
      padding-block: 28px 34px;
    }
    .page-intro h1 {
      font-size: 3rem;
    }
    .page-intro p {
      font-size: 0.95rem;
    }
    .facts-panel {
      padding: 22px 20px;
    }
    .facts-panel dl {
      gap: 20px 15px;
    }
    .facts-panel dd {
      font-size: 0.88rem;
    }
    .facts-panel .small {
      font-size: 0.68rem;
    }
    .country-list {
      grid-template-columns: 1fr;
    }
    .country-list a {
      font-size: 0.9rem;
    }
    .region-pills {
      gap: 7px;
    }
    .region-pills a {
      padding: 10px 12px;
      font-size: 0.72rem;
    }
    .article-header h1 {
      font-size: 2.35rem;
    }
    .article-deck {
      font-size: 1rem;
    }
    .article-body {
      font-size: 1rem;
    }
    .callout {
      padding: 22px;
    }
    .callout p:not(.eyebrow) {
      font-size: 0.96rem;
    }
    .at-a-glance dl {
      grid-template-columns: 1fr;
      gap: 17px;
    }
    .at-a-glance dl > div {
      display: grid;
      grid-template-columns: 100px 1fr;
      gap: 15px;
    }
    .article-body h2 {
      font-size: 1.75rem;
    }
    .article-shell {
      padding-top: 28px;
    }
    .destination-cta {
      padding: 28px;
      flex-direction: column;
      align-items: flex-start;
    }
    .verification-banner {
      font-size: 0.73rem;
    }
    .empty-state {
      padding: 24px;
    }
    .desktop-only {
      display: none;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    * {
      scroll-behavior: auto !important;
      transition: none !important;
    }
  }
}
