@font-face {
  font-family: "Lufga";
  src: url("LufgaExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lufga";
  src: url("LufgaLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lufga";
  src: url("LufgaRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lufga";
  src: url("LufgaMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lufga";
  src: url("LufgaSemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lufga";
  src: url("LufgaBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lufga";
  src: url("LufgaExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lufga";
  src: url("LufgaBlack.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #07385f;
  --forest: #005baa;
  --forest-2: #003e76;
  --green: #f5821f;
  --green-bright: #ffcb07;
  --water: #0782c7;
  --water-deep: #003e76;
  --orange: #f5821f;
  --yellow: #ffcb07;
  --sky: #dbeefa;
  --sand: #fff3da;
  --paper: #fffdf8;
  --white: #fff;
  --line: rgba(0, 91, 170, .16);
  --display: "Lufga", "Trebuchet MS", sans-serif;
  --body: "Lufga", "Trebuchet MS", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
em { font-style: normal; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -80px; left: 24px; z-index: 1000;
  padding: 12px 18px; background: var(--white); color: var(--ink);
  transition: top .2s;
}
.skip-link:focus { top: 20px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: 92px; padding: 0 clamp(22px, 5vw, 80px);
  color: var(--white); transition: background .35s, height .35s, box-shadow .35s;
}
.site-header.scrolled {
  height: 72px; color: var(--ink); background: rgba(251,250,246,.9);
  box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(18px);
}
.brand { position: relative; z-index: 3; }
.official-brand {
  display: flex; align-items: center; gap: 0; width: auto; height: 50px;
  padding: 5px 0; background: transparent;
}
.official-symbol, .official-wordmark {
  display: block; height: 40px;
  background-image: url("assets/marca/marca-maravilla-rumipal.png");
  background-repeat: no-repeat; background-size: 662px 40px;
}
.official-symbol { width: 42px; background-position: 0 0; }
.official-wordmark { width: 267px; background-position: -199px 0; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 36px); }
.main-nav > a {
  font-size: .82rem; font-weight: 700; letter-spacing: .02em;
  position: relative;
}
.main-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; inset: auto 0 -7px;
  height: 1px; background: currentColor; transform: scaleX(0);
  transform-origin: right; transition: transform .25s;
}
.main-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 17px; border: 1px solid currentColor; border-radius: 100px; }
.menu-toggle { display: none; }

.chapter-nav {
  position: fixed; z-index: 80; right: 18px; top: 50%; display: grid; gap: 3px;
  width: 108px; padding: 15px 12px 15px 22px; border: 1px solid rgba(255,255,255,.6);
  border-radius: 16px; background: rgba(255,255,255,.78); box-shadow: 0 14px 45px rgba(0,38,72,.1);
  backdrop-filter: blur(16px); transform: translateY(-50%);
}
.chapter-track {
  position: absolute; left: 11px; top: 20px; bottom: 20px; width: 1px;
  overflow: hidden; background: rgba(0,91,170,.16);
}
.chapter-track i {
  display: block; width: 100%; height: 100%; background: var(--green);
  transform: scaleY(0); transform-origin: top;
}
.chapter-nav a {
  display: grid; grid-template-columns: 19px 1fr; align-items: center; gap: 4px;
  min-height: 24px; color: rgba(7,56,95,.45); transition: color .25s;
}
.chapter-nav a::before {
  content: ""; position: absolute; left: 8px; width: 7px; height: 7px;
  border-radius: 50%; background: #d7e2e9; transition: background .25s, transform .25s;
}
.chapter-nav a.active { color: var(--ink); }
.chapter-nav a.active::before { background: var(--green); transform: scale(1.25); }
.chapter-nav b { font-size: .55rem; font-weight: 700; }
.chapter-nav span { font-size: .58rem; font-weight: 700; letter-spacing: .02em; }

.hero {
  position: relative; min-height: 100svh; color: var(--white);
  display: grid; align-items: end; padding: 170px clamp(24px, 7vw, 120px) 12vh;
  isolation: isolate;
}
.hero-media, .hero-overlay { position: absolute; inset: 0; z-index: -2; }
.hero-media { overflow: hidden; background: var(--forest-2); transform: translateZ(0); }
.hero-slide {
  position: absolute;
  inset: -3px;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateZ(0) scale(1.04);
  backface-visibility: hidden;
  will-change: opacity, transform;
  transition: opacity 1.15s ease, visibility 1.15s, transform 7s ease-out;
}
.hero-slide.active { opacity: 1; visibility: visible; transform: translateZ(0) scale(1.008); }
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0) scale(1.002);
  backface-visibility: hidden;
}
.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,38,72,.76) 0%, rgba(0,38,72,.26) 55%, rgba(0,38,72,.14) 100%),
    linear-gradient(0deg, rgba(0,38,72,.6), transparent 45%);
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-content { max-width: 1050px; }
.eyebrow, .kicker {
  margin: 0 0 24px; text-transform: uppercase; font-size: .72rem;
  font-weight: 700; letter-spacing: .18em;
}
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 34px; height: 1px; background: var(--green-bright); }
.hero h1 {
  margin: 0; max-width: 1000px; font: 700 clamp(3.8rem, 8.5vw, 8.3rem)/.88 var(--display);
  letter-spacing: -.07em;
}
.hero h1 em { color: var(--green-bright); font-style: normal; font-weight: 500; }
.hero-copy { max-width: 500px; margin: 30px 0 0; font-size: clamp(1rem, 1.5vw, 1.25rem); color: rgba(255,255,255,.8); }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 24px;
  min-height: 54px; padding: 0 24px; border-radius: 100px; font-size: .82rem;
  font-weight: 800; letter-spacing: .02em; transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--forest); background: var(--green-bright); }
.hero-secondary-link { display: inline-flex; align-items: center; gap: 25px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.55); font-size: .8rem; font-weight: 700; }
.hero-slider-ui {
  position: absolute; right: clamp(24px, 4vw, 70px); bottom: 12vh;
  display: grid; grid-template-columns: auto minmax(100px, 190px) auto; align-items: center; gap: 16px;
}
.hero-slider-ui p { margin: 0; font-size: .68rem; letter-spacing: .12em; }
.hero-progress { height: 1px; overflow: hidden; background: rgba(255,255,255,.28); }
.hero-progress i { display: block; width: 100%; height: 100%; background: var(--white); transform-origin: left; }
@keyframes heroProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero-slider-buttons { display: flex; gap: 6px; }
.hero-slider-buttons button { display: grid; place-items: center; width: 34px; aspect-ratio: 1; padding: 0; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--white); background: transparent; cursor: pointer; transition: background .2s, color .2s; }
.hero-slider-buttons button:hover { color: var(--forest); background: var(--white); }
.hero-scroll {
  position: absolute; right: 22px; top: 50%; display: flex; align-items: center; gap: 15px;
  transform: rotate(90deg) translateX(50%); transform-origin: right center;
  text-transform: uppercase; font-size: .62rem; font-weight: 700; letter-spacing: .18em;
}
.hero-scroll i { display: block; width: 65px; height: 1px; background: rgba(255,255,255,.6); }

.section { position: relative; padding: clamp(90px, 12vw, 180px) clamp(24px, 7vw, 120px); }
.section-number {
  position: absolute; top: 55px; left: clamp(24px, 3.5vw, 60px);
  font: 600 .7rem var(--display); opacity: .45;
}
.intro {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(50px, 10vw, 160px);
  align-items: start;
}
.kicker { color: var(--green); }
.intro-heading {
  position: relative;
  display: flex;
  min-height: clamp(520px, 55vw, 720px);
  padding: clamp(34px, 5vw, 70px);
  overflow: hidden;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  background: url("assets/media/identidad-atardecer-rumipal.jpg") center / cover no-repeat;
  isolation: isolate;
}
.intro-heading::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,53,79,.05) 28%, rgba(0,38,72,.9) 100%),
    linear-gradient(90deg, rgba(0,38,72,.25), transparent 70%);
}
.intro-heading::after {
  content: "32° 11′ S · 64° 29′ O";
  position: absolute;
  top: clamp(28px, 4vw, 50px);
  right: clamp(28px, 4vw, 50px);
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.55);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.intro-heading .kicker { color: var(--green-bright); }
.intro h2, .experience h2, .routes h2, .contact h2 {
  margin: 0; font: 700 clamp(2.8rem, 5.4vw, 5.7rem)/.98 var(--display);
  letter-spacing: -.06em;
}
.intro-copy { padding-top: 43px; font-size: clamp(1rem, 1.25vw, 1.18rem); color: #405450; }
.intro-copy p { margin: 0 0 22px; }
.intro-copy strong { color: var(--ink); }
.signature { color: var(--water); font-weight: 700; }

.planner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(80px, 9vw, 140px) clamp(24px, 7vw, 120px);
  background: var(--paper);
}
.planner-heading { grid-column: 1 / -1; display: grid; grid-template-columns: .6fr 1.4fr .7fr; gap: 30px; align-items: end; margin-bottom: 30px; }
.planner-heading .kicker { align-self: start; }
.planner-heading h2 { margin: 0; max-width: 800px; font: 700 clamp(2.8rem, 5.7vw, 6rem)/.94 var(--display); letter-spacing: -.06em; }
.planner-heading > p:last-child { margin: 0; color: #71817d; }
.planner-card { position: relative; min-height: 520px; overflow: hidden; }
.planner-card a { transition: background .3s ease, color .3s ease, transform .3s ease; }
.planner-card small { display: block; text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; font-weight: 700; }
.planner-card strong { display: block; font-family: var(--display); letter-spacing: -.055em; }
.planner-card i { font-style: normal; }
.planner-number {
  position: absolute;
  z-index: 5;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 45px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
}

/* 01 — bloque cromático */
.planner-v1 { grid-column: 1 / -1; min-height: 720px; color: #fff; background: #003e76; }
.planner-v1-grid { display: grid; grid-template-rows: 1fr 1fr; height: 100%; }
.planner-v1 a { position: relative; display: flex; flex-direction: column; justify-content: end; overflow: hidden; padding: clamp(42px, 6vw, 82px); isolation: isolate; }
.planner-v1 a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-position: center;
  background-size: cover;
  filter: saturate(.7);
  transition: transform .8s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
}
.planner-v1 a:first-child::before {
  background-image: linear-gradient(rgba(0,62,118,.88), rgba(0,62,118,.88)), url("assets/media/planifica-descanso.jpg");
}
.planner-v1 a:last-child::before {
  background-image: linear-gradient(rgba(255,203,7,.86), rgba(255,203,7,.86)), url("assets/media/planifica-gastronomia.jpg");
}
.planner-v1 a:hover::before { transform: scale(1.025); }
.planner-v1 a:first-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.planner-v1 a:last-child { color: #003e76; background: #ffcb07; }
.planner-v1 strong { margin: 7px 0 12px; font-size: clamp(2.3rem, 4vw, 4.5rem); line-height: .95; }
.planner-v1 a > span { max-width: 75%; font-size: .72rem; opacity: .68; }
.planner-v1 a i { position: absolute; right: clamp(42px, 6vw, 82px); bottom: clamp(42px, 6vw, 82px); font-size: 1.2rem; }

.section-dark { color: var(--white); background: var(--forest); }
.experience-head { display: grid; grid-template-columns: .7fr 1.3fr .8fr; align-items: end; gap: 40px; margin-bottom: 55px; }
.experience-head .kicker { align-self: start; color: var(--green-bright); }
.experience-head p:last-child { margin: 0; max-width: 320px; color: rgba(255,255,255,.62); }
.gallery { display: grid; grid-template-columns: 1fr 115px; gap: 18px; }
.gallery-main { position: relative; margin: 0; height: min(68vw, 720px); overflow: hidden; background: var(--forest-2); }
.gallery-main img { height: 100%; object-fit: cover; transition: opacity .25s, transform .6s; }
.gallery-main.changing img { opacity: .25; transform: scale(1.02); }
.gallery-main figcaption { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; padding: 50px 35px 28px; background: linear-gradient(transparent, rgba(0,0,0,.62)); }
.gallery-main figcaption span { font-size: .7rem; letter-spacing: .12em; }
.gallery-main figcaption b { font: 600 clamp(1.2rem, 2vw, 2rem) var(--display); }
.gallery-thumbs { display: grid; grid-template-rows: repeat(4, 1fr); gap: 12px; }
.gallery-thumb { position: relative; padding: 0; border: 0; background: transparent; cursor: pointer; overflow: hidden; opacity: .48; transition: opacity .2s; }
.gallery-thumb::after { content: ""; position: absolute; inset: 0; border: 2px solid transparent; }
.gallery-thumb.active { opacity: 1; }
.gallery-thumb.active::after { border-color: var(--green-bright); }
.gallery-thumb img { height: 100%; object-fit: cover; }
.place-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.place-list span { padding: 9px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 100px; color: rgba(255,255,255,.72); font-size: .78rem; }

.routes { padding-block: clamp(55px, 6vw, 85px); }
.routes-title { display: grid; grid-template-columns: .6fr 1.4fr; align-items: start; margin-bottom: 32px; }
.route-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.route-card,
.route-card-large,
.route-card-wide { position: relative; grid-column: auto; min-height: 280px; overflow: hidden; color: var(--white); }
.route-card > img { height: 100%; object-fit: cover; transition: transform .7s; }
.route-card:hover > img { transform: scale(1.035); }
.route-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,38,72,.74), transparent 60%); }
.route-card div { position: absolute; z-index: 1; inset: auto 24px 24px; }
.route-card small { text-transform: uppercase; letter-spacing: .14em; opacity: .68; }
.route-card h3 { margin: 7px 0 0; max-width: 580px; font: 650 clamp(1.15rem, 1.7vw, 1.75rem)/1.08 var(--display); letter-spacing: -.035em; }
.more-routes { display: grid; grid-template-columns: .35fr 1.65fr; margin-top: 28px; border-top: 1px solid var(--line); padding-top: 18px; }
.more-routes p { margin: 0; color: #6b7773; }
.more-routes ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 22px; margin: 0; padding: 0; list-style: none; }
.more-routes li { padding: 6px 0 10px; border-bottom: 1px solid var(--line); font-size: .78rem; font-weight: 700; }

.river { position: relative; min-height: 92vh; display: grid; align-items: center; color: var(--white); }
.river-media { position: absolute; inset: 0; }
.river-media img, .river-media video { width: 100%; height: 100%; object-fit: cover; }
.river::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,38,72,.84), rgba(0,38,72,.08)); }
.river-content { position: relative; z-index: 1; width: min(670px, 84%); margin-left: clamp(24px, 9vw, 150px); }
.river-content .kicker { color: var(--green-bright); }
.river h2 { margin: 0 0 35px; font: 700 clamp(4rem, 8vw, 8rem)/.9 var(--display); letter-spacing: -.07em; }
.river-content > p:not(.kicker) { width: fit-content; margin: 0; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.3); font-weight: 600; }

.lake-feature { position: relative; min-height: 92vh; display: grid; align-items: center; color: var(--white); isolation: isolate; }
.lake-feature-media { position: absolute; inset: 0; z-index: -2; }
.lake-feature-media img { height: 100%; object-fit: cover; object-position: center 58%; }
.lake-feature::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(0,38,72,.86), rgba(0,38,72,.08)), linear-gradient(0deg, rgba(0,38,72,.35), transparent 52%); }
.lake-feature-content { position: relative; z-index: 1; width: min(690px, 84%); margin-left: clamp(24px, 9vw, 150px); }
.lake-feature-content .kicker { color: var(--green-bright); }
.lake-feature h2 { margin: 0 0 35px; font: 700 clamp(4rem, 8vw, 8rem)/.9 var(--display); letter-spacing: -.07em; }
.lake-feature-content > p:not(.kicker) { width: fit-content; margin: 0; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.3); font-weight: 600; }
.lake-feature-content > a { display: inline-flex; align-items: center; gap: 15px; margin-top: 34px; padding-bottom: 8px; border-bottom: 1px solid currentColor; font-size: .8rem; font-weight: 800; }

.contact { background: var(--sand); }
.contact-title { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.contact-title .button { flex: 0 0 auto; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 75px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-grid article { min-height: 260px; padding: 30px; border-right: 1px solid var(--line); }
.contact-grid article:last-child { border: 0; }
.contact-grid span { font-size: .7rem; color: #77847f; }
.contact-grid h3 { margin: 45px 0 15px; font: 700 1.18rem var(--display); }
.contact-grid p { margin: 0; color: #50605b; }
.contact-grid a:hover, .municipality a:hover { text-decoration: underline; }
.map-card { height: 430px; margin-top: 75px; overflow: hidden; }
.map-card iframe { width: 100%; height: 100%; border: 0; filter: saturate(.65) contrast(.95); }
.municipality { display: flex; justify-content: space-between; gap: 30px; margin-top: 32px; color: #50605b; }
.municipality p { margin: 0; }

.site-footer { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 45px; padding: 85px clamp(24px, 7vw, 120px) 35px; color: var(--white); background: var(--forest-2); }
.footer-brand {
  display: flex;
  align-items: center;
  align-self: start;
  gap: 0;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 100px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(0,22,36,.18);
}
.footer-brand .official-symbol,
.footer-brand .official-wordmark { flex: 0 0 auto; }
.site-footer > p { align-self: end; color: rgba(255,255,255,.56); }
.footer-links { display: grid; align-content: end; justify-items: end; gap: 6px; }
.footer-links a { border-bottom: 1px solid rgba(255,255,255,.25); }
.site-footer small { grid-column: 1 / -1; margin-top: 60px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.4); }

/* Catálogos */
.catalog-hero {
  min-height: 68vh; display: grid; align-items: end; padding: 180px clamp(24px, 7vw, 120px) 80px;
  color: var(--white); background-position: center; background-size: cover; position: relative; isolation: isolate;
}
.catalog-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(0,38,72,.84), rgba(0,38,72,.14)); }
.catalog-hero-stay { background-image: url("assets/media/planifica-descanso.jpg"); }
.catalog-hero-food { background-image: url("assets/media/planifica-gastronomia.jpg"); }

.film-section {
  position: relative;
  min-height: min(88svh, 960px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(34px, 6vw, 90px) clamp(24px, 7vw, 120px);
  color: var(--white);
  background: #071b2b;
  isolation: isolate;
}
.film-heading { position: relative; z-index: 2; max-width: 720px; }
.film-heading h2 {
  margin: 12px 0 22px;
  font-size: clamp(3.3rem, 8vw, 8rem);
  line-height: .88;
  letter-spacing: -.055em;
}
.film-heading > p:last-child { max-width: 38ch; color: rgba(255,255,255,.88); line-height: 1.65; }
.crossing-section { min-height: min(92svh, 980px); }
.crossing-section .film-overlay {
  background: linear-gradient(180deg, rgba(0,20,35,.06) 20%, rgba(0,20,35,.82) 100%), linear-gradient(90deg, rgba(0,38,72,.7), rgba(0,38,72,.06) 68%);
}
.crossing-heading { max-width: 880px; }
.crossing-heading h2 em { color: var(--green-bright); }
.crossing-heading > p:last-child { max-width: 55ch; }
.crossing-edition { position: absolute; z-index: 2; right: clamp(24px, 7vw, 120px); bottom: clamp(34px, 6vw, 90px); display: flex; align-items: end; gap: 14px; color: #fff; }
.crossing-edition strong { font: 700 clamp(4.5rem, 8vw, 8rem)/.72 var(--display); letter-spacing: -.075em; }
.crossing-edition span { padding-bottom: 3px; color: var(--green-bright); font-size: .68rem; font-weight: 800; line-height: 1.2; letter-spacing: .1em; text-transform: uppercase; }
.film-player {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.film-player iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  min-width: 177.78vh;
  min-height: 56.25vw;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.film-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,20,35,.05) 30%, rgba(0,20,35,.76) 100%),
    linear-gradient(90deg, rgba(0,20,35,.32), transparent 55%);
}
.film-youtube-link {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 7vw, 120px);
  bottom: clamp(34px, 6vw, 90px);
  color: var(--white);
  font-size: .7rem;
  letter-spacing: .08em;
}

@media (max-width: 760px) {
  .film-section { min-height: 72svh; padding-bottom: 90px; }
  .film-heading h2 { font-size: clamp(3.3rem, 17vw, 5.8rem); }
  .film-youtube-link { left: 24px; right: auto; bottom: 34px; }
  .crossing-section { min-height: 78svh; padding-bottom: 150px; }
  .crossing-heading h2 { font-size: clamp(3rem, 15vw, 5rem); }
  .crossing-edition { left: 24px; right: auto; bottom: 42px; }
  .crossing-edition strong { font-size: 4.5rem; }
}

.catalog-hero > div { max-width: 1000px; }
.catalog-hero h1 { margin: 0; font: 700 clamp(3.4rem, 7.5vw, 7.5rem)/.9 var(--display); letter-spacing: -.065em; }
.catalog-hero h1 em { color: var(--green-bright); font-style: normal; }
.catalog-hero > div > p:last-child { max-width: 590px; margin: 28px 0 0; color: rgba(255,255,255,.74); font-size: 1.05rem; }
.catalog-shell { padding: clamp(80px, 10vw, 140px) clamp(24px, 7vw, 120px); }
.catalog-heading { display: flex; justify-content: space-between; align-items: end; gap: 35px; }
.catalog-heading h2 { margin: 0; font: 700 clamp(2.8rem, 5vw, 5.4rem)/.95 var(--display); letter-spacing: -.055em; }
.catalog-heading > p { margin: 0; color: #64726e; }
.catalog-heading > p strong { color: var(--ink); font-size: 2rem; }
.catalog-tools { position: sticky; top: 71px; z-index: 10; display: flex; justify-content: space-between; align-items: center; gap: 20px; margin: 55px 0 38px; padding: 16px 0; background: rgba(251,250,246,.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.catalog-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.catalog-filters button { padding: 9px 14px; border: 1px solid var(--line); border-radius: 100px; background: transparent; font-size: .76rem; font-weight: 700; cursor: pointer; }
.catalog-filters button.active { color: var(--white); background: var(--forest); border-color: var(--forest); }
.catalog-search input { width: min(290px, 28vw); padding: 11px 4px; border: 0; border-bottom: 1px solid var(--ink); outline: 0; background: transparent; font: 500 .82rem var(--body); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px 18px; }
.catalog-card { min-width: 0; }
.catalog-card-image { position: relative; height: 290px; overflow: hidden; background: var(--forest); }
.catalog-card-image img { height: 100%; object-fit: cover; transition: transform .6s; }
.catalog-card:hover .catalog-card-image img { transform: scale(1.035); }
.catalog-card-image > span { height: 100%; display: grid; place-items: center; color: rgba(255,255,255,.4); font-weight: 700; }
.catalog-card-image small { position: absolute; left: 14px; bottom: 14px; padding: 6px 10px; border-radius: 100px; color: var(--white); background: rgba(11,48,45,.82); backdrop-filter: blur(7px); font-size: .65rem; }
.catalog-card-body { padding: 20px 4px 0; }
.catalog-card h3 { margin: 0 0 12px; font: 700 1.35rem/1.15 var(--display); letter-spacing: -.025em; }
.catalog-card p { display: grid; gap: 2px; min-height: 66px; margin: 0; color: #65736f; font-size: .82rem; line-height: 1.45; }
.catalog-card a { display: inline-block; margin-top: 15px; border-bottom: 1px solid var(--ink); font-size: .75rem; font-weight: 700; }
.catalog-card-actions { display: flex; flex-wrap: wrap; gap: 4px 16px; }
.catalog-empty { padding: 70px 0; text-align: center; color: #64726e; }

/* Páginas editoriales */
.editorial-hero { position: relative; min-height: 88svh; display: grid; align-items: end; padding: 170px clamp(24px, 8vw, 135px) 10vh; color: var(--white); isolation: isolate; }
.editorial-hero > img { position: absolute; inset: 0; z-index: -2; height: 100%; object-fit: cover; }
.editorial-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(0,38,72,.8), rgba(0,38,72,.08)), linear-gradient(0deg, rgba(0,38,72,.56), transparent 55%); }
.editorial-hero h1 { margin: 0; font: 700 clamp(4rem, 9vw, 9rem)/.86 var(--display); letter-spacing: -.075em; }
.editorial-hero h1 em { color: var(--green-bright); font-style: normal; }
.story-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 10vw, 150px); }
.story-intro h2, .feature-band h2, .season h2, .tips h2 { margin: 0; font: 700 clamp(2.6rem, 5vw, 5.2rem)/.98 var(--display); letter-spacing: -.055em; }
.story-intro > div:last-child { padding-top: 42px; color: #485c57; font-size: 1.08rem; }
.feature-band { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; background: var(--sand); }
.feature-band figure { height: 720px; margin: 0; }
.feature-band figure img { height: 100%; object-fit: cover; }
.feature-band > div { padding: clamp(55px, 8vw, 120px); }
.feature-band > div > p:last-child { color: #576a65; }
.places-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.places-grid article { padding: 32px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.places-grid article:last-child { border-right: 0; }
.places-grid span { font-size: .7rem; color: #7b8985; }
.places-grid h3 { margin: 50px 0 15px; font: 700 1.28rem/1.15 var(--display); }
.places-grid p { margin: 0; color: #63716d; font-size: .9rem; }
.places-grid.compact { padding: 0; }
.season, .tips { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 10vw, 150px); }
.season > div:last-child { color: rgba(255,255,255,.65); }
.attractions { display: grid; gap: 140px; }
.attraction { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(45px, 8vw, 120px); align-items: center; }
.attraction.reverse img { order: 2; }
.attraction img { height: 600px; object-fit: cover; }
.attraction h2 { margin: 0; font: 700 clamp(2.8rem, 5vw, 5.2rem)/.95 var(--display); letter-spacing: -.055em; }
.attraction h3 { margin: 12px 0 30px; color: var(--green-bright); font: 500 1.1rem var(--display); }
.attraction div > p:not(.kicker) { color: rgba(255,255,255,.68); }
.river-spots { display: grid; grid-template-columns: 1fr 1fr; }
.river-spots article > img { height: 570px; object-fit: cover; }
.river-spots article > div { padding: clamp(45px, 7vw, 95px); }
.river-spots article:first-child > div { background: var(--sand); }
.river-spots article:last-child > div { color: var(--white); background: var(--forest); }
.river-spots h2 { margin: 0; font: 700 clamp(2.8rem, 5vw, 5rem)/1 var(--display); letter-spacing: -.055em; }
.river-spots h3 { margin: 18px 0 28px; font: 500 1.1rem/1.35 var(--display); }
.river-spots ul { margin: 28px 0 0; padding-left: 18px; }
.river-spots li { margin: 7px 0; }
.tips ol { margin: 0; padding: 0; list-style: none; counter-reset: tip; }
.tips li { counter-increment: tip; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.72); }
.tips li::before { content: "0" counter(tip); display: inline-block; width: 52px; color: var(--green-bright); font-size: .7rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.motion-ready .reveal { transition: none; }
.motion-ready .planner-card:hover > img,
.motion-ready .route-card:hover > img { transform: none; }

@media (max-width: 980px) {
  .chapter-nav { display: none; }
  .site-header {
    height: 76px;
    padding-inline: max(18px, env(safe-area-inset-left)) max(18px, env(safe-area-inset-right));
  }
  .site-header.scrolled {
    background: rgba(251,250,246,.98);
    backdrop-filter: none;
  }
  .menu-toggle {
    position: relative; z-index: 102; display: grid; gap: 5px; width: 50px; height: 50px;
    place-content: center; padding: 0; border: 0; border-radius: 50%; color: var(--forest-2);
    background: rgba(255,255,255,.96); box-shadow: 0 8px 28px rgba(0,38,72,.18); cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 21px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .25s, opacity .2s; }
  .menu-toggle[aria-expanded="true"] { color: var(--forest-2); background: var(--green-bright); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed; inset: 0; z-index: 100; display: grid; align-content: start; gap: 0;
    width: 100%; height: 100dvh;
    padding: max(104px, calc(env(safe-area-inset-top) + 84px)) max(24px, 8vw) max(34px, env(safe-area-inset-bottom));
    overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain;
    color: var(--white); background: #00354f;
    visibility: hidden; pointer-events: none; transform: translateX(100%);
    transition: transform .45s cubic-bezier(.7,0,.2,1), visibility 0s linear .45s;
  }
  .main-nav.open { visibility: visible; pointer-events: auto; transform: none; transition-delay: 0s; }
  .main-nav > a {
    display: flex; align-items: center; min-height: 54px; padding: 10px 0;
    font: 650 clamp(1.45rem, 6vw, 2.2rem)/1.08 var(--display);
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
  .nav-cta { margin-top: 18px; padding: 12px 0; border: 0; color: var(--green-bright); }
  .site-header.menu-open {
    height: 76px; color: var(--white); background: transparent;
    box-shadow: none; backdrop-filter: none;
  }
  .site-header.menu-open .brand { z-index: 102; }
  body.nav-open { overflow: hidden; }
  .hero-slider-ui, .hero-scroll { display: none; }
  .intro { grid-template-columns: 1fr; }
  .intro-copy { padding: 0; }
  .experience-head { grid-template-columns: 1fr; }
  .experience-head .kicker { margin-bottom: 0; }
  .routes-title, .more-routes { grid-template-columns: 1fr; gap: 20px; }
  .contact-title { align-items: start; flex-direction: column; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-tools { align-items: stretch; flex-direction: column; }
  .catalog-search input { width: 100%; }
  .story-intro, .season, .tips { grid-template-columns: 1fr; }
  .feature-band { grid-template-columns: 1fr; }
  .feature-band figure { height: 560px; }
  .places-grid { grid-template-columns: 1fr 1fr; }
  .attraction { grid-template-columns: 1fr; }
  .attraction.reverse img { order: 0; }
  .river-spots { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .official-brand { gap: 0; height: 40px; padding: 4px 11px; }
  .official-symbol, .official-wordmark { height: 30px; background-size: 497px 30px; }
  .official-symbol { width: 32px; }
  .official-wordmark { width: 195px; background-position: -150px 0; }
  .hero { min-height: 820px; padding-bottom: 70px; grid-template-columns: minmax(0, 1fr); }
  .hero-media img { object-position: 54% center; }
  .hero-content { width: calc(100vw - 48px); max-width: calc(100vw - 48px); min-width: 0; overflow: hidden; }
  .hero h1 { max-width: 100%; font-size: clamp(2.75rem, 11.5vw, 3.6rem); letter-spacing: -.06em; }
  .hero h1 em { display: block; }
  .hero-copy { max-width: 100%; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .section { padding-block: 100px; }
  .section-number { top: 35px; }
  .intro-heading { min-height: 520px; padding: 28px 24px; background-position: 58% center; }
  .intro-heading::after { top: 24px; right: 24px; }
  .intro h2 { font-size: clamp(2.75rem, 12.5vw, 4rem); }
  .planner { grid-template-columns: 1fr; padding-inline: 18px; }
  .planner .planner-card.reveal { opacity: 1; transform: none; }
  .planner-heading { grid-template-columns: 1fr; gap: 12px; }
  .planner-heading h2 { font-size: clamp(2.7rem, 13vw, 4.5rem); }
  .planner-card { min-height: 480px; }
  .planner-v1 a { padding: 34px 26px; }
  .planner-v1 a i { right: 26px; bottom: 34px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-main { height: 72vw; min-height: 390px; }
  .gallery-main figcaption { padding-inline: 20px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); grid-template-rows: 78px; }
  .route-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .routes { padding-block: 55px; }
  .route-card,
  .route-card-large,
  .route-card-wide { min-height: 190px; margin: 0; }
  .route-card div { inset: auto 16px 16px; }
  .route-card small { font-size: .56rem; }
  .route-card h3 { font-size: 1.02rem; }
  .more-routes { margin-top: 22px; }
  .more-routes > p { display: none; }
  .more-routes ul { grid-template-columns: 1fr 1fr; gap: 0 16px; }
  .river { min-height: 740px; }
  .river-media img { object-position: 55% center; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-grid h3 { margin-top: 25px; }
  .map-card { height: 330px; }
  .municipality { flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-items: start; }
  .site-footer small { grid-column: 1; margin-top: 20px; }
  .catalog-hero { min-height: 620px; padding-bottom: 60px; }
  .catalog-heading { align-items: start; flex-direction: column; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card-image { height: min(75vw, 410px); }
  .catalog-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
  .catalog-filters button { flex: 0 0 auto; }
  .editorial-hero { min-height: 740px; }
  .feature-band figure, .attraction img, .river-spots article > img { height: 430px; }
  .places-grid { grid-template-columns: 1fr; }
  .places-grid article { border-right: 0; }
  .attractions { gap: 90px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .chapter-track i { transform: scaleY(1); }
}

/* Planificación final: composición cromática con fotografía tenue */
.planner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  min-height: 660px;
  padding: 0;
}
.planner-card { position: relative; min-height: 660px; overflow: hidden; isolation: isolate; }
.planner-stay { color: #fff; background: #003e76; }
.planner-food { color: #003e76; background: #ffcb07; }
.planner-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  filter: saturate(.55) contrast(.9);
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.planner-stay .planner-photo {
  background-image: linear-gradient(rgba(0,62,118,.90), rgba(0,62,118,.90)), url("assets/media/planifica-descanso.jpg");
}
.planner-food .planner-photo {
  background-image: linear-gradient(rgba(255,203,7,.91), rgba(255,203,7,.91)), url("assets/media/planifica-gastronomia.jpg");
}
.planner-card:hover .planner-photo { transform: scale(1.025); }
.planner-shape {
  position: absolute;
  z-index: -1;
  right: -1px;
  bottom: -1px;
  width: 52%;
  height: 80%;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: rgba(255,255,255,.07);
}
.planner-food .planner-shape { background: rgba(245,130,31,.16); }
.planner-top {
  position: absolute;
  top: clamp(40px, 5vw, 72px);
  left: clamp(34px, 6vw, 72px);
  right: clamp(34px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.planner-top b {
  display: grid;
  place-items: center;
  width: 50px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .66rem;
  letter-spacing: .08em;
}
.planner-top > i { display: flex; gap: 7px; }
.planner-top em { width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.planner-top em:nth-child(2) { opacity: .55; }
.planner-top em:nth-child(3) { opacity: .25; }
.planner-content { position: absolute; inset: auto clamp(34px, 6vw, 72px) clamp(46px, 7vw, 82px); }
.planner-content small { display: block; text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; font-weight: 700; opacity: .72; }
.planner-content strong { display: block; margin: 10px 0 18px; font: 700 clamp(2.7rem, 4.5vw, 5.2rem)/.92 var(--display); letter-spacing: -.055em; }
.planner-content > span { display: block; max-width: 72%; font-size: .76rem; opacity: .7; }
.planner-content > i {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 56px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-style: normal;
  transition: transform .25s ease, background .25s ease;
}
.planner-card:hover .planner-content > i { transform: translate(3px, -3px); background: rgba(255,255,255,.18); }

/* Las tarjetas de planificación deben permanecer visibles aunque Safari omita el observer. */
.planner .planner-card.reveal { opacity: 1; transform: none; }

@media (max-width: 700px) {
  .planner { grid-template-columns: 1fr; }
  .planner-card { min-height: 500px; }
  .planner-top { top: 28px; left: 28px; right: 28px; }
  .planner-top b { width: 44px; }
  .planner-content { inset: auto 28px 38px; }
  .planner-content strong { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .planner-content > span { max-width: calc(100% - 64px); font-size: .7rem; }
  .planner-content > i { width: 48px; }
}

/* Mapas turísticos interactivos */
.map-explorer { padding: clamp(80px, 9vw, 140px) clamp(18px, 6vw, 100px); background: var(--sand); }
.map-explorer-head { display: grid; grid-template-columns: .7fr 1.3fr; gap: 35px; align-items: end; margin-bottom: 42px; }
.map-explorer-head h2 { margin: 0; font: 700 clamp(2.8rem, 5.5vw, 5.8rem)/.93 var(--display); letter-spacing: -.055em; }
.map-explorer-head p:last-child { justify-self: end; max-width: 36ch; margin: 0; color: #61716d; }
.interactive-map { position: relative; display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(260px, .55fr); border: 1px solid rgba(0,91,170,.18); background: var(--paper); box-shadow: 0 25px 70px rgba(0,62,118,.1); }
.interactive-map__viewport {
  position: relative;
  aspect-ratio: 1019 / 513;
  overflow: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--water) rgba(0,91,170,.1);
}
.interactive-map__canvas {
  position: relative;
  width: 100%;
  min-width: 760px;
  aspect-ratio: 1019 / 513;
  transform-origin: top left;
  transition: width .6s cubic-bezier(.2,.7,.2,1);
}
.interactive-map__canvas.is-zoomed { width: 165%; }
.interactive-map__canvas > img { width: 100%; height: 100%; object-fit: contain; }
.map-point {
  position: absolute;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.map-point::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #ed1741;
  box-shadow: 0 3px 12px rgba(0,62,118,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.map-point::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 2px solid #ffcb07;
  border-radius: 50%;
  opacity: 0;
  transform: scale(.72);
  transition: opacity .2s ease, transform .2s ease;
}
.map-point:hover::before, .map-point.active::before { transform: scale(1.18); box-shadow: 0 4px 18px rgba(0,62,118,.4); }
.map-point.active::after, .map-point:focus-visible::after { opacity: 1; transform: scale(1); }
.map-point:focus-visible { outline: 0; }
.map-photo-lens {
  position: absolute;
  z-index: 9;
  top: 22px;
  left: 22px;
  width: clamp(150px, 18vw, 230px);
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 7px solid rgba(255,255,255,.96);
  border-radius: 50%;
  background: var(--forest-2);
  box-shadow: 0 18px 50px rgba(0,38,72,.32);
  cursor: zoom-in;
  animation: mapLensIn .42s cubic-bezier(.2,.8,.2,1) both;
}
.map-photo-lens[hidden] { display: none; }
.map-photo-lens img { width: 100%; height: 100%; object-fit: cover; }
.map-photo-lens span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  background: rgba(0,53,79,.88);
  font-size: 1.35rem;
}
.map-photo-lens.is-expanded {
  position: fixed;
  z-index: 300;
  inset: 50% auto auto 50%;
  width: min(90vw, 940px);
  height: min(78svh, 680px);
  border-radius: 22px;
  transform: translate(-50%, -50%);
  cursor: zoom-out;
  animation: none;
}
@keyframes mapLensIn {
  from { opacity: 0; transform: scale(.72); }
  to { opacity: 1; transform: scale(1); }
}
.interactive-map__info { display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; padding: clamp(28px, 4vw, 52px); color: #fff; background: var(--forest-2); }
.interactive-map__info small { color: var(--green-bright); text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }
.interactive-map__info h3 { margin: 14px 0 18px; font: 700 clamp(2rem, 3vw, 3.5rem)/.95 var(--display); letter-spacing: -.045em; }
.interactive-map__info p { color: rgba(255,255,255,.72); }
.interactive-map__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.interactive-map__info a,
.interactive-map__info button { padding: 11px 16px; border: 1px solid rgba(255,255,255,.5); border-radius: 100px; color: inherit; background: transparent; font: 700 .75rem var(--body); cursor: pointer; }
.interactive-map__info button { opacity: 0; pointer-events: none; transition: opacity .2s ease, background .2s ease; }
.interactive-map.is-focused .interactive-map__info button { opacity: 1; pointer-events: auto; }
.interactive-map__info a:hover,
.interactive-map__info button:hover { color: var(--forest-2); background: var(--green-bright); border-color: var(--green-bright); }
.map-explorer-note { margin: 14px 0 0; color: #6c7a76; font-size: .72rem; }

@media (max-width: 900px) {
  .map-explorer-head { grid-template-columns: 1fr; }
  .map-explorer-head p:last-child { justify-self: start; }
  .interactive-map { grid-template-columns: 1fr; }
  .interactive-map__viewport { aspect-ratio: auto; height: min(72svh, 520px); min-height: 420px; }
  .interactive-map__canvas { width: auto; min-width: 900px; height: 100%; }
  .interactive-map__canvas.is-zoomed { width: auto; min-width: 1250px; }
  .interactive-map__info { min-height: 280px; }
  .map-photo-lens { top: 18px; right: 18px; left: auto; width: 156px; }
  .map-photo-lens.is-expanded { position: fixed; margin: 0; width: 92vw; height: min(70svh, 620px); }
}

/* Capas editoriales: identidad, patrimonio y temporada */
.identity { background: var(--sky); }
.identity-heading { display: grid; grid-template-columns: .5fr 1.5fr; gap: 40px; align-items: start; margin-bottom: clamp(45px, 7vw, 90px); }
.identity-heading h2, .seasons-heading h2, .arrival h2, .distance-heading h2, .safety-heading h2, .phones-heading h2 {
  margin: 0; font: 700 clamp(2.8rem, 5.4vw, 6.2rem)/.92 var(--display); letter-spacing: -.06em;
}
.identity-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.identity-photo { position: relative; height: clamp(350px, 43vw, 620px); margin: 0; overflow: hidden; }
.identity-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,38,72,.76), transparent 58%); }
.identity-photo img { height: 100%; object-fit: cover; object-position: center 58%; }
.identity-photo figcaption { position: absolute; z-index: 1; inset: auto clamp(24px, 4vw, 60px) clamp(28px, 4vw, 55px); display: flex; align-items: end; justify-content: space-between; gap: 30px; color: #fff; }
.identity-photo figcaption span { color: var(--yellow); font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.identity-photo figcaption strong { max-width: 20ch; text-align: right; font: 700 clamp(1.6rem, 3vw, 3rem)/1 var(--display); letter-spacing: -.045em; }
.identity-card { position: relative; min-height: 390px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.identity-card::after { content: ""; position: absolute; inset: auto -25% -35% auto; width: 210px; aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; opacity: .12; }
.identity-card > span { font-size: .65rem; font-weight: 700; letter-spacing: .12em; }
.identity-card > p { margin: 105px 0 10px; color: var(--orange); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.identity-card h3 { margin: 0 0 22px; font: 700 clamp(1.7rem, 2.4vw, 2.7rem)/1 var(--display); letter-spacing: -.045em; }
.identity-card small { display: block; max-width: 22ch; color: rgba(7,56,95,.67); line-height: 1.55; }
.identity-active { color: #fff; background: var(--forest); }
.identity-active small { color: rgba(255,255,255,.68); }
.identity-festive { background: var(--yellow); }

.heritage { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 760px; color: #fff; background: var(--forest-2); }
.heritage-media { min-height: 560px; overflow: hidden; }
.heritage-media img { height: 100%; object-fit: cover; filter: saturate(.82); }
.heritage-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(55px, 8vw, 130px); }
.heritage-content h2 { margin: 10px 0 35px; font: 700 clamp(3.1rem, 5.5vw, 6.7rem)/.9 var(--display); letter-spacing: -.065em; }
.heritage-content > p:not(.kicker) { max-width: 54ch; color: rgba(255,255,255,.72); }
.text-link { display: inline-flex; align-items: center; gap: 14px; width: fit-content; margin-top: 26px; padding-bottom: 8px; border-bottom: 1px solid currentColor; font-weight: 700; }

.seasons { background: var(--paper); }
.seasons-heading { display: grid; grid-template-columns: .45fr 1.1fr .7fr; gap: 35px; align-items: end; margin-bottom: 60px; }
.seasons-heading > p:last-child { max-width: 34ch; color: #607476; }
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.season-card { min-height: 330px; padding: 32px; border: 1px solid var(--line); border-right: 0; }
.season-card:last-child { border-right: 1px solid var(--line); }
.season-card span { display: inline-block; padding: 6px 11px; border-radius: 100px; color: var(--forest); background: var(--sky); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.season-card h3 { margin: 100px 0 18px; font: 700 2rem/1 var(--display); letter-spacing: -.04em; }
.season-card p { margin: 0; color: #647579; font-size: .88rem; }
.travel-hub { display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 35px; align-items: center; margin: 55px 0; padding: 32px 36px; color: #fff; background: var(--forest); transition: transform .25s, background .25s; }
.travel-hub:hover { transform: translateY(-3px); background: var(--forest-2); }
.travel-hub small, .travel-hub strong { display: block; }
.travel-hub small { color: var(--yellow); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.travel-hub strong { margin-top: 5px; font: 700 clamp(1.4rem, 2.4vw, 2.4rem)/1 var(--display); }
.travel-hub > span:nth-child(2) { color: rgba(255,255,255,.65); font-size: .82rem; }
.travel-hub b { font-size: 2rem; }

/* Alojamientos verificados */
.safe-stay { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; margin-bottom: 55px; padding: 30px 34px; color: #fff; background: var(--forest-2); }
.safe-stay-icon { display: grid; place-items: center; width: 64px; aspect-ratio: 1; border-radius: 50%; color: var(--forest-2); background: var(--yellow); font-size: 1.7rem; font-weight: 900; }
.safe-stay .kicker { color: var(--yellow); }
.safe-stay h2 { margin: 4px 0 7px; font: 700 clamp(1.9rem, 3vw, 3rem)/1 var(--display); letter-spacing: -.045em; }
.safe-stay p { margin: 0; max-width: 68ch; color: rgba(255,255,255,.72); }
.safe-stay a { padding: 12px 18px; border: 1px solid rgba(255,255,255,.5); border-radius: 100px; font-size: .75rem; font-weight: 700; white-space: nowrap; }

/* Información útil */
.info-page { background: var(--paper); }
.info-page .site-header { color: var(--ink); }
.info-hero { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 760px; padding: 180px clamp(25px, 7vw, 115px) 90px; color: #fff; background: linear-gradient(115deg, rgba(0,62,118,.94), rgba(0,91,170,.72)), url("assets/media/hero-aereo.jpg") center/cover; }
.info-hero-copy { align-self: center; }
.info-hero-copy, .info-index { min-width: 0; }
.info-hero h1 { margin: 20px 0 30px; font: 700 clamp(4.2rem, 8vw, 9rem)/.82 var(--display); letter-spacing: -.075em; }
.info-hero-copy > p:last-child { max-width: 52ch; color: rgba(255,255,255,.75); font-size: 1.05rem; }
.info-index { align-self: end; display: grid; border-top: 1px solid rgba(255,255,255,.35); }
.info-index a { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.35); font-weight: 700; }
.info-index span { color: var(--yellow); font-size: .65rem; }
.arrival { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 130px); }
.arrival-copy > p:not(.kicker) { max-width: 55ch; color: #607476; }
.arrival-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 35px; }
.arrival-options { border-top: 1px solid var(--line); }
.arrival-options article { padding: 28px 0; border-bottom: 1px solid var(--line); }
.arrival-options span { color: var(--orange); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.arrival-options h3 { margin: 7px 0; font: 700 1.8rem/1 var(--display); }
.arrival-options p { margin: 0; color: #607476; }
.arrival-options a { display: inline-block; margin-top: 10px; font-weight: 700; }
.distance-section { color: #fff; background: var(--forest-2); }
.distance-heading { display: grid; grid-template-columns: .45fr 1.1fr .7fr; gap: 35px; align-items: end; margin-bottom: 55px; }
.distance-heading p:last-child { color: rgba(255,255,255,.62); }
.distance-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.distance-grid article { min-height: 220px; padding: 28px 22px; border: 1px solid rgba(255,255,255,.18); border-right: 0; }
.distance-grid article:last-child { border-right: 1px solid rgba(255,255,255,.18); }
.distance-grid strong { font: 700 clamp(2.8rem, 4vw, 5rem)/1 var(--display); letter-spacing: -.06em; }
.distance-grid span { margin-left: 4px; color: var(--yellow); font-weight: 700; }
.distance-grid p { margin-top: 70px; font-weight: 700; }
.safety-heading { display: grid; grid-template-columns: .5fr 1.5fr; gap: 35px; margin-bottom: 55px; }
.safety-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.safety-grid article { min-height: 310px; padding: 28px; background: var(--sand); }
.safety-grid span { color: var(--orange); font-size: .65rem; font-weight: 800; }
.safety-grid h3 { margin: 90px 0 15px; font: 700 1.8rem/1 var(--display); }
.safety-grid p { color: #607476; font-size: .86rem; }
.phones-section { background: var(--sky); }
.phones-heading { display: grid; grid-template-columns: .45fr 1.1fr .7fr; gap: 35px; align-items: end; margin-bottom: 55px; }
.phones-heading p:last-child { color: #607476; }
.phone-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.phone-grid a { display: grid; min-height: 210px; padding: 28px; border: 1px solid rgba(0,91,170,.18); transition: color .2s, background .2s; }
.phone-grid a:hover { color: #fff; background: var(--forest); }
.phone-grid small { color: var(--orange); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.phone-grid span { align-self: end; font: 700 3.4rem/1 var(--display); letter-spacing: -.06em; }
.phone-grid strong { margin-top: 6px; }
.official-contact { display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 30px; align-items: center; margin-top: 25px; padding: 35px; background: #fff; }
.official-contact h3 { margin: 5px 0 0; font: 700 2.3rem/1 var(--display); }
.official-contact > p { color: #607476; }

@media (max-width: 980px) {
  .identity-heading, .seasons-heading, .distance-heading, .safety-heading, .phones-heading { grid-template-columns: 1fr; }
  .identity-grid, .season-grid, .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .heritage { grid-template-columns: 1fr; }
  .heritage-media { min-height: 55vw; }
  .info-hero { grid-template-columns: minmax(0, 1fr); }
  .arrival { grid-template-columns: 1fr; }
  .distance-grid { grid-template-columns: repeat(3, 1fr); }
  .phone-grid { grid-template-columns: repeat(2, 1fr); }
  .official-contact, .safe-stay, .travel-hub { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .identity-grid, .season-grid, .safety-grid, .phone-grid { grid-template-columns: 1fr; }
  .identity-card, .season-card, .safety-grid article { min-height: 270px; }
  .identity-photo { height: 430px; }
  .identity-photo figcaption { align-items: flex-start; flex-direction: column; }
  .identity-photo figcaption strong { text-align: left; }
  .identity-card > p, .season-card h3, .safety-grid h3 { margin-top: 65px; }
  .heritage-content { padding: 60px 25px; }
  .travel-hub { margin: 38px 0; padding: 28px 24px; }
  .safe-stay { padding: 28px 22px; }
  .info-hero { min-height: 720px; padding: 145px 24px 55px; overflow: hidden; }
  .info-hero-copy, .info-index { width: calc(100vw - 48px); max-width: calc(100vw - 48px); }
  .info-hero-copy > p:last-child { max-width: 100%; overflow-wrap: anywhere; }
  .info-hero h1 { font-size: clamp(3.6rem, 18vw, 5.7rem); }
  .distance-grid { grid-template-columns: repeat(2, 1fr); }
  .distance-grid article { min-height: 180px; }
  .distance-grid p { margin-top: 45px; }
  .official-contact { padding: 28px 22px; }
}
