/* ============================================================
   KiteGuru — kiteguru.eu
   Sistema de diseño · v2 «Isobara»
   Paleta: grafito + cian + naranja señal sobre blanco y niebla
   Tipografía: Space Grotesk (display) / Archivo (texto) / IBM Plex Mono (datos)
   ============================================================ */

:root {
  --ink: #14181c;
  --ink-soft: #5b676d;
  --paper: #ffffff;
  --mist: #edf1f3;
  --graphite: #14181c;
  --graphite-2: #1e262c;
  --cyan: #00b3c7;
  --cyan-dark: #018fa0;
  --cyan-deep: #016f7d;   /* cian para texto sobre blanco: 5.9:1 */
  --cyan-soft: #7fd8e3;
  --signal: #ff6b35;
  --signal-dark: #e4551f;
  --wa: #1db35a;
  --wa-dark: #16934a;
  --line: rgba(20, 24, 28, 0.14);
  --line-inv: rgba(237, 241, 243, 0.2);
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 1px 2px rgba(20, 24, 28, 0.05), 0 10px 28px rgba(20, 24, 28, 0.07);
  --font-display: "Space Grotesk", "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

::selection { background: var(--cyan); color: #fff; }

/* ---------- Layout ---------- */

.shell {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.2rem);
}

.section { padding-block: clamp(3.2rem, 8vw, 5.5rem); }
.section--tight { padding-block: clamp(2.2rem, 5vw, 3.4rem); }
.section--dark { background: var(--graphite); color: var(--paper); }
.section--mist { background: var(--mist); }

/* ---------- Tipografía ---------- */

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.06; letter-spacing: -0.025em; }

h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); line-height: 1.25; }

.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: 0.9rem;
}

.section--dark .kicker { color: var(--cyan-soft); }

.lead { font-size: clamp(1.1rem, 2vw, 1.3rem); line-height: 1.55; color: var(--ink-soft); max-width: 46rem; }
.section--dark .lead { color: rgba(237, 241, 243, 0.85); }

.prose { max-width: 44rem; }
.prose p + p { margin-top: 1rem; }
.prose h2 { margin-top: 2.6rem; margin-bottom: 0.9rem; }
.prose h3 { margin-top: 1.9rem; margin-bottom: 0.6rem; }
.prose ul, .prose ol { padding-left: 1.3rem; margin-block: 1rem; }
.prose li + li { margin-top: 0.45rem; }
.prose strong { font-weight: 600; }

.answer-capsule {
  border-left: 3px solid var(--cyan);
  background: #fff;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.05rem 1.3rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.08rem;
  max-width: 46rem;
  box-shadow: var(--shadow);
  margin-block: 1.6rem;
}

.updated {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.8rem;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
}

.brand { display: inline-flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.brand svg { height: 34px; width: auto; }
.brand__word { font-family: var(--font-display); font-weight: 700; font-size: 1.32rem; letter-spacing: -0.035em; }
.brand__tag {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-left: 1px solid var(--line);
  padding-left: 0.65rem;
}
@media (min-width: 900px) { .brand__tag { display: inline; } }

.nav { display: flex; align-items: center; gap: clamp(0.85rem, 1.8vw, 1.6rem); }
.nav a { text-decoration: none; font-weight: 500; font-size: 0.96rem; white-space: nowrap; }
.nav a:hover { color: var(--signal-dark); }
.nav a[aria-current="page"] { color: var(--signal-dark); box-shadow: inset 0 -2px 0 var(--signal); }
.nav .btn { margin-left: 0.2rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.4rem; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1.2rem 1.2rem;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.7rem 0.2rem; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: none; }
  .nav .btn { margin: 0.8rem 0 0; justify-content: center; }
}

/* ---------- Botones ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.78rem 1.45rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  background: var(--signal);
  color: #fff;
}
.btn:hover { background: var(--signal-dark); transform: translateY(-1px); }

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

.btn--ghost {
  background: transparent;
  color: inherit;
  border: 1.5px solid currentColor;
}
.btn--ghost:hover { background: rgba(20, 24, 28, 0.06); transform: translateY(-1px); }
.section--dark .btn--ghost:hover { background: rgba(237, 241, 243, 0.12); }

.btn--lg { padding: 0.95rem 1.9rem; font-size: 1.08rem; }

.btn svg { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
/* Doble velo: vertical para el pie del hero y horizontal para el texto,
   que va alineado a la izquierda. Con fotos claras (nieve, arena) el
   contraste del titular no puede depender de la suerte. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(11, 14, 17, 0.86) 0%, rgba(11, 14, 17, 0.45) 42%, rgba(11, 14, 17, 0.30) 100%),
    linear-gradient(to right, rgba(11, 14, 17, 0.62) 0%, rgba(11, 14, 17, 0.30) 52%, rgba(11, 14, 17, 0.08) 100%);
}
.hero__content { padding-block: clamp(2.5rem, 7vw, 4.5rem); max-width: 780px; }
.hero .kicker { color: var(--cyan-soft); }
.hero h1 { color: #fff; text-wrap: balance; }
.hero__sub { margin-top: 1.1rem; font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 40rem; color: rgba(255, 255, 255, 0.92); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.7rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  margin-top: 2rem; padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.92rem;
}
.hero__meta strong { display: block; font-size: 1.12rem; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; }
.hero__meta strong .num { font-size: 1em; font-weight: 600; }

/* Hero compacto para páginas interiores */
.hero--page { min-height: min(58vh, 520px); }

/* ---------- Tarjetas ---------- */

.grid { display: grid; gap: 1.4rem; }
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(20, 24, 28, 0.17); }
.card__img { aspect-ratio: 3 / 2; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.25rem 1.35rem 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.card__label { min-height: 2.1em; font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan-deep); }
.card p { color: var(--ink-soft); font-size: 0.98rem; }
.card__cta { margin-top: auto; padding-top: 0.7rem; font-weight: 600; color: var(--signal-dark); font-size: 0.98rem; }

/* ---------- Feature list (garantía, fotógrafo, etc.) ---------- */

.features { display: grid; gap: 1.6rem; }
@media (min-width: 820px) { .features { grid-template-columns: repeat(3, 1fr); } }
.feature { border-top: 3px solid var(--signal); padding-top: 1rem; }
.feature h3 { margin-bottom: 0.45rem; }
.feature p { color: var(--ink-soft); font-size: 0.98rem; }
.section--dark .feature p { color: rgba(237, 241, 243, 0.8); }
.section--dark .feature { border-top-color: var(--cyan-soft); }

/* ---------- Datos / tabla de viento ---------- */

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); background: #fff; }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 640px;
}
table.data caption {
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  padding: 1.1rem 1.2rem 0.5rem;
  font-size: 1.05rem;
}
table.data th, table.data td { padding: 0.65rem 1.2rem; text-align: left; }
table.data thead th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 2px solid var(--ink);
}

/* Celdas de dato: monoespaciada y cifras de ancho fijo, para que las
   columnas de nudos y grados se lean como una tabla y no como prosa. */
table.data td.num, .num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 0.9em;
  letter-spacing: -0.01em;
}
span.num { white-space: nowrap; }
table.data tbody tr.is-best th[scope="row"]::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--signal);
  margin-left: 0.5rem;
  vertical-align: middle;
}
table.data tbody tr:nth-child(odd) { background: rgba(0, 179, 199, 0.07); }
table.data tbody tr.is-best { background: rgba(255, 107, 53, 0.12); }
table.data tbody tr.is-best td:first-child { font-weight: 700; }

.stats { display: grid; gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
@media (min-width: 680px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: #fff; padding: 1.4rem 1.3rem; }
.stat strong { display: block; font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; letter-spacing: -0.03em; color: var(--graphite); }
.stat strong .num { font-size: 0.94em; font-weight: 600; }
.stat span { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Itinerario ---------- */

.itinerary { list-style: none; display: grid; gap: 0; max-width: 46rem; }
.itinerary li {
  position: relative;
  padding: 1.15rem 0 1.15rem 3.4rem;
  border-bottom: 1px solid var(--line);
}
.itinerary li:last-child { border-bottom: none; }
.itinerary__day {
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--graphite);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1rem;
}
.itinerary h3 { font-size: 1.12rem; margin-bottom: 0.25rem; }
.itinerary p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Incluye / No incluye ---------- */

.includes { display: grid; gap: 1.4rem; }
@media (min-width: 760px) { .includes { grid-template-columns: 1.2fr 1fr; } }
.includes ul { list-style: none; }
.includes li { padding: 0.55rem 0 0.55rem 1.9rem; position: relative; border-bottom: 1px dashed var(--line); }
.includes li:last-child { border-bottom: none; }
.includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: var(--cyan);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.2 12.6 1.9 8.3l1.4-1.4 2.9 2.9 6.5-6.5 1.4 1.4z"/></svg>') center / contain no-repeat;
}
.includes .no li::before { background: var(--ink-soft); mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M3.5 2.1 8 6.6l4.5-4.5 1.4 1.4L9.4 8l4.5 4.5-1.4 1.4L8 9.4l-4.5 4.5-1.4-1.4L6.6 8 2.1 3.5z"/></svg>') center / contain no-repeat; }

/* ---------- Precio ---------- */

.price-box {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--signal);
}
.price-box .amount { font-family: var(--font-mono); font-size: 2.3rem; font-weight: 600; letter-spacing: -0.04em; color: var(--graphite); line-height: 1; }
.price-box .amount small { font-size: 1rem; font-family: var(--font-body); color: var(--ink-soft); font-weight: 500; }
.price-box ul { list-style: none; margin-top: 1rem; font-size: 0.95rem; color: var(--ink-soft); }
.price-box li { padding-block: 0.28rem; }
.price-box .btn { width: 100%; justify-content: center; margin-top: 1.2rem; }
.price-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.8rem; }

.badge-cupos {
  display: inline-block;
  background: rgba(255, 107, 53, 0.13);
  color: var(--signal-dark);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

/* ---------- FAQ ---------- */

.faq { max-width: 48rem; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 3rem 1.05rem 1.3rem;
  font-weight: 600;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--signal);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details > div { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }

/* ---------- Banda CTA ---------- */

.cta-band {
  position: relative;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}
.cta-band__img { position: absolute; inset: 0; z-index: -2; }
.cta-band__img img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(11, 14, 17, 0.6);
}
.cta-band .shell { padding-block: clamp(3.5rem, 9vw, 6rem); }
.cta-band h2 { color: #fff; max-width: 30ch; margin-inline: auto; text-wrap: balance; }
.cta-band p { max-width: 44rem; margin: 1rem auto 0; color: rgba(255, 255, 255, 0.88); }
.cta-band .kicker { color: var(--cyan-soft); margin: 0 0 0.9rem; font-size: 0.78rem; }
.cta-band .btn { margin-top: 1.6rem; }

/* ---------- Splits ---------- */

.split { display: grid; gap: 2.2rem; align-items: center; }
@media (min-width: 880px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); }
  .split--rev > :first-child { order: 2; }
  .split--rev > :last-child { order: 1; }
}
.split__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split__img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--graphite);
  color: rgba(237, 241, 243, 0.85);
  font-size: 0.95rem;
}
.site-footer a { color: inherit; }
.site-footer a:hover { color: #fff; }
.site-footer__grid {
  display: grid;
  gap: 2.2rem;
  padding-block: clamp(2.8rem, 6vw, 4rem) 2rem;
}
@media (min-width: 820px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.site-footer h2 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-soft);
  margin-bottom: 0.9rem;
  font-weight: 700;
}
.site-footer__nota { margin-top: 0.9rem; font-size: 0.83rem; color: rgba(237, 241, 243, 0.62); }
.site-footer ul { list-style: none; }
.site-footer li { padding-block: 0.25rem; }
.site-footer__brand svg { height: 40px; width: auto; margin-bottom: 0.9rem; }
.site-footer__brand p { max-width: 30ch; }
.site-footer__bottom {
  border-top: 1px solid var(--line-inv);
  padding-block: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(237, 241, 243, 0.6);
}

/* ---------- WhatsApp flotante ---------- */

.wa-float {
  position: fixed;
  right: clamp(0.9rem, 3vw, 1.6rem);
  bottom: clamp(0.9rem, 3vw, 1.6rem);
  z-index: 80;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(20, 24, 28, 0.35);
  transition: transform 0.15s ease, background 0.15s ease;
}
.wa-float:hover { transform: scale(1.06); background: var(--wa-dark); }
.wa-float svg { width: 32px; height: 32px; }

/* ---------- Breadcrumbs ---------- */

.breadcrumbs { font-size: 0.85rem; color: var(--ink-soft); padding-top: 1.2rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.breadcrumbs li + li::before { content: "›"; margin-right: 0.4rem; color: var(--line); }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ---------- Countdown ---------- */

.countdown { display: inline-flex; gap: 0.4rem; align-items: baseline; font-family: var(--font-mono); font-size: 1.15rem; color: var(--signal-dark); font-weight: 600; }

/* ---------- Galería ---------- */

.gallery { display: grid; gap: 0.9rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin: 0; }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform 0.25s ease; }
.gallery figure:hover img { transform: scale(1.04); }

/* ---------- Util ---------- */

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.section-head { max-width: 52rem; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }

.credit-list { list-style: none; max-width: 46rem; }
.credit-list li { padding: 0.8rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ============================================================
   Componentes v2
   ============================================================ */

/* ---------- Foco visible en todo lo interactivo ---------- */

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
  border-radius: 4px;
}
.section--dark :where(a, button):focus-visible,
.hero :where(a, button):focus-visible,
.cta-band :where(a, button):focus-visible { outline-color: var(--cyan-soft); }

/* ---------- Antetítulo como párrafo ---------- */

p.kicker { margin-block: 0 0.9rem; }

/* ---------- Listas con marca ---------- */

.ticks { list-style: none; display: grid; gap: 0.55rem; max-width: 46rem; }
.ticks li { position: relative; padding-left: 1.75rem; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.42em;
  width: 0.95rem; height: 0.95rem;
  background: var(--cyan);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.2 12.6 1.9 8.3l1.4-1.4 2.9 2.9 6.5-6.5 1.4 1.4z"/></svg>') center / contain no-repeat;
}
.ticks--no li::before {
  background: var(--signal-dark);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M3.5 2.1 8 6.6l4.5-4.5 1.4 1.4L9.4 8l4.5 4.5-1.4 1.4L8 9.4l-4.5 4.5-1.4-1.4L6.6 8 2.1 3.5z"/></svg>') center / contain no-repeat;
}
.section--dark .ticks li::before { background: var(--cyan-soft); }

/* ---------- Notas al pie de sección ---------- */

.nota { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.9rem; max-width: 52rem; }
.nota--inv { color: rgba(237, 241, 243, 0.62); }
.nota--inv a { color: inherit; }

.ficha {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  color: var(--graphite);
  background: rgba(0, 179, 199, 0.1);
  border-left: 3px solid var(--cyan);
  border-radius: 0 6px 6px 0;
  padding: 0.5rem 0.85rem;
  display: inline-block;
  margin-top: 0.6rem !important;
  font-weight: 500;
}

/* ---------- Splits y pilas ---------- */

@media (min-width: 880px) {
  .split--wide { grid-template-columns: 1.35fr 0.85fr; align-items: start; }
}
.stack { display: grid; gap: 1.1rem; }

/* ---------- Tarjeta de kitetrip ---------- */

.trip-card {
  display: grid;
  gap: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
@media (min-width: 880px) { .trip-card { grid-template-columns: 0.95fr 1.05fr; } }
.trip-card__img img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.trip-card__body { padding: clamp(1.4rem, 3vw, 2.2rem); display: flex; flex-direction: column; gap: 0.85rem; }
.trip-card__body h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.trip-card__body h3 a { text-decoration: none; }
.trip-card__body h3 a:hover { color: var(--signal-dark); }
.trip-card__body > p { color: var(--ink-soft); }
.trip-card__price { font-size: 1.05rem; color: var(--ink) !important; }
.trip-card__price strong { font-family: var(--font-mono); font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; color: var(--graphite); }

/* ---------- Galería con pie ---------- */

.gallery--caption figure { background: #fff; display: flex; flex-direction: column; }
.gallery--caption figcaption {
  padding: 0.7rem 0.9rem 0.9rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.gallery--caption img { aspect-ratio: 4 / 3; }

/* ---------- Paginación entre meses ---------- */

.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 1.1rem;
  font-weight: 600;
  font-size: 0.96rem;
}
.pager a { text-decoration: none; }
.pager a:hover { color: var(--signal-dark); }

/* ---------- Tabla: celdas de encabezado de fila ---------- */

table.data th[scope="row"] { font-weight: 600; color: var(--ink); white-space: nowrap; }
table.data th[scope="row"] a { color: inherit; }
table.data tbody tr.is-best th[scope="row"] { font-weight: 700; }

/* ---------- Manual de marca ---------- */

.logo-grid { display: grid; gap: 1.4rem; }
@media (min-width: 720px) { .logo-grid { grid-template-columns: repeat(2, 1fr); } }
.logo-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.logo-card img {
  width: auto;
  max-width: 78%;
  height: auto;
  max-height: 92px;
  margin: 2.2rem auto 1.6rem;
}
.logo-card--dark img { background: transparent; }
.logo-card--dark { background: var(--graphite); }
.logo-card figcaption {
  padding: 0.9rem 1.2rem 1.2rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: #fff;
  border-top: 1px solid var(--line);
}
.logo-card figcaption strong { display: block; color: var(--ink); margin-bottom: 0.15rem; }
.logo-card figcaption a { color: var(--signal-dark); font-weight: 600; }

.swatches { list-style: none; display: grid; gap: 1rem; }
@media (min-width: 640px) { .swatches { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .swatches { grid-template-columns: repeat(4, 1fr); } }
.swatch { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.88rem; color: var(--ink-soft); }
.swatch strong { color: var(--ink); font-size: 1rem; }
.swatch__chip {
  display: grid;
  place-items: end start;
  height: 92px;
  box-shadow: inset 0 0 0 1px rgba(20, 24, 28, 0.12);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  margin-bottom: 0.35rem;
}

.type-demo { background: #fff; border-radius: var(--radius); padding: 1.6rem 1.5rem; box-shadow: var(--shadow); }
.type-demo__display { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.03em; font-size: clamp(2rem, 5vw, 3rem); line-height: 1.05; color: var(--graphite); }
.type-demo__mono { font-family: var(--font-mono); font-size: 1.05rem; color: var(--cyan-deep); margin-top: 0.7rem; font-variant-numeric: tabular-nums; }
.type-demo__body { margin-top: 0.6rem; font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- Ajustes varios ---------- */

.mb-1 { margin-bottom: 1rem; }
.hero__cta--center { justify-content: center; }
.prose .ficha + h2 { margin-top: 2.6rem; }

/* Botón de menú: barras */
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  display: block;
  width: 17px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -5px; }
.nav-toggle__bars::after { top: 5px; }

/* WhatsApp flotante con etiqueta en escritorio */
.wa-float { text-decoration: none; color: #fff; }
.wa-float__txt {
  display: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}
@media (min-width: 900px) {
  .wa-float {
    width: auto;
    height: 56px;
    border-radius: 999px;
    grid-auto-flow: column;
    align-items: center;
    gap: 0.5rem;
    padding-inline: 1.1rem 1.4rem;
  }
  .wa-float svg { width: 26px; height: 26px; }
  .wa-float__txt { display: inline; }
}

/* Objetivos táctiles cómodos en móvil */
@media (max-width: 820px) {
  .nav a, .site-footer li a { min-height: 44px; display: flex; align-items: center; }
  .nav-toggle { min-height: 44px; }
  .faq summary { padding-block: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
