/* =========================================================
   Rumbos Australes — Expediciones de trekking, Patagonia CL
   Design DNA: bg #0F1A17 / surface #16241F / ink #E8EFEA
   accent #7FB2A1 / accent-2 #D98C4A
   ========================================================= */

:root {
  --bg: #0F1A17;
  --surface: #16241F;
  --surface-2: #1B2C26;
  --ink: #E8EFEA;
  --ink-soft: #A9BBB2;
  --ink-faint: #7C9088;
  --accent: #7FB2A1;
  --accent-2: #D98C4A;
  --line: rgba(232, 239, 234, 0.12);
  --line-strong: rgba(232, 239, 234, 0.22);
  --header-h: 74px;
  --maxw: 1080px;
  --pad: clamp(20px, 5vw, 72px);
  --serif: ui-serif, Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Consolas", "JetBrains Mono", ui-monospace, monospace;
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1.1em; }
a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--accent); color: var(--bg); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 1.1em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(15, 26, 23, 0.28);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid transparent;
  transition: background 320ms ease, height 320ms ease, border-color 320ms ease, box-shadow 320ms ease, backdrop-filter 320ms ease;
}
/* transparent scrim over the cinematic hero, solid once scrolled */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 16, 14, 0.55), transparent);
  opacity: 1;
  transition: opacity 320ms ease;
  pointer-events: none;
}
.site-header.scrolled {
  background: rgba(15, 26, 23, 0.96);
  backdrop-filter: blur(12px) saturate(1.1);
  height: 62px;
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.6);
}
.site-header.scrolled::before { opacity: 0; }
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand svg { color: var(--accent); flex: none; }
.brand span b { color: var(--accent); font-weight: 600; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-desktop a {
  position: relative;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: color 200ms ease;
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:not(.nav-cta):hover,
.nav-desktop a:not(.nav-cta).is-active { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta).is-active::after { transform: scaleX(1); }

.nav-cta {
  padding: 9px 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent) !important;
  font-weight: 600;
  transition: background 220ms ease, color 220ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--accent);
  color: var(--bg) !important;
}

/* hamburger */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(22, 36, 31, 0.6);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  pointer-events: none;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease, background 200ms ease;
}
.nav-toggle:hover { border-color: var(--accent); }
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), visibility 0s linear 320ms;
  padding: calc(var(--header-h) + 20px) 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), visibility 0s;
}
@media (prefers-reduced-motion: reduce) {
  .drawer, .drawer.is-open { transition: visibility 0s linear 0s; }
}
.drawer a {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease, padding-left 200ms ease;
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); padding-left: 6px; }
.drawer .drawer-cta {
  margin-top: 18px;
  text-align: center;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  padding: 14px;
}
.drawer .drawer-cta:hover { background: var(--accent); color: var(--bg); padding-left: 14px; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

@media (max-width: 1023px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.btn-primary {
  background: var(--accent-2);
  color: #201206;
  box-shadow: 0 12px 30px -14px rgba(217, 140, 74, 0.7);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #e79a58;
  color: #201206;
  transform: translateY(-2px);
}
.btn-primary .arrow { transition: transform 220ms ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- Main ---------- */
main { padding-top: var(--header-h); }

section { position: relative; }

.section-pad { padding-block: clamp(64px, 9vw, 128px); }

.divider-topo {
  display: block;
  width: 100%;
  height: 46px;
  color: var(--line-strong);
  opacity: 0.9;
}
.divider-topo svg { width: 100%; height: 100%; }

/* ---------- Hero — cinematográfico ---------- */
.hero {
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  padding-block: calc(var(--header-h) + clamp(40px, 10vh, 96px)) clamp(56px, 8vh, 104px);
  overflow: hidden;
  isolation: isolate;
}
@supports not (min-height: 92svh) { .hero { min-height: 92vh; } }

.hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-photo-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 45%;
  transform: scale(1.08);
  transform-origin: 62% 42%;
  will-change: transform;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.08) translate3d(0, 0, 0); }
  100% { transform: scale(1.18) translate3d(-1.6%, -2.2%, 0); }
}
/* dark cinematic overlay — bottom-heavy for legibility (contrast >= 4.5:1) */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 16, 14, 0.62) 0%, rgba(9, 16, 14, 0.12) 26%, rgba(9, 16, 14, 0.36) 58%, rgba(9, 16, 14, 0.92) 100%),
    linear-gradient(90deg, rgba(9, 16, 14, 0.78) 0%, rgba(9, 16, 14, 0.28) 42%, transparent 78%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(130% 92% at 50% 42%, transparent 52%, rgba(6, 11, 9, 0.62) 100%);
  pointer-events: none;
}
.hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-mist {
  position: absolute;
  left: -20%; right: -20%;
  height: 46%;
  pointer-events: none;
  background: radial-gradient(60% 100% at 50% 100%, rgba(200, 224, 216, 0.10), transparent 70%);
  filter: blur(8px);
  will-change: transform, opacity;
}
.hero-mist-1 { bottom: 0; animation: mistDrift 19s ease-in-out infinite alternate; }
.hero-mist-2 { bottom: 8%; opacity: 0.7; animation: mistDrift 27s ease-in-out infinite alternate-reverse; }
@keyframes mistDrift {
  0%   { transform: translateX(-6%) translateY(0); opacity: 0.5; }
  50%  { opacity: 0.9; }
  100% { transform: translateX(7%) translateY(-8px); opacity: 0.55; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
}
.hero-title {
  font-size: clamp(2.4rem, 8.4vw, 5rem);
  line-height: 0.98;
  margin: 0.14em 0 0.4em;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
  text-wrap: balance;
}
.hero-title .hl { position: relative; white-space: nowrap; }
.hero-title .wm { color: var(--accent); font-style: italic; }
.hero-sub {
  font-size: clamp(1.05rem, 2.4vw, 1.34rem);
  color: rgba(232, 239, 234, 0.94);
  max-width: 42ch;
  margin-bottom: 1.9em;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 2.4em;
  padding-top: 2em;
  border-top: 1px solid rgba(232, 239, 234, 0.2);
  max-width: 640px;
}
.trust-strip .titem {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  color: rgba(232, 239, 234, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
.trust-strip .titem svg { color: var(--accent); flex: none; }

/* stats row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 3vw, 34px);
  margin-top: 2.6em;
  max-width: 660px;
}
.hero-stats .stat .num {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}
.hero-stats .stat .num .suf { color: var(--accent); }
.hero-stats .stat .lbl {
  font-size: 0.8rem;
  color: rgba(232, 239, 234, 0.72);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* scroll cue */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(232, 239, 234, 0.8);
}
.hero-scroll-cue .hsc-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, var(--accent), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-cue .hsc-line::after {
  content: "";
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--accent);
  animation: cueRun 2.1s cubic-bezier(.7,0,.3,1) infinite;
}
@keyframes cueRun {
  0% { transform: translateY(-100%); }
  60%,100% { transform: translateY(300%); }
}
.hero-scroll-cue:hover { color: var(--accent); }
@media (max-width: 640px) { .hero-scroll-cue { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero-photo { animation: none; transform: scale(1.04); }
  .hero-mist { animation: none; }
  .hero-scroll-cue .hsc-line::after { animation: none; }
}
/* glass button for use over photography */
.btn-glass {
  background: rgba(232, 239, 234, 0.08);
  color: #fff;
  border-color: rgba(232, 239, 234, 0.34);
  backdrop-filter: blur(6px);
}
.btn-glass:hover, .btn-glass:focus-visible {
  background: rgba(232, 239, 234, 0.16);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Apertura / relato longread ---------- */
.relato {
  max-width: 720px;
  margin-inline: auto;
}
.relato .lead-serif {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.34;
  color: var(--ink);
  margin-bottom: 1.3em;
}
.relato p { color: var(--ink-soft); }
.relato p.drop::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 3.6em;
  line-height: 0.74;
  padding: 8px 12px 0 0;
  color: var(--accent-2);
  font-weight: 600;
}
.relato blockquote {
  margin: 1.8em 0;
  padding-left: 26px;
  border-left: 2px solid var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--ink);
}
.relato blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 0.6em;
}

/* ---------- Quien guia ---------- */
.guia-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.guia-portrait {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(120% 90% at 30% 10%, rgba(127,178,161,0.16), transparent 60%),
    linear-gradient(160deg, var(--surface-2), var(--surface));
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 26px;
}
.guia-portrait .initials {
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 7rem);
  color: rgba(232,239,234,0.9);
  letter-spacing: -0.03em;
  line-height: 1;
}
.guia-portrait .ptopo {
  position: absolute;
  inset: 0;
  color: rgba(127,178,161,0.18);
  pointer-events: none;
}
.guia-portrait .badge {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(15,26,23,0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.guia-body h3 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); }
.guia-role {
  color: var(--accent);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.2em;
}
.guia-body p { color: var(--ink-soft); }
.guia-cred {
  list-style: none;
  padding: 0;
  margin: 1.6em 0 0;
  display: grid;
  gap: 12px;
}
.guia-cred li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.guia-cred li svg { color: var(--accent); margin-top: 3px; flex: none; }

/* ---------- Diario / jornadas + altimetria signature ---------- */
.diario { position: relative; }
.altimetria {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  padding: clamp(22px, 4vw, 36px);
  margin-bottom: clamp(40px, 6vw, 68px);
}
.altimetria .alt-label {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.altimetria .alt-label b { color: var(--accent); font-weight: 600; }
.altimetria svg { width: 100%; height: auto; display: block; overflow: visible; }
.alt-path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.alt-path-draw {
  stroke-dasharray: var(--len, 2000);
  stroke-dashoffset: var(--len, 2000);
  transition: stroke-dashoffset 200ms linear;
}
.alt-fill { fill: url(#altGrad); opacity: 0.5; }
.alt-node circle { fill: var(--bg); stroke: var(--accent); stroke-width: 2; }
.alt-node.hot circle { fill: var(--accent-2); stroke: var(--accent-2); }
.alt-grid line { stroke: var(--line); stroke-width: 1; }
.alt-tick { fill: var(--ink-faint); font-size: 11px; font-family: var(--mono); }

.jornadas {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.jornada {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(30px, 5vw, 52px) 0;
  border-bottom: 1px solid var(--line);
}
.jornada-meta .day-num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--accent);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.jornada-meta .day-tag {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 10px;
}
.jornada-meta .day-stats {
  margin-top: 18px;
  display: grid;
  gap: 9px;
  font-size: 0.82rem;
  font-family: var(--mono);
  color: var(--ink-soft);
}
.jornada-meta .day-stats span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.jornada-meta .day-stats svg { color: var(--accent); flex: none; }
.jornada-body h3 { font-size: clamp(1.4rem, 3.2vw, 1.85rem); }
.jornada-body .place {
  color: var(--accent-2);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1em;
}
.jornada-body p { color: var(--ink-soft); }
.jornada-body p.narr { font-family: var(--serif); font-style: italic; color: var(--ink); font-size: 1.08rem; }

/* ---------- Que incluye ---------- */
.incluye-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}
.inc-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  background: var(--surface);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease, box-shadow 240ms ease;
}
.inc-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 40px -26px rgba(127, 178, 161, 0.5);
}
.inc-icon {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(127, 178, 161, 0.12);
  color: var(--accent);
  margin-bottom: 18px;
}
.inc-card h4 { font-size: 1.15rem; margin-bottom: 0.5em; }
.inc-card p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }

.no-incluye {
  margin-top: clamp(28px, 4vw, 44px);
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  padding: 24px clamp(22px, 4vw, 32px);
}
.no-incluye h4 { font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 0.9em; }
.no-incluye ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.no-incluye li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.no-incluye li::before { content: "—"; color: var(--ink-faint); }

/* ---------- Fechas / cupos + precios ---------- */
.band {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.precio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 2.6vw, 26px);
}
.precio-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 28px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease;
}
.precio-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.precio-card.featured { border-color: var(--accent-2); }
.precio-card .flag {
  position: absolute;
  top: -12px; left: 28px;
  background: var(--accent-2);
  color: #201206;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.precio-card .ruta { font-size: 1.35rem; margin-bottom: 0.2em; }
.precio-card .dias {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2em;
}
.precio-card .price {
  font-family: var(--mono);
  font-size: clamp(1.55rem, 3.6vw, 2.15rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.1em;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 0.4em;
}
.precio-card .price small { font-size: 0.9rem; color: var(--ink-faint); font-family: var(--sans); white-space: nowrap; }
.precio-card .ref { font-size: 0.78rem; color: var(--ink-faint); margin-bottom: 1.5em; }
.precio-card ul {
  list-style: none;
  padding: 0; margin: 0 0 1.8em;
  display: grid; gap: 11px;
  flex: 1;
}
.precio-card ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.precio-card ul li svg { color: var(--accent); margin-top: 3px; flex: none; }
.precio-card .btn { justify-content: center; width: 100%; }

.cupos-note {
  margin-top: clamp(26px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.cupos-note .pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
}
.cupos-note .pill svg { color: var(--accent-2); flex: none; }

/* fechas table */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 22px 0 0;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.table-scroll > table { margin: 0 !important; min-width: 540px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
table th {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.76rem;
  background: var(--surface-2);
}
table td { color: var(--ink-soft); }
table td.tabnum { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.state-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 999px;
}
.state-tag.open { background: rgba(127,178,161,0.15); color: var(--accent); }
.state-tag.few { background: rgba(217,140,74,0.16); color: var(--accent-2); }
.state-tag.full { background: rgba(232,239,234,0.08); color: var(--ink-faint); }
.state-tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* ---------- Reserva / form ---------- */
.reserva-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.reserva-aside p { color: var(--ink-soft); }
.reserva-aside .contact-lines {
  list-style: none; padding: 0; margin: 1.8em 0 0;
  display: grid; gap: 16px;
}
.reserva-aside .contact-lines li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.reserva-aside .contact-lines svg { color: var(--accent); margin-top: 3px; flex: none; }
.reserva-aside .contact-lines a { color: var(--ink); word-break: break-word; }
.reserva-aside .contact-lines a:hover { color: var(--accent); }
.reserva-aside .contact-lines small { display: block; color: var(--ink-faint); font-size: 0.8rem; }

form.reserva-form {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--surface);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.84rem; color: var(--ink-soft); font-weight: 600; letter-spacing: 0.02em; }
.field label .opt { color: var(--ink-faint); font-weight: 400; letter-spacing: 0; }
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 13px 14px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(127, 178, 161, 0.18);
}
.field select { appearance: none; cursor: pointer; }
.field.consent {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.field.consent label { font-weight: 400; font-size: 0.84rem; color: var(--ink-faint); line-height: 1.5; }
.field.consent a { color: var(--accent); text-decoration: underline; }
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
form.reserva-form .btn { margin-top: 4px; }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* reserva CTA (index) */
.reserva-cta {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(28px, 5vw, 44px);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  display: flex;
  flex-direction: column;
}
.reserva-cta h3 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 0.5em; }
.reserva-cta p { color: var(--ink-soft); }
.reserva-cta .btn { margin-top: 0.4em; align-self: flex-start; }
.reserva-cta-note { font-size: 0.86rem; color: var(--ink-faint); margin: 1.6em 0 0; }
.reserva-cta-note a { color: var(--accent); word-break: break-word; }
.reserva-cta-note a:hover { color: var(--accent); text-decoration: underline; }

/* anchored sections clear the fixed header */
main [id] { scroll-margin-top: calc(var(--header-h) + 20px); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary { transition: color 200ms ease; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary .chev {
  flex: none;
  width: 22px; height: 22px;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.4,0,.2,1), opacity 200ms ease;
  opacity: 0.75;
}
.faq-item summary:hover .chev { opacity: 1; }
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 4px;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 24px;
}
.faq-item > .answer p { color: var(--ink-soft); margin: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2.6vw, 26px);
}
.testi {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  background: var(--surface);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease, box-shadow 240ms ease;
}
.testi:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 40px -28px rgba(127, 178, 161, 0.5);
}
.testi p {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.5;
}
.testi .who {
  margin-top: 1.2em;
  padding-top: 1.2em;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  color: var(--ink-faint);
}
.testi .who b { color: var(--accent); font-weight: 600; display: block; margin-bottom: 3px; font-family: var(--sans); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(90% 120% at 50% -10%, rgba(217,140,74,0.14), transparent 60%),
    var(--surface-2);
  border-block: 1px solid var(--line);
  text-align: center;
}
.cta-band h2 { font-size: clamp(2rem, 5.4vw, 3.4rem); max-width: 16ch; margin-inline: auto; }
.cta-band p { color: var(--ink-soft); max-width: 46ch; margin: 0.8em auto 2em; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 6vw, 78px) 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 4vw, 52px);
}
.footer-brand .brand { font-size: 1.3rem; margin-bottom: 1em; }
.footer-brand p { color: var(--ink-soft); font-size: 0.92rem; max-width: 34ch; }
.footer-est {
  margin-top: 1.4em;
  font-size: 0.82rem;
  color: var(--ink-faint);
  display: grid; gap: 6px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 1.2em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { color: var(--ink-soft); font-size: 0.92rem; transition: color 200ms ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.footer-bottom a { color: var(--ink-faint); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  z-index: 9999;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h4 { font-size: 1.05rem; margin-bottom: 0.5em; }
.cookie-banner p { font-size: 0.86rem; color: var(--ink-soft); margin-bottom: 1.2em; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1;
  min-width: 96px;
  min-height: 44px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.86rem;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.cookie-actions button[data-consent="accept"] {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-actions button[data-consent="accept"]:hover { background: #93c1b1; }
/* Reject kept at equal visual weight to Accept — solid, opaque, same size.
   No dark-pattern imbalance; Configurar stays a subtler tertiary option. */
.cookie-actions button[data-consent="reject"] {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--line-strong);
}
.cookie-actions button[data-consent="reject"]:hover {
  background: #24382F;
  border-color: var(--ink-soft);
  color: var(--ink);
}
.cookie-actions button[data-consent="settings"]:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* cookie modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
}
.cookie-modal.is-open { display: grid; }
.cookie-modal .panel {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 28px;
  max-width: 460px;
  width: 100%;
}
.cookie-modal h4 { font-size: 1.2rem; margin-bottom: 1em; }
.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.cookie-toggle:first-of-type { border-top: none; }
.cookie-toggle .ct-txt strong { display: block; font-family: var(--sans); font-size: 0.94rem; }
.cookie-toggle .ct-txt span { font-size: 0.8rem; color: var(--ink-faint); }
.cookie-toggle input { width: 20px; height: 20px; accent-color: var(--accent); }
.cookie-modal .btn { margin-top: 18px; width: 100%; justify-content: center; }

/* ---------- Doc pages ---------- */
.doc-hero {
  padding-block: clamp(48px, 7vw, 90px) clamp(30px, 4vw, 50px);
  border-bottom: 1px solid var(--line);
}
.doc-hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
.doc-hero p { color: var(--ink-soft); max-width: 52ch; }
.doc-body { max-width: 780px; padding-block: clamp(40px, 6vw, 72px); }
.doc-body h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); margin-top: 2em; }
.doc-body h3 { font-size: 1.2rem; margin-top: 1.6em; }
.doc-body p, .doc-body li { color: var(--ink-soft); }
.doc-body ul, .doc-body ol { padding-left: 22px; margin-bottom: 1.2em; }
.doc-body li { margin-bottom: 0.5em; }
.doc-body a { color: var(--accent); text-decoration: underline; }
.doc-body .updated {
  font-size: 0.82rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

/* contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.4vw, 22px);
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  background: var(--surface);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease, box-shadow 240ms ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px -26px rgba(127,178,161,0.5);
}
.contact-card .cc-ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(127,178,161,0.12);
  color: var(--accent);
  margin-bottom: 16px;
}
.contact-card h4 { font-size: 1.05rem; margin-bottom: 0.3em; }
.contact-card a, .contact-card p { color: var(--ink); font-size: 0.96rem; word-break: break-word; margin: 0; }
.contact-card a:hover { color: var(--accent); }
.contact-card small { display: block; color: var(--ink-faint); font-size: 0.8rem; margin-top: 6px; }

.hours-grid {
  display: grid;
  gap: 2px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.hours-grid .row {
  display: flex;
  justify-content: space-between;
  padding: 13px 18px;
  background: var(--surface);
  font-size: 0.9rem;
}
.hours-grid .row.today { background: var(--surface-2); }
.hours-grid .row .d { color: var(--ink-soft); }
.hours-grid .row .h { font-family: var(--mono); color: var(--ink); font-variant-numeric: tabular-nums; }

/* thank you / 404 */
.center-stage {
  min-height: calc(100vh - var(--header-h) - 120px);
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: clamp(60px, 10vw, 120px);
}
.center-stage .inner { max-width: 560px; }
.center-stage .big {
  font-family: var(--serif);
  font-size: clamp(4rem, 16vw, 9rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.2em;
}
.center-stage h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
.center-stage p { color: var(--ink-soft); margin-bottom: 2em; }
.center-stage svg.mark { color: var(--accent); margin-bottom: 24px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 640ms cubic-bezier(.2,.7,.2,1), transform 640ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .hero-inner { opacity: 1 !important; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .guia-wrap { grid-template-columns: 1fr; }
  .guia-portrait { max-width: 380px; }
  .reserva-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .header-inner { padding-left: 16px; padding-right: 16px; }
  .jornada { grid-template-columns: 1fr; gap: 16px; }
  .jornada-meta { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
  .jornada-meta .day-stats { flex-direction: row; flex-wrap: wrap; gap: 14px; margin-top: 0; width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .inc-card, .contact-card { padding: 20px; }
  .inc-icon, .contact-card .cc-ico { width: 40px; height: 40px; }
  .cookie-actions button { flex: 1 1 100%; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:linear-gradient(90deg,var(--accent),var(--accent-2));z-index:9998;transition:width 80ms linear;pointer-events:none}

/* =========================================================
   Award-level polish: 3D tilt, glare, parallax figures
   ========================================================= */

/* 3D tilt cards — JS writes an inline transform during hover so it never
   fights the .reveal entrance transform (which runs before any hover). */
.tilt { will-change: transform; }
.tilt.is-tilting { transition: transform 90ms linear, border-color 260ms ease, box-shadow 260ms ease; }
/* moving glare highlight, only while hovering */
.tilt::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(240px 240px at var(--mx, 50%) var(--my, 0%), rgba(127, 178, 161, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
  z-index: 3;
}
.tilt.is-tilting::after { opacity: 1; }
.inc-card, .precio-card, .testi, .contact-card { position: relative; }
@media (prefers-reduced-motion: reduce) {
  .tilt.is-tilting { transform: none !important; }
  .tilt::after { display: none; }
}
@media (hover: none) {
  .tilt::after { display: none; }
}

/* icon flourish on card hover */
.inc-icon { transition: background 260ms ease, transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms ease; }
.inc-card:hover .inc-icon {
  transform: translateY(-2px) scale(1.06);
  background: rgba(127, 178, 161, 0.2);
  box-shadow: 0 10px 24px -12px rgba(127, 178, 161, 0.6);
}

/* parallax figures (JS drives --py) */
.relato-figura, .jornada-figura {
  overflow: hidden;
  border-radius: 16px;
}
.relato-figura img, .jornada-figura img {
  transform: translateY(var(--py, 0)) scale(1.06);
  will-change: transform;
  transition: transform 120ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .relato-figura img, .jornada-figura img { transform: none; }
}
.relato-figura {
  margin: 2.4em 0 0;
  box-shadow: 0 40px 80px -50px rgba(0, 0, 0, 0.9);
}

/* guia portrait subtle zoom */
.guia-portrait img { transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.guia-portrait:hover img { transform: scale(1.05); }
.guia-portrait { box-shadow: 0 40px 80px -50px rgba(0, 0, 0, 0.9); }

/* featured price card lift + ring */
.precio-card.featured {
  box-shadow: 0 30px 70px -40px rgba(217, 140, 74, 0.7);
}
.precio-card .price { transition: color 240ms ease; }
.precio-card:hover .price { color: #fff; }

/* section-head heading gets an accent kicker underline on the eyebrow already;
   give h2 a refined feel */
.section-head h2 { text-wrap: balance; }
.hero-title, .section-head h2, .cta-band h2 { -webkit-font-smoothing: antialiased; }

/* animated altimetria nodes pulse when hot */
.alt-node.hot circle { animation: nodePulse 1.6s ease-in-out infinite; }
@keyframes nodePulse {
  0%,100% { r: 6; }
  50% { r: 8; }
}
@media (prefers-reduced-motion: reduce) { .alt-node.hot circle { animation: none; } }

/* jornada row hover accent */
.jornada { transition: background 300ms ease; }
.jornada:hover { background: linear-gradient(90deg, rgba(127,178,161,0.05), transparent 70%); }
.jornada-meta .day-num { transition: transform 300ms cubic-bezier(.2,.7,.2,1); }
.jornada:hover .day-num { transform: translateX(3px); }

/* keep everything inside the viewport */
.hero-media, .hero, section { max-width: 100%; }

/* ---------- Extra small-screen guards ---------- */
@media (max-width: 430px) {
  .hero-title { font-size: clamp(2.1rem, 10vw, 2.6rem); }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 18px 14px; }
  .btn { padding: 14px 22px; font-size: 0.94rem; }
}
@media (max-width: 360px) {
  .hero-title { font-size: 2.2rem; }
  .hero-title .hl { white-space: normal; }
}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}
