@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi/Satoshi-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Portrait";
  src: url("../fonts/portrait/Portrait-Heavy.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #17172b;
  --night: #231b19;
  --olive: #42533f;
  --leaf: #6d8060;
  --gold: #c9b16a;
  --paper: #f3efe6;
  --paper-deep: #e2d8c8;
  --white: #ffffff;
  --muted: #cfc8b9;
  --shadow: 0 24px 70px rgba(20, 13, 10, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #231b19;
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 132px 1fr auto;
  align-items: center;
  width: 100%;
  padding: 20px 42px;
  color: var(--white);
  transition: background 180ms ease, padding 180ms ease;
}

.site-header.is-solid {
  padding-block: 12px;
  background: rgba(24, 15, 13, 0.88);
  backdrop-filter: blur(14px);
}

.brand-mark {
  width: 108px;
  transition: width 180ms ease;
}

.site-header.is-solid .brand-mark {
  width: 82px;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.62);
  padding: 12px 18px;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  min-height: 100vh;
  padding: 34px 0 28px;
  background: #231b19;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-isotype {
  width: clamp(34px, 3.3vw, 58px);
  margin-bottom: 30px;
}

.binder-stage {
  position: relative;
  width: min(1640px, 88vw);
  aspect-ratio: 1 / 1;
}

.binder-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.binder-photo {
  position: absolute;
  top: 6.05%;
  left: 13.2%;
  width: 73.6%;
  height: 40.1%;
  overflow: hidden;
  background: #101010;
}

.binder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(12, 12, 10, 0.33), rgba(12, 12, 10, 0.36));
  pointer-events: none;
}

.binder-photo > img,
.binder-photo > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-kicker {
  position: absolute;
  z-index: 2;
  top: 50.4%;
  max-width: 360px;
  margin: 0;
  color: var(--white);
  font-size: clamp(0.42rem, 0.62vw, 0.72rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-kicker-left {
  left: 5.1%;
}

.hero-kicker-right {
  right: 3.6%;
  text-align: right;
}

.hero-center {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  max-width: none;
  padding: 0 20px;
  color: var(--white);
  text-align: center;
}

.hero-logo {
  width: clamp(118px, 12.5vw, 210px);
  margin-bottom: 8px;
}

.hero h1:not(.sr-only) {
  margin: 0;
  color: var(--gold);
  font-family: "Portrait", Georgia, serif;
  font-size: 2rem;
  line-height: 1.05;
}

.hero p {
  margin: 4px 0 26px;
  font-size: clamp(0.52rem, 0.68vw, 0.82rem);
}

.hero-center p {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

.hero-center p.hero-subtext {
  color: var(--white);
  font-style: normal;
  font-weight: 400;
  max-width: 300px;
  margin-inline: auto;
}

.hero .outline-button {
  min-height: 38px;
  padding: 0 24px;
  font-size: clamp(0.42rem, 0.56vw, 0.68rem);
}

.binder-intro {
  position: absolute;
  z-index: 2;
  top: 55.5%;
  left: 50%;
  width: min(1340px, 82%);
  transform: translateX(-50%);
  color: var(--ink);
  text-align: center;
}

.binder-intro .binder-award-text {
  margin: 0 0 10px;
  font-size: clamp(9px, 0.75vw, 12.5px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.12em;
  color: #23234C;
  text-transform: uppercase;
}

.binder-award-ribbon {
  display: block;
  width: 95%;
  max-width: 600px; /* Reducido para que no sea tan intrusivo en desktop */
  height: auto;
  margin: 6px auto 10px;
  padding: 1% 0;
}

.binder-authorship-title {
  margin: 32px 0 10px; /* Reducido para subir el contenido */
  font-size: clamp(11px, 0.95vw, 16px);
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #23234C;
}

.binder-intro .binder-authorship-text {
  max-width: 1150px; /* Reducido para mayor elegancia y consistencia con logos */
  margin: 0 auto 10px;
  font-size: clamp(9px, 0.75vw, 12.5px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #23234C;
}

.binder-intro .binder-authorship-italic {
  max-width: 700px;
  margin: 35px auto 0;
  font-size: clamp(8.5px, 0.7vw, 11.5px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #23234C;
}

.binder-gallery {
  position: absolute;
  z-index: 2;
  top: 72.6%;
  left: 11.3%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.45%;
  width: 77.4%;
}

.binder-gallery.is-three-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2%;
  top: 80.5%;
}

.binder-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5.95;
  object-fit: cover;
}

.binder-gallery.is-three-cols img {
  aspect-ratio: 16 / 9;
}

.binder-permanence-title {
  position: absolute;
  z-index: 2;
  top: 95.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  font-size: clamp(0.72rem, 0.95vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-align: center;
}

.js-ready .binder-permanence-title[data-reveal] {
  transform: translate(-50%, 30px);
}

.js-ready .binder-permanence-title[data-reveal].revealed {
  transform: translate(-50%, 0) scale(1);
}

.outline-button,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid currentColor;
  padding: 0 26px;
  color: var(--white);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.outline-button.is-gold {
  color: var(--gold);
  border-color: var(--gold);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.outline-button.is-gold:hover {
  background: var(--gold);
  color: var(--night);
  border-color: var(--gold);
}

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

#concept,
#wellness,
#location,
#lead {
  scroll-margin-top: 24px;
}

.paper-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)),
    url("../img/paper-jungle.webp") center/cover,
    var(--paper);
}

.intro-section {
  padding: 96px 0 112px;
}

.center-copy {
  text-align: center;
}

h2,
h3,
p {
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 1.42rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.micro-copy {
  max-width: 260px;
  margin: 24px auto 0;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.emphasis {
  margin: 24px 0 0;
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  width: min(1060px, calc(100% - 40px));
  margin: 86px auto 0;
}

.image-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.wellness-section {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)),
    url("../img/background_section_2.webp") center/cover,
    #f7f5ef;
  overflow: hidden;
}

.wellness-box {
  position: relative;
  width: min(1360px, 92vw);
  min-height: clamp(620px, 48vw, 720px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wellness-copy {
  position: absolute;
  z-index: 10;
  top: 7%;
  left: 8%;
  width: 100%;
  max-width: 420px;
  text-align: right;
  color: var(--ink);
}

.wellness-copy h2 {
  font-size: clamp(0.9rem, 1.15vw, 1.15rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.wellness-copy p {
  font-size: clamp(0.6rem, 0.7vw, 0.7vw);
  line-height: 1.6;
  margin-top: 14px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.sketch-layer {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  right: -8%;
  left: auto;
  margin: auto;
  height: 130%;
  width: auto;
  max-width: none;
  opacity: 0.92;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.dark-image-section {
  position: relative;
  padding: 0;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)),
    url("../img/background_section_2.webp") center/cover,
    #f7f5ef;
  z-index: 5;
}

.location-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: #f7f5ef;
}

.location-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 10, 8, 0.12), rgba(0, 10, 8, 0.18));
  pointer-events: none;
  z-index: 3;
}

.slider-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.location-copy {
  position: absolute;
  z-index: 4;
  top: 20.4%;
  left: 50%;
  width: min(500px, 72%);
  margin: 0;
  transform: translateX(-50%);
  color: var(--gold);
  text-align: center;
}

.location-copy h2 {
  font-size: clamp(0.78rem, 1.05vw, 0.98rem);
  letter-spacing: 0.14em;
}

.location-copy p {
  margin-top: 12px;
  color: var(--gold);
  font-size: clamp(0.65rem, 0.85vw, 0.9rem);
  letter-spacing: 0.05em;
  text-transform: none;
  line-height: 1.6;
}

.location-grid {
  position: absolute;
  bottom: -171px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: min(1004px, calc(100% - 132px));
  margin: 0;
}

.image-tile {
  position: relative;
  overflow: hidden;
  min-height: 342px;
  margin: 0;
  background: var(--ink);
}

.image-tile img {
  width: 100%;
  height: 100%;
  min-height: 342px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 16, 16, 0.08), rgba(0, 16, 16, 0.28));
  pointer-events: none;
}

.image-tile:hover img {
  transform: scale(1.04);
}

.image-tile h3 {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 48px);
  margin: 0;
  color: var(--white);
  font-size: clamp(0.5rem, 0.65vw, 0.62rem);
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.health-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(180px, 14vw, 240px);
  padding-bottom: clamp(100px, 8vw, 140px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)),
    url("../img/background_section_2.webp") center/cover,
    #f7f5ef;
}

.health-box {
  position: relative;
  isolation: isolate;
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto;
  overflow: visible;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.health-top-row {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 60px;
  align-items: center;
}

.health-bottom-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.health-sketch-wrapper {
  width: 100%;
  mix-blend-mode: multiply;
  opacity: 0.92;
}

.health-sketch-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.health-copy {
  color: var(--ink);
  text-align: right;
}

.health-copy h2 {
  font-size: clamp(1.1rem, 1.25vw, 1.35rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.health-copy p {
  font-size: clamp(0.48rem, 0.62vw, 0.62rem);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.health-copy p.health-desc {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: clamp(0.85rem, 0.8vw, 0.95rem);
  line-height: 1.6;
  margin-top: 18px;
  color: var(--ink);
}

.health-copy p.health-sub {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(0.9rem, 0.95vw, 1.1rem);
  letter-spacing: 0.08em;
  margin-top: 32px;
}

.health-community-copy {
  text-align: right;
  max-width: 380px;
  margin-left: auto;
}

.health-community-copy h3 {
  font-size: clamp(0.74rem, 1.02vw, 0.96rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.health-community-copy p {
  font-size: clamp(0.48rem, 0.62vw, 0.62rem);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-top: 18px;
  line-height: 1.5;
  color: var(--ink);
}

.health-media-gallery {
  display: flex;
  gap: 32px;
  justify-content: flex-end;
  width: 100%;
}

.health-media-main,
.health-media-small {
  width: calc(50% - 16px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
}


/* ==========================================================================
   TIME SECTION & POLAROID STACK LAYOUT
   ========================================================================== */
.time-section {
  position: relative;
  overflow: hidden;
  padding: clamp(140px, 11vw, 190px) 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)),
    url("../img/background_section_2.webp") center/cover,
    #f7f5ef;
}

.time-box {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  gap: 50px;
  align-items: center;
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto;
}

.time-left-col {
  text-align: right;
}

.time-left-col h2 {
  font-size: clamp(0.74rem, 1.02vw, 0.96rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.time-left-col p {
  font-size: clamp(0.48rem, 0.62vw, 0.62rem);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--ink);
  margin-top: 24px;
}

.time-center-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.polaroid-stack {
  position: relative;
  width: 420px;
  height: 480px;
  margin: 0 auto;
}

.polaroid-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
  will-change: transform, opacity;
}

.polaroid-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Apilamiento base según el orden en el DOM (del fondo al frente) */
.polaroid-card:nth-child(1) {
  z-index: 1;
  transform: translate(-28px, -12px) rotate(-7deg);
}

.polaroid-card:nth-child(2) {
  z-index: 2;
  transform: translate(-14px, 6px) rotate(-3deg);
}

.polaroid-card:nth-child(3) {
  z-index: 3;
  transform: translate(24px, -8px) rotate(5deg);
}

.polaroid-card:nth-child(4) {
  z-index: 4;
  transform: translate(0, 0) rotate(1deg);
}

.time-right-col {
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.time-right-col p {
  font-size: clamp(0.48rem, 0.62vw, 0.62rem);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
}

.time-right-bottom-title {
  font-size: clamp(0.74rem, 1.02vw, 0.96rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin: 0;
}

.time-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  width: 100%;
}

.explore-cta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.explore-cta:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.explore-cta .cta-text {
  font-size: clamp(0.72rem, 0.95vw, 0.9vw);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.explore-cta .cta-line {
  display: inline-block;
  width: 1px;
  height: 24px;
  background-color: var(--ink);
  opacity: 0.7;
}


.lead-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 6vw;
  align-items: center;
  padding: 0 7vw 120px 7vw;
  color: var(--white);
  background: #231b19;
}



.lead-media {
  position: relative;
  z-index: 5;
  margin-top: -160px;
  width: 100%;
  height: auto;
}

.lead-media img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 854px;
  height: auto;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lead-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: none;
  padding: 120px 0 0 0;
}

.lead-panel h2 {
  font-family: "Satoshi", Arial, sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.7rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.35;
  letter-spacing: 0.08em;
  max-width: 680px;
  margin: 0 auto;
}

.lead-panel p {
  font-family: "Satoshi", Arial, sans-serif;
  font-size: clamp(0.7rem, 0.85vw, 0.85rem);
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
  letter-spacing: 0.1em;
  max-width: 600px;
  margin: 18px auto 0;
}

.lead-form {
  position: relative;
  display: grid;
  gap: 28px;
  margin-top: 54px;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  padding-bottom: 40px;
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-style: italic;
  text-align: left;
}

.lead-form input {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid rgba(201, 177, 106, 0.4);
  color: var(--white);
  background: transparent;
  outline: 0;
  transition: border-color 0.3s ease;
}

.lead-form input:focus {
  border-bottom-color: var(--gold);
}

.lead-form button {
  justify-self: center;
  margin-top: 36px;
  color: var(--white);
  background: transparent;
  border-left: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  border-top: none;
  border-bottom: none;
  padding: 12px 36px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: opacity 0.3s ease, color 0.3s ease;
  z-index: 10;
  position: relative;
}

.lead-form button:hover {
  opacity: 0.85;
  color: var(--gold);
}

.lead-form button[disabled] {
  cursor: wait;
  opacity: 0.64;
}

.form-status {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 24px;
  margin: 0;
  color: var(--gold);
  font-size: 0.9rem;
  text-align: center;
}

.legacy-section {
  padding: clamp(100px, 9vw, 150px) 7vw;
}

.legacy-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(30px, 4vw, 50px);
  width: min(1440px, 100%);
  margin: 0 auto;
  align-items: center;
}

/* Columna Izquierda: Logotipos y Carrusel */
.legacy-left-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}

.legacy-brand-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.author-tagline {
  font-size: clamp(10px, 0.72vw, 12px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.75;
  font-weight: 500;
}

.legacy-pininfarina-logo {
  width: min(240px, 85%);
  height: auto;
}

.legacy-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding-block: 28px;
  margin-block: -28px;
}

.carousel-viewport::before,
.carousel-viewport::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background-color: rgba(35, 35, 76, 0.22);
  z-index: 10;
  pointer-events: none;
}

.carousel-viewport::before {
  left: 0;
}

.carousel-viewport::after {
  right: 0;
}

.carousel-track {
  display: flex;
  gap: 16px;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  position: relative;
  flex: 0 0 calc((100% - 32px) / 3); /* Tres imágenes a la vez en desktop */
  transition: opacity 0.3s ease;
  color: inherit;
  text-decoration: none;
}

.carousel-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1; /* Proporción 1:1 sugerida para impacto visual */
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.carousel-hover-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(23, 23, 43, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
  pointer-events: none;
}

.hover-cta-text {
  color: #ffffff;
  font-size: clamp(10px, 0.72vw, 12px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0);
  padding-bottom: 4px;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(12px);
}

.carousel-item:hover .carousel-hover-overlay {
  opacity: 1;
}

.carousel-item:hover .hover-cta-text {
  transform: translateY(0);
  border-bottom-color: rgba(255, 255, 255, 0.85);
}

.carousel-item:hover .carousel-image-wrapper {
  transform: translateY(-4px);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-item-title {
  font-size: clamp(10px, 0.75vw, 13px);
  font-style: italic;
  color: var(--ink);
  margin: 0;
  text-align: center; /* Centrado para coherencia visual */
  letter-spacing: 0.02em;
}

.carousel-arrow {
  background: transparent;
  border: none;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  opacity: 0.5;
  transition: opacity 0.3s ease, color 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  opacity: 1;
  color: #0099ff;
  transform: scale(1.1);
}

.carousel-arrow svg {
  display: block;
}

/* Columna Derecha: Contenido del Módulo */
.legacy-right-col {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.5vw, 40px);
  color: #23234C;
}

.legacy-text-main {
  font-size: clamp(14px, 1.25vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #23234C;
  margin: 0;
}

.legacy-text-desc {
  font-size: clamp(11.5px, 0.85vw, 13.5px);
  font-style: normal;
  line-height: 1.65;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #5c5b75;
  margin: 0;
}

.legacy-footer-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: clamp(6px, 0.5vw, 12px);
}

.legacy-text-quote,
.legacy-text-footer {
  font-size: clamp(10px, 0.72vw, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #23234C;
  margin: 0;
}

/* ==========================================================================
   NUEVO SITE FOOTER PREMIUM
   ========================================================================== */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 90px 7vw 80px;
  color: var(--white);
  /* Fondo con la imagen de boceto integrada armoniosamente con el color #16152B */
  background:
    linear-gradient(rgba(22, 21, 43, 0.88), rgba(22, 21, 43, 0.94)),
    url("../img/hf_20260507_194404_b5306de9-4110-4528-bb43-bebc9f91a7e8 1.webp") center 40%/cover,
    #16152B;
  border-top: 1px solid rgba(201, 177, 106, 0.15);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.6fr 2fr;
  gap: 50px;
  align-items: start;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* Columna Logo */
.footer-col-logo {
  align-items: flex-start;
}

.footer-logo-img {
  width: clamp(150px, 12vw, 195px);
  height: auto;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
  opacity: 1;
}

/* Columna Aviso Legal */
.footer-col-notice {
  gap: 16px;
}

.footer-notice-title {
  margin: 0;
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-notice-text {
  margin: 0;
  font-size: clamp(10px, 0.72vw, 11px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}

/* Columna Info (Central) */
.footer-col-info {
  gap: 18px;
  padding-right: 20px;
}

.footer-tagline {
  margin: 0;
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-description {
  margin: 0;
  font-size: clamp(11.5px, 0.85vw, 13px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.65);
}

/* Columna Contacto */
.footer-col-contact {
  gap: 20px;
}

.footer-contact-title {
  margin: 0;
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-text {
  font-size: clamp(11.5px, 0.85vw, 13px);
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.75);
  font-style: normal;
}

.contact-link {
  transition: color 0.25s ease;
  position: relative;
}

.contact-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.25s ease;
}

.contact-link:hover {
  color: var(--gold);
}

.contact-link:hover::after {
  width: 100%;
}

/* Redes Sociales */
.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-socials a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 104px 1fr auto;
    padding: 16px 22px;
  }

  .nav-links {
    gap: 18px;
  }

  .hero {
    padding-top: 28px;
  }

  .binder-stage {
    width: 96vw;
  }

  .image-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wellness-section,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .wellness-box {
    min-height: 70vw;
  }

  .wellness-copy {
    max-width: 360px;
  }

  .sketch-layer {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 93vw;
  }

  .health-section {
    padding-top: clamp(100px, 10vw, 160px);
    padding-bottom: clamp(60px, 6vw, 100px);
  }

  .health-box {
    gap: 48px;
  }

  .health-top-row {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
  }

  .health-bottom-row {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }

  .health-media-gallery {
    gap: 20px;
  }

  .health-media-main,
  .health-media-small {
    width: calc(50% - 10px);
  }

  .location-hero {
    min-height: 520px;
  }

  .location-grid {
    width: min(900px, calc(100% - 44px));
  }

  .lead-media img {
    min-height: 420px;
  }

  .legacy-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .legacy-right-col {
    gap: 24px;
  }

  .carousel-item {
    flex: 0 0 calc((100% - 16px) / 2); /* 2 ítems en tablet */
  }

  .site-footer {
    padding: 70px 5vw 60px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-col-logo {
    align-items: center;
  }

  .footer-col-info {
    text-align: left;
    padding-right: 0;
    max-width: 550px;
    margin: 0;
  }

  .footer-col-contact {
    align-items: flex-start;
    text-align: left;
  }

  .footer-col-notice {
    align-items: flex-start;
    text-align: left;
    max-width: 550px;
    margin: 0;
  }

  .footer-contact-list {
    align-items: flex-start;
  }

  .footer-contact-list li {
    justify-content: flex-start;
  }

  .footer-socials {
    justify-content: flex-start;
    margin-top: 15px;
  }

  /* Responsive Time Section (Tablets) */
  .time-section {
    padding: clamp(80px, 8vw, 120px) 0;
  }

  .time-box {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .time-left-col {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
  }

  .time-right-col {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    align-items: center;
  }

  .time-right-col p {
    margin-bottom: 16px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand-mark {
    width: 86px;
  }

  .site-header.is-solid .brand-mark {
    width: 74px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  #concept,
  #wellness,
  #location,
  #lead {
    scroll-margin-top: 24px;
  }

  .hero {
    min-height: auto;
    padding: 30px 0 50px;
    background: #231b19;
    overflow: visible;
  }

  .binder-stage {
    width: 92%;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: auto;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .binder-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .binder-bg img {
    width: 100%;
    height: 100%;
    object-fit: fill; /* Para que el marco del binder cubra todo el alto dinámico */
  }

  .binder-photo {
    position: relative;
    z-index: 2;
    width: 91%;
    aspect-ratio: 4 / 9;
    margin: 6% auto 0;
    left: auto;
    top: auto;
    height: auto;
  }

  .hero-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    gap: 0;
    z-index: 5;
  }

  .hero-logo {
    width: min(150px, 42vw);
    margin-bottom: 28px;
  }

  .hero-center p.hero-kicker {
    display: block !important;
    position: static !important;
    font-size: clamp(10.5px, 3.2vw, 12.5px) !important;
    letter-spacing: 0.12em !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    text-align: center !important;
    line-height: 1.4 !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .hero-center p.hero-kicker-left { margin-bottom: 18px !important; }
  .hero-center p.hero-kicker-right { margin-top: 18px !important; }

  .hero-center p.hero-subtext {
    max-width: 250px !important;
    font-size: clamp(12px, 3.8vw, 14.5px) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    color: var(--white) !important;
    text-align: center !important;
    font-weight: 400 !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .hero-center .outline-button {
    margin-top: 36px;
    min-height: 48px;
    padding: 0 32px;
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  /* Reactivar y ajustar elementos inferiores del binder */
  .binder-intro {
    position: relative;
    z-index: 3;
    width: 90% !important;
    margin: 210px auto 0 !important; /* Aumentado de 180px para dar más aire */
    top: auto;
    left: auto;
    transform: none;
    padding-bottom: 20px;
  }

  .binder-intro .binder-award-text {
    font-size: 10px !important;
    margin-bottom: 20px !important;
    letter-spacing: 0.12em !important;
  }

  .binder-intro .binder-award-ribbon {
    width: 100% !important;
    max-width: none !important;
    margin: 20px auto 40px !important;
    padding: 0 !important;
  }

  .binder-authorship-title {
    margin-top: 60px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    color: #23234C;
  }

  .binder-intro .binder-authorship-text {
    font-size: 11.5px !important;
    line-height: 1.7 !important;
    margin-bottom: 25px !important;
    max-width: 100% !important;
    width: 100% !important;
    text-align: center !important;
  }

  .binder-intro .binder-authorship-italic {
    font-size: 11px !important;
    font-weight: 900 !important; /* Negrita muy marcada como en la referencia */
    font-style: italic !important;
    margin-top: 35px !important;
    line-height: 1.5 !important;
    max-width: 95% !important;
    margin-inline: auto !important;
  }

  .binder-gallery.is-three-cols {
    display: block !important;
    position: relative;
    z-index: 3;
    width: 90% !important;
    margin: 40px auto 40px !important;
    left: auto !important; /* Resetear el valor de desktop para permitir el centrado con margin: auto */
    aspect-ratio: 16 / 9; /* Mantener altura para las imágenes absolutas */
    overflow: hidden;
  }

  .binder-gallery.is-three-cols img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 0;
    transition: opacity 1.2s ease-in-out; /* Transición suave de Fade In */
  }

  .binder-gallery.is-three-cols img.active {
    opacity: 1;
    z-index: 2;
  }

  .binder-permanence-title {
    position: relative;
    z-index: 3;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 100px;
    text-align: center;
    top: auto;
    font-size: 11px !important; /* Reducir para que quepa en una línea */
    white-space: nowrap; /* Forzar una sola línea */
    letter-spacing: 0.1em;
  }

  .hero h1 { font-size: 1.6rem; }

  .intro-section,
  .legacy-section {
    padding-block: 72px;
    padding-inline: 20px;
    overflow-x: hidden;
  }

  .image-strip,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .image-strip img {
    aspect-ratio: 4 / 3;
  }

  .wellness-section {
    padding: 60px 0 0;
  }

  .wellness-box {
    flex-direction: column;
    min-height: auto;
    width: 100%;
    padding: 0;
    gap: 16px;
  }

  .wellness-copy {
    text-align: right;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
  }

  .sketch-layer {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 160vw;
    margin-left: -30vw;
    margin-top: 184px;
    margin-bottom: -20px;
  }

  .dark-image-section {
    background-attachment: scroll;
    padding: 0 0 72px;
  }

  .location-hero {
    width: 100%;
    min-height: 430px;
  }

  .location-copy {
    top: 18%;
    width: calc(100% - 40px);
  }

  .location-grid {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 40px);
    margin: -56px auto 0;
    gap: 8px;
  }

  .image-tile,
  .image-tile img {
    min-height: 200px;
  }

  .image-tile h3 {
    font-size: clamp(0.65rem, 3vw, 0.8rem);
    letter-spacing: 0.12em;
    width: calc(100% - 24px);
  }

  .health-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .health-box {
    gap: 40px;
    width: calc(100% - 32px);
    padding: 0;
  }

  .health-top-row,
  .health-bottom-row,
  .health-copy {
    display: contents;
  }

  .health-copy h2 {
    order: 1;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    font-size: clamp(0.75rem, 3.8vw, 1.1rem);
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .health-sketch-wrapper {
    order: 2;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }

  .health-copy p.health-desc {
    order: 3;
    text-align: left;
    max-width: 100%;
    margin-top: 12px;
  }

  .health-copy p.health-sub {
    order: 4;
    text-align: right;
    max-width: 100%;
    margin-top: 24px; /* Espacio antes de las fotos */
  }

  .health-media-gallery {
    order: 5;
    width: 100%;
    gap: 16px;
    display: flex;
    margin-top: 8px;
  }

  .health-media-main,
  .health-media-small {
    width: calc(50% - 8px);
    height: auto;
    object-fit: cover;
  }

  .health-community-copy {
    order: 6;
    text-align: right;
    max-width: 100%;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .health-community-copy h3 {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    line-height: 1.4;
  }

  .health-community-copy p {
    font-size: clamp(0.75rem, 3.5vw, 0.85rem);
    line-height: 1.6;
  }

  .lead-section {
    grid-template-columns: 1fr;
    padding: 0;
  }



  .lead-media {
    position: relative;
    width: 100%;
    height: 646px;
    padding: 24px;
    overflow: hidden;
    margin-top: 0;
  }

  .lead-media img {
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    box-shadow: var(--shadow);
  }

  .lead-panel {
    padding: 60px 24px 80px;
    max-width: none;
  }

  .lead-form {
    max-width: 100%;
    margin-top: 36px;
    padding-bottom: 40px;
  }

  .lead-form button {
    width: auto;
    margin-top: 24px;
  }

  .form-status {
    bottom: 0;
  }

  .legacy-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .legacy-left-col,
  .legacy-right-col {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
  }

  .legacy-left-col {
    gap: 32px;
  }

  .legacy-brand-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .legacy-pininfarina-logo {
    width: min(200px, 80%);
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .legacy-carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 45px;
    box-sizing: border-box;
  }

  .carousel-viewport {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding-block: 10px;
  }

  .carousel-viewport::before,
  .carousel-viewport::after {
    top: 5px;
    bottom: 5px;
  }

  .carousel-track {
    display: flex;
    gap: 0;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .carousel-item {
    flex: 0 0 100%;
    padding: 0;
    box-sizing: border-box;
    transition: transform 0.3s ease;
  }

  .carousel-item-title {
    text-align: center;
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.4;
  }

  .carousel-arrow {
    position: absolute;
    z-index: 10;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease, color 0.3s ease, transform 0.2s ease;
  }

  .carousel-arrow:hover, .carousel-arrow:active {
    background: transparent;
    opacity: 1;
    color: #0099ff;
    transform: translateY(-50%) scale(1.1);
  }

  .carousel-arrow.prev {
    left: 0;
  }

  .carousel-arrow.next {
    right: 0;
  }

  .legacy-right-col {
    gap: 24px;
    padding: 0 10px;
    align-items: flex-start;
    text-align: left;
  }

  .legacy-text-main {
    font-size: 18px !important;
    text-align: left;
    line-height: 1.3;
  }

  .legacy-text-desc {
    font-size: 13px !important;
    line-height: 1.6;
    text-align: left;
  }

  .legacy-footer-group {
    align-items: flex-start;
    text-align: left;
  }

  .site-footer {
    padding: 60px 24px 50px;
  }

  .footer-container {
    gap: 40px;
  }

  .footer-tagline {
    letter-spacing: 0.06em;
  }

  .footer-description {
    line-height: 1.6;
  }

  /* Responsive Time Section (Mobiles) */
  .time-section {
    padding: 60px 0;
  }

  .time-box {
    width: calc(100% - 32px);
    gap: 40px;
  }

  .polaroid-stack {
    width: 270px;
    height: 310px;
  }

  .time-left-col h2,
  .time-right-bottom-title {
    font-size: clamp(0.8rem, 4.5vw, 1.05rem);
  }

  .time-left-col p,
  .time-right-col p {
    font-size: clamp(0.55rem, 2.8vw, 0.68rem);
    margin-top: 16px;
  }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS SYSTEM
   ========================================================================== */

/* Las animaciones base solo se aplican si JS está activo y añade la clase .js-ready al body o html */
.js-ready [data-reveal] {
  opacity: 0;
  will-change: transform, opacity, filter;
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Direcciones y efectos por defecto (fade-up si no se especifica) */
.js-ready [data-reveal],
.js-ready [data-reveal="fade-up"] {
  transform: translateY(30px);
}

.js-ready [data-reveal="fade-down"] {
  transform: translateY(-30px);
}

.js-ready [data-reveal="fade-left"] {
  transform: translateX(30px);
}

.js-ready [data-reveal="fade-right"] {
  transform: translateX(-30px);
}

.js-ready [data-reveal="zoom-in"] {
  transform: scale(0.96);
}

.js-ready [data-reveal="zoom-out"] {
  transform: scale(1.04);
}

.js-ready [data-reveal="fade-in"] {
  transform: none;
}

/* Efecto de desenfoque sutil combinable (ej. data-reveal="fade-up blur") */
.js-ready [data-reveal*="blur"] {
  filter: blur(8px);
}

/* Estado de visualización final (revelado) */
.js-ready [data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: blur(0);
}

