:root {
  --green: #2b5544;
  --sage: #628272;
  --deep: #193737;
  --charcoal: #222528;
  --white: #ffffff;
  --mist: #e7f0eb;
  --line: rgba(34, 37, 40, 0.18);
  --review-h: 64px;
  color: var(--charcoal);
  background: #d8dad9;
  font-family: "Manrope", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #7dd8ad;
  outline-offset: 4px;
}

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

.review-bar {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 235px 1fr 300px;
  align-items: center;
  min-height: var(--review-h);
  padding: 8px 24px;
  color: var(--white);
  background: #101413;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-family: "Manrope", sans-serif;
}

.review-brand {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.review-brand strong {
  font-size: 14px;
}

.review-kicker,
.review-note {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.review-tab {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font: 600 12px/1 "Manrope", sans-serif;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.review-tab span {
  font-size: 9px;
  letter-spacing: 0.08em;
}

.review-tab:hover,
.review-tab.is-active {
  color: var(--charcoal);
  background: var(--white);
  border-color: var(--white);
}

.review-note {
  margin: 0;
  text-align: right;
}

.concept {
  width: 100%;
  max-width: 1600px;
  min-width: 0;
  min-height: calc(100vh - var(--review-h));
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 235px 1fr auto;
  align-items: center;
  min-height: 88px;
  width: 100%;
  min-width: 0;
  padding: 0 clamp(28px, 4vw, 72px);
  border-bottom: 1px solid var(--line);
}

.site-logo {
  width: 174px;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 40px);
}

.site-header nav a,
.header-actions {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  position: absolute;
  right: 100%;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transition: right 180ms ease;
}

.site-header nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.open-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.open-status i {
  width: 7px;
  height: 7px;
  background: #56b889;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(86, 184, 137, 0.15);
}

.open-status[data-state="closed"] i {
  background: #b86a5f;
  box-shadow: 0 0 0 4px rgba(184, 106, 95, 0.14);
}

.open-status[data-state="unknown"] i {
  background: #b99c55;
  box-shadow: 0 0 0 4px rgba(185, 156, 85, 0.14);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark,
.button-charcoal {
  color: var(--white);
  background: var(--charcoal);
}

.button-light {
  color: var(--deep);
  background: var(--white);
}

.button-green {
  color: var(--white);
  background: var(--green);
}

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link.light {
  color: var(--white);
}

.text-link.dark {
  color: var(--charcoal);
}

.photo-label {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  padding: 7px 9px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.86);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Propuesta A — En movimiento */
.concept-a {
  --a-font: "Manrope", sans-serif;
  font-family: var(--a-font);
}

.a-header {
  background: var(--white);
}

.a-hero {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 650px;
  color: var(--white);
  background: var(--deep);
}

.a-hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 72px clamp(48px, 6vw, 94px);
  min-width: 0;
  overflow: hidden;
  background: var(--green);
}

.a-hero-copy::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -92px;
  width: 95px;
  height: 100%;
  background: var(--green);
  clip-path: polygon(0 0, 100% 0, 16% 100%, 0 100%);
  content: "";
}

.a-hero h1 {
  max-width: 700px;
  margin: 0 0 18px;
  font: 700 clamp(62px, 6.1vw, 98px) / 0.91 var(--a-font);
  letter-spacing: -0.075em;
}

.a-hero-copy > p {
  width: 100%;
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.a-watermark {
  position: absolute;
  right: -20px;
  bottom: -90px;
  width: 320px;
  opacity: 0.09;
  filter: brightness(0) invert(1);
  transform: rotate(-4deg);
}

.a-hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  background: #111915 url("./assets/photos/promenade.jpg") center/cover no-repeat;
}

.a-hero-media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(9, 17, 14, 0.42);
  content: "";
  pointer-events: none;
}

.a-hero-video-backdrop {
  position: absolute;
  z-index: 0;
  inset: -34px;
  width: calc(100% + 68px);
  height: calc(100% + 68px);
  object-fit: cover;
  opacity: 0.72;
  filter: blur(24px) saturate(0.82);
  transform: scale(1.05);
}

.a-hero-video-frame {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(56%, 370px);
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  background: #090c0b;
  transform: translateX(-50%);
}

.a-hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-reel-bar {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 12px 12px 12px 18px;
  color: var(--white);
  background: rgba(19, 25, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-reel-bar p {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
}

.hero-reel-bar strong {
  font-size: 15px;
}

.hero-reel-bar p span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.hero-video-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font: 700 11px / 1 var(--a-font);
  cursor: pointer;
}

.hero-video-toggle:hover,
.hero-video-toggle:focus-visible {
  color: var(--charcoal);
  background: var(--white);
}

.hero-video-toggle span[aria-hidden="true"] {
  font-size: 12px;
}

.a-quick-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--white);
  background: var(--charcoal);
}

.a-quick-nav a {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 96px;
  padding: 24px clamp(18px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  transition: color 180ms ease, background-color 180ms ease;
}

.a-quick-nav a:last-child {
  border-right: 0;
}

.a-quick-nav a:hover,
.a-quick-nav a:focus-visible {
  color: var(--charcoal);
  background: var(--sage);
}

.a-quick-nav strong {
  font-size: 15px;
}

.a-quick-nav span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.a-quick-nav a:hover span,
.a-quick-nav a:focus-visible span {
  color: rgba(34, 37, 40, 0.7);
}

.a-quick-nav b {
  position: absolute;
  right: 24px;
  bottom: 24px;
  font-size: 14px;
}

.a-tenant-strip {
  padding: 84px 0 0;
  background: var(--mist);
}

.tenant-strip-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  padding: 0 clamp(30px, 5vw, 80px);
}

.tenant-strip-head h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.tenant-strip-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.marquee-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--sage);
  background: transparent;
  border: 0;
  font: 800 9px/1 "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.marquee-toggle span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: var(--white);
  background: var(--deep);
  border-radius: 50%;
  font-size: 9px;
}

.logo-board {
  margin-top: 38px;
  overflow: hidden;
  background: var(--charcoal);
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}

.board-edge {
  display: flex;
  align-items: center;
  height: 25px;
  overflow: hidden;
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.56);
  background: var(--charcoal);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.24em;
  white-space: nowrap;
}

.board-edge-bottom {
  justify-content: flex-end;
  color: var(--sage);
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: tenant-marquee 34s linear infinite;
  will-change: transform;
}

.logo-group {
  display: flex;
  flex: 0 0 auto;
}

.logo-slot {
  display: grid;
  place-items: center;
  flex: 0 0 220px;
  height: 122px;
  padding: 28px 32px;
  background: var(--white);
  border-right: 1px solid rgba(34, 37, 40, 0.16);
  transition: background-color 180ms ease;
}

.logo-slot:hover {
  background: var(--mist);
}

.logo-slot img {
  width: 100%;
  max-width: 158px;
  max-height: 68px;
  object-fit: contain;
}

.logo-board:hover .logo-track,
.logo-board:focus-within .logo-track,
.logo-board.is-paused .logo-track {
  animation-play-state: paused;
}

@keyframes tenant-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.a-today {
  padding: 104px clamp(30px, 5vw, 80px) 116px;
  color: var(--charcoal);
  background: var(--white);
}

.today-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.today-heading h2 {
  margin: 0;
  font-size: clamp(44px, 4.8vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.today-heading > div > p {
  margin: 14px 0 0;
  color: var(--sage);
  font-size: 13px;
  font-weight: 700;
}

.today-heading > p {
  max-width: 360px;
  margin: 0;
  color: #52605a;
  font-size: 13px;
  line-height: 1.6;
}

.today-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--charcoal);
  border-left: 1px solid var(--charcoal);
}

.today-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
  min-height: 360px;
  padding: 28px;
  background: var(--white);
  border-right: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}

.today-card-dark {
  color: var(--white);
  background: var(--deep);
}

.today-card-sage {
  background: var(--sage);
}

.today-brand,
.today-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.today-brand img {
  width: 112px;
  height: 54px;
  object-fit: contain;
}

.today-card-dark .today-brand img {
  padding: 7px;
  background: var(--white);
}

.live-status,
.schedule-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  color: var(--deep);
  background: var(--mist);
  border: 1px solid rgba(25, 55, 55, 0.18);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.live-status[data-state="open"],
.schedule-status[data-state="open"] {
  color: #134d33;
  background: #dff2e7;
}

.live-status[data-state="closed"],
.schedule-status[data-state="closed"] {
  color: #783b32;
  background: #f4e5e1;
}

.live-status[data-state="unknown"],
.schedule-status[data-state="unknown"] {
  color: #5e5540;
  background: #f2eddd;
}

.today-card h3 {
  max-width: 320px;
  margin: 0;
  font-size: clamp(31px, 3vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.today-card > div > p {
  max-width: 320px;
  margin: 14px 0 0;
  color: #5f6964;
  font-size: 13px;
  line-height: 1.55;
}

.today-card-dark > div > p {
  color: rgba(255, 255, 255, 0.68);
}

.today-card-sage > div > p {
  color: rgba(34, 37, 40, 0.72);
}

.today-meta {
  align-items: flex-end;
  padding-top: 18px;
  border-top: 1px solid currentColor;
}

.today-meta > span {
  font-size: 11px;
  font-weight: 700;
}

.today-meta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
}

.a-discover {
  padding: 96px clamp(30px, 5vw, 80px) 120px;
}

.section-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(40px, 4vw, 64px);
  letter-spacing: -0.065em;
}

.a-card-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}

.a-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.a-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.a-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 46%;
  background: rgba(15, 25, 23, 0.76);
  content: "";
}

.a-card:hover img {
  transform: scale(1.035);
}

.a-card .card-copy {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  left: 30px;
}

.a-card .card-copy span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.a-card h3 {
  max-width: 360px;
  margin: 8px 0 0;
  font-size: clamp(25px, 2.4vw, 38px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.a-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.a-card > b {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  display: none;
  font-size: 20px;
}

.a-directory {
  padding: 100px clamp(30px, 5vw, 80px) 130px;
  background: var(--mist);
  border-top: 1px solid rgba(34, 37, 40, 0.16);
}

.directory-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.directory-heading h2 {
  margin: 0;
  font-size: clamp(44px, 4.8vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.directory-heading > p {
  max-width: 370px;
  margin: 0;
  color: #52605a;
  font-size: 12px;
  line-height: 1.65;
}

.directory-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.directory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.directory-filters button {
  min-height: 42px;
  padding: 0 17px;
  color: var(--charcoal);
  background: transparent;
  border: 1px solid rgba(34, 37, 40, 0.32);
  font: 700 11px / 1 var(--a-font);
  cursor: pointer;
}

.directory-filters button:hover,
.directory-filters button:focus-visible,
.directory-filters button.is-active {
  color: var(--white);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.directory-toolbar > p {
  margin: 0;
  color: #52605a;
  font-size: 11px;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--charcoal);
  border-left: 1px solid var(--charcoal);
}

.directory-column {
  min-width: 0;
  background: var(--white);
  border-right: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}

.directory-grid.is-filtered {
  grid-template-columns: minmax(0, 620px);
}

.directory-column[hidden] {
  display: none;
}

/* Altura fija (no min-height): la columna "Cuidado personal" lleva una línea de descripción
   extra y su contenido mide justo lo mismo que el piso, así que cualquier variación mínima de
   render de fuente la hacía 1px más alta que las otras dos. Con height fija las tres miden
   idéntico siempre, y 128px deja margen sobre los 126px que ocupa el contenido más alto. */
.directory-column > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 128px;
  padding: 27px 28px;
  color: var(--white);
  background: var(--green);
}

.directory-column:nth-child(2) > header {
  background: var(--deep);
}

.directory-column:nth-child(3) > header {
  color: var(--charcoal);
  background: var(--sage);
}

.directory-column > header span {
  margin-top: 8px;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.directory-column-title {
  min-width: 0;
}

.directory-column-title p {
  max-width: 260px;
  margin: 7px 0 0;
  color: rgba(34, 37, 40, 0.72);
  font-size: 10px;
  line-height: 1.45;
}

.directory-column h3 {
  margin: 0;
  font-size: clamp(23px, 2vw, 31px);
  letter-spacing: -0.05em;
}

.schedule-card {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 176px;
  padding: 46px 28px 26px;
  border-top: 1px solid rgba(34, 37, 40, 0.16);
}

.schedule-status {
  position: absolute;
  top: 14px;
  right: 14px;
}

.schedule-card:first-of-type {
  border-top: 0;
}

.schedule-card > img {
  width: 100%;
  max-width: 112px;
  max-height: 74px;
  object-fit: contain;
}

.schedule-card-text {
  grid-template-columns: 1fr;
  gap: 16px;
  align-content: center;
}

.schedule-card-text > strong {
  font-size: 20px;
  letter-spacing: -0.035em;
}

.schedule-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.schedule-card dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.schedule-card dt,
.schedule-card dd {
  margin: 0;
  font-size: 9px;
}

.schedule-card dt {
  color: var(--sage);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-card dd {
  font-weight: 700;
  text-align: right;
}

.directory-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 176px;
  padding: 28px 74px 28px 28px;
  color: var(--white);
  background: var(--charcoal);
  border-top: 1px solid var(--charcoal);
}

.directory-cta span {
  color: var(--sage);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-cta strong {
  margin-top: 8px;
  font-size: 19px;
  line-height: 1.2;
}

.directory-cta b {
  position: absolute;
  right: 28px;
  bottom: 28px;
  font-size: 19px;
}

.a-visit {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 610px;
  color: var(--white);
  background: var(--deep);
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px clamp(34px, 5vw, 78px);
}

.visit-copy h2 {
  max-width: 570px;
  margin: 0;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.visit-address {
  max-width: 450px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.5;
}

.visit-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.visit-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 58px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.visit-facts > div {
  min-width: 0;
  padding: 20px 18px 0 0;
}

.visit-facts dt,
.visit-facts dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
}

.visit-facts dt {
  margin-bottom: 8px;
  color: var(--sage);
  font-weight: 800;
}

.visit-facts dd {
  color: rgba(255, 255, 255, 0.78);
}

.visit-map {
  position: relative;
  min-width: 0;
  min-height: 500px;
  background: var(--mist);
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 610px;
  border: 0;
  filter: grayscale(1) contrast(0.88);
}

.visit-map-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  min-width: 245px;
  padding: 18px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(34, 37, 40, 0.24);
}

.visit-map-label strong {
  font-size: 15px;
}

.visit-map-label span {
  color: #68716d;
  font-size: 10px;
}

.a-social {
  padding: 106px clamp(30px, 5vw, 80px) 112px;
  background: var(--white);
}

.social-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.social-heading h2 {
  margin: 0;
  font-size: clamp(44px, 4.8vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.social-heading p {
  max-width: 440px;
  margin: 16px 0 0;
  color: #59645f;
  font-size: 13px;
  line-height: 1.6;
}

.social-controls {
  display: flex;
  border: 1px solid var(--charcoal);
}

.social-controls button {
  min-width: 46px;
  min-height: 46px;
  padding: 0 14px;
  color: var(--charcoal);
  background: var(--white);
  border: 0;
  border-right: 1px solid var(--charcoal);
  font: 700 10px / 1 var(--a-font);
  cursor: pointer;
}

.social-controls button:last-child {
  border-right: 0;
}

.social-controls button:hover,
.social-controls button:focus-visible {
  color: var(--white);
  background: var(--charcoal);
}

.social-carousel {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.social-carousel::-webkit-scrollbar {
  display: none;
}

.social-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 28vw);
  gap: 14px;
  width: max-content;
}

.social-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
  scroll-snap-align: start;
}

.social-card > img,
.social-card > video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-card::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 30%;
  background: rgba(13, 21, 18, 0.8);
  content: "";
}

.social-card-copy {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 6px;
}

.social-card-copy strong {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.social-card-copy span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.social-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(34, 37, 40, 0.24);
}

.social-foot p,
.social-foot span {
  margin: 0;
  font-size: 11px;
}

.social-foot span {
  color: #69736e;
}

.a-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 124px;
  padding: 24px clamp(30px, 5vw, 80px);
  background: var(--mist);
  border-top: 1px solid rgba(34, 37, 40, 0.2);
}

.footer-logo {
  width: 165px;
}

.a-footer nav {
  display: flex;
  gap: 26px;
}

.a-footer nav a,
.a-footer p {
  font-size: 11px;
  font-weight: 700;
}

.a-footer p {
  margin: 0;
  color: #62706a;
  text-align: right;
}

/* Propuesta B — Agenda cotidiana */
.concept-b {
  min-height: 1180px;
  color: var(--charcoal);
  background: #f7f8f7;
  font-family: "Manrope", sans-serif;
}

.b-header {
  background: #f7f8f7;
  border-color: var(--charcoal);
}

.b-search {
  display: inline-flex;
  gap: 18px;
  align-items: center;
}

.b-search span {
  font-size: 22px;
}

.b-hero {
  display: grid;
  grid-template-columns: 0.8fr 1.05fr 0.8fr;
  min-height: 700px;
  padding: 52px clamp(28px, 4vw, 72px) 62px;
  border-bottom: 1px solid var(--charcoal);
}

.b-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 48px;
}

.b-heading h1 {
  margin: 0 0 22px;
  font: 600 clamp(68px, 6.4vw, 104px) / 0.82 "IBM Plex Sans Condensed", sans-serif;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.b-heading p {
  max-width: 275px;
  margin: 0 0 38px;
  color: #626966;
  font-size: 15px;
  line-height: 1.55;
}

.b-timeline {
  align-self: center;
  border-top: 1px solid var(--charcoal);
}

.time-row {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 126px;
  padding: 18px 8px;
  border-bottom: 1px solid var(--charcoal);
  transition: padding 180ms ease, background-color 180ms ease;
}

.time-row:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: var(--mist);
}

.time-row.feature {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  padding-right: 18px;
  padding-left: 18px;
}

.time-row time {
  align-self: start;
  padding-top: 3px;
  font: 500 19px/1 "IBM Plex Sans Condensed", sans-serif;
}

.time-row div {
  display: grid;
  gap: 4px;
}

.time-row span,
.time-row small {
  color: inherit;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.67;
  text-transform: uppercase;
}

.time-row strong {
  font-size: 16px;
  letter-spacing: -0.025em;
}

.time-row b {
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.b-photo-stack {
  position: relative;
  min-width: 0;
  margin-left: 46px;
}

.b-photo {
  position: absolute;
  overflow: hidden;
}

.b-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b-photo-main {
  top: 10px;
  right: 0;
  width: 86%;
  height: 74%;
  border-radius: 170px 170px 0 0;
}

.b-photo-main img {
  object-position: 62% center;
}

.b-photo-small {
  right: 0;
  bottom: 0;
  width: 53%;
  height: 31%;
  border-radius: 999px;
  border: 8px solid #f7f8f7;
}

.b-weather {
  position: absolute;
  bottom: 18px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 148px;
  height: 148px;
  padding: 24px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 50%;
}

.b-weather span,
.b-weather small {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.b-weather strong {
  margin: 4px 0;
  font: 500 42px/1 "IBM Plex Sans Condensed", sans-serif;
}

.b-quick {
  padding: 54px clamp(28px, 4vw, 72px) 100px;
}

.b-quick > p {
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.b-quick > div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--charcoal);
}

.b-quick a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 0 22px;
  border-right: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  font: 600 clamp(16px, 1.5vw, 22px)/1 "IBM Plex Sans Condensed", sans-serif;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.b-quick a:first-child {
  border-left: 1px solid var(--charcoal);
}

.b-quick a:hover {
  color: var(--white);
  background: var(--green);
}

.b-quick span {
  color: var(--sage);
  font-size: 9px;
}

/* Propuesta C — Patio vivo */
.concept-c {
  min-height: 1300px;
  color: var(--deep);
  background: var(--mist);
  font-family: "Manrope", sans-serif;
}

.c-header {
  background: var(--mist);
  border-color: rgba(25, 55, 55, 0.22);
}

.c-logo {
  width: 165px;
}

.circle-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--deep);
  border-radius: 50%;
  font-size: 17px;
}

.c-hero {
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: 670px;
  padding: 58px clamp(32px, 5vw, 80px) 70px;
  background: var(--sage);
}

.c-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 30px;
}

.c-copy h1 {
  margin: 0 0 25px;
  font: 700 clamp(58px, 5.6vw, 88px) / 0.9 "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.065em;
}

.c-copy h1 em {
  color: var(--white);
  font-style: normal;
}

.c-copy p {
  max-width: 450px;
  margin: 0 0 34px;
  color: rgba(25, 55, 55, 0.8);
  font-size: 17px;
  line-height: 1.55;
}

.c-collage {
  position: relative;
  min-width: 0;
}

.c-shape {
  position: absolute;
  overflow: hidden;
  border: 6px solid var(--mist);
}

.c-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-shape-one {
  top: 0;
  right: 3%;
  width: 43%;
  height: 72%;
  border-radius: 50% 50% 48% 12%;
  transform: rotate(4deg);
}

.c-shape-one img {
  object-position: center 42%;
}

.c-shape-two {
  bottom: 1%;
  left: 0;
  width: 54%;
  height: 58%;
  border-radius: 48% 10% 48% 48%;
  transform: rotate(-4deg);
}

.c-shape-two img {
  object-position: 58% center;
}

.c-shape-three {
  right: 0;
  bottom: 0;
  width: 32%;
  height: 31%;
  border-radius: 50%;
}

.c-mark {
  position: absolute;
  z-index: 2;
  top: 17%;
  left: 17%;
  width: 170px;
  opacity: 0.88;
  filter: brightness(0) invert(1);
}

.c-collage .photo-label {
  top: auto;
  right: 0;
  bottom: -24px;
}

.c-experiences {
  padding: 90px clamp(32px, 5vw, 80px) 130px;
}

.c-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 52px;
}

.c-section-head h2 {
  margin: 0;
  font: 700 clamp(48px, 5vw, 78px) / 0.95 "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.06em;
}

.c-section-head p {
  max-width: 360px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.c-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 34px);
}

.c-pill {
  position: relative;
  display: block;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
  border-radius: 220px 220px 18px 18px;
}

.c-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 420ms ease, opacity 420ms ease;
}

.c-pill::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 39%;
  background: rgba(25, 55, 55, 0.86);
  content: "";
}

.c-pill:hover img {
  opacity: 1;
  transform: scale(1.035);
}

.c-pill > span {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--white);
  color: var(--deep);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  transform: translateX(-50%);
}

.c-pill > div {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 6px;
  text-align: center;
}

.c-pill strong {
  font: 700 clamp(31px, 3vw, 48px)/1 "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.05em;
}

.c-pill small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .review-bar {
    grid-template-columns: 190px 1fr;
  }

  .review-note {
    display: none;
  }

  .site-header {
    grid-template-columns: 190px 1fr auto;
  }

  .open-status,
  .c-header .header-actions > span {
    display: none;
  }

  .a-hero {
    grid-template-columns: 50% 50%;
  }

  .b-hero {
    grid-template-columns: 0.8fr 1.1fr;
  }

  .b-photo-stack {
    display: none;
  }

  .directory-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --review-h: 116px;
  }

  .review-bar {
    position: relative;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 16px;
  }

  .review-brand {
    text-align: center;
  }

  .review-tabs {
    gap: 5px;
    justify-content: flex-start;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .review-tabs::-webkit-scrollbar {
    display: none;
  }

  .review-tab {
    flex: 0 0 148px;
    justify-content: center;
    min-height: 38px;
    padding: 0 8px;
    font-size: 9px;
  }

  .review-tab span {
    display: none;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    min-height: 74px;
    padding: 0 20px;
  }

  .site-header .header-actions {
    flex: 0 0 auto;
  }

  .site-logo {
    width: 145px;
  }

  .site-header nav {
    display: none;
  }

  .header-actions .button,
  .b-search {
    min-height: 40px;
    padding: 0 14px;
    font-size: 9px;
  }

  .a-header .button {
    width: 42px;
    min-width: 42px;
    padding: 0;
    font-size: 0;
  }

  .a-header .button span {
    font-size: 14px;
  }

  .b-header .button {
    display: none;
  }

  .a-hero,
  .c-hero {
    grid-template-columns: 1fr;
  }

  .a-hero-copy {
    min-height: 540px;
    padding: 62px 28px;
  }

  .a-hero-copy::after {
    top: auto;
    right: 0;
    bottom: -55px;
    width: 100%;
    height: 58px;
    clip-path: polygon(0 0, 100% 0, 100% 15%, 0 100%);
  }

  .a-hero-media {
    min-height: 520px;
  }

  .a-hero-video-frame {
    width: min(74%, 310px);
  }

  .hero-reel-bar {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .hero-reel-bar p span {
    display: none;
  }

  .a-hero h1 {
    font-size: clamp(57px, 18vw, 78px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .a-quick-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .a-quick-nav a {
    min-height: 88px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .a-quick-nav a:nth-child(2) {
    border-right: 0;
  }

  .a-quick-nav b {
    right: 18px;
    bottom: 18px;
  }

  .a-tenant-strip {
    padding-top: 64px;
  }

  .a-today {
    padding: 72px 20px 84px;
  }

  .today-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .today-heading > p {
    max-width: 100%;
  }

  .today-grid {
    grid-template-columns: 1fr;
  }

  .today-card {
    min-height: 330px;
  }

  .tenant-strip-head,
  .directory-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .tenant-strip-actions {
    width: 100%;
    justify-content: space-between;
  }

  .logo-slot {
    flex-basis: 178px;
    height: 104px;
    padding: 23px 28px;
  }

  .a-directory {
    padding: 74px 20px 90px;
  }

  .directory-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .directory-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .directory-filters button {
    width: 100%;
  }

  .directory-grid {
    grid-template-columns: 1fr;
  }

  .directory-heading > p {
    max-width: 100%;
  }

  .a-visit {
    grid-template-columns: 1fr;
  }

  .visit-copy {
    padding: 72px 26px 76px;
  }

  .visit-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .visit-facts {
    grid-template-columns: 1fr;
  }

  .visit-facts > div {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .visit-map,
  .visit-map iframe {
    min-height: 440px;
  }

  .visit-map-label {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
  }

  .a-social {
    padding: 74px 20px 82px;
  }

  .social-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-track {
    grid-auto-columns: 82vw;
  }

  .social-card {
    min-height: 470px;
  }

  .social-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .a-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .a-footer nav {
    flex-wrap: wrap;
  }

  .a-footer p {
    text-align: left;
  }

  .section-intro,
  .c-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .a-card-grid,
  .c-pill-grid {
    grid-template-columns: 1fr;
  }

  .a-card,
  .c-pill {
    min-height: 460px;
  }

  .b-hero {
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }

  .b-heading {
    padding: 0 0 56px;
  }

  .b-heading h1 {
    font-size: 78px;
  }

  .time-row {
    grid-template-columns: 62px 1fr;
  }

  .time-row b {
    display: none;
  }

  .b-quick {
    padding: 48px 20px 80px;
  }

  .b-quick > div {
    grid-template-columns: 1fr;
  }

  .b-quick a {
    border-left: 1px solid var(--charcoal);
  }

  .c-hero {
    padding: 60px 24px 84px;
  }

  .c-copy {
    padding: 0 0 50px;
  }

  .c-copy h1 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .c-collage {
    min-height: 520px;
  }

  .c-shape-one {
    width: 50%;
  }

  .c-shape-two {
    width: 62%;
  }

  .c-mark {
    left: 12%;
    width: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .logo-marquee {
    overflow-x: auto;
  }

  .logo-track {
    animation: none;
  }

  .logo-group[aria-hidden="true"] {
    display: none;
  }

  .marquee-toggle {
    display: none;
  }

  .a-hero-video-backdrop {
    display: none;
  }

  .a-hero-media::after {
    background: rgba(9, 17, 14, 0.68);
  }
}
