:root {
  --bg: #faf8f3;
  --bg-elevated: #ffffff;
  --bg-muted: #f0ede6;
  --bg-contrast: #eee9df;
  --text: #1a1917;
  --text-soft: #5c5852;
  --text-muted: #8a857c;
  --line: rgba(26, 25, 23, 0.12);
  --line-strong: rgba(26, 25, 23, 0.22);
  --accent: #1a1917;
  --radius: 2px;
  --radius-sm: 2px;
  --shadow: none;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --wrap: min(1120px, 92vw);
  --tap-min: 48px;
  --section-pad: clamp(4rem, 10vw, 7rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--bg);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus {
  left: 1rem;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 240, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.site-header--scrolled {
  border-color: var(--line);
  background: rgba(246, 244, 240, 0.96);
}
.site-header__inner {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand__agency,
.brand__home {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
}
.brand__agency:hover,
.brand__agency:focus-visible,
.brand__home:hover,
.brand__home:focus-visible {
  text-decoration: none;
  opacity: 0.85;
}
.brand__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.brand__project {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  padding-left: 1rem;
  border-left: 1px solid var(--line);
  color: var(--text-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.7vw, 1.35rem);
  margin-left: auto;
}
.nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.nav a:hover {
  color: var(--text);
}
.site-header__actions {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
}

/* Buttons & links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: var(--tap-min);
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn--lg {
  min-height: 52px;
  padding: 0.75rem 1.75rem;
  font-size: 0.75rem;
}
.btn--light {
  background: var(--bg-elevated);
  border-color: var(--bg-elevated);
  color: var(--text);
}
.btn--light:hover {
  background: var(--bg);
  border-color: var(--bg);
  color: var(--text);
}
.btn--ghost-light {
  background: transparent;
  border-color: rgba(26, 25, 23, 0.3);
  color: var(--text);
}
.btn--ghost-light:hover {
  background: #fff;
  border-color: rgba(26, 25, 23, 0.35);
  color: var(--text);
}
.btn--outline {
  border-color: var(--line-strong);
  color: var(--text);
}
.btn--text {
  border: 1px solid transparent;
  padding: 0.5rem 0;
  min-height: auto;
  letter-spacing: 0.14em;
  background: none;
}
.btn--text:hover {
  background: none;
  color: var(--text-soft);
  border: none;
}
.btn--small {
  font-size: 0.68rem;
  min-height: 42px;
  padding: 0.45rem 1rem;
  margin-top: 0.75rem;
}
.btn--ghost {
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  background: var(--text);
  color: var(--bg);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  margin-top: 1.25rem;
}
.link-arrow::after {
  content: "→";
  transition: transform 0.2s;
}
.link-arrow:hover {
  text-decoration: none;
  color: var(--text-soft);
}
.link-arrow:hover::after {
  transform: translateX(4px);
}

/* WhatsApp icons */
.btn__wa-ico {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.btn__wa-ico svg {
  display: block;
}
a[data-wa-link] {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.btn:not(.btn--text)[data-wa-link],
.fab__btn[data-wa-link] {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(26, 25, 23, 0.16);
  box-shadow: 0 8px 24px rgba(26, 25, 23, 0.06);
  text-decoration: none !important;
}
.btn:not(.btn--text)[data-wa-link] {
  padding: 0.65rem 1.2rem;
  min-height: var(--tap-min);
}
.btn:not(.btn--text)[data-wa-link]:hover,
.fab__btn[data-wa-link]:hover {
  background: #fff;
  color: var(--text-soft);
  border-color: rgba(26, 25, 23, 0.28);
}
.btn--text[data-wa-link],
.link-arrow[data-wa-link],
.contact-list a[data-wa-link],
.footer__links a[data-wa-link] {
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
  min-height: auto;
  color: var(--text);
  text-decoration: none;
}
.btn--text[data-wa-link]:hover,
.link-arrow[data-wa-link]:hover,
.contact-list a[data-wa-link]:hover,
.footer__links a[data-wa-link]:hover {
  background: none;
  color: var(--text-soft);
  text-decoration: underline;
}
.btn__wa-ico--fullcolor svg {
  width: 20px;
  height: 20px;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: grid;
  align-items: start;
  padding: clamp(6.75rem, 12vh, 9rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  color: var(--text);
  background: #fbfaf6;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: brightness(1.08) contrast(0.98) saturate(1.02);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250, 248, 243, 0.7) 0%,
    rgba(250, 248, 243, 0.18) 36%,
    rgba(250, 248, 243, 0.08) 70%,
    rgba(250, 248, 243, 0.45) 100%
  );
}
.hero__content {
  position: relative;
  max-width: 46rem;
  justify-self: center;
  text-align: center;
  padding: 0 1rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(26, 25, 23, 0.62);
  margin: 0 0 1.25rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
  text-shadow: 0 12px 34px rgba(255, 255, 255, 0.9);
}
.hero__title-line {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: rgba(26, 25, 23, 0.78);
  letter-spacing: 0;
  line-height: 1.25;
}
.hero__lead {
  max-width: 28rem;
  color: var(--text-soft);
  font-size: 1rem;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Intro band */
.intro {
  padding: var(--section-pad) 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--line);
}
.intro__inner {
  max-width: 42rem;
}
.intro__label,
.section__label {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.intro__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Sections */
.section {
  padding: var(--section-pad) 0;
}
.section--muted {
  background: var(--bg-muted);
}
.section--contrast {
  background: var(--bg-contrast);
  border-block: 1px solid var(--line);
}
.section--contact {
  background: var(--bg-elevated);
}
.section__head {
  margin-bottom: 2.5rem;
}
.section__head--center {
  text-align: center;
  max-width: 32rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section__title--sm {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.section__text {
  color: var(--text-soft);
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 32rem;
}
.prose .section__title {
  margin-top: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.ticks {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.ticks li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
}
.ticks li:last-child {
  border-bottom: none;
}

.project-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: clamp(1.75rem, 3vw, 2.25rem) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.project-spec {
  display: grid;
  grid-template-columns: 2.35rem 1fr;
  gap: 0.9rem;
  padding: 1rem 1.1rem 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.project-spec:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.project-spec:nth-child(even) {
  padding-left: 1.1rem;
}

.project-spec__icon {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.project-spec strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.figure-rise {
  margin: 0;
  overflow: hidden;
}
.figure-rise img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* Slider de espacios comunes */
.common-slider {
  position: relative;
  min-height: clamp(34rem, 60vw, 46rem);
  overflow: hidden;
  background: #ede6db;
  box-shadow: 0 26px 80px rgba(33, 31, 27, 0.08);
  isolation: isolate;
}
.common-slider__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.012) translateX(0.6rem);
  transition: opacity 0.85s ease, transform 4.2s ease;
  z-index: 0;
}
.common-slider__slide.is-active {
  opacity: 1;
  transform: scale(1.045) translateX(0);
  z-index: 1;
}
.common-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.common-slider__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(0, 0, 0, 0.38) 100%
  );
  pointer-events: none;
}
.common-slider__slide figcaption {
  position: absolute;
  left: 1.35rem;
  bottom: 1.25rem;
  z-index: 2;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.common-slider__dots {
  position: absolute;
  right: 1.25rem;
  bottom: 1.35rem;
  z-index: 3;
  display: flex;
  gap: 0.4rem;
}
.common-slider__dots span {
  width: 1.6rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
  transition: background 0.3s, width 0.3s;
}
.common-slider__dots span.is-active {
  width: 2.5rem;
  background: rgba(255, 255, 255, 0.92);
}
.common-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 2.75rem;
  height: 2.75rem;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 999px;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.common-slider__arrow:hover,
.common-slider__arrow:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.78);
  transform: translateY(-50%) scale(1.04);
}
.common-slider__arrow--prev {
  left: 1rem;
}
.common-slider__arrow--next {
  right: 1rem;
}

/* Financiación */
.financing {
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.financing__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}
.financing__inner .section__text,
.financing__inner .section-cta {
  margin-top: 0;
}
.financing__copy {
  max-width: 48rem;
}
.financing__headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin: 0;
  max-width: 11ch;
}
.financing__subheadline {
  margin: clamp(1.1rem, 2vw, 1.6rem) 0 0;
  font-size: clamp(1.05rem, 2.4vw, 1.75rem);
  line-height: 1.2;
  color: var(--text-soft);
  letter-spacing: -0.02em;
  text-transform: lowercase;
}
.financing__text {
  max-width: 25rem;
}

/* Gallery — mosaico alineado */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, clamp(11rem, 18vw, 15.5rem));
  gap: 0.5rem;
  align-items: stretch;
  width: 100%;
}
.gallery__item {
  margin: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
  background: var(--bg-muted);
}
.gallery__item--feature {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}
.gallery__item:nth-child(2) {
  grid-column: 4 / 7;
  grid-row: 1;
}
.gallery__item:nth-child(3) {
  grid-column: 4 / 7;
  grid-row: 2;
}
.gallery__item:nth-child(4) {
  grid-column: 1 / 4;
  grid-row: 3;
}
.gallery__item:nth-child(5) {
  grid-column: 4 / 7;
  grid-row: 3;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}
.gallery__item:hover img {
  transform: scale(1.03);
}

/* Unidades: galería editorial */
.units-gallery {
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows:
    minmax(18rem, 38vw)
    minmax(11rem, 18vw)
    minmax(11rem, 18vw);
  gap: clamp(0.55rem, 1vw, 0.85rem);
  position: relative;
}

.units-gallery::before {
  content: "Unidades";
  position: absolute;
  left: 0;
  top: -1.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.units-gallery::after {
  content: "";
  position: absolute;
  left: 7.6rem;
  right: 0;
  top: -1.42rem;
  height: 1px;
  background: var(--line);
}

.units-gallery__item {
  background: #eee9df;
  isolation: isolate;
}

.units-gallery__item--feature {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.units-gallery__item--tall {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
}

.units-gallery__item:nth-child(3) {
  grid-column: 8 / 13;
  grid-row: 2 / 3;
}

.units-gallery__item:nth-child(4) {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
}

.units-gallery__item--wide {
  grid-column: 5 / 10;
  grid-row: 3 / 4;
}

.units-gallery__item:nth-child(6) {
  grid-column: 10 / 13;
  grid-row: 3 / 4;
}

.units-gallery__item img {
  filter: saturate(0.95) contrast(0.98);
}

.units-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(0, 0, 0, 0.34) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.units-gallery__item:hover::after {
  opacity: 1;
}

.units-gallery__item figcaption {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.units-gallery__item:hover figcaption {
  opacity: 1;
  transform: none;
}

.units-gallery__item figcaption span {
  width: 1.85rem;
  height: 1px;
  background: currentColor;
  font-size: 0;
}

/* Unidades: rail horizontal liviano */
.units-rail-wrap {
  position: relative;
}

.units-rail {
  --card-h: clamp(24rem, 52vw, 42rem);
  display: flex;
  align-items: stretch;
  gap: clamp(0.75rem, 1.2vw, 1rem);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 0 1.15rem;
  margin-inline: calc((100% - 100vw) / 2);
  padding-inline: max(4vw, calc((100vw - var(--wrap)) / 2));
  position: relative;
}

.units-rail__arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 2.8rem;
  height: 2.8rem;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(33, 31, 27, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.86);
  color: var(--text);
  box-shadow: 0 16px 40px rgba(33, 31, 27, 0.08);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 1.05rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.units-rail__arrow:hover,
.units-rail__arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
  background: #fff;
  border-color: rgba(33, 31, 27, 0.28);
}

.units-rail__arrow--prev {
  left: max(1rem, calc((100vw - var(--wrap)) / 2 - 1.35rem));
}

.units-rail__arrow--next {
  right: max(1rem, calc((100vw - var(--wrap)) / 2 - 1.35rem));
}

.units-rail::-webkit-scrollbar {
  display: none;
}

.units-rail::before {
  content: "Deslizá para ver las unidades";
  position: sticky;
  left: max(4vw, calc((100vw - var(--wrap)) / 2));
  align-self: end;
  z-index: 5;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-right: -0.25rem;
  padding-bottom: 0.2rem;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.units-card {
  position: relative;
  flex: 0 0 min(31vw, 28rem);
  scroll-snap-align: center;
  height: var(--card-h);
  margin: 0;
  overflow: hidden;
  background: #eee9df;
}

.units-card--feature {
  flex-basis: min(62vw, 52rem);
}

.units-card--portrait {
  flex-basis: min(25vw, 22rem);
}

.units-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.96) contrast(0.98);
  transform: scale(1.001);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.units-card:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1);
}

.units-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.36));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.units-card:hover::after {
  opacity: 1;
}

.units-card figcaption {
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  color: #fff;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.units-card:hover figcaption {
  opacity: 1;
  transform: none;
}

.units-card figcaption span {
  color: rgba(255, 255, 255, 0.72);
}

/* Peyras */
.peyras__card {
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) 0;
}
.peyras__logo-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.peyras__logo {
  height: 44px;
  width: auto;
  margin-inline: auto;
}
.peyras__card .section__label,
.peyras__card .section__title,
.peyras__card .section__text {
  margin-inline: auto;
}
.peyras__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  margin-top: 1.75rem;
}

/* Progress */
.progress-board {
  margin-bottom: 2.5rem;
  max-width: 36rem;
}
.progress-board__labels {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.progress-board__labels strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--text);
}
.progress-board__bar {
  height: 2px;
  background: var(--line);
  overflow: hidden;
}
.progress-board__fill {
  height: 100%;
  width: 0%;
  background: var(--text);
  transition: width 0.8s ease;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 40rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.timeline--empty::before {
  display: none;
}
.timeline-node {
  position: relative;
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 1.25rem;
  padding: 0.85rem 0;
}
.timeline-node__marker {
  width: 11px;
  height: 11px;
  margin-top: 0.4rem;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--bg-contrast);
  justify-self: center;
}
.timeline-node[data-state="done"] .timeline-node__marker {
  background: var(--text);
  border-color: var(--text);
}
.timeline-node[data-state="current"] .timeline-node__marker {
  background: var(--bg-elevated);
  border-color: var(--text);
  box-shadow: 0 0 0 3px var(--bg), 0 0 0 4px var(--text);
}
.timeline-node__body {
  padding: 0;
  border: none;
  background: none;
}
.timeline-node[data-state="upcoming"] {
  opacity: 0.45;
}
.timeline-node__pct {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.timeline-node__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-family: var(--font-serif);
  font-weight: 500;
}
.timeline-node__details {
  margin: 0;
}
.timeline-node__summary {
  list-style: none;
  cursor: pointer;
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 0;
  border: none;
  background: none;
  user-select: none;
  margin-top: 0.35rem;
}
.timeline-node__summary:hover {
  color: var(--text);
}
.timeline-node__summary::-webkit-details-marker {
  display: none;
}
.timeline-node__summary::marker {
  content: "";
}
.timeline-node__details[open] > .timeline-node__summary {
  margin-bottom: 0.75rem;
  color: var(--text);
}
.timeline-node__summary-more,
.timeline-node__summary-less {
  display: inline;
}
.timeline-node__details:not([open]) .timeline-node__summary-less {
  display: none;
}
.timeline-node__details[open] .timeline-node__summary-more {
  display: none;
}
.timeline-node__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.65;
}
.timeline-node__media {
  margin-top: 0.75rem;
  overflow: hidden;
}
.timeline-node__media--dim {
  opacity: 0.7;
}
.timeline-node__figure img,
.timeline-node__video {
  width: 100%;
  display: block;
  max-height: min(48vw, 260px);
  object-fit: cover;
}
.timeline-node__video {
  background: #000;
}
.timeline-node__figure--poster-only .timeline-node__video-badge {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.45rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}
.timeline-node__caption,
p.timeline-node__caption {
  margin: 0;
  padding: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.timeline-footnote {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.timeline-empty {
  display: grid;
  gap: 0.6rem;
  max-width: 34rem;
  padding: clamp(1.2rem, 3vw, 2rem) 0 0;
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}
.timeline-empty__label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.timeline-empty__value {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.timeline-empty p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

/* Contact */
.contact-block {
  max-width: 28rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}
.contact-list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.contact-list span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-list a {
  color: var(--text);
  text-decoration: none;
}
.contact-list a:hover {
  text-decoration: underline;
  color: var(--text-soft);
}

/* Footer */
.footer {
  padding: 2.5rem 0 calc(5rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer__grid {
  display: grid;
  gap: 0.75rem;
}
.footer__brand {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}
.footer__small {
  margin: 0;
  max-width: 36rem;
  line-height: 1.6;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.footer__links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-soft);
}
.footer__links a:hover {
  color: var(--text);
  text-decoration: none;
}
.footer__copy {
  margin: 1rem 0 0;
  font-size: 0.8rem;
}

/* FAB */
.fab {
  position: fixed;
  right: 1.25rem;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  z-index: 60;
}
.fab__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: var(--tap-min);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--line-strong);
  box-shadow: 0 8px 32px rgba(26, 25, 23, 0.08);
}
.fab__btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.fab__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fab__icon .btn__wa-ico svg {
  width: 18px;
  height: 18px;
}

/* Section CTAs */
.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 2rem;
}
.section-cta--center {
  justify-content: center;
}
.section-cta--contact {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.section-cta__or {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Galería — panel terminaciones */
.galeria-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.unidades-actions {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}
.terminaciones-panel {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0;
  overflow: hidden;
}
.terminaciones-panel[hidden] {
  display: none;
}
.terminaciones-panel.is-open {
  animation: panel-in 0.35s ease;
}
@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.terminaciones-panel__inner {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background:
    linear-gradient(135deg, rgba(255, 253, 250, 0.96), rgba(244, 239, 230, 0.72));
  border: 1px solid rgba(33, 31, 27, 0.1);
  box-shadow: 0 24px 70px rgba(33, 31, 27, 0.055);
}
.terminaciones-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.terminaciones-panel__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  margin: 0;
  letter-spacing: -0.02em;
}
.terminaciones-panel__close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--radius);
}
.terminaciones-panel__close:hover {
  border-color: var(--line-strong);
  background: var(--bg-muted);
}
.terminaciones-panel__close:focus-visible,
.units-rail__arrow:focus-visible {
  outline: 2px solid rgba(33, 31, 27, 0.24);
  outline-offset: 3px;
}
.terminaciones-panel__intro,
.terminaciones-panel__note {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 48rem;
}
.terminaciones-panel__note {
  margin-bottom: 0;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.terminaciones-panel__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  border-top: 0;
}
.terminaciones-panel__group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 12rem;
  padding: 1.15rem;
  border: 1px solid rgba(33, 31, 27, 0.1);
  background: rgba(255, 255, 255, 0.42);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.terminaciones-panel__group:hover {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(33, 31, 27, 0.16);
}
.terminaciones-panel__group-number {
  width: 1.9rem;
  height: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(33, 31, 27, 0.12);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.terminaciones-panel__group-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}
.terminaciones-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.terminaciones-panel__list li {
  position: relative;
  padding: 0.22rem 0 0.22rem 1rem;
}
.terminaciones-panel__list li::before {
  content: "";
  position: absolute;
  top: 0.88rem;
  left: 0;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: rgba(33, 31, 27, 0.38);
}

/* Obra teaser (home) */
.obra-teaser__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}
.obra-teaser__copy {
  max-width: 32rem;
}
.obra-teaser__copy .section__text {
  margin-bottom: 0;
}
.obra-teaser__btn {
  flex-shrink: 0;
}

/* Contact grid + form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}
.contact-grid__intro .section__text {
  margin-bottom: 0;
}
.contact-list--compact {
  margin-top: 1.75rem;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  padding: 1.75rem;
  background: var(--bg-muted);
  border: 1px solid var(--line);
}
.contact-form__status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}
.contact-form__status--success {
  color: var(--text);
}
.contact-form__status--pending {
  color: var(--text-muted);
}
.contact-form__status--info {
  color: var(--text-soft);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.field--full,
.contact-form__submit,
.contact-form__status {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--line-strong);
}
.field textarea {
  resize: vertical;
  min-height: 6rem;
}
.contact-form__submit {
  justify-self: start;
  margin-top: 0.25rem;
}

/* Página avances */
.page-hero {
  padding: calc(var(--section-pad) * 0.85) 0 calc(var(--section-pad) * 0.5);
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--line);
}
.page-hero__back {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.page-hero__back:hover {
  color: var(--text);
  text-decoration: none;
}
.page-hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.page-hero__lead {
  margin: 0;
  max-width: 32rem;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}
.page-avances__body .progress-board {
  max-width: none;
}
.page-avances__body .timeline {
  max-width: 52rem;
}
.page-avances .footer {
  padding-bottom: 2.5rem;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Tablet */
@media (max-width: 960px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .financing__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .financing__inner .section-cta {
    margin-top: 0.5rem;
  }
  .figure-rise img {
    aspect-ratio: 16 / 10;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: clamp(10rem, 28vw, 14rem);
  }
  .units-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(12rem, 34vw, 18rem);
  }
  .units-gallery__item--feature,
  .units-gallery__item--tall,
  .units-gallery__item:nth-child(3),
  .units-gallery__item:nth-child(4),
  .units-gallery__item--wide,
  .units-gallery__item:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }
  .units-gallery__item--feature {
    grid-column: 1 / -1;
    min-height: clamp(18rem, 52vw, 28rem);
  }
  .units-card {
    flex-basis: min(42vw, 25rem);
  }
  .units-card--feature {
    flex-basis: min(78vw, 42rem);
  }
  .gallery__item--feature {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: clamp(14rem, 40vw, 20rem);
  }
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Mobile nav */
@media (max-width: 820px) {
  .site-header__inner {
    width: 100%;
    max-width: 100%;
    padding-inline: max(1.125rem, env(safe-area-inset-left, 0px))
      max(1.125rem, env(safe-area-inset-right, 0px));
  }
  .nav-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    left: max(0.75rem, env(safe-area-inset-left, 0px));
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    top: calc(4rem + env(safe-area-inset-top, 0px));
    max-height: min(70vh, 400px);
    overflow-y: auto;
    margin-left: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.2s ease;
    z-index: 60;
  }
  .nav a {
    font-size: 0.8rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }
  .nav a:last-child {
    border-bottom: none;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(26, 25, 23, 0.25);
    z-index: 55;
  }
  .site-header {
    z-index: 70;
  }
  .site-header__actions {
    display: none;
  }
  .brand__project {
    display: none;
  }
  .contact-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* Phone */
@media (max-width: 640px) {
  :root {
    --wrap: 100%;
    --section-pad: 3.25rem;
  }
  .wrap {
    padding-left: max(1.125rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.125rem, env(safe-area-inset-right, 0px));
  }
  .hero {
    min-height: min(100dvh, 680px);
    align-items: start;
    padding-top: max(6.25rem, calc(env(safe-area-inset-top, 0px) + 5rem));
  }
  .hero__content {
    text-align: center;
    margin-inline: auto;
  }
  .hero__lead {
    margin-inline: auto;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
  .intro__inner {
    text-align: center;
  }
  .intro .link-arrow {
    justify-content: center;
    width: 100%;
  }
  .section__head--center {
    text-align: center;
  }
  .prose {
    text-align: center;
  }
  .prose .section__text,
  .ticks {
    text-align: left;
  }
  .figure-rise {
    order: -1;
  }
  .common-slider {
    order: -1;
    width: 100%;
    min-height: min(110vw, 32rem);
  }
  .grid-2 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .gallery {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .units-gallery::before,
  .units-gallery::after {
    display: none;
  }
  .units-rail {
    --card-h: min(118vw, 33rem);
    margin-inline: -1.125rem;
    padding-inline: 1.125rem;
  }
  .units-rail::before {
    display: none;
  }
  .units-card,
  .units-card--feature,
  .units-card--portrait {
    flex-basis: min(84vw, 24rem);
  }
  .units-card figcaption,
  .units-card::after {
    opacity: 1;
    transform: none;
  }
  .gallery__item,
  .gallery__item--feature {
    aspect-ratio: 4 / 3;
    min-height: 0;
    width: 100%;
  }
  .gallery__item--feature {
    min-height: unset;
  }
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(5) {
    grid-column: unset;
    grid-row: unset;
  }
  .obra-teaser__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .obra-teaser__btn {
    width: 100%;
    justify-content: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
  .contact-form__submit {
    width: 100%;
    justify-content: center;
  }
  .terminaciones-panel__grid {
    grid-template-columns: 1fr;
  }
  .terminaciones-panel__group {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
  .section-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .section-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .peyras__actions {
    flex-direction: column;
    align-items: center;
  }
  .footer {
    text-align: center;
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }
  .footer__small {
    margin-inline: auto;
  }
  .footer__links {
    justify-content: center;
  }
  .fab {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.65rem max(1rem, env(safe-area-inset-left, 0px))
      calc(0.65rem + env(safe-area-inset-bottom, 0px))
      max(1rem, env(safe-area-inset-right, 0px));
    background: rgba(246, 244, 240, 0.94);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: center;
  }
  .fab__btn {
    flex: 1;
    max-width: 20rem;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .brand__logo {
    height: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .progress-board__fill {
    transition: none;
  }
  .gallery__item:hover img {
    transform: none;
  }
  .common-slider__slide,
  .common-slider__slide.is-active {
    transform: none;
    transition: opacity 0.4s ease;
  }
}

/* Corrección hero: imagen limpia, completa y sin superposición */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: auto;
  padding: clamp(5.75rem, 10vh, 7.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  overflow: visible;
}

.hero__content {
  order: 1;
  z-index: 2;
  margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
  max-width: 50rem;
}

.hero__title {
  font-size: clamp(3.25rem, 7vw, 5.5rem);
  margin-bottom: 0.7rem;
}

.hero__title-line {
  margin-top: 0.25rem;
}

.hero__lead {
  margin-bottom: 1.25rem;
}

.hero__media {
  order: 2;
  position: relative;
  inset: auto;
  display: block;
  width: min(900px, 88vw);
  padding: 0;
  z-index: 1;
}

.hero__media img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center bottom;
  opacity: 1;
  filter: brightness(1.1) contrast(1) saturate(1.02);
}

.hero__veil {
  display: none;
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-top: max(5.25rem, calc(env(safe-area-inset-top, 0px) + 4.75rem));
  }

  .hero__content {
    margin-bottom: 1rem;
  }

  .hero__title {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .hero__media {
    width: min(100%, 28rem);
  }
}

/* Modern editorial pass — inspirado en The Well */
:root {
  --bg: #fbfaf6;
  --bg-elevated: #fffdfa;
  --bg-muted: #f4f1ea;
  --bg-contrast: #eee8dc;
  --text: #211f1b;
  --text-soft: #625d54;
  --text-muted: #928a7e;
  --line: rgba(33, 31, 27, 0.1);
  --line-strong: rgba(33, 31, 27, 0.24);
  --accent: #8d7f69;
  --radius: 0;
  --radius-sm: 0;
  --wrap: min(1240px, 92vw);
  --section-pad: clamp(5.5rem, 11vw, 9rem);
}

body {
  background: var(--bg);
  color: var(--text);
}

.site-header {
  background: rgba(251, 250, 246, 0.7);
  border-bottom-color: transparent;
}

.site-header--scrolled {
  background: rgba(251, 250, 246, 0.94);
}

.site-header__inner {
  padding: 0.9rem 0;
  gap: clamp(0.85rem, 1.8vw, 1.4rem);
}

.brand__logo {
  height: 30px;
}

.brand__project {
  font-size: 1rem;
  color: var(--text);
  border-left-color: rgba(33, 31, 27, 0.14);
}

.nav {
  gap: clamp(0.7rem, 1.4vw, 1.15rem);
}

.nav a,
.footer__links a {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  color: rgba(33, 31, 27, 0.68);
}

.nav a:hover,
.footer__links a:hover {
  color: var(--text);
}

.btn {
  min-height: 44px;
  padding: 0.72rem 1.25rem;
  border-color: rgba(33, 31, 27, 0.2);
  background: transparent;
  color: var(--text);
  font-size: 0.66rem;
  letter-spacing: 0.17em;
  box-shadow: none;
}

.btn:hover {
  background: rgba(33, 31, 27, 0.04);
  color: var(--text);
  border-color: rgba(33, 31, 27, 0.36);
}

.btn--text {
  border: 0;
  padding: 0;
  min-height: auto;
}

.btn--text:hover {
  border: 0;
  text-decoration: underline !important;
}

.btn--light {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn:not(.btn--text)[data-wa-link],
.fab__btn[data-wa-link] {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(33, 31, 27, 0.16);
  box-shadow: 0 14px 40px rgba(33, 31, 27, 0.08);
}

.btn:not(.btn--text)[data-wa-link]:hover,
.fab__btn[data-wa-link]:hover {
  background: #fff;
  border-color: rgba(33, 31, 27, 0.28);
  color: var(--text);
}

.hero {
  min-height: min(100svh, 940px);
  padding: clamp(5.5rem, 9vh, 7rem) 0 2.5rem;
  align-items: start;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.92), transparent 22rem),
    linear-gradient(180deg, #fffdfa 0%, #f7f3eb 100%);
  color: var(--text);
}

.hero__media {
  display: grid;
  place-items: end center;
  padding: clamp(8rem, 16vh, 12rem) 2vw clamp(1.25rem, 4vh, 2.5rem);
}

.hero__media img {
  width: min(1180px, 96vw);
  height: auto;
  max-height: min(76vh, 760px);
  object-fit: contain;
  object-position: center bottom;
  opacity: 0.96;
  filter: brightness(1.12) contrast(0.98) saturate(1.04);
}

.hero__veil {
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 0.82) 0%, rgba(251, 250, 246, 0.25) 32%, rgba(251, 250, 246, 0) 62%),
    linear-gradient(0deg, rgba(251, 250, 246, 0.58) 0%, transparent 34%);
}

.hero__content {
  max-width: 54rem;
  text-align: center;
  padding-top: clamp(0.5rem, 2vh, 1.5rem);
}

.eyebrow,
.intro__label,
.section__label {
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.hero__title {
  font-size: clamp(3.35rem, 8vw, 6.6rem);
  line-height: 0.95;
  margin-bottom: 1rem;
  text-shadow: 0 18px 48px rgba(255, 255, 255, 0.95);
}

.hero__title-line {
  font-size: clamp(1.4rem, 2.7vw, 2.25rem);
  color: rgba(33, 31, 27, 0.68);
}

.hero__lead {
  color: rgba(33, 31, 27, 0.68);
  margin-bottom: 1.5rem;
}

.hero__ctas {
  justify-content: center;
}

.hero .btn--ghost-light {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.95);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.hero .btn--ghost-light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--text);
}

.intro {
  background: var(--bg);
  border-bottom: 0;
}

.intro__inner {
  max-width: 58rem;
  text-align: center;
}

.intro__title,
.section__title {
  font-size: clamp(2.15rem, 4.8vw, 4.15rem);
  line-height: 1.02;
}

.section__title--sm {
  font-size: clamp(1.85rem, 3.4vw, 3rem);
}

.section__text {
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.8;
}

.grid-2 {
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(3rem, 8vw, 6rem);
}

.figure-rise {
  box-shadow: 0 26px 80px rgba(33, 31, 27, 0.08);
}

.section--muted {
  background: #f7f4ee;
}

.section__head--center {
  max-width: 46rem;
}

.gallery {
  gap: 0.75rem;
  grid-template-rows: repeat(3, clamp(13rem, 19vw, 17rem));
}

.gallery__item {
  background: #ede6db;
}

.gallery__item img {
  filter: saturate(0.96) contrast(0.98);
}

.galeria-actions {
  margin-bottom: 2rem;
}

.terminaciones-panel__inner,
.contact-form {
  background: rgba(255, 253, 250, 0.82);
  border-color: rgba(33, 31, 27, 0.12);
  box-shadow: 0 24px 70px rgba(33, 31, 27, 0.06);
}

.financing {
  background: linear-gradient(135deg, #fffdfa 0%, #f2ece2 100%);
}

.financing__inner {
  grid-template-columns: 0.95fr 1fr auto;
}

.peyras__card {
  max-width: 680px;
}

.section--contrast {
  background: #eee8dc;
}

.contact-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(33, 31, 27, 0.14);
}

.fab__btn {
  border-radius: 999px;
}

@media (max-width: 960px) {
  .grid-2,
  .contact-grid,
  .financing__inner {
    grid-template-columns: 1fr;
  }

  .financing__headline {
    max-width: 12ch;
  }

  .nav {
    gap: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: min(96svh, 720px);
    padding-top: max(5.25rem, calc(env(safe-area-inset-top, 0px) + 4.5rem));
  }

  .hero__media {
    padding-top: 11rem;
    padding-inline: 0.75rem;
  }

  .hero__media img {
    width: 100%;
    max-height: 58vh;
  }

  .hero__title {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero__lead {
    max-width: 20rem;
  }

  .intro__title,
  .section__title {
    font-size: clamp(2rem, 11vw, 3rem);
  }
}

/* Hero final: composición sin superposición entre texto e imagen */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: auto;
  padding: clamp(5.75rem, 10vh, 7.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  overflow: visible;
}

.hero__content {
  order: 1;
  z-index: 2;
  margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
  max-width: 50rem;
  padding-top: 0;
}

.hero__title {
  font-size: clamp(3.25rem, 7vw, 5.5rem);
  margin-bottom: 0.7rem;
}

.hero__title-line {
  margin-top: 0.25rem;
}

.hero__lead {
  margin-bottom: 1.25rem;
}

.hero__media {
  order: 2;
  position: relative;
  inset: auto;
  display: block;
  width: min(900px, 88vw);
  padding: 0;
  z-index: 1;
}

.hero__media img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center bottom;
  opacity: 1;
  filter: brightness(1.1) contrast(1) saturate(1.02);
}

.hero__veil {
  display: none;
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-top: max(5.25rem, calc(env(safe-area-inset-top, 0px) + 4.75rem));
  }

  .hero__content {
    margin-bottom: 1rem;
  }

  .hero__title {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .hero__media {
    width: min(100%, 28rem);
    padding-top: 0;
    padding-inline: 0;
  }

  .hero__media img {
    max-height: none;
  }
}

/* Hero definitivo: imagen como fondo de portada */
.hero {
  position: relative;
  display: grid;
  align-items: start;
  min-height: min(100svh, 920px);
  padding: clamp(6.5rem, 12vh, 9rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background: #fbfaf6;
}

.hero__media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: brightness(1.08) contrast(1) saturate(1.02);
}

.hero__veil {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.16) 38%, rgba(0, 0, 0, 0.1) 68%, rgba(0, 0, 0, 0.28) 100%),
    radial-gradient(circle at 50% 18%, rgba(0, 0, 0, 0.18), transparent 24rem);
}

.hero__content {
  position: relative;
  order: initial;
  z-index: 2;
  justify-self: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.hero .eyebrow {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 7px 20px rgba(0, 0, 0, 0.32);
}

.hero__address {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 7px 20px rgba(0, 0, 0, 0.35);
}

.hero__title {
  font-size: clamp(3.5rem, 8vw, 6.7rem);
  line-height: 0.95;
  margin-bottom: 0.75rem;
  color: #fff;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.42);
}

.hero__title-line {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}

.hero__lead {
  margin: 0 auto 1.35rem;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 7px 22px rgba(0, 0, 0, 0.35);
}

.hero__ctas {
  justify-content: center;
}

@media (max-width: 640px) {
  .hero {
    min-height: min(100svh, 760px);
    padding-top: max(5.75rem, calc(env(safe-area-inset-top, 0px) + 5rem));
  }

  .hero__media {
    width: 100%;
    height: 100%;
  }

  .hero__media img {
    object-fit: cover;
    object-position: center center;
  }

  .hero__title {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .project-specs {
    grid-template-columns: 1fr;
  }

  .project-spec,
  .project-spec:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }

  .project-spec:nth-child(odd) {
    border-right: 0;
  }
}

/* Diseño alternativo: dossier editorial Torre Madison */
.project-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.94) 0 48%, rgba(244, 239, 230, 0.92) 48% 100%),
    var(--bg);
}

.project-showcase::before {
  content: "MADISON";
  position: absolute;
  left: max(1rem, calc((100vw - var(--wrap)) / 2));
  top: 1.2rem;
  font-family: var(--font-serif);
  font-size: clamp(5rem, 15vw, 13rem);
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(33, 31, 27, 0.035);
  pointer-events: none;
}

.project-showcase__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(20rem, 0.86fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}

.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(31rem, 48vw, 38rem);
  padding-block: clamp(1rem, 3vw, 2rem);
}

.project-copy .section__title {
  max-width: 8.5em;
  font-size: clamp(2.65rem, 5.8vw, 5.25rem);
  line-height: 0.95;
}

.project-copy .section__text {
  max-width: 26rem;
  margin-top: 1.35rem;
  color: rgba(33, 31, 27, 0.68);
}

.project-signature {
  position: relative;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-left: 4.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.project-signature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3.4rem;
  height: 1px;
  background: currentColor;
}

.project-brief {
  display: grid;
  gap: 0;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.project-brief li {
  display: grid;
  grid-template-columns: minmax(8rem, 0.5fr) minmax(0, 1fr);
  gap: 1.25rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.project-brief strong {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.project-brief span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.project-showcase .common-slider {
  width: min(100%, 42rem);
  min-height: clamp(28rem, 44vw, 36rem);
  align-self: center;
  justify-self: end;
  box-shadow: none;
  border: 1px solid rgba(33, 31, 27, 0.08);
}

.project-showcase .common-slider::before {
  content: "";
  position: absolute;
  inset: 1.25rem;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.project-showcase .section-cta {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

@media (max-width: 960px) {
  .project-showcase {
    background: var(--bg);
  }

  .project-showcase__grid {
    grid-template-columns: 1fr;
  }

  .project-copy {
    min-height: auto;
  }

  .project-showcase .common-slider {
    width: 100%;
    min-height: min(105vw, 38rem);
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  .project-copy {
    text-align: left;
  }

  .project-copy .section__title {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .project-brief li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .project-showcase .common-slider::before {
    inset: 0.75rem;
  }
}

/* Refinamiento final: unidades + terminaciones */
.units-rail-wrap {
  padding-top: 0;
}

.units-rail-wrap::before,
.units-rail-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 1.15rem;
  z-index: 6;
  width: clamp(4.5rem, 9vw, 7.5rem);
  pointer-events: none;
}

.units-rail-wrap::before {
  left: calc((100vw - var(--wrap)) / -2);
  background: linear-gradient(
    90deg,
    rgba(251, 250, 246, 0.96) 0%,
    rgba(251, 250, 246, 0.68) 42%,
    rgba(251, 250, 246, 0) 100%
  );
}

.units-rail-wrap::after {
  right: calc((100vw - var(--wrap)) / -2);
  background: linear-gradient(
    270deg,
    rgba(251, 250, 246, 0.96) 0%,
    rgba(251, 250, 246, 0.68) 42%,
    rgba(251, 250, 246, 0) 100%
  );
}

.units-rail__arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 2.85rem;
  height: 2.85rem;
  background: rgba(255, 253, 250, 0.92);
  box-shadow: 0 14px 34px rgba(33, 31, 27, 0.08);
  backdrop-filter: blur(8px);
}

.units-rail__arrow:hover,
.units-rail__arrow:focus-visible {
  transform: translateY(-50%) scale(1.03);
  background: #fff;
}

.units-rail__arrow--prev {
  left: calc((100vw - var(--wrap)) / -2 + 1rem);
  right: auto;
}

.units-rail__arrow--next {
  right: calc((100vw - var(--wrap)) / -2 + 1rem);
}

.units-rail__arrow:disabled {
  opacity: 0.32;
  cursor: default;
  pointer-events: none;
}

.terminaciones-panel__inner {
  background:
    linear-gradient(135deg, rgba(255, 253, 250, 0.98), rgba(244, 239, 230, 0.76));
  border-color: rgba(33, 31, 27, 0.1);
}

.terminaciones-panel__note {
  padding-top: 1rem;
  border-top: 1px solid rgba(33, 31, 27, 0.08);
}

@media (max-width: 1100px) {
  .terminaciones-panel__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .units-rail-wrap::before,
  .units-rail-wrap::after,
  .units-rail__arrow {
    display: none;
  }

  .terminaciones-panel__inner {
    padding: 1.15rem;
  }

  .terminaciones-panel__grid {
    grid-template-columns: 1fr;
  }

  .terminaciones-panel__group {
    min-height: auto;
  }
}

/* Preventa: bloque comercial */
.financing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.88), transparent 24rem),
    linear-gradient(135deg, #fbfaf6 0%, #ede6da 100%);
}

.financing::after {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(33, 31, 27, 0.08);
  pointer-events: none;
}

.financing__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.58fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}

.financing__copy {
  max-width: none;
}

.financing__headline {
  max-width: 9.5ch;
  font-size: clamp(4rem, 10vw, 9.4rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.financing__offer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  background: rgba(255, 253, 250, 0.7);
  border: 1px solid rgba(33, 31, 27, 0.1);
  box-shadow: 0 24px 70px rgba(33, 31, 27, 0.06);
}

.financing__subheadline {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: var(--text);
  text-transform: none;
}

.financing__text {
  max-width: 24rem;
  margin: 0;
}

@media (max-width: 960px) {
  .financing::after {
    inset: 0.85rem;
  }

  .financing__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .financing__headline {
    max-width: 10ch;
  }

  .financing__offer {
    max-width: 34rem;
  }
}

@media (max-width: 640px) {
  .financing__headline {
    font-size: clamp(3.4rem, 16vw, 5.2rem);
  }

  .financing__subheadline {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .financing__offer .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Obra: teaser editorial */
.obra-teaser {
  background:
    linear-gradient(135deg, rgba(238, 232, 220, 0.86), rgba(251, 250, 246, 0.98));
}

.obra-teaser__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 5rem);
}

.obra-teaser__copy {
  max-width: 44rem;
}

.obra-teaser__copy .section__title {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 6.25rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.obra-teaser__card {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 253, 250, 0.72);
  border: 1px solid rgba(33, 31, 27, 0.1);
  box-shadow: 0 22px 60px rgba(33, 31, 27, 0.055);
}

.obra-teaser__eyebrow {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.obra-teaser__percent {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.obra-teaser__card p {
  margin: 1rem 0 1.35rem;
  color: var(--text-soft);
  line-height: 1.65;
}

@media (max-width: 960px) {
  .obra-teaser__inner {
    grid-template-columns: 1fr;
  }

  .obra-teaser__card {
    max-width: 34rem;
  }
}

@media (max-width: 640px) {
  .obra-teaser__copy .section__title {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .obra-teaser__btn {
    width: 100%;
    justify-content: center;
  }
}

/* Obra: versión minimal */
.obra-teaser {
  background: #f0ebe2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.obra-teaser__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 24rem);
  align-items: end;
  gap: clamp(2rem, 6vw, 5rem);
}

.obra-teaser__copy {
  max-width: 36rem;
}

.obra-teaser__copy .section__title {
  max-width: none;
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.obra-teaser__status {
  display: grid;
  gap: 0.85rem;
}

.obra-teaser__progress {
  height: 1px;
  background: rgba(33, 31, 27, 0.13);
}

.obra-teaser__progress span {
  display: block;
  height: 100%;
  background: var(--text);
}

.obra-teaser__status p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.obra-teaser__btn {
  justify-self: start;
}

@media (max-width: 960px) {
  .obra-teaser__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .obra-teaser__status {
    max-width: 28rem;
  }
}

@media (max-width: 640px) {
  .obra-teaser__copy .section__title {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }
}
