/* ──────────────────────────────────────────────────────────────────────
   SeaCanarias · styles.css
   Sistema de diseño completo (tokens + componentes + layouts).
   Mobile-first. Sin frameworks.
   ────────────────────────────────────────────────────────────────────── */

/* ─── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; }
body { margin: 0; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

/* ─── Tokens · paleta Navy (defecto) ────────────────────────────────── */
:root {
  --c-ink: #003049;
  --c-ink-soft: #0A6E8C;
  --c-ink-on-dark: #FFFFFF;
  --c-primary: #003049;
  --c-primary-hover: #001E2E;
  --c-accent: #F2A65A;
  --c-accent-hover: #D88742;
  --c-success: #1B998B;
  --c-surface: #FFFFFF;
  --c-surface-alt: #FAF7F0;
  --c-surface-soft: #F4F0E8;
  --c-surface-dark: #003049;
  --c-border: rgba(0, 32, 73, 0.10);
  --c-border-strong: rgba(0, 32, 73, 0.18);
  --c-muted: rgba(0, 32, 73, 0.55);
  --c-muted-soft: rgba(0, 32, 73, 0.35);

  --c-hero-grad-from: #EAF4F7;
  --c-hero-grad-mid:  #C7E5EC;
  --c-hero-grad-to:   #9DD1DA;

  --ff-display: "Bricolage Grotesque", Georgia, serif;
  --ff-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0, 32, 73, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 32, 73, 0.10);
  --shadow-lg: 0 18px 50px rgba(0, 32, 73, 0.18);

  --container: 1240px;
}

/* Paleta Laguna — alternativa para campañas de verano */
[data-palette="laguna"] {
  --c-ink: #0E3B5C;
  --c-ink-soft: #1D5C7A;
  --c-primary: #0E3B5C;
  --c-primary-hover: #062944;
  --c-surface-alt: #E7F8F5;
  --c-surface-soft: #D6F0EB;
  --c-surface-dark: #0E3B5C;
  --c-border: rgba(14, 59, 92, 0.10);
  --c-border-strong: rgba(14, 59, 92, 0.18);
  --c-muted: rgba(14, 59, 92, 0.55);
  --c-muted-soft: rgba(14, 59, 92, 0.35);
  --c-hero-grad-from: #E7F8F5;
  --c-hero-grad-mid:  #9FE7DD;
  --c-hero-grad-to:   #3FB8C4;
}

/* ─── Base ──────────────────────────────────────────────────────────── */
body {
  font-family: var(--ff-body);
  color: var(--c-ink);
  background: var(--c-surface);
  font-size: 15px;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 20px;
}
@media (min-width: 768px) { .container { padding-inline: 32px; } }
@media (min-width: 1100px) { .container { padding-inline: 56px; } }

/* ─── Logo lockup ───────────────────────────────────────────────────── */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--c-ink);
  line-height: 1;
}
.logo-mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  position: relative;
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-text {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  white-space: nowrap;
  position: relative;
  display: inline-block;
}
/* Sun dot over the ı of Canarıas */
.logo-text .sun-dot {
  position: relative;
  display: inline-block;
}
.logo-text .sun-dot::after {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 0.22em;
  height: 0.22em;
  border-radius: 50%;
  background: var(--c-accent);
}
.logo.is-dark { color: var(--c-ink-on-dark); }
.logo.is-dark .logo-mark text { fill: #FFFFFF; }

.logo-sm .logo-mark { width: 28px; height: 28px; }
.logo-sm .logo-text { font-size: 17px; }
.logo-lg .logo-mark { width: 44px; height: 44px; }
.logo-lg .logo-text { font-size: 26px; }

/* ─── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  min-height: 44px;
  background: var(--c-surface-soft);
  color: var(--c-ink);
  transition: background 0.15s, transform 0.05s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { background: var(--c-border); }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--c-accent);
  color: #FFFFFF;
}
.btn-primary:hover { background: var(--c-accent-hover); }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--c-border-strong);
}
.btn-ghost.is-dark {
  color: var(--c-ink-on-dark);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost.is-dark:hover { background: rgba(255, 255, 255, 0.10); }
.btn-lg { min-height: 52px; padding: 14px 22px; font-size: 15px; }
.btn-sm { min-height: 36px; padding: 8px 14px; font-size: 13px; }
.btn-full { width: 100%; }
.btn-whatsapp { background: #25D366; color: #FFFFFF; }
.btn-whatsapp:hover { background: #1FB957; }

/* ─── Chips ─────────────────────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  color: var(--c-ink);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.12s;
}
.chip:hover { border-color: var(--c-border-strong); }
.chip.is-active {
  background: var(--c-ink);
  color: #FFFFFF;
  border-color: var(--c-ink);
}
.chip-sm { padding: 5px 10px; font-size: 11px; }
.chip-lg { padding: 9px 14px; font-size: 13px; }

/* ─── HEADER ────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
}
.site-header.is-transparent {
  background: transparent;
  border-bottom: none;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  min-height: 64px;
}
.site-nav {
  display: none;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a {
  text-decoration: none;
  color: inherit;
  opacity: 0.85;
  transition: opacity 0.12s;
}
.site-nav a:hover, .site-nav a.is-active { opacity: 1; }
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header__lang {
  display: none;
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 500;
  align-items: center;
  gap: 4px;
}
.site-header__menu {
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header.is-transparent .site-header__menu {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

@media (min-width: 900px) {
  .site-nav { display: flex; }
  .site-header__lang { display: inline-flex; }
  .site-header__menu { display: none; }
}

/* ─── HERO ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--c-hero-grad-from) 0%, var(--c-hero-grad-mid) 60%, var(--c-hero-grad-to) 100%);
  color: var(--c-ink-on-dark);
  padding-block: 32px 80px;
  overflow: hidden;
}
[data-palette="laguna"] .hero { color: var(--c-ink); }
.hero__inner {
  display: grid;
  gap: 32px;
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  margin-top: 12px;
}
.hero p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.5;
  max-width: 480px;
  opacity: 0.92;
}
.hero__features {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
}
.hero__features li {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  opacity: 0.92;
}
.hero__feature-check {
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
}
.hero__media {
  position: relative;
}
.hero__media-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero__media-float {
  position: absolute;
  background: var(--c-surface);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  color: var(--c-ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__media-float.is-rating { bottom: 26px; left: -16px; max-width: 200px; }
.hero__media-float.is-availability {
  top: 22px; right: -12px;
  background: var(--c-primary);
  color: var(--c-ink-on-dark);
  flex-direction: column; align-items: flex-start;
  gap: 4px;
  max-width: 200px;
}
.hero__media-float .star {
  width: 38px; height: 38px;
  background: var(--c-surface-alt);
  border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%; height: 22px;
}
@media (min-width: 900px) {
  .hero { padding-block: 60px 100px; }
  .hero__inner { grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
}

/* ─── SEARCH BOX ────────────────────────────────────────────────────── */
.search {
  margin-top: 26px;
  background: var(--c-surface);
  border-radius: var(--r-lg);
  padding: 6px;
  display: grid;
  gap: 4px;
  grid-template-columns: 1fr auto;
  align-items: center;
  box-shadow: var(--shadow-lg);
  color: var(--c-ink);
  max-width: 620px;
}
.search__field {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.search__field input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  color: var(--c-ink);
}
.search__field input::placeholder { color: var(--c-muted); }
.search__btn {
  padding: 12px 18px;
  background: var(--c-accent);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  height: 100%;
}
.search__btn:hover { background: var(--c-accent-hover); }
@media (min-width: 700px) {
  .search { grid-template-columns: 1.6fr 1fr 1fr auto; padding: 8px; gap: 4px; }
  .search__field { padding: 12px 14px; }
}

/* ─── SECTION ───────────────────────────────────────────────────────── */
.section { padding-block: 56px; }
.section.is-alt { background: var(--c-surface-alt); }
.section__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 28px;
}
.section__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.section h2 {
  font-size: clamp(26px, 4vw, 36px);
}
.section__subtitle {
  font-size: 15px;
  color: var(--c-muted);
  margin-top: 6px;
}
.section__action {
  align-self: flex-end;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
@media (min-width: 768px) {
  .section { padding-block: 80px; }
  .section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

/* ─── CATEGORY GRID ─────────────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 600px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .cat-grid { grid-template-columns: repeat(6, 1fr); } }
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: var(--c-surface-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--c-ink);
  min-height: 130px;
  transition: border-color 0.15s, transform 0.15s;
}
.cat-card:hover { border-color: var(--c-border-strong); transform: translateY(-1px); }
.cat-card__icon {
  width: 40px; height: 40px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.cat-card__title {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}
.cat-card__count {
  font-size: 11px;
  color: var(--c-muted);
  margin-top: 4px;
}

/* ─── ACTIVITY CARD ─────────────────────────────────────────────────── */
.act-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 700px) { .act-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1100px) { .act-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.act-grid--3 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .act-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.act-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: var(--c-ink);
}
.act-card__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.act-card__cat {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 10px 4px 8px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(4px);
}
.act-card__fav {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.act-card__title {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.act-card__meta {
  font-size: 11px;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.act-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.act-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
}
.act-card__rating .muted { color: var(--c-muted); font-weight: 400; }
.act-card__price {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.act-card__price .from {
  font-family: var(--ff-body);
  font-size: 10px;
  color: var(--c-muted);
  font-weight: 500;
  margin-right: 2px;
}

/* ─── PLACEHOLDER (foto pendiente) ──────────────────────────────────── */
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A6E8C 0%, #3FB8C4 100%);
  display: block;
}
.ph[data-cat="buceo"]    { background: linear-gradient(135deg, #0A4E6B, #1B998B); }
.ph[data-cat="cetaceos"] { background: linear-gradient(135deg, #003049, #3FB8C4); }
.ph[data-cat="vela"]     { background: linear-gradient(135deg, #0A6E8C, #9FE7DD); }
.ph[data-cat="kayak"]    { background: linear-gradient(135deg, #1B998B, #9FE7DD); }
.ph[data-cat="sup"]      { background: linear-gradient(135deg, #3FB8C4, #E7F8F5); }
.ph[data-cat="windsurf"] { background: linear-gradient(135deg, #0E4D64, #3FB8C4); }
.ph[data-cat="charter"]  { background: linear-gradient(135deg, #003049, #0A6E8C); }
.ph[data-cat="excursion"]{ background: linear-gradient(135deg, #0A6E8C, #F2A65A); }
.ph[data-cat="jetski"]   { background: linear-gradient(135deg, #3FB8C4, #F2A65A); }
.ph[data-cat="pesca"]    { background: linear-gradient(135deg, #003049, #1B998B); }
.ph[data-cat="ninos"]    { background: linear-gradient(135deg, #F2A65A, #3FB8C4); }
.ph__sun {
  position: absolute;
  top: 14%; right: 12%;
  width: 18%; aspect-ratio: 1;
  background: #F2A65A;
  border-radius: 50%;
  opacity: 0.92;
}
.ph__waves {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%; height: 52%;
}
.ph__alt {
  position: absolute;
  bottom: 8px; left: 10px; right: 10px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  line-height: 1.3;
}
.ph__alt::before { content: "📷 "; opacity: 0.7; }
.ph__silhouette {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -55%);
  width: 38%; height: auto;
  opacity: 0.85;
}

/* ─── DETAIL PAGE ───────────────────────────────────────────────────── */
.detail-head { padding-block: 20px 24px; }
.breadcrumb {
  font-size: 12px;
  color: var(--c-muted);
  margin-bottom: 10px;
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--c-ink); }
.detail-title { font-size: clamp(26px, 4vw, 38px); }
.detail-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--c-muted);
}
.detail-meta__sep {
  width: 1px; height: 14px; background: var(--c-border);
}
.detail-meta__cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-surface-alt);
  padding: 5px 11px 5px 9px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-ink);
}
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 32px;
}
.gallery__main {
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.gallery__rest { display: none; }
@media (min-width: 800px) {
  .gallery {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 480px;
  }
  .gallery__main {
    grid-row: span 2;
    aspect-ratio: auto;
    height: 100%;
  }
  .gallery__rest { display: block; height: 100%; }
  .gallery__rest > div {
    border-radius: var(--r-lg);
    overflow: hidden;
    height: calc(50% - 4px);
    margin-bottom: 8px;
  }
  .gallery__rest > div:last-child { margin-bottom: 0; }
}
.detail-body { display: grid; gap: 36px; padding-bottom: 56px; }
@media (min-width: 1000px) {
  .detail-body { grid-template-columns: 1fr 400px; gap: 56px; }
}
.detail-main { display: flex; flex-direction: column; gap: 36px; }
.detail-section h2 { font-size: 24px; margin-bottom: 12px; }
.detail-section p { font-size: 15px; line-height: 1.6; }
.quick-info {
  background: var(--c-surface-alt);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 700px) { .quick-info { grid-template-columns: repeat(4, 1fr); } }
.quick-info__item { display: flex; flex-direction: column; gap: 6px; }
.quick-info__icon { display: inline-flex; }
.quick-info__label {
  font-size: 10px;
  color: var(--c-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.quick-info__val {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
}
.include-list {
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  list-style: none;
}
@media (min-width: 700px) { .include-list { grid-template-columns: 1fr 1fr; } }
.include-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.include-list .check {
  width: 26px; height: 26px;
  border-radius: var(--r-pill);
  background: var(--c-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-empresa {
  margin-top: 14px;
  padding: 20px 22px;
  background: var(--c-surface-alt);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
}
@media (min-width: 600px) { .detail-empresa { grid-template-columns: 56px 1fr auto; } }
.empresa-avatar {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
}
.empresa-name { font-family: var(--ff-display); font-size: 16px; font-weight: 600; }
.empresa-tag { font-size: 12px; color: var(--c-muted); margin-top: 3px; }
.map-block {
  margin-top: 14px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .map-block { grid-template-columns: 2fr 1fr; } }
.map-block__map {
  background:
    linear-gradient(135deg, var(--c-surface-alt), var(--c-surface-soft));
  background-image:
    linear-gradient(var(--c-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-border) 1px, transparent 1px),
    linear-gradient(135deg, var(--c-surface-alt), var(--c-surface-soft));
  background-size: 28px 28px, 28px 28px, auto;
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-block__pin {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-surface);
  padding: 10px 14px 10px 12px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
}
.map-block__pin::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-accent);
}
.map-block__info {
  padding: 18px 22px;
  background: var(--c-surface);
  font-size: 13px;
  line-height: 1.5;
}
.map-block__info strong { display: block; margin-bottom: 6px; }
.map-block__info p { color: var(--c-muted); }

/* ─── BOOKING SIDEBAR ───────────────────────────────────────────────── */
.book-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 90px;
  height: fit-content;
}
.book-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}
.book-card__price .from {
  font-size: 12px;
  color: var(--c-muted);
  font-weight: 500;
}
.book-card__price .num {
  font-family: var(--ff-display);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}
.book-card__price .unit {
  font-size: 13px;
  color: var(--c-muted);
}
.book-card__row {
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: 12px;
}
.book-card__row-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.book-card__hint {
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 14px;
  line-height: 1.5;
}
.book-card__wa {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--c-muted);
}
.book-card__wa a { color: var(--c-ink); font-weight: 600; text-decoration: none; }

/* Mobile sticky bottom bar */
.book-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  padding: 12px 16px 18px;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  box-shadow: 0 -8px 22px rgba(0, 32, 73, 0.08);
}
@media (min-width: 1000px) { .book-bar { display: none; } }
.book-bar__price .num {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.book-bar__price .from { font-size: 10px; color: var(--c-muted); font-weight: 500; }
.book-card-wrap { display: none; }
@media (min-width: 1000px) { .book-card-wrap { display: block; } }

/* ─── LISTADO ───────────────────────────────────────────────────────── */
.listado-head {
  padding-block: 32px 16px;
}
.listado-head h1 { font-size: clamp(28px, 5vw, 42px); }
.listado-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-block: 14px;
  border-bottom: 1px solid var(--c-border);
  scrollbar-width: none;
}
.listado-chips::-webkit-scrollbar { display: none; }
.listado-layout {
  padding-block: 28px 56px;
  display: grid;
  gap: 32px;
}
@media (min-width: 1000px) { .listado-layout { grid-template-columns: 260px 1fr; } }
.listado-sidebar { display: none; }
@media (min-width: 1000px) { .listado-sidebar { display: flex; flex-direction: column; gap: 22px; height: fit-content; position: sticky; top: 90px; } }
.filter-group__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.filter-group__list { display: flex; flex-direction: column; gap: 6px; }
.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
}
.filter-group input { accent-color: var(--c-ink); }
.filter-group input[type="range"] { width: 100%; accent-color: var(--c-accent); }
.listado-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.listado-count { font-size: 13px; color: var(--c-muted); }
.listado-count b { color: var(--c-ink); }
.listado-sort {
  padding: 8px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  background: var(--c-surface);
  font-size: 13px;
  cursor: pointer;
}
.listado-mobile-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
@media (min-width: 1000px) { .listado-mobile-filters { display: none; } }

/* ─── HOW IT WORKS ──────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 22px;
}
.step__num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: -0.02em;
}
.step__title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
}
.step__body {
  font-size: 13px;
  color: var(--c-muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* ─── CTA EMPRESAS ──────────────────────────────────────────────────── */
.cta-empresas {
  background: var(--c-primary);
  color: var(--c-ink-on-dark);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 800px) { .cta-empresas { padding: 48px 56px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; } }
.cta-empresas h2 { font-size: clamp(24px, 4vw, 36px); }
.cta-empresas p { margin-top: 14px; opacity: 0.85; max-width: 560px; }
.cta-empresas__actions { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.cta-empresas__wave {
  position: absolute;
  right: -40px; bottom: -40px;
  opacity: 0.16;
  pointer-events: none;
}

/* ─── EMPRESA ROW (Home cards) ─────────────────────────────────────── */
.empresa-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.empresa-row__item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--c-ink);
  transition: border-color 0.12s;
}
.empresa-row__item:hover { border-color: var(--c-border-strong); }
.empresa-row__avatar {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--c-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
}
.empresa-row__name {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 600;
}
.empresa-row__tag {
  font-size: 11px;
  color: var(--c-muted);
  margin-top: 2px;
}

/* ─── FOOTER ────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--c-ink);
  color: var(--c-ink-on-dark);
  padding-block: 56px 32px;
  margin-top: 56px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 700px) { .site-footer__inner { grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; } }
.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.60;
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 13px;
  opacity: 0.85;
  text-decoration: none;
  transition: opacity 0.12s;
}
.footer-col a:hover { opacity: 1; }
.site-footer__bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  opacity: 0.55;
}
@media (min-width: 700px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; } }
.site-footer__lockup { margin-bottom: 14px; }

/* ─── MODAL ─────────────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 32, 73, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (min-width: 700px) { .modal { align-items: center; } }
.modal[hidden] { display: none; }
.modal__panel {
  background: var(--c-surface);
  width: 100%;
  max-height: 92vh;
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 700px) { .modal__panel { width: 460px; max-height: 88vh; border-radius: var(--r-xl); } }
.modal__grip {
  display: flex; justify-content: center; padding: 8px 0 0;
}
.modal__grip::after {
  content: ""; width: 38px; height: 4px; background: var(--c-border-strong);
  border-radius: var(--r-pill);
}
@media (min-width: 700px) { .modal__grip { display: none; } }
.modal__header {
  padding: 14px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--c-border);
}
@media (min-width: 700px) { .modal__header { padding: 20px 24px 16px; } }
.modal__step {
  font-size: 10px;
  color: var(--c-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.modal__title {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 600;
  margin-top: 2px;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.modal__close {
  width: 36px; height: 36px;
  border-radius: var(--r-pill);
  background: var(--c-surface-alt);
  border: none;
  display: flex; align-items: center; justify-content: center;
}
.modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 20px;
}
@media (min-width: 700px) { .modal__body { padding: 20px 24px; } }
.modal__footer {
  padding: 14px 20px 22px;
  border-top: 1px solid var(--c-border);
  background: var(--c-surface-alt);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}
@media (min-width: 700px) { .modal__footer { padding: 16px 24px 20px; } }

.field { margin-bottom: 16px; }
.field__label {
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.field__optional {
  font-size: 9px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-muted-soft);
}
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-surface);
  font-size: 14px;
  outline: none;
  font-family: inherit;
}
.field input:focus, .field textarea:focus { border-color: var(--c-ink); }
.field textarea { resize: none; min-height: 80px; }

.date-row, .time-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 -2px;
  padding: 0 2px;
}
.date-row::-webkit-scrollbar, .time-row::-webkit-scrollbar { display: none; }
.date-btn {
  flex: 0 0 auto;
  width: 56px;
  padding: 10px 0;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  color: var(--c-ink);
  border-radius: var(--r-md);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.date-btn[aria-pressed="true"] {
  background: var(--c-ink);
  color: #FFFFFF;
  border-color: var(--c-ink);
}
.date-btn__dia { font-size: 11px; opacity: 0.7; }
.date-btn__num { font-size: 17px; font-weight: 700; }

.counter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--c-surface-alt);
  border-radius: var(--r-pill);
  padding: 4px 6px;
}
.counter button {
  width: 34px; height: 34px;
  border-radius: 999px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  font-size: 18px;
  font-weight: 600;
}
.counter span {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  min-width: 32px;
  text-align: center;
}

.summary {
  background: var(--c-surface-soft);
  border-radius: var(--r-md);
  padding: 14px;
  font-size: 13px;
}
.summary__row { display: flex; justify-content: space-between; margin-bottom: 4px; }
.summary__row.is-total { font-weight: 700; padding-top: 8px; border-top: 1px solid var(--c-border); margin-top: 8px; }
.summary__hint { font-size: 11px; color: var(--c-muted); margin-top: 6px; }

.wa-note {
  background: rgba(242, 166, 90, 0.10);
  border: 1px solid rgba(242, 166, 90, 0.30);
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-size: 12px;
  color: #7A4318;
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.success {
  text-align: center;
  padding: 20px 0;
}
.success__icon {
  margin: 0 auto 18px;
  width: 64px; height: 64px;
  border-radius: 999px;
  background: rgba(27, 153, 139, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.success h2 { font-size: 22px; margin-bottom: 10px; }
.success p { font-size: 14px; color: var(--c-muted); max-width: 320px; margin: 0 auto; }
.success__details {
  margin-top: 22px;
  padding: 14px 16px;
  background: var(--c-surface-alt);
  border-radius: var(--r-md);
  text-align: left;
  font-size: 12px;
}
.success__details .row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--c-border);
}
.success__details .row:last-child { border-bottom: none; }
.success__details .row span:first-child { color: var(--c-muted); }
.success__details .row span:last-child { font-weight: 600; text-align: right; }

/* ─── PROSE (cómo funciona, sobre, legal) ───────────────────────────── */
.prose { max-width: 720px; margin: 0 auto; font-size: 16px; line-height: 1.6; }
.prose h1 { font-size: clamp(30px, 5vw, 42px); margin-bottom: 16px; }
.prose h2 { font-size: 24px; margin: 32px 0 12px; }
.prose h3 { font-size: 18px; margin: 24px 0 8px; }
.prose p { margin: 12px 0; }
.prose ul, .prose ol { margin: 12px 0; padding-left: 22px; }
.prose li { margin: 6px 0; }
.prose a { color: var(--c-ink-soft); text-decoration: underline; text-underline-offset: 3px; }

/* ─── 404 ───────────────────────────────────────────────────────────── */
.not-found {
  text-align: center;
  padding-block: 100px 80px;
  max-width: 540px;
  margin: 0 auto;
}
.not-found h1 { font-size: clamp(80px, 18vw, 140px); color: var(--c-accent); }
.not-found h2 { font-size: 24px; margin: 6px 0 12px; }
.not-found p { color: var(--c-muted); margin-bottom: 28px; }

/* ─── Utilities ─────────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.text-muted { color: var(--c-muted); }
.hidden-mobile { display: none; }
@media (min-width: 700px) { .hidden-mobile { display: initial; } .hidden-desktop { display: none; } }

.float-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.40);
  text-decoration: none;
}
.float-wa:hover { background: #1FB957; }
.float-wa svg { width: 28px; height: 28px; fill: currentColor; }
@media (max-width: 999px) {
  .float-wa { bottom: 90px; } /* leave space for mobile book-bar */
}
