.destino-page {
  background: #fff;
  color: #171717;
}

.destino-hero {
  position: relative;
  min-height: 230px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  margin-bottom: 18px;
}

.destino-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  mix-blend-mode: multiply;
}

.destino-hero-inner {
  position: relative;
  z-index: 2;
  padding: 18px 0 22px;
  text-align: center;
}

.destino-hero .ink-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.3;
  width: 100%;
}

.destino-hero .ink-breadcrumb a {
  color: #f7d26f;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.destino-hero .ink-breadcrumb a:hover {
  color: #fff0bf;
  border-color: currentColor;
}

.destino-hero .ink-breadcrumb span {
  color: #fff;
}

.destino-hero .ink-breadcrumb .sep {
  opacity: 0.95;
}

.destino-hero .ink-breadcrumb .sep-icon {
  display: inline-block;
  color: #ffd977;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0;
  transform: translateY(-1px);
}

.destino-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.destino-gallery-section {
  padding: 20px 0 16px;
  margin-bottom: 20px;
}

.destino-gallery-wrap {
  display: grid;
  grid-template-columns: 42px 1fr 120px 42px;
  gap: 12px;
  align-items: center;
}

.gallery-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: #999;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.gallery-main-box {
  border-radius: 28px;
  overflow: hidden;
  min-height: 330px;
  height: 50vh;
  max-height: 50vh;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14);
}

.gallery-main {
  width: 100%;
  height: 100%;
  max-height: 50vh;
  object-fit: cover;
  display: block;
}

.gallery-thumbs {
  display: grid;
  gap: 10px;
}

.gallery-thumb {
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-thumb.is-active {
  opacity: 1;
  transform: scale(1.03);
}

.gallery-thumb img {
  width: 100%;
  height: 76px;
  object-fit: cover;
  display: block;
}

.destino-info-section {
  padding: 20px 0 28px;
}

.destino-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
  background: linear-gradient(180deg, #fffdfa 0%, #fff9ee 100%);
  border: 1px solid rgba(239, 146, 33, 0.22);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 16px 34px rgba(52, 40, 15, 0.08);
}

.destino-info-left h2 {
  margin: 0 0 8px;
  font-size: clamp(34px, 3.4vw, 52px);
  color: #202020;
  font-weight: 700;
}

.destino-map {
  height: 240px;
  border-radius: 20px;
  margin: 0;
  overflow: hidden;
}

.destino-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.destino-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.destino-map-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #152c3a, #28485c);
  position: relative;
}

.destino-map-placeholder img {
  opacity: 0.35;
}

.destino-map-placeholder span {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  color: #f6f6f6;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.destino-metrics {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.destino-metrics article {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 14px;
  padding: 8px 12px;
}

.destino-metrics .material-icons {
  color: var(--accent);
  font-size: 24px;
  background: rgba(255, 245, 210, 0.78);
  border: 1px solid rgba(242, 173, 0, 0.24);
  border-radius: 12px;
  padding: 6px;
}

.destino-metrics small {
  display: block;
  color: #333;
  font-size: 13px;
  font-weight: 600;
}

.destino-metrics strong {
  color: #161616;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1;
  font-weight: 500;
}

.destino-metrics em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
}

.destino-info-right {
  background: #fffefb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 18px 18px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.destino-info-right h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 2.8vw, 44px);
  color: #1f1f1f;
  letter-spacing: 0.3px;
  line-height: 1.12;
  font-weight: 700;
}

.destino-info-right p,
.destino-extra-text p {
  margin: 0 0 13px;
  font-size: 18px;
  line-height: 1.58;
  color: #2b2b2b;
}

.destino-info-right a {
  color: #9c6400;
  text-decoration: none;
  border-bottom: 1px solid rgba(156, 100, 0, 0.36);
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.destino-info-right a:hover {
  color: #6f4700;
  border-color: currentColor;
}

.destino-content-full {
  margin-top: 18px;
  padding: 22px 24px;
  background: transparent;
  border-radius: 0;
}

.destino-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 330px);
  gap: 24px;
  align-items: start;
}

.ink-single-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 14px;
}

.ink-side-card {
  background: #fff;
  border: 1px solid rgba(30, 30, 30, 0.1);
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 8px 18px rgba(25, 25, 25, 0.08);
}

.ink-side-card--guide {
  background: #101010;
  border-color: #101010;
  color: #f5f5f5;
}

.ink-side-pill {
  display: inline-block;
  margin: 0 0 9px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #121212;
  background: var(--accent);
  border-radius: 999px;
  padding: 4px 10px;
}

.ink-side-card h3,
.ink-side-card h4 {
  margin: 0;
}

.ink-side-card h3 {
  font-size: 28px;
  color: #fff;
  line-height: 1.1;
}

.ink-side-card--guide p {
  margin: 9px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

.ink-side-card h4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 34px;
  color: #1b1b1b;
}

.ink-side-card h4 .material-icons {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 17px;
  color: var(--accent);
  background: #111;
}

.ink-side-term-list,
.ink-side-recent-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.ink-side-term-list a,
.ink-side-recent-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  text-decoration: none;
  color: #1f1f1f;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 8px 10px;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.ink-side-term-list a:hover,
.ink-side-recent-list a:hover {
  border-color: rgba(239, 146, 33, 0.55);
  background: #fff9e9;
  transform: translateY(-1px);
}

.ink-side-term-list em {
  font-style: normal;
  min-width: 26px;
  text-align: center;
  border-radius: 999px;
  background: #111;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 7px;
}

.ink-side-recent-list a {
  justify-content: flex-start;
}

.ink-side-recent-list a > span:last-child {
  line-height: 1.35;
  font-size: 13px;
}

.ink-side-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  background: #111;
}

.ink-side-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #151515;
  font-size: 12px;
  font-weight: 800;
  padding: 10px 14px;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ink-side-more:hover {
  background: #111;
  border-color: #111;
  color: var(--accent);
  transform: translateY(-1px);
}

.destino-content-full :is(h1, h2, h3, h4, h5, h6) {
  color: #1d1d1d;
  margin: 0 0 10px;
  line-height: 1.25;
}

.destino-content-full h2 {
  font-size: 28px;
}

.destino-content-full h3 {
  font-size: 22px;
}

.destino-content-full :is(p, li, blockquote, figcaption) {
  color: #2c2c2c;
  font-size: 16px;
  line-height: 1.72;
}

.destino-content-full p {
  margin: 0 0 14px;
}

.destino-content-full a {
  color: #b87f11;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 127, 17, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.destino-content-full a:hover {
  color: #7a5208;
  border-color: currentColor;
}

.destino-content-full :is(ul, ol) {
  margin: 0 0 16px 22px;
  padding: 0;
}

.destino-content-full blockquote {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-left: 4px solid var(--accent);
  background: rgba(0, 0, 0, 0.04);
}

.destino-content-full :is(img, iframe, video) {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
}

.destino-extra-text {
  margin-top: 8px;
}

.destino-similar-section {
  padding: 30px 0 52px;
  background: linear-gradient(
    180deg,
    rgba(255, 248, 225, 0.56) 0%,
    rgba(255, 245, 210, 0.66) 100%
  );
}

.destino-similar-section h2 {
  margin: 0 0 14px;
  color: #222;
  font-size: 34px;
  font-weight: 800;
}

.destino-similar-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.destino-similar-carousel.is-grid {
  grid-template-columns: 1fr;
}

.similar-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: #2a2a2a;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.similar-nav:hover:not(:disabled) {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
}

.similar-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.destino-similar-track.is-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.destino-similar-track.is-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 3px 2px;
}

.destino-similar-track.is-carousel::-webkit-scrollbar {
  display: none;
}

.destino-similar-item {
  min-width: 0;
}

.destino-similar-track.is-carousel .destino-similar-item {
  flex: 0 0 calc((100% - 60px) / 4);
  scroll-snap-align: start;
}

.similar-card {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 330px;
  height: 330px;
  background: #111;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.similar-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.similar-icon {
  position: absolute;
  left: 50%;
  bottom: 54px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #000;
  border: 2px solid var(--accent);
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.similar-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.similar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
}

.similar-card:hover > img {
  transform: scale(1.08);
}

.similar-card:hover .similar-icon img {
  transform: scale(1.06) rotate(-8deg);
}

.similar-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 0 8px;
  background: rgba(0, 0, 0, 0.9);
  color: var(--accent);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

@media (max-width: 900px) {
  .destino-hero {
    min-height: 180px;
  }

  .destino-hero h1 {
    font-size: 42px;
  }

  .destino-hero .ink-breadcrumb {
    font-size: 15px;
  }

  .destino-gallery-wrap {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-nav {
    display: none;
  }

  .gallery-main-box,
  .gallery-main {
    min-height: 240px;
    height: auto;
    max-height: none;
    border-radius: 20px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .gallery-thumb img {
    height: 62px;
  }

  .destino-info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
  }

  .destino-info-left h2 {
    font-size: 44px;
  }

  .destino-map {
    height: 200px;
  }

  .destino-info-right {
    padding: 14px;
    border-radius: 14px;
  }

  .destino-info-right h3 {
    font-size: 24px;
  }

  .destino-content-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ink-single-sidebar {
    position: static;
  }

  .destino-similar-track.is-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destino-similar-track.is-carousel .destino-similar-item {
    flex-basis: calc((100% - 20px) / 2);
  }

  .similar-card {
    min-height: 290px;
    height: 290px;
  }
}

@media (max-width: 640px) {
  .destino-similar-carousel {
    gap: 8px;
  }

  .similar-nav {
    width: 36px;
    height: 36px;
  }

  .destino-similar-track.is-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .destino-similar-track.is-carousel .destino-similar-item {
    flex-basis: 82%;
  }

  .similar-card {
    min-height: 260px;
    height: 260px;
  }

  .similar-icon {
    bottom: 46px;
  }
}

/* Full-width rework for info strip + map/text */
.destino-info-section {
  padding: 0 0 26px;
  background: #fff;
}

.destino-topbar {
  width: 100%;
  background: var(--accent);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.destino-topbar-inner {
  width: min(1140px, 94vw);
  margin: 0 auto;
  min-height: 98px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.destino-topbar-inner h2 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 52px);
  color: #1a1f2b;
  font-weight: 800;
  line-height: 1.02;
}

.destino-topbar .destino-metrics {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.destino-topbar .destino-metrics article {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  gap: 8px;
}

.destino-topbar .destino-metrics .material-icons {
  width: 44px;
  height: 44px;
  font-size: 24px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: #fbf9e4;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 12px;
}

.destino-topbar .destino-metrics small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  color: #151515;
  text-transform: none;
}

.destino-topbar .destino-metrics strong {
  display: block;
  font-size: clamp(18px, 1.6vw, 30px);
  line-height: 1.12;
  color: #121212;
  font-weight: 400;
  margin-top: 2px;
}

.destino-info-grid {
  width: 100%;
  margin: 0;
  padding: 42px 0 30px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.destino-info-left,
.destino-info-right {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.destino-info-right h4 {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  line-height: 1.14;
  margin: 0 0 14px;
}

.destino-info-right p,
.destino-extra-text p {
  font-size: 15px;
  line-height: 1.66;
  color: #2e2e2e;
  text-align: justify;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}

.destino-info-right :is(p, li, blockquote) {
  text-align: justify;
}

.destino-content-full {
  width: 100%;
  margin: 20px 0 0;
  padding: 20px 20px 14px;
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.1);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(20, 20, 20, 0.08);
}

.destino-info-right {
  background: #fff;
  border: 0;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: none;
  margin-bottom: 14px;
}

.destino-map {
  height: 300px;
  border-radius: 18px;
  border: 1px solid #e8e8ee;
  background: #fff;
}

.destino-summary {
  margin: 0;
  padding: 0;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  font-size: 15px;
  line-height: 1.72;
  color: #2e2e2e;
  text-align: justify;
}

.destino-overview {
  background: #f5f5f7;
  padding: 18px 0 20px;
}

@media (max-width: 980px) {
  .destino-topbar-inner h2 {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.05;
  }

  .destino-topbar .destino-metrics strong {
    font-size: clamp(16px, 4.4vw, 24px);
  }

  .destino-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 28px);
    margin: 0 auto;
    min-height: 0;
    padding: 18px 0 20px;
  }

  .destino-topbar .destino-metrics {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }

  .destino-info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0 20px;
  }

  .destino-gallery-section {
    margin-bottom: 14px;
  }

  .destino-content-full {
    width: 100%;
    margin: 16px 0 0;
    padding: 14px 14px 10px;
    border-radius: 14px;
  }

  .destino-info-right {
    border-radius: 14px;
    padding: 12px 12px;
    margin-bottom: 12px;
  }

  .destino-map {
    height: 240px;
    border-radius: 18px;
  }
}

.section-signs {
  margin: 4px 0 12px;
}

.services-signs {
  margin-top: 2px;
  display: flex;
  gap: 6px;
  color: var(--accent);
}

.services-mark {
  width: 14px;
  height: 10px;
  background: var(--accent);
  transform: skewX(-28deg);
  border-radius: 1px;
}
