@charset "UTF-8";
/* ============================================================
   LAYOUT — Header, footer, grids, hero, world canvas,
             cloud separators, responsive breakpoints
   Source: All 6 HTML prototypes
   DO NOT add anything not present in the HTML source.
============================================================ */

/* ----------------------------------------------------------
   READING PROGRESS BAR
---------------------------------------------------------- */
#rp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 3000;
  pointer-events: none;
}

#rp-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--color-brand-primary),
    var(--color-brand-secondary)
  );
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
}

/* ----------------------------------------------------------
   MAIN HEADER — fixed, always transparent
---------------------------------------------------------- */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  padding-top: var(--safe-top);
  background: transparent;
}

/* Destinations page: header is relative (no hero image) */
/* .main-header--relative {
  position: relative;
  background: var(--color-brand-dark);
  padding-top: var(--safe-top);
  z-index: var(--z-header);
} */

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--pad-h);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ----------------------------------------------------------
   LOGO
---------------------------------------------------------- */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(0, 0, 0, 0.35));
  transition: opacity var(--dur-base);
}

.logo-link:hover {
  opacity: 0.85;
}

.logo-link img {
  width: 90px;
  height: auto;
}

/* ----------------------------------------------------------
   PRIMARY NAV
---------------------------------------------------------- */
.main-nav {
  position: fixed;
  top: calc(var(--safe-top) + var(--space-md));
  right: max(var(--pad-h), calc((100vw - var(--max-w)) / 2 + var(--pad-h)));
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
}

.nav-item {
  position: relative;
}

/* ----------------------------------------------------------
   NAV PILL
---------------------------------------------------------- */
.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  height: var(--nav-pill-h);
  padding: 0 var(--space-md);
  border-radius: var(--radius-full);
  background: var(--color-white-70);
  border: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-heading);
  cursor: pointer;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.22));
  transition:
    background var(--dur-base) var(--ease-out),
    border-radius var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

.nav-pill:hover {
  background: var(--color-white-90);
}

.nav-pill[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-color: rgba(0, 0, 0, 0.06);
  border-bottom-color: transparent;
  filter: none;
  z-index: calc(var(--z-overlay) + 1);
}

/* Destinations page: nav pill on dark background */
.main-header--relative .nav-pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white-100);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  filter: none;
}

.main-header--relative .nav-pill:hover {
  background: rgba(255, 255, 255, 0.25);
}

.search-btn {
  width: var(--nav-pill-h);
  height: var(--nav-pill-h);
  border-radius: var(--radius-full);
  background: var(--color-white-70);
  border: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.22));
  transition:
    background var(--dur-base),
    transform var(--dur-base);
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
  color: var(--color-text-heading);
}

.search-btn:hover {
  background: var(--color-white-90);
  transform: scale(1.05);
}

.search-btn svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
}

/* Destinations page search btn */
.main-header--relative .search-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  filter: none;
}

.main-header--relative .search-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.main-header--relative .search-btn svg {
  stroke: var(--color-white-100);
}

/* ----------------------------------------------------------
   MENU TOGGLE (mobile)
---------------------------------------------------------- */
.menu-toggle {
  display: none;
  position: fixed;
  top: calc(var(--safe-top) + var(--space-md));
  right: var(--pad-h);
  z-index: var(--z-header);
  width: var(--nav-pill-h);
  height: var(--nav-pill-h);
  border-radius: var(--radius-full);
  background: var(--color-white-70);
  border: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.22));
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text-heading);
}

/* ----------------------------------------------------------
   NAV DROPDOWN
---------------------------------------------------------- */
.nav-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg) 0 var(--radius-lg) var(--radius-lg);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.03),
    0 20px 40px -10px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  padding: var(--space-md);
  width: max-content;
  min-width: 360px;
  max-width: min(520px, 90vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
  z-index: var(--z-overlay);

  /* Premium Motion */
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  pointer-events: none;
  transition:
    opacity 220ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 220ms;
}

.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dd-label {
  grid-column: 1 / -1;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  padding: var(--space-xs) var(--space-xs) 0;
  margin-top: var(--space-xs);
}

.dd-country {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  background: var(--color-bg-base);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-heading);
  transition:
    background var(--dur-fast),
    transform var(--dur-fast),
    color var(--dur-fast);
  white-space: nowrap;
}

.dd-country:hover {
  background: var(--color-brand-secondary);
  color: var(--color-white-100);
  transform: translateY(-2px);
}

.dd-country.soon,
.mobile-country-item.soon {
  opacity: 0.6;
  filter: grayscale(1);
  pointer-events: none;
}

/* ----------------------------------------------------------
   MOBILE NAV DRAWER
---------------------------------------------------------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  display: flex;
  pointer-events: none;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
}

.mobile-nav-panel {
  position: relative;
  margin-left: auto;
  width: min(320px, 90vw);
  height: 100%;
  background: #18282c;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  overflow: hidden;
}

.mobile-nav.open {
  pointer-events: auto;
}

.mobile-nav.open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav.open .mobile-nav-panel {
  transform: none;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-logo {
  filter: brightness(0) invert(1);
}

.mobile-nav-logo img {
  width: 70px;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-close svg {
  stroke: var(--color-white-100);
  width: 16px;
  height: 16px;
  fill: none;
}

.mobile-nav-label {
  padding: var(--space-sm) var(--space-md) var(--space-xs);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.mobile-country-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--space-sm) var(--space-xl);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.mobile-country-scroll::-webkit-scrollbar {
  width: 4px;
}

.mobile-country-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-country-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.mobile-country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
}

.mobile-country-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--text-sm);
  min-height: 44px;
  transition: background var(--dur-base);
  -webkit-tap-highlight-color: transparent;
}

.mobile-country-item:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white-100);
}

.mobile-section-divider {
  grid-column: 1 / -1;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  padding: var(--space-md) 0 var(--space-xs);
}

.mobile-nav-footer {
  padding: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.mobile-social {
  display: flex;
  gap: var(--space-sm);
}

.mobile-social a {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-social svg {
  width: 15px;
  height: 15px;
  fill: var(--color-white-100);
}

/* ----------------------------------------------------------
   SEARCH OVERLAY
---------------------------------------------------------- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.search-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(26, 50, 56, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.search-overlay-inner {
  position: relative;
  z-index: 2;
  width: min(640px, 90vw);
  transform: translateY(24px);
  opacity: 0;
  transition:
    transform 0.4s var(--ease-out),
    opacity 0.4s var(--ease-out);
}

.search-overlay.open {
  pointer-events: auto;
}

.search-overlay.open .search-overlay-bg {
  opacity: 1;
}

.search-overlay.open .search-overlay-inner {
  transform: none;
  opacity: 1;
  transition-delay: 0.1s;
}

.search-hint {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3xl);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-form {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  padding-bottom: var(--space-md);
  transition: border-color var(--dur-base);
}

.search-form:focus-within {
  border-color: var(--color-brand-primary);
}

.search-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  color: var(--color-white-100);
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.search-submit {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  color: var(--color-white-70);
  transition:
    color var(--dur-base),
    transform var(--dur-base);
}

.search-submit:hover {
  color: var(--color-brand-primary);
  transform: scale(1.1);
}

.search-submit svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
}

/* LEGACY: Consolidated into .btn system
.search-close-btn {
  position: absolute;
  top: calc(-1 * var(--space-3xl));
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--dur-base);
  -webkit-tap-highlight-color: transparent;
}

.search-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white-100);
}

.search-close-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}
*/

/* Single page: close btn offset differs */
/* .search-overlay--single .search-close-btn {
  top: calc(-1 * var(--space-4xl));
} */

.search-suggestions {
  margin-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  justify-content: center;
}

.search-suggestions span {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  margin-right: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  align-self: center;
}

.search-tag {
  display: inline-block;
  padding: 4px var(--space-sm);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-xs);
  transition:
    background var(--dur-base),
    color var(--dur-base);
  cursor: pointer;
}

.search-tag:hover {
  background: var(--color-brand-primary);
  color: var(--color-white-100);
}

/* ----------------------------------------------------------
   HERO SYSTEM — Unified architecture for all page types.
   Base: .hero-section
   Mods: --country (bottom-align), --bottom (shorter), --city
---------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: min(75svh, 920px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  color: var(--color-white-100);
  background-color: var(--color-brand-dark); /* Fallback for contrast during load */
}

.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  top: -8%;
  left: 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  width: 100%;
}

/* Hero eyebrow / title shared styles */
/* LEGACY: Consolidated into .eyebrow 
.hero-eyebrow {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  opacity: 0.88;
  display: block;
  margin-bottom: var(--space-sm);
}
.hero-eyebrow a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--dur-base);
}
.hero-eyebrow a:hover {
  color: var(--color-white-100);
}
.hero-eyebrow .sep {
  opacity: 0.45;
  margin: 0 2px;
}
*/

/* LEGACY: Consolidated into .h-display
.hero-title,
.hero-content h1,
.post-hero-content h1 {
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  font-weight: var(--fw-semibold);
  color: var(--color-white-90);
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
  max-width: 720px;
}

.hero-title a {
  color: var(--color-white-90);
}
*/

/* Hero label (about page) */
.hero-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-sm);
}

/* Hero location pill (single post) */
.hero-location-pill {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.88);
}

/* ----------------------------------------------------------
   HERO CLOUD BOTTOM
---------------------------------------------------------- */
.hero-cloud,
.hero-cloud-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}

.hero-cloud img,
.hero-cloud-bottom img {
  width: 100%;
  display: block;
  transform: scaleY(-1);
}

/* ----------------------------------------------------------
   CLOUD SEPARATORS — reusable patterns
---------------------------------------------------------- */
.cloud-sep {
  display: block;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  position: relative;
  z-index: var(--z-base);
}

.cloud-sep img {
  width: 100%;
  display: block;
}

.cloud-sep-flip {
  transform: scaleY(-1);
}

/* Absolute-positioned clouds (photography section) */
.cloud-abs-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}

.cloud-abs-top img {
  width: 100%;
  display: block;
}

.cloud-abs-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}

.cloud-abs-bottom img {
  width: 100%;
  display: block;
  transform: scaleY(-1);
}

/* Relative clouds (world canvas — push content) */
.cloud-wc-top {
  position: relative;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
  flex-shrink: 0;
  bottom: 1px;
}

.cloud-wc-top img {
  width: 100%;
  display: block;
}

.cloud-wc-bottom {
  position: relative;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
  flex-shrink: 0;
  margin-top: auto;
  bottom: -1px;
}

.cloud-wc-bottom img {
  width: 100%;
  display: block;
}

/* ----------------------------------------------------------
   WORLD CANVAS
---------------------------------------------------------- */
.world-canvas {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 85svh, 960px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.wc-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.wc-bg img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.62) saturate(0.85);
}

.wc-content {
  position: relative;
  margin-top: -6%;
  z-index: 1;
  text-align: center;
  color: var(--color-white-100);
  mix-blend-mode: overlay;
  opacity: 0.88;
  margin-bottom: 5em;
  /* padding: 0 var(--pad-h); */
  /* flex: 1; */
  /* display: flex; */
  flex-direction: column;
  /* align-items: center; */
  /* justify-content: flex-start; */
}

.wc-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 13vw, 11rem);
  letter-spacing: -4px;
  line-height: 0.9;
  display: block;
}

.wc-sub {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  font-size: var(--text-sm);
  margin-top: var(--space-md);
  opacity: 0.75;
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
.main-footer {
  text-align: center;
  padding-top: 0;
  padding-bottom: calc(var(--space-xl) + var(--safe-bottom));
}

.footer-inner {
  margin: -8rem auto 0;
  padding: 0 var(--pad-h);
  max-width: var(--max-w);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  position: relative;
  z-index: var(--z-overlay);
}

.footer-logo {
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.footer-logo img {
  height: 110px;
  width: auto;
  margin: 0 auto;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: var(--fw-medium);
  color: var(--color-text-heading);
  max-width: 440px;
  line-height: 1.4;
  opacity: 0.72;
}

.footer-nav {
  display: block;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg) var(--space-xl);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  display: block;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer-nav li::marker {
  display: none;
  content: none;
}

.footer-nav a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color var(--dur-base);
}

.footer-nav a:hover {
  color: var(--color-brand-primary);
}

.footer-bottom {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border-subtle);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  width: 100%;
}

.footer-bottom a {
  color: var(--color-text-muted);
}

.footer-bottom a:hover {
  color: var(--color-brand-primary);
}

/* ----------------------------------------------------------
   BREADCRUMB BAR
---------------------------------------------------------- */
.breadcrumb-bar {
  padding: var(--space-md) 0 0;
}

.breadcrumb-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
}

.breadcrumb-pills li {
  display: flex;
  align-items: center;
}

.breadcrumb-pills li + li::before {
  content: "\203A";
  color: var(--color-text-muted);
  padding: 0 var(--space-xs);
  font-size: var(--text-sm);
  opacity: 0.5;
}

.breadcrumb-pills a {
  padding: var(--space-xs) var(--space-2xs);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
}

.breadcrumb-pills a:hover {
  color: var(--color-brand-primary);
}

.breadcrumb-pills li:last-child span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: var(--space-xs) var(--space-2xs);
  color: var(--color-text-heading);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  white-space: nowrap;
}
.breadcrumb-pills.align-content-center {
  justify-content: center;
}
/* ----------------------------------------------------------
   POST LAYOUT — content + sidebar (single post)
---------------------------------------------------------- */
.post-layout {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: clamp(32px, 6vw, 100px);
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-3xl) var(--pad-h) var(--section-v);
}

/* ----------------------------------------------------------
   SECTION HEADER
 ---------------------------------------------------------- */
.section-header {
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2xs);
}

.section-header p {
  color: var(--color-text-muted);
  max-width: var(--content-w);
  line-height: 1.6;
  margin-top: var(--space-xs);
}

.section-header.center {
  text-align: center;
}

.section-header.center p {
  margin: var(--space-xs) auto 0;
}

/* ----------------------------------------------------------
   PAGE BANNER (destinations page)
---------------------------------------------------------- */
.page-banner {
  background: var(--color-brand-dark);
  padding: var(--space-5xl) var(--pad-h);
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.page-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.page-banner h1 {
  margin-bottom: var(--space-md);
}

.page-banner-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  color: var(--color-brand-primary);
  display: block;
  line-height: 1;
}

/* LEGACY: Consolidated into .label-caps
.stat-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
*/

.banner-cloud {
  line-height: 0;
  position: relative;
  background: var(--color-brand-dark);
  margin-bottom: -2px;
}

.banner-cloud img {
  width: 100%;
  display: block;
  transform: scaleY(-1);
}

/* ----------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */

/* 1024px */
@media (max-width: 1024px) {
  .post-layout {
    --sidebar-w: 240px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .main-nav {
    /* Offset by toggle width + gap on mobile */
    right: calc(var(--pad-h) + var(--nav-pill-h) + var(--space-sm));
  }

  .main-nav .nav-item {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Hero */
  .hero-section {
    min-height: 80svh;
    padding-top: 70px;
  }

  .hero-section {
    min-height: 65svh;
    padding-top: 70px;
  }

  .hero-title,
  .hero-content h1,
  .post-hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  /* Breadcrumb */
  .breadcrumb-bar {
    display: none;
  }

  /* Post layout */
  .post-layout {
    grid-template-columns: 1fr;
    padding-top: var(--space-xl);
  }

  /* World canvas */
  .world-canvas {
    min-height: clamp(380px, 65svh, 560px);
  }

  .cloud-wc-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-top: 0;
  }

  /* Footer */
  .footer-menu {
    gap: var(--space-md) var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-xs);
    align-items: center;
  }

  .footer-inner {
    margin: -2rem auto 0;
  }

  /* Page banner */
  .page-banner-stats {
    gap: var(--space-lg);
  }
}

/* 769px+ hide toggle */
@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }
}
