:root {
  /* Paleta de colores inspirada en Dalmacia y el Adriático */
  --ink: #122c3d;
  --ink-soft: #304e63;
  --paper: #f2ede2;
  --paper-warm: #ebdcc5;
  --stone: #ded3c1;
  --coral: #bd6952;
  --hairline: rgba(18, 44, 61, 0.08);

  /* Sombras suaves y premium */
  --shadow-sm: 0 2px 8px rgba(18, 44, 61, 0.04);
  --shadow-md: 0 12px 35px rgba(18, 44, 61, 0.08);
  --shadow-lg: 0 30px 80px rgba(8, 20, 30, 0.6);

  /* Tipografías */
  --serif: 'Newsreader', Georgia, serif;
  --mono: 'DM Mono', monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1600px;
}

/* Reseteo y Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--paper);
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 2000;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* Gallery Error */
.gallery-error {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  padding: 2rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-error button {
  margin-top: 1rem;
  padding: 0.6rem 1.4rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.3s;
}

.gallery-error button:hover {
  background: var(--ink-soft);
}

.gallery-error details {
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--coral);
  cursor: pointer;
}

.gallery-error details pre {
  margin-top: 0.5rem;
  padding: 0.75rem;
  background: rgba(18, 44, 61, 0.05);
  border-radius: 4px;
  text-align: left;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

/* Nav */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem clamp(1.5rem, 5vw, 4rem);
  z-index: 10;
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.nav a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.7;
}

.nav__brand span {
  opacity: 0.5;
  margin: 0 0.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  overflow: hidden;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('../images/full/13.webp');
  background-size: cover;
  background-position: center 60%;
  transform: scale(1.06);
  animation: heroZoom 20s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(18, 44, 61, 0.4) 0%,
    rgba(18, 44, 61, 0.25) 45%,
    rgba(18, 44, 61, 0.8) 100%
  );
}

.hero__veil::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(18, 44, 61, 0.5) 100%);
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero__copy {
  max-width: 800px;
  animation: fadeUp 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero__copy .eyebrow {
  color: var(--stone);
  opacity: 0.9;
  letter-spacing: 0.4em;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 16vw, 12rem);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(18, 44, 61, 0.25);
  margin-bottom: 2rem;
}

.hero__place {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--paper);
  opacity: 0.95;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.hero__place i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

/* Scroll button */
.scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.scroll:hover {
  opacity: 1;
}

.scroll b {
  position: relative;
  width: 20px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  display: inline-block;
}

.scroll b::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 2px;
  height: 6px;
  background: #fff;
  border-radius: 1px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 0.2;
  }
}

/* Story Section */
.story {
  position: relative;
  padding: clamp(6rem, 15vw, 11rem) 1.5rem;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.story__mark {
  position: absolute;
  top: 1rem;
  font-family: var(--serif);
  font-size: clamp(15rem, 35vw, 28rem);
  font-weight: 500;
  color: var(--stone);
  opacity: 0.15;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

.story__intro {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 3.5rem;
}

.story__intro h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}

.story__body {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.85;
  color: var(--ink-soft);
  text-align: justify;
  text-align-last: center;
  margin-bottom: 4rem;
}

.story__body p {
  margin-bottom: 2rem;
}

.story__body p:last-child {
  margin-bottom: 0;
}

/* Facts List */
.facts {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 8vw, 6rem);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 2rem 1rem;
  width: 100%;
}

.facts div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.facts dt {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.facts dd {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
}

/* Gallery Section */
.gallery-section {
  padding: 4rem 0 8rem;
  background: var(--paper);
  border-top: 1px solid var(--hairline);
}

.gallery-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.gallery-heading h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.gallery-heading h2 em {
  font-style: italic;
}

.gallery-heading p:last-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  opacity: 0.8;
}

/* Masonry Layout */
.gallery {
  column-count: 4;
  column-gap: 1.5rem;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  max-width: var(--maxw);
  margin: 0 auto;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: itemReveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

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

.gallery-item__button {
  position: relative;
  width: 100%;
  display: block;
  text-align: left;
  overflow: hidden;
  border-radius: 4px;
  background: var(--stone);
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item__button img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover effects */
.gallery-item__button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(18, 44, 61, 0.35) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.gallery-item__button:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item__button:hover img {
  transform: scale(1.04);
}

.gallery-item__button:hover::before {
  opacity: 1;
}

/* Photo Number */
.gallery-item__number {
  position: absolute;
  bottom: 1rem;
  right: 1.2rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  z-index: 2;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item__button:hover .gallery-item__number {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  text-align: center;
  padding: 4rem 1.5rem;
  background: var(--stone);
  border-top: 1px solid var(--hairline);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}

footer p {
  margin-bottom: 0.5rem;
}

footer span {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

/* Lightbox Premium */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 20, 29, 0.97);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overscroll-behavior: contain;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lb__stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

/* Spinner de carga */
.lb__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lb__spinner.visible {
  opacity: 1;
}

.lb__spinner-ring {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spinnerRotate 0.8s linear infinite;
}

@keyframes spinnerRotate {
  to { transform: rotate(360deg); }
}

.lb__stage img {
  max-width: 100%;
  max-height: 100vh;
  max-height: 100dvh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 30px 100px rgba(0,0,0,0.85);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
  user-select: none;
  cursor: pointer;
  -webkit-user-drag: none;
}

.lb__stage img.loaded {
  opacity: 1;
}

/* Lightbox Controls */
.lb__close {
  position: fixed;
  top: calc(1.2rem + env(safe-area-inset-top));
  right: calc(1.25rem + env(safe-area-inset-right));
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  z-index: 10010;
  backdrop-filter: blur(8px);
}

.lb__close:hover {
  background: rgba(226, 177, 68, 0.9);
  color: #080c14;
  transform: rotate(90deg);
}

.lb__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
  z-index: 10010;
  backdrop-filter: blur(8px);
}

.lb__nav:hover {
  background: rgba(226, 177, 68, 0.9);
  color: #080c14;
}

.lb__prev { left: calc(1rem + env(safe-area-inset-left)); }
.lb__next { right: calc(1rem + env(safe-area-inset-right)); }

/* Lightbox Caption */
#lb-caption {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  transform: none;
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding: 4rem 1.5rem 1.4rem;
  background: linear-gradient(to top, rgba(8, 20, 29, 0.95) 0%, rgba(8, 20, 29, 0.55) 55%, transparent 100%);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.85);
  pointer-events: none;
  z-index: 10010;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s ease;
  margin: 0;
}

#lb-caption.loaded {
  opacity: 1;
}

/* Modo foto limpia */
.lightbox.caption-hidden #lb-caption {
  transform: translateY(100%);
  opacity: 0;
}

/* Lightbox Counter */
.lb__count {
  position: fixed;
  top: 1.2rem;
  left: calc(1.25rem + env(safe-area-inset-left));
  transform: none;
  background: transparent;
  border: none;
  color: var(--sand, #d4b896);
  padding: 0;
  font-family: var(--serif, serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  backdrop-filter: none;
  z-index: 10010;
  pointer-events: none;
}

/* Responsive Rules */
@media (max-width: 1400px) {
  .gallery {
    column-count: 3;
    padding: 0 3rem;
  }
}

@media (max-width: 992px) {
  .gallery {
    column-count: 2;
    column-gap: 1.2rem;
    padding: 0 2rem;
  }
  .gallery-item {
    margin-bottom: 1.2rem;
  }
  .lb__stage {
    padding: 4rem 4rem 6rem;
  }
  .lb__nav {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  .lb__prev {
    left: 1rem;
  }
  .lb__next {
    right: 1rem;
  }
  .lb__close {
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 576px) {
  .gallery {
    column-count: 1;
    padding: 0 1.25rem;
  }
  .story {
    padding: 5rem 1.25rem;
  }
  .facts {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .lb__stage {
    padding: 3rem 1rem 5rem;
  }
  .lb__nav {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, pointer-events 0.4s ease;
  }
  .lb__nav.visible {
    opacity: 1;
    pointer-events: auto;
  }
  .lb__close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
  #lb-caption {
    bottom: 4.5rem;
    font-size: 0.95rem;
    width: 88%;
  }
  .lb__count {
    bottom: 1.5rem;
  }
  .lb__hint {
    display: block;
  }
}

@media (min-width: 577px) {
  .lb__hint {
    display: none;
  }
}

/* Accesibilidad y Reducción de Animaciones */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__image {
    animation: none;
    transform: scale(1);
  }
  .lb__spinner-ring {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════
NUEVO: Fix scroll de fondo en iOS cuando el lightbox está abierto.
position:fixed es la única forma fiable de bloquear scroll en iOS Safari.
El JS guarda/restaura scrollY para evitar salto al cerrar.
═══════════════════════════════════════════════════════════ */
body.lightbox-open {
  position: fixed;
  inset: 0;
  width: 100%;
  overflow: hidden;
}


.lightbox__actions {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 10020;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lightbox__actions .lb__close,
.lightbox__actions .lightbox__close {
  position: relative !important;
  top: auto !important;
  right: auto !important;
}

.lightbox__icon-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.25rem;
  font-family: system-ui, -apple-system, sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox__icon-btn:hover {
  background: #e2b144;
  color: #04070c;
  border-color: #e2b144;
}

.lightbox.caption-hidden .lightbox__info,
.lightbox.caption-hidden .lightbox__caption,
.lightbox.caption-hidden .lightbox-caption,
.lightbox.caption-hidden #lb-caption,
.lightbox.caption-hidden figcaption {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}


/* FASE 32 — Botón de navegación rápida a imágenes */
html {
  scroll-behavior: smooth;
}
#galeria, #gallery, #gallery-section, #gallery-grid {
  scroll-margin-top: 80px;
}
.hero {
  position: relative;
}
.btn-gallery-nav {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(15, 23, 42, 0.65);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.btn-gallery-nav:hover, .btn-gallery-nav:focus {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(226, 177, 68, 0.8);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  outline: none;
}
@media (max-width: 768px) {
  .btn-gallery-nav {
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }
}


/* ==========================================================================
   VIEW TRANSITIONS API (CROSS-DOCUMENT MPA TRANSITIONS)
   ========================================================================== */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: 300ms cubic-bezier(0.4, 0, 0.2, 1) both fade-out;
}

::view-transition-new(root) {
  animation: 400ms cubic-bezier(0, 0, 0.2, 1) both fade-in;
}

@keyframes fade-out {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.98); }
}

@keyframes fade-in {
  from { opacity: 0; transform: scale(1.02); filter: blur(2px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) {
    animation: none !important;
  }
}


/* ─── Navegación Secuencial de la Ruta (Breadcrumbs & Siguiente/Anterior) ─── */
.destination-nav {
  padding: 2.25rem 1.5rem;
  background: rgba(10, 17, 26, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  z-index: 10;
}
.destination-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.destination-nav__breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #8fa3b7;
  padding: 0;
  margin: 0;
}
.destination-nav__breadcrumb a {
  color: #a5f3fc;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.destination-nav__breadcrumb a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.destination-nav__breadcrumb .sep {
  opacity: 0.4;
  margin: 0 0.15rem;
}
.destination-nav__links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.destination-nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  color: #f0f4f8;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}
.destination-nav__btn:hover {
  background: rgba(6, 182, 212, 0.2);
  border-color: rgba(6, 182, 212, 0.6);
  color: #a5f3fc;
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .destination-nav__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 1rem;
  }
  .destination-nav__breadcrumb {
    justify-content: center;
  }
  .destination-nav__links {
    justify-content: space-between;
    width: 100%;
  }
}
