:root {
  --ink: #20201d;
  --muted: #6f6b61;
  --line: #ded6c4;
  --paper: #f7f3e8;
  --soft: #ebe4d4;
  --white: #ffffff;
  --leaf: #a9873e;
  --leaf-dark: #20201d;
  --sage: #8b8679;
  --clay: #8b6a2d;
  --gold: #b99242;
  --gold-light: #e2c574;
  --charcoal: #20201d;
  --shadow: 0 22px 60px rgba(32, 32, 29, 0.18);
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --hero-font: var(--font-sans);
  --hero-text-color: #ffffff;
  --hero-accent-color: #e2c574;
  --hero-button-color: #b99242;
  --hero-overlay-strong: rgba(19, 19, 17, 0.86);
  --hero-overlay-mid: rgba(19, 19, 17, 0.42);
  --hero-overlay-soft: rgba(19, 19, 17, 0.12);
  --hero-overlay-bottom: rgba(19, 19, 17, 0.86);
  --hero-logo-x: 0px;
  --hero-logo-y: 0px;
  --hero-logo-scale: 1;
  --hero-copy-x: 0px;
  --hero-copy-y: 0px;
  --hero-copy-scale: 1;
  --hero-actions-x: 0px;
  --hero-actions-y: 0px;
  --hero-actions-scale: 1;
  --hero-facts-x: 0px;
  --hero-facts-y: 0px;
  --hero-facts-scale: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 243, 232, 0.96);
  box-shadow: 0 10px 30px rgba(32, 32, 29, 0.08);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: 222px;
  object-fit: contain;
}

.brand-logo-dark {
  display: none;
}

.site-header.is-scrolled .brand-logo-light,
.site-header.is-open .brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.is-open .brand-logo-dark {
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 4vw, 56px) 28px;
  overflow: hidden;
  color: var(--white);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, var(--hero-overlay-strong), var(--hero-overlay-mid) 54%, var(--hero-overlay-soft)),
    linear-gradient(0deg, var(--hero-overlay-bottom), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-bottom: 118px;
}

.hero-content .hero-logo-title,
.hero-content .hero-kicker,
.hero-content .hero-copy,
.hero-content .hero-actions {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 720px;
  font-family: var(--font-serif);
  font-size: 5.4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

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

.hero-logo-title {
  max-width: 172px;
  margin-bottom: 22px;
}

.hero-logo-title img {
  width: min(100%, 172px);
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.28));
}

.hero-kicker {
  width: fit-content;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px 18px;
  border-top: 1px solid rgba(226, 197, 116, 0.5);
  border-bottom: 1px solid rgba(226, 197, 116, 0.5);
  color: var(--hero-accent-color);
  font-family: var(--hero-font);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

[data-editable="heroLogo"] {
  transform: translate(var(--hero-logo-x), var(--hero-logo-y)) scale(var(--hero-logo-scale));
  transform-origin: left center;
}

h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-top: 24px;
  color: var(--hero-text-color);
  font-family: var(--hero-font);
  font-size: 1.16rem;
  text-align: center;
  opacity: 0.88;
  transform: translate(var(--hero-copy-x), var(--hero-copy-y)) scale(var(--hero-copy-scale));
  transform-origin: left center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  transform: translate(var(--hero-actions-x), var(--hero-actions-y)) scale(var(--hero-actions-scale));
  transform-origin: left center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--hero-button-color);
  background: linear-gradient(180deg, var(--gold-light), var(--hero-button-color));
  color: #1f1b12;
}

.button-secondary {
  border-color: rgba(226, 197, 116, 0.68);
  color: #f8f1df;
  background: rgba(32, 32, 29, 0.34);
}

.button-secondary:hover {
  background: rgba(226, 197, 116, 0.12);
  border-color: var(--gold-light);
}

.hero-facts {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  transform: translate(var(--hero-facts-x), var(--hero-facts-y)) scale(var(--hero-facts-scale));
  transform-origin: left bottom;
}

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

.hero-facts div {
  position: relative;
  min-width: 0;
  overflow: hidden;
  min-height: 126px;
  display: grid;
  align-content: center;
  padding: 24px;
  border: 1px solid rgba(226, 197, 116, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.01)),
    rgba(22, 22, 19, 0.4);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: left;
  backdrop-filter: blur(16px);
}

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

.hero-facts div::before {
  content: none !important;
  display: none !important;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  color: rgba(255, 248, 234, 0.92);
  font-family: var(--font-serif);
  font-size: 1.26rem;
  font-weight: 600;
  line-height: 1;
}

.hero-facts div > span {
  margin-top: 10px;
  color: rgba(247, 243, 232, 0.58);
  font-size: 0.76rem;
  font-weight: 600;
  font-family: var(--hero-font);
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--hero-accent-color);
  font-family: var(--hero-font);
}

.hero [data-editable] {
  will-change: transform;
}

body.is-editing .hero [data-editable] {
  cursor: move;
  outline: 1px dashed rgba(255, 255, 255, 0.45);
  outline-offset: 8px;
}

body.is-editing .hero [data-editable].is-selected {
  outline: 2px solid var(--hero-accent-color);
  outline-offset: 10px;
}

.section {
  padding: 96px 0;
}

.section-inner {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-section {
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.contact-grid,
.process-grid,
.finance-layout,
.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 64px;
  align-items: start;
}

.intro-grid p:last-child,
.contact-grid > div > p,
.split-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 680px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 36px;
  align-items: end;
  max-width: none;
}

.developments-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.development-list {
  display: grid;
  gap: 14px;
}

.development-card {
  position: relative;
  min-height: 154px;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 38px rgba(23, 33, 27, 0.08);
}

.development-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(19, 19, 17, 0.86), rgba(19, 19, 17, 0.12));
}

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

.development-card.is-active {
  outline: 2px solid var(--gold-light);
  box-shadow: 0 16px 42px rgba(32, 32, 29, 0.14), inset 0 0 0 1px rgba(226, 197, 116, 0.44);
}

.card-status,
.card-body {
  position: relative;
  z-index: 1;
}

.card-status {
  justify-self: start;
  align-self: start;
  padding: 6px 9px;
  border-radius: 8px;
  border: 1px solid rgba(226, 197, 116, 0.48);
  background: rgba(32, 32, 29, 0.78);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
}

.card-body {
  display: grid;
  gap: 2px;
}

.card-body strong {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
}

.card-body small {
  color: rgba(255, 255, 255, 0.76);
}

.card-body span {
  color: var(--gold);
  font-weight: 800;
}

.development-detail {
  min-height: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 52px rgba(23, 33, 27, 0.1);
}

.detail-media {
  position: relative;
  min-height: 520px;
  background: var(--soft);
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  border-radius: 8px;
  border: 1px solid rgba(226, 197, 116, 0.5);
  background: rgba(32, 32, 29, 0.86);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
}

.detail-content {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 34px;
}

.detail-content h3 {
  font-size: 2.2rem;
}

.detail-content p {
  margin: 0;
  color: var(--muted);
}

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

.detail-stats div {
  min-width: 0;
  padding: 16px 10px;
  border-right: 1px solid var(--line);
}

.detail-stats div:last-child {
  border-right: 0;
}

.detail-stats strong,
.detail-stats span {
  display: block;
}

.detail-stats strong {
  font-size: 1rem;
  white-space: nowrap;
}

.detail-stats span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.amenity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amenity-tags span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--charcoal);
  font-size: 0.86rem;
  font-weight: 800;
}

.muted-section {
  background: var(--soft);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.experience-grid article,
.finance-cards article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-icon {
  display: none;
}

.experience-grid p,
.finance-cards p,
.steps p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.visual-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 16px;
  margin-top: 34px;
}

.visual-strip figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.visual-strip figure:not(:first-child) {
  min-height: 320px;
}

.visual-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-strip figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(32, 32, 29, 0.88);
  color: var(--white);
  font-weight: 800;
}

.finance-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.finance-cards span {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.finance-cards strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
}

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

.trust-section {
  background: var(--white);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: start;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid article {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.trust-grid strong {
  display: block;
  color: var(--leaf-dark);
  font-size: 1.08rem;
}

.trust-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.steps span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--ink);
  font-weight: 800;
}

.contact-section {
  background: var(--charcoal);
  color: var(--white);
}

.contact-section .section-inner {
  align-items: center;
}

.contact-grid > div > p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-direct {
  display: grid;
  gap: 4px;
  margin-top: 28px;
}

.contact-direct span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.contact-direct a {
  color: var(--gold);
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 11px 12px;
}

.lead-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(226, 197, 116, 0.65);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.editor-toggle {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 31;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.editor-toggle[hidden],
.design-editor[hidden] {
  display: none;
}

.design-editor {
  position: fixed;
  top: 88px;
  right: 18px;
  z-index: 32;
  display: none;
  width: min(340px, calc(100% - 36px));
  max-height: calc(100vh - 106px);
  overflow: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 251, 247, 0.98);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.design-editor.is-open {
  display: grid;
  gap: 14px;
}

.editor-header,
.editor-actions,
.editor-color-grid,
.editor-grid {
  display: grid;
  gap: 10px;
}

.editor-header {
  grid-template-columns: 1fr 38px;
  align-items: center;
}

.editor-header button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.design-editor label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.design-editor input,
.design-editor select,
.editor-actions button {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 8px 10px;
}

.design-editor input[type="range"] {
  padding: 0;
}

.design-editor input[type="color"] {
  padding: 4px;
}

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

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

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

.editor-actions button {
  cursor: pointer;
  font-weight: 800;
}

.editor-status {
  min-height: 20px;
  margin: 0;
  color: var(--leaf);
  font-size: 0.86rem;
  font-weight: 800;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--clay);
  font-weight: 800;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .developments-layout,
  .development-detail,
  .visual-strip,
  .finance-cards {
    grid-template-columns: 1fr;
  }

  .development-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-media,
  .visual-strip figure,
  .visual-strip figure:not(:first-child) {
    min-height: 340px;
  }
}

@media (max-width: 860px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 12px;
  }

  .hero {
    min-height: 94vh;
    display: block;
  }

  .hero-content {
    padding-bottom: 0;
    margin-top: 84px;
  }

  .hero-facts,
  .intro-grid,
  .contact-grid,
  .process-grid,
  .finance-layout,
  .experience-layout,
  .trust-layout,
  .split-heading,
  .development-list,
  .experience-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-facts div {
    min-height: 104px;
    padding: 20px;
    border-right: 1px solid rgba(226, 197, 116, 0.28);
    border-bottom: 0;
  }

  .hero-facts {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .hero-facts div::before {
    content: none !important;
    display: none !important;
    left: 20px;
    right: 20px;
    top: 16px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 96vh;
    padding-top: 104px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .brand-logo {
    height: 34px;
    max-width: 190px;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-logo-title {
    max-width: 132px;
  }

  .hero-kicker {
    padding: 9px 12px;
    font-size: 0.74rem;
  }

  .hero-content {
    margin-top: 70px;
  }

  .hero-actions .button,
  .detail-content .button {
    width: 100%;
  }

  .detail-content,
  .lead-form {
    padding: 22px;
  }

  .detail-stats {
    grid-template-columns: 1fr;
  }

  .detail-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .detail-stats div:last-child {
    border-bottom: 0;
  }

  .whatsapp-float {
    left: auto;
    right: 18px;
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .editor-toggle {
    bottom: 76px;
  }

  .design-editor {
    top: 76px;
  }
}

/* Proposal v2: boutique investment layout */
.proposal-v2 {
  background: #181815;
  color: #f5efdf;
}

.proposal-v2 .site-header {
  display: none;
}

.proposal-v2 .site-header.is-scrolled,
.proposal-v2 .site-header.is-open {
  background: rgba(24, 24, 21, 0.92);
  color: #f5efdf;
}

.proposal-v2 .site-header.is-scrolled .brand-logo-light,
.proposal-v2 .site-header.is-open .brand-logo-light {
  display: block;
}

.proposal-v2 .site-header.is-scrolled .brand-logo-dark,
.proposal-v2 .site-header.is-open .brand-logo-dark {
  display: none;
}

.proposal-v2 .main-nav {
  gap: 22px;
  color: rgba(245, 239, 223, 0.82);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.proposal-v2 .hero {
  min-height: 100vh;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
}

.proposal-v2 .hero-overlay {
  background:
    radial-gradient(circle at 76% 36%, rgba(226, 197, 116, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(14, 14, 12, 0.94), rgba(14, 14, 12, 0.72) 48%, rgba(14, 14, 12, 0.42)),
    linear-gradient(0deg, #181815, transparent 42%);
}

.proposal-v2 .hero-content {
  max-width: min(720px, 58vw);
  padding-bottom: 0;
  transform: translateY(-4vh);
}

.proposal-v2 .hero-content .hero-logo-title,
.proposal-v2 .hero-content .hero-kicker,
.proposal-v2 .hero-content .hero-copy,
.proposal-v2 .hero-content .hero-actions {
  margin-left: auto;
  margin-right: auto;
}

.proposal-v2 .hero-logo-title {
  max-width: min(360px, 72vw);
  margin-bottom: 24px;
  text-align: center;
}

.proposal-v2 .hero-logo-title img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.proposal-v2 .hero-kicker {
  width: fit-content;
  padding: 0;
  border: 0;
  color: var(--gold-light);
  font-size: 0.76rem;
  text-align: center;
}

.proposal-v2 .hero-kicker::before {
  content: none;
}

.proposal-v2 .hero-copy {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(245, 239, 223, 0.78);
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: 0.94;
  text-align: left;
}

.proposal-v2 .hero-copy::after {
  content: "Cotiza disponibilidad, ubicacion y plan de pago en una sola conversacion.";
  display: block;
  max-width: 440px;
  margin-top: 28px;
  color: rgba(245, 239, 223, 0.62);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.proposal-v2 .hero-actions {
  justify-content: flex-start;
  margin-top: 32px;
}

.proposal-v2 .hero-facts {
  left: auto;
  right: clamp(18px, 5vw, 72px);
  bottom: auto;
  top: 50%;
  width: min(360px, 34vw);
  grid-template-columns: 1fr;
  gap: 12px;
  transform: translateY(-40%);
}

.proposal-v2 .hero-facts div {
  min-height: 112px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
    rgba(22, 22, 19, 0.5);
}

.proposal-v2 .section {
  background: #181815;
  color: #f5efdf;
}

.proposal-v2 .intro-section,
.proposal-v2 .process-section {
  border-color: rgba(226, 197, 116, 0.16);
}

.proposal-v2 .intro-grid,
.proposal-v2 .split-heading,
.proposal-v2 .finance-layout,
.proposal-v2 .experience-layout,
.proposal-v2 .process-grid,
.proposal-v2 .trust-layout {
  gap: 42px;
}

.proposal-v2 h2 {
  color: #fff8ea;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.proposal-v2 .intro-grid p:last-child,
.proposal-v2 .contact-grid > div > p,
.proposal-v2 .split-heading > p,
.proposal-v2 .detail-content p,
.proposal-v2 .experience-grid p,
.proposal-v2 .finance-cards p,
.proposal-v2 .steps p,
.proposal-v2 .trust-grid p {
  color: rgba(245, 239, 223, 0.62);
}

.proposal-v2 .development-card,
.proposal-v2 .development-detail,
.proposal-v2 .experience-grid article,
.proposal-v2 .finance-cards article,
.proposal-v2 .trust-grid article,
.proposal-v2 .lead-form {
  border-color: rgba(226, 197, 116, 0.18);
  background: rgba(247, 243, 232, 0.045);
  box-shadow: none;
}

.proposal-v2 .development-detail {
  background: rgba(247, 243, 232, 0.065);
}

.proposal-v2 .detail-content h3,
.proposal-v2 .trust-grid strong {
  color: #fff8ea;
}

.proposal-v2 .detail-stats,
.proposal-v2 .detail-stats div,
.proposal-v2 .steps li {
  border-color: rgba(226, 197, 116, 0.16);
}

.proposal-v2 .amenity-tags span {
  border-color: rgba(226, 197, 116, 0.18);
  background: rgba(226, 197, 116, 0.08);
  color: var(--gold-light);
}

.proposal-v2 .muted-section,
.proposal-v2 .gallery-section,
.proposal-v2 .trust-section {
  background: #1f1f1b;
}

.proposal-v2 .visual-strip figure {
  border: 1px solid rgba(226, 197, 116, 0.14);
}

.proposal-v2 .contact-section {
  background:
    linear-gradient(135deg, rgba(226, 197, 116, 0.12), transparent 34%),
    #11110f;
}

.proposal-v2 .site-footer {
  background: #11110f;
  border-color: rgba(226, 197, 116, 0.16);
}

@media (max-width: 1080px) {
  .proposal-v2 .hero-content {
    max-width: 100%;
  }

  .proposal-v2 .hero-facts {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 36px;
    transform: none;
  }
}

@media (max-width: 860px) {
  .proposal-v2 .site-header {
    justify-content: flex-end;
  }

  .proposal-v2 .main-nav {
    background: #181815;
    color: #f5efdf;
  }
}

@media (max-width: 560px) {
  .proposal-v2 .hero-copy {
    font-size: 3rem;
  }
}
