:root {
  --ink: #101010;
  --ink-soft: #2c2c2c;
  --muted: #666666;
  --line: #d8d8d8;
  --paper: #ffffff;
  --paper-soft: #f5f5f5;
  --paper-dark: #111111;
  --white: #ffffff;
  --accent: #10241e;
  --accent-ink: #0b1713;
  --accent-soft: #e9efeb;
  --max: 1440px;
  --content: 1240px;
  --pad: clamp(20px, 4vw, 64px);
  --serif: "Cormorant Garamond", "Bodoni 72", "Didot", Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
}

img,
video {
  display: block;
  width: 100%;
}

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

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

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

[id] {
  scroll-margin-top: 112px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transform: translateY(0);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), background 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: -1px;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
  transition: width 80ms linear;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(16, 16, 16, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.nav-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 16px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  transition: padding 260ms ease;
}

.site-header.is-scrolled .nav-shell {
  padding-top: 11px;
  padding-bottom: 11px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 118px;
}

.brand img {
  filter: invert(1);
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 220ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--accent);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--accent);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  min-height: min(720px, 78svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero.is-light {
  color: var(--ink);
  background: var(--paper-soft);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.62));
}

.hero.is-light .hero-media::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.82));
}

.hero-media img,
.hero-media video {
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad) clamp(42px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 18px;
  color: currentColor;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.page-title,
.display {
  margin: 0;
  max-width: 980px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  font-size: clamp(3.4rem, 6.4vw, 5.6rem);
}

.page-title {
  font-size: clamp(2.6rem, 4.8vw, 3.8rem);
}

.hero-lede {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.35;
}

.is-light .hero-lede {
  color: var(--ink-soft);
}

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


.home-page .metric-band {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}

.home-page .metric-cell {
  min-height: clamp(100px, 8.8vw, 132px);
  padding: clamp(16px, 2.4vw, 24px);
}

.home-page .metric-cell strong {
  font-size: clamp(2rem, 3.55vw, 3.65rem);
}

.home-page .featured-launches {
  padding-top: clamp(54px, 7vw, 98px);
}

.home-page .launch-media {
  min-height: clamp(500px, 48vw, 735px);
}

.button,
.button-ghost,
.icon-button {
  min-height: 46px;
  border: 1px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: transparent;
  color: var(--accent);
}

.hero .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero .button:hover {
  background: transparent;
  color: var(--white);
}

.button-ghost {
  background: transparent;
  color: var(--accent);
}

.button-ghost:hover {
  background: var(--accent);
  color: var(--white);
}

.hero .button-ghost {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.hero .button-ghost:hover {
  background: var(--white);
  color: var(--ink);
}

.section.dark .actions .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.section.dark .actions .button:hover {
  background: transparent;
  color: var(--white);
}

.section.dark .actions .button-ghost {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.section.dark .actions .button-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 82px) var(--pad);
}

.section.tight {
  padding-top: clamp(32px, 5vw, 66px);
  padding-bottom: clamp(32px, 5vw, 66px);
}

.section.dark {
  position: relative;
  width: 100%;
  max-width: none;
  background: var(--paper-dark);
  color: var(--white);
  overflow: hidden;
}

.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.legal-section {
  padding-top: clamp(120px, 14vw, 180px);
}

.legal-header {
  max-width: 780px;
  margin: 0 auto clamp(32px, 5vw, 56px);
  text-align: center;
}

.legal-header .lead {
  color: var(--muted);
}

.legal-updated {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2.2em;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 1.1em;
  color: var(--ink-soft);
  line-height: 1.7;
}

.legal-note {
  max-width: 780px;
  margin: clamp(28px, 4vw, 44px) auto 0;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.legal-projects {
  display: grid;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.legal-project-card {
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 32px);
}

.legal-project-card h2 {
  margin: 0 0 4px;
}

.legal-project-card .legal-entity {
  margin: 0 0 14px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.legal-project-card p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.legal-doc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.legal-doc-list a {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.legal-doc-list a:hover {
  background: var(--ink);
  color: var(--white);
}

.error-content {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.error-content h1 {
  margin-top: 8px;
}

.error-content .actions {
  justify-content: center;
  margin-top: 24px;
}

.section.dark > .section-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) var(--pad);
}

.image-panel {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.22)), var(--panel-image);
  background-size: cover;
  background-position: center;
  min-height: clamp(420px, 48vw, 640px);
  display: grid;
  align-items: end;
}

.map-section {
  width: min(100%, 1320px);
  padding-top: clamp(30px, 4vw, 58px);
  padding-bottom: clamp(30px, 4vw, 58px);
}

.closing-strip {
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 64px);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.panel-brand {
  --panel-image: url("assets/web/projects/union-sqp/renders/union-pool.jpg?v=union-official-20260831");
}

.panel-kpf {
  --panel-image: url("assets/kpf/kpf-context-2.webp");
}

.panel-canal {
  --panel-image: url("assets/web/projects/canal-st/renders/canal-terrace.jpg");
}

.panel-union {
  --panel-image: url("assets/web/projects/union-sqp/renders/union-terrace.jpg?v=union-official-20260831");
}

.panel-team {
  --panel-image: url("assets/kpf/kpf-context-1.webp");
}

.panel-institutional {
  --panel-image: url("assets/web/news/central-entrega.jpg");
  background-position: center 42%;
}

.institutional-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
}

.institutional-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 3vw, 38px) 0;
}

.institutional-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.05rem, 4vw, 4rem);
}

.institutional-media {
  position: relative;
  min-height: clamp(420px, 44vw, 620px);
  overflow: hidden;
  background: var(--paper-soft);
}

.institutional-media img {
  height: calc(100% + 70px);
  object-fit: cover;
  transform: translateY(var(--parallax-y, 0));
  transition: transform 700ms ease, filter 700ms ease;
}

.institutional-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.institutional-media span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(26px, 4vw, 42px) 0 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-points span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.panel-with-form {
  min-height: clamp(500px, 50vw, 690px);
  align-items: center;
}

.panel-with-form > .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 410px);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.panel-copy {
  max-width: 760px;
}

.panel-with-form .quick-lead-form.lead-form {
  justify-self: end;
  width: min(100%, 410px);
}

.commercial-cta {
  background: var(--paper);
}

.commercial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 410px);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.commercial-copy {
  max-width: 760px;
}

.commercial-cta .quick-lead-form.lead-form {
  width: min(100%, 410px);
  justify-self: end;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: none;
}

.commercial-cta .quick-lead-form .form-header {
  background: var(--white);
  color: var(--accent);
}

.commercial-cta .quick-lead-form .form-header strong {
  color: var(--muted);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section.dark .section-kicker,
.section.dark .muted {
  color: rgba(255, 255, 255, 0.64);
}

.section h2 {
  margin: 0;
  max-width: 780px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.35vw, 3.1rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
}

.section > .section-kicker,
.section > h2,
.section > .lead {
  margin-left: max(0px, calc((100% - var(--content)) / 2));
}

.section > .section-kicker {
  width: min(100%, var(--content));
  margin-right: auto;
}

.section > .actions,
.section > .article-body-grid,
.section > .commercial-grid,
.section > .contact-band,
.section > .editorial-grid,
.section > .institutional-grid,
.section > .news-list,
.section > .plans-layout,
.section > .project-cta-grid,
.section > .project-intro,
.section > .related-news-grid,
.section > .response-grid,
.section > .team-grid,
.section > .testimonial-grid,
.section > .visual-atlas,
.amenities-section > .amenity-split {
  width: min(100%, var(--content));
  margin-right: auto;
  margin-left: auto;
}

.lead {
  margin: 20px 0 0;
  max-width: 680px;
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  line-height: 1.45;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}

.muted {
  color: var(--muted);
}

.section-head {
  width: min(100%, var(--content));
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.52fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.section-head .lead {
  margin-top: 0;
}

.featured-launches .section-head {
  grid-template-columns: 1fr;
  align-items: start;
}

.project-section-heading {
  width: min(100%, var(--content));
  margin-right: auto;
  margin-left: auto;
}

.project-section-heading .filter-bar {
  margin-top: 28px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
}

.project-intro {
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.62fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.project-intro h2 {
  max-width: 15ch;
  font-family: var(--sans);
  font-size: clamp(1.32rem, 2.4vw, 2.25rem);
  font-weight: 400;
  line-height: 1.16;
}

.project-intro .lead {
  max-width: 560px;
}

.project-intro .stats-grid {
  align-self: center;
}

.project-intro .stat strong {
  font-size: clamp(1.95rem, 3.2vw, 2.9rem);
  overflow-wrap: anywhere;
}

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

.stat {
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-family: var(--sans);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  transition: opacity 180ms ease, transform 180ms ease;
}

.stat strong.is-counting {
  opacity: 0.86;
  transform: translateY(-2px);
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-intro {
  grid-template-columns: minmax(0, 0.72fr);
  align-items: start;
}

.metric-band {
  width: min(100%, calc(var(--max) + (var(--pad) * 2)));
  margin: 0 auto;
  padding: clamp(10px, 2vw, 24px) var(--pad);
}

.metric-band-compact {
  padding-top: 0;
}

.metric-band-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.metric-cell {
  min-height: clamp(88px, 8vw, 126px);
  padding: clamp(12px, 1.7vw, 22px) clamp(14px, 1.6vw, 22px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric-cell:last-child {
  border-right: 0;
}

.metric-cell strong {
  display: block;
  font-family: var(--sans);
  font-size: clamp(1.9rem, 3.35vw, 3.45rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  transition: opacity 180ms ease, transform 180ms ease;
}

.metric-cell strong.is-counting {
  opacity: 0.88;
  transform: translateY(-2px);
}

.metric-cell span {
  display: block;
  margin-top: clamp(10px, 1vw, 14px);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.project-facts-bar {
  width: min(760px, calc(100% - (var(--pad) * 2)));
  margin: clamp(-78px, -5.6vw, -54px) var(--pad) clamp(38px, 5vw, 76px) auto;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(16, 36, 30, 0.98);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.project-facts-bar div {
  min-height: clamp(86px, 7.4vw, 104px);
  padding: clamp(18px, 2.1vw, 24px) clamp(18px, 2.2vw, 28px) clamp(18px, 2.1vw, 24px) clamp(56px, 4.2vw, 68px);
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-facts-bar div:last-child {
  border-right: 0;
}

.project-facts-bar div::before {
  content: "";
  position: absolute;
  left: clamp(18px, 2vw, 26px);
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  background: #89d8ed;
  -webkit-mask: var(--fact-icon) center / contain no-repeat;
  mask: var(--fact-icon) center / contain no-repeat;
}

.project-facts-bar div[data-fact-icon="price"]::before {
  --fact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h16v12H4V6Zm2 2v8h12V8H6Zm2 2h3v2H8v-2Zm8 4h-3v-2h3v2Z'/%3E%3C/svg%3E");
}

.project-facts-bar div[data-fact-icon="beds"]::before {
  --fact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h3v7h13a2 2 0 0 1 2 2v5h-2v-2H4v2H2V5h2Zm5 2h4a3 3 0 0 1 3 3v2H9V7Zm2 2v1h3a1 1 0 0 0-1-1h-2Zm-7 5v1h16v-1H4Z'/%3E%3C/svg%3E");
}

.project-facts-bar div[data-fact-icon="area"]::before {
  --fact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16v16H4V4Zm2 2v12h12V6H6Zm2 2h8v2H8V8Zm0 4h5v2H8v-2Z'/%3E%3C/svg%3E");
}

.project-facts-bar span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: none;
}

.project-facts-bar strong {
  display: block;
  font-family: var(--sans);
  color: var(--white);
  font-size: clamp(1rem, 1.18vw, 1.28rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
  white-space: nowrap;
  overflow-wrap: anywhere;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: stretch;
}

.feature-split.reverse {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
}

.feature-image {
  min-height: clamp(420px, 52vw, 680px);
  background: var(--paper-soft);
  overflow: hidden;
}

.feature-image img,
.feature-image video {
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 56px) 0;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-launches {
  padding-top: clamp(38px, 6vw, 78px);
}

.launch-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
  margin-top: 44px;
  background: transparent;
  border: 0;
}

.launch-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.launch-card a {
  position: relative;
  display: block;
  min-height: 100%;
}

.launch-media {
  position: relative;
  min-height: clamp(460px, 44vw, 680px);
  overflow: hidden;
  background: var(--paper-soft);
}

.launch-media img {
  height: calc(100% + 70px);
  object-fit: cover;
  transform: translateY(var(--parallax-y, 0));
  transition: transform 700ms ease, filter 700ms ease;
}

.launch-card:hover .launch-media img {
  filter: contrast(1.04);
  transform: translateY(var(--parallax-y, 0)) scale(1.025);
}

.launch-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.project-code {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.8fr);
  gap: clamp(16px, 2vw, 26px);
  align-items: end;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.launch-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.2vw, 3.55rem);
  font-weight: 400;
  line-height: 1.03;
}

.launch-copy p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.launch-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.launch-specs span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.launch-dark .launch-copy {
  background: rgba(16, 36, 30, 0.9);
  color: var(--white);
}

.launch-dark .launch-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.launch-dark .launch-specs,
.launch-dark .launch-specs span {
  border-color: rgba(255, 255, 255, 0.18);
}

.launch-dark .launch-specs {
  background: rgba(255, 255, 255, 0.18);
}

.launch-dark .launch-specs span {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

.launch-dark .project-code {
  background: rgba(16, 16, 16, 0.78);
  color: var(--white);
}

.project-display-grid {
  width: min(100%, var(--content));
  margin-right: auto;
  margin-left: auto;
  gap: clamp(22px, 3vw, 42px);
}

.project-display-card {
  border: 0;
  background: transparent;
  overflow: visible;
  box-shadow: none;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-display-card a {
  display: block;
  min-height: 100%;
}

.project-display-media {
  position: relative;
  aspect-ratio: 16 / 9.35;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-soft);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.075);
  transition: box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-display-media::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.project-display-media img {
  height: calc(100% + 46px);
  object-fit: cover;
  transform: translateY(var(--parallax-y, 0));
  transition: transform 640ms cubic-bezier(0.16, 1, 0.3, 1), filter 640ms ease;
}

.project-display-card:hover .project-display-media img {
  filter: contrast(1.04) saturate(1.04);
  transform: translateY(var(--parallax-y, 0)) scale(1.035);
}

.project-display-card:hover .project-display-media {
  box-shadow: 0 24px 68px rgba(16, 36, 30, 0.13);
}

.project-status-pill,
.project-price-pill {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  text-transform: uppercase;
}

.project-status-pill {
  top: 18px;
  right: 18px;
  min-height: 40px;
  gap: 9px;
  padding: 0 18px;
  overflow: hidden;
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  box-shadow: 0 12px 28px rgba(16, 36, 30, 0.18);
  isolation: isolate;
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.project-status-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.22) 46%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-display-card:hover .project-status-pill {
  transform: translateY(-2px);
  background: #12382d;
  box-shadow: 0 16px 34px rgba(16, 36, 30, 0.24);
}

.project-display-card:hover .project-status-pill::after {
  transform: translateX(130%);
}

.project-status-pill i {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #78b895;
  box-shadow: 0 0 0 4px rgba(120, 184, 149, 0.2);
}

.project-status-pill i::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(120, 184, 149, 0.58);
  border-radius: 50%;
  animation: statusPulse 1800ms ease-out infinite;
}

@keyframes statusPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.58);
  }

  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

.project-price-pill {
  right: 22px;
  bottom: 24px;
  min-height: 52px;
  gap: 12px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.project-price-pill small {
  color: #9d8d81;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.project-price-pill strong {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.5vw, 1.38rem);
  font-weight: 700;
  letter-spacing: 0;
}

.project-display-body {
  padding-top: 22px;
  color: var(--accent);
}

.project-delivery {
  margin: 0 0 18px;
  color: #9d8d81;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.project-display-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.project-display-title h3 {
  margin: 0;
  font-family: var(--sans);
  color: var(--accent);
  font-size: clamp(1.3rem, 1.9vw, 2.15rem);
  font-weight: 700;
  line-height: 1.04;
}

.project-display-title p {
  margin: 10px 0 0;
  color: #9d8d81;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.project-round-arrow {
  width: clamp(46px, 4vw, 62px);
  height: clamp(46px, 4vw, 62px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 36, 30, 0.12);
  border-radius: 50%;
  background: var(--white);
  color: var(--accent);
  font-size: clamp(1.25rem, 1.6vw, 1.7rem);
  line-height: 1;
  transition: transform 240ms ease, background 240ms ease, color 240ms ease;
}

.project-display-card:hover .project-round-arrow {
  transform: translate(4px, -4px);
  background: var(--accent);
  color: var(--white);
}

.project-display-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 26px);
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--accent);
}

.project-display-specs span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: var(--accent);
  font-size: 0.82rem;
  line-height: 1.3;
}

.project-display-specs span::before {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: #9d8d81;
  opacity: 0.9;
  -webkit-mask: var(--project-spec-icon) center / contain no-repeat;
  mask: var(--project-spec-icon) center / contain no-repeat;
}

.project-display-specs span[data-spec="area"]::before {
  --project-spec-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16v16H4V4Zm2 2v12h12V6H6Zm2 2h8v2H8V8Zm0 4h5v2H8v-2Z'/%3E%3C/svg%3E");
}

.project-display-specs span[data-spec="beds"]::before {
  --project-spec-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h3v7h13a2 2 0 0 1 2 2v5h-2v-2H4v2H2V5h2Zm5 2h4a3 3 0 0 1 3 3v2H9V7Zm2 2v1h3a1 1 0 0 0-1-1h-2Zm-7 5v1h16v-1H4Z'/%3E%3C/svg%3E");
}

.project-display-specs span[data-spec="price"]::before {
  --project-spec-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h16v12H4V6Zm2 2v8h12V8H6Zm2 2h3v2H8v-2Zm8 4h-3v-2h3v2Z'/%3E%3C/svg%3E");
}

.portfolio-showcase .featured-project-track {
  grid-auto-columns: calc((100% - clamp(18px, 2vw, 28px)) / 2);
}

.portfolio-showcase {
  width: min(100%, var(--content));
  margin-right: auto;
  margin-left: auto;
}

.showcase-card.project-display-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.showcase-card.project-display-card a {
  display: block;
}

.showcase-card.project-display-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
}

.featured-project-rail {
  position: relative;
  margin-top: 44px;
}

.featured-project-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - clamp(36px, 4vw, 56px)) / 3);
  gap: clamp(18px, 2vw, 28px);
  overflow-x: auto;
  padding: 0 2px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.featured-project-track::-webkit-scrollbar {
  display: none;
}

.showcase-card {
  min-width: 0;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.05);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1), border-color 300ms ease;
}

.showcase-card a {
  display: grid;
  min-height: 100%;
  grid-template-rows: auto 1fr;
}

.showcase-media {
  position: relative;
  aspect-ratio: 1 / 1.04;
  overflow: hidden;
  background: var(--paper-soft);
}

.showcase-media::after {
  content: "";
  position: absolute;
  inset: 52% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.showcase-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1), filter 650ms ease;
}

.showcase-media span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-body {
  display: grid;
  align-content: start;
  min-height: 286px;
  padding: clamp(20px, 2.2vw, 30px);
  border-top: 1px solid var(--line);
  text-align: center;
}

.showcase-mark {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.showcase-body h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showcase-body > p:not(.showcase-mark) {
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.35;
}

.showcase-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 22px -1px 0;
  background: var(--line);
}

.showcase-specs span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--muted);
  font-size: 0.78rem;
}

.showcase-body strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
}

.showcase-body em {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease;
}

.showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 36, 30, 0.45);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.13);
}

.showcase-card:hover .showcase-media img {
  filter: contrast(1.04) saturate(1.03);
  transform: scale(1.04);
}

.showcase-card:hover .showcase-body em {
  background: var(--white);
  color: var(--accent);
}

.rail-arrow {
  position: absolute;
  top: 35%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(16, 36, 30, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent);
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: transform 220ms ease, opacity 220ms ease, background 220ms ease;
}

.rail-arrow:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.rail-arrow:disabled {
  opacity: 0.32;
  cursor: default;
  transform: none;
}

.rail-prev {
  left: -18px;
}

.rail-next {
  right: -18px;
}

.home-about {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.about-media {
  position: relative;
  min-height: clamp(390px, 42vw, 620px);
  overflow: hidden;
  background: var(--paper-soft);
}

.about-media img {
  height: calc(100% + 70px);
  object-fit: cover;
  transform: translateY(var(--parallax-y, 0));
  filter: grayscale(0.18) contrast(1.02);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.18));
  pointer-events: none;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(14px, 3vw, 34px) 0;
}

.about-copy h2 {
  font-size: clamp(1.72rem, 3.2vw, 2.85rem);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.about-points div {
  min-height: 104px;
  padding: 16px;
  background: var(--white);
}

.about-points strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 400;
  line-height: 1;
}

.about-points span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-conversion {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: clamp(520px, 58vw, 740px);
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.conversion-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.conversion-media img {
  height: calc(100% + 80px);
  object-fit: cover;
  transform: translateY(var(--parallax-y, 0)) scale(1.03);
  filter: grayscale(0.18) contrast(1.04);
}

.conversion-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.34)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.42));
}

.conversion-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 112px) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 410px);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
}

.conversion-copy {
  max-width: 780px;
}

.home-conversion .section-kicker,
.home-conversion .lead {
  color: rgba(255, 255, 255, 0.76);
}

.conversion-copy .project-code {
  position: static;
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.conversion-copy h2 {
  max-width: 780px;
  font-size: clamp(1.76rem, 3.5vw, 3.7rem);
}

.conversion-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.conversion-points span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.button-ghost.light {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.button-ghost.light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

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

.home-conversion.no-media {
  min-height: auto;
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-conversion.no-media .conversion-inner {
  min-height: auto;
  padding-top: clamp(44px, 6vw, 86px);
  padding-bottom: clamp(44px, 6vw, 86px);
}

.home-conversion.no-media .section-kicker,
.home-conversion.no-media .lead {
  color: var(--muted);
}

.home-conversion.no-media .conversion-copy .project-code {
  border-color: var(--line);
  background: var(--paper);
  color: var(--accent);
}

.home-conversion.no-media .conversion-points span {
  border-color: var(--line);
  background: var(--white);
  color: var(--accent);
}

.home-conversion.no-media .button-ghost.light {
  border-color: var(--accent);
  color: var(--accent);
}

.home-conversion.no-media .button-ghost.light:hover {
  background: var(--accent);
  color: var(--white);
}

.home-conversion.no-media .text-link.light {
  color: var(--accent);
}

.quick-lead-form.lead-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: none;
}

.quick-lead-form .form-header {
  padding: 16px;
  background: var(--white);
  color: var(--accent);
}

.quick-lead-form .form-header strong {
  color: var(--muted);
}

.quick-lead-form label {
  padding: 14px 16px;
}

.quick-lead-form input,
.quick-lead-form select {
  min-height: 42px;
  padding: 8px 0;
}

.quick-lead-form .button {
  grid-column: 1 / -1;
  min-height: 48px;
  border-color: var(--accent);
}

.feature-copy h3,
.card h3,
.news-item h3,
.team-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.7vw, 2.4rem);
  font-weight: 400;
  line-height: 1.08;
}

.feature-copy p,
.card p,
.news-item p,
.team-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.detail-list div {
  display: grid;
  gap: 4px;
}

.detail-list span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-list strong {
  font-size: 18px;
  font-weight: 400;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
  margin-top: 44px;
}

.projects-carousel {
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, calc((100% - 84px) / 3));
  grid-template-columns: none;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
}

.projects-carousel .card {
  scroll-snap-align: start;
}

.card {
  min-width: 0;
  border: 1px solid transparent;
  background: var(--white);
  transition: border-color 260ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.card-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-soft);
}

.card-media.landscape {
  aspect-ratio: 16 / 10;
}

.card-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.card-body {
  padding-top: 18px;
}

.projects-grid:not(.projects-carousel) .card {
  border-color: var(--line);
}

.projects-grid:not(.projects-carousel) .card-body {
  padding: 18px 18px 22px;
}

.projects-grid:not(.projects-carousel) .text-link {
  width: 100%;
  min-height: 42px;
  justify-content: center;
  border: 1px solid rgba(16, 36, 30, 0.18);
  color: var(--accent);
}

.projects-grid:not(.projects-carousel) .card:hover .text-link {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.projects-grid:not(.projects-carousel) {
  width: min(100%, var(--content));
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 4.5vw, 58px) clamp(24px, 3.5vw, 44px);
}

.projects-grid:not(.projects-carousel) .card.project-display-card {
  border-color: transparent;
  background: transparent;
}

.card.project-display-card .project-display-body {
  padding: 22px 0 0;
}

.card.project-display-card .project-display-title h3,
.showcase-card.project-display-card .project-display-title h3 {
  font-family: var(--sans);
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  font-weight: 700;
  line-height: 1.04;
}

.card.project-display-card .project-display-title p,
.showcase-card.project-display-card .project-display-title p,
.card.project-display-card .project-delivery,
.showcase-card.project-display-card .project-delivery {
  margin-top: 12px;
  color: #9d8d81;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.card.project-display-card .project-delivery,
.showcase-card.project-display-card .project-delivery {
  margin: 0 0 18px;
}

.card.project-display-card .project-display-specs {
  margin-top: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link::after {
  content: "->";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.filter-bar {
  justify-content: space-between;
  align-items: flex-start;
}

.filter-primary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter-button.is-active,
.filter-button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.district-select {
  position: relative;
  z-index: 5;
}

.district-select summary {
  min-height: 38px;
  min-width: 148px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.12em;
  list-style: none;
  text-transform: uppercase;
}

.district-select summary::-webkit-details-marker {
  display: none;
}

.district-select summary::after {
  content: "+";
  color: var(--accent);
}

.district-select[open] summary {
  border-color: var(--accent);
  color: var(--accent);
}

.district-select[open] summary::after {
  content: "-";
}

.district-select > div {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: min(280px, 86vw);
  display: grid;
  gap: 1px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
}

.district-select .filter-button {
  width: 100%;
  justify-content: flex-start;
  background: var(--white);
  text-align: left;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2.5vw, 34px);
  margin-top: 44px;
}

.editorial-grid .wide {
  grid-column: span 7;
}

.editorial-grid .narrow {
  grid-column: span 5;
}

.map-shell,
.project-location,
.map-experience {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.map-experience {
  align-items: stretch;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  justify-content: center;
}

.project-location {
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1.46fr);
  align-items: center;
}

.portfolio-map {
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1.46fr);
}

.map-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 0;
  justify-content: center;
}

.map-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 4.8vw, 5.25rem);
  line-height: 0.96;
}

.project-location .map-copy {
  justify-content: center;
}

.project-location .map-copy h2 {
  max-width: 24rem;
  font-size: clamp(1.15rem, 1.8vw, 1.8rem);
  line-height: 1.14;
}

.map-copy .lead {
  max-width: 34rem;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.55;
}

.portfolio-map .map-copy h2 {
  max-width: 24rem;
  font-size: clamp(1.15rem, 1.8vw, 1.8rem);
  line-height: 1.14;
}

.portfolio-map .map-copy .lead {
  max-width: 31rem;
}

.map-section-heading {
  max-width: 18rem;
  margin: 0 0 14px;
}

.map-section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-weight: 400;
  line-height: 1.1;
}

.map-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.portfolio-map .map-directory {
  margin-top: clamp(14px, 2vw, 22px);
}

.map-directory button {
  min-height: 46px;
  padding: 9px 12px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
}

.map-directory strong,
.map-directory span {
  display: block;
}

.map-directory strong {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-directory span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.map-directory button:hover,
.map-directory button.is-active {
  background: var(--accent);
  color: var(--white);
}

.map-directory button:hover span,
.map-directory button.is-active span {
  color: rgba(255, 255, 255, 0.66);
}

.nearby-directory {
  grid-template-columns: 1fr;
  max-height: 360px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.project-location .nearby-directory {
  max-height: none;
  margin-top: clamp(22px, 3vw, 34px);
  overflow: visible;
  border: 0;
  background: transparent;
}

.project-location .map-directory button {
  min-height: 54px;
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  padding: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.project-location .map-directory button:last-child {
  border-bottom: 1px solid var(--line);
}

.project-location .map-directory button:hover,
.project-location .map-directory button.is-active {
  background: transparent;
  color: var(--accent);
}

.project-location .map-directory span {
  order: 1;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.project-location .map-directory strong {
  order: 2;
  justify-self: end;
  font-size: clamp(0.86rem, 1vw, 1.02rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: right;
  text-transform: none;
}

.project-location .map-directory button:hover strong,
.project-location .map-directory button.is-active strong {
  text-decoration: underline;
  text-underline-offset: 5px;
  color: var(--accent);
}

.map-intro {
  max-width: 28rem;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.map-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.map-category-row span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.premium-map {
  position: relative;
  min-height: clamp(460px, 46vw, 620px);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 18%, rgba(183, 170, 127, 0.2), transparent 18%),
    radial-gradient(circle at 78% 24%, rgba(91, 121, 94, 0.38), transparent 22%),
    radial-gradient(circle at 64% 82%, rgba(43, 78, 92, 0.32), transparent 24%),
    linear-gradient(135deg, #151715 0%, #252a25 38%, #111313 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  isolation: isolate;
}

.project-location .premium-map {
  min-height: clamp(390px, 31vw, 460px);
}

.portfolio-map .premium-map {
  min-height: clamp(410px, 36vw, 500px);
}

.premium-map::before,
.premium-map::after {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -1;
  pointer-events: none;
}

.premium-map::before {
  background:
    linear-gradient(27deg, transparent 0 44%, rgba(237, 232, 219, 0.24) 44.2% 45%, transparent 45.2% 100%),
    linear-gradient(118deg, transparent 0 51%, rgba(237, 232, 219, 0.2) 51.2% 51.9%, transparent 52.1% 100%),
    linear-gradient(82deg, transparent 0 57%, rgba(237, 232, 219, 0.13) 57.2% 58.2%, transparent 58.4% 100%),
    linear-gradient(4deg, transparent 0 46%, rgba(237, 232, 219, 0.13) 46.2% 46.9%, transparent 47.1% 100%);
}

.premium-map::after {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black 0, transparent 74%);
}

.lima-map {
  background:
    radial-gradient(ellipse at 5% 82%, rgba(41, 88, 108, 0.52), transparent 34%),
    radial-gradient(circle at 75% 30%, rgba(93, 125, 83, 0.34), transparent 22%),
    radial-gradient(circle at 36% 46%, rgba(190, 170, 115, 0.14), transparent 26%),
    linear-gradient(135deg, #131717 0%, #262b26 48%, #111313 100%);
}

.district-map {
  min-height: clamp(430px, 46vw, 620px);
}

.portfolio-map,
.project-location {
  display: block;
}

.map-experience .map-copy {
  display: block;
  margin-bottom: clamp(14px, 2.4vw, 26px);
}

.portfolio-map .map-copy h2,
.project-location .map-copy h2 {
  max-width: 34rem;
  font-family: var(--sans);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.22;
}

.portfolio-map .map-intro,
.project-location .map-intro {
  max-width: 46rem;
  margin-top: 8px;
  font-size: 0.92rem;
}

.map-category-row {
  display: none;
}

.map-experience .map-directory,
.project-location .nearby-directory {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(168px, 1fr);
  grid-template-columns: none;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--line);
  scrollbar-width: thin;
}

.map-experience .map-directory {
  margin-top: clamp(14px, 2vw, 22px);
}

.map-experience .map-directory button,
.project-location .map-directory button {
  min-height: 72px;
  display: block;
  padding: 14px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  text-align: left;
}

.map-experience .map-directory button:last-child,
.project-location .map-directory button:last-child {
  border-right: 0;
}

.project-location .map-directory strong,
.project-location .map-directory span {
  order: initial;
  justify-self: auto;
  text-align: left;
}

.project-location .map-directory strong {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.project-location .map-directory span {
  margin-top: 5px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.project-location .map-directory button:hover strong,
.project-location .map-directory button.is-active strong {
  color: var(--white);
  text-decoration: none;
}

.project-location .map-directory button:hover span,
.project-location .map-directory button.is-active span {
  color: rgba(255, 255, 255, 0.66);
}

.portfolio-map .premium-map,
.project-location .premium-map {
  min-height: clamp(430px, 43vw, 610px);
  border-color: rgba(16, 36, 30, 0.24);
}

.project-location .premium-map {
  min-height: clamp(450px, 44vw, 640px);
}

.map-filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  border: 0;
  background: transparent;
}

.map-filter-row button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease;
}

.map-filter-row button:hover,
.map-filter-row button.is-active {
  background: var(--accent);
  color: var(--white);
}

.map-insight-card {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 650;
  width: min(340px, calc(100% - 32px));
  padding: 15px;
  border: 1px solid rgba(16, 36, 30, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.13);
  pointer-events: auto;
  backdrop-filter: blur(18px);
}

.portfolio-map .map-insight-card,
.portfolio-map + .map-filter-row {
  display: none;
}

.map-insight-card span {
  display: block;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.map-insight-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 400;
  line-height: 1.08;
}

.map-insight-card p {
  display: none;
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.map-insight-card ul {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.map-insight-card li {
  margin: 0;
}

.map-insight-card li button {
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 9px 0;
  border: 0;
  border-top: 1px solid rgba(16, 16, 16, 0.13);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.map-insight-card li button:hover strong {
  color: var(--accent);
}

.map-insight-card li strong {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-insight-card li span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: none;
}

.map-point.is-filtered-out {
  display: none;
}

.map-zone {
  position: absolute;
  z-index: 0;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
}

.zone-coast {
  left: 8%;
  bottom: 9%;
  transform: rotate(-24deg);
}

.zone-core {
  right: 8%;
  top: 8%;
}

.map-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  transform: translate(-50%, -50%);
}

.map-point > button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(190px, 42vw);
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(18, 18, 18, 0.74);
  color: var(--white);
  font: inherit;
  cursor: pointer;
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.map-point > button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.map-point > button strong {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.map-point > button:hover,
.map-point.is-active > button,
.map-point:focus-within > button {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.map-point.is-active > button span,
.map-point:focus-within > button span,
.map-point > button:hover span {
  background: var(--accent);
  color: var(--white);
}

.map-point.primary > button {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.map-popover {
  position: absolute;
  left: 0;
  bottom: calc(100% + 12px);
  width: min(270px, 76vw);
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 12, 12, 0.92);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.map-point.align-right .map-popover {
  left: auto;
  right: 0;
}

.map-point.align-bottom .map-popover {
  bottom: auto;
  top: calc(100% + 12px);
}

.map-point:hover .map-popover,
.map-point:focus-within .map-popover,
.map-point.is-active .map-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.map-popover img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

.map-popover div {
  padding: 12px 8px 6px;
}

.map-popover strong,
.map-popover small {
  display: block;
}

.map-popover strong {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-popover small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.real-map {
  width: 100%;
  height: clamp(430px, 43vw, 610px);
  min-height: 0;
  aspect-ratio: auto;
  background: #dce5ed;
  border: 1px solid rgba(16, 16, 16, 0.18);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

.district-map.real-map {
  width: 100%;
  height: clamp(450px, 44vw, 640px);
  min-height: 0;
}

.portfolio-map .real-map {
  width: 100%;
  height: clamp(450px, 42vw, 620px);
  min-height: 0;
}

.real-map.is-leaflet .tile-layer,
.real-map.is-leaflet > .map-point,
.real-map.is-leaflet > .map-credit {
  display: none;
}

.real-map::before,
.real-map::after {
  display: none;
}

.tile-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #dce5ed;
  transition: opacity 220ms ease, filter 220ms ease;
}

.tile-layer img {
  position: absolute;
  width: 256px;
  height: 256px;
  max-width: none;
  user-select: none;
}

.tile-layer-satellite {
  opacity: 0;
  filter: saturate(0.9) contrast(1.08) brightness(0.86);
}

.real-map[data-view="satellite"] .tile-layer-road {
  opacity: 0;
}

.real-map[data-view="satellite"] .tile-layer-satellite {
  opacity: 1;
}

.real-map[data-view="satellite"] {
  background: #1d1d1d;
}

.map-view-toggle {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 500;
  display: inline-flex;
  overflow: hidden;
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.map-view-toggle button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.98rem;
}

.map-view-toggle button:last-child {
  border-right: 0;
}

.map-view-toggle button.is-active {
  color: var(--ink);
  font-weight: 700;
}

.map-expand {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 500;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--muted);
  cursor: pointer;
  font-size: 1.3rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.real-map:fullscreen {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
}

.map-credit {
  position: absolute;
  right: 12px;
  bottom: 9px;
  z-index: 8;
  padding: 4px 7px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.62rem;
}

.leaflet-container {
  font-family: var(--sans);
  background: #dce5ed;
}

.leaflet-control-zoom {
  border: 0 !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18) !important;
}

.leaflet-control-attribution {
  font-size: 9px !important;
}

.leaflet-control-zoom a {
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  border: 0 !important;
  color: var(--ink) !important;
}

.leaflet-tribeca-marker {
  width: auto !important;
}

.leaflet-tribeca-marker span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #d62f25;
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.leaflet-tribeca-marker span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  z-index: -1;
  width: 13px;
  height: 13px;
  background: inherit;
  transform: translateX(-50%) rotate(45deg);
}

.leaflet-tribeca-marker strong {
  position: absolute;
  left: 42px;
  bottom: 2px;
  padding: 6px 9px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.leaflet-tribeca-marker i {
  display: none;
}

.leaflet-tribeca-marker.is-poi {
  opacity: 0.82;
}

.leaflet-tribeca-marker.is-poi span {
  background: #169a68;
}

.leaflet-tribeca-marker.is-transporte span {
  background: #2f6fba;
}

.leaflet-tribeca-marker.is-salud span {
  background: #cf3b36;
}

.leaflet-tribeca-marker.is-educacion span {
  background: #8a5fb8;
}

.leaflet-tribeca-marker.is-entretenimiento span {
  background: #c68a2b;
}

.leaflet-tribeca-marker.is-poi strong {
  opacity: 0.78;
  font-size: 0.6rem;
}

.tribeca-leaflet-popup .leaflet-popup-content-wrapper {
  border-radius: 12px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.tribeca-leaflet-popup .leaflet-popup-content {
  width: min(360px, 76vw) !important;
  margin: 0;
}

.tribeca-leaflet-popup .leaflet-popup-tip {
  background: var(--white);
}

.tribeca-leaflet-popup .leaflet-popup-close-button {
  top: 16px !important;
  right: 16px !important;
  z-index: 3;
  color: var(--muted) !important;
  font-size: 28px !important;
}

.leaflet-pop-card {
  padding: 10px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.leaflet-pop-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}

.real-map .map-point {
  z-index: 6;
  transform: translate(-50%, -100%);
}

.real-map .map-point.is-active {
  z-index: 14;
}

.real-map .map-point > button {
  gap: 8px;
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  backdrop-filter: none;
}

.real-map .map-point > button:hover,
.real-map .map-point.is-active > button,
.real-map .map-point:focus-within > button {
  transform: translateY(-2px);
  background: transparent;
  color: var(--ink);
}

.real-map .map-point > button span {
  position: relative;
  z-index: 1;
  min-width: 34px;
  width: 34px;
  height: 34px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #d62f25;
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.real-map .map-point > button span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  z-index: -1;
  width: 13px;
  height: 13px;
  background: inherit;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.16);
}

.real-map .map-point > button strong {
  padding: 6px 9px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.real-map[data-view="satellite"] .map-point > button strong {
  background: rgba(21, 21, 21, 0.76);
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.real-map .map-point.poi > button span {
  background: #2f7f64;
}

.real-map .map-point.poi:nth-of-type(3n) > button span {
  background: #567e91;
}

.real-map .map-point.poi:nth-of-type(4n) > button span {
  background: #8a7547;
}

.portfolio-map .map-point.poi:not(.is-active) {
  opacity: 0.72;
}

.portfolio-map .map-point.poi:not(.is-active) > button strong {
  opacity: 0;
  transform: translateX(-4px);
}

.portfolio-map .map-point.poi:hover > button strong,
.portfolio-map .map-point.poi.is-active > button strong {
  opacity: 1;
  transform: translateX(0);
}

.map-popover {
  width: min(430px, 82vw);
  padding: 12px;
  border: 0;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  pointer-events: auto;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: none;
}

.map-popover-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 2px 10px;
}

.map-popover-top span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 9px;
  background: #202334;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
}

.map-popover-top span + span {
  background: #ff6a17;
}

.map-popover-top i {
  margin-left: auto;
  color: var(--muted);
  font-size: 1.65rem;
  font-style: normal;
  line-height: 1;
}

.map-popover img {
  aspect-ratio: 16 / 11;
  border-radius: 4px 4px 0 0;
  filter: saturate(1.02) contrast(1.02);
}

.map-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 13px;
  border-radius: 0 0 10px 10px;
  background: var(--accent);
  color: var(--white);
}

.map-card-footer > div {
  padding: 0;
}

.map-card-footer strong {
  color: var(--white);
  font-size: 0.86rem;
}

.map-card-footer small {
  color: rgba(255, 255, 255, 0.66);
}

.map-card-footer a {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ff6a17;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}

.poi-card .map-card-footer {
  background: var(--paper-soft);
  color: var(--ink);
}

.poi-card .map-card-footer strong {
  color: var(--ink);
}

.poi-card .map-card-footer small {
  color: var(--muted);
}

.city-map {
  position: relative;
  min-height: clamp(380px, 44vw, 620px);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16, 16, 16, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 35% 35%, rgba(16, 16, 16, 0.08), transparent 32%),
    var(--paper-soft);
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.city-map::before,
.city-map::after {
  content: "";
  position: absolute;
  background: rgba(16, 16, 16, 0.16);
  transform-origin: center;
}

.city-map::before {
  width: 120%;
  height: 1px;
  left: -10%;
  top: 52%;
  transform: rotate(-18deg);
}

.city-map::after {
  width: 1px;
  height: 120%;
  left: 48%;
  top: -10%;
  transform: rotate(24deg);
}

.map-marker,
.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 1;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.map-marker {
  padding: 9px 12px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-marker::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 8px;
  height: 8px;
  background: var(--ink);
  transform: translateX(-50%) rotate(45deg);
}

.map-marker.primary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--ink);
}

.map-marker.primary::before {
  background: var(--white);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.map-pin {
  padding: 6px 9px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nearby-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.nearby-list span {
  border: 1px solid var(--line);
  padding: 8px 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
}

.testimonial-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
}

.testimonial-photo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
}

.testimonial-video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: none;
  padding: 0;
  margin: 0 0 4px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
}

.testimonial-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.testimonial-video-thumb:hover img {
  transform: scale(1.03);
}

.testimonial-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding-left: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.testimonial-card p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.3;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-atlas {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
  grid-auto-rows: minmax(210px, 28vw);
  gap: clamp(10px, 1.4vw, 18px);
  margin-top: 34px;
}

.visual-atlas figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper-soft);
  cursor: zoom-in;
}

.visual-atlas .atlas-large {
  grid-row: span 2;
}

.visual-atlas img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.visual-atlas figure:hover img {
  transform: scale(1.035);
}

.visual-atlas figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(420px, 34vw);
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
}

.project-gallery-section {
  padding-bottom: clamp(24px, 3.4vw, 46px);
}

.compact-head {
  align-items: center;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 22px;
}

.gallery-tabs button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-tabs button.is-active,
.gallery-tabs button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.feature-gallery {
  margin-top: clamp(22px, 3vw, 34px);
}

.project-visual-section {
  padding-bottom: clamp(24px, 3.5vw, 42px);
}

.feature-gallery-stage {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper-soft);
}

.feature-gallery-stage img,
.feature-gallery-stage video {
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  cursor: zoom-in;
  transition: opacity 240ms ease, transform 700ms ease;
}

.feature-gallery-stage video {
  width: 100%;
  background: var(--ink);
  cursor: default;
}

.feature-gallery-stage img[hidden],
.feature-gallery-stage video[hidden] {
  display: none;
}

.feature-gallery-stage.is-switching img {
  opacity: 0.3;
  transform: scale(1.012);
}

.feature-gallery-stage figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.feature-arrow:hover {
  background: var(--white);
  color: var(--accent);
}

.feature-prev {
  left: 16px;
}

.feature-next {
  right: 16px;
}

.feature-thumbs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-top: 0;
}

.feature-thumbs::-webkit-scrollbar {
  height: 5px;
}

.feature-thumbs::-webkit-scrollbar-thumb {
  background: rgba(6, 38, 30, 0.32);
}

.visual-control-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) auto;
  align-items: end;
  gap: clamp(18px, 3vw, 44px);
}

.visual-title-card {
  position: relative;
  max-width: 520px;
  padding-left: 58px;
}

.visual-title-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 38px;
  height: 1px;
  background: var(--accent);
}

.visual-title-card .section-kicker {
  margin-bottom: 12px;
}

.visual-title-card h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1.08rem, 1.6vw, 1.68rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.visual-title-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.visual-control-head .gallery-tabs {
  justify-content: flex-end;
  margin: 0;
}

.feature-thumbs button {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 15px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-thumbs button.is-hidden {
  display: none;
}

.feature-thumbs button.is-active,
.feature-thumbs button:hover {
  background: var(--accent);
  color: var(--white);
}

.gallery-strip figure.is-hidden {
  display: none;
}

.gallery-strip figure {
  position: relative;
  margin: 0;
  scroll-snap-align: start;
  cursor: zoom-in;
}

.gallery-strip img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-strip figure:hover img {
  transform: scale(1.025);
  filter: contrast(1.04);
}

.gallery-strip figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.film-section {
  width: 100%;
  max-width: none;
  padding: 0;
}

.film-frame {
  background: var(--ink);
}

.film-frame.full video {
  width: 100%;
  height: min(82svh, 840px);
  aspect-ratio: auto;
  object-fit: cover;
}

.film-frame.spaced {
  margin-top: 34px;
}

.film-frame video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-adn-section {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.about-adn-film {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 58vw, 760px);
  background: var(--accent-ink);
}

.about-adn-film video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.92);
}

.about-adn-film::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.46));
  pointer-events: none;
}

.about-adn-overlay {
  position: absolute;
  left: clamp(18px, 3vw, 42px);
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
}

.about-adn-overlay span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-adn-overlay button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-adn-overlay button:hover {
  background: var(--white);
  color: var(--accent);
}

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

.about-adn-grid article {
  min-height: 190px;
  padding: clamp(20px, 3vw, 34px);
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.about-adn-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-adn-grid h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
}

.about-adn-grid p {
  max-width: 26rem;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.amenities-section {
  width: 100%;
  max-width: none;
  padding: clamp(28px, 4vw, 52px) var(--pad);
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.amenity-split {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: block;
}

.amenity-title h2 {
  display: none;
}

.amenity-title .section-kicker {
  position: relative;
  padding-left: 58px;
  color: var(--muted);
}

.amenity-title .section-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.amenity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  align-content: center;
}

.amenity-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: none;
}

.amenity-tags span::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: var(--accent);
  -webkit-mask: var(--amenity-icon, url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 20.5 7v10L12 22 3.5 17V7L12 2Zm0 2.3L5.5 8v8l6.5 3.8 6.5-3.8V8L12 4.3Zm0 3.2 3.8 2.2v4.6L12 16.5l-3.8-2.2V9.7L12 7.5Z'/%3E%3C/svg%3E")) center / contain no-repeat;
  mask: var(--amenity-icon, url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 20.5 7v10L12 22 3.5 17V7L12 2Zm0 2.3L5.5 8v8l6.5 3.8 6.5-3.8V8L12 4.3Zm0 3.2 3.8 2.2v4.6L12 16.5l-3.8-2.2V9.7L12 7.5Z'/%3E%3C/svg%3E")) center / contain no-repeat;
}

.amenity-tags span[data-icon="pool"] { --amenity-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h16v2H4V6Zm2 4h2v5h2v-5h2v5h2v-5h2v5h2v-5h2v7H4v-7h2Zm-2 9c1.4 0 1.8-.8 3.2-.8s1.8.8 3.2.8 1.8-.8 3.2-.8 1.8.8 3.2.8 1.8-.8 3.2-.8v2c-1.4 0-1.8.8-3.2.8s-1.8-.8-3.2-.8-1.8.8-3.2.8-1.8-.8-3.2-.8S5.4 21 4 21v-2Z'/%3E%3C/svg%3E"); }
.amenity-tags span[data-icon="lobby"] { --amenity-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 21V5l8-3 8 3v16h-6v-6h-4v6H4Zm2-2h2v-6h8v6h2V6.4l-6-2.25-6 2.25V19Zm3-10h2v2H9V9Zm4 0h2v2h-2V9Z'/%3E%3C/svg%3E"); }
.amenity-tags span[data-icon="garden"] { --amenity-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 21h-2v-6.1C7.1 14.4 4 11.1 4 7V4h3c3.4 0 6.2 2.4 6.9 5.6C15.2 7.4 17.6 6 20 6v3c0 3.3-2.5 6.1-5.8 6.8L13 16v5Zm-2-8.2V7.1C10.2 6.4 8.9 6 7 6H6v1c0 3 2.2 5.4 5 5.8Zm3 1c2.3-.5 4-2.5 4-4.8v-.8c-2.3.4-4 2.5-4 4.8v.8Z'/%3E%3C/svg%3E"); }
.amenity-tags span[data-icon="gym"] { --amenity-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10h2V8h3v8H5v-2H3v-4Zm4 4h10v-4H7v4Zm9-6h3v2h2v4h-2v2h-3V8Z'/%3E%3C/svg%3E"); }
.amenity-tags span[data-icon="bar"] { --amenity-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 3h12l-1.2 8.2A5 5 0 0 1 13 15.7V20h4v2H7v-2h4v-4.3a5 5 0 0 1-3.8-4.5L6 3Zm2.3 2 .7 5h6l.7-5H8.3Z'/%3E%3C/svg%3E"); }
.amenity-tags span[data-icon="kids"] { --amenity-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 2 2.7 5.5 6.1.9-4.4 4.3 1 6.1L12 16l-5.4 2.8 1-6.1-4.4-4.3 6.1-.9L12 2Z'/%3E%3C/svg%3E"); }
.amenity-tags span[data-icon="pet"] { --amenity-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm5-1a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm5 1a2 2 0 1 1 0-4 2 2 0 0 1 0 4ZM9 12.5c1.7-2 4.3-2 6 0l2 2.4c1.7 2-.1 5.1-2.8 4.6l-2.2-.4-2.2.4c-2.7.5-4.5-2.6-2.8-4.6l2-2.4Z'/%3E%3C/svg%3E"); }
.amenity-tags span[data-icon="terrace"] { --amenity-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3c4.4 0 8 3.2 8 7h-7v11h-2V10H4c0-3.8 3.6-7 8-7Zm-4.9 5h9.8A6.5 6.5 0 0 0 12 5a6.5 6.5 0 0 0-4.9 3Z'/%3E%3C/svg%3E"); }
.amenity-tags span[data-icon="parking"] { --amenity-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 3h8a5 5 0 0 1 0 10h-4v8H6V3Zm4 7h4a2 2 0 0 0 0-4h-4v4Z'/%3E%3C/svg%3E"); }
.amenity-tags span[data-icon="security"] { --amenity-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 20 5v6c0 5-3.4 9.4-8 11-4.6-1.6-8-6-8-11V5l8-3Zm0 2.2L6 6.4V11c0 3.8 2.4 7.2 6 8.7 3.6-1.5 6-4.9 6-8.7V6.4l-6-2.2Zm-1 10.4 5-5 1.4 1.4-6.4 6.4L7 13.4 8.4 12l2.6 2.6Z'/%3E%3C/svg%3E"); }
.amenity-tags span[data-icon="finance"] { --amenity-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 9 12 3l9 6v2H3V9Zm2 4h3v6H5v-6Zm5 0h3v6h-3v-6Zm5 0h3v6h-3v-6ZM3 21v-2h18v2H3Z'/%3E%3C/svg%3E"); }
.amenity-tags span[data-icon="cowork"] { --amenity-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16v10H4V4Zm2 2v6h12V6H6Zm-2 10h7v2H8v3H6v-3H4v-2Zm9 0h7v2h-2v3h-2v-3h-3v-2Z'/%3E%3C/svg%3E"); }
.amenity-tags span[data-icon="lounge"] { --amenity-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 11V8a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v3h1a2 2 0 0 1 2 2v5h-2v3h-2v-3H6v3H4v-3H2v-5a2 2 0 0 1 2-2h1Zm2 0h10V8a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v3Zm-3 2v3h16v-3H4Z'/%3E%3C/svg%3E"); }

.plans-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.5fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: stretch;
}

.plan-slider {
  position: relative;
  min-width: 0;
  overflow: visible;
  background: var(--white);
  border: 1px solid var(--line);
}

.plan-static {
  position: relative;
  min-width: 0;
  overflow: visible;
  background: var(--white);
  border: 1px solid var(--line);
}

.plan-stage {
  overflow: hidden;
  background: var(--white);
}

.plan-static-stage {
  display: grid;
  place-items: center;
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
}

.plan-static-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
}

.plan-track {
  display: flex;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.plan-slide {
  flex: 0 0 100%;
  overflow: hidden;
}

.plan-slide img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--white);
}

.plan-compare {
  --split: 50%;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--white);
  isolation: isolate;
  touch-action: pan-y;
}

.plan-compare img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
  pointer-events: none;
  user-select: none;
}

.plan-compare-base,
.plan-compare-after {
  position: absolute;
  inset: 0;
}

.plan-compare-after {
  clip-path: inset(0 0 0 var(--split));
}

.plan-compare-label {
  position: absolute;
  top: 16px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.58);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.plan-compare-label-before {
  left: 16px;
}

.plan-compare-label-after {
  right: 16px;
}

.plan-compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 4;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(16, 16, 16, 0.1);
  pointer-events: none;
}

.plan-compare-divider i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.plan-compare-divider i::before {
  content: "<  >";
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.plan-compare-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  touch-action: none;
}

.plan-compare-range::-webkit-slider-thumb {
  width: 44px;
  height: 100vh;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
}

.plan-compare-range::-moz-range-thumb {
  width: 44px;
  height: 100vh;
  border: 0;
  cursor: ew-resize;
}

.plan-tabs {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.plan-tabs-scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: thin;
}

.plan-tabs button {
  flex: 1 1 118px;
  min-width: 0;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 16px 10px 13px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.plan-tabs-scroll button {
  flex: 0 0 132px;
}

.plan-static .plan-tabs button {
  min-height: 74px;
}

.plan-tabs button:last-child {
  border-right: 0;
}

.plan-tabs button span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.plan-tabs button.is-active,
.plan-tabs button:hover {
  background: var(--accent);
  color: var(--white);
}

.plan-tabs button.is-active span,
.plan-tabs button:hover span {
  color: rgba(255, 255, 255, 0.68);
}

.plan-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.plan-toolbar-main {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.slider-controls {
  display: flex;
  gap: 10px;
  margin-top: 0;
}

.icon-button {
  width: 44px;
  padding: 0;
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0;
}

.icon-button:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.plan-count {
  margin-top: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-detail {
  min-height: 100%;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 3.2vw, 40px);
  border: 0;
  background: var(--white);
}

.plan-detail h2 {
  max-width: 11ch;
  font-family: var(--sans);
  font-size: clamp(1.52rem, 2.55vw, 2.55rem);
  font-weight: 400;
  line-height: 1.04;
}

.plan-detail .lead {
  max-width: 31rem;
  font-size: 1rem;
}

.plan-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(22px, 3vw, 34px);
  background: var(--line);
  border: 1px solid var(--line);
}

.plan-spec-grid div {
  min-height: 86px;
  padding: 14px;
  background: var(--white);
}

.plan-spec-grid span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.plan-spec-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  font-size: clamp(1.12rem, 1.8vw, 1.55rem);
  font-weight: 400;
  line-height: 1.1;
}

.plan-detail .actions {
  margin-top: clamp(22px, 3vw, 34px);
}

.plan-bedroom-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 0;
}

.plan-bedroom-filters button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.plan-bedroom-filters button.is-active,
.plan-bedroom-filters button:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.plan-tabs button.is-filtered-out {
  display: none;
}

.project-cta-section {
  border-top: 1px solid var(--line);
}

.project-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.62fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
}

.project-cta-media {
  min-height: clamp(300px, 31vw, 420px);
  overflow: hidden;
  background: var(--paper-soft);
}

.project-cta-media img {
  height: calc(100% + 60px);
  object-fit: cover;
  transform: translateY(var(--parallax-y, 0));
}

.project-cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-cta-copy .lead-form {
  width: min(100%, 460px);
}

.project-cta-copy h2 {
  max-width: 20ch;
  font-family: var(--sans);
  font-size: clamp(1.15rem, 1.9vw, 1.9rem);
  font-weight: 400;
  line-height: 1.16;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(22px, 3.5vw, 44px);
  align-items: start;
}

.contact-band .page-title {
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
}

.contact-band .lead {
  max-width: 520px;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-copy .lead-form {
  margin-top: 12px;
}

.contact-band .section-kicker {
  margin-bottom: 14px;
}

.lead-form,
.legal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  max-width: 780px;
  margin: 0 auto;
}

.form-header {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-header strong {
  font-weight: 400;
  color: var(--muted);
}

.lead-form label,
.legal-form label {
  display: grid;
  gap: 8px;
  background: var(--white);
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-form .full,
.legal-form .full {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.legal-form input,
.legal-form select,
.legal-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 10px 0;
  min-height: 48px;
  border-radius: 0;
}

.lead-form textarea,
.legal-form textarea {
  min-height: 126px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.legal-form input:focus,
.legal-form select:focus,
.legal-form textarea:focus {
  outline: 0;
  border-color: var(--accent);
}

.legal-form .button.full {
  margin: 16px;
  width: calc(100% - 32px);
}

.legal-form-result {
  grid-column: 1 / -1;
  margin: 0 16px 16px;
  font-size: 0.82rem;
  color: var(--accent);
}

.legal-form-result.is-error {
  color: #b3261e;
}

.lead-form .consent {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.lead-form .consent input {
  width: 16px;
  min-height: 16px;
  flex: 0 0 16px;
}

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

.contact-visual {
  margin-top: 34px;
  overflow: hidden;
  background: var(--paper-soft);
}

.contact-visual img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.contact-visual-large {
  position: relative;
  min-height: 0;
  margin-top: 34px;
}

.contact-visual-large img {
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: translateY(var(--parallax-y, 0));
}

.contact-card {
  position: static;
  display: grid;
  gap: 8px;
  padding: 16px 0 0;
  background: transparent;
  backdrop-filter: none;
}

.contact-card span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.35;
}

.contact-card a {
  color: var(--accent);
}

.response-panel {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.closing-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.response-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.98fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.response-grid h2 {
  max-width: 14ch;
  font-family: var(--sans);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.18;
}

.response-steps {
  display: grid;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.response-steps div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.response-steps span {
  grid-row: span 2;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.response-steps strong {
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  font-weight: 500;
  line-height: 1.1;
}

.response-steps p {
  margin: 0;
  color: var(--muted);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal video {
  max-width: min(100%, 1100px);
  max-height: 82svh;
  background: var(--ink);
}

.video-modal button,
.lightbox .lightbox-close,
.lightbox .lightbox-prev,
.lightbox .lightbox-next {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.24);
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.info-list {
  display: grid;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.info-list span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-list strong {
  display: block;
  margin-top: 6px;
  font-size: 1.875rem;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
  counter-reset: team;
}

.team-card {
  position: relative;
  min-height: 230px;
  padding: 26px;
  background: var(--white);
  transition: background 180ms ease, color 180ms ease;
}

.team-card::before {
  counter-increment: team;
  content: "0" counter(team);
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.team-card:hover {
  background: var(--ink);
  color: var(--white);
}

.team-card:hover .role,
.team-card:hover p,
.team-card:hover::before {
  color: rgba(255, 255, 255, 0.64);
}

.team-card h3 {
  font-size: 2.125rem;
}

.team-card .role {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-list {
  display: grid;
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
}

.news-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr) minmax(240px, 0.42fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  background: var(--white);
}

.news-item time {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-item h3 {
  font-size: 2.75rem;
}

.news-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-soft);
  cursor: pointer;
}

.news-thumb img {
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.news-thumb:hover img {
  transform: scale(1.035);
}

.news-detail {
  display: none;
  margin-top: 18px;
  color: var(--ink-soft);
}

.news-read-more {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) var(--pad) clamp(28px, 4vw, 52px);
}

.article-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(180px, 0.25fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: end;
}

.article-hero-copy time {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-media {
  margin: clamp(28px, 5vw, 64px) 0 0;
  overflow: hidden;
  background: var(--paper-soft);
}

.article-media img {
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.article-body-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.78fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.article-body {
  max-width: 820px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.68;
}

.article-body p {
  margin: 0 0 1.2em;
}

.editorial-article-hero {
  padding-top: clamp(62px, 8vw, 118px);
}

.editorial-article-hero .page-title {
  max-width: 980px;
  font-family: var(--sans);
  font-size: clamp(1.95rem, 4.15vw, 4.65rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.article-meta-panel {
  align-self: stretch;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.article-meta-panel span,
.article-summary .section-kicker {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.article-meta-panel time {
  font-family: var(--sans);
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
  font-weight: 300;
  line-height: 1;
}

.editorial-body-grid {
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 0.86fr);
  padding-bottom: clamp(22px, 3vw, 38px);
  border-bottom: 1px solid var(--line);
}

.article-summary {
  position: sticky;
  top: 112px;
  padding-top: 6px;
}

.article-summary strong {
  display: block;
  max-width: 300px;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 400;
  line-height: 1.08;
}

.article-visual-duo {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(18px, 2.6vw, 34px);
  margin-top: clamp(30px, 5vw, 70px);
}

.article-visual-duo figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.article-visual-duo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-visual-duo figcaption {
  padding: 13px 15px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.related-news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
  margin-top: 34px;
}

.related-news-card {
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.related-news-card a {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  min-height: 210px;
}

.related-news-card img {
  height: 100%;
  object-fit: cover;
}

.related-news-card div {
  display: grid;
  align-content: center;
  padding: clamp(18px, 2.4vw, 28px);
}

.related-news-card span {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.related-news-card h3 {
  margin: 10px 0 0;
  font-family: var(--sans);
  font-size: clamp(1.15rem, 1.8vw, 1.7rem);
  font-weight: 400;
  line-height: 1.12;
}

.related-news-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.news-contact-section {
  border-top: 1px solid var(--line);
}

.news-contact-band {
  width: min(100%, var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.48fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.news-contact-copy {
  max-width: 720px;
}

.news-contact-copy h2 {
  max-width: 19ch;
  margin: 14px 0 0;
  font-family: var(--sans);
  font-size: clamp(1.6rem, 2.8vw, 2.9rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.news-contact-copy .lead {
  max-width: 560px;
}

.news-contact-band .quick-lead-form.lead-form {
  width: min(100%, 430px);
  justify-self: end;
}

.site-footer {
  background: var(--accent-ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-shell {
  width: min(100%, calc(var(--max) + var(--pad) * 2));
  margin: 0 auto;
  padding: 0 var(--pad);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.05fr) minmax(340px, 1.22fr) minmax(230px, 0.88fr);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-grid > nav[aria-label="Servicio al cliente"],
.footer-grid > nav[aria-label="La compania"],
.footer-grid > nav[aria-label="Explorar"],
.footer-projects,
.footer-connect {
  display: none;
}

.footer-logo {
  width: 132px;
}

.footer-column {
  min-height: 210px;
  padding: clamp(18px, 2.3vw, 28px) clamp(16px, 1.9vw, 24px);
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-column h3 {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.38;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-connect a {
  width: fit-content;
}

.footer-badge-group {
  padding: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.footer-badge-group:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.footer-badge-group > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-affiliations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  align-content: start;
}

.footer-affiliations h3 {
  grid-column: 1 / -1;
}

.footer-logos {
  display: grid;
  gap: 6px;
  align-items: start;
}

.footer-logos b {
  min-height: 0;
  display: block;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.34;
}

.footer-logos.small b {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  text-transform: none;
}

@media (max-width: 1200px) {
  .hero h1,
  .page-title,
  .display {
    font-size: 4.5rem;
  }

  .page-title {
    font-size: 3.2rem;
  }

  .section h2 {
    font-size: 2.95rem;
  }

  .feature-copy h3,
  .card h3,
  .news-item h3,
  .team-card h3 {
    font-size: 2.05rem;
  }

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

  .footer-column {
    min-height: 190px;
  }
}

@media (min-width: 981px) {
  .image-panel {
    background-attachment: fixed;
  }

  .feature-split {
    align-items: start;
  }

  .feature-image {
    position: sticky;
    top: 104px;
  }

  .map-shell .city-map,
  .project-location .city-map,
  .map-experience .premium-map {
    position: relative;
    top: auto;
  }
}

.footer-links {
  display: grid;
  gap: 0;
  color: rgba(255, 255, 255, 0.74);
  overflow-wrap: anywhere;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-links a,
.footer-links span {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 24px);
  padding-top: 0;
}

.footer-socials a {
  width: auto;
  height: auto;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-socials a::before {
  display: none;
}

.footer-socials a:hover {
  background: transparent;
  color: var(--white);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 56px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.footer-credit {
  justify-self: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

@media (hover: hover) and (pointer: fine) {
  .button,
  .button-ghost,
  .gallery-tabs button,
  .filter-button,
  .map-directory button,
  .amenity-tags span,
  .proof-points span,
  .footer-socials a {
    transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, opacity 220ms ease;
  }

  .button:hover,
  .button-ghost:hover,
  .gallery-tabs button:hover,
  .filter-button:hover,
  .amenity-tags span:hover,
  .proof-points span:hover {
    transform: translateY(-2px);
  }

  .launch-card,
  .card,
  .gallery-strip figure,
  .news-item {
    transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .launch-card:hover,
  .card:hover {
    position: relative;
    z-index: 2;
    transform: translateY(-6px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.12);
  }

  .gallery-strip figure:hover {
    transform: translateY(-4px);
  }

  .amenity-tags span:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--white);
  }

  .amenity-tags span:hover::before {
    background: var(--white);
  }

  .institutional-media:hover img {
    filter: contrast(1.04);
    transform: translateY(var(--parallax-y, 0)) scale(1.025);
  }

  .proof-points span:hover {
    background: var(--accent);
    color: var(--white);
  }

  .launch-card:hover .project-code {
    background: var(--accent);
    color: var(--white);
  }

  .footer-socials a:hover {
    transform: translateY(-1px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition: opacity 1000ms cubic-bezier(0.16, 1, 0.3, 1), transform 1000ms cubic-bezier(0.16, 1, 0.3, 1), filter 1000ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.gallery-strip.reveal {
  transform: translateX(34px);
}

.gallery-strip.reveal.is-visible {
  transform: translateX(0);
}

.amenity-split.reveal,
.plans-layout.reveal {
  transform: translateY(18px) scale(0.985);
}

.amenity-split.reveal.is-visible,
.plans-layout.reveal.is-visible {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .gallery-strip.reveal,
  .amenity-split.reveal,
  .plans-layout.reveal {
    transform: none;
  }

  [data-parallax] img,
  [data-parallax] video {
    transform: none !important;
  }
}

[data-parallax] {
  overflow: hidden;
}

[data-parallax] img,
[data-parallax] video {
  transform: scale(1.06) translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  width: auto;
  max-width: 100%;
  max-height: 86svh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.36);
}

.lightbox .lightbox-close,
.video-modal button {
  position: absolute;
  top: 18px;
  right: 18px;
}

.lightbox .lightbox-prev,
.lightbox .lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox .lightbox-prev {
  left: 18px;
}

.lightbox .lightbox-next {
  right: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 64px;
  height: 64px;
  min-height: 64px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--accent-ink);
  color: var(--white);
  font-size: 0;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.whatsapp-float::before {
  content: "";
  width: 30px;
  height: 30px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.mobile-lead-bar {
  display: none;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

  .main-nav,
  .nav-cta {
    display: none;
  }

  .site-header.is-open .main-nav {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: stretch;
    gap: 0;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-grid,
  .project-intro,
  .section-head,
  .launch-duo,
  .about-editorial,
  .conversion-inner,
  .panel-with-form > .section-inner,
  .commercial-grid,
  .project-cta-grid,
  .institutional-grid,
  .feature-split,
  .feature-split.reverse,
  .plans-layout,
  .contact-band,
  .footer-grid,
  .response-grid,
  .map-shell,
  .project-location,
  .map-experience {
    grid-template-columns: 1fr;
  }

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

  .plan-bedroom-filters {
    justify-content: flex-start;
  }

  .map-copy {
    display: block;
  }

  .about-adn-grid {
    grid-template-columns: 1fr;
  }

  .about-adn-grid article {
    min-height: 0;
  }

  .map-copy h2,
  .portfolio-map .map-copy h2,
  .project-location .map-copy h2 {
    max-width: 34rem;
    font-size: clamp(1rem, 4vw, 1.72rem);
    line-height: 1.18;
  }

  .portfolio-map .map-copy h2 {
    max-width: 24rem;
    font-size: clamp(1rem, 4vw, 1.72rem);
    line-height: 1.15;
  }

  .launch-copy {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin: 0;
    border: 0;
    border-top: 1px solid var(--line);
    background: var(--white);
    backdrop-filter: none;
  }

  .featured-project-track {
    grid-auto-columns: minmax(280px, 82vw);
  }

  .portfolio-showcase .featured-project-track {
    grid-auto-columns: minmax(280px, 82vw);
  }

  .rail-arrow {
    top: 30%;
  }

  .rail-prev {
    left: 8px;
  }

  .rail-next {
    right: 8px;
  }

  .article-meta-panel,
  .article-summary {
    position: static;
  }

  .article-visual-duo,
  .news-contact-band,
  .related-news-grid,
  .related-news-card a {
    grid-template-columns: 1fr;
  }

  .news-contact-band .quick-lead-form.lead-form {
    justify-self: start;
  }

  .launch-dark .launch-copy {
    background: var(--accent);
  }

  .article-hero-copy,
  .article-body-grid {
    grid-template-columns: 1fr;
  }

  .project-facts-bar {
    width: min(680px, calc(100% - (var(--pad) * 2)));
    margin-top: -46px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .amenity-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .amenity-title h2 {
    font-size: clamp(4rem, 13vw, 6.8rem);
  }

  .metric-band-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-cell:nth-child(2n) {
    border-right: 0;
  }

  .metric-cell {
    min-height: 122px;
  }

  .project-facts-bar div {
    min-height: 96px;
    padding-left: 58px;
  }

  .home-conversion {
    min-height: auto;
  }

  .quick-lead-form.lead-form {
    max-width: 520px;
  }

  .panel-with-form .quick-lead-form.lead-form,
  .commercial-cta .quick-lead-form.lead-form {
    justify-self: start;
  }

  .institutional-copy h2 {
    max-width: 16ch;
  }

  .map-section-heading {
    margin-left: 0;
  }

  .nearby-directory {
    max-height: 260px;
  }

  .footer-column {
    min-height: auto;
  }

  .footer-affiliations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-split.reverse .feature-copy {
    order: 2;
  }

  .feature-split.reverse .feature-image {
    order: 1;
  }

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

  .section-head .lead {
    margin-top: 10px;
  }

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

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

  .news-item {
    grid-template-columns: 1fr;
  }

  .news-thumb {
    order: -1;
  }

  .visual-atlas {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(220px, 42vw);
  }

  .plan-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .hero {
    min-height: 76svh;
  }

  .home-page .hero {
    min-height: 0;
    height: clamp(330px, 100vw, 420px);
    align-items: end;
  }

  .home-page .hero-media img,
  .home-page .hero-media video {
    object-position: center center;
  }

  .home-page .hero .eyebrow,
  .home-page .hero h1 {
    display: none;
  }

  .brand {
    width: 104px;
  }

  .hero-content {
    padding-bottom: 40px;
  }

  .home-page .hero-content {
    padding: 0 20px 24px;
  }

  .hero h1,
  .page-title,
  .display {
    font-size: 2.75rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .hero-lede {
    font-size: 1.125rem;
  }

  .home-page .hero-lede {
    max-width: 19rem;
    margin-top: 0;
    font-size: 0.96rem;
    line-height: 1.32;
  }

  .home-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .home-page .hero .button,
  .home-page .hero .button-ghost {
    min-height: 40px;
    justify-content: center;
    padding: 0 12px;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-align: center;
  }

  .stats-grid,
  .projects-grid,
  .team-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .project-facts-bar {
    width: calc(100% - 32px);
    margin: -28px 16px 40px;
    grid-template-columns: 1fr;
  }

  .project-facts-bar div {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .project-facts-bar div:last-child {
    border-bottom: 0;
  }

  .project-page .hero {
    min-height: 0;
    height: clamp(330px, 96vw, 430px);
    align-items: end;
  }

  .project-page .hero-media img,
  .project-page .hero-media video {
    object-position: center center;
  }

  .project-page .hero-content {
    padding: 0 20px 20px;
  }

  .project-page .hero .eyebrow {
    display: none;
  }

  .project-page .hero h1 {
    display: none;
  }

  .project-page .hero-lede {
    display: none;
  }

  .project-page .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 250px);
    gap: 0;
    margin-top: 0;
  }

  .project-page .hero .button,
  .project-page .hero .button-ghost {
    min-height: 42px;
    justify-content: center;
    padding: 0 10px;
    font-size: 0.58rem;
    letter-spacing: 0.09em;
    text-align: center;
  }

  .project-page .hero .button-ghost {
    display: none;
  }

  .project-page .project-facts-bar {
    position: relative;
    z-index: 4;
    width: 100%;
    margin: 0 0 26px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

  .project-page .project-facts-bar div {
    min-height: 72px;
    padding: 12px 8px 11px 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .project-page .project-facts-bar div:last-child {
    border-right: 0;
  }

  .project-page .project-facts-bar div::before {
    left: 10px;
    width: 17px;
    height: 17px;
  }

  .project-page .project-facts-bar span {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    line-height: 1.15;
  }

  .project-page .project-facts-bar strong {
    margin-top: 6px;
    font-size: 0.78rem;
    line-height: 1.14;
  }

  .project-page .project-gallery-section {
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .project-page .project-intro {
    gap: 16px;
  }

  .project-page .project-intro .section-kicker {
    margin-bottom: 8px;
    font-size: 0.58rem;
  }

  .project-page .project-intro h2 {
    max-width: 19rem;
    font-size: 1.34rem;
    line-height: 1.12;
  }

  .project-page .project-intro .lead {
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .project-page .project-intro .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 0;
    background: var(--line);
    border: 1px solid var(--line);
  }

  .project-page .project-intro .stat {
    min-height: 74px;
    padding: 12px;
    background: var(--white);
  }

  .project-page .project-intro .stat strong {
    font-size: 1.28rem;
    line-height: 1;
  }

  .project-page .project-intro .stat span {
    margin-top: 7px;
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }

  .project-page .project-visual-section {
    padding-top: 30px;
    padding-bottom: 32px;
  }

  .project-page .visual-control-head {
    display: block;
  }

  .project-page .visual-title-card {
    max-width: 19rem;
    padding-left: 0;
  }

  .project-page .visual-title-card::before {
    display: none;
  }

  .project-page .visual-title-card .section-kicker {
    margin-bottom: 8px;
    font-size: 0.58rem;
  }

  .project-page .visual-title-card h2 {
    font-size: 1.28rem;
    line-height: 1.12;
  }

  .project-page .visual-title-card span {
    display: none;
  }

  .project-page .visual-control-head .gallery-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .project-page .visual-control-head .gallery-tabs::-webkit-scrollbar,
  .project-page .feature-thumbs::-webkit-scrollbar,
  .project-page .plan-tabs::-webkit-scrollbar,
  .project-page .plan-bedroom-filters::-webkit-scrollbar,
  .project-page .project-location .map-category-row::-webkit-scrollbar {
    display: none;
  }

  .project-page .gallery-tabs button {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.56rem;
    letter-spacing: 0.11em;
  }

  .project-page .feature-gallery {
    margin-top: 16px;
  }

  .project-page .feature-gallery-stage img,
  .project-page .feature-gallery-stage video {
    aspect-ratio: 16 / 10;
  }

  .project-page .feature-arrow {
    width: 36px;
    height: 36px;
  }

  .project-page .feature-thumbs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .project-page .feature-thumbs button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .project-page .amenities-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .project-page .amenity-title .section-kicker {
    padding-left: 0;
    font-size: 0.58rem;
  }

  .project-page .amenity-title .section-kicker::before {
    display: none;
  }

  .project-page .amenity-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .project-page .amenity-tags span {
    min-height: 58px;
    justify-content: flex-start;
    padding: 10px;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }

  .project-page .amenity-tags span::before {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .project-page .project-plan-section {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .project-page .plans-layout {
    gap: 18px;
  }

  .project-page .plan-slider {
    overflow: hidden;
  }

  .project-page .plan-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .project-page .plan-tabs button {
    flex: 0 0 92px;
    min-height: 58px;
    padding: 10px 9px;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .project-page .plan-tabs button span {
    margin-top: 5px;
    font-size: 0.51rem;
  }

  .project-page .plan-compare {
    min-height: 0;
    aspect-ratio: 1 / 0.86;
  }

  .project-page .plan-compare-label {
    top: 10px;
    min-height: 26px;
    padding: 0 9px;
    font-size: 0.56rem;
  }

  .project-page .plan-compare-label-before {
    left: 10px;
  }

  .project-page .plan-compare-label-after {
    right: 10px;
  }

  .project-page .plan-compare-divider i {
    width: 34px;
    height: 34px;
  }

  .project-page .plan-toolbar {
    display: grid;
    gap: 10px;
    margin-top: 12px;
    padding: 0 12px 12px;
  }

  .project-page .plan-toolbar-main {
    justify-content: space-between;
  }

  .project-page .slider-controls {
    gap: 8px;
  }

  .project-page .slider-controls .icon-button {
    width: 38px;
    min-height: 38px;
  }

  .project-page .plan-count {
    font-size: 0.62rem;
  }

  .project-page .plan-bedroom-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .project-page .plan-bedroom-filters button {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.54rem;
    letter-spacing: 0.1em;
  }

  .project-page .plan-detail {
    padding: 16px 0 0;
  }

  .project-page .plan-detail .section-kicker {
    margin-bottom: 8px;
    font-size: 0.58rem;
  }

  .project-page .plan-detail h2 {
    max-width: none;
    font-size: 1.44rem;
  }

  .project-page .plan-spec-grid {
    margin-top: 16px;
  }

  .project-page .plan-spec-grid div {
    min-height: 72px;
    padding: 12px;
  }

  .project-page .plan-spec-grid span {
    font-size: 0.54rem;
  }

  .project-page .plan-spec-grid strong {
    font-size: 1rem;
  }

  .project-page .plan-detail .lead {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .project-page .plan-detail .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .project-page .map-section {
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .project-page .project-location {
    position: relative;
    gap: 12px;
  }

  .project-page .project-location .map-copy {
    margin-bottom: 0;
  }

  .project-page .project-location .map-copy h2 {
    max-width: 18rem;
    font-size: 1.22rem;
    line-height: 1.14;
  }

  .project-page .project-location .map-intro {
    display: none;
  }

  .project-page .project-location .map-category-row {
    display: none;
  }

  .project-page .project-location .real-map {
    height: 304px;
  }

  .project-page .project-location .map-insight-card {
    display: none;
  }

  .project-page .project-location .map-filter-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 6px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .project-page .project-location .map-filter-row::-webkit-scrollbar {
    display: none;
  }

  .project-page .project-location .map-filter-row button {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 10px;
    border-color: rgba(16, 36, 30, 0.16);
    border-radius: 999px;
    background: var(--white);
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .project-page .project-location .map-point > button {
    max-width: none;
    gap: 0;
    padding: 4px;
    border-radius: 999px;
  }

  .project-page .project-location .map-point > button span {
    min-width: 24px;
    height: 24px;
    font-size: 0.56rem;
  }

  .project-page .project-location .map-point > button strong {
    display: none;
  }

  .project-page .project-location .map-point.primary > button {
    gap: 6px;
    padding-right: 8px;
  }

  .project-page .project-location .map-point.primary > button strong {
    display: block;
    font-size: 0.58rem;
  }

  .project-page .project-location .map-popover {
    width: min(260px, 78vw);
  }

  .project-page .project-cta-section {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .project-page .project-cta-grid {
    gap: 0;
  }

  .project-page .project-cta-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .project-page .project-cta-media img {
    height: 100%;
    transform: none;
  }

  .project-page .project-cta-copy {
    padding-top: 20px;
  }

  .lead-form.quick-lead-form {
    grid-template-columns: 1fr;
  }

  .amenity-tags {
    gap: 10px;
  }

  .amenity-tags span {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .project-intro h2 {
    max-width: 14ch;
    font-size: clamp(1.68rem, 8.8vw, 2.7rem);
  }

  .metric-band {
    padding: 18px var(--pad);
  }

  .home-page .metric-band {
    padding: 0;
  }

  .metric-band-compact {
    padding-top: 0;
  }

  .metric-band-inner {
    grid-template-columns: 1fr;
  }

  .home-page .metric-band-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-cell,
  .metric-cell:nth-child(2n) {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-page .metric-cell,
  .home-page .metric-cell:nth-child(2n) {
    min-height: 82px;
    padding: 12px 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .home-page .metric-cell:nth-child(2n) {
    border-right: 0;
  }

  .home-page .metric-cell:nth-child(n + 3) {
    border-bottom: 0;
  }

  .metric-cell:last-child {
    border-bottom: 0;
  }

  .metric-cell strong {
    font-size: clamp(2.2rem, 12vw, 3.35rem);
  }

  .home-page .metric-cell strong {
    font-size: clamp(1.38rem, 7.4vw, 1.95rem);
    line-height: 0.95;
  }

  .home-page .metric-cell span {
    margin-top: 7px;
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    line-height: 1.25;
  }

  .home-page .section {
    padding-top: 36px;
    padding-bottom: 38px;
  }

  .home-page .portfolio-section {
    padding-top: 34px;
    padding-bottom: 32px;
  }

  .home-page .project-section-heading {
    margin-bottom: 18px;
  }

  .home-page .project-section-heading .section-kicker {
    margin-bottom: 8px;
  }

  .home-page .project-section-heading h2 {
    max-width: 18rem;
    font-size: 1.38rem;
    line-height: 1.08;
  }

  .home-page .featured-project-rail {
    margin-top: 20px;
  }

  .home-page .portfolio-showcase .featured-project-track {
    grid-auto-columns: minmax(270px, 84vw);
    gap: 16px;
    padding-bottom: 16px;
  }

  .home-page .project-display-media {
    aspect-ratio: 1.22 / 1;
    border-radius: 7px;
  }

  .home-page .project-display-media img {
    height: 100%;
    transform: none;
  }

  .home-page .project-status-pill {
    top: 12px;
    right: 12px;
    min-height: 31px;
    gap: 7px;
    padding: 0 12px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .home-page .project-status-pill i {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 3px rgba(120, 184, 149, 0.18);
  }

  .home-page .project-price-pill {
    right: 12px;
    bottom: 12px;
    min-height: 40px;
    gap: 8px;
    padding: 0 12px;
  }

  .home-page .project-price-pill small {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }

  .home-page .project-price-pill strong {
    font-size: 0.92rem;
  }

  .home-page .project-display-body {
    padding-top: 14px;
  }

  .home-page .project-delivery {
    margin-bottom: 8px;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .home-page .project-display-title {
    gap: 12px;
  }

  .home-page .project-display-title h3 {
    font-size: 1.42rem;
  }

  .home-page .project-display-title p {
    margin-top: 6px;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .home-page .project-round-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }

  .home-page .project-display-specs {
    display: none;
  }

  .home-page .portfolio-showcase .rail-arrow {
    top: 38%;
    width: 40px;
    height: 40px;
  }

  .home-page .portfolio-showcase .rail-prev {
    left: -2px;
  }

  .home-page .portfolio-showcase .rail-next {
    right: -2px;
  }

  .home-page .portfolio-showcase .featured-project-track::after {
    content: "";
    width: 18px;
  }

  .home-page .portfolio-showcase .featured-project-track {
    mask-image: linear-gradient(90deg, #000 0 calc(100% - 34px), transparent 100%);
  }

  .home-page .portfolio-section > .actions {
    margin-top: 8px;
  }

  .home-page .portfolio-section > .actions .button-ghost {
    width: 100%;
    justify-content: center;
  }

  .home-page .site-footer {
    padding-bottom: 72px;
  }

  .home-page .footer-shell {
    padding: 0 16px;
  }

  .home-page .footer-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .home-page .footer-column {
    min-height: 0;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .home-page .footer-column h3 {
    margin-bottom: 12px;
    font-size: 0.66rem;
  }

  .home-page .footer-column a,
  .home-page .footer-column p {
    font-size: 0.78rem;
  }

  .home-page .footer-affiliations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .home-page .footer-affiliations h3 {
    margin-bottom: 0;
  }

  .home-page .footer-badge-group > span {
    margin-bottom: 8px;
    font-size: 0.56rem;
  }

  .home-page .footer-logos b,
  .home-page .footer-logos.small b {
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .editorial-grid .wide,
  .editorial-grid .narrow {
    grid-column: 1 / -1;
  }

  .proof-points {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-auto-columns: minmax(260px, 84vw);
  }

  .footer-affiliations {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .projects-carousel {
    grid-auto-columns: minmax(275px, 84vw);
  }

  .launch-media {
    min-height: 360px;
  }

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

  .about-points {
    grid-template-columns: 1fr;
  }

  .city-map {
    min-height: 360px;
  }

  .premium-map {
    min-height: 0;
    height: 320px;
  }

  .real-map,
  .portfolio-map .real-map,
  .project-location .real-map,
  .district-map.real-map {
    height: 320px;
    min-height: 0;
  }

  .home-page .portfolio-map .real-map {
    height: 280px;
  }

  .home-page .portfolio-map .map-copy {
    margin-bottom: 12px;
  }

  .home-page .portfolio-map .map-copy h2 {
    max-width: none;
    font-size: 1rem;
    line-height: 1.24;
  }

  .home-page .portfolio-map .map-intro {
    display: none;
  }

  .home-page .portfolio-map .map-directory {
    display: flex;
    gap: 1px;
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    grid-template-columns: none;
    margin-top: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .home-page .portfolio-map .map-directory button {
    flex: 0 0 min(148px, 42vw);
    min-height: 58px;
    padding: 10px 11px;
    scroll-snap-align: start;
  }

  .home-page .portfolio-map .map-directory strong {
    font-size: 0.64rem;
  }

  .home-page .portfolio-map .map-directory span {
    margin-top: 4px;
    font-size: 0.62rem;
  }

  .map-view-toggle {
    top: 10px;
    left: 10px;
  }

  .map-view-toggle button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .map-expand {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .map-popover {
    width: min(300px, 82vw);
    padding: 9px;
  }

  .map-popover-top {
    padding-bottom: 8px;
  }

  .map-popover-top span {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.62rem;
  }

  .map-card-footer {
    padding: 10px;
  }

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

  .home-page .portfolio-map .map-directory {
    display: flex;
    gap: 1px;
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .home-page .map-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .home-page .testimonial-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 84vw);
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-page .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .home-page .testimonial-card {
    min-height: 0;
    scroll-snap-align: start;
  }

  .home-page .testimonial-video-thumb {
    aspect-ratio: 4 / 5;
  }

  .home-page .testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .home-page .home-conversion {
    min-height: 0;
  }

  .home-page .home-conversion.no-media .conversion-inner,
  .home-page .conversion-inner {
    min-height: 0;
    padding: 38px 20px;
    gap: 22px;
  }

  .home-page .conversion-copy h2 {
    font-size: 1.34rem;
    line-height: 1.12;
  }

  .home-page .home-conversion .lead {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .home-page .conversion-points {
    gap: 8px;
    margin-top: 18px;
  }

  .home-page .home-conversion.no-media .conversion-points span {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .home-page .quick-lead-form.lead-form {
    max-width: none;
    border-color: rgba(16, 36, 30, 0.16);
  }

  .home-page .quick-lead-form .form-header {
    padding: 13px 14px;
    font-size: 0.62rem;
  }

  .home-page .quick-lead-form label {
    padding: 12px 14px;
    font-size: 0.62rem;
  }

  .home-page .quick-lead-form input,
  .home-page .quick-lead-form select {
    min-height: 42px;
  }

  .home-page .news-list {
    margin-top: 24px;
  }

  .home-page .news-item {
    gap: 12px;
    padding: 14px;
  }

  .home-page .news-item h3 {
    font-size: 1.2rem;
    line-height: 1.1;
  }

  .home-page .news-item p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .home-page .news-item time {
    font-size: 0.62rem;
  }

  .home-page .news-thumb {
    aspect-ratio: 16 / 8.6;
  }

  .mobile-lead-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(11, 23, 19, 0.94);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
  }

  .mobile-lead-bar a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-lead-bar a + a {
    background: rgba(255, 255, 255, 0.08);
  }

  .whatsapp-float {
    display: none;
  }

  .map-point > button {
    max-width: 160px;
    gap: 6px;
    padding-right: 8px;
  }

  .map-point > button span {
    min-width: 24px;
    height: 24px;
  }

  .map-point > button strong {
    font-size: 0.62rem;
  }

  .visual-atlas {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(260px, 72vw);
  }

  .visual-atlas .atlas-large {
    grid-row: span 1;
  }

  .plan-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-image {
    min-height: 360px;
  }

  .section h2 {
    font-size: 2rem;
  }

  .conversion-copy h2 {
    font-size: 1.88rem;
  }

  .lead {
    font-size: 1.125rem;
  }

  .info-list strong {
    font-size: 1.5rem;
  }

  .stat strong {
    font-size: 3rem;
  }

  .feature-copy h3,
  .card h3,
  .news-item h3,
  .team-card h3 {
    font-size: 1.8rem;
  }

  .projects-page .hero {
    min-height: 0;
    height: clamp(300px, 86vw, 390px);
    align-items: end;
  }

  .projects-page .hero-media img,
  .projects-page .hero-media video {
    object-position: center center;
  }

  .projects-page .hero-content {
    padding: 0 20px 26px;
  }

  .projects-page .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .projects-page .hero h1 {
    font-size: clamp(2rem, 13vw, 3rem);
    line-height: 0.95;
  }

  .projects-page .hero-lede {
    max-width: 19.5rem;
    margin-top: 12px;
    font-size: 0.96rem;
    line-height: 1.34;
  }

  .projects-page .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .projects-page .projects-list-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .projects-page .project-section-heading {
    width: 100%;
    margin-bottom: 22px;
  }

  .projects-page .project-section-heading .section-kicker {
    margin-bottom: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .projects-page .project-section-heading h2 {
    max-width: 18rem;
    font-size: 1.32rem;
    line-height: 1.12;
  }

  .projects-page .project-section-heading .filter-bar {
    display: grid;
    gap: 12px;
    margin-top: 20px;
  }

  .projects-page .filter-primary {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .projects-page .filter-primary::-webkit-scrollbar {
    display: none;
  }

  .projects-page .filter-button {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 13px;
    font-size: 0.62rem;
    letter-spacing: 0.11em;
    scroll-snap-align: start;
  }

  .projects-page .district-select {
    width: 100%;
  }

  .projects-page .district-select summary {
    width: 100%;
    min-height: 40px;
    font-size: 0.62rem;
  }

  .projects-page .district-select > div {
    right: auto;
    left: 0;
    width: 100%;
  }

  .projects-page .projects-grid:not(.projects-carousel) {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .projects-page .project-display-media {
    aspect-ratio: 1.22 / 1;
    border-radius: 7px;
  }

  .projects-page .project-display-media img {
    height: 100%;
    transform: none;
  }

  .projects-page .project-status-pill {
    top: 12px;
    right: 12px;
    min-height: 31px;
    gap: 7px;
    padding: 0 12px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .projects-page .project-price-pill {
    right: 12px;
    bottom: 12px;
    min-height: 40px;
    gap: 8px;
    padding: 0 12px;
  }

  .projects-page .project-price-pill small {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }

  .projects-page .project-price-pill strong {
    font-size: 0.92rem;
  }

  .projects-page .card.project-display-card .project-display-body {
    padding-top: 14px;
  }

  .projects-page .project-delivery {
    margin-bottom: 8px;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .projects-page .project-display-title {
    gap: 12px;
  }

  .projects-page .project-display-title h3 {
    font-size: 1.42rem;
    line-height: 1.04;
  }

  .projects-page .project-display-title p {
    margin-top: 6px;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .projects-page .project-round-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }

  .projects-page .project-display-specs {
    display: none;
  }

  .projects-page .map-section {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .projects-page .portfolio-map .map-copy {
    margin-bottom: 12px;
  }

  .projects-page .portfolio-map .map-copy h2 {
    max-width: none;
    font-size: 1rem;
    line-height: 1.24;
  }

  .projects-page .portfolio-map .map-intro {
    display: none;
  }

  .projects-page .portfolio-map .map-directory {
    display: flex;
    gap: 1px;
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    grid-template-columns: none;
    margin-top: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .projects-page .portfolio-map .map-directory::-webkit-scrollbar {
    display: none;
  }

  .projects-page .portfolio-map .map-directory button {
    flex: 0 0 min(148px, 42vw);
    min-height: 58px;
    padding: 10px 11px;
    scroll-snap-align: start;
  }

  .projects-page .portfolio-map .map-directory strong {
    font-size: 0.64rem;
  }

  .projects-page .portfolio-map .map-directory span {
    margin-top: 4px;
    font-size: 0.62rem;
  }

  .projects-page .portfolio-map .real-map {
    height: 280px;
  }

  .projects-page .project-cta-section {
    padding-top: 32px;
    padding-bottom: 34px;
  }

  .projects-page .project-cta-grid {
    gap: 0;
  }

  .projects-page .project-cta-media {
    min-height: 0;
    aspect-ratio: 1.18 / 1;
  }

  .projects-page .project-cta-copy {
    padding: 22px 0 0;
  }

  .projects-page .project-cta-copy h2 {
    max-width: 18rem;
    font-size: 1.38rem;
    line-height: 1.12;
  }

  .projects-page .project-cta-copy .lead {
    font-size: 0.94rem;
    line-height: 1.44;
  }

  .projects-page .quick-lead-form.lead-form {
    max-width: none;
    margin-top: 20px;
  }

  .about-page .hero {
    min-height: 0;
    height: clamp(260px, 68vw, 340px);
    align-items: end;
  }

  .about-page .hero-media img,
  .about-page .hero-media video {
    object-position: center center;
  }

  .about-page .hero-content {
    display: block;
    padding: 0 20px 24px;
  }

  .about-page .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .about-page .hero h1 {
    max-width: 13rem;
    font-size: clamp(1.55rem, 8.8vw, 2.18rem);
    line-height: 1.02;
  }

  .about-page .hero-lede {
    display: none;
  }

  .about-page .metric-band {
    padding: 0;
  }

  .about-page .metric-band-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .metric-cell,
  .about-page .metric-cell:nth-child(2n) {
    min-height: 82px;
    padding: 12px 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .about-page .metric-cell:nth-child(2n) {
    border-right: 0;
  }

  .about-page .metric-cell:nth-child(n + 3) {
    border-bottom: 0;
  }

  .about-page .metric-cell strong {
    font-size: clamp(1.38rem, 7.4vw, 1.95rem);
    line-height: 0.95;
  }

  .about-page .metric-cell span {
    margin-top: 7px;
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    line-height: 1.25;
  }

  .about-page .section {
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .about-page .editorial-grid {
    margin-top: 0;
    gap: 18px;
  }

  .about-page .feature-image {
    min-height: 0;
    aspect-ratio: 16 / 9.6;
  }

  .about-page .feature-copy h3 {
    max-width: 18rem;
    font-size: 1.38rem;
    line-height: 1.12;
  }

  .about-page .feature-copy p {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .about-page .about-adn-section {
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .about-page .about-adn-film {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .about-page .about-adn-film video {
    min-height: 0;
    height: 100%;
  }

  .about-page .about-adn-film::after,
  .about-page .about-adn-overlay {
    display: none;
  }

  .about-page .about-adn-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(252px, 82vw);
    grid-template-columns: none;
    gap: 1px;
    overflow-x: auto;
    padding-bottom: 12px;
    border-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .about-page .about-adn-grid::-webkit-scrollbar {
    display: none;
  }

  .about-page .about-adn-grid article {
    min-height: 172px;
    padding: 20px;
    border-right: 0;
    scroll-snap-align: start;
  }

  .about-page .about-adn-grid span {
    margin-bottom: 18px;
    font-size: 0.62rem;
  }

  .about-page .about-adn-grid h3 {
    font-size: 1.32rem;
  }

  .about-page .about-adn-grid p {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .about-page #equipo {
    padding-top: 34px;
  }

  .about-page #equipo > h2 {
    max-width: 18rem;
    font-size: 1.42rem;
    line-height: 1.12;
  }

  .about-page .team-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(252px, 82vw);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .about-page .team-grid::-webkit-scrollbar {
    display: none;
  }

  .about-page .team-card {
    min-height: 0;
    padding: 20px;
    scroll-snap-align: start;
  }

  .about-page .team-card::before {
    margin-bottom: 18px;
    font-size: 0.58rem;
  }

  .about-page .team-card h3 {
    font-size: 1.28rem;
  }

  .about-page .team-card .role,
  .about-page .team-card p {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .about-page .institutional-grid,
  .about-page .commercial-grid {
    gap: 22px;
  }

  .about-page .institutional-copy h2,
  .about-page .commercial-copy h2 {
    max-width: 18rem;
    font-size: 1.38rem;
    line-height: 1.12;
  }

  .about-page .institutional-copy .lead,
  .about-page .commercial-copy .lead {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .about-page .institutional-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .about-page .proof-points {
    gap: 8px;
    margin-top: 18px;
  }

  .about-page .proof-points span {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .about-page .actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .about-page .actions .button,
  .about-page .actions .button-ghost {
    min-height: 40px;
    justify-content: center;
    padding: 0 10px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-align: center;
  }

  .about-page .quick-lead-form.lead-form {
    max-width: none;
  }

  .news-page .hero {
    min-height: 0;
    height: clamp(285px, 78vw, 370px);
    align-items: end;
  }

  .news-page .hero-media img,
  .news-page .hero-media video {
    object-position: center center;
  }

  .news-page .hero-content {
    padding: 0 20px 26px;
  }

  .news-page .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .news-page .hero h1 {
    max-width: 14rem;
    font-size: clamp(1.8rem, 10vw, 2.6rem);
    line-height: 1;
  }

  .news-page .hero-lede {
    max-width: 18.5rem;
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.34;
  }

  .news-page .section {
    padding: 34px 16px 38px;
  }

  .news-page .section > .section-kicker,
  .news-page .section > h2,
  .news-page .section > .news-list {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .news-page .section > .section-kicker {
    margin-bottom: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .news-page .section > h2 {
    max-width: 19rem;
    font-size: 1.38rem;
    line-height: 1.12;
  }

  .news-page .news-list {
    gap: 18px;
    margin-top: 24px;
    background: transparent;
  }

  .news-page .news-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .news-page .news-thumb {
    order: -1;
    aspect-ratio: 16 / 9.6;
    cursor: pointer;
  }

  .news-page .news-item time {
    padding: 16px 16px 0;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  .news-page .news-item > div:not(.news-thumb) {
    padding: 10px 16px 18px;
  }

  .news-page .news-item h3 {
    font-size: 1.36rem;
    line-height: 1.08;
  }

  .news-page .news-item p {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.43;
  }

  .news-page .news-read-more {
    min-height: 38px;
    margin-top: 14px;
    align-items: center;
    font-size: 0.62rem;
    letter-spacing: 0.13em;
  }

  .site-footer {
    padding-bottom: 26px;
  }

  .footer-shell {
    padding: 0 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .footer-column {
    min-height: 0;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .footer-column h3 {
    margin-bottom: 12px;
    font-size: 0.66rem;
  }

  .footer-column a,
  .footer-column p {
    font-size: 0.78rem;
  }

  .footer-affiliations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .footer-affiliations h3 {
    margin-bottom: 0;
  }

  .footer-badge-group > span {
    margin-bottom: 8px;
    font-size: 0.56rem;
  }

  .footer-logos b,
  .footer-logos.small b {
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 0 0;
    text-align: center;
  }

  .footer-credit {
    justify-self: center;
  }

  .footer-socials {
    justify-content: center;
    gap: 16px;
  }

  .whatsapp-float {
    right: 18px;
    left: auto;
    width: 58px;
    height: 58px;
    min-height: 58px;
  }
}

.home-page .portfolio-showcase .rail-arrow {
  display: none;
}

.home-page .portfolio-showcase .featured-project-track {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: initial;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: visible;
  padding: 0;
  mask-image: none;
}

.home-page .portfolio-showcase .featured-project-track::after {
  display: none;
}

.home-page .portfolio-showcase .showcase-card {
  scroll-snap-align: none;
}

.footer-contact a[href^="tel:"] {
  display: inline-flex;
  width: auto;
  margin-right: 14px;
}

.footer-legal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}

.footer-legal h3 {
  grid-column: 1 / -1;
}

.footer-legal a {
  margin-bottom: 0;
  line-height: 1.28;
}

.footer-socials {
  flex-wrap: nowrap;
}

@media (max-width: 780px) {
  .home-page .portfolio-showcase .featured-project-track {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-page .project-display-specs,
  .projects-page .project-display-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
    padding-top: 12px;
  }

  .home-page .project-display-specs span,
  .projects-page .project-display-specs span {
    align-items: flex-start;
    gap: 6px;
    font-size: 0.66rem;
    line-height: 1.22;
  }

  .home-page .project-display-specs span::before,
  .projects-page .project-display-specs span::before {
    width: 13px;
    height: 13px;
  }

  .footer-contact a[href^="tel:"] {
    display: inline-flex;
    width: auto;
    margin-right: 12px;
  }

  .footer-legal {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
  }

  .footer-legal h3 {
    grid-column: 1 / -1;
  }

  .footer-legal a {
    margin-bottom: 0;
    line-height: 1.28;
  }

  .footer-socials {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .footer-socials a {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }
}

.cookie-banner-backdrop {
  position: fixed;
  inset: 0;
  z-index: 59;
  background: rgba(0, 0, 0, 0.45);
}

.cookie-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 60;
  width: min(420px, calc(100vw - 40px));
  padding: 28px 28px 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.cookie-banner[hidden],
.cookie-banner-backdrop[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-banner .button,
.cookie-banner .button-ghost {
  padding: 8px 16px;
  font-size: 0.76rem;
}

.cookie-banner .button-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
