:root {
  --ink: #0b0b0b;
  --ink-soft: #171717;
  --paper: #f3f0e9;
  --paper-2: #e9e5dc;
  --white: #ffffff;
  --text: #171716;
  --muted: #67645f;
  --line: rgba(16, 16, 15, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --accent: #f07b22;
  --accent-bright: #ff8a2a;
  --max: 1440px;
  --pad: clamp(22px, 5vw, 82px);
  --ease: cubic-bezier(0.2, 0.72, 0.2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Manrope, "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

::selection { color: #fff; background: var(--accent); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  color: #fff;
  background: var(--accent);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus { transform: none; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 250;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
}

.shell {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.section { padding: clamp(96px, 11vw, 176px) var(--pad); }

.intro {
  position: relative;
  overflow: hidden;
}

.intro::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(243, 240, 233, 0.96) 0%, rgba(243, 240, 233, 0.94) 36%, rgba(243, 240, 233, 0.86) 58%, rgba(243, 240, 233, 0.92) 100%), url("assets/hero-fachada.webp") center center / cover no-repeat;
  opacity: 0.42;
  content: "";
  pointer-events: none;
}

.intro > .shell {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 25px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
  flex: 0 0 auto;
}

.eyebrow-light { color: #ff9b52; }

.display {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(42px, 6.3vw, 92px);
  font-weight: 300;
  letter-spacing: -0.058em;
  line-height: 1.02;
}

.display em,
.location-panel h2 em,
.investment h2 em,
.final-content h2 em {
  color: var(--accent);
  font-style: normal;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 21px;
  border: 1px solid currentColor;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.button span { font-size: 18px; font-weight: 300; line-height: 0; }
.button:hover { transform: translateY(-2px); }

.button-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

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

.button-accent { color: #fff; border-color: var(--accent); background: var(--accent); }
.button-accent:hover { border-color: var(--accent-bright); background: var(--accent-bright); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: flex;
  height: 92px;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--pad);
  color: #fff;
  transition: height 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.site-header.is-scrolled {
  height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 3;
  display: block;
  width: 112px;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.25));
  transition: width 0.35s var(--ease);
}

.brand img { width: 100%; height: auto; }
.site-header.is-scrolled .brand { width: 96px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 36px);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
  opacity: 0.86;
  transition: opacity 0.25s ease;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.main-nav a:hover { opacity: 1; }
.main-nav a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  transition: background 0.25s ease, border-color 0.25s ease;
}

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

.menu-button {
  position: relative;
  z-index: 3;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
}

.menu-button span {
  position: absolute;
  left: 11px;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

.menu-button span:first-child { top: 18px; }
.menu-button span:last-child { top: 27px; }
.menu-open .menu-button span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-open .menu-button span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 51%;
  animation: hero-image 14s var(--ease) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.05) 63%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.03) 36%, rgba(0, 0, 0, 0.88) 100%);
}

@keyframes hero-image {
  from { transform: scale(1.045); }
  to { transform: scale(1); }
}

.hero-brandlockup { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 130px var(--pad) clamp(48px, 7vh, 78px);
}

.hero h1 {
  max-width: 1110px;
  margin: 0;
  font-size: clamp(48px, 7.2vw, 106px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.97;
  text-wrap: balance;
}

.hero h1 em { color: #fff; font-style: normal; }

.hero-lead {
  max-width: 690px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.7;
}

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

.hero-actions .button { width: min(100%, 210px); }

.launch-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.launch-note span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(240, 123, 34, 0.15);
}

.hero-scroll {
  position: absolute;
  right: var(--pad);
  bottom: 54px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll i {
  display: block;
  width: 1px;
  height: 54px;
  background: linear-gradient(#fff, transparent);
}


.hero-copy-band { display: none; }

/* Editorial overview */
.overview-editorial {
  padding: clamp(72px, 9vw, 112px) var(--pad);
  color: #101010;
  background: #efede7;
}

.overview-wrap {
  max-width: 920px;
}

.overview-editorial .eyebrow {
  margin-bottom: 28px;
  color: var(--accent);
}

.overview-title {
  margin: 0;
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 0.95;
  text-wrap: balance;
}

.overview-title span {
  color: var(--accent);
}

.overview-text {
  max-width: 900px;
  margin: 38px 0 0;
  color: #6f6d69;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.7;
}

.overview-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 40px;
  margin-top: 68px;
  position: relative;
}

.overview-metrics::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 2px;
  background: var(--accent);
  grid-column: 1 / -1;
}

.overview-metrics article {
  padding: 34px 0 36px;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.overview-metrics strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 300;
  letter-spacing: -0.05em;
  color: #111;
}

.overview-metrics span {
  display: block;
  color: #8a8883;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.65;
  text-transform: uppercase;
}

/* Quick facts */
.quick-facts { color: #fff; background: var(--ink); padding: 0 var(--pad); }

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line-light);
}

.facts-grid article {
  min-height: 170px;
  padding: 38px clamp(20px, 3vw, 42px);
  border-right: 1px solid var(--line-light);
}

.facts-grid strong {
  display: block;
  margin-bottom: 11px;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 300;
  letter-spacing: -0.05em;
}

.facts-grid span {
  display: block;
  max-width: 220px;
  color: #9c9b97;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.65;
  text-transform: uppercase;
}

/* Intro */
.intro { background: var(--paper); }

.intro-grid,
.plaza-grid,
.residence-head,
.housi-head,
.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(54px, 9vw, 140px);
  align-items: end;
}

.intro-copy,
.plaza-copy,
.residence-head > p,
.trust-copy {
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.8;
}

.intro-copy p,
.plaza-copy p { margin: 0; }
.intro-copy p + p,
.plaza-copy p + p { margin-top: 22px; }

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: clamp(70px, 9vw, 128px);
}

.audience-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: clamp(32px, 5vw, 70px);
  color: #fff;
  background-position: center;
  background-size: cover;
}

.audience-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.82));
  content: "";
}

.audience-home { background-image: url("assets/apto-gourmet.webp"); }
.audience-invest { background-image: url("assets/implantacao.webp"); }
.audience-card > * { position: relative; z-index: 1; }

.card-number {
  position: absolute;
  top: 36px;
  right: 40px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.audience-card h3 {
  max-width: 570px;
  margin: 155px 0 26px;
  font-size: clamp(34px, 4.5vw, 66px);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.audience-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  list-style: none;
}

.audience-card li::before { margin-right: 9px; color: var(--accent); content: "•"; }

.audience-card > a {
  display: inline-flex;
  gap: 25px;
  align-items: center;
  margin-top: 31px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.audience-card > a span { color: var(--accent); font-size: 18px; }


#conceito-restaurado.section {
  padding-top: 48px;
  padding-bottom: 36px;
}

#conceito-restaurado + .intro {
  padding-top: 24px;
}

#conceito-restaurado + .intro .audience-grid {
  margin-top: 0;
}

/* Location */
.location {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(420px, 0.72fr);
  min-height: 820px;
  color: #fff;
  background: var(--ink);
}

.location-media { min-height: 720px; overflow: hidden; }
.location-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.location-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 7vw, 104px);
  background: #121212;
}

.location-panel h2 {
  margin: 0;
  font-size: clamp(43px, 5.2vw, 76px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.location-panel > p:not(.eyebrow) {
  margin: 31px 0 0;
  color: #a6a5a1;
  font-size: 15px;
  line-height: 1.75;
}

.place-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--line-light);
}

.place-list span {
  padding: 16px 12px 16px 0;
  border-bottom: 1px solid var(--line-light);
  color: #d3d2ce;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.place-list span:nth-child(odd) { border-right: 1px solid var(--line-light); }
.place-list span:nth-child(even) { padding-left: 16px; }

.plaza-story { background: #fff; }

/* Leisure */
.leisure { color: #fff; background: var(--ink); }

.leisure-head,
.amenity-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
}

.display-light { color: #fff; }

.leisure-head > p,
.amenity-head > p {
  margin: 0;
  color: #9e9d98;
  font-size: 16px;
  line-height: 1.8;
}

.feature-pool { margin-top: clamp(62px, 8vw, 116px); }

.media-button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 360px;
  overflow: hidden;
  padding: 0;
  border: 0;
  color: #fff;
  background: #222;
  cursor: zoom-in;
  text-align: left;
}

.media-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s ease;
}

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

.media-button:hover img { transform: scale(1.022); }

.media-button-wide { height: min(69vw, 780px); }
.media-button-wide img { position: absolute; inset: 0; }

.media-caption {
  position: absolute;
  right: clamp(24px, 4vw, 54px);
  bottom: clamp(22px, 4vw, 46px);
  left: clamp(24px, 4vw, 54px);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 7px 24px;
}

.media-caption small {
  grid-column: 1 / -1;
  color: var(--accent-bright);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.media-caption strong {
  font-size: clamp(26px, 3.3vw, 50px);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.media-caption i {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
}

.experience-grid .media-button { height: 590px; }
.experience-grid .media-button.tall { height: 720px; }

/* Amenities */
.amenity-section { background: var(--paper); }
.amenity-head > p { color: var(--muted); }

.amenity-panels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(66px, 9vw, 120px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.amenity-panels article {
  min-height: 450px;
  padding: 32px clamp(22px, 2.6vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.amenity-panels article > span {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.amenity-panels h3 {
  margin: 55px 0 24px;
  font-size: clamp(27px, 2.7vw, 40px);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.amenity-panels ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  list-style: none;
}

.amenity-panels li::before { margin-right: 8px; color: var(--accent); content: "•"; }

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 2px;
}

.mini-gallery .media-button { min-height: 310px; }
.mini-gallery .media-caption strong { font-size: clamp(20px, 2vw, 28px); }

.leisure-plans,
.plan-section { margin-top: clamp(92px, 12vw, 168px); }

.section-subhead {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: 35px;
  align-items: start;
  margin-bottom: 50px;
}

.section-subhead .eyebrow { margin-top: 12px; }

.section-subhead h3 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(35px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.section-subhead > p:last-child {
  grid-column: 2;
  max-width: 560px;
  margin: -15px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.leisure-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.plan-media {
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: zoom-in;
}

.plan-media img { width: 100%; height: auto; }

.plan-media span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 5px 3px;
  color: var(--text);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-media strong { font-weight: 600; }
.plan-media i { color: var(--accent); font-style: normal; }

/* Residences */
.residences { background: #fff; }
.residence-head > p { margin: 0; }

.residence-gallery {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 2px;
  height: min(74vw, 920px);
  margin-top: clamp(65px, 8vw, 115px);
}

.residence-main { height: 100%; }
.residence-side { display: grid; min-height: 0; grid-template-rows: 1fr 1fr; gap: 2px; }
.residence-side .media-button { min-height: 0; height: 100%; }

.apartment-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.apartment-features > div {
  min-height: 245px;
  padding: 30px clamp(20px, 2.6vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.apartment-features span { color: var(--accent); font-size: 10px; letter-spacing: 0.15em; }

.apartment-features strong {
  display: block;
  margin-top: 52px;
  font-size: 17px;
  font-weight: 500;
}

.apartment-features p { margin: 11px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.apartment-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.apartment-plan { border: 1px solid var(--line); background: var(--paper); }

.apartment-plan > button {
  display: block;
  width: 100%;
  padding: 16px;
  border: 0;
  background: #fff;
  cursor: zoom-in;
}

.apartment-plan > button img { width: 100%; height: auto; transition: transform 0.55s var(--ease); }
.apartment-plan > button:hover img { transform: scale(1.012); }

.apartment-plan > div { padding: clamp(28px, 4vw, 52px); }
.apartment-plan > div > span { color: var(--accent); font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }

.apartment-plan h4 {
  margin: 13px 0 0;
  font-size: clamp(28px, 3.3vw, 47px);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.apartment-plan p { margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.apartment-plan a {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 25px;
  padding-bottom: 6px;
  border-bottom: 1px solid #8e8980;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.apartment-plan a b { color: var(--accent); font-size: 16px; font-weight: 300; }

/* Housi */
.housi { color: #fff; background: var(--ink-soft); }
.housi-head { align-items: center; }

.housi-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 27px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #d2d0ca;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.housi-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff45a1;
  box-shadow: 0 0 0 5px rgba(255, 69, 161, 0.12);
}

.housi-head > div:last-child > p {
  margin: 0;
  color: #aaa8a2;
  font-size: 16px;
  line-height: 1.8;
}

.housi-head ul {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  color: #dddcd7;
  font-size: 12px;
  letter-spacing: 0.05em;
  list-style: none;
}

.housi-head li::before { margin-right: 9px; color: #ff45a1; content: "•"; }

.housi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: clamp(64px, 9vw, 120px);
}

.housi-grid .media-button { height: 480px; }

/* Investment */
.investment { padding: clamp(98px, 12vw, 185px) var(--pad); color: #fff; background: var(--accent); }

.investment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.65fr);
  gap: clamp(54px, 9vw, 140px);
  align-items: center;
}

.investment .eyebrow { color: #fff; }

.investment h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 300;
  letter-spacing: -0.058em;
  line-height: 1.01;
}

.investment h2 em { color: #1a1a19; }

.investment-grid > div:last-child > p { margin: 0; font-size: 16px; line-height: 1.75; }

.investment ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 31px;
  padding: 0;
  font-size: 12px;
  list-style: none;
}

.investment li::before { margin-right: 9px; color: #161616; content: "•"; }
.investment .button-accent { border-color: #111; background: #111; }
.investment .button-accent:hover { color: #111; border-color: #fff; background: #fff; }

.investment small {
  display: block;
  max-width: 490px;
  margin-top: 18px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 9px;
  line-height: 1.5;
}

/* Trust */
.muratori-trust { background: var(--paper); }
.trust-number { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--line); }

.trust-number strong {
  display: block;
  color: var(--text);
  font-size: clamp(50px, 7vw, 98px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1;
}

.trust-number span {
  display: block;
  max-width: 370px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

/* Final CTA */
.final-cta {
  position: relative;
  display: flex;
  min-height: 860px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.final-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.final-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.54) 48%, rgba(0, 0, 0, 0.06) 100%); }

.final-content { position: relative; z-index: 1; width: 100%; padding: 120px var(--pad); }

.final-content h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.final-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

.final-actions .button { width: min(100%, 210px); }

/* Footer */
footer { padding: 75px var(--pad) 35px; color: #fff; background: var(--ink); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 60px;
  padding-bottom: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo { width: 150px; height: auto; }

.footer-domain {
  display: block;
  margin-top: 17px;
  color: #898985;
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-grid h3 { margin: 0 0 17px; color: var(--accent); font-size: 9px; font-weight: 600; letter-spacing: 0.21em; text-transform: uppercase; }
.footer-grid a:not(.footer-domain), .footer-grid p { display: block; margin: 0; color: #b1b0ac; font-size: 12px; line-height: 1.9; }
.footer-grid a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  color: #686864;
  font-size: 8px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.footer-bottom span:last-child { max-width: 760px; text-align: right; }

.mobile-actions { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  padding: 28px;
  border: 0;
  color: #fff;
  background: rgba(5, 5, 5, 0.96);
  opacity: 0;
  transition: opacity 0.25s ease, display 0.25s allow-discrete, overlay 0.25s allow-discrete;
}

.lightbox[open] { display: grid; place-items: center; opacity: 1; }

@starting-style { .lightbox[open] { opacity: 0; } }

.lightbox::backdrop { background: rgba(0, 0, 0, 0.72); }

.lightbox-stage { display: flex; width: min(100%, 1500px); height: calc(100svh - 76px); flex-direction: column; align-items: center; justify-content: center; }
.lightbox-stage img { max-width: 100%; max-height: calc(100% - 45px); width: auto; height: auto; object-fit: contain; }
.lightbox-stage p { margin: 14px 0 0; color: #c6c5c1; font-size: 11px; letter-spacing: 0.12em; text-align: center; text-transform: uppercase; }

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 21px;
  z-index: 2;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

/* Tablet */
@media (max-width: 1120px) {
  .main-nav { gap: 16px; }
  .main-nav a:nth-child(4), .main-nav a:nth-child(5) { display: none; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid article { border-bottom: 1px solid var(--line-light); }
  .location { grid-template-columns: 1.15fr 0.85fr; }
  .amenity-panels { grid-template-columns: 1fr 1fr; }
  .mini-gallery { grid-template-columns: 1fr 1fr; }
  .apartment-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .site-header { height: 76px; }
  .brand { width: 96px; }
  .site-header.is-scrolled { height: 68px; }
  .site-header.is-scrolled .brand { width: 88px; }
  .menu-button { display: block; }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 17px;
    padding: 90px var(--pad) 50px;
    background: rgba(10, 10, 10, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s var(--ease);
  }

  .menu-open .main-nav { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav a, .main-nav a:nth-child(4), .main-nav a:nth-child(5) { display: block; }
  .main-nav a:not(.nav-cta) { font-size: clamp(28px, 8vw, 48px); font-weight: 300; letter-spacing: -0.04em; text-transform: none; }
  .main-nav .nav-cta { margin-top: 16px; font-size: 11px; }

  .hero { min-height: 760px; }
  .hero-content { padding-top: 105px; }
  .hero h1 { max-width: 700px; }
  .hero-scroll { display: none; }

  .intro-grid,
  .plaza-grid,
  .residence-head,
  .housi-head,
  .trust-grid,
  .leisure-head,
  .amenity-head,
  .investment-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 530px; }
  .location { grid-template-columns: 1fr; }
  .location-media { min-height: 54vw; }
  .location-panel { padding: 80px var(--pad); }
  .experience-grid .media-button, .experience-grid .media-button.tall { height: 560px; }
  .residence-gallery { height: auto; grid-template-columns: 1fr; }
  .residence-main { height: 680px; }
  .residence-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .residence-side .media-button { height: 430px; }
  .section-subhead { grid-template-columns: 1fr; }
  .section-subhead .eyebrow { margin-top: 0; }
  .section-subhead > p:last-child { grid-column: 1; margin: -12px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 640px) {
  .overview-editorial { padding: 56px var(--pad) 62px; }
  .overview-editorial .eyebrow { margin-bottom: 24px; }
  .overview-title { font-size: clamp(46px, 12.6vw, 74px); line-height: 0.97; }
  .overview-text { margin-top: 30px; font-size: 16px; line-height: 1.85; }
  .overview-metrics { grid-template-columns: 1fr; gap: 0; margin-top: 56px; }
  .overview-metrics article { padding: 28px 0 30px; }
  .overview-metrics strong { margin-bottom: 10px; font-size: 56px; }
  .overview-metrics span { font-size: 9px; letter-spacing: 0.13em; }

  #conceito-restaurado.section { padding-top: 30px; padding-bottom: 18px; }
  #conceito-restaurado .intro-grid { gap: 24px; }
  #conceito-restaurado + .intro { padding-top: 12px; }
  #conceito-restaurado + .intro .audience-grid { margin-top: 0; }

  :root { --pad: 21px; }
  body { padding-bottom: 58px; }
  .section { padding-block: 88px; }
  .eyebrow { margin-bottom: 20px; font-size: 9px; }
  .display { font-size: clamp(39px, 12.4vw, 56px); }

  .hero { display: block; min-height: 0; height: auto; background: #111; position: relative; overflow: hidden; }
  .hero-media { position: relative; inset: auto; display: block; width: 100%; height: 100svh; min-height: 780px; object-fit: cover; object-position: 54% 47%; }
  .hero-shade { inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.02) 34%, rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.76) 100%); }
  .hero-content { position: absolute; inset: 0; z-index: 2; padding: 118px var(--pad) 34px; }
  .hero .eyebrow { position: absolute; left: var(--pad); right: var(--pad); bottom: 28px; margin: 0; font-size: 9px; }
  .hero h1 { position: absolute; top: 238px; right: 22px; left: auto; margin: 0; max-width: min(30vw, 165px); font-size: clamp(18px, 5.2vw, 24px); line-height: 1.16; letter-spacing: -0.03em; text-align: right; text-shadow: 0 10px 22px rgba(0, 0, 0, 0.28); }
  .hero-brandlockup { position: absolute; left: var(--pad); bottom: 64px; display: block; width: min(78vw, 330px); height: auto; }
  .hero-lead,
  .launch-note,
  .hero-actions,
  .hero-scroll { display: none !important; }

  .hero-copy-band { display: block; color: #fff; background: #111; padding: 18px var(--pad) 20px; }
  .hero-copy-band-inner { width: 100%; }
  .hero-copy-lead { margin: 0; color: rgba(255, 255, 255, 0.9); font-size: 14px; line-height: 1.55; }
  .hero-copy-note { display: flex; align-items: center; gap: 9px; margin: 12px 0 0; color: rgba(255, 255, 255, 0.66); font-size: 9px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
  .hero-copy-note span { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }

  .facts-grid { grid-template-columns: 1fr 1fr; }
  .facts-grid article { min-height: 138px; padding: 25px 17px; }
  .facts-grid strong { font-size: 28px; }
  .facts-grid span { font-size: 8px; letter-spacing: 0.08em; }

  .intro-grid,
  .plaza-grid,
  .residence-head,
  .housi-head,
  .trust-grid,
  .leisure-head,
  .amenity-head,
  .investment-grid { gap: 30px; }

  .intro-copy,
  .plaza-copy,
  .residence-head > p,
  .trust-copy { font-size: 15px; }

  .audience-grid { margin-top: 62px; }
  .audience-card { min-height: 520px; padding: 28px 25px; }
  .audience-card h3 { margin-top: 145px; font-size: 39px; }
  .card-number { top: 28px; right: 27px; }

  .location-media { min-height: 62vw; }
  .location-panel { padding-block: 72px; }
  .location-panel h2 { font-size: 47px; }
  .location-panel > p:not(.eyebrow) { font-size: 14px; }
  .place-list { grid-template-columns: 1fr; }
  .place-list span:nth-child(odd) { border-right: 0; }
  .place-list span:nth-child(even) { padding-left: 0; }

  .feature-pool { margin-top: 52px; }
  .media-button-wide { height: 72svh; max-height: 610px; }
  .media-button-wide img { object-position: 58% center; }
  .media-caption { right: 22px; bottom: 22px; left: 22px; }
  .media-caption strong { font-size: 28px; }
  .media-caption i { display: none; }

  .experience-grid { grid-template-columns: 1fr; }
  .experience-grid .media-button, .experience-grid .media-button.tall { height: 74vw; min-height: 335px; }

  .amenity-panels { grid-template-columns: 1fr; }
  .amenity-panels article { min-height: 0; padding: 28px 25px 34px; }
  .amenity-panels h3 { margin: 38px 0 20px; font-size: 32px; }
  .amenity-panels ul { grid-template-columns: 1fr 1fr; gap: 9px 14px; font-size: 11px; }

  .mini-gallery { grid-template-columns: 1fr 1fr; }
  .mini-gallery .media-button { min-height: 235px; }
  .mini-gallery .media-caption strong { font-size: 19px; }

  .leisure-plans,
  .plan-section { margin-top: 88px; }
  .section-subhead { gap: 20px; margin-bottom: 35px; }
  .section-subhead h3 { font-size: 43px; }
  .leisure-plan-grid,
  .apartment-plan-grid { grid-template-columns: 1fr; }
  .plan-media { padding: 10px; }

  .residence-gallery { margin-top: 54px; }
  .residence-main { height: 75svh; min-height: 560px; }
  .residence-main img { object-position: 43% center; }
  .residence-side { grid-template-columns: 1fr 1fr; }
  .residence-side .media-button { height: 62vw; min-height: 250px; }
  .residence-side .media-button:last-child img { object-position: 48% center; }

  .apartment-features { grid-template-columns: 1fr 1fr; }
  .apartment-features > div { min-height: 205px; padding: 23px 18px; }
  .apartment-features strong { margin-top: 35px; font-size: 15px; }
  .apartment-features p { font-size: 10px; }
  .apartment-plan > div { padding: 28px 25px 34px; }

  .housi-grid { grid-template-columns: 1fr; }
  .housi-grid .media-button { height: 74vw; min-height: 330px; }

  .investment { padding-block: 90px; }
  .investment h2 { font-size: 48px; }
  .investment .button { width: 100%; }

  .final-cta { min-height: 790px; }
  .final-cta > img { object-position: 61% center; }
  .final-shade { background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.82) 68%, rgba(0, 0, 0, 0.95)); }
  .final-content { align-self: flex-end; padding: 90px var(--pad) 92px; }
  .final-content h2 { font-size: 55px; }
  .final-content > p:not(.eyebrow) { font-size: 14px; }
  .final-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .final-actions .button { width: 100%; gap: 8px; padding-inline: 13px; font-size: 9px; letter-spacing: 0.1em; }

  footer { padding-block: 58px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 45px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom span:last-child { text-align: left; }

  .mobile-actions {
    position: fixed;
    inset: auto 0 0;
    z-index: 190;
    display: grid;
    height: calc(58px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr 1fr;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 10, 10, 0.24);
    backdrop-filter: blur(16px);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(17, 17, 17, 0.72);
    backdrop-filter: blur(12px);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .mobile-actions a:last-child { background: rgba(240, 123, 34, 0.82); }
  .lightbox { padding: 16px; }
  .lightbox-stage { height: calc(100svh - 44px); }
  .lightbox-close { top: 12px; right: 12px; }
}

@media (max-width: 390px) {
  .hero h1 { top: 230px; right: 20px; max-width: 155px; font-size: 22px; }
  .hero-lead { font-size: 13px; }
  .hero-actions .button { padding-inline: 10px; font-size: 8px; }
  .launch-note { font-size: 8px; }
  .facts-grid strong { font-size: 25px; }
  .amenity-panels ul { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}


.hero-actions { display: none !important; }
