:root {
  --ink: #1c2118;
  --ink-soft: #3d4536;
  --bay: #1e3a4c;
  --bay-mid: #2f5a6e;
  --cream: #f6f1e8;
  --paper: #fbf8f3;
  --sand: #c4a06a;
  --sand-deep: #9a7544;
  --sage: #7d9a86;
  --glass: #5e8f88;
  --stone: #e4d2b4;
  --line: rgba(28, 33, 24, 0.12);
  --white: #fffdf8;
  --shadow: 0 24px 60px rgba(28, 33, 24, 0.16);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "Helvetica Neue", sans-serif;
  --header-height: 5.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--sand-deep);
}

h1,
h2,
h3,
.serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  color: var(--white);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 243, 0.92);
  color: var(--ink);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.brand span {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.72;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
}

.nav a:not(.btn) {
  opacity: 0.86;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}

.btn-line {
  border-color: currentColor;
  background: transparent;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 20, 16, 0.18) 0%, rgba(14, 20, 16, 0.28) 42%, rgba(14, 20, 16, 0.78) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto 72px;
}

.hero .eyebrow {
  color: #fff;
}

.hero h1 {
  margin: 12px 0 10px;
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  line-height: 0.88;
}

.hero p.lead {
  max-width: 640px;
  font-size: 1.15rem;
  color: rgba(255, 253, 248, 0.88);
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.22);
}

.hero-meta div strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.hero-meta div span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.section {
  padding: 108px 0;
}

.section.tight {
  padding: 72px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head h2 {
  margin: 10px 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.95;
}

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

.intro-lead {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.intro-video {
  flex: 1 1 auto;
  position: relative;
  min-height: 220px;
  margin-bottom: 28px;
  overflow: hidden;
  background: var(--ink);
}

.intro-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.intro-video-sound-cue {
  position: absolute;
  top: 14px;
  left: 12px;
  z-index: 2;
  max-width: calc(100% - 70px);
  padding: 5px 10px;
  border: 1px solid rgba(246, 241, 232, 0.28);
  border-radius: 999px;
  background: rgba(30, 58, 76, 0.72);
  color: var(--cream);
  backdrop-filter: blur(10px);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}

.intro-video-sound-cue[hidden] {
  display: none;
}

.intro-video-mute {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(246, 241, 232, 0.28);
  border-radius: 999px;
  background: rgba(30, 58, 76, 0.72);
  color: var(--cream);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.intro-video-mute:hover,
.intro-video-mute:focus-visible {
  background: rgba(154, 117, 68, 0.88);
  border-color: rgba(246, 241, 232, 0.42);
}

.intro-video-mute:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 2px;
}

.intro-video-mute-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-video-mute-icon.is-on,
.intro-video-mute.is-unmuted .intro-video-mute-icon.is-off {
  display: none;
}

.intro-video-mute.is-unmuted .intro-video-mute-icon.is-on {
  display: block;
}

.intro-grid p {
  color: var(--ink-soft);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fact {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.fact > strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.fact span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split.reverse .copy {
  order: 2;
}

.split img {
  width: 100%;
  height: min(620px, 72vw);
  object-fit: cover;
}

.split.is-drawing img {
  height: min(680px, 80vw);
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 16px;
}

.road-banner {
  position: relative;
  min-height: min(560px, 64vh);
  color: var(--white);
  overflow: hidden;
  display: grid;
  align-items: end;
}

.road-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 62%;
}

.road-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14, 20, 16, 0.76) 0%,
    rgba(14, 20, 16, 0.48) 40%,
    rgba(14, 20, 16, 0.10) 64%,
    rgba(14, 20, 16, 0.16) 100%
  );
}

.road-banner-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  max-width: 42rem;
  margin: 0 0 0 max(24px, calc((100% - 1180px) / 2));
  padding: 72px 0 56px;
}

.road-banner .eyebrow {
  color: var(--sand);
}

.road-banner h2 {
  margin: 10px 0 16px;
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  line-height: 0.95;
}

.road-banner p {
  margin: 0 0 12px;
  color: rgba(255, 253, 248, 0.9);
  font-size: 1.02rem;
}

.road-banner p:last-child {
  margin-bottom: 0;
}

.dark {
  background: var(--bay);
  color: var(--cream);
}

.dark .eyebrow {
  color: var(--sand);
}

.dark p,
.dark li {
  color: rgba(246, 241, 232, 0.82);
}

.dark strong {
  color: var(--cream);
  font-weight: 600;
}

#contexto {
  background: var(--white);
  padding: 140px 0 132px;
}

.contexto-intro {
  margin-bottom: 96px;
}

.contexto-intro h2 {
  margin: 14px 0 32px;
  max-width: 16ch;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.contexto-lead {
  max-width: 62%;
}

.contexto-lead p {
  color: var(--ink-soft);
}

.contexto-lead strong {
  color: var(--ink);
  font-weight: 600;
}

.contexto-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
}

.contexto-col {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contexto-num {
  display: block;
  margin-bottom: 16px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--sand-deep);
}

.contexto-col h3 {
  margin: 0 0 16px;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  line-height: 1.15;
}

.contexto-col p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.contexto-col p:last-of-type {
  margin-bottom: 0;
}

.contexto-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--sand-deep);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.contexto-link:hover,
.contexto-link:focus-visible {
  color: var(--sand-deep);
  border-bottom-color: var(--sand);
}

.contexto-close {
  margin: 120px 0 0;
  max-width: 68%;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contexto-close span,
.contexto-close em {
  display: block;
}

.contexto-close em {
  margin-top: 10px;
  color: var(--sand-deep);
  font-style: italic;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.contexto-col[data-reveal]:nth-child(2) {
  transition-delay: 0.1s;
}

.contexto-col[data-reveal]:nth-child(3) {
  transition-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

#curvas .split {
  align-items: start;
  margin-bottom: 48px;
}

#curvas .split.is-drawing img,
.dark .split.is-drawing img {
  height: auto;
  background: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.14);
  padding: 22px;
  box-shadow: 0 18px 48px rgba(8, 16, 22, 0.28);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 32px 28px;
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(255, 253, 248, 0.12);
}

.card h3 {
  margin: 12px 0 10px;
  font-size: 1.8rem;
}

#condominio .split {
  align-items: start;
  margin-bottom: 72px;
}

#condominio .split a[data-lightbox] {
  display: block;
  background: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.14);
  padding: 22px;
  box-shadow: 0 18px 48px rgba(8, 16, 22, 0.28);
  cursor: zoom-in;
}

#condominio .split img,
#condominio .split.is-drawing img {
  height: auto;
  object-fit: contain;
  background: none;
  border: 0;
  padding: 0;
}

#condominio .copy h2 {
  margin: 12px 0 24px;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 1.02;
  color: var(--cream);
}

#condominio .copy h2 span {
  display: block;
}

#condominio .copy p {
  color: rgba(246, 241, 232, 0.82);
}

#condominio .copy p strong {
  color: var(--cream);
  font-weight: 600;
}

#condominio .copy .condo-question {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.25;
  color: var(--cream);
  margin: 8px 0 22px;
}

#condominio .condo-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 56px;
}

#condominio .condo-body h3 {
  margin: 0 0 18px;
  font-size: clamp(1.65rem, 2.5vw, 2.1rem);
  line-height: 1.15;
  color: var(--cream);
}

#condominio .condo-body p {
  color: rgba(246, 241, 232, 0.82);
}

#condominio .condo-body p strong {
  color: var(--cream);
  font-weight: 600;
}

#condominio .condo-highlight {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.3vw, 1.8rem);
  line-height: 1.25;
  color: var(--cream);
}

#condominio .condo-highlight strong {
  display: block;
  color: var(--cream);
  font-weight: 500;
}

#condominio .condo-aside {
  margin-top: 22px;
  font-size: 0.88rem;
  line-height: 1.55;
}

#condominio .condo-close {
  margin: 96px 0 0;
  max-width: 16em;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--cream);
}

#condominio .condo-close strong {
  display: block;
}

#condominio .condo-close span {
  display: block;
  margin-top: 22px;
  max-width: 28em;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(246, 241, 232, 0.82);
}

#condominio .highlights {
  margin-top: 80px;
  gap: 40px 48px;
}

#condominio .highlights article {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.12);
}

#condominio .highlights h3 {
  margin: 12px 0 10px;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--cream);
}

#condominio .highlights p {
  margin: 0;
  color: rgba(246, 241, 232, 0.82);
}

#condominio .condo-disclaimer {
  margin: 56px 0 0;
  max-width: 42em;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(246, 241, 232, 0.62);
  opacity: 1;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.gallery a {
  display: block;
  overflow: hidden;
  background: #d8d0c4;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery a:hover img {
  transform: scale(1.04);
}

.gallery a:nth-child(1) { grid-column: span 7; height: 420px; }
.gallery a:nth-child(2) { grid-column: span 5; height: 420px; }
.gallery a:nth-child(3),
.gallery a:nth-child(4),
.gallery a:nth-child(5) { grid-column: span 4; height: 280px; }
.gallery a:nth-child(6),
.gallery a:nth-child(7) { grid-column: span 6; height: 340px; }
.gallery a:nth-child(8),
.gallery a:nth-child(9),
.gallery a:nth-child(10) { grid-column: span 4; height: 260px; }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.note {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.map-section .section-head {
  margin-bottom: 56px;
}

.map-section .section-head p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

.map-section .section-head p:last-of-type {
  margin-bottom: 0;
  color: var(--ink);
}

.map-frame {
  width: 100%;
  height: min(560px, 68vh);
  min-height: 380px;
  border: 1px solid var(--line);
  background: var(--cream);
  isolation: isolate;
  z-index: 1;
  touch-action: pan-y;
}

.map-frame .leaflet-tile-pane {
  filter: grayscale(0.18) contrast(1.04) saturate(0.88);
}

.map-frame .leaflet-control-zoom {
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.map-frame .leaflet-bar a,
.map-frame .leaflet-bar a:hover {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: var(--white);
  color: var(--ink);
  border-bottom-color: var(--line);
  border-radius: 0;
}

.map-frame .leaflet-bar a:hover {
  background: var(--cream);
}

.map-frame .leaflet-control-attribution {
  background: rgba(251, 248, 243, 0.9);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 10px;
}

.map-frame .leaflet-control-attribution a {
  color: inherit;
}

.map-frame .leaflet-attribution-flag {
  display: none;
}

.map-pin {
  background: transparent;
  border: 0;
}

.map-pin-svg {
  display: block;
  width: 28px;
  height: 38px;
  overflow: visible;
  filter: drop-shadow(0 2px 3px rgba(28, 33, 24, 0.32));
}

.map-pin-body {
  fill: var(--sand-deep);
  stroke: var(--ink);
  stroke-width: 1.35;
  stroke-linejoin: round;
}

.map-pin-hole {
  fill: var(--cream);
  stroke: var(--ink);
  stroke-width: 1.15;
}

.map-popup-wrap .leaflet-popup-content-wrapper {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.map-popup-wrap .leaflet-popup-content {
  margin: 12px 16px;
  font-family: var(--sans);
  line-height: 1.35;
}

.map-popup-wrap .leaflet-popup-tip {
  background: var(--white);
  box-shadow: none;
}

.map-popup strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.map-popup span {
  display: block;
  margin-top: 3px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 72px 64px;
  align-items: start;
}

.contact-copy h2 {
  margin: 14px 0 28px;
  max-width: 13ch;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
}

.contact-copy p {
  max-width: 36em;
}

.contact-close {
  margin-top: 2.2em;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-style: italic;
  color: var(--ink-soft);
}

.contact-card {
  padding: 52px 44px 48px;
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-card p {
  margin: 0;
}

.contact-card h3 {
  margin: 16px 0 36px;
  font-size: clamp(1.85rem, 2.6vw, 2.35rem);
  line-height: 1.05;
}

.contact-place {
  color: var(--ink-soft);
  line-height: 1.7;
}

.contact-mail {
  display: inline-block;
  margin-top: 28px;
  color: var(--sand-deep);
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-mail:hover {
  text-decoration: underline;
}

.contact-actions {
  margin-top: 36px;
}

.site-footer {
  padding: 48px 0 56px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-note {
  margin: 0;
  max-width: 38em;
  font-size: 0.78rem;
  line-height: 1.55;
  opacity: 0.78;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 16, 12, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
  }
  .nav.is-open { display: flex; }
  .intro-grid,
  .split,
  .split.reverse .copy,
  .facts,
  .highlights,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    gap: 48px;
  }
  .contact-copy h2 {
    max-width: 16ch;
  }
  .contact-card {
    padding: 40px 28px 36px;
  }
  .contexto-cols {
    grid-template-columns: 1fr 1fr;
  }
  .contexto-lead,
  .contexto-close {
    max-width: 82%;
  }
  #contexto {
    padding: 112px 0;
  }
  .contexto-intro {
    margin-bottom: 72px;
  }
  .contexto-close {
    margin-top: 88px;
  }
  .intro-video {
    flex: none;
    min-height: 0;
    height: min(200px, 46vw);
    margin-bottom: 22px;
  }
  .split.reverse .copy { order: 0; }
  #condominio .condo-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  #condominio .condo-close {
    max-width: none;
    margin-top: 72px;
  }
  #condominio .highlights {
    margin-top: 56px;
  }
  .gallery a,
  .gallery a:nth-child(n) {
    grid-column: span 12;
    height: 240px;
  }
  .hero-copy { margin-bottom: 48px; }
  .road-banner {
    min-height: min(540px, 78vh);
    align-items: end;
  }
  .road-banner img {
    object-position: right 68%;
  }
  .road-banner::after {
    background: linear-gradient(
      180deg,
      rgba(14, 20, 16, 0.08) 0%,
      rgba(14, 20, 16, 0.16) 32%,
      rgba(14, 20, 16, 0.64) 76%,
      rgba(14, 20, 16, 0.82) 100%
    );
  }
  .road-banner-copy {
    width: min(1180px, calc(100% - 40px));
    max-width: none;
    margin: 0 auto;
    padding: 48px 0 36px;
  }
}

@media (max-width: 640px) {
  .contexto-cols {
    grid-template-columns: 1fr;
  }
  .contexto-lead,
  .contexto-close {
    max-width: none;
  }
}

.water-block {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "head pair"
    "copy pair";
  column-gap: 40px;
  align-items: start;
}

.water-block .section-head {
  grid-area: head;
  margin-bottom: 28px;
}

.water-copy {
  grid-area: copy;
  display: grid;
  gap: 28px;
}

.water-stat {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}

.water-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 0.95;
  font-weight: 500;
}

.water-stat em {
  display: block;
  margin-top: 10px;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--sand-deep);
}

.water-stat span {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.dark .water-stat {
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(255, 253, 248, 0.12);
}

.dark .water-stat strong {
  color: var(--cream);
}

.dark .water-stat em {
  color: var(--sand);
}

.dark .water-stat span {
  color: rgba(246, 241, 232, 0.82);
}

.water-close {
  margin-top: 8px;
}

.water-close strong {
  display: block;
}

.water-pair {
  grid-area: pair;
  display: grid;
  grid-template-columns: 20% 1fr 14%;
  grid-template-rows: auto auto;
  align-items: start;
  padding: 10px 4px 8px;
}

.water-frame {
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.16);
  padding: 14px;
  box-shadow: 0 18px 48px rgba(8, 16, 22, 0.28);
}

.water-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.water-frame--lead {
  grid-column: 2 / 4;
  grid-row: 1;
  padding: 16px;
  transform: rotate(0.7deg);
  z-index: 1;
}

.water-frame--inset {
  grid-column: 1 / 3;
  grid-row: 2;
  margin-top: -11%;
  padding: 12px;
  transform: rotate(-1.6deg);
  z-index: 2;
}

#lotes .lots-head {
  max-width: 38rem;
  margin-bottom: 36px;
}

#lotes .lots-head p {
  margin: 0 0 0.85em;
  color: var(--ink-soft);
}

#lotes .lots-head p:last-child {
  margin-bottom: 0;
}

.lots-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 52px;
  margin: 0 0 48px;
  padding: 8px 0 0;
  list-style: none;
}

.lots-metrics li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lots-metrics strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.lots-metrics span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.lots-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.lots-map {
  position: relative;
  aspect-ratio: 828 / 780;
  overflow: hidden;
  border: 1px solid rgba(28, 33, 24, 0.08);
  background: #f3efe6;
}

.lots-map-ghost,
.lots-map-base {
  display: none;
}

.lots-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.lot-field {
  fill: #e4ebe3;
  stroke: none;
  pointer-events: none;
}

.lot-field-stroke {
  fill: none;
  stroke: #243528;
  stroke-width: 3.4;
  stroke-linejoin: round;
  stroke-linecap: round;
  pointer-events: none;
}

.lot-road-band {
  fill: none;
  stroke: #c9b39c;
  stroke-width: 11;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.4;
  pointer-events: none;
}

.lot-road-line {
  fill: none;
  stroke: #8d7463;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.46;
  pointer-events: none;
}

.lot-road-public {
  fill: #6a5a4c;
  font-family: var(--sans);
  font-size: 8.4px;
  font-weight: 500;
  letter-spacing: 1.55px;
  text-transform: uppercase;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
}

.lot-road-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  font-family: var(--sans);
  color: #4a5548;
}

.lot-road-name {
  position: absolute;
  right: 7%;
  bottom: 28%;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6a6358;
}

.lot-road-dir {
  position: absolute;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #4a5548;
}

.lot-road-dir.is-paq {
  top: 5%;
  right: 5%;
}

.lot-road-dir.is-paq::after {
  content: " →";
}

.lot-road-dir.is-cob {
  left: 4%;
  bottom: 12%;
}

.lot-road-dir.is-cob::before {
  content: "← ";
}

.lot-poly {
  fill: #d7e2d4;
  fill-opacity: 0.55;
  stroke: #5d7262;
  stroke-width: 0.7;
  stroke-linejoin: round;
  cursor: pointer;
  pointer-events: all;
  transition: fill 0.22s ease, fill-opacity 0.22s ease, stroke 0.22s ease, stroke-width 0.22s ease;
}

.lot-poly.is-front {
  fill: #e6d9c4;
  fill-opacity: 0.88;
}

.lot-poly.is-hover,
.lot-poly:hover,
.lot-poly:focus-visible {
  fill: #7d9a86;
  fill-opacity: 0.38;
  stroke: #2f4a38;
  stroke-width: 1.35;
  outline: none;
}

.lot-poly.is-on {
  fill: #4d6e58;
  fill-opacity: 0.42;
  stroke: #243528;
  stroke-width: 1.7;
  outline: none;
}

.lot-label {
  fill: #2a312c;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  font-weight: 500;
  pointer-events: none;
  text-anchor: middle;
  dominant-baseline: middle;
  stroke: #f3efe6;
  stroke-width: 3px;
  paint-order: stroke fill;
  stroke-linejoin: round;
}

.lot-label.is-front {
  font-size: 8.5px;
  stroke-width: 2.4px;
}

.lot-label.is-hover,
.lot-label.is-on {
  fill: #1c2118;
  font-weight: 600;
}

.lots-map-legend {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: none;
}

.lots-map-legend span {
  width: 14px;
  height: 9px;
  background: #d7e2d4;
  border: 1.5px solid #243528;
}

.lots-map-legend i,
.lots-map-legend b {
  display: none;
}

.lot-tip {
  position: absolute;
  right: 8%;
  top: 62%;
  z-index: 3;
  min-width: 7.5rem;
  max-width: 12.5rem;
  padding: 10px 12px 11px;
  background: rgba(251, 248, 243, 0.92);
  border: 1px solid rgba(28, 33, 24, 0.08);
  color: var(--ink);
  pointer-events: none;
  line-height: 1.25;
}

.lot-tip[hidden] {
  display: none;
}

.lot-tip strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.lot-tip span {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.lot-tip em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}

.lots-list {
  max-height: 720px;
  overflow: auto;
  border: 1px solid rgba(28, 33, 24, 0.08);
  background: #f7f3ec;
}

.lots-list table {
  font-size: 0.9rem;
}

.lots-list thead th {
  background: #f7f3ec;
  position: sticky;
  top: 0;
  z-index: 1;
  box-shadow: 0 1px 0 var(--line);
}

.lots-list th:first-child,
.lots-list td:first-child {
  width: 3.2rem;
  font-variant-numeric: tabular-nums;
}

.lots-list th:last-child,
.lots-list td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.lots-list th:nth-child(2),
.lots-list td:nth-child(2) {
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.lots-list td {
  padding: 11px 14px;
}

.lot-row {
  cursor: pointer;
  transition: background 0.2s ease;
}

.lot-row:hover,
.lot-row:focus-visible,
.lot-row.is-hover {
  background: rgba(125, 154, 134, 0.16);
  outline: none;
}

.lot-row.is-on {
  background: rgba(77, 110, 88, 0.18);
  outline: none;
}

.lot-row.is-on td:first-child {
  color: #243528;
  font-weight: 600;
}

.lots-note {
  max-width: 42rem;
  margin-top: 28px;
  font-size: 0.86rem;
}

@media (max-width: 900px) {
  .lots-layout,
  .water-block {
    grid-template-columns: 1fr;
  }

  .lots-layout {
    gap: 40px;
  }

  .lots-metrics {
    gap: 24px 36px;
    margin-bottom: 40px;
  }

  @media (max-width: 600px) {
    .lots-metrics {
      flex-direction: column;
      gap: 20px;
    }
  }

  .lot-tip {
    right: 6%;
    top: auto;
    bottom: 14%;
  }

  .lots-list table {
    font-size: 0.82rem;
    table-layout: fixed;
    width: 100%;
  }

  .lots-list th:first-child,
  .lots-list td:first-child {
    width: 2.5rem;
  }

  .lots-list th:last-child,
  .lots-list td:last-child {
    width: 5.6rem;
  }

  .lots-list td {
    padding: 13px 8px;
  }
  .water-block {
    grid-template-areas:
      "head"
      "pair"
      "copy";
    row-gap: 28px;
  }
  .water-block .section-head {
    margin-bottom: 0;
  }
  .water-pair {
    grid-template-columns: 8% 1fr 8%;
    padding: 0;
  }
  .water-frame--lead {
    transform: none;
  }
  .water-frame--inset {
    margin-top: -20px;
    transform: none;
  }
  .lots-list {
    max-height: 420px;
  }
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

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

.header-end {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch,
.gate-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lang-switch a,
.gate-lang a {
  text-decoration: none;
  opacity: 0.5;
}

.lang-switch a.is-active,
.lang-switch a:hover,
.gate-lang a.is-active,
.gate-lang a:hover {
  opacity: 1;
}

.lang-switch a.is-active,
.gate-lang a.is-active {
  font-weight: 600;
}

.gate {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
}

.gate-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 20, 16, 0.28) 0%, rgba(30, 58, 76, 0.42) 52%, rgba(14, 20, 16, 0.72) 100%);
}

.gate-lang {
  position: absolute;
  top: 22px;
  right: 28px;
  z-index: 2;
  color: var(--white);
}

.gate-card {
  position: relative;
  z-index: 1;
  width: min(400px, calc(100% - 40px));
  padding: 40px 32px 32px;
  background: rgba(251, 248, 243, 0.94);
  color: var(--ink);
  border: 1px solid rgba(255, 253, 248, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.gate-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 28px;
  text-align: center;
  line-height: 0.9;
}

.gate-mark strong {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.gate-mark span {
  margin-top: 10px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  opacity: 0.7;
}

.gate-card form {
  display: grid;
  gap: 14px;
}

.gate-card input[type="password"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

.gate-card input[type="password"]:focus {
  outline: 2px solid var(--bay-mid);
  outline-offset: 1px;
}

.gate-card .btn {
  width: 100%;
  border: 0;
}

.gate-error {
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
  color: #7a3a2e;
}
