:root {
  --ink: #f3f3f7;
  --muted: rgba(243, 243, 247, 0.78);
  --soft: rgba(243, 243, 247, 0.64);
  --bg: #071120;
}

* { box-sizing: border-box; }
html, body { width: 100%; min-height: 100%; margin: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a { color: inherit; text-decoration: none; }

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}

.hero__bg,
.hero__shade,
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg {
  z-index: -3;
  inset: -2%;
  background-image: url("assets/home-bg.png");
  background-size: cover;
  background-position: 50% 61%;
  transform: scale(1.015);
  will-change: transform;
  animation: background-breathe 24s ease-in-out infinite alternate;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(2, 8, 21, 0.42) 0%, rgba(2, 8, 21, 0.16) 34%, rgba(2, 8, 21, 0.18) 58%, rgba(2, 8, 21, 0.30) 100%),
    linear-gradient(90deg, rgba(3, 10, 28, 0.24) 0%, rgba(3, 10, 28, 0.04) 34%, rgba(3, 10, 28, 0.12) 68%, rgba(3, 10, 28, 0.26) 100%),
    radial-gradient(circle at 52% 52%, rgba(50, 86, 185, 0.14) 0%, rgba(10, 25, 72, 0.08) 28%, transparent 58%);
}

.hero__glow {
  z-index: -1;
  background: radial-gradient(circle at 36% 67%, rgba(255, 242, 227, 0.06) 0%, rgba(131, 163, 255, 0.024) 13%, transparent 31%);
  opacity: .42;
  animation: glow-breathe 10s ease-in-out infinite alternate;
}

.site-header {
  position: absolute;
  top: 4.25vh;
  left: 3.75vw;
  right: 3.45vw;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}

.brand img {
  display: block;
  width: clamp(146px, 10.4vw, 170px);
  height: auto;
  opacity: .94;
  filter: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3.0vw, 46px);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.75vw, 42px);
}

.nav__link {
  position: relative;
  display: inline-block;
  padding: 4px 0 10px;
  color: rgba(255,255,255,.78);
  font-size: clamp(10px, .74vw, 12px);
  font-weight: 300;
  letter-spacing: .22em;
  line-height: 1;
  white-space: nowrap;
  transition: color .25s ease, opacity .25s ease;
}

.nav__link:hover { color: #fff; }
.nav__link.is-active { color: rgba(255,255,255,.95); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: .20em;
  bottom: 2px;
  height: 1px;
  background: rgba(255,255,255,.76);
}

.social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.social__link {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.92);
  opacity: .96;
  transition: opacity .25s ease, transform .25s ease;
}
.social__link:hover { opacity: 1; transform: translateY(-1px); }
.social__link svg { width: 100%; height: 100%; display: block; }

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 30.1%;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 64vw);
  text-align: center;
}

.hero-copy h1 {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: clamp(8px, 1.0vh, 14px);
  color: rgba(255,255,255,.86);
  font-size: clamp(30px, 2.68vw, 42px);
  font-weight: 200;
  letter-spacing: .305em;
  line-height: 1.22;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(224,226,255,.05);
}

.hero-copy h1 span {
  display: block;
  padding-left: .31em; /* visually centers tracked type */
}

.hero-copy__sub {
  margin: clamp(38px, 5.1vh, 54px) 0 0;
  color: rgba(255,255,255,.65);
  font-size: clamp(9px, .75vw, 12px);
  font-weight: 300;
  letter-spacing: .285em;
  line-height: 1.5;
  white-space: nowrap;
}
.hero-copy__sub i {
  font-style: normal;
  padding: 0 .54em;
  opacity: .9;
}

.manifesto {
  position: absolute;
  left: 3.85vw;
  bottom: 6.1vh;
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,.67);
  font-size: clamp(10px, .8vw, 12.5px);
  font-weight: 300;
  letter-spacing: .29em;
  line-height: 2.0;
  text-transform: uppercase;
}

@keyframes background-breathe {
  0% { transform: scale(1.015) translate3d(0, 0, 0); }
  100% { transform: scale(1.032) translate3d(-0.12%, -0.24%, 0); }
}

@keyframes glow-breathe {
  0% { opacity: .38; }
  100% { opacity: .66; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg, .hero__glow { animation: none; }
}

@media (max-width: 900px) {
  .site-header {
    top: 28px;
    left: 26px;
    right: 26px;
  }
  .header-right { gap: 20px; }
  .nav { gap: 18px; }
  .nav__link { letter-spacing: .14em; }
  .social { gap: 14px; }
  .hero-copy { width: 84vw; top: 31%; }
}

@media (max-width: 680px) {
  .hero { min-height: 640px; }
  .hero__bg { background-position: 42% 62%; }
  .brand img { width: 145px; }
  .nav { display: none; }
  .social__link { width: 20px; height: 20px; }
  .hero-copy {
    top: 30%;
    width: 92vw;
  }
  .hero-copy h1 {
    font-size: clamp(27px, 9vw, 37px);
    letter-spacing: .22em;
  }
  .hero-copy h1 span { padding-left: .22em; }
  .hero-copy__sub {
    margin-top: 34px;
    font-size: 9px;
    letter-spacing: .18em;
    white-space: normal;
  }
  .manifesto {
    left: 26px;
    bottom: 28px;
    font-size: 9px;
    letter-spacing: .22em;
  }
}


/* =========================================================
   QUÉ ES — master visual
   ========================================================= */

.about {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
  background: #050b16;
}

.about__bg,
.about__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about__bg {
  z-index: -2;
  background-image: url("assets/que-es-bg.jpg");
  background-size: cover;
  background-position: center center;
}

.about__shade {
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(2,8,16,.04) 0%,
      rgba(2,8,16,.04) 47%,
      rgba(2,8,16,.18) 57%,
      rgba(2,8,16,.68) 100%),
    linear-gradient(180deg,
      rgba(3,8,16,.08) 0%,
      rgba(3,8,16,0) 45%,
      rgba(3,8,16,.10) 100%);
}

.about-header {
  top: 3.9vh;
}

.about-copy {
  position: absolute;
  top: 50%;
  left: 61.6%;
  width: min(520px, 34vw);
  transform: translateY(-48%);
  color: rgba(255,255,255,.90);
}

.about-copy h1 {
  margin: 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(31px, 2.45vw, 40px);
  font-weight: 200;
  line-height: 1.38;
  letter-spacing: .30em;
  color: rgba(255,255,255,.92);
}

.about-intro {
  margin: clamp(42px, 5.8vh, 58px) 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(14px, 1.08vw, 17.5px);
  font-weight: 300;
  line-height: 1.72;
  letter-spacing: .045em;
  color: rgba(255,255,255,.76);
}

.about-divider {
  width: 60px;
  height: 1px;
  margin-top: clamp(46px, 6vh, 58px);
  background: rgba(255,255,255,.68);
}

.about-words {
  display: grid;
  gap: 17px;
  margin-top: clamp(58px, 7vh, 68px);
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: .28em;
  color: rgba(255,255,255,.86);
}

/* Soft entrance: pure fade, with no movement or blur.
   The final text remains pixel-perfect in its original position. */
.about-anim {
  opacity: 0;
  animation: about-reveal 1.15s ease-out both;
  will-change: opacity;
}

.about-anim--1 { animation-delay: .16s; }
.about-anim--2 { animation-delay: .42s; }
.about-anim--3 { animation-delay: .68s; }
.about-anim--4 { animation-delay: .88s; }

@keyframes about-reveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .about-anim {
    opacity: 1;
    animation: none;
  }
}

@media (max-width: 980px) {
  .about-copy {
    left: 55%;
    width: 40vw;
  }
  .about-copy h1 { letter-spacing: .22em; }
  .about-intro { font-size: 13px; }
}

@media (max-width: 680px) {
  .about {
    min-height: 760px;
    overflow: auto;
  }

  .about__bg {
    background-position: 37% center;
  }

  .about__shade {
    background:
      linear-gradient(180deg,
        rgba(2,8,16,.08) 0%,
        rgba(2,8,16,.24) 48%,
        rgba(2,8,16,.92) 68%,
        rgba(2,8,16,.98) 100%);
  }

  .about-copy {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    transform: none;
    margin: 0 26px;
    padding-top: 48vh;
    padding-bottom: 54px;
  }

  .about-copy h1 {
    font-size: 27px;
    letter-spacing: .20em;
  }

  .about-intro {
    margin-top: 30px;
    font-size: 12px;
    line-height: 1.75;
  }

  .about-intro br {
    display: none;
  }

  .about-divider {
    margin-top: 34px;
  }

  .about-words {
    margin-top: 38px;
    font-size: 16px;
    gap: 15px;
  }
}


/* =========================================================
   INICIO — same soft fade used in "Qué es"
   ========================================================= */

.home-anim {
  opacity: 0;
  animation: home-reveal 1.15s ease-out both;
  will-change: opacity;
}

.home-anim--1 { animation-delay: .18s; }
.home-anim--2 { animation-delay: .46s; }
.home-anim--3 { animation-delay: .74s; }

@keyframes home-reveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .home-anim {
    opacity: 1;
    animation: none;
  }
}


/* =========================================================
   EL PROCESO
   ========================================================= */

.process {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 690px;
  overflow-x: hidden;
  overflow-y: auto;
  isolation: isolate;
  background: #050b16;
}

.process__bg,
.process__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.process__bg {
  z-index: -2;
  background-image: url("assets/el-proceso-bg.jpg");
  background-size: cover;
  background-position: center center;
}

.process__shade {
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(3,9,19,0) 0%,
      rgba(3,9,19,.02) 40%,
      rgba(3,9,19,.26) 53%,
      rgba(3,9,19,.74) 100%),
    linear-gradient(180deg,
      rgba(2,8,18,.08) 0%,
      rgba(2,8,18,0) 48%,
      rgba(2,8,18,.12) 100%);
}

.process-header {
  top: 4.0vh;
}

.process-copy {
  position: absolute;
  top: 52%;
  left: 48.4%;
  width: min(760px, 48.5vw);
  transform: translateY(-45%);
  color: rgba(255,255,255,.90);
}

.process-heading {
  text-align: center;
  margin-left: 3.4%;
}

.process-heading h1 {
  margin: 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(26px, 2.32vw, 38px);
  font-weight: 200;
  letter-spacing: .28em;
  line-height: 1.15;
  color: rgba(255,255,255,.93);
  text-transform: uppercase;
}

.process-heading p {
  margin: clamp(18px, 2.4vh, 26px) 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(12px, 1.05vw, 17px);
  font-weight: 300;
  letter-spacing: .34em;
  line-height: 1;
  color: rgba(255,255,255,.84);
  text-transform: uppercase;
}

.process-map {
  position: relative;
  width: 100%;
  margin-top: clamp(42px, 5.1vh, 55px);
  padding-left: 11.2%;
}

.process-map::before {
  content: "";
  position: absolute;
  left: calc(11.2% + 15px);
  top: 17px;
  bottom: 17px;
  width: 1px;
  background: rgba(227,232,248,.52);
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 31px 1fr;
  align-items: center;
  column-gap: 30px;
  min-height: 72px;
  color: inherit;
}

.process-item + .process-item {
  margin-top: 4px;
}

.process-node {
  position: relative;
  z-index: 2;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(236,240,255,.72);
  border-radius: 50%;
  background: rgba(7,14,28,.36);
  box-shadow: 0 0 14px rgba(175,189,255,.06);
}

.process-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  transform: translate(-50%, -50%);
}

.process-item__copy {
  display: block;
  min-width: 0;
}

.process-item strong,
.process-item small {
  display: block;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
}

.process-item strong {
  font-size: clamp(15px, 1.22vw, 20px);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: .22em;
  color: rgba(255,255,255,.90);
}

.process-item small {
  margin-top: 8px;
  font-size: clamp(8.5px, .72vw, 11.5px);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: .24em;
  color: rgba(223,227,244,.71);
}

.process-item:hover strong {
  color: #fff;
}

.process-explore {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 23px;
  margin-top: clamp(24px, 2.8vh, 30px);
  padding-right: 1.0%;
  padding-bottom: 18px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(11px, .96vw, 15px);
  font-weight: 300;
  letter-spacing: .30em;
  color: rgba(255,255,255,.80);
}

.process-arrow {
  font-size: 24px;
  letter-spacing: 0;
  line-height: .8;
}

/* Same fade language as the rest of the site */
.process-anim {
  opacity: 0;
  animation: process-reveal 1.05s ease-out both;
  will-change: opacity;
}

.process-anim--1 { animation-delay: .14s; }
.process-anim--2 { animation-delay: .36s; }
.process-anim--3 { animation-delay: .52s; }
.process-anim--4 { animation-delay: .68s; }
.process-anim--5 { animation-delay: .84s; }
.process-anim--6 { animation-delay: 1.00s; }
.process-anim--7 { animation-delay: 1.16s; }
.process-anim--8 { animation-delay: 1.34s; }

@keyframes process-reveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .process-anim {
    opacity: 1;
    animation: none;
  }
}

@media (max-width: 1100px) {
  .process-copy {
    left: 46%;
    width: 52vw;
  }
  .process-map {
    padding-left: 8%;
  }
  .process-map::before {
    left: calc(8% + 15px);
  }
}

@media (max-width: 760px) {
  .process {
    min-height: 920px;
    overflow: auto;
  }

  .process__bg {
    background-position: 28% center;
  }

  .process__shade {
    background:
      linear-gradient(180deg,
        rgba(3,9,19,.08) 0%,
        rgba(3,9,19,.16) 38%,
        rgba(3,9,19,.90) 62%,
        rgba(3,9,19,.98) 100%);
  }

  .process-copy {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    transform: none;
    margin: 0 24px;
    padding-top: 43vh;
    padding-bottom: 54px;
  }

  .process-heading {
    margin-left: 0;
    text-align: left;
  }

  .process-heading h1 {
    font-size: 27px;
    letter-spacing: .18em;
  }

  .process-heading p {
    font-size: 10px;
    letter-spacing: .24em;
  }

  .process-map {
    margin-top: 40px;
    padding-left: 0;
  }

  .process-map::before {
    left: 15px;
  }

  .process-item {
    grid-template-columns: 31px 1fr;
    column-gap: 22px;
  }

  .process-item strong {
    font-size: 14px;
    letter-spacing: .15em;
  }

  .process-item small {
    font-size: 8px;
    letter-spacing: .15em;
  }

  .process-explore {
    padding-right: 0;
  }
}


@media (min-width: 761px) and (max-height: 790px) {
  .process-copy {
    top: 51%;
    transform: translateY(-44%);
  }

  .process-heading h1 {
    font-size: clamp(24px, 2.10vw, 34px);
  }

  .process-heading p {
    margin-top: 16px;
  }

  .process-map {
    margin-top: 34px;
  }

  .process-item {
    min-height: 64px;
  }

  .process-item + .process-item {
    margin-top: 0;
  }

  .process-item small {
    margin-top: 6px;
  }

  .process-explore {
    margin-top: 18px;
    padding-bottom: 22px;
  }
}


/* =========================================================
   3D · 4D · 5D
   ========================================================= */

.dimensions {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: #050b16;
}

.dimensions__bg,
.dimensions__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dimensions__bg {
  z-index: -2;
  background-image: url("assets/3d-4d-5d-bg.jpg");
  background-size: cover;
  background-position: center center;
}

.dimensions__shade {
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(3,9,19,0) 0%,
      rgba(3,9,19,.02) 41%,
      rgba(3,9,19,.25) 54%,
      rgba(3,9,19,.76) 100%),
    linear-gradient(180deg,
      rgba(2,8,18,.08) 0%,
      rgba(2,8,18,0) 48%,
      rgba(2,8,18,.12) 100%);
}

.dimensions-header {
  top: 4.0vh;
}

.dimensions-copy {
  position: absolute;
  top: 15.5vh;
  bottom: 3.6vh;
  left: 54.6%;
  width: min(650px, 40vw);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 4vh 18px 28px 0;
  color: rgba(255,255,255,.90);
  scrollbar-width: none;
  overscroll-behavior: contain;
}

.dimensions-copy::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.dimensions-heading h1 {
  margin: 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(33px, 3.20vw, 53px);
  font-weight: 200;
  letter-spacing: .22em;
  line-height: 1;
  color: rgba(255,255,255,.93);
}

.dimensions-heading p {
  margin: 20px 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(11px, 1.00vw, 16px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: .28em;
  color: rgba(255,255,255,.83);
  text-transform: uppercase;
}

.dimensions-intro {
  margin: clamp(34px, 4.3vh, 44px) 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(11px, .98vw, 15.5px);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: .035em;
  color: rgba(255,255,255,.76);
}

.dimensions-map {
  position: relative;
  margin-top: clamp(38px, 4.5vh, 48px);
  padding-left: 42px;
}

.dimensions-map::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 17px;
  bottom: 17px;
  width: 1px;
  background: rgba(225,231,249,.52);
}

.dimensions-item {
  position: relative;
  display: grid;
  grid-template-columns: 31px 1fr;
  column-gap: 28px;
  align-items: start;
}

.dimensions-item + .dimensions-item {
  margin-top: 34px;
}

.dimensions-node {
  position: relative;
  z-index: 2;
  width: 31px;
  height: 31px;
  margin-left: -42px;
  border: 1px solid rgba(236,240,255,.72);
  border-radius: 50%;
  background: rgba(7,14,28,.38);
}

.dimensions-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  transform: translate(-50%, -50%);
}

.dimensions-item strong {
  display: block;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(15px, 1.22vw, 20px);
  font-weight: 300;
  letter-spacing: .22em;
  line-height: 1.25;
  color: rgba(255,255,255,.91);
}

.dimensions-item p {
  margin: 8px 0 0;
  max-width: 540px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(10.5px, .88vw, 14px);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: .035em;
  color: rgba(232,235,246,.72);
}

.dimensions-closing {
  margin-top: clamp(32px, 4vh, 42px);
}

.dimensions-divider {
  width: 64px;
  height: 1px;
  margin-bottom: 26px;
  background: rgba(255,255,255,.70);
}

.dimensions-closing p {
  margin: 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(10.5px, .86vw, 13.5px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: .025em;
  color: rgba(255,255,255,.73);
}

.dimensions-closing small {
  display: block;
  margin-top: 20px;
  max-width: 620px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(7.5px, .58vw, 9.5px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: .24em;
  color: rgba(211,218,239,.58);
}

/* Fade only, matching Inicio / Qué es / El Proceso */
.dimensions-anim {
  opacity: 0;
  animation: dimensions-reveal 1.05s ease-out both;
  will-change: opacity;
}

.dimensions-anim--1 { animation-delay: .14s; }
.dimensions-anim--2 { animation-delay: .36s; }
.dimensions-anim--3 { animation-delay: .56s; }
.dimensions-anim--4 { animation-delay: .72s; }
.dimensions-anim--5 { animation-delay: .88s; }
.dimensions-anim--6 { animation-delay: 1.06s; }

@keyframes dimensions-reveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .dimensions-anim {
    opacity: 1;
    animation: none;
  }
}

@media (min-width: 761px) and (max-height: 790px) {
  .dimensions-copy {
    top: 13.5vh;
    bottom: 2.8vh;
    padding-top: 3vh;
  }

  .dimensions-heading h1 {
    font-size: clamp(29px, 2.7vw, 44px);
  }

  .dimensions-intro {
    margin-top: 26px;
  }

  .dimensions-map {
    margin-top: 28px;
  }

  .dimensions-item + .dimensions-item {
    margin-top: 22px;
  }

  .dimensions-closing {
    margin-top: 26px;
  }
}

@media (max-width: 760px) {
  .dimensions {
    min-height: 0;
    height: 100svh;
    overflow: hidden;
  }

  .dimensions__bg {
    background-position: 25% center;
  }

  .dimensions__shade {
    background:
      linear-gradient(180deg,
        rgba(3,9,19,.06) 0%,
        rgba(3,9,19,.18) 38%,
        rgba(3,9,19,.90) 60%,
        rgba(3,9,19,.98) 100%);
  }

  .dimensions-copy {
    position: absolute;
    top: 16vh;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 36vh 24px 54px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    overscroll-behavior: contain;
  }

  .dimensions-heading h1 {
    font-size: 31px;
    letter-spacing: .16em;
  }

  .dimensions-heading p {
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: .20em;
  }

  .dimensions-intro br {
    display: none;
  }

  .dimensions-map {
    padding-left: 38px;
  }

  .dimensions-item p {
    font-size: 11px;
  }
}


/* El mapa de El Proceso es informativo; EXPLORAR inicia el recorrido */
.process-item {
  cursor: default;
}

.process-item:hover strong {
  color: rgba(255,255,255,.90);
}

.process-explore {
  text-decoration: none;
  cursor: pointer;
  transition: opacity .25s ease, transform .25s ease;
}

.process-explore:hover {
  opacity: 1;
  transform: translateX(3px);
}


/* =========================================================
   Sequential navigation inside El Proceso subsections
   ========================================================= */

.subsection-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding: 24px 0 8px;
  border-top: 1px solid rgba(235,240,255,.18);
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(9px, .72vw, 11.5px);
  font-weight: 300;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.subsection-nav__back,
.subsection-nav__next {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.72);
  transition: color .25s ease, transform .25s ease, opacity .25s ease;
}

.subsection-nav__back:hover {
  color: rgba(255,255,255,.98);
  transform: translateX(-3px);
}

.subsection-nav__next {
  justify-content: flex-end;
  text-align: right;
}

.subsection-nav__next.is-pending {
  opacity: .45;
  cursor: default;
}

.dimensions-anim--7 { animation-delay: 1.22s; }

@media (max-width: 760px) {
  .subsection-nav {
    margin-top: 32px;
    font-size: 9px;
    letter-spacing: .16em;
  }
}


/* =========================================================
   LOS 12 CUERPOS
   ========================================================= */

.bodies {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #050b16;
}

.bodies__bg,
.bodies__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bodies__bg {
  z-index: -2;
  background-image: url("assets/12-cuerpos-bg.jpg");
  background-size: cover;
  background-position: center center;
}

.bodies__shade {
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(3,9,19,0) 0%,
      rgba(3,9,19,.02) 40%,
      rgba(3,9,19,.24) 51%,
      rgba(3,9,19,.78) 100%),
    linear-gradient(180deg,
      rgba(2,8,18,.08) 0%,
      rgba(2,8,18,0) 48%,
      rgba(2,8,18,.12) 100%);
}

.bodies-header {
  top: 4.0vh;
}

.bodies-copy {
  position: absolute;
  top: 14.5vh;
  bottom: 3.4vh;
  left: 50.8%;
  width: min(760px, 46.5vw);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 3.6vh 18px 30px 0;
  color: rgba(255,255,255,.90);
  scrollbar-width: none;
  overscroll-behavior: contain;
}

.bodies-copy::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.bodies-heading h1 {
  margin: 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(31px, 2.75vw, 45px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: .28em;
  color: rgba(255,255,255,.93);
}

.bodies-heading p {
  margin: 20px 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(11px, .95vw, 15px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: .34em;
  color: rgba(255,255,255,.83);
  text-transform: uppercase;
}

.bodies-intro {
  margin: clamp(32px, 4vh, 42px) 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(11px, .92vw, 14.5px);
  font-weight: 300;
  line-height: 1.62;
  letter-spacing: .035em;
  color: rgba(255,255,255,.74);
}

.bodies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-top: clamp(34px, 4.4vh, 46px);
}

.bodies-column {
  position: relative;
}

.bodies-column::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(225,231,249,.50);
}

.body-item {
  position: relative;
  display: grid;
  grid-template-columns: 31px 1fr;
  column-gap: 18px;
  min-height: 73px;
  align-items: start;
}

.body-item + .body-item {
  margin-top: 5px;
}

.body-node {
  position: relative;
  z-index: 2;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(236,240,255,.72);
  border-radius: 50%;
  background: rgba(7,14,28,.40);
}

.body-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  transform: translate(-50%, -50%);
}

.body-item strong {
  display: block;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(12px, .98vw, 15.5px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: .22em;
  color: rgba(255,255,255,.90);
}

.body-item p {
  margin: 8px 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(9px, .70vw, 11.2px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: .025em;
  color: rgba(229,233,246,.69);
}

.bodies-closing {
  margin-top: 30px;
}

.bodies-divider {
  width: 64px;
  height: 1px;
  margin-bottom: 20px;
  background: rgba(255,255,255,.70);
}

.bodies-closing p {
  margin: 0;
  max-width: 690px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(9.5px, .76vw, 12px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: .03em;
  color: rgba(255,255,255,.70);
}

/* Fade only */
.bodies-anim {
  opacity: 0;
  animation: bodies-reveal 1.0s ease-out both;
  will-change: opacity;
}

.bodies-anim--1 { animation-delay: .12s; }
.bodies-anim--2 { animation-delay: .28s; }
.bodies-anim--3 { animation-delay: .42s; }
.bodies-anim--4 { animation-delay: .50s; }
.bodies-anim--5 { animation-delay: .58s; }
.bodies-anim--6 { animation-delay: .66s; }
.bodies-anim--7 { animation-delay: .74s; }
.bodies-anim--8 { animation-delay: .82s; }
.bodies-anim--9 { animation-delay: .90s; }
.bodies-anim--10 { animation-delay: .98s; }
.bodies-anim--11 { animation-delay: 1.06s; }
.bodies-anim--12 { animation-delay: 1.14s; }
.bodies-anim--13 { animation-delay: 1.22s; }
.bodies-anim--14 { animation-delay: 1.30s; }
.bodies-anim--15 { animation-delay: 1.40s; }
.bodies-anim--16 { animation-delay: 1.50s; }

@keyframes bodies-reveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .bodies-anim {
    opacity: 1;
    animation: none;
  }
}

@media (min-width: 761px) and (max-height: 790px) {
  .bodies-copy {
    top: 12.5vh;
    bottom: 2.5vh;
    padding-top: 2.7vh;
  }

  .bodies-heading h1 {
    font-size: clamp(28px, 2.45vw, 40px);
  }

  .bodies-intro {
    margin-top: 25px;
  }

  .bodies-grid {
    margin-top: 28px;
  }

  .body-item {
    min-height: 65px;
  }

  .body-item + .body-item {
    margin-top: 1px;
  }
}

@media (max-width: 760px) {
  .bodies {
    height: 100svh;
    overflow: hidden;
  }

  .bodies__bg {
    background-position: 25% center;
  }

  .bodies__shade {
    background:
      linear-gradient(180deg,
        rgba(3,9,19,.06) 0%,
        rgba(3,9,19,.18) 36%,
        rgba(3,9,19,.90) 58%,
        rgba(3,9,19,.98) 100%);
  }

  .bodies-copy {
    position: absolute;
    top: 16vh;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35vh 24px 54px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .bodies-heading h1 {
    font-size: 28px;
    letter-spacing: .18em;
  }

  .bodies-heading p {
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: .22em;
  }

  .bodies-intro br {
    display: none;
  }

  .bodies-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .body-item strong {
    font-size: 13px;
  }

  .body-item p {
    font-size: 10.5px;
  }
}


/* =========================================================
   ENERGÍA Y FUEGO VIBRAL
   ========================================================= */

.energy {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #050b16;
}

.energy__bg,
.energy__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.energy__bg {
  z-index: -2;
  background-image: url("assets/energia-fuego-vibral-bg.jpg");
  background-size: cover;
  background-position: center center;
}

.energy__shade {
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(3,9,19,0) 0%,
      rgba(3,9,19,.02) 40%,
      rgba(3,9,19,.24) 51%,
      rgba(3,9,19,.80) 100%),
    linear-gradient(180deg,
      rgba(2,8,18,.08) 0%,
      rgba(2,8,18,0) 48%,
      rgba(2,8,18,.12) 100%);
}

.energy-header {
  top: 4.0vh;
}

.energy-copy {
  position: absolute;
  top: 14.7vh;
  bottom: 3.2vh;
  left: 51.5%;
  width: min(700px, 43.5vw);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 3.8vh 18px 30px 0;
  color: rgba(255,255,255,.90);
  scrollbar-width: none;
  overscroll-behavior: contain;
}

.energy-copy::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.energy-heading h1 {
  margin: 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(27px, 2.45vw, 40px);
  font-weight: 200;
  line-height: 1.14;
  letter-spacing: .25em;
  color: rgba(255,255,255,.93);
}

.energy-heading p {
  margin: 20px 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(10px, .90vw, 14px);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: .28em;
  color: rgba(255,255,255,.82);
  text-transform: uppercase;
}

.energy-intro {
  margin: clamp(30px, 3.8vh, 40px) 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(10.8px, .90vw, 14.2px);
  font-weight: 300;
  line-height: 1.62;
  letter-spacing: .035em;
  color: rgba(255,255,255,.74);
}

.energy-map {
  position: relative;
  margin-top: clamp(36px, 4.4vh, 46px);
  padding-left: 42px;
}

.energy-map::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 17px;
  bottom: 17px;
  width: 1px;
  background: rgba(225,231,249,.50);
}

.energy-item {
  position: relative;
  display: grid;
  grid-template-columns: 31px 1fr;
  column-gap: 28px;
  align-items: start;
}

.energy-item + .energy-item {
  margin-top: 34px;
}

.energy-node {
  position: relative;
  z-index: 2;
  width: 31px;
  height: 31px;
  margin-left: -42px;
  border: 1px solid rgba(236,240,255,.72);
  border-radius: 50%;
  background: rgba(7,14,28,.38);
}

.energy-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  transform: translate(-50%, -50%);
}

.energy-item strong {
  display: block;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(15px, 1.18vw, 19px);
  font-weight: 300;
  letter-spacing: .24em;
  line-height: 1.2;
  color: rgba(255,255,255,.91);
}

.energy-item p {
  margin: 8px 0 0;
  max-width: 560px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(10.3px, .84vw, 13.4px);
  font-weight: 300;
  line-height: 1.64;
  letter-spacing: .035em;
  color: rgba(229,233,246,.70);
}

.energy-closing {
  margin-top: clamp(32px, 4vh, 42px);
}

.energy-divider {
  width: 64px;
  height: 1px;
  margin-bottom: 24px;
  background: rgba(255,255,255,.70);
}

.energy-note {
  margin: 0;
  max-width: 620px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(9.6px, .78vw, 12.4px);
  font-weight: 300;
  line-height: 1.58;
  letter-spacing: .025em;
  color: rgba(255,255,255,.68);
}

.energy-statement {
  margin: 30px 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(15px, 1.30vw, 21px);
  font-weight: 300;
  line-height: 1.62;
  letter-spacing: .18em;
  color: rgba(255,255,255,.86);
}

/* Fade only */
.energy-anim {
  opacity: 0;
  animation: energy-reveal 1.05s ease-out both;
  will-change: opacity;
}

.energy-anim--1 { animation-delay: .12s; }
.energy-anim--2 { animation-delay: .30s; }
.energy-anim--3 { animation-delay: .48s; }
.energy-anim--4 { animation-delay: .66s; }
.energy-anim--5 { animation-delay: .84s; }
.energy-anim--6 { animation-delay: 1.02s; }
.energy-anim--7 { animation-delay: 1.18s; }

@keyframes energy-reveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .energy-anim {
    opacity: 1;
    animation: none;
  }
}

@media (min-width: 761px) and (max-height: 790px) {
  .energy-copy {
    top: 12.8vh;
    bottom: 2.5vh;
    padding-top: 2.8vh;
  }

  .energy-heading h1 {
    font-size: clamp(25px, 2.15vw, 35px);
  }

  .energy-intro {
    margin-top: 24px;
  }

  .energy-map {
    margin-top: 28px;
  }

  .energy-item + .energy-item {
    margin-top: 24px;
  }

  .energy-closing {
    margin-top: 26px;
  }

  .energy-statement {
    margin-top: 24px;
  }
}

@media (max-width: 760px) {
  .energy {
    height: 100svh;
    overflow: hidden;
  }

  .energy__bg {
    background-position: 25% center;
  }

  .energy__shade {
    background:
      linear-gradient(180deg,
        rgba(3,9,19,.06) 0%,
        rgba(3,9,19,.18) 36%,
        rgba(3,9,19,.90) 58%,
        rgba(3,9,19,.98) 100%);
  }

  .energy-copy {
    position: absolute;
    top: 16vh;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35vh 24px 54px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .energy-heading h1 {
    font-size: 26px;
    letter-spacing: .16em;
  }

  .energy-heading p {
    font-size: 9.5px;
    letter-spacing: .18em;
  }

  .energy-intro br {
    display: none;
  }

  .energy-item strong {
    font-size: 13px;
  }

  .energy-item p,
  .energy-note {
    font-size: 10.5px;
  }

  .energy-statement {
    font-size: 16px;
    letter-spacing: .12em;
  }
}


/* =========================================================
   LAS FASES DEL PROCESO
   ========================================================= */

.phases {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #050b16;
}

.phases__bg,
.phases__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.phases__bg {
  z-index: -2;
  background-image: url("assets/fases-proceso-bg.jpg");
  background-size: cover;
  background-position: center center;
}

.phases__shade {
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(3,9,19,0) 0%,
      rgba(3,9,19,.02) 40%,
      rgba(3,9,19,.24) 51%,
      rgba(3,9,19,.80) 100%),
    linear-gradient(180deg,
      rgba(2,8,18,.08) 0%,
      rgba(2,8,18,0) 48%,
      rgba(2,8,18,.12) 100%);
}

.phases-header {
  top: 4.0vh;
}

.phases-copy {
  position: absolute;
  top: 14.6vh;
  bottom: 3.2vh;
  left: 51.2%;
  width: min(720px, 44.5vw);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 3.8vh 18px 30px 0;
  color: rgba(255,255,255,.90);
  scrollbar-width: none;
  overscroll-behavior: contain;
}

.phases-copy::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.phases-heading h1 {
  margin: 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(27px, 2.42vw, 39px);
  font-weight: 200;
  line-height: 1.12;
  letter-spacing: .25em;
  color: rgba(255,255,255,.93);
}

.phases-heading p {
  margin: 20px 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(10px, .90vw, 14px);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: .29em;
  color: rgba(255,255,255,.82);
  text-transform: uppercase;
}

.phases-intro {
  margin: clamp(30px, 3.8vh, 40px) 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(10.8px, .90vw, 14.2px);
  font-weight: 300;
  line-height: 1.62;
  letter-spacing: .035em;
  color: rgba(255,255,255,.74);
}

.phases-map {
  position: relative;
  margin-top: clamp(36px, 4.4vh, 46px);
  padding-left: 42px;
}

.phases-map::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 17px;
  bottom: 17px;
  width: 1px;
  background: rgba(225,231,249,.50);
}

.phase-item {
  position: relative;
  display: grid;
  grid-template-columns: 31px 1fr;
  column-gap: 28px;
  align-items: start;
}

.phase-item + .phase-item {
  margin-top: 30px;
}

.phase-node {
  position: relative;
  z-index: 2;
  width: 31px;
  height: 31px;
  margin-left: -42px;
  border: 1px solid rgba(236,240,255,.72);
  border-radius: 50%;
  background: rgba(7,14,28,.38);
}

.phase-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  transform: translate(-50%, -50%);
}

.phase-item strong {
  display: block;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(14px, 1.12vw, 18px);
  font-weight: 300;
  letter-spacing: .23em;
  line-height: 1.25;
  color: rgba(255,255,255,.91);
}

.phase-item p {
  margin: 8px 0 0;
  max-width: 560px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(10px, .82vw, 13.2px);
  font-weight: 300;
  line-height: 1.62;
  letter-spacing: .035em;
  color: rgba(229,233,246,.70);
}

.phases-closing {
  margin-top: clamp(32px, 4vh, 42px);
}

.phases-divider {
  width: 64px;
  height: 1px;
  margin-bottom: 22px;
  background: rgba(255,255,255,.70);
}

.phases-closing p {
  margin: 0;
  max-width: 620px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(9.7px, .78vw, 12.4px);
  font-weight: 300;
  line-height: 1.58;
  letter-spacing: .025em;
  color: rgba(255,255,255,.68);
}

/* Fade only */
.phases-anim {
  opacity: 0;
  animation: phases-reveal 1.05s ease-out both;
  will-change: opacity;
}

.phases-anim--1 { animation-delay: .12s; }
.phases-anim--2 { animation-delay: .28s; }
.phases-anim--3 { animation-delay: .44s; }
.phases-anim--4 { animation-delay: .58s; }
.phases-anim--5 { animation-delay: .72s; }
.phases-anim--6 { animation-delay: .86s; }
.phases-anim--7 { animation-delay: 1.00s; }
.phases-anim--8 { animation-delay: 1.14s; }
.phases-anim--9 { animation-delay: 1.28s; }

@keyframes phases-reveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .phases-anim {
    opacity: 1;
    animation: none;
  }
}

@media (min-width: 761px) and (max-height: 790px) {
  .phases-copy {
    top: 12.8vh;
    bottom: 2.5vh;
    padding-top: 2.8vh;
  }

  .phases-heading h1 {
    font-size: clamp(25px, 2.15vw, 35px);
  }

  .phases-intro {
    margin-top: 24px;
  }

  .phases-map {
    margin-top: 28px;
  }

  .phase-item + .phase-item {
    margin-top: 22px;
  }

  .phases-closing {
    margin-top: 26px;
  }
}

@media (max-width: 760px) {
  .phases {
    height: 100svh;
    overflow: hidden;
  }

  .phases__bg {
    background-position: 25% center;
  }

  .phases__shade {
    background:
      linear-gradient(180deg,
        rgba(3,9,19,.06) 0%,
        rgba(3,9,19,.18) 36%,
        rgba(3,9,19,.90) 58%,
        rgba(3,9,19,.98) 100%);
  }

  .phases-copy {
    position: absolute;
    top: 16vh;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35vh 24px 54px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .phases-heading h1 {
    font-size: 26px;
    letter-spacing: .16em;
  }

  .phases-heading p {
    font-size: 9.5px;
    letter-spacing: .18em;
  }

  .phases-intro br {
    display: none;
  }

  .phase-item strong {
    font-size: 13px;
  }

  .phase-item p,
  .phases-closing p {
    font-size: 10.5px;
  }
}


/* =========================================================
   MERKABA E INTEGRACIÓN ABSOLUTA
   ========================================================= */

.merkaba {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #050b16;
}

.merkaba__bg,
.merkaba__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.merkaba__bg {
  z-index: -2;
  background-image: url("assets/merkaba-integracion-bg.jpg");
  background-size: cover;
  background-position: center center;
}

.merkaba__shade {
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(3,9,19,0) 0%,
      rgba(3,9,19,.02) 40%,
      rgba(3,9,19,.24) 51%,
      rgba(3,9,19,.80) 100%),
    linear-gradient(180deg,
      rgba(2,8,18,.08) 0%,
      rgba(2,8,18,0) 48%,
      rgba(2,8,18,.12) 100%);
}

.merkaba-header {
  top: 4.0vh;
}

.merkaba-copy {
  position: absolute;
  top: 14.6vh;
  bottom: 3.2vh;
  left: 51.2%;
  width: min(720px, 44.5vw);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 3.8vh 18px 30px 0;
  color: rgba(255,255,255,.90);
  scrollbar-width: none;
  overscroll-behavior: contain;
}

.merkaba-copy::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.merkaba-heading h1 {
  margin: 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(25px, 2.15vw, 35px);
  font-weight: 200;
  line-height: 1.20;
  letter-spacing: .21em;
  color: rgba(255,255,255,.93);
}

.merkaba-heading p {
  margin: 20px 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(9.8px, .86vw, 13.5px);
  font-weight: 300;
  line-height: 1.42;
  letter-spacing: .25em;
  color: rgba(255,255,255,.82);
  text-transform: uppercase;
}

.merkaba-intro {
  margin: clamp(30px, 3.8vh, 40px) 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(10.8px, .90vw, 14.2px);
  font-weight: 300;
  line-height: 1.62;
  letter-spacing: .035em;
  color: rgba(255,255,255,.74);
}

.merkaba-map {
  position: relative;
  margin-top: clamp(36px, 4.4vh, 46px);
  padding-left: 42px;
}

.merkaba-map::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 17px;
  bottom: 17px;
  width: 1px;
  background: rgba(225,231,249,.50);
}

.merkaba-item {
  position: relative;
  display: grid;
  grid-template-columns: 31px 1fr;
  column-gap: 28px;
  align-items: start;
}

.merkaba-item + .merkaba-item {
  margin-top: 34px;
}

.merkaba-node {
  position: relative;
  z-index: 2;
  width: 31px;
  height: 31px;
  margin-left: -42px;
  border: 1px solid rgba(236,240,255,.72);
  border-radius: 50%;
  background: rgba(7,14,28,.38);
}

.merkaba-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  transform: translate(-50%, -50%);
}

.merkaba-item strong {
  display: block;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(14px, 1.10vw, 17.5px);
  font-weight: 300;
  letter-spacing: .23em;
  line-height: 1.25;
  color: rgba(255,255,255,.91);
}

.merkaba-item p {
  margin: 8px 0 0;
  max-width: 560px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(10px, .82vw, 13.2px);
  font-weight: 300;
  line-height: 1.62;
  letter-spacing: .035em;
  color: rgba(229,233,246,.70);
}

.merkaba-closing {
  margin-top: clamp(32px, 4vh, 42px);
}

.merkaba-divider {
  width: 64px;
  height: 1px;
  margin-bottom: 24px;
  background: rgba(255,255,255,.70);
}

.merkaba-note {
  margin: 0;
  max-width: 620px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(9.6px, .78vw, 12.4px);
  font-weight: 300;
  line-height: 1.58;
  letter-spacing: .025em;
  color: rgba(255,255,255,.68);
}

.merkaba-statement {
  margin: 30px 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(14px, 1.18vw, 19px);
  font-weight: 300;
  line-height: 1.62;
  letter-spacing: .14em;
  color: rgba(255,255,255,.86);
}

.merkaba-anim {
  opacity: 0;
  animation: merkaba-reveal 1.05s ease-out both;
  will-change: opacity;
}

.merkaba-anim--1 { animation-delay: .12s; }
.merkaba-anim--2 { animation-delay: .30s; }
.merkaba-anim--3 { animation-delay: .48s; }
.merkaba-anim--4 { animation-delay: .66s; }
.merkaba-anim--5 { animation-delay: .84s; }
.merkaba-anim--6 { animation-delay: 1.02s; }
.merkaba-anim--7 { animation-delay: 1.18s; }

@keyframes merkaba-reveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .merkaba-anim {
    opacity: 1;
    animation: none;
  }
}

@media (min-width: 761px) and (max-height: 790px) {
  .merkaba-copy {
    top: 12.8vh;
    bottom: 2.5vh;
    padding-top: 2.8vh;
  }

  .merkaba-heading h1 {
    font-size: clamp(23px, 1.95vw, 32px);
  }

  .merkaba-intro {
    margin-top: 24px;
  }

  .merkaba-map {
    margin-top: 28px;
  }

  .merkaba-item + .merkaba-item {
    margin-top: 24px;
  }

  .merkaba-closing {
    margin-top: 26px;
  }

  .merkaba-statement {
    margin-top: 24px;
  }
}

@media (max-width: 760px) {
  .merkaba {
    height: 100svh;
    overflow: hidden;
  }

  .merkaba__bg {
    background-position: 24% center;
  }

  .merkaba__shade {
    background:
      linear-gradient(180deg,
        rgba(3,9,19,.06) 0%,
        rgba(3,9,19,.18) 36%,
        rgba(3,9,19,.90) 58%,
        rgba(3,9,19,.98) 100%);
  }

  .merkaba-copy {
    position: absolute;
    top: 16vh;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35vh 24px 54px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .merkaba-heading h1 {
    font-size: 24px;
    letter-spacing: .14em;
  }

  .merkaba-heading p {
    font-size: 9px;
    letter-spacing: .16em;
  }

  .merkaba-intro br,
  .merkaba-statement br {
    display: none;
  }

  .merkaba-item strong {
    font-size: 13px;
  }

  .merkaba-item p,
  .merkaba-note {
    font-size: 10.5px;
  }

  .merkaba-statement {
    font-size: 15px;
    letter-spacing: .10em;
  }
}


/* =========================================================
   DE DÓNDE VENIMOS Y HACIA DÓNDE VAMOS
   ========================================================= */

.origin {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #050b16;
}

.origin__bg,
.origin__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.origin__bg {
  z-index: -2;
  background-image: url("assets/de-donde-venimos-bg.jpg");
  background-size: cover;
  background-position: center center;
}

.origin__shade {
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(3,9,19,0) 0%,
      rgba(3,9,19,.02) 40%,
      rgba(3,9,19,.24) 51%,
      rgba(3,9,19,.80) 100%),
    linear-gradient(180deg,
      rgba(2,8,18,.08) 0%,
      rgba(2,8,18,0) 48%,
      rgba(2,8,18,.12) 100%);
}

.origin-header {
  top: 4.0vh;
}

.origin-copy {
  position: absolute;
  top: 14.5vh;
  bottom: 3.2vh;
  left: 51.2%;
  width: min(720px, 44.5vw);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 3.7vh 18px 30px 0;
  color: rgba(255,255,255,.90);
  scrollbar-width: none;
  overscroll-behavior: contain;
}

.origin-copy::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.origin-heading h1 {
  margin: 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(25px, 2.15vw, 35px);
  font-weight: 200;
  line-height: 1.27;
  letter-spacing: .21em;
  color: rgba(255,255,255,.93);
}

.origin-heading p {
  margin: 20px 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(9.8px, .86vw, 13.5px);
  font-weight: 300;
  line-height: 1.42;
  letter-spacing: .25em;
  color: rgba(255,255,255,.82);
  text-transform: uppercase;
}

.origin-intro {
  margin: clamp(30px, 3.8vh, 40px) 0 0;
  max-width: 640px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(10.6px, .88vw, 14px);
  font-weight: 300;
  line-height: 1.67;
  letter-spacing: .03em;
  color: rgba(255,255,255,.74);
}

.origin-map {
  position: relative;
  margin-top: clamp(36px, 4.4vh, 46px);
  padding-left: 42px;
}

.origin-map::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 17px;
  bottom: 17px;
  width: 1px;
  background: rgba(225,231,249,.50);
}

.origin-item {
  position: relative;
  display: grid;
  grid-template-columns: 31px 1fr;
  column-gap: 28px;
  align-items: start;
}

.origin-item + .origin-item {
  margin-top: 34px;
}

.origin-node {
  position: relative;
  z-index: 2;
  width: 31px;
  height: 31px;
  margin-left: -42px;
  border: 1px solid rgba(236,240,255,.72);
  border-radius: 50%;
  background: rgba(7,14,28,.38);
}

.origin-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  transform: translate(-50%, -50%);
}

.origin-item strong {
  display: block;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(14px, 1.10vw, 17.5px);
  font-weight: 300;
  letter-spacing: .23em;
  line-height: 1.25;
  color: rgba(255,255,255,.91);
}

.origin-item p {
  margin: 8px 0 0;
  max-width: 570px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(10px, .82vw, 13.2px);
  font-weight: 300;
  line-height: 1.62;
  letter-spacing: .035em;
  color: rgba(229,233,246,.70);
}

.origin-closing {
  margin-top: clamp(32px, 4vh, 42px);
}

.origin-divider {
  width: 64px;
  height: 1px;
  margin-bottom: 24px;
  background: rgba(255,255,255,.70);
}

.origin-note {
  margin: 0;
  max-width: 620px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(9.7px, .78vw, 12.4px);
  font-weight: 300;
  line-height: 1.58;
  letter-spacing: .025em;
  color: rgba(255,255,255,.68);
}

.origin-mantra {
  margin: 30px 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(10.5px, .90vw, 14px);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: .31em;
  color: rgba(255,255,255,.86);
}

/* Fade only */
.origin-anim {
  opacity: 0;
  animation: origin-reveal 1.05s ease-out both;
  will-change: opacity;
}

.origin-anim--1 { animation-delay: .12s; }
.origin-anim--2 { animation-delay: .30s; }
.origin-anim--3 { animation-delay: .48s; }
.origin-anim--4 { animation-delay: .66s; }
.origin-anim--5 { animation-delay: .84s; }
.origin-anim--6 { animation-delay: 1.02s; }
.origin-anim--7 { animation-delay: 1.18s; }

@keyframes origin-reveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .origin-anim {
    opacity: 1;
    animation: none;
  }
}

@media (min-width: 761px) and (max-height: 790px) {
  .origin-copy {
    top: 12.8vh;
    bottom: 2.5vh;
    padding-top: 2.8vh;
  }

  .origin-heading h1 {
    font-size: clamp(23px, 1.95vw, 32px);
  }

  .origin-intro {
    margin-top: 24px;
  }

  .origin-map {
    margin-top: 28px;
  }

  .origin-item + .origin-item {
    margin-top: 24px;
  }

  .origin-closing {
    margin-top: 26px;
  }

  .origin-mantra {
    margin-top: 24px;
  }
}

@media (max-width: 760px) {
  .origin {
    height: 100svh;
    overflow: hidden;
  }

  .origin__bg {
    background-position: 24% center;
  }

  .origin__shade {
    background:
      linear-gradient(180deg,
        rgba(3,9,19,.06) 0%,
        rgba(3,9,19,.18) 36%,
        rgba(3,9,19,.90) 58%,
        rgba(3,9,19,.98) 100%);
  }

  .origin-copy {
    position: absolute;
    top: 16vh;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35vh 24px 54px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .origin-heading h1 {
    font-size: 24px;
    letter-spacing: .14em;
  }

  .origin-heading p {
    font-size: 9px;
    letter-spacing: .16em;
  }

  .origin-item strong {
    font-size: 13px;
  }

  .origin-item p,
  .origin-note {
    font-size: 10.5px;
  }

  .origin-mantra {
    font-size: 10px;
    letter-spacing: .18em;
  }
}


/* Cierre reforzado — De dónde venimos y hacia dónde vamos */
.origin-note {
  max-width: 650px;
  font-size: clamp(15px, 1.28vw, 20px);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: .08em;
  color: rgba(255,255,255,.92);
}

.origin-divider {
  width: 82px;
  background: rgba(255,255,255,.82);
}

@media (max-width: 760px) {
  .origin-note {
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: .045em;
  }
}


/* =========================================================
   CONTACTO
   ========================================================= */

.contact {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #050b16;
}

.contact__bg,
.contact__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact__bg {
  z-index: -2;
  background-image: url("assets/contacto-bg.jpg");
  background-size: cover;
  background-position: center center;
}

.contact__shade {
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(3,9,19,0) 0%,
      rgba(3,9,19,.02) 40%,
      rgba(3,9,19,.24) 51%,
      rgba(3,9,19,.82) 100%),
    linear-gradient(180deg,
      rgba(2,8,18,.08) 0%,
      rgba(2,8,18,0) 50%,
      rgba(2,8,18,.15) 100%);
}

.contact-header {
  top: 4vh;
}

.contact-left {
  position: absolute;
  left: 6.2%;
  bottom: 8.5%;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(11px, .92vw, 14.5px);
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: .30em;
  color: rgba(255,255,255,.78);
  text-transform: uppercase;
}

.contact-left p {
  margin: 0;
}

.contact-panel {
  position: absolute;
  top: 50%;
  left: 58%;
  width: min(560px, 34vw);
  max-height: 72vh;
  transform: translateY(-44%);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px 16px 24px 0;
  scrollbar-width: none;
  overscroll-behavior: contain;
}

.contact-panel::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.contact-heading h1 {
  margin: 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(34px, 3.15vw, 52px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: .28em;
  color: rgba(255,255,255,.94);
}

.contact-copy {
  margin: clamp(34px, 4.4vh, 46px) 0 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(11px, .92vw, 14.5px);
  font-weight: 300;
  line-height: 1.78;
  letter-spacing: .035em;
  color: rgba(255,255,255,.73);
}

.contact-divider {
  width: 70px;
  height: 1px;
  margin-top: clamp(35px, 4.6vh, 48px);
  background: rgba(255,255,255,.72);
}

.contact-open,
.contact-submit,
.contact-close {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  color: rgba(255,255,255,.87);
}

.contact-open {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  font-size: clamp(11px, .88vw, 14px);
  font-weight: 300;
  letter-spacing: .28em;
  cursor: pointer;
  transition: opacity .25s ease, transform .25s ease;
}

.contact-open:hover {
  opacity: 1;
  transform: translateX(3px);
}

.contact-intro {
  opacity: 1;
  transition: opacity .26s ease;
}

.contact-intro.is-hidden {
  opacity: 0;
}

.contact-form-wrap {
  opacity: 0;
  transition: opacity .32s ease;
}

.contact-form-wrap.is-visible {
  opacity: 1;
}

.contact-form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.contact-form-heading h2 {
  margin: 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(25px, 2.2vw, 36px);
  font-weight: 200;
  letter-spacing: .24em;
  color: rgba(255,255,255,.92);
}

.contact-close {
  font-size: 23px;
  font-weight: 200;
  cursor: pointer;
  opacity: .70;
  transition: opacity .25s ease, transform .25s ease;
}

.contact-close:hover {
  opacity: 1;
  transform: translateX(-3px);
}

.contact-form {
  margin-top: 24px;
  opacity: 1;
  transition: opacity .26s ease;
}

.contact-form.is-sent {
  opacity: 0;
}

.contact-form label {
  display: block;
}

.contact-form label + label {
  margin-top: 26px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 10px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(8.5px, .66vw, 10.5px);
  font-weight: 300;
  letter-spacing: .28em;
  color: rgba(255,255,255,.58);
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  border-radius: 0;
  outline: none;
  background: transparent;
  padding: 6px 0 12px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  resize: none;
  transition: border-color .25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: rgba(255,255,255,.72);
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  font-size: clamp(10px, .82vw, 13px);
  font-weight: 300;
  letter-spacing: .28em;
  cursor: pointer;
  transition: opacity .25s ease, transform .25s ease;
}

.contact-submit:hover {
  opacity: 1;
  transform: translateX(3px);
}

.contact-success {
  margin: 42px 0 0;
  opacity: 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: .22em;
  color: rgba(255,255,255,.88);
  transition: opacity .35s ease;
}

.contact-success.is-visible {
  opacity: 1;
}

/* Fade inicial */
.contact-anim {
  opacity: 0;
  animation: contact-reveal 1.05s ease-out both;
  will-change: opacity;
}

.contact-anim--1 { animation-delay: .16s; }
.contact-anim--2 { animation-delay: .24s; }
.contact-anim--3 { animation-delay: .46s; }
.contact-anim--4 { animation-delay: .68s; }
.contact-anim--5 { animation-delay: .86s; }

@keyframes contact-reveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-anim {
    opacity: 1;
    animation: none;
  }

  .contact-intro,
  .contact-form-wrap,
  .contact-form,
  .contact-success {
    transition: none;
  }
}

@media (min-width: 761px) and (max-height: 790px) {
  .contact-panel {
    top: 49%;
    max-height: 74vh;
    transform: translateY(-42%);
  }

  .contact-copy {
    margin-top: 28px;
  }

  .contact-divider {
    margin-top: 30px;
  }

  .contact-left {
    bottom: 6.5%;
  }
}

@media (max-width: 760px) {
  .contact {
    height: 100svh;
    overflow: hidden;
  }

  .contact__bg {
    background-position: 28% center;
  }

  .contact__shade {
    background:
      linear-gradient(180deg,
        rgba(3,9,19,.05) 0%,
        rgba(3,9,19,.18) 34%,
        rgba(3,9,19,.88) 56%,
        rgba(3,9,19,.98) 100%);
  }

  .contact-left {
    display: none;
  }

  .contact-panel {
    top: 15vh;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: none;
    transform: none;
    padding: 42vh 24px 54px;
    box-sizing: border-box;
  }

  .contact-heading h1 {
    font-size: 30px;
    letter-spacing: .20em;
  }

  .contact-copy {
    font-size: 11px;
  }

  .contact-copy br {
    display: none;
  }

  .contact-form-heading h2 {
    font-size: 25px;
    letter-spacing: .18em;
  }

  .contact-success {
    font-size: 13px;
    letter-spacing: .16em;
  }
}


/* CONTACTO — ajuste del mensaje inferior izquierdo */
.contact-left {
  left: 2.8%;
  bottom: 5.2%;
  font-size: clamp(10px, .78vw, 13px);
  line-height: 1.95;
  letter-spacing: .33em;
}


/* =========================================================
   MOBILE V32 — NATURAL SCROLL / FIXED CINEMATIC BACKGROUND
   ========================================================= */

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

@media (max-width: 932px) {
  html, body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #050b16;
  }

  body {
    -webkit-overflow-scrolling: touch;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  /* Fixed top bar, much closer to the content */
  .site-header,
  .about-header,
  .process-header,
  .dimensions-header,
  .bodies-header,
  .energy-header,
  .phases-header,
  .merkaba-header,
  .origin-header,
  .contact-header {
    position: fixed !important;
    top: max(18px, env(safe-area-inset-top)) !important;
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
    padding: 0 !important;
    z-index: 80;
    align-items: center;
  }

  .brand img {
    width: 122px !important;
    height: auto;
  }

  .header-right {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 9px;
    color: rgba(255,255,255,.94);
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 32px;
    height: 1.5px;
    background: currentColor;
    border-radius: 999px;
    transition: transform .28s ease, width .28s ease;
  }

  .mobile-menu-toggle.is-open span:first-child {
    transform: translateY(5.25px) rotate(42deg);
  }

  .mobile-menu-toggle.is-open span:last-child {
    transform: translateY(-5.25px) rotate(-42deg);
  }

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 75;
    opacity: 0;
    visibility: hidden;
    background:
      radial-gradient(circle at 50% 22%, rgba(86,96,180,.14), transparent 34%),
      rgba(4,10,20,.985);
    transition: opacity .28s ease, visibility .28s ease;
  }

  .mobile-menu.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu__inner {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 92px 24px 42px;
  }

  .mobile-menu__nav {
    display: grid;
    gap: 19px;
    text-align: center;
  }

  .mobile-menu__link {
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: .23em;
    color: rgba(255,255,255,.76);
    text-decoration: none;
  }

  .mobile-menu__link.is-active {
    color: rgba(255,255,255,.98);
  }

  .mobile-menu__social {
    display: flex;
    gap: 22px;
    margin-top: 38px;
    color: rgba(255,255,255,.80);
  }

  .mobile-menu__social a {
    display: block;
    width: 23px;
    height: 23px;
    color: inherit;
  }

  .mobile-menu__social svg {
    width: 100%;
    height: 100%;
  }

  /* Main pages become naturally scrolling documents */
  .about,
  .process,
  .dimensions,
  .bodies,
  .energy,
  .phases,
  .merkaba,
  .origin,
  .contact {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 100svh !important;
    overflow: visible !important;
    isolation: isolate;
    background: #050b16;
  }

  /* Fixed mobile backgrounds */
  .about__bg,
  .process__bg,
  .dimensions__bg,
  .bodies__bg,
  .energy__bg,
  .phases__bg,
  .merkaba__bg,
  .origin__bg,
  .contact__bg {
    position: fixed !important;
    inset: 0 !important;
    z-index: -3 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    transform: none !important;
  }

  .about__bg { background-image: url("assets/mobile-que-es-bg.jpg") !important; }
  .process__bg { background-image: url("assets/mobile-el-proceso-bg.jpg") !important; }
  .dimensions__bg { background-image: url("assets/mobile-3d-4d-5d-bg.jpg") !important; }
  .bodies__bg { background-image: url("assets/mobile-12-cuerpos-bg.jpg") !important; }
  .energy__bg { background-image: url("assets/mobile-energia-fuego-bg.jpg") !important; }
  .phases__bg { background-image: url("assets/mobile-fases-bg.jpg") !important; }
  .merkaba__bg { background-image: url("assets/mobile-merkaba-bg.jpg") !important; }
  .origin__bg { background-image: url("assets/mobile-origen-bg.jpg") !important; }
  .contact__bg { background-image: url("assets/mobile-contacto-bg.jpg") !important; }

  .about__shade,
  .process__shade,
  .dimensions__shade,
  .bodies__shade,
  .energy__shade,
  .phases__shade,
  .merkaba__shade,
  .origin__shade,
  .contact__shade {
    position: fixed !important;
    inset: 0 !important;
    z-index: -2 !important;
    background:
      radial-gradient(ellipse at 50% 35%, rgba(3,9,19,.22) 0%, rgba(3,9,19,.40) 42%, rgba(3,9,19,.66) 100%),
      linear-gradient(180deg,
        rgba(3,9,19,.18) 0%,
        rgba(3,9,19,.30) 15%,
        rgba(3,9,19,.50) 36%,
        rgba(3,9,19,.66) 62%,
        rgba(3,9,19,.84) 100%) !important;
  }

  /* No internal scroll, no sticky/persiana behavior */
  .about-copy,
  .process-copy,
  .dimensions-copy,
  .bodies-copy,
  .energy-copy,
  .phases-copy,
  .merkaba-copy,
  .origin-copy,
  .contact-panel {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: min(100% - 40px, 430px) !important;
    max-width: 430px !important;
    max-height: none !important;
    transform: none !important;
    margin: 0 auto !important;
    padding: 114px 0 max(52px, calc(env(safe-area-inset-bottom) + 28px)) !important;
    overflow: visible !important;
    scrollbar-width: auto !important;
    color: rgba(255,255,255,.92);
    text-align: center;
    z-index: 10;
  }

  /* Titles close to header and part of the natural scroll */
  .about-copy h1,
  .process-heading,
  .dimensions-heading,
  .bodies-heading,
  .energy-heading,
  .phases-heading,
  .merkaba-heading,
  .origin-heading,
  .contact-heading {
    position: relative !important;
    top: auto !important;
    z-index: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    backdrop-filter: none !important;
    text-align: center !important;
  }

  .about-copy h1,
  .process-heading h1,
  .dimensions-heading h1,
  .bodies-heading h1,
  .energy-heading h1,
  .phases-heading h1,
  .merkaba-heading h1,
  .origin-heading h1,
  .contact-heading h1 {
    margin: 0 !important;
    font-size: clamp(27px, 7.9vw, 34px) !important;
    font-weight: 200 !important;
    line-height: 1.28 !important;
    letter-spacing: .18em !important;
    color: rgba(255,255,255,.96) !important;
    text-align: center !important;
    text-shadow: 0 2px 20px rgba(0,0,0,.62);
  }

  .process-heading p,
  .dimensions-heading p,
  .bodies-heading p,
  .energy-heading p,
  .phases-heading p,
  .merkaba-heading p,
  .origin-heading p {
    margin: 14px 0 0 !important;
    font-size: 10.5px !important;
    font-weight: 300 !important;
    line-height: 1.55 !important;
    letter-spacing: .24em !important;
    color: rgba(255,255,255,.78) !important;
    text-align: center !important;
  }

  .about-intro,
  .dimensions-intro,
  .bodies-intro,
  .energy-intro,
  .phases-intro,
  .merkaba-intro,
  .origin-intro,
  .contact-copy {
    max-width: 360px !important;
    margin: 28px auto 0 !important;
    font-size: 12.5px !important;
    line-height: 1.82 !important;
    letter-spacing: .025em !important;
    color: rgba(255,255,255,.82) !important;
    text-align: center !important;
    text-shadow: 0 1px 16px rgba(0,0,0,.58);
  }

  .about-intro br,
  .dimensions-intro br,
  .bodies-intro br,
  .energy-intro br,
  .phases-intro br,
  .merkaba-intro br,
  .origin-intro br,
  .contact-copy br,
  .energy-statement br,
  .merkaba-statement br {
    display: none !important;
  }

  .about-divider,
  .dimensions-divider,
  .bodies-divider,
  .energy-divider,
  .phases-divider,
  .merkaba-divider,
  .origin-divider,
  .contact-divider {
    width: 54px !important;
    height: 1px !important;
    margin: 30px auto 0 !important;
    background: rgba(255,255,255,.70) !important;
  }

  .about-words {
    display: grid !important;
    gap: 15px !important;
    margin: 34px 0 0 !important;
    font-size: 14px !important;
    line-height: 1.15 !important;
    letter-spacing: .23em !important;
    color: rgba(255,255,255,.90) !important;
    text-align: center !important;
  }

  /* Process map */
  .process-map {
    position: relative !important;
    display: grid !important;
    gap: 26px !important;
    max-width: 360px !important;
    margin: 30px auto 0 !important;
    padding: 0 0 0 34px !important;
  }

  .process-map::before {
    content: "" !important;
    position: absolute !important;
    left: 12px !important;
    top: 13px !important;
    bottom: 13px !important;
    width: 1px !important;
    background: rgba(255,255,255,.35) !important;
  }

  .process-item {
    position: relative !important;
    min-height: 54px !important;
    display: block !important;
    padding-left: 10px !important;
    text-align: left !important;
  }

  .process-node {
    position: absolute !important;
    left: -2px !important;
    top: 3px !important;
    width: 28px !important;
    height: 28px !important;
    border: 1px solid rgba(255,255,255,.72) !important;
    border-radius: 50% !important;
    background: rgba(5,12,25,.28) !important;
  }

  .process-node::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 5px !important;
    height: 5px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.94) !important;
    transform: translate(-50%, -50%) !important;
  }

  .process-item__copy {
    display: grid !important;
    gap: 7px !important;
  }

  .process-item strong {
    font-size: 13px !important;
    font-weight: 300 !important;
    line-height: 1.35 !important;
    letter-spacing: .18em !important;
    color: rgba(255,255,255,.94) !important;
  }

  .process-item small {
    font-size: 10.5px !important;
    line-height: 1.5 !important;
    letter-spacing: .16em !important;
    color: rgba(255,255,255,.68) !important;
  }

  .process-explore {
    display: inline-flex !important;
    gap: 14px !important;
    margin: 36px auto 0 !important;
    font-size: 14px !important;
    letter-spacing: .22em !important;
  }

  /* Content blocks */
  .dimensions-map,
  .energy-map,
  .phases-map,
  .merkaba-map,
  .origin-map {
    display: grid !important;
    gap: 30px !important;
    margin: 32px auto 0 !important;
    padding: 0 !important;
    max-width: 360px !important;
  }

  .dimensions-map::before,
  .energy-map::before,
  .phases-map::before,
  .merkaba-map::before,
  .origin-map::before,
  .bodies-column::before {
    display: none !important;
  }

  .dimensions-item,
  .energy-item,
  .phase-item,
  .merkaba-item,
  .origin-item,
  .body-item {
    display: block !important;
    margin: 0 !important;
    min-height: 0 !important;
    text-align: center !important;
  }

  .dimensions-node,
  .energy-node,
  .phase-node,
  .merkaba-node,
  .origin-node,
  .body-node {
    display: none !important;
  }

  .dimensions-item strong,
  .energy-item strong,
  .phase-item strong,
  .merkaba-item strong,
  .origin-item strong,
  .body-item strong {
    display: block !important;
    margin: 0 0 9px !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 1.35 !important;
    letter-spacing: .20em !important;
    color: rgba(255,255,255,.94) !important;
  }

  .dimensions-item p,
  .energy-item p,
  .phase-item p,
  .merkaba-item p,
  .origin-item p,
  .body-item p,
  .dimensions-closing p,
  .bodies-closing p,
  .energy-closing p,
  .phases-closing p,
  .merkaba-closing p,
  .origin-closing p {
    max-width: 360px !important;
    margin: 0 auto !important;
    font-size: 12.5px !important;
    line-height: 1.78 !important;
    letter-spacing: .025em !important;
    color: rgba(255,255,255,.80) !important;
    text-align: center !important;
  }

  .dimensions-closing,
  .bodies-closing,
  .energy-closing,
  .phases-closing,
  .merkaba-closing,
  .origin-closing {
    margin-top: 32px !important;
  }

  .dimensions-closing small {
    display: block !important;
    margin: 18px auto 0 !important;
    max-width: 360px !important;
    font-size: 10px !important;
    line-height: 1.65 !important;
    letter-spacing: .15em !important;
    color: rgba(255,255,255,.58) !important;
    text-align: center !important;
  }

  .energy-note,
  .merkaba-note {
    margin-top: 18px !important;
  }

  .energy-statement,
  .merkaba-statement {
    margin-top: 20px !important;
    font-size: 13px !important;
    line-height: 1.72 !important;
    letter-spacing: .07em !important;
    color: rgba(255,255,255,.94) !important;
  }

  .origin-note {
    margin-top: 18px !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
    letter-spacing: .04em !important;
    color: rgba(255,255,255,.96) !important;
  }

  /* 12 bodies in a single calm column */
  .bodies-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    max-width: 360px !important;
    margin: 32px auto 0 !important;
  }

  .bodies-column {
    display: grid !important;
    gap: 26px !important;
  }

  /* Previous / next */
  .subsection-nav {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 18px !important;
    max-width: 360px !important;
    margin: 38px auto 0 !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255,255,255,.16) !important;
  }

  .subsection-nav__back,
  .subsection-nav__next {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    font-size: 10.5px !important;
    line-height: 1.45 !important;
    letter-spacing: .16em !important;
    color: rgba(255,255,255,.82) !important;
  }

  .subsection-nav__next {
    text-align: right !important;
    justify-content: flex-end !important;
  }

  /* CONTACT */
  .contact-left {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: min(100% - 40px, 430px) !important;
    margin: -16px auto 0 !important;
    padding: 0 0 max(40px, calc(env(safe-area-inset-bottom) + 20px)) !important;
    font-size: 10px !important;
    line-height: 1.9 !important;
    letter-spacing: .22em !important;
    color: rgba(255,255,255,.68) !important;
    text-align: left !important;
    z-index: 10;
  }

  .contact-intro,
  .contact-form-wrap {
    max-width: 360px !important;
    margin: 0 auto !important;
  }

  .contact-open {
    margin: 30px auto 0 !important;
    font-size: 14px !important;
    letter-spacing: .22em !important;
  }

  .contact-form-heading {
    position: relative !important;
    margin: 0 0 24px !important;
    padding: 0 0 18px !important;
    border-bottom: 1px solid rgba(255,255,255,.16) !important;
    background: none !important;
  }

  .contact-form-heading h2 {
    font-size: 24px !important;
    letter-spacing: .20em !important;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px !important; /* prevents iOS auto-zoom */
  }

  .contact-submit {
    margin-top: 28px !important;
  }

  .contact-success {
    font-size: 13px !important;
    line-height: 1.7 !important;
    letter-spacing: .13em !important;
    text-align: center !important;
  }

  /* HOME: preserve the mobile direction already approved */
  .hero {
    height: 100svh !important;
    min-height: 100svh !important;
    overflow: hidden !important;
  }

  .hero__bg {
    position: absolute !important;
    inset: 0 !important;
    background-size: auto 103% !important;
    background-position: 29% 50% !important;
  }

  .hero__shade {
    background:
      linear-gradient(180deg,
        rgba(2,8,20,.43) 0%,
        rgba(2,8,20,.13) 24%,
        rgba(2,8,20,.10) 50%,
        rgba(2,8,20,.28) 74%,
        rgba(2,8,20,.60) 100%) !important;
  }

  .hero-copy {
    position: absolute !important;
    top: 31% !important;
    left: 50% !important;
    width: calc(100% - 42px) !important;
    transform: translateX(-50%) !important;
  }

  .hero-copy h1 {
    font-size: clamp(27px, 7.6vw, 32px) !important;
    line-height: 1.28 !important;
    letter-spacing: .18em !important;
  }

  .hero-copy__sub {
    margin-top: 30px !important;
    font-size: 8.2px !important;
    letter-spacing: .14em !important;
    white-space: nowrap;
  }

  .manifesto {
    left: 22px !important;
    bottom: max(28px, calc(env(safe-area-inset-bottom) + 18px)) !important;
    font-size: 8.6px !important;
    line-height: 1.85 !important;
    letter-spacing: .23em !important;
  }
}

@media (max-width: 380px) {
  .about-copy,
  .process-copy,
  .dimensions-copy,
  .bodies-copy,
  .energy-copy,
  .phases-copy,
  .merkaba-copy,
  .origin-copy,
  .contact-panel {
    width: calc(100% - 34px) !important;
    padding-top: 108px !important;
  }

  .brand img {
    width: 114px !important;
  }

  .about-copy h1,
  .process-heading h1,
  .dimensions-heading h1,
  .bodies-heading h1,
  .energy-heading h1,
  .phases-heading h1,
  .merkaba-heading h1,
  .origin-heading h1,
  .contact-heading h1 {
    letter-spacing: .15em !important;
  }
}


/* =========================================================
   MOBILE V33 — NAVIGATION + HARMONY REFINEMENTS
   ========================================================= */
.mobile-sequence-link { display: none; }
.mobile-origin-contact { display: none; }

@media (max-width: 932px) {
  .mobile-sequence-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: .22em;
    color: rgba(255,255,255,.88);
    text-decoration: none;
    text-transform: uppercase;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-sequence-link--home {
    position: absolute;
    right: 22px;
    bottom: max(30px, calc(env(safe-area-inset-bottom) + 20px));
    z-index: 15;
  }
  .mobile-sequence-link--content { margin: 38px auto 6px; }
  .mobile-origin-contact { display: inline-flex !important; }

  /* El Proceso — node/text alignment */
  .process-map {
    position: relative !important;
    display: grid !important;
    gap: 27px !important;
    max-width: 360px !important;
    margin: 31px auto 0 !important;
    padding: 0 !important;
  }
  .process-map::before {
    content: "" !important;
    position: absolute !important;
    left: 14px !important;
    top: 15px !important;
    bottom: 15px !important;
    width: 1px !important;
    background: rgba(255,255,255,.35) !important;
  }
  .process-item {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 29px minmax(0,1fr) !important;
    column-gap: 17px !important;
    align-items: start !important;
    min-height: 58px !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
  }
  .process-node {
    position: relative !important;
    left: auto !important;
    top: 0 !important;
    width: 29px !important;
    height: 29px !important;
    margin: 0 !important;
    z-index: 2 !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(255,255,255,.74) !important;
    border-radius: 50% !important;
    background: rgba(5,12,25,.42) !important;
  }
  .process-node::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 5px !important;
    height: 5px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.96) !important;
    transform: translate(-50%,-50%) !important;
  }
  .process-item__copy { display: block !important; min-width: 0 !important; padding-top: 1px !important; }
  .process-item strong {
    display: block !important;
    margin: 0 !important;
    font-size: 13px !important;
    font-weight: 300 !important;
    line-height: 1.42 !important;
    letter-spacing: .17em !important;
    color: rgba(255,255,255,.94) !important;
  }
  .process-item small {
    display: block !important;
    margin-top: 7px !important;
    font-size: 10.3px !important;
    line-height: 1.5 !important;
    letter-spacing: .14em !important;
    color: rgba(255,255,255,.67) !important;
  }

  /* Closing paragraphs — more breathing room */
  .bodies-closing,
  .energy-closing,
  .phases-closing,
  .merkaba-closing,
  .origin-closing { text-align: center !important; }

  .bodies-closing .bodies-divider,
  .energy-closing .energy-divider,
  .phases-closing .phases-divider,
  .merkaba-closing .merkaba-divider,
  .origin-closing .origin-divider { margin-bottom: 0 !important; }

  .bodies-closing > p,
  .phases-closing > p {
    max-width: 340px !important;
    margin: 24px auto 0 !important;
    text-align: center !important;
    line-height: 1.82 !important;
  }
  .energy-closing .energy-note,
  .merkaba-closing .merkaba-note,
  .origin-closing .origin-note {
    max-width: 340px !important;
    margin: 24px auto 0 !important;
    text-align: center !important;
    line-height: 1.82 !important;
  }
  .energy-closing .energy-statement,
  .merkaba-closing .merkaba-statement {
    max-width: 340px !important;
    margin: 25px auto 0 !important;
    text-align: center !important;
    line-height: 1.78 !important;
  }
  .origin-closing .origin-note {
    font-size: 14px !important;
    color: rgba(255,255,255,.96) !important;
  }

  .origin-copy .subsection-nav { align-items: center !important; }
  .origin-copy .mobile-origin-contact {
    font-size: 10.5px !important;
    letter-spacing: .18em !important;
  }

  /* Contact form state restoration */
  .contact-form-wrap[hidden],
  .contact-intro[hidden],
  .contact-success[hidden],
  .contact-form[hidden] { display: none !important; }

  .contact-close {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    flex: 0 0 38px !important;
    font-size: 22px !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width: 380px) {
  .mobile-sequence-link--home {
    right: 18px;
    font-size: 10px;
    letter-spacing: .18em;
  }
  .process-item { column-gap: 14px !important; }
  .process-item strong { letter-spacing: .14em !important; }
}


/* =========================================================
   MOBILE V34 — SPACING + JOURNEY BUTTON POSITION
   ========================================================= */

@media (max-width: 932px) {

  /* -------------------------------------------------------
     Journey buttons: centered, calm, with generous air
     ------------------------------------------------------- */

  .mobile-sequence-link--home,
  .mobile-sequence-link--content {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    display: flex !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* Inicio: directly below CONOCER · EXPLORAR · TRANSFORMAR */
  .hero-copy .mobile-sequence-link--home {
    margin-top: 54px !important;
    font-size: 11px !important;
    letter-spacing: .23em !important;
    color: rgba(255,255,255,.88) !important;
  }

  /* Qué es: below CONOCER / EXPLORAR / TRANSFORMAR */
  .about-copy .mobile-sequence-link--content {
    margin-top: 50px !important;
    margin-bottom: 4px !important;
    font-size: 11px !important;
    letter-spacing: .23em !important;
    color: rgba(255,255,255,.88) !important;
  }

  /* -------------------------------------------------------
     Closing separators: enforce real breathing room
     The spacing is padding, not margin, so it cannot collapse
     or be neutralized by earlier rules.
     ------------------------------------------------------- */

  .bodies-closing .bodies-divider,
  .energy-closing .energy-divider,
  .phases-closing .phases-divider,
  .merkaba-closing .merkaba-divider,
  .origin-closing .origin-divider {
    margin: 0 auto !important;
  }

  /* LOS 12 CUERPOS */
  .bodies-closing > p {
    margin: 0 auto !important;
    padding-top: 40px !important;
    max-width: 336px !important;
    text-align: center !important;
    line-height: 1.86 !important;
  }

  /* ENERGÍA Y FUEGO VIBRAL */
  .energy-closing .energy-note {
    margin: 0 auto !important;
    padding-top: 40px !important;
    max-width: 336px !important;
    text-align: center !important;
    line-height: 1.86 !important;
  }

  .energy-closing .energy-statement {
    margin: 0 auto !important;
    padding-top: 32px !important;
    max-width: 336px !important;
    text-align: center !important;
    line-height: 1.80 !important;
  }

  /* LAS FASES DEL PROCESO */
  .phases-closing > p {
    margin: 0 auto !important;
    padding-top: 40px !important;
    max-width: 336px !important;
    text-align: center !important;
    line-height: 1.86 !important;
  }

  /* MERKABA E INTEGRACIÓN ABSOLUTA */
  .merkaba-closing .merkaba-note {
    margin: 0 auto !important;
    padding-top: 40px !important;
    max-width: 336px !important;
    text-align: center !important;
    line-height: 1.86 !important;
  }

  .merkaba-closing .merkaba-statement {
    margin: 0 auto !important;
    padding-top: 32px !important;
    max-width: 336px !important;
    text-align: center !important;
    line-height: 1.80 !important;
  }

  /* DE DÓNDE VENIMOS Y HACIA DÓNDE VAMOS */
  .origin-closing .origin-note {
    margin: 0 auto !important;
    padding-top: 40px !important;
    max-width: 336px !important;
    text-align: center !important;
    line-height: 1.84 !important;
  }
}

@media (max-width: 380px) {
  .hero-copy .mobile-sequence-link--home {
    margin-top: 46px !important;
  }

  .about-copy .mobile-sequence-link--content {
    margin-top: 44px !important;
  }
}


/* =========================================================
   MOBILE V35 — FINAL ALIGNMENT PASS
   ========================================================= */

@media (max-width: 932px) {

  /* -------- Journey buttons: clearly centered with generous air -------- */

  .hero-copy .mobile-sequence-link--home {
    position: static !important;
    display: flex !important;
    width: max-content !important;
    max-width: 100% !important;
    margin: 68px auto 0 !important;
    padding: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    text-align: center !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    letter-spacing: .24em !important;
  }

  .about-copy .mobile-sequence-link--content {
    position: static !important;
    display: flex !important;
    width: max-content !important;
    max-width: 100% !important;
    margin: 64px auto 0 !important;
    padding: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    text-align: center !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    letter-spacing: .24em !important;
  }

  /* A little extra breathing room around the three-word block in Qué es */
  .about-words {
    margin-top: 40px !important;
  }

  /* -------- EL PROCESO: bullet and copy are separate columns -------- */

  .process-map {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    row-gap: 31px !important;
    width: min(100%, 360px) !important;
    margin: 34px auto 0 !important;
    padding: 0 !important;
  }

  .process-map::before {
    content: "" !important;
    position: absolute !important;
    left: 16px !important;
    top: 16px !important;
    bottom: 18px !important;
    width: 1px !important;
    background: rgba(255,255,255,.34) !important;
    z-index: 0 !important;
  }

  .process-item {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 33px minmax(0, 1fr) !important;
    column-gap: 21px !important;
    align-items: start !important;
    width: 100% !important;
    min-height: 62px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .process-node {
    grid-column: 1 !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 33px !important;
    height: 33px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    z-index: 2 !important;
    border: 1px solid rgba(255,255,255,.74) !important;
    border-radius: 50% !important;
    background: rgba(4,10,21,.70) !important;
  }

  .process-node::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 5px !important;
    height: 5px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.96) !important;
    transform: translate(-50%, -50%) !important;
  }

  .process-item__copy {
    grid-column: 2 !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 2px 0 0 !important;
    transform: none !important;
    text-align: left !important;
  }

  .process-item__copy strong {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 13px !important;
    line-height: 1.42 !important;
    letter-spacing: .16em !important;
    white-space: normal !important;
  }

  .process-item__copy small {
    display: block !important;
    width: 100% !important;
    margin: 8px 0 0 !important;
    padding: 0 !important;
    font-size: 10.2px !important;
    line-height: 1.55 !important;
    letter-spacing: .13em !important;
    white-space: normal !important;
  }

  /* -------- Closing paragraphs: a real fixed-height spacer -------- */

  .mobile-closing-space {
    display: block !important;
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    flex: 0 0 48px !important;
  }

  .bodies-closing .bodies-divider,
  .energy-closing .energy-divider,
  .phases-closing .phases-divider,
  .merkaba-closing .merkaba-divider,
  .origin-closing .origin-divider {
    margin: 0 auto !important;
  }

  .bodies-closing > p,
  .phases-closing > p,
  .energy-closing .energy-note,
  .merkaba-closing .merkaba-note,
  .origin-closing .origin-note {
    margin-top: 0 !important;
    padding-top: 0 !important;
    max-width: 332px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    line-height: 1.86 !important;
  }

  .energy-closing .energy-statement,
  .merkaba-closing .merkaba-statement {
    margin: 34px auto 0 !important;
    padding: 0 !important;
    max-width: 332px !important;
    text-align: center !important;
    line-height: 1.82 !important;
  }
}

@media (max-width: 380px) {
  .hero-copy .mobile-sequence-link--home {
    margin-top: 58px !important;
  }

  .about-copy .mobile-sequence-link--content {
    margin-top: 56px !important;
  }

  .process-item {
    grid-template-columns: 31px minmax(0, 1fr) !important;
    column-gap: 18px !important;
  }

  .process-node {
    width: 31px !important;
    height: 31px !important;
  }

  .process-map::before {
    left: 15px !important;
  }
}


/* =========================================================
   MOBILE V36 — FINAL MICRO-ADJUSTMENTS
   ========================================================= */

@media (max-width: 932px) {

  /* Inicio: bajar el botón para sacarlo de la convergencia de luz */
  .hero-copy .mobile-sequence-link--home {
    margin-top: 94px !important;
  }

  /* 3D · 4D · 5D: mismo aire final que el resto */
  .dimensions-closing .dimensions-divider {
    margin: 0 auto !important;
  }

  .dimensions-closing > p {
    margin: 0 auto !important;
    padding-top: 0 !important;
    max-width: 332px !important;
    text-align: center !important;
    line-height: 1.86 !important;
  }

  .dimensions-closing > small {
    max-width: 332px !important;
    margin: 30px auto 0 !important;
    text-align: center !important;
  }
}

@media (max-width: 380px) {
  .hero-copy .mobile-sequence-link--home {
    margin-top: 82px !important;
  }
}


/* =========================================================
   MOBILE V37 — HOME BUTTON + CONTACT BACK FIX
   ========================================================= */

@media (max-width: 932px) {
  /* Move QUÉ ES clearly below the light convergence */
  .hero-copy .mobile-sequence-link--home {
    margin-top: 124px !important;
    color: rgba(255,255,255,.94) !important;
    text-shadow:
      0 2px 12px rgba(0,0,0,.88),
      0 0 24px rgba(0,0,0,.58) !important;
  }

  /* Contact states are explicit: never leave an empty panel */
  #contactIntro[hidden],
  #contactFormWrap[hidden] {
    display: none !important;
  }

  #contactIntro:not([hidden]),
  #contactFormWrap:not([hidden]) {
    display: block !important;
  }
}

@media (max-width: 380px) {
  .hero-copy .mobile-sequence-link--home {
    margin-top: 110px !important;
  }
}


/* =========================================================
   MOBILE V38 — HOME CIRCULAR CTA + MERKABA TEXT FIX
   ========================================================= */

@media (max-width: 932px) {

  /* Circular QUÉ ES button placed in the darker lower zone */
  .hero > .mobile-sequence-link--home {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: max(132px, calc(env(safe-area-inset-bottom) + 116px)) !important;
    transform: translateX(-50%) !important;

    display: flex !important;
    width: 94px !important;
    height: 94px !important;
    margin: 0 !important;
    padding: 0 !important;

    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    border: 1px solid rgba(255,255,255,.72) !important;
    border-radius: 50% !important;
    background: rgba(3,8,18,.16) !important;

    font-size: 10.5px !important;
    font-weight: 300 !important;
    line-height: 1.2 !important;
    letter-spacing: .20em !important;
    color: rgba(255,255,255,.96) !important;
    text-shadow: 0 2px 14px rgba(0,0,0,.90) !important;
    box-shadow:
      0 0 0 1px rgba(255,255,255,.03) inset,
      0 8px 32px rgba(0,0,0,.16) !important;

    z-index: 20 !important;
    -webkit-tap-highlight-color: transparent;
  }

  .hero > .mobile-sequence-link--home span {
    display: block !important;
    padding-left: .20em !important; /* optical centering with letter spacing */
  }
}

@media (max-width: 380px) {
  .hero > .mobile-sequence-link--home {
    width: 88px !important;
    height: 88px !important;
    bottom: max(124px, calc(env(safe-area-inset-bottom) + 108px)) !important;
    font-size: 10px !important;
  }
}


/* =========================================================
   V39 — iPHONE HORIZONTAL / LANDSCAPE BACKGROUNDS
   ========================================================= */

/*
   En iOS Safari, los fondos `position: fixed` con z-index negativo
   pueden desaparecer al girar el dispositivo a horizontal.
   Para landscape usamos las imágenes panorámicas originales de
   escritorio y una pila de capas positiva, evitando ese fallo.
*/
@media (orientation: landscape) and (max-height: 600px) {

  .process__bg,
  .dimensions__bg,
  .bodies__bg,
  .energy__bg,
  .phases__bg,
  .merkaba__bg,
  .origin__bg,
  .contact__bg {
    position: fixed !important;
    inset: 0 !important;
    z-index: 0 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Recuperar exactamente los fondos panorámicos de escritorio */
  .process__bg {
    background-image: url("assets/el-proceso-bg.jpg") !important;
  }

  .dimensions__bg {
    background-image: url("assets/3d-4d-5d-bg.jpg") !important;
  }

  .bodies__bg {
    background-image: url("assets/12-cuerpos-bg.jpg") !important;
  }

  .energy__bg {
    background-image: url("assets/energia-fuego-vibral-bg.jpg") !important;
  }

  .phases__bg {
    background-image: url("assets/fases-proceso-bg.jpg") !important;
  }

  .merkaba__bg {
    background-image: url("assets/merkaba-integracion-bg.jpg") !important;
  }

  .origin__bg {
    background-image: url("assets/de-donde-venimos-bg.jpg") !important;
  }

  .contact__bg {
    background-image: url("assets/contacto-bg.jpg") !important;
  }

  .process__shade,
  .dimensions__shade,
  .bodies__shade,
  .energy__shade,
  .phases__shade,
  .merkaba__shade,
  .origin__shade,
  .contact__shade {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }

  /* En horizontal recuperamos el sombreado lateral propio del escritorio:
     imagen visible a la izquierda y zona de lectura más oscura a la derecha. */
  .process__shade,
  .dimensions__shade,
  .bodies__shade,
  .energy__shade,
  .phases__shade,
  .merkaba__shade,
  .origin__shade,
  .contact__shade {
    background:
      linear-gradient(90deg,
        rgba(3,9,19,.02) 0%,
        rgba(3,9,19,.05) 36%,
        rgba(3,9,19,.32) 56%,
        rgba(3,9,19,.78) 100%),
      linear-gradient(180deg,
        rgba(2,8,18,.12) 0%,
        rgba(2,8,18,.02) 48%,
        rgba(2,8,18,.18) 100%) !important;
  }

  /* Todo el contenido debe quedar claramente por encima de las capas visuales */
  .process-copy,
  .dimensions-copy,
  .bodies-copy,
  .energy-copy,
  .phases-copy,
  .merkaba-copy,
  .origin-copy,
  .contact-panel,
  .contact-left {
    position: relative !important;
    z-index: 10 !important;
  }

  .process-header,
  .dimensions-header,
  .bodies-header,
  .energy-header,
  .phases-header,
  .merkaba-header,
  .origin-header,
  .contact-header {
    z-index: 80 !important;
  }

  .process,
  .dimensions,
  .bodies,
  .energy,
  .phases,
  .merkaba,
  .origin,
  .contact {
    background: #050b16 !important;
  }
}


/* =========================================================
   V40 — iPHONE HORIZONTAL: SOLO SCROLL DEL TEXTO
   ========================================================= */

@media (orientation: landscape) and (max-height: 600px) {

  /* La página completa queda inmóvil */
  html,
  body {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    overflow: hidden !important;
    overscroll-behavior: none !important;
  }

  body {
    position: fixed !important;
    inset: 0 !important;
  }

  .about,
  .process,
  .dimensions,
  .bodies,
  .energy,
  .phases,
  .merkaba,
  .origin,
  .contact {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100svh !important;
    min-height: 100svh !important;
    overflow: hidden !important;
  }

  /* Fondo y sombreado permanecen completamente quietos */
  .about__bg,
  .process__bg,
  .dimensions__bg,
  .bodies__bg,
  .energy__bg,
  .phases__bg,
  .merkaba__bg,
  .origin__bg,
  .contact__bg,
  .about__shade,
  .process__shade,
  .dimensions__shade,
  .bodies__shade,
  .energy__shade,
  .phases__shade,
  .merkaba__shade,
  .origin__shade,
  .contact__shade {
    position: absolute !important;
    inset: 0 !important;
  }

  /* Cabecera fija */
  .about-header,
  .process-header,
  .dimensions-header,
  .bodies-header,
  .energy-header,
  .phases-header,
  .merkaba-header,
  .origin-header,
  .contact-header {
    position: absolute !important;
    top: max(14px, env(safe-area-inset-top)) !important;
    left: 20px !important;
    right: 20px !important;
    z-index: 80 !important;
  }

  /*
     El ÚNICO elemento desplazable es el bloque de texto.
     La caja ocupa la zona útil entre cabecera y borde inferior.
  */
  .about-copy,
  .process-copy,
  .dimensions-copy,
  .bodies-copy,
  .energy-copy,
  .phases-copy,
  .merkaba-copy,
  .origin-copy,
  .contact-panel {
    position: absolute !important;
    top: 78px !important;
    bottom: 14px !important;
    left: auto !important;
    right: 4.5vw !important;

    width: 45vw !important;
    max-width: 560px !important;
    height: auto !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 10px 18px 28px !important;
    transform: none !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    touch-action: pan-y !important;

    scrollbar-width: none !important;
    z-index: 12 !important;
  }

  .about-copy::-webkit-scrollbar,
  .process-copy::-webkit-scrollbar,
  .dimensions-copy::-webkit-scrollbar,
  .bodies-copy::-webkit-scrollbar,
  .energy-copy::-webkit-scrollbar,
  .phases-copy::-webkit-scrollbar,
  .merkaba-copy::-webkit-scrollbar,
  .origin-copy::-webkit-scrollbar,
  .contact-panel::-webkit-scrollbar {
    display: none !important;
  }

  /* En horizontal el texto vuelve a una lectura lateral más cercana al escritorio */
  .about-copy,
  .process-copy,
  .dimensions-copy,
  .bodies-copy,
  .energy-copy,
  .phases-copy,
  .merkaba-copy,
  .origin-copy,
  .contact-panel {
    text-align: left !important;
  }

  .about-copy h1,
  .process-heading,
  .dimensions-heading,
  .bodies-heading,
  .energy-heading,
  .phases-heading,
  .merkaba-heading,
  .origin-heading,
  .contact-heading {
    text-align: left !important;
  }

  .process-heading h1,
  .dimensions-heading h1,
  .bodies-heading h1,
  .energy-heading h1,
  .phases-heading h1,
  .merkaba-heading h1,
  .origin-heading h1,
  .contact-heading h1,
  .about-copy h1 {
    text-align: left !important;
  }

  .process-heading p,
  .dimensions-heading p,
  .bodies-heading p,
  .energy-heading p,
  .phases-heading p,
  .merkaba-heading p,
  .origin-heading p,
  .about-intro,
  .dimensions-intro,
  .bodies-intro,
  .energy-intro,
  .phases-intro,
  .merkaba-intro,
  .origin-intro,
  .contact-copy {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Mantener navegaciones dentro del propio panel desplazable */
  .subsection-nav {
    margin-bottom: 6px !important;
  }

  /* Contacto: el texto inferior no desplaza la página */
  .contact-left {
    position: absolute !important;
    left: 22px !important;
    bottom: 18px !important;
    width: 32vw !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 10 !important;
  }

  /* El formulario también se desplaza únicamente dentro del panel */
  .contact-form-wrap,
  .contact-intro {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }
}

/* iPhone horizontal muy bajo: aprovechar algo más de alto */
@media (orientation: landscape) and (max-height: 430px) {
  .about-copy,
  .process-copy,
  .dimensions-copy,
  .bodies-copy,
  .energy-copy,
  .phases-copy,
  .merkaba-copy,
  .origin-copy,
  .contact-panel {
    top: 68px !important;
    bottom: 10px !important;
  }
}


/* =========================================================
   V41 — INICIO EN iPHONE HORIZONTAL
   ========================================================= */

@media (orientation: landscape) and (max-height: 600px) {

  /*
     V40 bloquea html/body para que en las páginas interiores solo
     se desplace el texto. Inicio necesita un comportamiento distinto:
     recupera un scroll vertical natural y mantiene el fondo quieto.
  */
  html.home-page-root {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior-y: contain !important;
  }

  body.home-page {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    overscroll-behavior-y: contain !important;
    -webkit-overflow-scrolling: touch !important;
  }

  body.home-page .hero {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 700px !important;
    overflow: hidden !important;
  }

  /* Fondo fijo: al hacer scroll solo se desplaza el contenido de Inicio */
  body.home-page .hero__bg,
  body.home-page .hero__shade,
  body.home-page .hero__glow {
    position: fixed !important;
    inset: 0 !important;
  }

  body.home-page .hero__bg {
    background-size: cover !important;
    background-position: center 48% !important;
    transform: none !important;
  }

  /* Cabecera fija y bien alineada */
  body.home-page .site-header {
    position: fixed !important;
    top: max(14px, env(safe-area-inset-top)) !important;
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
    z-index: 80 !important;
  }

  /* Recolocación específica para la proporción horizontal del iPhone */
  body.home-page .hero-copy {
    position: absolute !important;
    top: 142px !important;
    left: 50% !important;
    width: min(72vw, 620px) !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
  }

  body.home-page .hero-copy h1 {
    font-size: clamp(28px, 5.3vw, 46px) !important;
    line-height: 1.15 !important;
    letter-spacing: .20em !important;
  }

  body.home-page .hero-copy__sub {
    margin-top: 26px !important;
    font-size: 9px !important;
    letter-spacing: .18em !important;
  }

  /* CTA circular: permanece centrado y claramente separado del bloque superior */
  body.home-page .hero > .mobile-sequence-link--home {
    position: absolute !important;
    left: 50% !important;
    top: 430px !important;
    bottom: auto !important;
    transform: translateX(-50%) !important;
    width: 88px !important;
    height: 88px !important;
  }

  body.home-page .manifesto {
    position: absolute !important;
    left: 22px !important;
    bottom: 26px !important;
    font-size: 9px !important;
    line-height: 1.8 !important;
    letter-spacing: .22em !important;
  }
}

@media (orientation: landscape) and (max-height: 430px) {
  body.home-page .hero {
    min-height: 660px !important;
  }

  body.home-page .hero-copy {
    top: 120px !important;
  }

  body.home-page .hero > .mobile-sequence-link--home {
    top: 392px !important;
  }
}


/* =========================================================
   V42 — TABLET LANDSCAPE LOGO CLEANUP
   ========================================================= */

/*
   Safari/iPadOS can render CSS drop-shadow on transparent PNGs as
   a soft ghosted second silhouette after an orientation change.
   Keep the VIBRAL logo completely crisp on tablets in landscape.
*/
@media (orientation: landscape) and (min-width: 768px) and (max-width: 1400px) {
  .brand,
  .brand img {
    filter: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
  }

  .brand img {
    opacity: 1 !important;
    transform: none !important;
    -webkit-transform: none !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    will-change: auto !important;
  }
}


/* =========================================================
   V46 — LOGO LIMPIO EN TODAS LAS VERSIONES
   ========================================================= */

/*
   Sin sombras, máscaras, parches ni capas auxiliares:
   el PNG real de VIBRAL queda simplemente superpuesto al fondo.
*/
.brand,
.brand img {
  text-shadow: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.brand img {
  opacity: .94 !important;
  transform: none !important;
  -webkit-transform: none !important;
  backface-visibility: visible !important;
  -webkit-backface-visibility: visible !important;
  will-change: auto !important;
}


/* =========================================================
   V47 — ES / EN LANGUAGE SWITCH
   ========================================================= */

.lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 0 0 auto;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 9px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: .16em;
  color: rgba(255,255,255,.40);
}

.lang-switch__link {
  position: relative;
  display: inline-block;
  padding: 4px 1px 6px;
  color: rgba(255,255,255,.42);
  transition: color .2s ease, opacity .2s ease;
}

.lang-switch__link:hover {
  color: rgba(255,255,255,.78);
}

.lang-switch__link.is-active {
  color: rgba(255,255,255,.88);
}

.lang-switch__link.is-active::after {
  content: "";
  position: absolute;
  left: 1px;
  right: calc(.16em + 1px);
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,.48);
}

.lang-switch__dot {
  color: rgba(255,255,255,.25);
}

.lang-switch--mobile {
  display: none;
}

/* English headings can be longer. Preserve the same visual weight
   while preventing awkward overflow. */
html.lang-en .energy-heading h1,
html.lang-en .merkaba-heading h1,
html.lang-en .origin-heading h1 {
  letter-spacing: .22em;
}

@media (max-width: 932px) {
  .lang-switch--desktop {
    display: none !important;
  }

  .lang-switch--mobile {
    display: flex;
    margin-top: 34px;
    font-size: 11px;
    gap: 10px;
  }

  .lang-switch--mobile + .mobile-menu__social {
    margin-top: 24px;
  }

  html.lang-en .process-heading h1,
  html.lang-en .dimensions-heading h1,
  html.lang-en .bodies-heading h1,
  html.lang-en .energy-heading h1,
  html.lang-en .phases-heading h1,
  html.lang-en .merkaba-heading h1,
  html.lang-en .origin-heading h1,
  html.lang-en .contact-heading h1 {
    letter-spacing: .14em !important;
  }
}

@media (orientation: landscape) and (max-height: 600px) {
  html.lang-en .process-heading h1,
  html.lang-en .dimensions-heading h1,
  html.lang-en .bodies-heading h1,
  html.lang-en .energy-heading h1,
  html.lang-en .phases-heading h1,
  html.lang-en .merkaba-heading h1,
  html.lang-en .origin-heading h1,
  html.lang-en .contact-heading h1 {
    letter-spacing: .12em !important;
  }
}


/* =========================================================
   V48 — CONTACTO EN VERTICAL (MÓVIL + TABLET)
   ========================================================= */

@media (orientation: portrait) and (max-width: 932px) {

  /*
     Recuperamos la frase inferior izquierda en vertical.
     Debe comportarse como en escritorio: formar parte de la composición
     de Contacto y quedar anclada abajo a la izquierda.
  */
  .contact {
    position: relative !important;
  }

  .contact-left {
    display: block !important;
    position: absolute !important;
    top: auto !important;
    right: auto !important;
    left: clamp(22px, 4vw, 34px) !important;
    bottom: max(26px, calc(env(safe-area-inset-bottom) + 18px)) !important;

    width: min(46vw, 280px) !important;
    margin: 0 !important;
    padding: 0 !important;

    font-size: clamp(9px, 1.45vw, 12px) !important;
    line-height: 1.9 !important;
    letter-spacing: .24em !important;
    color: rgba(255,255,255,.72) !important;
    text-align: left !important;

    z-index: 18 !important;
    pointer-events: none !important;
  }

  .contact-left p {
    margin: 0 !important;
  }

  /*
     Dejamos una reserva inferior en el panel para que, en pantallas bajas,
     el texto principal o el formulario no invadan la frase.
  */
  .contact-panel {
    padding-bottom: max(150px, calc(env(safe-area-inset-bottom) + 132px)) !important;
  }
}

/* Móvil estrecho: la frase sigue visible pero más compacta. */
@media (orientation: portrait) and (max-width: 600px) {
  .contact-left {
    left: 22px !important;
    bottom: max(24px, calc(env(safe-area-inset-bottom) + 16px)) !important;
    width: 210px !important;
    font-size: 9px !important;
    line-height: 1.85 !important;
    letter-spacing: .20em !important;
  }

  .contact-panel {
    padding-bottom: max(138px, calc(env(safe-area-inset-bottom) + 120px)) !important;
  }
}
