:root {
  --primary: #5d6755;
  --primary-dark: #495140;
  --secondary: #8b8070;
  --stone-50: #f8f7f5;
  --stone-100: #ede4df;
  --stone-200: #ded8d2;
  --stone-400: #9f968e;
  --stone-500: #7a746d;
  --stone-600: #5f5a54;
  --stone-700: #4a4640;
  --stone-800: #2c2925;
  --stone-900: #181614;
  --gold: #c47f31;
  --gold-2: #e3a34e;
  --green: #0b6e4f;
  --green-dark: #095c42;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(24, 22, 20, 0.12);
  --shadow-soft: 0 16px 36px rgba(24, 22, 20, 0.08);
  --radius: 28px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Raleway", system-ui, -apple-system, sans-serif;
  color: var(--stone-900);
  background: var(--white);
}

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

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

button,
input,
select {
  font: inherit;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

.container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.container.narrow {
  width: min(100% - 48px, 880px);
}

.skip-link {
  position: absolute;
  left: 24px;
  top: -60px;
  z-index: 999;
  background: var(--white);
  color: var(--stone-900);
  padding: 14px 20px;
  border-radius: 16px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header-solid,
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(24, 22, 20, 0.08);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-logo {
  width: 210px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 14px 18px;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--stone-700);
  border-radius: 16px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-header-transparent .nav-link {
  color: rgba(255, 255, 255, 0.92);
}

.site-header-transparent.is-scrolled .nav-link {
  color: var(--stone-700);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--stone-900);
  background: rgba(93, 103, 85, 0.08);
}

.site-header-transparent .nav-link:hover,
.site-header-transparent .nav-link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-header-transparent.is-scrolled .nav-link:hover,
.site-header-transparent.is-scrolled .nav-link.is-active {
  color: var(--stone-900);
  background: rgba(93, 103, 85, 0.08);
}

.nav-submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  min-width: 280px;
  padding: 12px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-item.has-submenu:hover .nav-submenu,
.nav-item.has-submenu:focus-within .nav-submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-submenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.92rem;
  color: var(--stone-700);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-submenu-link:hover {
  background: var(--stone-50);
  color: var(--stone-900);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--green);
}

.site-header-transparent .header-whatsapp {
  color: #fff;
}

.site-header-transparent.is-scrolled .header-whatsapp {
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 16px 28px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(24, 22, 20, 0.16);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-dark {
  background: var(--stone-900);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--green-dark);
}

.btn-outline,
.btn-outline-light {
  border: 1px solid var(--stone-200);
  color: var(--stone-800);
  background: #fff;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.btn-full {
  width: 100%;
}

.menu-toggle,
.mobile-menu-close {
  display: none;
  border: 0;
  background: transparent;
  color: var(--stone-900);
  font-size: 2rem;
  cursor: pointer;
}

.site-header-transparent .menu-toggle {
  color: #fff;
}

.site-header-transparent.is-scrolled .menu-toggle {
  color: var(--stone-900);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
}

.site-main-inner {
  padding-top: var(--header-height);
}

.section {
  padding: 96px 0;
}

.section-white {
  background: #fff;
}

.section-soft {
  background: var(--stone-50);
}

.section-soft-2 {
  background: #f3f0ec;
}

.section-dark {
  background: linear-gradient(135deg, var(--stone-900), var(--stone-800));
  color: #fff;
}

.section-heading,
.section-heading-row {
  margin-bottom: 48px;
}

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

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--gold);
}

.section h2,
.article-card h1,
.section-hero h1,
.destination-hero h1,
.thank-you-header h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 760px;
}

.section-heading h2,
.section-heading-row h2 {
  margin: 0 auto;
}

.section-heading-row h2 {
  margin: 0;
}

.section-lead,
.hero-subtitle,
.footer-copy,
.content-stack p,
.plan-summary,
.article-card p,
.detail-main p,
.faq-body,
.contact-form-card p,
.redirect-card p {
  color: var(--stone-600);
  font-size: 1rem;
  line-height: 1.75;
}

.section-lead {
  max-width: 720px;
  margin: 18px auto 0;
}

.section-heading-row .section-lead {
  margin-left: 0;
  margin-right: 0;
}

.section-hero,
.destination-hero,
.article-hero {
  position: relative;
  background-image: var(--hero-bg), linear-gradient(135deg, var(--stone-900), var(--stone-800));
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 160px 0 96px;
}

.section-hero-home {
  min-height: 100vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 22, 20, 0.92), rgba(24, 22, 20, 0.74), rgba(24, 22, 20, 0.34));
}

.hero-content,
.destination-hero-content {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 700px;
}

.section-hero .eyebrow,
.section-dark .eyebrow,
.destination-hero .destination-tags span {
  color: #f5c35a;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.28rem);
  margin: 24px 0 0;
}

.hero-actions,
.cta-actions,
.share-row,
.contact-actions-row,
.cabin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.metrics-section {
  border-bottom: 1px solid var(--stone-200);
  padding: 48px 0;
}

.metrics-grid,
.cards-grid {
  display: grid;
  gap: 24px;
}

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

.metric-card,
.value-card,
.extra-card,
.experience-card,
.testimonial-card,
.plan-card,
.service-card,
.route-card,
.theme-card,
.departure-card,
.itinerary-card,
.content-card,
.sidebar-card,
.contact-info-card,
.contact-form-card,
.whatsapp-box,
.redirect-card,
.legal-card,
.article-card,
.help-box,
.links-item {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(222, 216, 210, 0.8);
  box-shadow: var(--shadow-soft);
}

.metric-card {
  padding: 10px 8px;
  text-align: center;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.metric-card i,
.value-card i,
.service-icon,
.extra-card i,
.route-card i,
.theme-card i,
.success-icon,
.contact-info-card > i,
.whatsapp-box > i,
.help-box > i,
.sidebar-card > i,
.links-item-icon,
.step-card span,
.itinerary-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.metric-card i,
.value-card i,
.service-icon,
.extra-card i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f7ecd9;
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.metric-card h2,
.metric-card strong,
.value-card h3,
.service-card h3,
.extra-card h3,
.testimonial-author strong,
.plan-card h3,
.route-card strong,
.theme-card h3,
.departure-card h3,
.itinerary-card h3,
.contact-info-card h2,
.contact-form-card h2,
.article-card h2,
.article-card h3,
.legal-card h2,
.sidebar-card h2,
.help-box h2,
.redirect-card h1,
.step-card h3 {
  margin: 0;
  color: var(--stone-900);
  font-weight: 800;
}

.metric-card h2,
.metric-card strong {
  font-size: 1rem;
  display: block;
}

.metric-card p {
  margin: 8px 0 0;
  font-size: 0.92rem;
  color: var(--stone-500);
}

.destinations-grid,
.services-grid,
.testimonials-grid,
.blog-grid,
.departures-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.values-grid,
.routes-grid,
.itinerary-grid,
.ship-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plans-grid,
.contact-grid,
.split-grid,
.detail-grid,
.thank-you-grid {
  display: grid;
  gap: 32px;
}

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

.service-card,
.value-card,
.extra-card,
.testimonial-card,
.plan-card,
.route-card,
.theme-card,
.itinerary-card,
.content-card,
.sidebar-card,
.contact-info-card,
.contact-form-card,
.whatsapp-box,
.legal-card,
.help-box,
.redirect-card,
.article-card {
  padding: 32px;
}

.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.value-card:hover,
.extra-card:hover,
.plan-card:hover,
.destination-card:hover,
.blog-card:hover,
.testimonial-card:hover,
.departure-card:hover,
.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card p,
.value-card p,
.extra-card p,
.theme-card p,
.route-card small,
.testimonial-card p,
.plan-description,
.step-card p,
.experience-card p,
.departure-card p,
.itinerary-card p,
.itinerary-card small,
.contact-info-card p,
.contact-info-card a,
.sidebar-card p,
.help-box p,
.redirect-card p,
.legal-card p {
  margin: 12px 0 0;
  color: var(--stone-600);
  line-height: 1.7;
}

.check-list,
.mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li,
.mini-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--stone-600);
  line-height: 1.6;
}

.check-list i,
.mini-list i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.text-link,
.back-link,
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
}

.center-link {
  margin-top: 48px;
  text-align: center;
}

.destination-card,
.blog-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: #fff;
  border: 1px solid rgba(222, 216, 210, 0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.destination-card figure,
.destination-card figcaption {
  margin: 0;
}

.destination-card figure {
  position: relative;
  min-height: 360px;
}

.destination-card img,
.blog-card img,
.departure-card img,
.image-card img,
.gallery-grid img {
  width: 100%;
  object-fit: cover;
}

.destination-card img {
  height: 360px;
  transition: transform 0.6s ease;
}

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

.destination-card::after {
  content: "";
}

.price-pill,
.destination-tags span,
.tag-chip,
.badge-inline,
.plan-tag,
.article-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-pill {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  color: var(--stone-800);
}

.price-luxo {
  background: #f7c860;
}

.destination-card figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 64px 28px 28px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(24, 22, 20, 0.92));
}

.destination-card small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #f5c35a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.destination-card h3 {
  margin: 12px 0 0;
  font-size: 1.7rem;
}

.destination-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.testimonial-card .quote-icon {
  color: #f6d7a2;
  font-size: 2.4rem;
}

.stars {
  display: flex;
  gap: 6px;
  color: #f2b544;
  margin: 12px 0 18px;
}

.testimonial-author {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--stone-200);
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.testimonial-author small,
.article-meta span {
  display: block;
  color: var(--stone-500);
  font-size: 0.88rem;
  margin-top: 2px;
}

.cta-block {
  padding: 96px 0;
}

.cta-light {
  background: linear-gradient(135deg, #faf4ea, #f7ebdd, #fbf0e3);
}

.cta-dark {
  background: linear-gradient(135deg, var(--stone-900), var(--stone-800));
  color: #fff;
}

.cta-block .container {
  text-align: center;
}

.badge-inline {
  margin: 0 auto 20px;
  background: rgba(196, 127, 49, 0.1);
  color: var(--gold);
}

.cta-dark h2,
.cta-dark .trust-row span {
  color: #fff;
}

.cta-dark .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
  color: var(--stone-600);
  font-weight: 600;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-bar {
  position: sticky;
  top: var(--header-height);
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-200);
  padding: 20px 0;
}

.filter-form {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.filter-search {
  flex: 1;
  min-width: 240px;
  border-radius: 999px;
  border: 1px solid var(--stone-200);
  background: var(--stone-50);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
}

.filter-search i {
  color: var(--stone-400);
}

.filter-search input,
.filter-form select {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  padding: 17px 0;
  color: var(--stone-800);
  font-weight: 600;
}

.filter-form select {
  max-width: 260px;
  border: 1px solid var(--stone-200);
  border-radius: 999px;
  padding: 17px 22px;
  background: var(--stone-50);
}

.empty-state {
  text-align: center;
  padding: 72px 24px;
  color: var(--stone-500);
}

.empty-state i {
  font-size: 3rem;
  color: var(--stone-400);
}

.empty-state h3,
.empty-state h1 {
  margin: 18px 0 0;
  color: var(--stone-800);
}

.empty-state p {
  margin: 12px 0 0;
}

.destination-hero {
  min-height: 74vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 64px;
}

.destination-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.destination-tags span,
.article-tags span {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.destination-hero h1 {
  margin-top: 22px;
}

.destination-hero p {
  margin: 18px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
  font-size: 1.1rem;
}

.detail-grid {
  grid-template-columns: minmax(0, 2fr) 400px;
  align-items: start;
}

.detail-main {
  display: grid;
  gap: 24px;
}

.info-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 16px;
}

.info-card i {
  color: var(--gold);
  font-size: 1.4rem;
}

.info-card strong {
  display: block;
  color: var(--stone-900);
  margin-bottom: 6px;
}

.content-card h2,
.sidebar-card h2,
.contact-form-card h2,
.legal-card h2,
.help-box h2,
.redirect-card h1 {
  font-size: 1.9rem;
  line-height: 1.05;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-chip {
  background: var(--stone-50);
  color: var(--stone-700);
  border: 1px solid var(--stone-200);
  text-transform: none;
  letter-spacing: 0;
}

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

.gallery-grid img,
.image-card img {
  height: 220px;
  border-radius: 22px;
}

.detail-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.sidebar-card {
  text-align: center;
}

.sidebar-card > i,
.success-icon,
.help-box > i,
.whatsapp-box > i {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #f7ecd9;
  color: var(--gold);
  font-size: 1.8rem;
  margin: 0 auto 18px;
}

.sidebar-card .check-list {
  margin: 24px 0 10px;
  text-align: left;
}

.phone-link {
  margin-top: 18px;
  color: var(--stone-600);
}

.split-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.image-card {
  position: relative;
}

.image-card img {
  height: min(66vw, 520px);
  box-shadow: var(--shadow);
}

.image-badge {
  position: absolute;
  left: -24px;
  bottom: -24px;
  padding: 22px 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.image-badge small {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.content-stack p + p {
  margin-top: 16px;
}

.large-list {
  margin: 28px 0 0;
}

.values-grid .value-card,
.extras-grid .extra-card {
  text-align: center;
}

.partners-marquee {
  overflow: hidden;
  border-radius: 24px;
}

.partners-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 50s linear infinite;
}

.partner-logo {
  width: 220px;
  height: 130px;
  border-radius: 22px;
  border: 1px solid var(--stone-200);
  background: #fff;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
}

.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.plan-card.is-highlight {
  border: 2px solid rgba(196, 127, 49, 0.4);
}

.plan-tag {
  width: max-content;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  margin: 0 0 14px;
}

.plan-price {
  margin: 14px 0 0;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 800;
}

.plan-price small {
  font-size: 0.8rem;
  color: var(--stone-500);
  margin-left: 8px;
}

.plan-description {
  color: var(--stone-800);
  font-weight: 700;
  margin: 16px 0 0;
}

.plan-summary {
  margin-top: 10px;
}

.plan-card h4 {
  margin: 24px 0 16px;
  font-size: 0.9rem;
  color: var(--stone-900);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-details {
  margin: 20px 0 28px;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--stone-50);
}

.plan-details p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--stone-600);
}

.plan-details p + p {
  margin-top: 8px;
}

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

.step-card {
  text-align: center;
  padding: 12px;
}

.step-card span,
.itinerary-card span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f7ecd9;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.step-card p {
  font-size: 0.95rem;
}

.tabs-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tab-pill {
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid var(--stone-200);
  background: var(--stone-50);
  color: var(--stone-700);
  font-weight: 700;
  font-size: 0.9rem;
}

.tab-pill.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

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

.feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--stone-200);
  color: var(--stone-700);
  font-weight: 600;
}

.feature-pill i {
  color: var(--gold);
}

.destinations-tags-block {
  margin: 32px 0;
}

.destinations-tags-block h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 800;
}

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

.experience-card {
  display: block;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.experience-card i {
  font-size: 1.8rem;
  color: var(--gold);
}

.experience-card h3 {
  margin: 16px 0 0;
}

.experience-card.is-active {
  border-color: rgba(196, 127, 49, 0.5);
  background: #fff8ef;
}

.blog-card img {
  height: 220px;
}

.blog-body {
  padding: 28px;
}

.blog-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--stone-500);
  font-size: 0.85rem;
}

.blog-meta span,
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-card h3 {
  margin: 16px 0 0;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--stone-900);
}

.blog-card p {
  margin: 12px 0 0;
  color: var(--stone-600);
  line-height: 1.65;
}

.blog-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--gold);
}

.article-hero {
  height: min(62vh, 680px);
  background-image: var(--article-bg);
}

.article-shell {
  position: relative;
  margin-top: -160px;
  padding: 0 0 96px;
}

.article-card {
  width: min(100% - 48px, 940px);
  margin: 0 auto;
  padding: 48px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-tags span {
  background: #f6efe2;
  color: var(--gold);
}

.article-card h1 {
  margin-top: 20px;
}

.article-meta {
  border-bottom: 1px solid var(--stone-200);
  padding: 24px 0;
  margin-bottom: 24px;
}

.article-content h2,
.legal-card h2 {
  margin: 34px 0 16px;
  font-size: 1.8rem;
}

.article-content h3 {
  margin: 28px 0 12px;
  font-size: 1.35rem;
}

.article-content ul {
  padding-left: 20px;
  color: var(--stone-600);
  line-height: 1.75;
}

.article-content li + li {
  margin-top: 10px;
}

.article-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--stone-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.thank-you-wrap {
  min-height: calc(100vh - var(--header-height));
}

.success-icon {
  color: #16a34a;
  background: #dcfce7;
}

.thank-you-header {
  text-align: center;
  margin-bottom: 48px;
}

.thank-you-header p {
  color: var(--stone-600);
}

.thank-you-grid {
  grid-template-columns: minmax(0, 1.7fr) minmax(340px, 0.9fr);
  align-items: start;
}

.process-list {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.process-list > div {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.process-list span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f7ecd9;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.process-list strong {
  color: var(--stone-900);
}

.contact-grid {
  align-items: start;
}

.contact-aside {
  display: grid;
  gap: 18px;
}

.whatsapp-box {
  background: linear-gradient(135deg, #16a34a, #059669);
  color: #fff;
}

.whatsapp-box > i {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.whatsapp-box h2,
.whatsapp-box p {
  color: #fff;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
}

.contact-info-card > i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #f7ecd9;
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-info-card h2 {
  font-size: 1rem;
}

.contact-info-card p,
.contact-info-card a {
  white-space: pre-line;
  display: inline-block;
}

.contact-iframe,
.iframe-shell iframe {
  width: 100%;
  border: 0;
  border-radius: 20px;
  background: #fff;
}

.contact-iframe {
  min-height: 720px;
  border: 1px solid var(--stone-200);
  margin-top: 22px;
}

.success-note {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 22px;
  background: #ecfdf5;
}

.success-note p {
  margin: 0;
  color: #047857;
  font-weight: 700;
  font-size: 0.9rem;
}

.success-note p + p {
  margin-top: 8px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 30px;
  font-weight: 800;
  color: var(--stone-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-body {
  padding: 0 30px 26px;
}

.help-box {
  text-align: center;
  background: linear-gradient(135deg, #fff8ef, #fff2e5);
}

.help-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(196, 127, 49, 0.18);
}

.help-links a {
  color: var(--gold);
  font-weight: 700;
}

.legal-card {
  padding: 48px;
}

.links-hub {
  background: linear-gradient(135deg, var(--stone-900), var(--stone-800));
}

.links-shell {
  min-height: 100vh;
  padding: 48px 0 64px;
}

.links-card-wrap {
  width: min(100% - 32px, 480px);
  margin: 0 auto;
}

.links-header,
.links-footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.74);
}

.links-logo {
  width: 260px;
  height: auto;
  margin: 0 auto 18px;
}

.links-group {
  margin-top: 34px;
}

.links-group h2 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
}

.links-list {
  display: grid;
  gap: 12px;
}

.links-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
}

.links-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.links-item strong {
  flex: 1;
}

.links-item.is-featured.link-tone-green {
  background: #25d366;
}

.links-item.is-featured.link-tone-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.links-item.is-featured.link-tone-dark {
  background: var(--primary);
}

.links-footer {
  margin-top: 42px;
}

.links-footer a {
  color: #f5c35a;
  font-weight: 800;
}

.route-card,
.theme-card,
.itinerary-card {
  text-align: center;
}

.route-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 24px;
}

.route-card i,
.theme-card i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #e8f1ff;
  color: #2563eb;
  font-size: 1.4rem;
}

.route-card.is-highlight {
  border-color: rgba(37, 99, 235, 0.24);
  background: #eff6ff;
}

.section-dark h2,
.section-dark p,
.theme-card h3,
.theme-card p {
  color: #fff;
}

.theme-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.departure-card {
  overflow: hidden;
  padding: 0;
}

.departure-card img {
  height: 220px;
}

.departure-card div {
  padding: 26px;
}

.departure-card p,
.itinerary-card p,
.itinerary-card small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.itinerary-card span {
  background: var(--primary);
  color: #fff;
  margin: 0 auto 14px;
}

.itinerary-card p {
  font-size: 0.9rem;
  margin: 0;
}

.itinerary-card h3 {
  margin: 10px 0 0;
  font-size: 1.18rem;
}

.itinerary-card small {
  margin-top: 10px;
  display: block;
}

.form-panel {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-soft);
  padding: 42px;
  text-align: center;
}

.iframe-shell iframe {
  height: calc(100vh - var(--header-height));
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(11, 110, 79, 0.28);
}

.channel-widget {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 60;
  max-width: 280px;
  display: none;
}

.channel-widget.is-visible {
  display: block;
}

.channel-card {
  position: relative;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: #fff;
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.24);
}

.channel-card strong,
.channel-card a {
  display: block;
}

.channel-card p {
  margin: 10px 0 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.channel-card a {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  text-align: center;
  background: #fff;
  color: #c2410c;
  font-weight: 800;
  font-size: 0.9rem;
}

.channel-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.channel-fab {
  margin: 12px auto 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 18px 40px rgba(217, 119, 6, 0.24);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 90;
}

.cookie-banner-content {
  width: min(100%, 980px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(24, 22, 20, 0.92);
  color: #fff;
  box-shadow: 0 24px 48px rgba(24, 22, 20, 0.24);
}

.cookie-banner p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.94rem;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.site-footer {
  background: var(--stone-900);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding: 72px 0;
}

.footer-logo {
  width: 240px;
  height: auto;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.62);
  margin: 18px 0 0;
}

.footer-badges {
  margin-top: 22px;
  display: flex;
  gap: 12px;
}

.footer-badges a,
.footer-badges span,
.footer-podcast-links a {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-social {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.footer-podcast {
  margin-top: 26px;
}

.footer-podcast p {
  margin: 0 0 12px;
  font-weight: 800;
}

.footer-podcast-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-col h2 {
  margin: 0 0 20px;
  font-size: 1rem;
}

.footer-col a,
.footer-col p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 14px;
  line-height: 1.7;
  font-size: 0.93rem;
}

.footer-col a:hover,
.footer-bottom-links a:hover,
.footer-bottom-links button:hover {
  color: #f5c35a;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.footer-bottom-inner p,
.footer-bottom-links a,
.footer-bottom-links button {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom-links button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-whatsapp,
  .header-actions > .btn-primary {
    display: none;
  }

  .menu-toggle,
  .mobile-menu-close {
    display: inline-flex;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .mobile-menu-panel {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(100%, 420px);
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--stone-200);
  }

  .mobile-logo {
    width: 180px;
    height: auto;
  }

  .mobile-nav {
    margin-top: 18px;
    display: grid;
    gap: 6px;
  }

  .mobile-link,
  .mobile-details summary {
    padding: 16px;
    border-radius: 18px;
    font-weight: 800;
    color: var(--stone-800);
    cursor: pointer;
  }

  .mobile-details {
    border-radius: 18px;
    background: var(--stone-50);
  }

  .mobile-details summary {
    list-style: none;
  }

  .mobile-details summary::-webkit-details-marker {
    display: none;
  }

  .mobile-submenu {
    display: grid;
    gap: 4px;
    padding: 0 10px 10px;
  }

  .mobile-sublink {
    padding: 12px 16px;
    border-radius: 14px;
    color: var(--stone-600);
    font-weight: 700;
  }

  .mobile-cta-wrap {
    margin-top: auto;
    padding-top: 20px;
    display: grid;
    gap: 12px;
  }

  .metrics-grid,
  .values-grid,
  .services-grid,
  .testimonials-grid,
  .destinations-grid,
  .blog-grid,
  .departures-grid,
  .steps-grid,
  .experience-grid,
  .extras-grid,
  .routes-grid,
  .itinerary-grid,
  .ship-grid,
  .plans-grid,
  .detail-grid,
  .contact-grid,
  .split-grid,
  .footer-grid,
  .thank-you-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .container,
  .container.narrow,
  .article-card,
  .links-card-wrap {
    width: min(100% - 32px, 1240px);
  }

  .section,
  .cta-block {
    padding: 72px 0;
  }

  .section-hero,
  .destination-hero {
    min-height: 80vh;
    padding-top: 130px;
  }

  .brand-logo {
    width: 170px;
  }

  .section-heading-row,
  .filter-form,
  .cookie-banner-content,
  .footer-bottom-inner,
  .article-footer,
  .hero-actions,
  .cta-actions,
  .contact-actions-row {
    flex-direction: column;
    align-items: stretch;
  }

  .metrics-grid,
  .values-grid,
  .services-grid,
  .testimonials-grid,
  .destinations-grid,
  .blog-grid,
  .departures-grid,
  .steps-grid,
  .experience-grid,
  .extras-grid,
  .routes-grid,
  .itinerary-grid,
  .ship-grid,
  .plans-grid,
  .detail-grid,
  .contact-grid,
  .split-grid,
  .footer-grid,
  .thank-you-grid,
  .gallery-grid,
  .info-row,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .value-card,
  .extra-card,
  .testimonial-card,
  .plan-card,
  .route-card,
  .theme-card,
  .itinerary-card,
  .content-card,
  .sidebar-card,
  .contact-info-card,
  .contact-form-card,
  .whatsapp-box,
  .legal-card,
  .help-box,
  .redirect-card,
  .article-card,
  .form-panel {
    padding: 24px;
    border-radius: 22px;
  }

  .destination-card figure,
  .destination-card img {
    min-height: 320px;
    height: 320px;
  }

  .article-shell {
    margin-top: -110px;
  }

  .article-card {
    padding: 28px 22px;
  }

  .image-badge {
    left: 16px;
    bottom: 16px;
  }

  .floating-whatsapp span,
  .channel-card {
    display: none;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .channel-widget {
    left: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
