/* ==========================================================================
   Tipografías locales
   ========================================================================== */

@font-face {
  font-family: "Baskerville BT";
  src: url("../fonts/baskerville/Baskervville-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baskerville BT";
  src: url("../fonts/baskerville/Baskervville-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Baskerville BT";
  src: url("../fonts/baskerville/Baskervville-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Variables Helora
   ========================================================================== */

:root {
  --helora-beige: #ECE4D7;
  --helora-stone: #D8D1C6;
  --helora-olive: #73795C;
  --helora-charcoal: #4E4F4F;
  --helora-white: #FFFFFF;
  --helora-dark: #252721;
  --font-display: "Baskerville BT", Baskerville, Georgia, serif;
  --font-body: "Montserrat", Arial, sans-serif;
  --heading-h2-family: "Baskerville BT", Baskerville, Georgia, serif;
  --heading-h2-size: clamp(34px, 3.2vw, 45px);
  --heading-h2-weight: 600;
  --heading-h2-line-height: 1.08;
  --heading-h2-letter-spacing: 0.08em;
  --container-wide: 1480px;
  --container-editorial: 1280px;
  --section-space: clamp(104px, 13vw, 210px);
  --section-space-small: clamp(64px, 8vw, 124px);
  --home-section-padding-block: clamp(55px, 6vw, 85px);
  --editorial-media-height: clamp(520px, 42vw, 720px);
  --text-body-size: clamp(15px, 1vw, 16px);
  --text-body-line-height: 1.7;
  --text-body-weight: 400;
  --text-lead-size: clamp(15px, 1.05vw, 17px);
  --text-lead-line-height: 1.7;
  --text-small-size: clamp(12px, 0.9vw, 14px);
  --text-small-line-height: 1.6;
  --page-gutter: clamp(18px, 3.3vw, 54px);
  --top-bar-height: 54px;
  --header-height: 35px;
  --header-compact-height: 32px;
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --border-soft: rgba(78, 79, 79, 0.2);
}

/* ==========================================================================
   Base global
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--helora-dark);
  background: var(--helora-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

a:hover {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--helora-olive);
  outline-offset: 4px;
}

::selection {
  color: var(--helora-white);
  background: var(--helora-olive);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1200;
  padding: 0.75rem 1rem;
  color: var(--helora-white);
  background: var(--helora-dark);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ==========================================================================
   Sistema editorial
   ========================================================================== */

.editorial-container {
  width: min(100% - (var(--page-gutter) * 2), var(--container-editorial));
  margin-inline: auto;
}

.section-spacious {
  padding-block: var(--section-space);
}

.section-intimate {
  padding-block: var(--section-space-small);
}

.home-section {
  padding-block: var(--home-section-padding-block);
}

.text-body,
.text-lead,
.text-small {
  font-family: var(--font-body);
  font-weight: var(--text-body-weight);
  letter-spacing: normal;
}

.text-body {
  font-size: var(--text-body-size);
  line-height: var(--text-body-line-height);
}

.text-lead {
  font-size: var(--text-lead-size);
  line-height: var(--text-lead-line-height);
}

.text-small {
  font-size: var(--text-small-size);
  line-height: var(--text-small-line-height);
}

#contenido-principal h2 {
  margin-top: 0;
  font-family: var(--heading-h2-family);
  font-size: var(--heading-h2-size);
  font-style: normal;
  font-weight: var(--heading-h2-weight);
  letter-spacing: var(--heading-h2-letter-spacing);
  line-height: var(--heading-h2-line-height);
  text-wrap: balance;
}

.section-beige {
  background: var(--helora-beige);
}

.section-dark {
  color: var(--helora-white);
  background: var(--helora-dark);
}

.section-olive {
  color: var(--helora-white);
  background: var(--helora-olive);
}

.editorial-label {
  margin: 0 0 0.9rem;
  font-family: var(--font-body);
  font-size: clamp(0.58rem, 0.64vw, 0.68rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.editorial-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.7vw, 5.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.editorial-copy {
  max-width: 640px;
  color: var(--helora-charcoal);
}

.editorial-copy p {
  margin: 0;
  font-size: clamp(0.88rem, 0.95vw, 1rem);
  line-height: 1.82;
}

.editorial-caption {
  margin-top: 0.8rem;
  color: var(--helora-charcoal);
  font-size: 0.72rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.full-bleed {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.media-full,
.media-offset,
.image-reveal {
  overflow: hidden;
  background: var(--helora-stone);
}

.media-full img,
.media-offset img,
.image-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link-editorial {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.62rem 0.92rem;
  border: 1px solid currentColor;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 240ms var(--ease-soft),
    background-color 240ms var(--ease-soft),
    border-color 240ms var(--ease-soft);
}

.button--light {
  color: var(--helora-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.68);
}

.button--light:hover {
  color: var(--helora-dark);
  background: var(--helora-white);
  border-color: var(--helora-white);
}

.button--ghost {
  color: var(--helora-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
}

.button--ghost:hover {
  color: var(--helora-dark);
  background: var(--helora-white);
  border-color: var(--helora-white);
}

/* ==========================================================================
   Barra superior y header
   ========================================================================== */

.top-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 930;
  height: var(--top-bar-height);
  color: var(--helora-white);
  background: #1f1d1d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    height 260ms var(--ease-soft),
    background-color 260ms var(--ease-soft);
}

.top-bar__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2.6vw, 3rem);
  width: min(100% - 96px, var(--container-wide));
  height: 100%;
  margin-inline: auto;
}

.top-bar.is-scrolled {
  background: #171616;
}

.top-bar.is-scrolled .top-bar__logo--light {
  opacity: 0;
}

.top-bar.is-scrolled .top-bar__logo--dark {
  opacity: 1;
}

.top-bar__links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(2rem, 3vw, 3.4rem);
  min-width: 0;
}

.top-bar__links a {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.top-bar__links a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 0.58rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-0.18rem) rotate(45deg);
}

.top-bar__brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(168px, 13vw, 240px);
  height: 38px;
  overflow: hidden;
  text-decoration: none;
}

.top-bar__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  transition:
    opacity 220ms var(--ease-soft),
    filter 220ms var(--ease-soft);
}

.top-bar__logo--light {
  filter: invert(1) grayscale(1) brightness(1.7) contrast(0.95);
}

.top-bar__logo--dark {
  opacity: 0;
}

.top-bar__meta,
.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  min-width: 0;
}

.top-bar__meta {
  gap: clamp(0.86rem, 1.5vw, 1.4rem);
}

.top-bar a,
.language-switch a {
  text-decoration: none;
}

.language-switch a[aria-current="page"] {
  color: var(--helora-white);
}

.top-bar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0.36rem 0.76rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--helora-white);
  line-height: 1;
  white-space: nowrap;
  transition:
    color 220ms var(--ease-soft),
    background-color 220ms var(--ease-soft),
    border-color 220ms var(--ease-soft);
}

.top-bar__cta:hover {
  color: var(--helora-dark);
  background: var(--helora-white);
}

.site-header {
  position: fixed;
  inset: var(--top-bar-height) 0 auto;
  z-index: 920;
  color: var(--helora-dark);
  background: #f2eee7;
  border-bottom: 1px solid rgba(78, 79, 79, 0.12);
  transition:
    color 260ms var(--ease-soft),
    background-color 260ms var(--ease-soft),
    border-color 260ms var(--ease-soft),
    backdrop-filter 260ms var(--ease-soft);
}

.site-header.is-scrolled,
.site-header.is-menu-active {
  color: var(--helora-dark);
  background: rgba(242, 238, 231, 0.96);
  border-bottom-color: rgba(78, 79, 79, 0.18);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: var(--header-height);
  width: min(100% - 120px, var(--container-wide));
  margin-inline: auto;
  transition: min-height 260ms var(--ease-soft);
}

.site-header.is-scrolled .site-header__inner,
.site-header.is-menu-active .site-header__inner {
  min-height: var(--header-compact-height);
}

.site-header__brand {
  position: relative;
  display: inline-flex;
  grid-column: 2;
  grid-row: 1;
  align-items: center;
  justify-content: center;
  width: clamp(58px, 5.4vw, 76px);
  height: clamp(34px, 3.9vw, 42px);
  overflow: hidden;
  text-decoration: none;
}

.site-header__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 220ms var(--ease-soft);
}

.site-header__logo--dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.site-header.is-scrolled .site-header__logo--light,
.site-header.is-menu-active .site-header__logo--light {
  opacity: 0;
}

.site-header.is-scrolled .site-header__logo--dark,
.site-header.is-menu-active .site-header__logo--dark {
  opacity: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.8rem, 2.15vw, 3rem);
  min-width: 0;
  width: 100%;
}

.site-nav a,
.site-header__menu-button {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--header-height);
  padding-block: 0;
  white-space: nowrap;
}

.site-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav__item::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 12px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-soft);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav__item.is-submenu-open > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 940;
  display: grid;
  min-width: max-content;
  max-width: min(360px, calc(100vw - 48px));
  padding: 0.72rem 1rem;
  margin: 0;
  color: var(--helora-dark);
  background: rgba(242, 238, 231, 0.98);
  border-top: 1px solid rgba(78, 79, 79, 0.14);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition:
    opacity 180ms var(--ease-soft),
    transform 180ms var(--ease-soft);
}

.site-nav__item:hover .site-nav__submenu,
.site-nav__item:focus-within .site-nav__submenu,
.site-nav__item.is-submenu-open .site-nav__submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav__submenu a {
  min-height: auto;
  padding-block: 0.46rem;
  color: var(--helora-dark);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.site-nav__submenu a::after {
  bottom: 0.28rem;
}

.site-header__menu-button {
  display: none;
  align-items: center;
  gap: 0.64rem;
  min-height: 34px;
  padding: 0;
  color: var(--helora-white);
  background: transparent;
}

.site-header__menu-icon {
  position: relative;
  width: 28px;
  height: 9px;
}

.site-header__menu-icon::before,
.site-header__menu-icon::after {
  content: "";
  position: absolute;
  right: 0;
  width: 28px;
  height: 1px;
  background: currentColor;
  transition:
    transform 240ms var(--ease-soft),
    width 240ms var(--ease-soft);
}

.site-header__menu-icon::before {
  top: 0;
}

.site-header__menu-icon::after {
  bottom: 0;
  width: 18px;
}

.site-header__menu-button:hover .site-header__menu-icon::after {
  width: 28px;
}

/* ==========================================================================
   Menú fullscreen
   ========================================================================== */

.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  visibility: hidden;
  pointer-events: none;
}

.fullscreen-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.fullscreen-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 39, 33, 0.58);
  opacity: 0;
  transition: opacity 360ms var(--ease-soft);
}

.fullscreen-menu.is-open .fullscreen-menu__backdrop {
  opacity: 1;
}

.fullscreen-menu__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 1480px);
  min-height: 100svh;
  margin-inline: auto;
  color: var(--helora-dark);
  background: var(--helora-beige);
  opacity: 0;
  transform: translateY(-18px);
  transition:
    opacity 380ms var(--ease-soft),
    transform 380ms var(--ease-soft);
}

.fullscreen-menu.is-open .fullscreen-menu__panel {
  opacity: 1;
  transform: translateY(0);
}

.fullscreen-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(var(--header-compact-height) + 10px);
  width: min(100% - (var(--page-gutter) * 2), var(--container-editorial));
  margin-inline: auto;
  border-bottom: 1px solid rgba(78, 79, 79, 0.16);
}

.fullscreen-menu__brand {
  width: min(86px, 28vw);
  height: 48px;
  overflow: hidden;
}

.fullscreen-menu__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fullscreen-menu__close {
  position: relative;
  width: 46px;
  height: 46px;
  color: var(--helora-dark);
  background: transparent;
}

.fullscreen-menu__close span::before,
.fullscreen-menu__close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 26px;
  height: 1px;
  background: currentColor;
}

.fullscreen-menu__close span::before {
  transform: rotate(45deg);
}

.fullscreen-menu__close span::after {
  transform: rotate(-45deg);
}

.fullscreen-menu__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 34vw);
  gap: clamp(2rem, 6vw, 6rem);
  width: min(100% - (var(--page-gutter) * 2), var(--container-editorial));
  margin-inline: auto;
  padding-block: clamp(2rem, 4.6vw, 4.4rem);
}

.fullscreen-menu__list {
  display: grid;
  gap: clamp(0.72rem, 1.2vw, 1.05rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.fullscreen-menu__list > li {
  display: grid;
  gap: 0.48rem;
  padding-bottom: clamp(0.72rem, 1vw, 0.96rem);
  border-bottom: 1px solid rgba(78, 79, 79, 0.15);
}

.fullscreen-menu__list a,
.fullscreen-menu__list-button {
  text-decoration: none;
}

.fullscreen-menu__list > li > a,
.fullscreen-menu__list-button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: baseline;
  gap: clamp(0.8rem, 1.4vw, 1.2rem);
  width: 100%;
  padding: 0;
  color: currentColor;
  background: transparent;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 4.1rem);
  line-height: 0.96;
  text-align: left;
}

.fullscreen-menu__list > li > a span,
.fullscreen-menu__list-button span {
  color: var(--helora-olive);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
}

.fullscreen-menu__list-button::after {
  content: "";
  justify-self: end;
  width: 0.42em;
  height: 0.42em;
  margin-left: 0.6rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-0.16em) rotate(45deg);
  transition: transform 200ms var(--ease-soft);
}

.fullscreen-menu__list-button[aria-expanded="true"]::after {
  transform: translateY(0.08em) rotate(225deg);
}

.fullscreen-menu__list ul {
  display: none;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  padding: 0 0 0 clamp(48px, 5vw, 70px);
  margin: 0;
  list-style: none;
}

.fullscreen-menu__list > li.is-mobile-submenu-open ul {
  display: flex;
}

.fullscreen-menu__list ul a {
  color: var(--helora-charcoal);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.fullscreen-menu__list a:hover,
.fullscreen-menu__list-button:hover {
  color: var(--helora-olive);
}

.fullscreen-menu__media {
  position: sticky;
  top: 2rem;
  align-self: start;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--helora-stone);
}

.fullscreen-menu__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 260ms var(--ease-soft),
    transform 700ms var(--ease-soft);
}

.fullscreen-menu__media.is-changing img {
  opacity: 0.3;
  transform: scale(1.025);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  --hero-object-position: center center;

  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--helora-white);
  background: var(--helora-dark);
}

.hero__carousel {
  position: absolute;
  inset: 0;
}

.hero__carousel,
.hero__carousel .carousel-inner,
.hero__carousel .carousel-item,
.hero__picture,
.hero__image {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero__picture,
.hero__image {
  display: block;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-object-position);
}

.hero__carousel .carousel-item {
  transition-duration: 1.35s;
}

.hero__slide--restaurant {
  --hero-object-position: center 50%;
}

.hero__slide--waterfall {
  --hero-object-position: center 48%;
}

.hero__slide--firepit {
  --hero-object-position: center 52%;
}

.hero__slide--barbecue {
  --hero-object-position: center 48%;
}

.hero__slide--jacuzzi {
  --hero-object-position: center 50%;
}

.hero__slide--facade {
  --hero-object-position: center 54%;
}

.hero__control {
  z-index: 3;
  width: clamp(46px, 6vw, 76px);
  opacity: 0.68;
  transition: opacity 220ms var(--ease-soft);
}

.hero__control:hover,
.hero__control:focus-visible {
  opacity: 1;
}

.hero__control .carousel-control-prev-icon,
.hero__control .carousel-control-next-icon {
  width: clamp(1.15rem, 2vw, 1.75rem);
  height: clamp(1.15rem, 2vw, 1.75rem);
}

.hero__indicators {
  z-index: 4;
  right: clamp(3.4rem, 5vw, 5rem);
  bottom: clamp(1rem, 2vw, 1.6rem);
  left: clamp(3.4rem, 5vw, 5rem);
  gap: 0.52rem;
  margin: 0;
}

.hero__indicators [data-bs-target] {
  width: 28px;
  height: 2px;
  margin: 0;
  border: 0;
  background-color: var(--helora-white);
  opacity: 0.42;
}

.hero__indicators .active {
  opacity: 0.96;
}

.hero__pause {
  position: absolute;
  right: var(--page-gutter);
  bottom: clamp(0.72rem, 1.65vw, 1.25rem);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  color: var(--helora-white);
  background: rgba(23, 25, 20, 0.18);
  transition:
    background-color 220ms var(--ease-soft),
    border-color 220ms var(--ease-soft);
}

.hero__pause:hover,
.hero__pause:focus-visible {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(23, 25, 20, 0.34);
}

.hero__pause span {
  width: 11px;
  height: 13px;
  border-right: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.hero__pause[aria-pressed="true"] span {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
  border-right: 0;
}

/* ==========================================================================
   Introducción editorial Helora
   ========================================================================== */

.helora-intro-editorial {
  overflow: hidden;
  background: var(--helora-white);
}

.helora-intro-editorial__container {
  width: min(100% - (var(--page-gutter) * 2), var(--container-wide));
  padding-inline: 0;
}

.helora-intro-editorial__top {
  max-width: 920px;
  margin-inline: auto;
}

.helora-intro-editorial__top h2 {
  max-width: 720px;
  margin: 0 auto clamp(25px, 2.2vw, 35px);
  color: var(--helora-dark);
  text-transform: uppercase;
}

.helora-intro-editorial__copy {
  display: grid;
  gap: clamp(20px, 2vw, 28px);
  max-width: 860px;
  margin-inline: auto;
}

.helora-intro-editorial__copy p {
  margin: 0;
  color: var(--helora-charcoal);
}

.helora-intro-editorial__bottom {
  --bs-gutter-x: clamp(2rem, 5.8vw, 6.8rem);

  margin-top: clamp(55px, 6vw, 75px);
}

.helora-intro-editorial__aside {
  max-width: 320px;
  padding-top: clamp(0.4rem, 1vw, 1rem);
}

.helora-intro-editorial__aside h3,
.helora-intro-editorial__aside a {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.helora-intro-editorial__aside h3 {
  margin: 0 0 1rem;
  color: var(--helora-dark);
  font-size: 0.72rem;
}

.helora-intro-editorial__aside p {
  margin: 0 0 1.45rem;
  color: var(--helora-charcoal);
}

.helora-intro-editorial__aside a {
  position: relative;
  display: inline-flex;
  color: var(--helora-dark);
  font-size: 0.68rem;
  text-decoration: none;
}

.helora-intro-editorial__aside a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 220ms var(--ease-soft);
}

.helora-intro-editorial__aside a:hover::after,
.helora-intro-editorial__aside a:focus-visible::after {
  transform: scaleX(0.35);
}

.helora-intro-editorial__media {
  position: relative;
  min-height: clamp(420px, 48vw, 720px);
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
  background: transparent;
  line-height: 0;
}

.helora-intro-editorial__carousel,
.helora-intro-editorial__carousel .carousel-inner,
.helora-intro-editorial__carousel .carousel-item {
  width: 100%;
  height: 100%;
  min-height: inherit;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
  background: transparent;
  line-height: 0;
}

.helora-intro-editorial__carousel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.helora-intro-editorial__carousel .carousel-item {
  transition-duration: 1.15s;
}

.helora-intro-editorial__control {
  width: clamp(44px, 5vw, 70px);
  opacity: 0.74;
  transition: opacity 220ms var(--ease-soft);
}

.helora-intro-editorial__control:hover,
.helora-intro-editorial__control:focus-visible {
  opacity: 1;
}

.helora-intro-editorial__control .carousel-control-prev-icon,
.helora-intro-editorial__control .carousel-control-next-icon {
  width: clamp(1.1rem, 1.7vw, 1.55rem);
  height: clamp(1.1rem, 1.7vw, 1.55rem);
  filter: drop-shadow(0 1px 8px rgba(37, 39, 33, 0.3));
}

/* ==========================================================================
   Branded Residences editorial
   ========================================================================== */

.branded-residences-section {
  overflow: hidden;
  color: var(--helora-charcoal);
  background: var(--helora-white);
}

.branded-residences-section__inner {
  --bs-gutter-x: 0;
  width: min(100%, 1800px);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 90px);
}

.branded-residences-section__intro {
  max-width: 980px;
  margin-inline: auto;
}

.branded-residences-section__eyebrow,
.branded-residences-section__aside h3,
.branded-residences-section__aside a {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.36em;
  line-height: 1.2;
  text-transform: uppercase;
}

.branded-residences-section__eyebrow {
  margin: 0 0 clamp(18px, 1.6vw, 28px);
  color: var(--helora-olive);
  font-size: clamp(0.68rem, 0.72vw, 0.78rem);
}

.branded-residences-section__intro h2 {
  margin: 0 auto clamp(30px, 2.4vw, 42px);
  color: var(--helora-dark);
  text-transform: uppercase;
}

.branded-residences-section__intro h2 span {
  display: block;
}

.branded-residences-section__copy {
  display: grid;
  gap: clamp(20px, 1.8vw, 30px);
  max-width: 820px;
  margin-inline: auto;
}

.branded-residences-section__copy p {
  margin: 0;
  color: var(--helora-charcoal);
}

.branded-residences-section__showcase {
  margin-top: clamp(55px, 6vw, 85px);
}

.branded-residences-section__aside {
  max-width: 320px;
  padding-top: clamp(30px, 4vw, 60px);
}

.branded-residences-section__aside h3 {
  margin: 0 0 clamp(1.25rem, 1.9vw, 2rem);
  color: var(--helora-olive);
  font-size: clamp(0.8125rem, 0.78vw, 0.9375rem);
}

.branded-residences-section__aside-copy {
  display: grid;
  gap: clamp(1.5rem, 2vw, 2.2rem);
  margin-bottom: clamp(2rem, 3vw, 3.2rem);
}

.branded-residences-section__aside p {
  margin: 0;
  color: var(--helora-charcoal);
}

.branded-residences-section__aside a {
  position: relative;
  display: inline-flex;
  color: var(--helora-olive);
  font-size: clamp(0.6875rem, 0.68vw, 0.8125rem);
  letter-spacing: 0.2em;
  text-decoration: none;
}

.branded-residences-section__aside a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 220ms var(--ease-soft);
}

.branded-residences-section__aside a:hover::after,
.branded-residences-section__aside a:focus-visible::after {
  transform: scaleX(0.36);
}

.branded-residences-section__media {
  position: relative;
  min-height: var(--editorial-media-height);
  overflow: hidden;
  background: transparent;
  line-height: 0;
}

.branded-residences-section__carousel,
.branded-residences-section__carousel .carousel-inner,
.branded-residences-section__carousel .carousel-item {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: transparent;
  line-height: 0;
}

.branded-residences-section__carousel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.branded-residences-section__carousel .carousel-item {
  transition-duration: 1.15s;
}

.branded-residences-section__control {
  width: clamp(46px, 5.2vw, 76px);
  opacity: 0.82;
  transition: opacity 220ms var(--ease-soft);
}

.branded-residences-section__control:hover,
.branded-residences-section__control:focus-visible {
  opacity: 1;
}

.branded-residences-section__control .carousel-control-prev-icon,
.branded-residences-section__control .carousel-control-next-icon {
  width: clamp(1.15rem, 1.5vw, 1.55rem);
  height: clamp(1.15rem, 1.5vw, 1.55rem);
  filter: drop-shadow(0 1px 8px rgba(37, 39, 33, 0.34));
}

/* ==========================================================================
   Longea District editorial
   ========================================================================== */

.longea-district {
  overflow: hidden;
  color: var(--helora-charcoal);
  background: #f6f2eb;
}

.longea-district__inner {
  --bs-gutter-x: 0;
  width: min(100%, 1800px);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 90px);
}

.longea-district__intro {
  max-width: 980px;
  margin-inline: auto;
}

.longea-district__eyebrow,
.longea-district__aside h3,
.longea-district__aside a {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.36em;
  line-height: 1.2;
  text-transform: uppercase;
}

.longea-district__eyebrow {
  margin: 0 0 clamp(18px, 1.6vw, 28px);
  color: var(--helora-olive);
  font-size: clamp(0.68rem, 0.72vw, 0.78rem);
}

.longea-district__intro h2 {
  margin: 0 auto clamp(30px, 2.4vw, 42px);
  color: var(--helora-charcoal);
  text-transform: uppercase;
}

.longea-district__intro h2 span {
  display: block;
}

.longea-district__copy {
  display: grid;
  gap: clamp(20px, 1.8vw, 30px);
  max-width: 820px;
  margin-inline: auto;
}

.longea-district__copy p {
  margin: 0;
  color: var(--helora-charcoal);
}

.longea-district__showcase {
  margin-top: clamp(55px, 6vw, 85px);
}

.longea-district__aside {
  max-width: 320px;
  padding-top: clamp(30px, 4vw, 60px);
}

.longea-district__aside h3 {
  margin: 0 0 clamp(1.25rem, 1.9vw, 2rem);
  color: var(--helora-olive);
  font-size: clamp(0.8125rem, 0.78vw, 0.9375rem);
}

.longea-district__aside-copy {
  display: grid;
  gap: clamp(1.5rem, 2vw, 2.2rem);
  margin-bottom: clamp(2rem, 3vw, 3.2rem);
}

.longea-district__aside p {
  margin: 0;
  color: var(--helora-charcoal);
}

.longea-district__aside a {
  position: relative;
  display: inline-flex;
  color: var(--helora-olive);
  font-size: clamp(0.6875rem, 0.68vw, 0.8125rem);
  letter-spacing: 0.2em;
  text-decoration: none;
}

.longea-district__aside a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 220ms var(--ease-soft);
}

.longea-district__aside a:hover::after,
.longea-district__aside a:focus-visible::after {
  transform: scaleX(0.36);
}

.longea-district__media {
  position: relative;
  min-height: var(--editorial-media-height);
  overflow: hidden;
  background: transparent;
  line-height: 0;
}

.longea-district__carousel,
.longea-district__carousel .carousel-inner,
.longea-district__carousel .carousel-item {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: transparent;
  line-height: 0;
}

.longea-district__carousel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--longea-object-position, center center);
}

.longea-district__slide--access {
  --longea-object-position: 50% 50%;
}

.longea-district__slide--facade-main {
  --longea-object-position: 48% 50%;
}

.longea-district__slide--facade-three {
  --longea-object-position: 52% 50%;
}

.longea-district__carousel .carousel-item {
  transition-duration: 1.15s;
}

.longea-district__control {
  width: clamp(46px, 5.2vw, 76px);
  opacity: 0.82;
  transition: opacity 220ms var(--ease-soft);
}

.longea-district__control:hover,
.longea-district__control:focus-visible {
  opacity: 1;
}

.longea-district__control .carousel-control-prev-icon,
.longea-district__control .carousel-control-next-icon {
  width: clamp(1.15rem, 1.5vw, 1.55rem);
  height: clamp(1.15rem, 1.5vw, 1.55rem);
  filter: drop-shadow(0 1px 8px rgba(37, 39, 33, 0.34));
}

/* ==========================================================================
   Sensorial Path of Life
   ========================================================================== */

.sensorial-path-section {
  overflow: hidden;
  color: var(--helora-charcoal);
  background: var(--helora-white);
}

.sensorial-path-section__main {
  --bs-gutter-x: 0;
  width: min(100%, 1800px);
  margin-inline: auto;
  margin-bottom: clamp(55px, 6vw, 85px);
  padding-inline: clamp(24px, 5vw, 90px);
}

.sensorial-path-section__content {
  max-width: 590px;
}

.sensorial-path-section__eyebrow {
  margin: 0 0 clamp(22px, 2vw, 32px);
  color: var(--helora-olive);
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 0.78vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sensorial-path-section__title {
  margin: 0;
  color: var(--helora-dark);
  text-transform: uppercase;
}

.sensorial-path-section__title span {
  display: block;
}

.sensorial-path-section__accent {
  display: block;
  width: clamp(45px, 4vw, 65px);
  height: 1px;
  margin-block: clamp(28px, 3.2vw, 44px);
  background: var(--helora-olive);
}

.sensorial-path-section__copy {
  display: grid;
  gap: clamp(1.2rem, 1.8vw, 1.8rem);
  max-width: 570px;
}

.sensorial-path-section__copy p {
  margin: 0;
  color: var(--helora-charcoal);
}

.sensorial-path-section__cta {
  position: relative;
  display: inline-flex;
  margin-top: clamp(2.1rem, 3vw, 3.5rem);
  color: var(--helora-olive);
  font-family: var(--font-body);
  font-size: clamp(0.6875rem, 0.68vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.sensorial-path-section__cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 220ms var(--ease-soft);
}

.sensorial-path-section__cta:hover::after,
.sensorial-path-section__cta:focus-visible::after {
  transform: scaleX(0.38);
}

.sensorial-path-section__hero-media {
  min-height: var(--editorial-media-height);
  margin: 0;
  overflow: hidden;
  line-height: 0;
}

.sensorial-path-section__hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--sensorial-hero-position, 50% 50%);
}

.sensorial-path-section__pillars {
  width: 100%;
  background: #f6f2eb;
}

.sensorial-path-section__pillar-image,
.sensorial-path-section__pillar {
  min-height: clamp(360px, 28vw, 500px);
  margin: 0;
}

.sensorial-path-section__pillar-image {
  overflow: hidden;
  line-height: 0;
}

.sensorial-path-section__pillar-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--sensorial-pillar-position, center center);
}

.sensorial-path-section__pillar-image--nature {
  --sensorial-pillar-position: 50% 50%;
}

.sensorial-path-section__pillar-image--wellbeing {
  --sensorial-pillar-position: 50% 52%;
}

.sensorial-path-section__pillar-image--community {
  --sensorial-pillar-position: 50% 50%;
}

.sensorial-path-section__pillar {
  display: grid;
  place-items: center;
  padding: clamp(2rem, 3vw, 3.5rem);
  background: #f6f2eb;
  text-align: center;
}

.sensorial-path-section__pillar > * {
  max-width: 260px;
}

.sensorial-path-section__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  margin-bottom: clamp(1.1rem, 1.8vw, 1.8rem);
  color: var(--helora-olive);
}

.sensorial-path-section__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sensorial-path-section__pillar h3 {
  margin: 0 0 clamp(1rem, 1.4vw, 1.45rem);
  color: var(--helora-dark);
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 0.76vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sensorial-path-section__pillar p {
  margin: 0;
  color: var(--helora-charcoal);
}

.sensorial-path-section__closing {
  display: grid;
  justify-items: center;
  padding-block: clamp(38px, 4vw, 60px);
  padding-inline: clamp(24px, 5vw, 90px);
  background: var(--helora-white);
  text-align: center;
}

.sensorial-path-section__closing p {
  margin: 0;
  color: var(--helora-dark);
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.2vw, 1.0625rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1.5;
  text-transform: uppercase;
}

.sensorial-path-section__closing span {
  display: block;
  width: min(100%, 560px);
  height: 1px;
  margin-block: clamp(1.4rem, 2.1vw, 2.2rem) clamp(0.75rem, 1.2vw, 1.2rem);
  background: rgba(115, 121, 92, 0.62);
}

.sensorial-path-section__closing img {
  width: clamp(18px, 1.6vw, 24px);
  height: auto;
}

/* ==========================================================================
   Lifespan 360 Elite Private Club
   ========================================================================== */

.lifespan-360-section {
  overflow: hidden;
  color: var(--helora-dark);
  background: var(--helora-white);
}

.lifespan-360-section__hero {
  min-height: clamp(520px, 42vw, 700px);
  color: var(--helora-white);
  background: #11120f;
}

.lifespan-360-section__hero > .row {
  min-height: inherit;
}

.lifespan-360-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 590px;
  padding: clamp(45px, 5vw, 75px);
}

.lifespan-360-section__eyebrow {
  margin: 0 0 clamp(24px, 2vw, 32px);
  color: var(--helora-olive);
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 0.78vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lifespan-360-section__title {
  margin: 0;
  color: #f6f2eb;
  text-transform: uppercase;
}

.lifespan-360-section__title span {
  display: block;
}

.lifespan-360-section__accent {
  display: block;
  width: clamp(45px, 4vw, 65px);
  height: 1px;
  margin: 22px 0 28px;
  background: var(--helora-olive);
  opacity: 0.78;
}

.lifespan-360-section__copy {
  display: grid;
  gap: clamp(1.2rem, 1.8vw, 1.8rem);
  max-width: 560px;
}

.lifespan-360-section__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.lifespan-360-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  margin-top: clamp(2.1rem, 3vw, 3.4rem);
  padding-bottom: 9px;
  border-bottom: 1px solid currentColor;
  color: var(--helora-olive);
  font-family: var(--font-body);
  font-size: clamp(0.6875rem, 0.68vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.21em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms var(--ease-soft);
}

.lifespan-360-section__cta > span[aria-hidden="true"] {
  position: relative;
  width: 32px;
  height: 1px;
  background: currentColor;
}

.lifespan-360-section__cta > span[aria-hidden="true"]::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.lifespan-360-section__cta:hover,
.lifespan-360-section__cta:focus-visible {
  color: #a3a87a;
}

.lifespan-360-section__hero-media {
  min-height: inherit;
  margin: 0;
  overflow: hidden;
  line-height: 0;
}

.lifespan-360-section__hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--lifespan-hero-position, 50% 50%);
}

.lifespan-360-section__pillars {
  background: #f6f2eb;
}

.lifespan-360-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #f6f2eb;
}

.lifespan-360-card + .lifespan-360-card {
  border-left: 1px solid rgba(78, 79, 79, 0.12);
}

.lifespan-360-card__media {
  height: clamp(220px, 18vw, 330px);
  margin: 0;
  overflow: hidden;
  line-height: 0;
}

.lifespan-360-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--lifespan-card-position, center center);
}

.lifespan-360-card__media--truage {
  --lifespan-card-position: 50% 50%;
}

.lifespan-360-card__media--lifespanning {
  --lifespan-card-position: 50% 50%;
}

.lifespan-360-card__media--recovery {
  --lifespan-card-position: 50% 50%;
}

.lifespan-360-card__media--optimization {
  --lifespan-card-position: 50% 50%;
}

.lifespan-360-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  min-height: clamp(260px, 20vw, 360px);
  padding: clamp(28px, 3vw, 48px) clamp(24px, 2.5vw, 38px);
  text-align: center;
}

.lifespan-360-card__icon {
  display: grid;
  place-items: center;
  width: clamp(42px, 3.2vw, 50px);
  height: clamp(42px, 3.2vw, 50px);
  color: var(--helora-white);
  background: var(--helora-olive);
}

.lifespan-360-card__icon svg {
  width: 52%;
  height: 52%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lifespan-360-card h3 {
  max-width: 310px;
  margin: clamp(18px, 1.6vw, 24px) auto 0;
  color: var(--helora-dark);
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.35;
  text-transform: uppercase;
}

.lifespan-360-card__line {
  display: block;
  width: clamp(32px, 3vw, 48px);
  height: 1px;
  margin: 18px auto 20px;
  background: var(--helora-olive);
}

.lifespan-360-card p {
  max-width: 310px;
  margin: 0 auto;
  color: var(--helora-charcoal);
}

/* ==========================================================================
   Residencias Helora
   ========================================================================== */

.residences-section {
  overflow: hidden;
  color: var(--helora-charcoal);
  background: #f6f2eb;
}

.residences-section__intro {
  max-width: 1050px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 90px);
  text-align: center;
}

.residences-section__eyebrow {
  margin: 0 0 clamp(18px, 1.7vw, 26px);
  color: var(--helora-olive);
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 0.78vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1.2;
  text-transform: uppercase;
}

.residences-section__title {
  margin: 0;
  color: var(--helora-charcoal);
  text-transform: uppercase;
}

.residences-section__title span {
  display: block;
}

.residences-section__accent {
  display: block;
  width: clamp(45px, 3.5vw, 60px);
  height: 1px;
  margin: clamp(24px, 2.2vw, 32px) auto clamp(26px, 2.5vw, 36px);
  background: var(--helora-olive);
}

.residences-section__lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--helora-charcoal);
}

.residences-section__grid {
  width: min(100% - (var(--page-gutter) * 2), 1800px);
  margin: clamp(45px, 5vw, 75px) auto 0;
  background: #f8f5ee;
}

.residence-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #f8f5ee;
}

.residence-card + .residence-card {
  border-left: 1px solid rgba(90, 90, 70, 0.16);
}

.residence-card__media {
  position: relative;
  height: clamp(260px, 21vw, 390px);
  margin: 0;
  overflow: hidden;
  line-height: 0;
}

.residence-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--residence-object-position, center center);
}

.residence-card__media--two-bedrooms {
  --residence-object-position: 50% 50%;
}

.residence-card__media--three-bedrooms {
  --residence-object-position: 50% 50%;
}

.residence-card__media--penthouse {
  --residence-object-position: 50% 50%;
}

.residence-card__media--wellness {
  --residence-object-position: 50% 50%;
}

.residence-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 10px 16px;
  color: var(--helora-white);
  background: var(--helora-olive);
  font-family: var(--font-body);
  font-size: clamp(0.625rem, 0.65vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.residence-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: clamp(28px, 3vw, 48px) clamp(22px, 2.2vw, 36px);
  background: #f8f5ee;
  text-align: center;
}

.residence-card__symbol {
  display: inline-flex;
  width: clamp(28px, 2.3vw, 36px);
  height: clamp(28px, 2.3vw, 36px);
  margin-bottom: 18px;
  color: var(--helora-olive);
}

.residence-card__symbol svg,
.residence-card__meta-icon svg,
.residences-feature__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.residence-card__title {
  max-width: 320px;
  margin: 0;
  color: var(--helora-dark);
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 1.1vw, 1.0625rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.residence-card__line {
  display: block;
  width: clamp(34px, 3vw, 48px);
  height: 1px;
  margin: 18px auto 20px;
  background: var(--helora-olive);
}

.residence-card__description {
  max-width: 320px;
  min-height: 4.9em;
  margin: 0;
  color: var(--helora-charcoal);
}

.residence-card__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 1.8vw, 28px);
  width: 100%;
  margin-top: clamp(28px, 2.5vw, 36px);
  color: var(--helora-dark);
  font-family: var(--font-body);
  font-size: clamp(0.6875rem, 0.72vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.residence-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.residence-card__meta-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: var(--helora-olive);
  flex: 0 0 auto;
}

.residence-card__meta-divider {
  width: 1px;
  height: 30px;
  background: rgba(90, 90, 70, 0.22);
}

.residence-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  margin-top: auto;
  padding-top: clamp(28px, 2.4vw, 34px);
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--helora-olive);
  font-family: var(--font-body);
  font-size: clamp(0.6875rem, 0.7vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.residence-card__cta span:last-child {
  transition: transform 220ms var(--ease-soft);
}

.residence-card__cta:hover,
.residence-card__cta:focus-visible {
  opacity: 0.78;
}

.residence-card__cta:hover span:last-child,
.residence-card__cta:focus-visible span:last-child {
  transform: translateX(4px);
}

.residences-section__features {
  width: min(100% - (var(--page-gutter) * 2), 1180px);
  margin: clamp(35px, 4vw, 60px) auto 0;
  padding-top: clamp(34px, 4vw, 54px);
  border-top: 1px solid rgba(90, 90, 70, 0.16);
}

.residences-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  padding-inline: clamp(1rem, 2vw, 2rem);
}

.residences-feature + .residences-feature {
  border-left: 1px solid rgba(90, 90, 70, 0.16);
}

.residences-feature__icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  color: var(--helora-olive);
  flex: 0 0 auto;
}

.residences-feature h3 {
  margin: 0 0 0.35rem;
  color: var(--helora-olive);
  font-family: var(--font-body);
  font-size: clamp(0.6875rem, 0.72vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.residences-feature p {
  margin: 0;
  color: var(--helora-charcoal);
}

.branded-residences-section__eyebrow,
.longea-district__eyebrow,
.sensorial-path-section__eyebrow,
.lifespan-360-section__eyebrow,
.residences-section__eyebrow {
  color: var(--helora-olive);
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 0.72vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  color: var(--helora-dark);
  background: var(--helora-white);
}

.site-footer__inner {
  width: min(100% - (var(--page-gutter) * 2), var(--container-wide));
  margin-inline: auto;
}

.site-footer__benefits,
.site-footer__institutional {
  color: var(--helora-white);
  background: #1f1d1d;
}

.site-footer__benefits {
  padding-block: clamp(2rem, 3.6vw, 3.8rem);
}

.site-footer__benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 5rem);
}

.site-footer__benefit h3,
.site-footer__label,
.site-footer__nav a,
.site-footer__legal a,
.site-footer__form button,
.site-footer__eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.site-footer__benefit h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(0.82rem, 0.9vw, 1.02rem);
}

.site-footer__benefit p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.76rem, 0.82vw, 0.88rem);
  line-height: 1.7;
}

.site-footer__newsletter,
.site-footer__main {
  background: var(--helora-beige);
}

.site-footer__newsletter {
  padding-block: clamp(3rem, 6vw, 6rem);
}

.site-footer__newsletter-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(320px, 0.58fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.site-footer__eyebrow,
.site-footer__label {
  margin: 0 0 0.9rem;
  color: var(--helora-charcoal);
  font-size: 0.68rem;
}

.site-footer__newsletter h3 {
  max-width: 520px;
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.38rem);
  font-weight: 400;
  line-height: 1.08;
}

.site-footer__newsletter-copy p:last-child,
.site-footer__form-note,
.site-footer__form-status,
.site-footer__address,
.site-footer__pending {
  color: var(--helora-charcoal);
  font-size: clamp(0.76rem, 0.82vw, 0.88rem);
  line-height: 1.75;
}

.site-footer__newsletter-copy p:last-child {
  max-width: 470px;
  margin: 0;
}

.site-footer__form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid var(--helora-dark);
  background: var(--helora-white);
}

.site-footer__form input {
  min-height: 48px;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 0;
  color: var(--helora-dark);
  background: transparent;
  font-size: 0.85rem;
}

.site-footer__form input:focus {
  outline: 0;
}

.site-footer__form button {
  min-height: 48px;
  padding: 0.9rem clamp(1.25rem, 3vw, 2.3rem);
  color: var(--helora-white);
  background: var(--helora-dark);
  font-size: 0.68rem;
  transition:
    color 220ms var(--ease-soft),
    background-color 220ms var(--ease-soft);
}

.site-footer__form button:hover,
.site-footer__form button:focus-visible {
  color: var(--helora-dark);
  background: var(--helora-stone);
}

.site-footer__form-note,
.site-footer__form-status {
  margin: 0.8rem 0 0;
}

.site-footer__form-status {
  min-height: 1.4em;
}

.site-footer__main {
  padding-block: clamp(3rem, 6.4vw, 6.5rem);
  border-top: 1px solid rgba(78, 79, 79, 0.22);
}

.site-footer__main-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.22fr) minmax(230px, 0.28fr) repeat(2, minmax(160px, 0.25fr));
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.site-footer__social p,
.site-footer__address p {
  margin: 0;
}

.site-footer__address {
  font-style: normal;
}

.site-footer__nav {
  display: grid;
  gap: 0.72rem;
}

.site-footer__nav a,
.site-footer__legal a {
  color: var(--helora-dark);
  font-size: 0.72rem;
  text-decoration: none;
}

.site-footer__nav a:hover,
.site-footer__legal a:hover {
  color: var(--helora-olive);
}

.site-footer__institutional {
  padding-block: clamp(1.4rem, 2.6vw, 2.4rem);
}

.site-footer__institutional-grid {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(220px, 1fr);
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: center;
}

.site-footer__brand {
  display: inline-flex;
  width: clamp(104px, 10vw, 156px);
  overflow: hidden;
}

.site-footer__brand img {
  width: 100%;
  height: auto;
}

.site-footer__institutional p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
  text-align: center;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.35rem;
}

.site-footer__legal a {
  color: var(--helora-white);
  font-size: 0.64rem;
}

/* ==========================================================================
   Movimiento
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms var(--ease-soft),
    transform 700ms var(--ease-soft);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroBreath {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
