:root {
  --pine: #183a36;
  --pine-2: #0e2926;
  --sage: #7a9b82;
  --caliza: #e7e1d5;
  --arcilla: #b66b4d;
  --mist: #b8d0c5;
  --ink: #17231f;
  --paper: #f6f2ea;
  --white: #ffffff;
  --line: rgba(24, 58, 54, 0.16);
  --shadow: 0 28px 80px rgba(17, 42, 38, 0.18);
  --soft: 0 18px 48px rgba(17, 42, 38, 0.1);
  --radius: 28px;
  --font-display: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-ui: Manrope, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-ui);
}

body.menu-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--arcilla);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1,
.page-title,
.title,
.intro-quote {
  overflow-wrap: normal;
}

::selection {
  color: var(--pine);
  background: var(--mist);
}

.progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--arcilla), var(--sage));
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: linear-gradient(180deg, rgba(10, 29, 26, 0.72), transparent);
  transition: 0.35s ease;
}

.header.scrolled,
.header.menu-active {
  border-bottom: 1px solid var(--line);
  background: rgba(246, 242, 234, 0.92);
  box-shadow: 0 10px 30px rgba(17, 42, 38, 0.05);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1480px, 100%);
  height: 84px;
  padding: 0 42px;
  margin: auto;
}

.logo {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.header.scrolled .logo,
.header.menu-active .logo {
  color: var(--pine);
}

.logo svg {
  width: 44px;
  height: 44px;
  flex: none;
}

.logo-word {
  line-height: 1;
  text-transform: uppercase;
}

.logo-word strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.19em;
}

.logo-word span {
  display: block;
  margin-top: 7px;
  font-size: 8px;
  letter-spacing: 0.33em;
  opacity: 0.76;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(9, 33, 29, 0.34);
  box-shadow: 0 18px 40px rgba(5, 21, 18, 0.13);
  backdrop-filter: blur(14px);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.header.scrolled .nav,
.header.menu-active .nav {
  border-color: rgba(24, 58, 54, 0.12);
  background: rgba(255, 252, 246, 0.82);
  box-shadow: 0 12px 30px rgba(17, 42, 38, 0.07);
  color: var(--pine);
}

.nav a,
.nav-more summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 11px;
  border-radius: 999px;
  outline: none;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a::after {
  display: none;
}

.nav a:hover,
.nav a:focus-visible,
.nav-more summary:hover,
.nav-more summary:focus-visible,
.nav a.active,
.nav-more.active summary {
  background: rgba(255, 255, 255, 0.13);
}

.header.scrolled .nav a:hover,
.header.scrolled .nav a:focus-visible,
.header.scrolled .nav-more summary:hover,
.header.scrolled .nav-more summary:focus-visible,
.header.scrolled .nav a.active,
.header.scrolled .nav-more.active summary,
.header.menu-active .nav a:hover,
.header.menu-active .nav a:focus-visible,
.header.menu-active .nav-more summary:hover,
.header.menu-active .nav-more summary:focus-visible,
.header.menu-active .nav a.active,
.header.menu-active .nav-more.active summary {
  background: rgba(24, 58, 54, 0.08);
}

.nav-more {
  position: relative;
}

.nav-more summary {
  cursor: pointer;
  list-style: none;
}

.nav-more summary::-webkit-details-marker {
  display: none;
}

.nav-more summary::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-more[open] summary::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-more-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 3;
  display: none;
  min-width: 210px;
  padding: 10px;
  border: 1px solid rgba(231, 225, 213, 0.34);
  border-radius: 16px;
  background: rgba(11, 32, 29, 0.95);
  box-shadow: 0 22px 60px rgba(5, 18, 16, 0.28);
  backdrop-filter: blur(18px);
}

.nav-more[open] .nav-more-menu,
.nav-more:hover .nav-more-menu {
  display: grid;
  gap: 2px;
}

.nav-more-menu a {
  min-height: 36px;
  color: var(--white);
}

.header.scrolled .nav-more-menu,
.header.menu-active .nav-more-menu {
  border-color: rgba(24, 58, 54, 0.12);
  background: rgba(255, 252, 246, 0.96);
}

.header.scrolled .nav-more-menu a,
.header.menu-active .nav-more-menu a {
  color: var(--pine);
}

.nav .nav-link-strong {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.header.scrolled .nav .nav-link-strong,
.header.menu-active .nav .nav-link-strong {
  border-color: rgba(24, 58, 54, 0.16);
}

.nav .cta {
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(231, 225, 213, 0.88);
  border-radius: 999px;
  color: var(--pine);
  background: var(--caliza);
  white-space: nowrap;
}

.header.scrolled .nav .cta,
.header.menu-active .nav .cta {
  border-color: var(--pine);
  color: var(--white);
  background: var(--pine);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header.scrolled .menu-btn,
.header.menu-active .menu-btn {
  border-color: var(--pine);
  color: var(--pine);
}

.language-switcher {
  position: relative;
  z-index: 5;
  flex: none;
  margin-left: 8px;
}

.language-button {
  display: inline-flex;
  min-width: 60px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: var(--white);
  background: rgba(9, 33, 29, 0.28);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.language-button:hover,
.language-button[aria-expanded="true"] {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.12);
}

.language-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.header.scrolled .language-button,
.header.menu-active .language-button {
  border-color: rgba(24, 58, 54, 0.24);
  color: var(--pine);
  background: rgba(255, 252, 246, 0.82);
}

.header.scrolled .language-button:hover,
.header.scrolled .language-button[aria-expanded="true"],
.header.menu-active .language-button:hover,
.header.menu-active .language-button[aria-expanded="true"] {
  border-color: rgba(24, 58, 54, 0.42);
  background: var(--white);
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: 190px;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(24, 58, 54, 0.14);
  border-radius: 18px;
  color: var(--pine);
  background: rgba(255, 252, 246, 0.98);
  box-shadow: 0 22px 60px rgba(5, 18, 16, 0.24);
  backdrop-filter: blur(18px);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 0;
  border-radius: 11px;
  color: inherit;
  background: transparent;
  font-size: 13px;
  text-align: left;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.active {
  background: rgba(24, 58, 54, 0.09);
}

.language-menu button.active {
  font-weight: 700;
}

.language-menu small {
  color: #68746f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - 196px);
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--pine);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  pointer-events: none;
  transform: none;
}

.hero-bg.visual-hold-hero {
  background: none;
}

.hero-bg::before {
  display: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 19, 17, 0.92) 0%, rgba(5, 19, 17, 0.64) 46%, rgba(5, 19, 17, 0.2) 72%, rgba(5, 19, 17, 0.34) 100%),
    linear-gradient(0deg, rgba(5, 19, 17, 0.88) 0%, transparent 58%),
    radial-gradient(circle at 74% 45%, transparent 0%, rgba(5, 19, 17, 0.28) 42%, rgba(5, 19, 17, 0.58) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 900px);
  align-content: center;
  align-items: center;
  width: min(1480px, 100%);
  min-height: calc(100svh - 196px);
  padding: 148px 7vw 92px;
  margin: auto;
}

.hero-grid > div {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--mist);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: 116px;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  margin-top: 24px;
  margin-left: 0.18em;
  font-family: var(--font-ui);
  font-size: 0.28em;
  font-weight: 300;
  letter-spacing: 0.35em;
}

.hero-copy {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 21px;
  line-height: 1.55;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions,
.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 780px;
  margin-top: 26px;
}

.hero-facts span {
  padding: 10px 12px;
  border: 1px solid rgba(231, 225, 213, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(24, 58, 54, 0.3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.btn.primary {
  color: var(--pine);
  background: var(--caliza);
}

.btn.primary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn.outline {
  border-color: rgba(24, 58, 54, 0.24);
  color: var(--pine);
}

.btn.outline:hover {
  background: rgba(184, 208, 197, 0.24);
}

.dark-action {
  margin-top: 28px;
  color: var(--white) !important;
  background: var(--pine) !important;
}

.dark-action:hover {
  background: var(--pine-2) !important;
}

.hero-video-slot {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #081a17;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-video-slot::before {
  display: none;
}

.hero-video,
.hero-video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-video-placeholder {
  display: block;
  padding: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(182, 107, 77, 0.46), transparent 17%),
    radial-gradient(circle at 64% 58%, rgba(184, 208, 197, 0.26), transparent 24%),
    radial-gradient(circle at 20% 84%, rgba(122, 155, 130, 0.22), transparent 30%),
    linear-gradient(115deg, #244b43 0%, #0d2b27 48%, #071b18 100%);
}

.hero-video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(231, 225, 213, 0.06) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(231, 225, 213, 0.05) 0 1px, transparent 1px 92px);
  opacity: 0.5;
}

.hero-video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 19, 17, 0.56) 0%, transparent 48%, rgba(5, 19, 17, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 19, 17, 0.88) 0%, transparent 44%, rgba(5, 19, 17, 0.48) 100%);
  pointer-events: none;
}

.presentation-mark,
.presentation-copy {
  position: relative;
  z-index: 2;
}

.presentation-mark {
  position: absolute;
  top: clamp(108px, 14vh, 160px);
  right: 7vw;
  padding: 8px 11px;
  border: 1px solid rgba(231, 225, 213, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.presentation-play {
  position: absolute;
  top: 50%;
  right: 14vw;
  z-index: 3;
  display: grid;
  width: clamp(86px, 8vw, 132px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(231, 225, 213, 0.45);
  border-radius: 50%;
  background: rgba(231, 225, 213, 0.92);
  box-shadow: 0 18px 50px rgba(3, 13, 12, 0.28);
  transform: translateY(-50%);
}

.presentation-play i {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid var(--pine);
}

.presentation-copy {
  position: absolute;
  right: 7vw;
  bottom: clamp(72px, 10vh, 112px);
  max-width: min(420px, 31vw);
  opacity: 0.82;
}

.presentation-copy span {
  display: block;
  margin-bottom: 9px;
  color: var(--mist);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.presentation-copy strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 0.98;
}

.presentation-copy p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.scrollcue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scrollcue i {
  display: block;
  width: 42px;
  height: 1px;
  background: var(--white);
}

.section {
  position: relative;
  padding: 120px 7vw;
}

.site-page .header {
  background: linear-gradient(180deg, rgba(10, 29, 26, 0.82), transparent);
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 76vh;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--pine);
}

.page-hero.video-page-hero {
  min-height: 100svh;
  align-items: stretch;
}

.page-hero.video-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.video-page-hero .page-hero-bg {
  z-index: 1;
  background: transparent;
  pointer-events: none;
}

.video-page-hero .page-hero-bg.visual-hold-hero {
  background: none;
}

.video-page-hero .page-hero-bg::before {
  display: none;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 28, 24, 0.9), rgba(8, 28, 24, 0.5)),
    linear-gradient(0deg, rgba(8, 28, 24, 0.72), transparent 58%);
}

.video-page-hero .page-hero-bg::after {
  background:
    linear-gradient(90deg, rgba(5, 19, 17, 0.92) 0%, rgba(5, 19, 17, 0.64) 46%, rgba(5, 19, 17, 0.2) 72%, rgba(5, 19, 17, 0.34) 100%),
    linear-gradient(0deg, rgba(5, 19, 17, 0.88) 0%, transparent 58%),
    radial-gradient(circle at 74% 45%, transparent 0%, rgba(5, 19, 17, 0.28) 42%, rgba(5, 19, 17, 0.58) 100%);
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: end;
  padding: 160px 0 86px;
}

.video-page-hero .page-hero-grid {
  min-height: 100svh;
  align-content: center;
  padding: 148px 0 92px;
}

.page-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

.page-lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 24px;
  line-height: 1.5;
}

.container {
  width: min(1380px, 100%);
  margin: auto;
}

.container > *,
.hero-grid > *,
.page-hero-grid > *,
.intro-grid > *,
.explore-head > *,
.residences-head > *,
.invest-grid > *,
.location-grid > *,
.contact-grid > *,
.content-grid > *,
.preview-grid > *,
.portal-grid > * {
  min-width: 0;
}

.kicker {
  margin: 0 0 18px;
  color: var(--arcilla);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.title {
  margin: 0 0 25px;
  font-family: var(--font-display);
  font-size: 66px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 830px;
  margin: 0;
  color: rgba(23, 35, 31, 0.67);
  font-size: 21px;
  line-height: 1.55;
}

.explore {
  padding-top: 96px;
  background: linear-gradient(180deg, var(--paper), #f1eadf);
}

.home-intro {
  padding-top: 96px;
  background: var(--paper);
}

.stage-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(231, 225, 213, 0.22);
  border-radius: 24px;
  color: var(--white);
  background: rgba(14, 41, 38, 0.58);
  backdrop-filter: blur(10px);
}

.stage-strip span {
  color: var(--mist);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stage-strip strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
}

.stage-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.explore-head,
.residences-head {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 48px;
  align-items: end;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
}

.overview-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: rgba(255, 255, 255, 0.55);
  transition: 0.28s ease;
}

.overview-card:hover,
.overview-card:focus-visible {
  background: var(--white);
  outline: none;
  transform: translateY(-4px);
}

.overview-card span {
  margin-bottom: auto;
  color: var(--arcilla);
  font-family: var(--font-display);
  font-size: 44px;
}

.overview-card strong {
  display: block;
  color: var(--pine);
  font-size: 18px;
}

.overview-card p {
  margin: 10px 0 0;
  color: #66736e;
  font-size: 14px;
  line-height: 1.65;
}

.home-preview {
  background: var(--paper);
}

.home-residences {
  background: #fbf8f1;
}

.home-residence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.home-residence-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.52)),
    linear-gradient(135deg, rgba(122, 155, 130, 0.2), rgba(182, 107, 77, 0.12));
  box-shadow: var(--soft);
  transition: 0.28s ease;
}

.home-residence-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 0.45s ease;
}

.home-residence-card.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 19, 17, 0.82), rgba(5, 19, 17, 0.16));
}

.home-residence-card.has-image span,
.home-residence-card.has-image strong,
.home-residence-card.has-image small {
  position: relative;
  z-index: 1;
}

.home-residence-card.has-image strong {
  color: var(--white);
}

.home-residence-card.has-image small {
  color: rgba(255, 255, 255, 0.75);
}

.home-residence-card:hover,
.home-residence-card:focus-visible {
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.68)),
    linear-gradient(135deg, rgba(122, 155, 130, 0.26), rgba(182, 107, 77, 0.15));
  outline: none;
  transform: translateY(-5px);
}

.home-residence-card.has-image:hover > img,
.home-residence-card.has-image:focus-visible > img {
  transform: scale(1.04);
}

.home-residence-card.featured {
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(14, 41, 38, 0.94), rgba(24, 58, 54, 0.56)),
    linear-gradient(135deg, rgba(122, 155, 130, 0.36), rgba(182, 107, 77, 0.28));
}

.home-residence-card span {
  margin-bottom: 16px;
  color: var(--arcilla);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-residence-card.featured span {
  color: var(--mist);
}

.home-residence-card strong {
  color: var(--pine);
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.02;
}

.home-residence-card.featured strong {
  color: var(--white);
}

.home-residence-card small {
  display: block;
  margin-top: 22px;
  color: #66736e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.home-residence-card.featured small {
  color: rgba(255, 255, 255, 0.7);
}

.content-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.stacked-visual {
  display: grid;
  gap: 18px;
}

.visual-timeline {
  display: grid;
  gap: 18px;
}

.visual-timeline .timeline-grid {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.visual-timeline .timeline-card {
  min-height: auto;
}

.visual-timeline .timeline-card h3 {
  margin-top: 24px;
  font-size: 28px;
}

.section-note {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #66736e;
  background: rgba(255, 255, 255, 0.44);
  font-size: 13px;
  line-height: 1.65;
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--soft);
}

.image-panel.compact {
  min-height: 390px;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 19, 17, 0.42), transparent 48%);
  pointer-events: none;
}

.image-panel-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  color: var(--white);
}

.image-panel-caption span {
  display: block;
  margin-bottom: 7px;
  color: var(--mist);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.image-panel-caption strong {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.03;
}

.model-plan-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.brand-table,
.model-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--soft);
}

.brand-row,
.model-row {
  display: grid;
  grid-template-columns: 0.72fr 1.4fr;
  gap: 1px;
  border-bottom: 1px solid var(--line);
}

.model-row {
  grid-template-columns: 1fr 0.9fr 0.9fr auto;
}

.brand-row:last-child,
.model-row:last-child {
  border-bottom: 0;
}

.brand-row > *,
.model-row > * {
  margin: 0;
  padding: 18px 20px;
}

.brand-row strong,
.model-row strong {
  color: var(--pine);
}

.brand-row p,
.model-row span,
.model-row p {
  color: #66736e;
  line-height: 1.55;
}

.model-row.head {
  color: var(--white);
  background: var(--pine);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.model-row.head span {
  color: rgba(255, 255, 255, 0.72);
}

.model-card-grid,
.feature-grid,
.faq-grid,
.timeline-grid,
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.feature-grid.two,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.model-card,
.feature-card,
.faq-card,
.timeline-card,
.inventory-card {
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--soft);
}

.model-card.has-image {
  padding: 0;
}

.card-media {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  background: rgba(24, 58, 54, 0.08);
}

.card-media img,
.image-panel img,
.map img,
.residence-media img,
.subbrand-bg img,
.invest-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-card.has-image > span,
.model-card.has-image > h3,
.model-card.has-image > p,
.model-card.has-image > .badge-list {
  margin-right: 26px;
  margin-left: 26px;
}

.model-card.has-image > span {
  display: block;
  margin-top: 24px;
}

.model-card.has-image > h3 {
  margin-top: 18px;
}

.model-card.has-image > .badge-list {
  margin-bottom: 26px;
}

.model-card.featured,
.feature-card.dark-card {
  color: var(--white);
  background: var(--pine);
}

.model-card span,
.feature-card span,
.faq-card span,
.timeline-card span,
.inventory-card span {
  color: var(--arcilla);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.model-card.featured span,
.feature-card.dark-card span {
  color: var(--mist);
}

.model-card h3,
.feature-card h3,
.faq-card h3,
.timeline-card h3,
.inventory-card h3 {
  margin: 52px 0 12px;
  color: var(--pine);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.06;
}

.model-card.featured h3,
.feature-card.dark-card h3 {
  color: var(--white);
}

.model-card p,
.feature-card p,
.faq-card p,
.timeline-card p,
.inventory-card p {
  margin: 0;
  color: #66736e;
  line-height: 1.65;
}

.model-card.featured p,
.feature-card.dark-card p {
  color: rgba(255, 255, 255, 0.68);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.badge-list span {
  padding: 8px 11px;
  border: 1px solid rgba(24, 58, 54, 0.16);
  border-radius: 999px;
  color: var(--pine);
  background: rgba(184, 208, 197, 0.22);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Modelos: una familia cromatica por tipologia, siempre dentro de la paleta Sustania. */
[data-page="modelos"] .page-hero-bg.visual-hold-hero {
  background:
    radial-gradient(circle at 82% 25%, rgba(214, 145, 105, 0.78), transparent 19%),
    radial-gradient(circle at 65% 78%, rgba(122, 155, 130, 0.52), transparent 26%),
    radial-gradient(circle at 18% 82%, rgba(184, 208, 197, 0.32), transparent 22%),
    linear-gradient(118deg, #102d29 8%, #214940 54%, #3d5b4e 100%),
    linear-gradient(90deg, rgba(231, 225, 213, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(231, 225, 213, 0.08) 1px, transparent 1px);
  background-size: auto, auto, auto, auto, 54px 54px, 54px 54px;
}

[data-page="modelos"] .page-hero-bg.visual-hold-hero::before {
  border-color: rgba(231, 225, 213, 0.28);
  box-shadow: inset 0 0 90px rgba(14, 41, 38, 0.28);
}

[data-page="modelos"] .page-hero-bg::after {
  background:
    radial-gradient(circle at 82% 25%, rgba(182, 107, 77, 0.26), transparent 25%),
    linear-gradient(90deg, rgba(8, 28, 24, 0.9) 0%, rgba(8, 28, 24, 0.42) 58%, rgba(8, 28, 24, 0.24) 100%),
    linear-gradient(0deg, rgba(8, 28, 24, 0.68), transparent 58%);
}

[data-page="modelos"] .page-hero .eyebrow {
  color: #efb18c;
}

[data-page="modelos"] .page-lead {
  padding: 22px 24px;
  border-left: 3px solid #d89a76;
  border-radius: 0 20px 20px 0;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
}

[data-page="modelos"] .residences {
  background:
    radial-gradient(circle at 8% 14%, rgba(184, 208, 197, 0.34), transparent 24%),
    radial-gradient(circle at 94% 48%, rgba(182, 107, 77, 0.16), transparent 22%),
    linear-gradient(180deg, #fbf8f1 0%, #f4eee4 100%);
}

[data-page="modelos"] .model-card {
  --model-accent: var(--arcilla);
  --model-border: rgba(24, 58, 54, 0.18);
  --model-surface: rgba(255, 255, 255, 0.72);
  --model-chip: rgba(184, 208, 197, 0.3);
  --model-chip-border: rgba(24, 58, 54, 0.16);
  --model-chip-text: var(--pine);
  position: relative;
  border-color: var(--model-border);
  background: var(--model-surface);
  box-shadow: 0 20px 55px rgba(17, 42, 38, 0.11);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

[data-page="modelos"] .model-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 6px;
  background: var(--model-accent);
}

[data-page="modelos"] .model-card:hover {
  border-color: var(--model-accent);
  box-shadow: 0 28px 70px rgba(17, 42, 38, 0.17);
  transform: translateY(-7px);
}

[data-page="modelos"] .model-card .card-media {
  border-bottom: 5px solid var(--model-accent);
}

[data-page="modelos"] .model-card .card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(14, 41, 38, 0.18));
  pointer-events: none;
}

[data-page="modelos"] .model-card .card-media img {
  transition: transform 0.65s ease, filter 0.4s ease;
}

[data-page="modelos"] .model-card:hover .card-media img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.025);
}

[data-page="modelos"] .model-card.has-image > span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--white);
  background: var(--model-accent);
  letter-spacing: 0.13em;
}

[data-page="modelos"] .model-card .badge-list span {
  border-color: var(--model-chip-border);
  color: var(--model-chip-text);
  background: var(--model-chip);
}

[data-page="modelos"] .model-card--mist {
  --model-accent: #527765;
  --model-border: rgba(82, 119, 101, 0.34);
  --model-surface: #edf4ef;
  --model-chip: rgba(82, 119, 101, 0.12);
  --model-chip-border: rgba(82, 119, 101, 0.24);
}

[data-page="modelos"] .model-card--clay {
  --model-accent: var(--arcilla);
  --model-border: rgba(182, 107, 77, 0.34);
  --model-surface: #f7ebe3;
  --model-chip: rgba(182, 107, 77, 0.12);
  --model-chip-border: rgba(182, 107, 77, 0.25);
  --model-chip-text: #743f2e;
}

[data-page="modelos"] .model-card--sage {
  --model-accent: var(--sage);
  --model-border: rgba(122, 155, 130, 0.42);
  --model-surface: #e4ece5;
  --model-chip: rgba(24, 58, 54, 0.1);
  --model-chip-border: rgba(24, 58, 54, 0.18);
}

[data-page="modelos"] .model-card--pine {
  --model-accent: #d89a76;
  --model-border: rgba(24, 58, 54, 0.64);
  --model-surface: linear-gradient(145deg, #214940, #102d29 78%);
  --model-chip: rgba(255, 255, 255, 0.1);
  --model-chip-border: rgba(255, 255, 255, 0.2);
  --model-chip-text: var(--white);
}

[data-page="modelos"] .model-card--sand {
  --model-accent: #9b755b;
  --model-border: rgba(155, 117, 91, 0.34);
  --model-surface: #f3eadb;
  --model-chip: rgba(155, 117, 91, 0.12);
  --model-chip-border: rgba(155, 117, 91, 0.24);
  --model-chip-text: #674936;
}

[data-page="modelos"] .model-card--advice {
  --model-accent: #efb18c;
  --model-border: rgba(122, 72, 52, 0.46);
  --model-chip: rgba(255, 255, 255, 0.12);
  --model-chip-border: rgba(255, 255, 255, 0.24);
  --model-chip-text: var(--white);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgba(231, 225, 213, 0.2), transparent 24%),
    linear-gradient(145deg, #b66b4d, #7e4938 86%);
}

[data-page="modelos"] .model-card--advice > * {
  position: relative;
  z-index: 1;
}

[data-page="modelos"] .model-card--advice::after {
  content: "03";
  position: absolute;
  right: 18px;
  bottom: -38px;
  color: rgba(255, 255, 255, 0.09);
  font-family: var(--font-display);
  font-size: 220px;
  line-height: 1;
  pointer-events: none;
}

[data-page="modelos"] .model-card--advice > span {
  color: #ffe0ce;
}

[data-page="modelos"] .model-card--advice h3,
[data-page="modelos"] .model-card--advice p {
  color: var(--white);
}

[data-page="modelos"] .model-card--advice p {
  color: rgba(255, 255, 255, 0.78);
}

[data-page="modelos"] .model-plan-band {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 96px) 7vw;
  border-top: 1px solid rgba(184, 208, 197, 0.2);
  border-bottom: 1px solid rgba(184, 208, 197, 0.2);
  background:
    radial-gradient(circle at 9% 18%, rgba(184, 208, 197, 0.2), transparent 28%),
    radial-gradient(circle at 92% 84%, rgba(182, 107, 77, 0.24), transparent 26%),
    linear-gradient(135deg, #143832 0%, #214940 55%, #17332f 100%);
}

[data-page="modelos"] .model-plan-band .model-plan-strip {
  margin-top: 0;
}

[data-page="modelos"] .model-plan-strip .image-panel:first-child {
  border-color: rgba(82, 119, 101, 0.5);
  box-shadow: 0 22px 60px rgba(82, 119, 101, 0.2);
}

[data-page="modelos"] .model-plan-strip .image-panel:last-child {
  border-color: rgba(182, 107, 77, 0.5);
  box-shadow: 0 22px 60px rgba(182, 107, 77, 0.18);
}

[data-page="modelos"] .process {
  background:
    linear-gradient(90deg, rgba(184, 208, 197, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(184, 208, 197, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, #f1eadf, var(--paper));
  background-size: 52px 52px, 52px 52px, auto;
}

[data-page="modelos"] .process-step {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-page="modelos"] .process-step:hover {
  box-shadow: var(--soft);
  transform: translateY(-5px);
}

[data-page="modelos"] .process-step:nth-child(1) {
  border-color: rgba(82, 119, 101, 0.32);
  background: #edf4ef;
}

[data-page="modelos"] .process-step:nth-child(1) span {
  color: #527765;
}

[data-page="modelos"] .process-step:nth-child(2) {
  border-color: rgba(182, 107, 77, 0.32);
  background: #f7ebe3;
}

[data-page="modelos"] .process-step:nth-child(3) {
  border-color: rgba(122, 155, 130, 0.38);
  background: #e4ece5;
}

[data-page="modelos"] .process-step:nth-child(3) span {
  color: var(--sage);
}

[data-page="modelos"] .process-step:nth-child(4) {
  border-color: var(--pine);
  color: var(--white);
  background: linear-gradient(145deg, #214940, #102d29);
}

[data-page="modelos"] .process-step:nth-child(4) span {
  color: #d89a76;
}

[data-page="modelos"] .process-step:nth-child(4) h3 {
  color: var(--white);
}

[data-page="modelos"] .process-step:nth-child(4) p {
  color: rgba(255, 255, 255, 0.72);
}

[data-page="modelos"] .process .hero-cta-row .btn:nth-child(2) {
  border-color: rgba(182, 107, 77, 0.44);
  color: #743f2e;
  background: rgba(247, 235, 227, 0.9);
}

[data-page="modelos"] .process .hero-cta-row .btn:nth-child(3) {
  border-color: rgba(82, 119, 101, 0.38);
  color: var(--pine);
  background: rgba(237, 244, 239, 0.92);
}

@media (max-width: 680px) {
  [data-page="modelos"] .page-lead {
    padding: 18px;
  }

  [data-page="modelos"] .model-card--advice::after {
    right: 10px;
    bottom: -24px;
    font-size: 150px;
  }
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--pine);
  background: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
}

.status-pill.negotiation::before {
  background: #d5a055;
}

.status-pill.reserved::before {
  background: var(--arcilla);
}

.status-pill.sold::before {
  background: var(--pine);
}

.status-pill.locked::before {
  background: #9c9c9c;
}

/*
 * Simulador de precio desactivado temporalmente — 2026-07-27.
 * Estilos preservados para poder restaurar el bloque de planes.html.
.simulator-shell {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 22px;
  margin-top: 48px;
}

.mini-form,
.result-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--soft);
}

.result-panel {
  color: var(--white);
  background: var(--pine);
}

.result-panel p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.plan-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.plan-preview img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: contain;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(231, 225, 213, 0.92);
}
*/

.preview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.editorial-panel {
  min-height: 560px;
  padding: 44px;
  border-radius: 34px;
  color: var(--white);
  background: var(--pine);
  box-shadow: var(--shadow);
}

.editorial-panel .title {
  color: var(--white);
}

.editorial-panel .lead {
  color: rgba(255, 255, 255, 0.68);
}

.preview-stack {
  display: grid;
  gap: 14px;
}

.detail-card {
  display: flex;
  min-height: 172px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.52);
  transition: 0.28s ease;
}

.detail-card:hover,
.detail-card:focus-visible {
  background: var(--white);
  outline: none;
  transform: translateY(-4px);
}

.detail-card span {
  color: var(--arcilla);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.detail-card strong {
  color: var(--pine);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
}

.dark {
  color: var(--white);
  background: var(--pine);
}

.dark .lead {
  color: rgba(255, 255, 255, 0.68);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: end;
}

.intro-quote {
  color: var(--pine);
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1.05;
}

.intro-quote em {
  color: var(--arcilla);
  font-style: normal;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 70px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--line);
}

.stat {
  padding: 35px;
  background: rgba(255, 255, 255, 0.42);
}

.stat b {
  color: var(--pine);
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 400;
}

.stat span {
  display: block;
  margin-top: 7px;
  color: #68746f;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.pillar {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  transition: 0.3s ease;
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-7px);
}

.pillar .n {
  color: var(--arcilla);
  font-family: var(--font-display);
  font-size: 56px;
}

.pillar h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 20px;
}

.pillar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
  line-height: 1.6;
}

.subbrands-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.subbrand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 55px;
}

.subbrand {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 30px;
  color: var(--white);
  box-shadow: var(--soft);
}

.subbrand-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

.subbrand-bg img {
  display: block;
}

.subbrand:hover .subbrand-bg {
  transform: scale(1.05);
}

.subbrand::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 29, 26, 0.92), rgba(10, 29, 26, 0.06) 75%);
}

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

.subbrand-logo {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.06em;
}

.subbrand-name {
  margin: 9px 0 20px;
  font-size: 15px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.subbrand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.subbrand-chip {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.subbrand.habitat .subbrand-name {
  color: #d6a17c;
}

.subbrand.urban .subbrand-name {
  color: #b8d0c5;
}

.subbrand.living .subbrand-name {
  color: #e7e1d5;
}

.residences {
  background: #fbf8f1;
}

.residence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.residence-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--soft);
}

.residence-card.featured {
  background: var(--pine);
  color: var(--white);
}

.residence-media {
  position: relative;
  min-height: 290px;
}

.residence-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.residence-copy p {
  margin: 0 0 14px;
  color: var(--arcilla);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.residence-copy h3 {
  margin: 0;
  color: var(--pine);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.featured .residence-copy h3 {
  color: var(--white);
}

.residence-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.residence-copy li {
  padding: 11px 12px;
  border: 1px solid rgba(24, 58, 54, 0.14);
  border-radius: 14px;
  color: #66736e;
  font-size: 12px;
}

.featured .residence-copy li {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

.residence-copy a {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  color: var(--pine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured .residence-copy a {
  color: var(--mist);
}

.inventory-strip {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f1eadf;
}

.inventory-strip span {
  color: var(--pine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.inventory-strip p {
  margin: 0;
  color: #66736e;
  line-height: 1.6;
}

.inventory-strip a {
  color: var(--arcilla);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Amenidades desactivado temporalmente. Rehabilitar estos estilos junto con amenidades.html.
.amenity-title {
  max-width: 900px;
}

.amenity-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 38px 0 26px;
}

.tab {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tab.active {
  border-color: var(--caliza);
  color: var(--pine);
  background: var(--caliza);
}

.amenity-stage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  min-height: 620px;
}

.amenity-main,
.amenity-side {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.amenity-main::after,
.side-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 29, 25, 0.85), transparent 70%);
}

.amenity-main-copy {
  position: absolute;
  right: 35px;
  bottom: 32px;
  left: 35px;
  z-index: 2;
}

.amenity-main h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 55px;
  font-weight: 400;
}

.amenity-main p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.amenity-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.side-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.side-card span {
  position: absolute;
  bottom: 22px;
  left: 25px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 31px;
}
*/

.lifestyle {
  padding: 0;
  background: var(--paper);
}

.life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 820px;
}

.life-image {
  position: relative;
}

.life-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(246, 242, 234, 0.45));
}

.life-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 8vw 110px 7vw;
}

.life-list {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}

.life-item {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 17px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.life-item b {
  color: var(--arcilla);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
}

.life-item h3 {
  margin: 2px 0 6px;
  font-size: 17px;
}

.life-item p {
  margin: 0;
  color: #66736e;
  font-size: 13px;
  line-height: 1.6;
}

.invest {
  overflow: hidden;
  background: linear-gradient(130deg, var(--caliza), #f7f4ed);
}

.invest::before {
  content: "";
  position: absolute;
  top: -180px;
  right: 0;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(24, 58, 54, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(24, 58, 54, 0.02),
    0 0 0 180px rgba(24, 58, 54, 0.02);
}

.invest-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.invest-card {
  position: relative;
  overflow: hidden;
  padding: 45px;
  border-radius: 34px;
  color: var(--white);
  background: var(--pine);
  box-shadow: var(--shadow);
}

.invest-card > img {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  filter: saturate(0.82);
}

.invest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10, 29, 26, 0.94), rgba(10, 29, 26, 0.42));
}

.invest-card::after {
  content: "S";
  position: absolute;
  right: 0;
  bottom: -115px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--font-display);
  font-size: 330px;
}

.invest-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
}

.invest-card p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.invest-points {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.invest-points span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  font-size: 12px;
}

.process {
  background: var(--paper);
}

.process .title {
  max-width: 1050px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 56px;
}

.process-step {
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.48);
}

.process-step span {
  color: var(--arcilla);
  font-family: var(--font-display);
  font-size: 50px;
}

.process-step h3 {
  margin: 72px 0 10px;
  color: var(--pine);
  font-size: 20px;
}

.process-step p {
  margin: 0;
  color: #66736e;
  line-height: 1.65;
}

.location {
  overflow: hidden;
  color: var(--white);
  background: var(--pine-2);
}

.location .lead {
  color: rgba(255, 255, 255, 0.72);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.map {
  position: relative;
  height: 610px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 35px;
  background:
    radial-gradient(circle at 63% 38%, rgba(182, 107, 77, 0.78) 0 7px, transparent 8px),
    linear-gradient(35deg, transparent 47%, rgba(184, 208, 197, 0.18) 48% 51%, transparent 52%),
    linear-gradient(-27deg, transparent 44%, rgba(231, 225, 213, 0.12) 45% 48%, transparent 49%),
    linear-gradient(90deg, rgba(122, 155, 130, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(122, 155, 130, 0.1) 1px, transparent 1px),
    #153b36;
  background-size: auto, auto, auto, 55px 55px, 55px 55px, auto;
}

.map.has-image {
  background: var(--pine);
}

.map::before {
  content: "SUSTANIA CITY";
  position: absolute;
  top: 38%;
  left: 63%;
  color: var(--caliza);
  font-size: 10px;
  letter-spacing: 0.18em;
  white-space: nowrap;
  transform: translate(-50%, 18px);
}

.map.has-image::before {
  display: none;
}

.map.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 19, 17, 0.46), transparent 52%);
  pointer-events: none;
}

.map-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  color: var(--white);
}

.map-caption span {
  display: block;
  margin-bottom: 7px;
  color: var(--mist);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.map-caption strong {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.04;
}

.map-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.location-card {
  margin-top: 35px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.location-card b {
  display: block;
  margin-bottom: 8px;
  color: var(--mist);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}

.portal-section {
  background: var(--paper);
}

.portal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.portal-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.portal-module {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.5);
}

.portal-module span {
  color: var(--arcilla);
  font-family: var(--font-display);
  font-size: 42px;
}

.portal-module h3 {
  margin: 48px 0 10px;
  color: var(--pine);
  font-size: 19px;
}

.portal-module p {
  margin: 0;
  color: #66736e;
  line-height: 1.6;
}

.contact {
  display: flex;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  align-items: center;
  color: var(--white);
  background: var(--pine);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 28, 24, 0.96), rgba(8, 28, 24, 0.78), rgba(8, 28, 24, 0.66));
}

.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.86);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.form {
  padding: 40px;
  border-radius: 32px;
  color: var(--ink);
  background: rgba(246, 242, 234, 0.96);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field span {
  color: #6f7975;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.field span i,
.consent-field i {
  color: var(--arcilla);
  font-style: normal;
}

.field input,
.field select,
.field textarea {
  min-height: 44px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(24, 58, 54, 0.22);
  color: var(--ink);
  background: transparent;
  outline: none;
}

.field textarea {
  min-height: 90px;
  resize: vertical;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #a43e2f;
}

.consent-field {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #5f6b66;
  font-size: 11px;
  line-height: 1.55;
}

.consent-field input {
  width: 24px;
  height: 24px;
  margin: 0;
  accent-color: var(--pine);
}

.consent-field a {
  color: var(--pine);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--arcilla);
}

.form-submit {
  width: 100%;
  margin-top: 24px;
  color: var(--white);
  background: var(--pine);
}

.form-submit:hover {
  background: var(--pine-2);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-note {
  min-height: 30px;
  margin: 14px 0 0;
  color: #6f7975;
  font-size: 10px;
  line-height: 1.5;
}

.form-note.is-success {
  color: #276447;
  font-weight: 700;
}

.form-note.is-error {
  color: #9c382b;
  font-weight: 700;
}

.contact-copy .title {
  color: var(--white);
}

.contact-copy .lead {
  color: rgba(255, 255, 255, 0.7);
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.contact-badges span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer {
  padding: 42px 7vw;
  color: rgba(255, 255, 255, 0.65);
  background: #0b201d;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1380px, 100%);
  gap: 30px;
  margin: auto;
}

.footer strong {
  color: var(--white);
  letter-spacing: 0.16em;
}

.footer small {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 520px;
  gap: 10px 20px;
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
}

.float-contact {
  position: fixed;
  top: 45%;
  right: 20px;
  z-index: 80;
  padding: 18px 11px;
  border: 0;
  border-radius: 999px;
  color: var(--pine);
  background: var(--caliza);
  box-shadow: var(--soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.visual-hold {
  background:
    radial-gradient(circle at 72% 20%, rgba(182, 107, 77, 0.2), transparent 18%),
    radial-gradient(circle at 20% 80%, rgba(184, 208, 197, 0.28), transparent 22%),
    linear-gradient(90deg, rgba(231, 225, 213, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(231, 225, 213, 0.08) 1px, transparent 1px),
    linear-gradient(140deg, #214940, #0e2926 74%);
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
}

.visual-hold::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(231, 225, 213, 0.18);
  border-radius: 18px;
}

.visual-hold-hero {
  background:
    radial-gradient(circle at 68% 22%, rgba(182, 107, 77, 0.24), transparent 18%),
    radial-gradient(circle at 22% 76%, rgba(184, 208, 197, 0.24), transparent 24%),
    linear-gradient(110deg, rgba(24, 58, 54, 0.98), rgba(24, 58, 54, 0.6)),
    linear-gradient(90deg, rgba(231, 225, 213, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(231, 225, 213, 0.06) 1px, transparent 1px),
    #102d29;
  background-size: auto, auto, auto, 54px 54px, 54px 54px, auto;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal-ready .hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .page-hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal.visible {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: 0.08s;
}

.d2 {
  transition-delay: 0.16s;
}

.d3 {
  transition-delay: 0.24s;
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 80px;
  }

  .hero-copy,
  .lead {
    font-size: 19px;
  }

  .page-title {
    font-size: 64px;
  }

  .page-lead {
    font-size: 21px;
  }

  .title {
    font-size: 58px;
  }

  .intro-quote {
    font-size: 52px;
  }
}

@media (max-width: 1050px) {
  .nav {
    display: none;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .header-inner {
    padding: 0 22px;
  }

  .language-switcher {
    margin-right: 10px;
    margin-left: auto;
  }

  .nav.mobile {
    position: fixed;
    inset: 84px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 40px 28px;
    border: 0;
    border-radius: 0;
    color: var(--white);
    background: rgba(14, 41, 38, 0.98);
    box-shadow: none;
    font-size: 16px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav.mobile a,
  .nav.mobile .nav-more,
  .nav.mobile .nav-more summary {
    width: 100%;
  }

  .nav.mobile a,
  .nav.mobile .nav-more summary {
    min-height: auto;
    padding: 14px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav.mobile .cta,
  .nav.mobile .nav-link-strong {
    justify-content: center;
    margin-top: 6px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
  }

  .nav.mobile .cta {
    border-color: var(--caliza);
    color: var(--pine);
    background: var(--caliza);
  }

  .nav.mobile .nav-more-menu {
    position: static;
    min-width: 0;
    margin: 4px 0 10px;
    padding: 4px 0 4px 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav.mobile .nav-more-menu a {
    min-height: auto;
    color: var(--white);
    font-size: 13px;
  }

  .hero-grid,
  .page-hero-grid,
  .intro-grid,
  .content-grid,
  .explore-head,
  .subbrands-head,
  .residences-head,
  .preview-grid,
  .invest-grid,
  .location-grid,
  .contact-grid,
  .portal-grid {
    grid-template-columns: 1fr;
  }

  .stage-strip {
    grid-template-columns: 1fr;
  }

  /* Simulador desactivado: .simulator-shell { grid-template-columns: 1fr; } */

  .hero-grid {
    padding-top: 126px;
  }

  .page-hero-grid {
    padding: 150px 0 72px;
  }

  .hero-video-slot {
    width: 100%;
    margin-top: 0;
  }

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

  .overview-grid,
  .home-residence-grid,
  .model-card-grid,
  .feature-grid,
  .feature-grid.two,
  .faq-grid,
  .timeline-grid,
  .inventory-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .residence-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .inventory-strip {
    grid-template-columns: 1fr;
  }

  .subbrand {
    min-height: 520px;
  }

  /* Amenidades desactivado temporalmente.
  .amenity-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .amenity-main {
    height: 600px;
  }

  .amenity-side {
    grid-template-rows: none;
    grid-template-columns: 1fr 1fr;
    height: 320px;
  }
  */

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

  .life-image {
    min-height: 650px;
  }

  .life-copy {
    padding: 90px 7vw;
  }

  .map {
    height: 520px;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 86px 20px;
  }

  .hero-grid {
    padding: 116px 20px 54px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-copy,
  .lead {
    font-size: 17px;
  }

  .title {
    font-size: 44px;
  }

  .intro-quote {
    font-size: 40px;
  }

  .hero-video-slot {
    border-radius: 0;
  }

  .hero-video-placeholder {
    padding: 0;
  }

  .hero-video-placeholder::before {
    inset: 0;
  }

  .presentation-mark {
    display: none;
  }

  .presentation-play {
    top: auto;
    bottom: 136px;
    right: 24px;
    width: 64px;
    transform: none;
  }

  .presentation-play i {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }

  .presentation-copy {
    display: none;
  }

  .presentation-copy span {
    font-size: 8px;
  }

  .presentation-copy strong {
    font-size: 29px;
  }

  .presentation-copy p {
    font-size: 11px;
  }

  .page-title {
    font-size: 54px;
  }

  .page-lead {
    font-size: 18px;
  }

  .title,
  .page-title,
  .intro-quote {
    overflow-wrap: anywhere;
  }

  .page-hero-grid {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero h1 span {
    font-size: 0.22em;
    letter-spacing: 0.24em;
  }

  .stage-strip {
    display: none;
  }

  .header-inner {
    height: 72px;
  }

  .language-button {
    min-width: 56px;
    min-height: 40px;
    padding: 0 9px;
  }

  .nav.mobile {
    inset: 72px 0 0;
  }

  .logo-word strong {
    font-size: 18px;
  }

  .logo svg {
    width: 38px;
    height: 38px;
  }

  .stats,
  .pillars,
  .overview-grid,
  .home-residence-grid,
  .model-card-grid,
  .feature-grid,
  .feature-grid.two,
  .faq-grid,
  .timeline-grid,
  .inventory-grid,
  .process-grid,
  .model-plan-strip,
  .portal-modules {
    grid-template-columns: 1fr;
  }

  /* Simulador desactivado: .plan-preview { grid-template-columns: 1fr; } */

  .brand-row,
  .model-row {
    grid-template-columns: 1fr;
  }

  .model-row.head {
    display: none;
  }

  .stat {
    padding: 26px;
  }

  .pillar {
    min-height: 240px;
  }

  .subbrand {
    min-height: 480px;
  }

  .overview-card,
  .home-residence-card,
  .process-step {
    min-height: 230px;
  }

  .editorial-panel {
    min-height: 430px;
    padding: 28px;
  }

  .detail-card strong {
    font-size: 25px;
  }

  .residence-card,
  .residence-copy ul {
    grid-template-columns: 1fr;
  }

  .residence-media {
    min-height: 250px;
  }

  .subbrand-logo {
    font-size: 34px;
  }

  /* Amenidades desactivado temporalmente.
  .amenity-main {
    height: 510px;
  }

  .amenity-side {
    grid-template-columns: 1fr;
    height: auto;
  }

  .side-card {
    height: 280px;
  }
  */

  .life-image {
    min-height: 480px;
  }

  .invest-points,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .form {
    padding: 24px;
    border-radius: 8px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-links a {
    min-height: 44px;
  }

  .float-contact {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.live-inventory {
  background: #f4f1e8;
}

.live-inventory-card {
  min-height: 220px;
}

.live-inventory-status {
  display: block;
  margin-top: 22px;
  font-size: 13px;
}

.live-inventory-status.is-available {
  color: #285f50;
}

.live-inventory-status.is-hold {
  color: #9b563d;
}

.live-inventory-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid rgba(24, 58, 54, 0.15);
  border-radius: 8px;
  color: rgba(24, 58, 54, 0.72);
  background: rgba(255, 255, 255, 0.72);
}

.live-inventory-note {
  max-width: 850px;
  margin-top: 22px;
  color: rgba(24, 58, 54, 0.65);
  font-size: 13px;
  line-height: 1.7;
}

.privacy-banner {
  position: fixed;
  z-index: 10000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #fff;
  background: #183a36;
  box-shadow: 0 22px 60px rgba(8, 32, 28, 0.34);
}

.chatwoot-enabled .privacy-banner {
  bottom: 96px;
}

.privacy-banner strong {
  display: block;
  font-family: "Libre Baskerville", serif;
  font-size: 17px;
}

.privacy-banner p {
  max-width: 690px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.privacy-banner a {
  color: #fff;
}

.privacy-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.privacy-banner .btn.outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
}

.privacy-banner .btn.outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.privacy-settings {
  min-height: 44px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.skip-link {
  position: fixed;
  z-index: 11000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 6px;
  color: #fff;
  background: #183a36;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid #b66b4d;
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .privacy-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .privacy-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Navegacion movil: panel de pantalla completa compartido por todas las paginas. */
@media (max-width: 1050px) {
  .progress {
    z-index: 10030;
  }

  .header,
  .site-page .header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 10020;
    width: 100%;
    overflow: visible;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  .header.scrolled,
  .site-page .header.scrolled,
  .header.menu-active,
  .site-page .header.menu-active {
    border-bottom-color: var(--line);
    background: rgba(246, 242, 234, 0.98);
    box-shadow: 0 10px 30px rgba(17, 42, 38, 0.08);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .menu-btn {
    position: relative;
    flex: 0 0 44px;
    font-size: 0;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  }

  .menu-btn::before,
  .menu-btn::after {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transition: transform 0.22s ease;
  }

  .menu-btn::before {
    transform: translate(-50%, -4px);
  }

  .menu-btn::after {
    transform: translate(-50%, 4px);
  }

  .header.menu-active .menu-btn {
    border-color: var(--pine);
    color: var(--pine);
    background: var(--white);
  }

  .header.menu-active .menu-btn::before {
    transform: translate(-50%, 0) rotate(45deg);
  }

  .header.menu-active .menu-btn::after {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .header.menu-active .nav.mobile,
  .site-page .header.menu-active .nav.mobile {
    position: fixed;
    inset: 84px 0 0;
    z-index: 1;
    display: flex;
    width: auto;
    min-height: 0;
    align-items: stretch;
    align-content: flex-start;
    gap: 0;
    padding: clamp(24px, 5vw, 48px) clamp(22px, 7vw, 72px) calc(40px + env(safe-area-inset-bottom));
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    color: var(--pine);
    background: var(--paper);
    box-shadow: none;
    font-size: 16px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    backdrop-filter: none;
    animation: mobile-menu-enter 0.24s ease both;
  }

  .header.menu-active .nav.mobile > a,
  .header.menu-active .nav.mobile > .nav-more > summary {
    min-height: 56px;
    justify-content: flex-start;
    padding: 14px 4px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--pine);
    background: transparent;
    font-family: var(--font-display);
    font-size: clamp(22px, 4.4vw, 34px);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.15;
    text-transform: none;
  }

  .header.menu-active .nav.mobile > a:hover,
  .header.menu-active .nav.mobile > a:focus-visible,
  .header.menu-active .nav.mobile > a.active,
  .header.menu-active .nav.mobile > .nav-more > summary:hover,
  .header.menu-active .nav.mobile > .nav-more > summary:focus-visible,
  .header.menu-active .nav.mobile > .nav-more.active > summary {
    color: var(--pine-2);
    background: rgba(122, 155, 130, 0.12);
  }

  .header.menu-active .nav.mobile .nav-more {
    width: 100%;
  }

  .header.menu-active .nav.mobile .nav-more summary::after {
    width: 8px;
    height: 8px;
    margin-left: auto;
  }

  .header.menu-active .nav.mobile .nav-more-menu {
    position: static;
    min-width: 0;
    margin: 0;
    padding: 8px 0 14px 18px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .header.menu-active .nav.mobile .nav-more-menu a {
    min-height: 48px;
    padding: 12px 4px;
    border: 0;
    color: var(--pine);
    background: transparent;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
  }

  .header.menu-active .nav.mobile > .nav-link-strong,
  .header.menu-active .nav.mobile > .cta {
    min-height: 52px;
    justify-content: center;
    margin-top: 18px;
    padding: 14px 20px;
    border: 1px solid var(--pine);
    border-radius: 999px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .header.menu-active .nav.mobile > .nav-link-strong {
    color: var(--pine);
    background: transparent;
  }

  .header.menu-active .nav.mobile > .cta {
    margin-top: 10px;
    color: var(--white);
    background: var(--pine);
  }
}

@media (max-width: 680px) {
  .header-inner {
    gap: 10px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .logo {
    min-width: 0;
    gap: 8px;
  }

  .logo-word {
    min-width: 0;
  }

  .logo-word strong {
    font-size: 14px;
    letter-spacing: 0.13em;
    white-space: nowrap;
  }

  .logo-word span {
    display: none;
  }

  .logo svg {
    width: 34px;
    height: 34px;
  }

  .language-switcher {
    margin-right: 0;
  }

  .language-button {
    min-width: 48px;
    min-height: 44px;
    padding: 0 8px;
  }

  .header.menu-active .nav.mobile,
  .site-page .header.menu-active .nav.mobile {
    inset: 72px 0 0;
    padding: 20px 20px calc(32px + env(safe-area-inset-bottom));
  }

  .header.menu-active .nav.mobile > a,
  .header.menu-active .nav.mobile > .nav-more > summary {
    min-height: 54px;
    font-size: clamp(22px, 7vw, 30px);
  }
}

@media (max-width: 360px) {
  .logo-word strong {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
}

@keyframes mobile-menu-enter {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Control flotante de retorno: se apila por encima de privacidad y Chatwoot desde JavaScript. */
.back-to-top {
  --back-to-top-bottom: 20px;
  position: fixed;
  z-index: 9990;
  right: max(20px, env(safe-area-inset-right));
  bottom: calc(var(--back-to-top-bottom) + env(safe-area-inset-bottom));
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--white);
  background: var(--pine);
  box-shadow: 0 12px 30px rgba(14, 41, 38, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

.back-to-top:active {
  transform: translateY(1px) scale(0.96);
}

body.menu-open .back-to-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (hover: hover) {
  .back-to-top:hover {
    background: var(--pine-2);
    transform: translateY(-2px);
  }
}

@media (max-width: 680px) {
  .back-to-top {
    right: max(16px, env(safe-area-inset-right));
    width: 48px;
    height: 48px;
  }
}
