/* ============================================
   DÓNDE IR PLAYA · TOURS
   Hoja de estilos principal
   ============================================ */

:root {
  --bg: #1a1814;
  --bg-alt: #232019;
  --card: #28241d;
  --ink: #f0eadb;
  --ink-2: #d4ccb8;
  --ink-soft: #9a9180;
  --line: #3d3829;
  --line-soft: #2e2a20;
  --accent: #5BD8DC;
  --accent-2: #d4724a;
  --gold: #d4a04e;
  --turquoise: #5BD8DC;
  --turquoise-deep: #5BD8DC;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; color-scheme: dark; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.09 0 0 0 0 0.07 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.serif { font-family: 'Fraunces', Georgia, serif; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.logo-divider {
  width: 1px;
  height: 22px;
  background: var(--line);
  margin: 0 4px;
}
.logo-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.3;
}
.logo-tag span {
  color: var(--turquoise-deep);
  display: block;
}

.nav-links {
  display: none;
  gap: 4px;
  align-items: center;
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-2);
  transition: all 0.2s;
}
.nav-link:hover { background: rgba(240, 234, 219, 0.08); color: var(--ink); }
.nav-link.active { color: var(--ink); background: rgba(240, 234, 219, 0.08); }
.nav-cta {
  font-size: 12px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--turquoise);
  color: var(--bg);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover { background: #7ee3e6; }

/* Mobile menu */
.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
}
.menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
  padding: 8px 18px 18px;
  z-index: 49;
  animation: slideDown 0.2s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-cta {
  display: inline-flex;
  margin-top: 10px;
  border-bottom: none;
  padding: 12px 18px;
  font-size: 14px;
}

/* ============ COMMON ============ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition: transform 0.15s, background 0.2s;
  white-space: nowrap;
}
.btn-primary { background: var(--turquoise); color: var(--bg); }
.btn-primary:hover { transform: translateY(-1px); background: #7ee3e6; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: rgba(240, 234, 219, 0.04); }
.btn-whatsapp { background: #25D366; color: var(--bg); }
.btn-whatsapp:hover { background: #2ee878; transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: #e5b663; }

.section {
  padding: 56px 18px;
  position: relative;
}
.section.alt { background: var(--bg-alt); }

.section-head { margin-bottom: 28px; max-width: 1280px; margin-left: auto; margin-right: auto; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquoise-deep);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 8vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.section-title em { font-style: italic; color: var(--turquoise-deep); }
.section-desc {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 40ch;
}

/* ============ HERO (HOME) ============ */
.hero {
  padding: 28px 18px 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquoise-deep);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--turquoise-deep);
}
.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 11vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  color: var(--turquoise-deep);
  font-weight: 300;
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: var(--turquoise);
  opacity: 0.18;
  z-index: -1;
}
.hero-sub {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 36ch;
  margin-bottom: 28px;
}
.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-collage {
  position: relative;
  margin-top: 36px;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-collage .photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(91, 216, 220, 0.5) 0%, transparent 50%),
    linear-gradient(135deg, #0e3b3a 0%, #1e6680 40%, #2BBFC4 80%, #b78b3f 100%);
}
.hero-collage .photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500'%3E%3Cpath d='M0,400 Q100,370 200,390 T400,380' stroke='rgba(255,255,255,0.18)' stroke-width='2' fill='none'/%3E%3Cpath d='M0,430 Q100,410 200,425 T400,420' stroke='rgba(255,255,255,0.12)' stroke-width='1.5' fill='none'/%3E%3Cpath d='M0,460 Q100,445 200,455 T400,450' stroke='rgba(255,255,255,0.08)' stroke-width='1' fill='none'/%3E%3Cpolygon points='200,250 230,300 280,310 240,345 250,395 200,370 150,395 160,345 120,310 170,300' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  background-size: cover;
}
.hero-collage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
.hero-collage::after {
  content: 'Catamarán a Isla Mujeres';
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  z-index: 2;
}
.hero-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(26, 24, 20, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid rgba(240, 234, 219, 0.15);
  z-index: 2;
}
.hero-stat {
  position: absolute;
  bottom: 18px;
  right: 14px;
  background: rgba(26, 24, 20, 0.85);
  backdrop-filter: blur(12px);
  padding: 12px 16px;
  border-radius: 12px;
  text-align: right;
  z-index: 2;
  border: 1px solid rgba(240, 234, 219, 0.15);
}
.hero-stat .num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  color: var(--turquoise-deep);
}
.hero-stat .label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
  margin-top: 4px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.stat { text-align: center; padding: 0 4px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .n {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--turquoise-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat .l {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 6px;
}

/* ============ HOME PILLARS (3 verticales) ============ */
.pillars {
  padding: 56px 0 24px;
}
.pillar-head {
  margin-bottom: 32px;
  text-align: center;
}
.pillar-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 7.5vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pillar-title em { font-style: italic; color: var(--turquoise); }
.pillar-grid {
  display: grid;
  gap: 16px;
}
.pillar {
  position: relative;
  padding: 28px 22px 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: block;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--turquoise);
  opacity: 0;
  transition: opacity 0.25s;
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: var(--turquoise);
  box-shadow: 0 8px 30px rgba(91, 216, 220, 0.15);
}
.pillar:hover::before { opacity: 1; }
.pillar:hover .pillar-cta { color: var(--turquoise); }
.pillar-icon {
  font-size: 32px;
  margin-bottom: 18px;
  line-height: 1;
}
.pillar-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 10px;
}
.pillar-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--ink);
}
.pillar-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.pillar-cta {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

/* Pillar accents per vertical */
.pillar-tours .pillar-icon { filter: hue-rotate(-10deg); }
.pillar-gastro .pillar-icon { filter: hue-rotate(20deg); }
.pillar-marketing .pillar-icon { filter: hue-rotate(40deg); }

@media (min-width: 720px) {
  .pillars { padding: 80px 0 32px; }
  .pillar-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .pillar { padding: 36px 28px 32px; }
}


.tour-grid {
  display: grid;
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}
.tour-card {
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}
.tour-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.tour-photo {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.tour-photo .ph-bg { position: absolute; inset: 0; }
.tour-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.tour-photo .ph-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 10px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  z-index: 2;
}
.tour-photo .duration-badge,
.tour-photo .video-tag { z-index: 2; }
.tour-photo .duration-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(26, 24, 20, 0.85);
  backdrop-filter: blur(8px);
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid rgba(240, 234, 219, 0.15);
}
.tour-photo .video-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent-2);
  color: white;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tour-photo .video-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.tour-info { padding: 16px 16px 18px; }
.tour-loc {
  font-size: 11px;
  color: var(--turquoise-deep);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tour-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--ink);
}
.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.tour-price-from {
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tour-price {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.tour-price small {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}

/* Photo placeholder palettes */
.ph-1 .ph-bg {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(91, 216, 220, 0.4) 0%, transparent 50%),
    linear-gradient(135deg, #0e3b3a 0%, #1e6680 50%, #5BD8DC 100%);
}
.ph-1 .ph-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Cpath d='M0,200 Q100,170 200,190 T400,180' stroke='rgba(255,255,255,0.15)' stroke-width='1.5' fill='none'/%3E%3Cpath d='M0,220 Q100,200 200,215 T400,210' stroke='rgba(255,255,255,0.1)' stroke-width='1' fill='none'/%3E%3Cpath d='M0,245 Q100,230 200,240 T400,235' stroke='rgba(255,255,255,0.08)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: cover;
}
.ph-2 .ph-bg {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(183, 139, 63, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, #4a3528 0%, #8b4513 50%, #c2722d 100%);
}
.ph-2 .ph-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Cpolygon points='150,250 250,250 235,180 215,180 200,80 185,180 165,180' fill='rgba(0,0,0,0.2)' /%3E%3C/svg%3E");
  background-size: cover;
}
.ph-3 .ph-bg {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(91, 216, 220, 0.3) 0%, transparent 50%),
    linear-gradient(180deg, #051e2e 0%, #0e3b3a 40%, #2BBFC4 100%);
}
.ph-3 .ph-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Ccircle cx='200' cy='150' r='80' fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='1'/%3E%3Ccircle cx='200' cy='150' r='110' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3Ccircle cx='200' cy='150' r='140' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: cover;
}
.ph-4 .ph-bg {
  background:
    radial-gradient(ellipse at 40% 60%, rgba(91, 216, 220, 0.25) 0%, transparent 60%),
    linear-gradient(135deg, #1a3d2a 0%, #2d6a4a 40%, #4a8b6a 80%, #b78b3f 100%);
}
.ph-4 .ph-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Cpath d='M50,260 L80,200 L110,260 Z' fill='rgba(0,0,0,0.25)'/%3E%3Cpath d='M100,260 L140,180 L180,260 Z' fill='rgba(0,0,0,0.3)'/%3E%3Cpath d='M170,260 L220,160 L270,260 Z' fill='rgba(0,0,0,0.2)'/%3E%3Cpath d='M260,260 L300,190 L340,260 Z' fill='rgba(0,0,0,0.25)'/%3E%3C/svg%3E");
  background-size: cover;
}
.ph-5 .ph-bg {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(91, 216, 220, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, #0e3b3a 0%, #2BBFC4 50%, #5BD8DC 100%);
}
.ph-6 .ph-bg {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(91, 216, 220, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, #0e3b3a 0%, #1a4d4a 40%, #b78b3f 100%);
}
.ph-7 .ph-bg {
  background:
    radial-gradient(ellipse at 50% 70%, rgba(91, 216, 220, 0.2) 0%, transparent 60%),
    linear-gradient(135deg, #2d1810 0%, #4a3528 40%, #b78b3f 100%);
}
.ph-8 .ph-bg {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255, 215, 100, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, #2d1810 0%, #b94a26 60%, #d4724a 100%);
}

/* ============ DESTINOS ============ */
.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
}
.dest-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
}
.dest-card:hover { transform: translateY(-2px); }
.dest-card .bg { position: absolute; inset: 0; }
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.65) 100%);
}
.dest-info { position: absolute; bottom: 14px; left: 14px; right: 14px; z-index: 2; color: white; }
.dest-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}
.dest-count { font-size: 11px; font-weight: 500; opacity: 0.85; margin-top: 4px; letter-spacing: 0.05em; }
.dest-card.large { grid-column: span 2; aspect-ratio: 16/9; }
.dest-card.large .dest-name { font-size: 28px; }

/* ============ EXPERIENCE CHIPS ============ */
.exp-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
}
.exp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s;
}
.exp-chip:hover { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.exp-chip .icon { font-size: 16px; }

/* ============ GASTRO TEASER ============ */
.gastro {
  padding: 64px 18px;
  background: linear-gradient(135deg, #0e1f1f 0%, #1a1814 50%, #1a1814 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gastro::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(91, 216, 220, 0.18), transparent 70%);
  border-radius: 50%;
}
.gastro-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; }
.gastro-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gastro-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--turquoise); }
.gastro-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(34px, 9vw, 52px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--ink);
}
.gastro-title em { font-style: italic; color: var(--turquoise); }
.gastro-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 38ch;
  margin-bottom: 28px;
}
.gastro-stats-row {
  display: flex;
  gap: 28px;
  margin-bottom: 30px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gastro-stat .num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--turquoise);
  line-height: 1;
  letter-spacing: -0.02em;
}
.gastro-stat .lbl {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 6px;
}
.gastro-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}
.gastro-thumb {
  aspect-ratio: 1;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.gastro-thumb-1 { background: linear-gradient(135deg, #b94a26, #d4724a); }
.gastro-thumb-2 { background: linear-gradient(135deg, #4a3528, #b78b3f); }
.gastro-thumb-3 { background: linear-gradient(135deg, #2d6a4a, #b78b3f); }

/* ============ ABOUT ============ */
.about {
  display: grid;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.about-photo {
  aspect-ratio: 4/5;
  border-radius: 16px;
  background: linear-gradient(135deg, #1a4d4a 0%, #b78b3f 100%);
  position: relative;
  overflow: hidden;
}
.about-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
}
.about-photo::after {
  content: 'Isay y Nath';
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.about-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.about-quote::before {
  content: '"';
  font-size: 60px;
  line-height: 0.5;
  color: var(--turquoise-deep);
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.about-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.about-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--turquoise-deep));
  flex-shrink: 0;
}
.about-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
}
.about-role {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ============ FOOTER ============ */
.footer { background: #0f0d0a; color: var(--ink); padding: 48px 18px 32px; border-top: 1px solid var(--line); }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-logo-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.footer-logo-img { 
  height: 56px; 
  width: auto; 
  display: block; 
}
.footer-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--turquoise);
  font-weight: 700;
  padding-left: 14px;
  border-left: 1px solid rgba(240, 234, 219, 0.25);
  line-height: 1.4;
}
.footer-tag span { display: block; color: var(--ink-soft); font-size: 10px; }
.footer-text {
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 30ch;
  margin-bottom: 28px;
  line-height: 1.6;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(240, 234, 219, 0.1);
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--turquoise);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.footer-col a:hover { color: var(--turquoise); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(240, 234, 219, 0.1);
  font-size: 11px;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.05em;
}

/* ============ CATALOG (TOURS PAGE) ============ */
.cat-header {
  padding: 28px 18px 18px;
  max-width: 1280px;
  margin: 0 auto;
}
.cat-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(34px, 9vw, 48px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.cat-title em { font-style: italic; color: var(--turquoise-deep); }
.cat-sub { font-size: 14px; color: var(--ink-soft); }

.filters {
  position: sticky;
  top: 60px;
  z-index: 30;
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
  padding: 14px 18px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
.filter-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-pill:hover { border-color: var(--ink); }
.filter-pill.active {
  background: var(--ink);
  color: var(--turquoise);
  border-color: var(--ink);
}
.filter-pill .arrow { font-size: 10px; opacity: 0.6; }

.cat-grid {
  padding: 24px 18px 60px;
  display: grid;
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ============ DETAIL (TOUR PAGE) ============ */
.detail-back {
  padding: 14px 18px;
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.05em;
  max-width: 1280px;
  margin: 0 auto;
}
.detail-back a { color: var(--ink-soft); }
.detail-back a:hover { color: var(--ink); }
.detail-back .here { color: var(--ink); font-weight: 600; }

.detail-hero { padding: 0 18px 24px; max-width: 1280px; margin: 0 auto; }
.detail-hero-photo {
  aspect-ratio: 4/3;
  border-radius: 18px;
  background: linear-gradient(135deg, #2d6a4a 0%, #4a8b6a 50%, #b78b3f 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.detail-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.5) 100%);
}
.detail-hero-photo .label {
  position: absolute;
  bottom: 16px;
  left: 18px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  z-index: 2;
}
.detail-hero-photo .gallery-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(26, 24, 20, 0.85);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid rgba(240, 234, 219, 0.15);
  z-index: 2;
}
.detail-loc {
  font-size: 11px;
  color: var(--turquoise-deep);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.detail-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 8.5vw, 44px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.detail-title em { font-style: italic; color: var(--turquoise-deep); }

.detail-quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.qi { padding: 14px 0; border-right: 1px solid var(--line); }
.qi:nth-child(2n) { border-right: none; padding-left: 16px; }
.qi:nth-child(odd) { padding-right: 16px; }
.qi:nth-child(1), .qi:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
.qi-l {
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.qi-v {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

/* Reel embed */
.reel { margin: 12px 18px 36px; max-width: 1280px; margin-left: auto; margin-right: auto; }
.reel-frame {
  position: relative;
  aspect-ratio: 9/16;
  max-height: 540px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a1814 0%, #4a3528 50%, #2d6a6a 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(26, 24, 20, 0.2);
  max-width: 360px;
}
.reel-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 2;
}
.reel-play:hover { transform: translate(-50%, -50%) scale(1.05); }
.reel-info {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  color: white;
  z-index: 2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.reel-info .creator { font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.reel-info .desc { font-size: 11px; font-weight: 500; letter-spacing: 0.03em; }
.reel-cap {
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 14px;
  font-style: italic;
  font-family: 'Fraunces', serif;
}

/* Description */
.detail-desc { padding: 0 18px 36px; max-width: 1280px; margin: 0 auto; }
.detail-desc h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.detail-desc h3 em { font-style: italic; color: var(--turquoise-deep); }
.detail-desc p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.detail-desc p .drop {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 0.85;
  float: left;
  margin: 4px 8px 0 0;
  color: var(--turquoise-deep);
}

/* Packages */
.packages { padding: 8px 18px 36px; max-width: 1280px; margin: 0 auto; }
.packages-head { margin-bottom: 22px; }
.packages-head .section-title { font-size: 28px; }
.package-grid { display: grid; gap: 14px; }
.package {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.package.featured {
  border-color: var(--turquoise);
  background: linear-gradient(180deg, var(--card), #2e2920);
  box-shadow: 0 4px 30px rgba(91, 216, 220, 0.12);
}
.package-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--turquoise);
  color: var(--bg);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.package-tier {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.package-tier-name {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--ink);
}
.package-tier-name em { font-style: italic; color: var(--turquoise-deep); }
.package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.package-price .amt {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.package-price .cur { font-size: 11px; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.05em; }
.package-price .per { font-size: 11px; color: var(--ink-soft); margin-left: auto; font-weight: 500; }
.package-features { list-style: none; margin-bottom: 22px; }
.package-features li {
  font-size: 13.5px;
  color: var(--ink-2);
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.package-features li::before {
  content: '✓';
  color: var(--turquoise-deep);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}
.package-features li.bonus::before { content: '★'; color: var(--gold); }
.package .btn-whatsapp {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 13.5px;
}

/* Related */
.related { padding: 0 18px 100px; max-width: 1280px; margin: 0 auto; }
.related.alt-bg { background: var(--bg-alt); padding: 56px 18px 40px; max-width: none; }
.related.alt-bg .related-inner { max-width: 1280px; margin: 0 auto; }

/* Page hero (catalog, gastro, nosotros) */
.page-hero {
  padding: 36px 18px 24px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquoise-deep);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(34px, 9vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.page-hero h1 em { font-style: italic; color: var(--turquoise-deep); }
.page-hero p {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============ GASTRO PAGE ============ */
.gastro-coming {
  padding: 60px 18px 80px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.gastro-coming-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.gastro-coming h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 7vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.gastro-coming h2 em { font-style: italic; color: var(--turquoise-deep); }
.gastro-coming p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}
.gastro-coming .ig-handle {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--accent-2);
  font-weight: 500;
}

/* ============ NOSOTROS PAGE ============ */
.nosotros-section {
  padding: 40px 18px 60px;
  max-width: 920px;
  margin: 0 auto;
}
.nosotros-block { margin-bottom: 48px; }
.nosotros-block h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 7vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.nosotros-block h2 em { font-style: italic; color: var(--turquoise-deep); }
.nosotros-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.nosotros-photo {
  aspect-ratio: 16/10;
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(91, 216, 220, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #0e3b3a 0%, #1e6680 50%, #b78b3f 100%);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.nosotros-photo::after {
  content: 'Foto: Isay y Nath';
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.values-grid {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 24px;
}
.value-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.value-card h3 em { font-style: italic; color: var(--turquoise-deep); }
.value-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* ============ MARKETING PAGE ============ */
.mkt-clients {
  padding: 8px 18px 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.mkt-clients-inner {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
}
.client-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.client-divider {
  width: 32px;
  height: 1px;
  background: var(--line);
}
.client-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}
.client-meta {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.client:last-child .client-name {
  font-style: italic;
  color: var(--turquoise);
}

.mkt-services {
  padding: 32px 18px 56px;
  max-width: 1280px;
  margin: 0 auto;
}
.mkt-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.mkt-service {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.mkt-service:hover {
  border-color: var(--turquoise);
  transform: translateY(-2px);
}
.mkt-num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--line);
  letter-spacing: -0.02em;
  line-height: 1;
}
.mkt-icon {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1;
}
.mkt-service h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--ink);
}
.mkt-service h3 em {
  font-style: italic;
  color: var(--turquoise);
}
.mkt-service p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.mkt-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mkt-features li {
  font-size: 13px;
  color: var(--ink-2);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
  border-top: 1px solid var(--line-soft);
}
.mkt-features li:first-child { border-top: none; padding-top: 12px; }
.mkt-features li::before {
  content: '+';
  color: var(--turquoise);
  font-weight: 700;
  flex-shrink: 0;
}

.mkt-process {
  padding: 56px 18px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-steps {
  display: grid;
  gap: 18px;
  max-width: 1280px;
  margin: 32px auto 0;
}
.step {
  position: relative;
  padding: 24px 22px 22px;
  background: var(--card);
  border-radius: 14px;
  border: 1px solid var(--line);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--turquoise);
  color: var(--bg);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 14px;
}
.step h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.step p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
}

.mkt-cta {
  padding: 64px 18px 80px;
  text-align: center;
}
.mkt-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--card), #2e2920);
  border: 1px solid var(--turquoise);
  border-radius: 22px;
  padding: 40px 26px 36px;
  position: relative;
  overflow: hidden;
}
.mkt-cta-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(91, 216, 220, 0.18), transparent 70%);
  border-radius: 50%;
}
.mkt-cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 16px;
  position: relative;
}
.mkt-cta-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 7vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
  position: relative;
}
.mkt-cta-title em { font-style: italic; color: var(--turquoise); }
.mkt-cta-inner p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 28px;
  position: relative;
}
.mkt-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  position: relative;
  margin-bottom: 18px;
}
.mkt-cta-buttons .btn { justify-content: center; }
.mkt-cta-note {
  font-size: 11px;
  color: var(--ink-soft);
  font-style: italic;
  letter-spacing: 0.05em;
  position: relative;
}

/* ============ LANGUAGE TOGGLE ============ */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.lang-toggle .lang-opt {
  color: var(--ink-soft);
  padding: 5px 8px;
  border-radius: 6px;
  transition: all 0.15s;
  cursor: pointer;
}
.lang-toggle .lang-opt:hover { color: var(--ink); background: rgba(240, 234, 219, 0.06); }
.lang-toggle .lang-opt.active {
  color: var(--turquoise);
  cursor: default;
}
.lang-toggle .lang-opt.active:hover { background: transparent; }
.lang-toggle .lang-divider {
  color: var(--line);
  font-weight: 400;
  user-select: none;
}

.mobile-lang {
  display: flex;
  gap: 18px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-lang a {
  color: var(--ink-soft);
  padding: 0;
  border-bottom: none;
}
.mobile-lang a:hover { color: var(--ink); }
.mobile-lang .active {
  color: var(--turquoise);
}

@media (min-width: 720px) {
  .mkt-clients { padding: 8px 36px 64px; }
  .mkt-clients-inner { padding: 36px; }
  .client-list { flex-direction: row; justify-content: center; gap: 36px; }
  .client-divider { width: 1px; height: 36px; }
  .mkt-services { padding: 56px 36px 80px; }
  .mkt-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .mkt-service { padding: 32px 28px; }
  .mkt-process { padding: 96px 36px; }
  .process-steps { grid-template-columns: repeat(4, 1fr); }
  .mkt-cta { padding: 96px 36px 120px; }
  .mkt-cta-inner { padding: 56px 48px 48px; }
  .mkt-cta-buttons { flex-direction: row; justify-content: center; }
}

@media (min-width: 1024px) {
  .mkt-grid { grid-template-columns: repeat(3, 1fr); }
}


@media (min-width: 720px) {
  .nav-inner { padding: 14px 36px; }
  .nav-links { display: flex; }
  .menu-btn { display: none; }
  .container { padding: 0 36px; }
  .hero { padding: 56px 36px 64px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
  .hero-collage { margin-top: 0; aspect-ratio: 4/5; }
  .section { padding: 80px 36px; }
  .gastro { padding: 96px 36px; }
  .gastro-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
  .tour-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .dest-grid { grid-template-columns: repeat(4, 1fr); }
  .dest-card.large { grid-column: span 2; }
  .about { grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
  .cat-header { padding: 56px 36px 24px; text-align: center; }
  .cat-grid { padding: 32px 36px 80px; grid-template-columns: repeat(3, 1fr); }
  .filters { padding: 16px 36px; }
  .footer { padding: 64px 36px 36px; }
  .footer-links { grid-template-columns: repeat(4, 1fr); }
  .detail-hero { padding: 0 36px 32px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
  .detail-hero-photo { margin-bottom: 0; }
  .reel { padding: 0 36px; margin-bottom: 60px; }
  .detail-desc, .packages, .related { padding-left: 36px; padding-right: 36px; }
  .package-grid { grid-template-columns: repeat(3, 1fr); }
  .package.featured { transform: scale(1.03); }
  .nosotros-section { padding: 60px 36px 80px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .stats { margin: 32px auto; }
}
