:root {
  color-scheme: light;
  --ink: #10201d;
  --muted: #66736e;
  --line: #dfe6e1;
  --paper: #ffffff;
  --soft: #f6f7f2;
  --green: #001b17;
  --green-2: #06382f;
  --gold: #c89145;
  --gold-2: #e4b76b;
  --teal: #117d72;
  --blue: #286fb4;
  --coral: #bc5a3c;
  --danger: #a43b31;
  --ok: #1e7f55;
  --warning: #a76a14;
  --shadow: 0 12px 34px rgba(10, 28, 23, .08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--soft);
  color: var(--ink);
}

.public-screen {
  min-height: 100vh;
  background: var(--soft);
  color: var(--ink);
}

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

button {
  cursor: pointer;
}

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

a {
  color: inherit;
}

.login-screen {
  min-height: 100vh;
  padding: 18px;
  display: grid;
  place-items: stretch;
  background:
    linear-gradient(90deg, rgba(0, 21, 18, .97) 0%, rgba(0, 21, 18, .93) 36%, rgba(0, 21, 18, .24) 68%, rgba(0, 21, 18, .72) 100%),
    url("assets/imagenes/hero/11.webp") center/cover no-repeat;
}

.login-frame {
  min-height: calc(100vh - 36px);
  border: 1px solid var(--gold);
  display: grid;
  grid-template-columns: minmax(420px, .98fr) minmax(390px, .72fr);
  align-items: center;
  gap: clamp(24px, 5vw, 76px);
  padding: clamp(28px, 4vw, 68px);
  position: relative;
  overflow: hidden;
}

.login-frame::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 36%;
  width: 31%;
  background: linear-gradient(115deg, rgba(0, 21, 18, .98) 0%, rgba(0, 21, 18, .92) 46%, rgba(0, 21, 18, .02) 47%);
  pointer-events: none;
}

.login-copy,
.login-card {
  position: relative;
  z-index: 1;
}

.login-copy {
  color: #fff;
  max-width: 620px;
}

.login-brand {
  display: grid;
  gap: 12px;
  width: fit-content;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.login-brand img {
  width: 166px;
  max-height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .28));
}

.login-mark-line {
  width: 78px;
  height: 4px;
  background: var(--gold-2);
}

.login-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(56px, 7vw, 98px);
  line-height: .9;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.login-copy h1 span {
  display: block;
  color: var(--gold-2);
}

.login-copy p {
  max-width: 520px;
  color: #f2f5f2;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.48;
}

.login-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  margin: 34px 0 42px;
}

.login-feature {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
}

.login-feature i {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(228, 183, 107, .35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-style: normal;
  font-size: 24px;
  font-weight: 900;
}

.login-feature strong,
.login-feature small {
  display: block;
}

.login-feature small {
  margin-top: 6px;
  color: #d8e1dc;
  line-height: 1.4;
}

.login-security {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(228, 183, 107, .38);
  padding-top: 22px;
  color: #f6f8f6;
}

.login-security i {
  width: 54px;
  height: 54px;
  border: 2px solid var(--gold-2);
  display: grid;
  place-items: center;
  color: var(--gold-2);
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
}

.login-security strong {
  font-size: 18px;
}

.login-security span {
  color: var(--gold-2);
  padding: 0 9px;
}

.login-security small {
  display: block;
  margin-top: 7px;
  color: #dce5e0;
}

.login-card {
  justify-self: end;
  width: min(100%, 520px);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .26);
}

.login-card-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green);
  padding: 12px;
  box-shadow: 0 12px 26px rgba(0, 27, 23, .28);
}

.login-card h2 {
  text-align: center;
  margin-bottom: 8px;
  font-size: clamp(32px, 3vw, 44px);
  font-family: Georgia, "Times New Roman", serif;
}

.login-card > p {
  text-align: center;
  margin-bottom: 20px;
  color: #263530;
}

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

.oauth-button {
  min-height: 46px;
  border: 1px solid #d6dcd8;
  border-radius: var(--radius);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
}

.oauth-button b {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 18px;
}

.oauth-button.google b {
  color: #fff;
  background: conic-gradient(#4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
}

.oauth-button.facebook b {
  color: #fff;
  background: #1877f2;
}

.login-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 20px 0;
  color: #727b76;
  font-size: 13px;
}

.login-divider::before,
.login-divider::after {
  content: "";
  height: 1px;
  background: #dde3df;
}

.login-form {
  display: grid;
  gap: 12px;
}

.login-field {
  display: grid;
  gap: 8px;
}

.login-field label {
  font-size: 13px;
  font-weight: 800;
}

.login-input {
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  min-height: 52px;
  border: 1px solid #d4dad6;
  border-radius: var(--radius);
  background: #fff;
  padding: 0 12px;
}

.login-input input {
  min-height: 50px;
  border: 0;
  padding: 0;
  background: transparent;
}

.login-input input:focus {
  outline: none;
}

.login-input:focus-within {
  outline: 3px solid rgba(200, 145, 69, .2);
  border-color: var(--gold);
}

.login-input button {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--green);
  font-weight: 900;
}

.login-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

.login-row button,
.login-create button {
  border: 0;
  background: transparent;
  color: #9b6514;
  font-weight: 800;
  padding: 0;
}

.login-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 10px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.login-submit span {
  color: var(--gold-2);
  padding-left: 12px;
}

.login-create {
  text-align: center;
  margin: 16px 0 0;
  font-size: 14px;
}

.login-demo {
  margin-top: 12px;
  border: 1px solid #eee5d8;
  border-radius: var(--radius);
  background: #fffaf1;
  padding: 10px;
}

.login-demo strong {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  color: #6e4a0e;
  text-transform: uppercase;
}

.demo-logins {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-logins button {
  min-height: 32px;
  border: 1px solid rgba(200, 145, 69, .4);
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.login-error {
  min-height: 20px;
  color: var(--danger);
  font-size: 13px;
  font-weight: 800;
}

.cloud-note {
  margin-top: 8px;
  color: #68746f;
  font-size: 12px;
  line-height: 1.4;
}

.app-shell {
  --sidebar-width: 286px;
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 18px 14px;
  background: var(--green);
  color: #f7fbf7;
  border-right: 1px solid rgba(228, 183, 107, .22);
}

.sidebar-toggle {
  display: none;
}

.brand-block {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 8px 6px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius);
  padding: 4px;
}

.brand-block strong {
  display: block;
  font-size: 16px;
}

.brand-block span {
  display: block;
  margin-top: 3px;
  color: #d4ded8;
  font-size: 12px;
  line-height: 1.35;
}

.main-nav {
  display: grid;
  gap: 7px;
  margin: 18px 0;
  max-width: 100%;
}

.nav-button {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  color: #f4f8f5;
  padding: 8px 10px;
  text-align: left;
}

.nav-button:hover,
.nav-button.active {
  background: #f8f6ee;
  color: var(--green);
  border-color: #f8f6ee;
}

.nav-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(228, 183, 107, .18);
  color: var(--gold-2);
  font-weight: 800;
  font-size: 12px;
}

.nav-button.active .nav-icon,
.nav-button:hover .nav-icon {
  background: var(--green);
  color: var(--gold-2);
}

.nav-text strong,
.nav-text small {
  display: block;
}

.nav-text strong {
  font-size: 13px;
}

.nav-text small {
  color: inherit;
  opacity: .72;
  font-size: 11px;
  margin-top: 2px;
}

.sidebar-panel {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, .055);
}

.sidebar-panel h3 {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--gold-2);
}

.mini-advisor {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  align-items: center;
}

.avatar,
.advisor-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gold);
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.mini-advisor strong,
.mini-advisor small {
  display: block;
}

.mini-advisor small {
  color: #d6ded9;
  font-size: 12px;
}

.mini-stats {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.mini-stat {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 8px;
  font-size: 12px;
}

.main-area {
  min-width: 0;
  padding: 22px;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

h2 {
  margin-bottom: 14px;
  font-size: 22px;
}

h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.top-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.session-box {
  min-height: 42px;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 6px 10px;
  min-width: 190px;
}

.session-box strong,
.session-box small {
  display: block;
}

.session-box strong {
  font-size: 12px;
}

.session-box small {
  color: var(--muted);
  font-size: 11px;
}

.select-wrap {
  display: grid;
  gap: 4px;
  min-width: 180px;
}

.select-wrap span,
.field label,
.check-title,
.mini-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

select,
input,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
}

textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.45;
}

select:focus,
input:focus,
textarea:focus {
  outline: 3px solid rgba(17, 125, 114, .18);
  border-color: var(--teal);
}

.btn {
  min-height: 42px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  padding: 9px 13px;
  font-weight: 800;
}

.btn:hover {
  filter: brightness(1.04);
}

.btn.ghost {
  background: #fff;
  color: var(--green);
}

.btn.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green);
}

.btn.teal {
  background: var(--teal);
  border-color: var(--teal);
}

.btn.danger {
  background: var(--danger);
  border-color: var(--danger);
}

.btn.danger.ghost {
  background: #fff;
  color: var(--danger);
  border-color: rgba(164, 59, 49, .32);
}

.btn.small {
  min-height: 34px;
  padding: 7px 9px;
  font-size: 12px;
}

.view-root {
  display: grid;
  gap: 16px;
}

.toolbar,
.panel,
.metric,
.property-card,
.sheet-doc,
.agent-card,
.advisor-card,
.public-card,
.dash-card,
.dash-hero-card,
.dash-metric,
.dash-catalog-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
}

.toolbar .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.panel {
  padding: 16px;
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.panel-header p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

.grid.main-split {
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, .75fr);
}

.metric {
  min-height: 112px;
  padding: 15px;
  display: grid;
  align-content: space-between;
  gap: 12px;
}

.metric small {
  color: var(--muted);
  font-weight: 800;
}

.metric strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
}

.metric.ok strong {
  color: var(--ok);
}

.metric.warn strong {
  color: var(--warning);
}

.dash-shell {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.dash-shell > *,
.dash-card,
.dash-hero-card,
.dash-metric,
.dash-catalog-section,
.dash-analysis-grid,
.dash-grid-main,
.dash-detail-grid,
.dash-summary-band,
.dash-property-nav,
.dash-table-wrap {
  min-width: 0;
}

.dash-hero-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
  min-height: 180px;
}

.dash-cover {
  min-height: 180px;
  background: #d8e2df center/cover no-repeat;
  position: relative;
}

.dash-hero-body {
  display: grid;
  gap: 18px;
  align-content: space-between;
  padding: 16px;
}

.dash-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 16px;
  align-items: start;
}

.dash-title-row h2 {
  margin-bottom: 7px;
  font-size: clamp(22px, 3vw, 34px);
}

.dash-title-row p:not(.eyebrow) {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.dash-property-nav {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 8px;
}

.dash-property-nav select {
  min-width: 0;
}

.icon-btn {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
}

.dash-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.dash-contact {
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-template-areas:
    "icon label"
    "icon value";
  column-gap: 9px;
  align-items: center;
  min-width: 0;
}

.dash-contact i {
  grid-area: icon;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(200, 145, 69, .34);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
}

.dash-contact small {
  grid-area: label;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.dash-contact strong {
  grid-area: value;
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 10px;
}

.dash-metric {
  min-height: 104px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
}

.dash-metric i {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: #fff6e5;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.dash-metric small,
.dash-metric span {
  color: var(--muted);
}

.dash-metric small {
  display: block;
  font-size: 11px;
  font-weight: 900;
}

.dash-metric strong {
  display: block;
  margin: 6px 0 4px;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1;
}

.dash-metric span {
  font-size: 11px;
}

.dash-metric.gold strong,
.dash-metric.gold i {
  color: var(--gold);
}

.dash-metric.teal strong,
.dash-metric.teal i {
  color: var(--teal);
}

.dash-metric.ok strong,
.dash-metric.ok i {
  color: var(--ok);
}

.dash-metric.warn strong,
.dash-metric.warn i {
  color: var(--warning);
}

.dash-grid-main {
  display: grid;
  grid-template-columns: minmax(230px, .88fr) minmax(250px, .95fr) minmax(320px, 1.15fr) minmax(230px, .8fr);
  gap: 12px;
  align-items: stretch;
}

.dash-card {
  padding: 13px;
}

.dash-card h3 {
  margin-bottom: 10px;
}

.dash-info-list {
  display: grid;
  gap: 8px;
}

.dash-info-list div {
  display: grid;
  grid-template-columns: minmax(110px, .95fr) minmax(0, 1fr);
  gap: 8px;
  min-height: 34px;
  align-items: start;
  border-bottom: 1px solid #eef2ee;
  padding-bottom: 7px;
}

.dash-info-list small,
.dash-tiny small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.dash-info-list strong,
.dash-tiny strong {
  font-size: 12px;
  line-height: 1.35;
}

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

.dash-tiny {
  min-height: 58px;
  border: 1px solid #edf1ee;
  border-radius: var(--radius);
  padding: 8px;
  background: #fbfcfa;
}

.dash-tiny small,
.dash-tiny strong {
  display: block;
}

.dash-tiny strong {
  margin-top: 5px;
}

.dash-gallery-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.dash-gallery-main {
  min-height: 170px;
  border-radius: var(--radius);
  background: #d8e2df center/cover no-repeat;
}

.dash-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  margin-top: 8px;
}

.dash-thumbs button {
  aspect-ratio: 4 / 3;
  min-height: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #d8e2df center/cover no-repeat;
  padding: 0;
}

.dash-thumbs button.active {
  border-color: var(--gold);
}

.dash-map {
  min-height: 178px;
  border: 1px solid #d9e5e1;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background:
    linear-gradient(30deg, transparent 47%, rgba(17, 125, 114, .18) 48%, rgba(17, 125, 114, .18) 52%, transparent 53%),
    linear-gradient(120deg, transparent 47%, rgba(200, 145, 69, .18) 48%, rgba(200, 145, 69, .18) 52%, transparent 53%),
    linear-gradient(#eef6f5 0 0);
  overflow: hidden;
}

.dash-map span {
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 0;
  background: var(--green);
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
}

.dash-map span::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-2);
}

.full-btn {
  width: 100%;
  margin-top: 8px;
}

.dash-analysis-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .62fr);
  gap: 12px;
}

.market-analysis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  align-items: stretch;
  min-width: 0;
}

.market-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(250, 248, 242, .78)),
    #fff;
  box-shadow: var(--shadow);
  padding: 18px;
}

.market-head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.market-head i,
.opinion-market-list i {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #0b684f, var(--green));
  color: #fff;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0, 27, 23, .16);
}

.market-head i {
  width: 56px;
  height: 56px;
  font-size: 13px;
}

.market-head h3 {
  margin: 0 0 4px;
  font-size: 21px;
}

.market-head p {
  margin: 0;
  color: var(--muted);
}

.market-stat-box {
  min-height: 88px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .72);
}

.market-stat-box.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.market-stat-box small,
.market-stat-box span {
  display: block;
  color: var(--muted);
}

.market-stat-box small {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.market-stat-box strong {
  display: block;
  color: #0b4f3f;
  font-size: 27px;
  line-height: 1;
}

.market-stat-box b {
  display: block;
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
}

.market-card h4 {
  margin: 18px 0 10px;
  font-size: 14px;
  text-transform: none;
}

.market-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.chart-axis {
  stroke: #cad5cf;
  stroke-width: 1;
}

.avg-line {
  stroke: var(--gold);
  stroke-width: 2;
  stroke-dasharray: 6 6;
}

.avg-label,
.bar-value,
.bar-label,
.bar-sub {
  fill: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.avg-label {
  fill: var(--gold);
}

.bar-label {
  font-size: 13px;
}

.bar-sub {
  fill: var(--muted);
  font-weight: 500;
}

.bar-sub.light {
  fill: #fff;
  font-weight: 900;
}

.chart-bar.green,
.hbar-track i.green {
  fill: var(--green);
  background: linear-gradient(90deg, var(--green), #0e6b55);
}

.chart-bar.gold,
.hbar-track i.gold {
  fill: var(--gold);
  background: linear-gradient(90deg, #d8890e, var(--gold-2));
}

.horizontal-chart {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 16px 0 10px;
}

.hbar-row {
  display: grid;
  grid-template-columns: 34px minmax(120px, 1fr) 82px;
  gap: 10px;
  align-items: center;
}

.hbar-row small {
  color: var(--ink);
  font-weight: 900;
}

.hbar-track {
  height: 30px;
  border-radius: 5px;
  background: #edf2ef;
  overflow: hidden;
}

.hbar-track i {
  display: block;
  height: 100%;
  border-radius: 5px;
}

.hbar-row b {
  font-size: 12px;
}

.avg-badge {
  justify-self: end;
  border: 1px solid rgba(200, 145, 69, .4);
  border-radius: var(--radius);
  background: #fffaf0;
  color: var(--gold);
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.construction-donut-wrap {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.construction-donut {
  width: 160px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(0, 27, 23, .08);
}

.construction-donut div {
  width: 82px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  background: #fff;
  text-align: center;
  padding: 8px;
}

.construction-donut strong,
.construction-donut span {
  display: block;
}

.construction-donut span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.15;
}

.market-legend {
  display: grid;
  gap: 10px;
}

.market-legend span {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #31413b;
  font-size: 12px;
}

.cap-line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
}

.cap-point,
.gauge-dot {
  fill: var(--gold);
  stroke: #fff;
  stroke-width: 3;
}

.rent-gauge {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.rent-gauge svg {
  width: 100%;
  max-width: 260px;
  display: block;
  margin: 0 auto;
}

.gauge-bg,
.gauge-fg {
  fill: none;
  stroke-linecap: round;
  stroke-width: 12;
}

.gauge-bg {
  stroke: #dde2df;
}

.gauge-fg {
  stroke: var(--green);
}

.rent-gauge text {
  fill: var(--ink);
  font-weight: 900;
}

.rent-gauge text:first-of-type {
  font-size: 28px;
}

.rent-gauge text:not(:first-of-type) {
  fill: var(--muted);
  font-size: 11px;
}

.market-range {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.range-track {
  position: relative;
  height: 24px;
  margin: 8px 16px 4px;
}

.range-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 11px;
  height: 3px;
  background: var(--green);
}

.range-track i,
.range-track b,
.range-track em {
  position: absolute;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid #fff;
  box-shadow: 0 1px 5px rgba(0, 27, 23, .2);
}

.range-track i {
  left: 0;
}

.range-track b {
  left: 50%;
  background: var(--gold);
  transform: translateX(-50%);
}

.range-track em {
  right: 0;
  font-style: normal;
}

.range-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.range-values span,
.range-values strong,
.range-values small {
  display: block;
}

.range-values span:nth-child(2) {
  text-align: center;
  color: var(--gold);
}

.range-values span:nth-child(3) {
  text-align: right;
}

.range-values small {
  color: var(--muted);
}

.opinion-market-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.opinion-market-card .market-head {
  margin-bottom: 6px;
}

.opinion-market-card .market-head i {
  border-radius: var(--radius);
}

.opinion-market-value {
  text-align: center;
}

.opinion-market-value strong {
  display: inline-block;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 52px);
  line-height: .95;
}

.opinion-market-value small {
  margin-left: 6px;
  color: var(--green);
  font-weight: 900;
}

.opinion-market-value span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.opinion-range div {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.opinion-range span {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--green);
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 14px rgba(0, 27, 23, .24);
}

.opinion-range p {
  display: flex;
  justify-content: space-between;
  margin: 12px 0 0;
  color: var(--muted);
}

.opinion-market-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.opinion-market-list div {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
}

.opinion-market-list i {
  width: 42px;
  height: 42px;
  font-size: 13px;
}

.opinion-market-list i.gold,
.opinion-market-list i.warn {
  background: linear-gradient(135deg, #d78506, var(--gold-2));
}

.opinion-market-list span {
  color: #31413b;
  font-size: 13px;
}

.opinion-market-list strong {
  font-size: 18px;
}

.opinion-download {
  min-height: 56px;
  margin-top: 0;
  color: #fff;
  background: linear-gradient(135deg, #d78506, #f0a82b);
  border-color: #d78506;
}

.market-ready-note,
.market-source-note {
  color: var(--muted);
  font-size: 12px;
}

.market-ready-note {
  border-radius: var(--radius);
  background: #f7f1e8;
  padding: 12px;
  text-align: center;
}

.market-source-note {
  margin: 0;
}

.dash-section-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.dash-section-title p {
  margin-bottom: 0;
  color: var(--muted);
}

.dash-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.dash-table {
  min-width: 720px;
}

.dash-table th,
.dash-table td {
  padding: 8px 9px;
  font-size: 12px;
}

.dash-table tfoot td {
  background: #fff7e8;
  font-weight: 900;
}

.dash-value-card {
  text-align: center;
}

.dash-value-card > strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.dash-value-card > strong small {
  font-size: 13px;
}

.dash-value-card > span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.value-range {
  position: relative;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  margin: 20px 26px 6px;
}

.value-range i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--green);
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 8px rgba(0, 27, 23, .28);
}

.range-row {
  display: flex;
  justify-content: space-between;
  margin: 0 18px 14px;
  color: var(--muted);
}

.dash-value-list {
  display: grid;
  gap: 8px;
  text-align: left;
}

.dash-value-list div {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.dot.gold {
  background: var(--gold);
}

.dot.ok {
  background: var(--ok);
}

.dot.warn {
  background: var(--warning);
}

.dot.teal {
  background: var(--teal);
}

.dot.soft {
  background: #6c8678;
}

.dash-value-list small {
  color: var(--muted);
}

.dash-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dash-list-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dash-list-card li {
  position: relative;
  padding-left: 18px;
  color: #31413b;
  font-size: 13px;
  line-height: 1.35;
}

.dash-list-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.dash-summary-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.dash-summary {
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px;
}

.dash-summary small,
.dash-summary span {
  color: var(--muted);
}

.dash-summary small,
.dash-summary strong,
.dash-summary span {
  display: block;
}

.dash-summary small {
  font-weight: 900;
}

.dash-summary strong {
  margin: 5px 0;
  font-size: 20px;
}

.dash-summary span {
  font-size: 12px;
}

.dash-catalog-section {
  padding: 14px;
}

.hero-panel {
  overflow: hidden;
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr 320px;
  padding: 0;
}

.hero-copy {
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  background: var(--green);
  color: #fff;
}

.hero-copy p {
  color: #dce6e1;
  line-height: 1.6;
  max-width: 720px;
}

.hero-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.hero-copy .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-media {
  min-height: 330px;
  background-size: cover;
  background-position: center;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  border: 1px solid rgba(17, 125, 114, .22);
  border-radius: 999px;
  background: #eef7f5;
  color: #185f57;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.pill.gold {
  border-color: rgba(200, 145, 69, .35);
  background: #fff7e7;
  color: #6f4a0e;
}

.pill.warn {
  border-color: rgba(167, 106, 20, .35);
  background: #fff7e5;
  color: var(--warning);
}

.pill.danger {
  border-color: rgba(164, 59, 49, .28);
  background: #fff0ee;
  color: var(--danger);
}

.stepper {
  display: grid;
  grid-template-columns: repeat(8, minmax(92px, 1fr));
  gap: 8px;
}

.step {
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px;
}

.step i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold-2);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.step strong {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}

.property-grid,
.public-grid,
.advisor-grid,
.agent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.property-card,
.public-card {
  overflow: hidden;
}

.property-media,
.public-media {
  height: 190px;
  background: #d9e2df center/cover no-repeat;
  position: relative;
}

.property-media .status-chip,
.public-media .status-chip {
  position: absolute;
  left: 10px;
  top: 10px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(0, 27, 23, .86);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.property-body,
.public-body {
  padding: 14px;
}

.property-body h3,
.public-body h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.property-body p,
.public-body p,
.muted {
  color: var(--muted);
  line-height: 1.48;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0;
}

.fact {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px;
  background: #fafbf8;
}

.fact small,
.fact strong {
  display: block;
}

.fact small {
  color: var(--muted);
  font-size: 11px;
}

.fact strong {
  margin-top: 3px;
  font-size: 14px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

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

.field {
  display: grid;
  gap: 6px;
  grid-column: span 6;
}

.field.third {
  grid-column: span 4;
}

.field.quarter {
  grid-column: span 3;
}

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

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

.checklist {
  display: grid;
  gap: 10px;
}

.check-row {
  display: grid;
  grid-template-columns: 1fr 150px 210px;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px;
  background: #fff;
}

.check-row strong,
.check-row small {
  display: block;
}

.check-row small {
  margin-top: 3px;
  color: var(--muted);
}

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

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

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

th {
  background: #f1f4ef;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
}

td input {
  min-height: 36px;
  padding: 7px 8px;
}

.opinion-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.value-opinion-page {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.opinion-report-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .48fr);
  gap: 18px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 27, 23, .96), rgba(6, 56, 47, .9)),
    var(--green);
  color: #fff;
  box-shadow: var(--shadow);
  padding: 20px;
  overflow: hidden;
}

.opinion-report-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #d9e6e0;
  line-height: 1.55;
}

.opinion-report-hero h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 44px);
}

.opinion-hero-value {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  padding: 16px;
}

.opinion-hero-value > small,
.opinion-hero-value > strong {
  display: block;
}

.opinion-hero-value > small {
  color: #d9e6e0;
  font-weight: 900;
  text-transform: uppercase;
}

.opinion-hero-value > strong {
  margin: 8px 0 14px;
  color: var(--gold-2);
  font-size: clamp(32px, 4vw, 50px);
  line-height: .95;
}

.opinion-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.opinion-hero-actions .btn.ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
}

.opinion-report-hero .opinion-range p {
  color: #d9e6e0;
}

.opinion-comparable-grid {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.opinion-comparable-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 16px;
}

.opinion-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.opinion-panel-head .market-head {
  margin-bottom: 0;
}

.opinion-chart-edit {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
  gap: 14px;
  min-width: 0;
}

.opinion-chart-card,
.opinion-edit-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
  padding: 14px;
}

.opinion-chart-card h4 {
  margin: 16px 0 10px;
}

.opinion-edit-card {
  align-self: start;
}

.opinion-edit-card h3 {
  margin-bottom: 12px;
}

.opinion-edit-card .table-wrap {
  max-width: 100%;
}

.opinion-edit-card table {
  min-width: 720px;
}

.opinion-final-panel .source-note {
  margin: 14px 0 0;
}

.opinion-conclusion-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.doc-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
}

.sheet-doc {
  padding: 28px;
  min-height: 720px;
}

.sheet-head {
  display: grid;
  grid-template-columns: 120px 1fr 140px;
  align-items: center;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--green);
}

.sheet-head img {
  max-height: 82px;
  object-fit: contain;
}

.sheet-head h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.sheet-section {
  margin-top: 22px;
}

.sheet-section h3 {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

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

.kv-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
}

.kv-item small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 4px;
}

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

.sheet-gallery div {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: #dce4e1 center/cover no-repeat;
}

.aside-list {
  display: grid;
  gap: 10px;
}

.list-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 11px;
}

.list-item strong,
.list-item small {
  display: block;
}

.list-item small {
  color: var(--muted);
  margin-top: 3px;
}

.advisor-card,
.agent-card {
  padding: 14px;
}

.advisor-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
}

.advisor-card .advisor-photo,
.advisor-card .avatar {
  width: 74px;
  height: 74px;
}

.agent-card {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  gap: 12px;
}

.agent-card h3 {
  color: var(--green);
}

.agent-card p {
  color: var(--muted);
  line-height: 1.48;
}

.agent-output {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px;
  line-height: 1.55;
}

.source-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.empty {
  border: 1px dashed #cbd7d2;
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
  color: var(--muted);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  max-width: 360px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.print-only {
  display: none;
}

.commercial-home {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #f7f8f3 0%, #fff 36%, #f4f7f5 100%);
}

.commercial-header {
  position: sticky;
  top: 0;
  z-index: 14;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(223, 230, 225, .86);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
}

.commercial-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .02em;
  text-decoration: none;
  text-transform: uppercase;
}

.commercial-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.commercial-header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.commercial-header nav a:not(.btn) {
  color: #36514b;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.commercial-hero {
  min-height: clamp(620px, 76vh, 820px);
  display: grid;
  align-items: end;
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: clamp(86px, 10vw, 140px) clamp(18px, 6vw, 84px) clamp(28px, 6vw, 72px);
}

.commercial-hero-copy {
  width: min(780px, 100%);
  display: grid;
  gap: 18px;
}

.commercial-hero-copy h1 {
  font-size: clamp(48px, 8vw, 108px);
  line-height: .92;
  letter-spacing: 0;
  max-width: 820px;
}

.commercial-hero-copy p:not(.eyebrow) {
  max-width: 690px;
  color: #e4eee9;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.45;
}

.commercial-hero-actions,
.commercial-hero-stats,
.commercial-filters,
.commercial-result-bar,
.credential-badges,
.seo-link-cloud,
.buyer-lead-result {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn.ghost.light {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.commercial-hero-stats {
  margin-top: 12px;
}

.commercial-hero-stats div {
  min-width: 170px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(0, 27, 23, .42);
  padding: 14px;
  backdrop-filter: blur(12px);
}

.commercial-hero-stats strong {
  display: block;
  color: var(--gold-2);
  font-size: clamp(21px, 2.8vw, 30px);
  line-height: 1;
}

.commercial-hero-stats span {
  display: block;
  margin-top: 6px;
  color: #ecf4ef;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.commercial-search,
.commercial-section {
  width: min(1280px, calc(100% - 28px));
  margin: clamp(18px, 4vw, 34px) auto;
}

.commercial-search,
.zone-grid article,
.journey-grid article,
.buyer-lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.commercial-search,
.commercial-section {
  padding: clamp(16px, 3vw, 26px);
}

.commercial-section {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.commercial-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.commercial-section-title h2,
.lead-copy h2,
.credentials-copy h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.commercial-filter {
  display: grid;
  gap: 6px;
  min-width: min(220px, 100%);
  flex: 1;
}

.commercial-filter span,
.buyer-lead-form span {
  color: #52625e;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.commercial-filter select,
.buyer-lead-form input,
.buyer-lead-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d9e2dd;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
}

.commercial-result-bar {
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin: 16px 0;
  padding-top: 14px;
  color: var(--muted);
}

.commercial-result-bar strong {
  color: var(--green);
}

.buyer-inventory-grid {
  margin-top: 4px;
}

.zone-grid,
.journey-grid {
  display: grid;
  gap: 12px;
}

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

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

.zone-grid article,
.journey-grid article {
  min-height: 190px;
  padding: 16px;
  box-shadow: none;
}

.zone-grid article {
  border-top: 4px solid var(--blue);
}

.zone-grid article:nth-child(2n) {
  border-top-color: var(--gold);
}

.zone-grid article:nth-child(3n) {
  border-top-color: var(--coral);
}

.zone-grid strong,
.journey-grid h3 {
  display: block;
  color: var(--green);
  font-size: 20px;
}

.zone-grid p,
.journey-grid p,
.lead-copy p,
.credentials-copy p {
  color: var(--muted);
  line-height: 1.55;
}

.zone-grid span {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-grid i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold-2);
  font-style: normal;
  font-weight: 950;
}

.credentials-section,
.lead-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
}

.credentials-media {
  display: grid;
  grid-template-columns: minmax(160px, .42fr) minmax(240px, .8fr);
  gap: 12px;
  align-items: stretch;
}

.credentials-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.credentials-media img:nth-child(2) {
  object-fit: contain;
  padding: 12px;
}

.credential-badges span,
.seo-link-cloud a {
  border: 1px solid #dbe5df;
  border-radius: 999px;
  background: #f8fbf8;
  color: var(--green);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.lead-section {
  width: 100%;
  max-width: none;
  margin-top: clamp(26px, 5vw, 56px);
  margin-bottom: clamp(26px, 5vw, 56px);
  border-radius: 0;
  padding-inline: max(18px, calc((100vw - 1280px) / 2));
  background:
    linear-gradient(135deg, rgba(0, 27, 23, .96), rgba(6, 56, 47, .9)),
    var(--green);
  color: #fff;
}

.lead-copy p {
  color: #dfeae5;
}

.buyer-lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  background: #fff;
}

.buyer-lead-form label {
  display: grid;
  gap: 6px;
}

.buyer-lead-form button,
.buyer-lead-result {
  grid-column: 1 / -1;
}

.buyer-lead-result {
  align-items: center;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.seo-section {
  box-shadow: none;
}

.seo-link-cloud {
  align-items: center;
}

.commercial-footer {
  margin-top: clamp(34px, 6vw, 72px);
  background: var(--green);
  color: #eef7f1;
}

.footer-main {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(160px, .7fr));
  gap: clamp(18px, 4vw, 46px);
  padding: clamp(30px, 5vw, 58px) 0;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-brand .commercial-brand {
  color: #fff;
}

.footer-brand .commercial-brand img {
  background: #fff;
  border-radius: var(--radius);
  padding: 4px;
}

.footer-brand p {
  max-width: 520px;
  color: #c9d8d1;
  line-height: 1.6;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  border: 1px solid rgba(228, 183, 107, .35);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: var(--gold-2);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h3 {
  margin: 0 0 6px;
  color: var(--gold-2);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-column a {
  color: #e5eee9;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
  padding: 15px 0 20px;
  color: #b7c8c1;
  font-size: 12px;
  line-height: 1.45;
}

.premium-site {
  --premium-dark: #001c18;
  --premium-panel: #051d1a;
  --premium-line: rgba(221, 183, 103, .25);
  background: #f7f7f3;
  overflow-x: hidden;
}

.premium-site .premium-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 10, 9, .92);
  color: #fff;
}

.premium-site .commercial-brand,
.premium-site .commercial-header nav a:not(.btn) {
  color: #fff;
}

.premium-site .commercial-brand img {
  width: 112px;
  height: 46px;
  object-fit: contain;
}

.premium-site .commercial-brand span {
  display: none;
}

.premium-site .commercial-header nav a:not(.btn) {
  font-size: 12px;
  text-transform: uppercase;
}

.premium-hero {
  min-height: 560px;
  margin-top: -1px;
  display: grid;
  align-items: center;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.premium-hero-inner {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  gap: clamp(22px, 5vw, 80px);
  align-items: center;
  padding: 56px clamp(24px, 3.6vw, 56px) 74px;
}

.premium-hero-copy {
  display: grid;
  gap: 18px;
}

.gold-text {
  color: var(--gold-2);
}

.premium-hero-copy h1 {
  max-width: 700px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7.4vw, 86px);
  line-height: .93;
  letter-spacing: 0;
  text-transform: uppercase;
}

.premium-hero-copy h1 span {
  color: var(--gold-2);
}

.premium-hero-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
}

.premium-proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 120px));
  gap: 18px;
  margin-top: 14px;
}

.premium-proof-row div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.premium-proof-row i {
  color: var(--gold-2);
  font-size: 24px;
  font-style: normal;
}

.premium-search-card {
  border: 1px solid var(--premium-line);
  border-radius: var(--radius);
  background: rgba(0, 14, 12, .84);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .36);
  padding: 24px;
  backdrop-filter: blur(16px);
}

.premium-search-card h2 {
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 18px;
  text-transform: uppercase;
}

.premium-search-card .commercial-filter {
  min-width: 0;
  margin-bottom: 10px;
}

.premium-search-card .commercial-filter span {
  color: #d9d0bd;
}

.premium-search-card .commercial-filter select {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(0, 0, 0, .2);
  color: #fff;
}

.premium-search-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.premium-search-button {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.intent-rail,
.premium-map-shell,
.premium-advisor-grid,
.matricula-band,
.premium-process,
.lead-hub {
  width: 100%;
  margin: 0;
}

.intent-rail {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  border: 1px solid var(--premium-line);
  border-radius: var(--radius);
  background: var(--premium-dark);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.intent-rail a {
  min-height: 88px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  padding: 14px 22px;
  text-decoration: none;
}

.intent-rail a:last-child {
  border-right: 0;
}

.intent-rail i {
  color: var(--gold-2);
  font-size: 28px;
  font-style: normal;
}

.intent-rail strong,
.intent-rail span {
  display: block;
}

.intent-rail strong {
  text-transform: uppercase;
}

.intent-rail span {
  color: #c9d8d1;
  font-size: 12px;
}

.premium-map-shell {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  min-height: 640px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--premium-dark);
  box-shadow: var(--shadow);
}

.premium-map-sidebar {
  padding: 26px;
  color: #fff;
}

.premium-map-sidebar h2 {
  max-width: 300px;
  margin: 8px 0 18px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.02;
}

.map-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.map-filter-pills button {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: #dce7e2;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 900;
}

.map-filter-pills .active {
  background: var(--gold-2);
  color: var(--green);
}

.map-list {
  display: grid;
  gap: 10px;
}

.map-list-item {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 8px;
  text-align: left;
}

.map-list-item.active,
.map-list-item:hover {
  border-color: var(--gold-2);
}

.map-list-item img {
  width: 96px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.map-list-item strong,
.map-list-item small,
.map-list-item b,
.map-list-item em {
  display: block;
}

.map-list-item small {
  color: #c7d5cf;
}

.map-list-item b {
  margin: 5px 0;
  color: #fff;
}

.map-list-item em,
.map-selected-panel em {
  display: flex;
  gap: 8px;
  color: var(--gold-2);
  font-style: normal;
  font-size: 12px;
}

.ghost-dark {
  margin-top: 16px;
  border-color: var(--gold);
  color: var(--gold-2);
}

.premium-map {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #d8e3dc;
}

.premium-map::before {
  display: none;
}

.premium-map::after {
  display: none;
}

.google-map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-selected-panel {
  position: absolute;
  top: clamp(18px, 2.4vw, 32px);
  right: clamp(18px, 2.4vw, 32px);
  z-index: 2;
  width: min(390px, calc(100% - 36px));
  border: 1px solid rgba(228, 183, 107, .4);
  border-radius: var(--radius);
  background: rgba(0, 27, 23, .92);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .32);
  color: #fff;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  margin-top: 0;
  padding: 12px;
  backdrop-filter: blur(12px);
}

.map-selected-panel img {
  width: 96px;
  height: 104px;
  object-fit: cover;
  border-radius: 6px;
}

.map-selected-panel strong,
.map-selected-panel small,
.map-selected-panel span,
.map-selected-panel b {
  display: block;
}

.map-selected-panel small,
.map-selected-panel span {
  color: #c8d8d2;
}

.map-selected-panel b {
  margin: 7px 0;
  color: #fff;
}

.map-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.premium-advisor-grid,
.matricula-band {
  display: grid;
  gap: 16px;
}

.premium-advisor-grid {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.1fr);
}

.advisor-profile-panel,
.certification-panel,
.matricula-band,
.lead-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.advisor-profile-panel {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
}

.advisor-profile-panel > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  background: #eef2ef;
}

.advisor-profile-panel > div {
  display: grid;
  align-content: center;
  padding: clamp(22px, 4vw, 42px);
}

.advisor-profile-panel h2,
.premium-process h2,
.lead-hub-title h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.advisor-profile-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.advisor-profile-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.advisor-profile-panel li::before {
  content: "✓";
  color: var(--gold);
  padding-right: 8px;
}

.certification-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  background: var(--premium-dark);
  color: #fff;
  padding: 28px;
}

.certification-panel > p:not(.eyebrow) {
  color: #cbd9d3;
}

.certificate-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 16px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 16px;
}

.certificate-thumb {
  border: 0;
  border-radius: 6px;
  background: #fff;
  padding: 8px;
}

.certificate-thumb img {
  width: 92px;
  height: 76px;
  object-fit: contain;
}

.certificate-row h3 {
  color: var(--gold-2);
  font-size: 22px;
}

.certificate-row p,
.certificate-row small {
  color: #d9e3de;
}

.matricula-band {
  grid-template-columns: minmax(0, 1fr) 160px minmax(0, 1fr);
  align-items: center;
  padding: 24px clamp(18px, 4vw, 70px);
}

.matricula-band img {
  max-height: 90px;
  object-fit: contain;
  justify-self: center;
}

.matricula-band strong,
.matricula-band span {
  display: block;
}

.matricula-band span {
  color: var(--muted);
  line-height: 1.55;
}

.premium-process {
  padding: 22px 0 4px;
  text-align: center;
}

.premium-process .journey-grid {
  margin-top: 18px;
  text-align: left;
}

.lead-hub {
  padding: 20px 0 34px;
}

.lead-hub-title {
  text-align: center;
  margin-bottom: 18px;
}

.lead-hub-title p {
  color: var(--muted);
}

.lead-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.lead-card {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.lead-card h3 {
  min-height: 52px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.15;
  text-transform: uppercase;
}

.lead-card p {
  color: var(--muted);
  font-size: 12px;
  min-height: 38px;
}

.lead-card input,
.lead-card select,
.lead-card textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid #dbe2de;
  border-radius: 4px;
  padding: 8px 10px;
  background: #fff;
  font-size: 12px;
}

.lead-card textarea {
  min-height: 70px;
  resize: vertical;
}

.lead-card-result {
  min-height: 18px;
  color: var(--ok);
  font-size: 12px;
  font-weight: 800;
}

.public-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 10, 9, .78);
  backdrop-filter: blur(10px);
}

.public-lightbox-panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(860px, calc(100vh - 44px));
  overflow: auto;
  border: 1px solid rgba(228, 183, 107, .35);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.certificate-lightbox-panel {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 34px;
}

.certificate-lightbox-panel h2 {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
}

.certificate-lightbox-panel img {
  max-width: min(780px, 100%);
  max-height: 72vh;
  object-fit: contain;
}

.property-lightbox-panel {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1fr);
}

.property-lightbox-gallery {
  display: grid;
  grid-template-rows: minmax(420px, 1fr) auto;
  gap: 10px;
  padding: 14px;
  background: var(--green);
}

.property-lightbox-main {
  min-height: 420px;
  border-radius: var(--radius);
  background: #d8e2df center/cover no-repeat;
}

.property-lightbox-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.property-lightbox-thumbs button {
  min-height: 74px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #d8e2df center/cover no-repeat;
}

.property-lightbox-thumbs button.active {
  border-color: var(--gold-2);
}

.property-lightbox-info {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 30px;
}

.modal-facts {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.modal-map-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
}

.mini-map {
  min-height: 160px;
  border-radius: var(--radius);
}

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

.public-route-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  padding: 12px clamp(14px, 4vw, 42px);
}

.public-route-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.public-route-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.public-route-header nav,
.public-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.public-route-section,
.public-property-page {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.public-property-page {
  display: grid;
  gap: 18px;
  padding: 22px 0 42px;
}

.public-property-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .72fr);
  gap: 18px;
  align-items: stretch;
}

.public-property-media,
.public-property-copy,
.public-route-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.public-property-media {
  min-height: 520px;
  background: #dce4e1 center/cover no-repeat;
}

.public-property-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(20px, 4vw, 38px);
}

.public-property-copy h1,
.public-catalog-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.public-property-copy p:not(.eyebrow),
.public-catalog-hero p {
  color: var(--muted);
  line-height: 1.55;
}

.public-price {
  display: block;
  color: var(--green);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
}

.public-property-facts {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
}

.public-route-section {
  padding: 18px;
}

.public-gallery {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(0, .8fr));
  grid-auto-rows: 190px;
  gap: 10px;
  margin-top: 12px;
}

.public-gallery div {
  border-radius: var(--radius);
  background: #dce4e1 center/cover no-repeat;
}

.public-gallery div:first-child {
  grid-row: span 2;
}

.public-detail-copy {
  margin-top: 14px;
}

.public-catalog-hero {
  margin-top: 22px;
  background:
    linear-gradient(135deg, rgba(0, 27, 23, .94), rgba(6, 56, 47, .86)),
    var(--green);
  color: #fff;
}

.public-catalog-hero p {
  max-width: 760px;
  color: #dce6e1;
}

@media (min-width: 1121px) {
  html,
  body {
    width: 100%;
    min-height: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  body::-webkit-scrollbar,
  .login-screen::-webkit-scrollbar,
  .sidebar::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .login-screen:not([hidden]) {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    padding: 0;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .login-frame {
    width: 100%;
    min-width: 100%;
    height: 100%;
    min-height: 100vh;
    padding: clamp(22px, 3.8vh, 56px) clamp(28px, 4vw, 68px);
  }

  .app-shell {
    transition: grid-template-columns .22s ease;
  }

  .app-shell.sidebar-collapsed {
    --sidebar-width: 88px;
  }

  .sidebar {
    scrollbar-width: none;
    -ms-overflow-style: none;
    transition: padding .22s ease;
  }

  .sidebar-toggle {
    position: absolute;
    top: 14px;
    right: 12px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(228, 183, 107, .3);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
    color: var(--gold-2);
    display: grid;
    place-items: center;
  }

  .sidebar-toggle::before,
  .sidebar-toggle::after {
    content: "";
    position: absolute;
    display: block;
  }

  .sidebar-toggle::before {
    width: 16px;
    height: 12px;
    background:
      linear-gradient(currentColor, currentColor) 0 0 / 16px 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 5px / 16px 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 10px / 16px 2px no-repeat;
    transform: translateX(-2px);
  }

  .sidebar-toggle::after {
    right: 7px;
    width: 7px;
    height: 7px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease;
  }

  .brand-block {
    padding-right: 42px;
  }

  .app-shell.sidebar-collapsed .sidebar {
    padding-inline: 10px;
  }

  .app-shell.sidebar-collapsed .sidebar-toggle {
    right: 50%;
    transform: translateX(50%);
  }

  .app-shell.sidebar-collapsed .sidebar-toggle::before {
    transform: translateX(2px);
  }

  .app-shell.sidebar-collapsed .sidebar-toggle::after {
    right: 22px;
    transform: rotate(-135deg);
  }

  .app-shell.sidebar-collapsed .brand-block {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 48px 0 14px;
  }

  .app-shell.sidebar-collapsed .brand-block > div,
  .app-shell.sidebar-collapsed .nav-text,
  .app-shell.sidebar-collapsed .sidebar-panel {
    display: none;
  }

  .app-shell.sidebar-collapsed .brand-logo {
    width: 48px;
    height: 48px;
  }

  .app-shell.sidebar-collapsed .main-nav {
    justify-items: center;
  }

  .app-shell.sidebar-collapsed .nav-button {
    grid-template-columns: 1fr;
    justify-items: center;
    width: 54px;
    min-height: 54px;
    padding: 8px;
  }

  .app-shell.sidebar-collapsed .nav-icon {
    width: 38px;
    height: 38px;
    font-size: 11px;
  }
}

@media (min-width: 1121px) and (max-height: 850px) {
  .login-brand {
    margin-bottom: 22px;
  }

  .login-brand img {
    width: 120px;
    max-height: 88px;
  }

  .login-copy h1 {
    margin-bottom: 14px;
    font-size: clamp(48px, 5.7vw, 82px);
  }

  .login-copy p {
    font-size: 17px;
    line-height: 1.38;
  }

  .login-features {
    gap: 14px 22px;
    margin: 24px 0 26px;
  }

  .login-feature {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .login-feature i {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .login-feature small,
  .login-security small {
    line-height: 1.3;
  }

  .login-security {
    padding-top: 16px;
  }

  .login-card {
    width: min(100%, 500px);
    padding: 22px;
  }

  .login-card-logo {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
  }

  .login-card h2 {
    font-size: 34px;
  }

  .login-card > p,
  .login-divider {
    margin-bottom: 14px;
  }

  .login-divider {
    margin-top: 14px;
  }

  .oauth-button {
    min-height: 42px;
  }

  .login-input {
    min-height: 48px;
  }

  .login-input input {
    min-height: 46px;
  }

  .login-submit {
    min-height: 50px;
    font-size: 18px;
  }

  .login-create {
    margin-top: 12px;
  }

  .login-demo {
    margin-top: 10px;
  }
}

@media (max-width: 1120px) {
  .login-frame {
    grid-template-columns: 1fr;
  }

  .login-frame::before {
    display: none;
  }

  .login-card {
    justify-self: start;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    height: auto;
  }

  .main-nav {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  }

  .topbar,
  .toolbar,
  .panel-header {
    align-items: stretch;
    flex-direction: column;
  }

  .top-actions {
    justify-content: flex-start;
  }

  .hero-panel,
  .doc-shell,
  .grid.main-split {
    grid-template-columns: 1fr;
  }

  .dash-hero-card,
  .dash-title-row,
  .dash-analysis-grid,
  .opinion-report-hero,
  .opinion-chart-edit,
  .public-property-hero {
    grid-template-columns: 1fr;
  }

  .dash-cover {
    min-height: 260px;
  }

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

  .dash-grid-main,
  .dash-detail-grid,
  .dash-summary-band,
  .opinion-conclusion-grid,
  .public-property-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-property-media {
    min-height: 360px;
  }

  .hero-media {
    min-height: 260px;
  }

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

  .commercial-header {
    align-items: stretch;
    flex-direction: column;
  }

  .commercial-header nav {
    justify-content: flex-start;
  }

  .commercial-hero {
    min-height: 620px;
    padding-top: 130px;
  }

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

  .credentials-section,
  .lead-section {
    grid-template-columns: 1fr;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .premium-hero-inner,
  .premium-map-shell,
  .premium-advisor-grid,
  .property-lightbox-panel {
    grid-template-columns: 1fr;
  }

  .premium-hero-inner {
    padding-top: 90px;
  }

  .premium-map-sidebar {
    order: 2;
  }

  .premium-map {
    min-height: 520px;
  }

  .map-selected-panel {
    top: 18px;
    right: 18px;
  }

  .lead-card-grid,
  .intent-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advisor-profile-panel,
  .matricula-band,
  .modal-map-card {
    grid-template-columns: 1fr;
  }

  .certificate-row {
    grid-template-columns: 90px 1fr;
  }

  .certificate-row .btn {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .login-screen {
    padding: 0;
  }

  .login-frame {
    min-height: 100vh;
    border: 0;
    padding: 20px 14px;
  }

  .login-copy h1 {
    font-size: 48px;
  }

  .login-copy p {
    font-size: 16px;
  }

  .login-brand {
    margin-bottom: 22px;
  }

  .login-brand img {
    width: 122px;
  }

  .login-features,
  .oauth-row {
    grid-template-columns: 1fr;
  }

  .login-card {
    padding: 24px 18px;
  }

  .login-security {
    align-items: flex-start;
  }

  .main-area {
    padding: 14px;
  }

  .sidebar {
    padding: 12px;
  }

  .brand-block {
    min-height: 58px;
    padding-bottom: 10px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .main-nav {
    display: flex;
    gap: 8px;
    margin: 12px 0 0;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .nav-button {
    min-width: 142px;
    min-height: 46px;
    grid-template-columns: 30px 1fr;
  }

  .nav-icon {
    width: 30px;
    height: 30px;
  }

  .nav-text small,
  .sidebar-panel {
    display: none;
  }

  .commercial-header {
    padding: 10px 14px;
  }

  .commercial-brand span {
    font-size: 12px;
  }

  .commercial-header nav {
    gap: 8px;
  }

  .commercial-header nav a:not(.btn),
  .commercial-header nav .btn {
    flex: 1 1 auto;
    justify-content: center;
    min-height: 38px;
    font-size: 12px;
  }

  .commercial-hero {
    min-height: 620px;
    padding: 130px 14px 32px;
  }

  .commercial-hero-copy h1 {
    font-size: 48px;
  }

  .commercial-hero-stats div {
    width: 100%;
  }

  .commercial-section-title,
  .commercial-result-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .commercial-filters {
    display: grid;
    grid-template-columns: 1fr;
  }

  .zone-grid,
  .journey-grid,
  .credentials-media,
  .buyer-lead-form {
    grid-template-columns: 1fr;
  }

  .credentials-media img {
    height: auto;
    max-height: 360px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    width: min(100% - 28px, 1280px);
  }

  .premium-site .commercial-header nav {
    display: none;
  }

  .premium-site .commercial-brand img {
    width: 96px;
  }

  .premium-hero {
    min-height: auto;
  }

  .premium-hero-inner,
  .intent-rail,
  .premium-map-shell,
  .premium-advisor-grid,
  .matricula-band,
  .premium-process,
  .lead-hub {
    width: min(100% - 24px, 1280px);
  }

  .premium-hero-inner {
    width: min(100% - 24px, 1280px);
    gap: 18px;
    padding: 48px 0 68px;
  }

  .premium-hero-copy h1 {
    font-size: 46px;
  }

  .premium-proof-row,
  .premium-search-row,
  .intent-rail,
  .lead-card-grid,
  .property-lightbox-thumbs,
  .modal-facts {
    grid-template-columns: 1fr;
  }

  .intent-rail {
    margin-top: -36px;
  }

  .intent-rail a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .premium-map-sidebar {
    padding: 18px;
  }

  .premium-map {
    min-height: 440px;
  }

  .map-selected-panel {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    grid-template-columns: 82px 1fr;
    max-height: calc(100% - 24px);
    overflow: auto;
  }

  .map-selected-panel img {
    width: 82px;
    height: 96px;
  }

  .map-selected-panel .btn.small {
    padding: 8px 10px;
    font-size: 11px;
  }

  .advisor-profile-panel {
    padding: 0;
  }

  .advisor-profile-panel > img {
    min-height: 430px;
    object-fit: cover;
  }

  .advisor-profile-panel > div {
    padding: 22px;
  }

  .certificate-row {
    grid-template-columns: 1fr;
  }

  .certificate-row .btn {
    grid-column: auto;
  }

  .property-lightbox-panel {
    width: 100%;
  }

  .property-lightbox-gallery {
    grid-template-rows: minmax(260px, 1fr) auto;
  }

  .property-lightbox-main {
    min-height: 260px;
  }

  .property-lightbox-info {
    padding: 18px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .dash-metrics,
  .dash-grid-main,
  .dash-detail-grid,
  .dash-summary-band,
  .opinion-summary,
  .opinion-conclusion-grid,
  .public-property-facts,
  .public-gallery {
    grid-template-columns: 1fr;
  }

  .public-route-header {
    align-items: stretch;
    flex-direction: column;
  }

  .public-route-header nav {
    width: 100%;
  }

  .public-route-header nav .btn {
    flex: 1;
  }

  .public-property-media {
    min-height: 280px;
  }

  .public-gallery {
    grid-auto-rows: 210px;
  }

  .public-gallery div:first-child {
    grid-row: auto;
  }

  .dash-hero-body,
  .dash-card,
  .dash-catalog-section {
    padding: 12px;
  }

  .dash-cover {
    min-height: 220px;
  }

  .dash-property-nav {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }

  .dash-contact-grid,
  .dash-mini-grid {
    grid-template-columns: 1fr;
  }

  .dash-info-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .dash-gallery-main,
  .dash-map {
    min-height: 210px;
  }

  .dash-section-title {
    display: grid;
  }

  .dash-value-list div {
    grid-template-columns: 10px 1fr;
  }

  .dash-value-list b {
    grid-column: 2;
  }

  .market-card {
    padding: 14px;
  }

  .market-head {
    grid-template-columns: 48px 1fr;
  }

  .market-head i {
    width: 48px;
    height: 48px;
  }

  .market-stat-box,
  .market-stat-box.two,
  .construction-donut-wrap,
  .opinion-market-list div {
    grid-template-columns: 1fr;
  }

  .construction-donut {
    justify-self: center;
  }

  .opinion-market-list div {
    gap: 8px;
    padding: 12px 0;
  }

  .opinion-market-list strong {
    justify-self: start;
  }

  .opinion-report-hero,
  .opinion-comparable-panel {
    padding: 14px;
  }

  .opinion-panel-head {
    display: grid;
  }

  .opinion-chart-card,
  .opinion-edit-card {
    padding: 12px;
  }

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

  .field,
  .field.third,
  .field.quarter {
    grid-column: 1 / -1;
  }

  .check-row {
    grid-template-columns: 1fr;
  }

  .facts,
  .sheet-kv,
  .sheet-gallery,
  .stepper,
  .opinion-summary {
    grid-template-columns: 1fr;
  }

  .sheet-head {
    grid-template-columns: 1fr;
  }
}

/* Full-width premium commercial redesign */
.premium-site .commercial-header {
  padding-inline: clamp(20px, 3vw, 42px);
}

.premium-site .commercial-header nav {
  width: 100%;
  justify-content: flex-end;
}

.premium-hero-inner,
.intent-rail,
.premium-map-shell,
.credential-showcase,
.credential-registry,
.premium-process,
.lead-showcase,
.commercial-footer .footer-main,
.commercial-footer .footer-bottom {
  width: 100%;
  max-width: none;
}

.intent-rail {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.premium-map-shell {
  grid-template-columns: minmax(340px, 420px) minmax(0, 1fr);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
}

.premium-process {
  padding: clamp(42px, 6vw, 76px) clamp(20px, 4vw, 64px);
}

.commercial-footer {
  margin-top: 0;
}

.commercial-footer .footer-main,
.commercial-footer .footer-bottom {
  padding-right: clamp(20px, 4vw, 64px);
  padding-left: clamp(20px, 4vw, 64px);
}

.credential-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
  gap: 0;
  padding: clamp(18px, 2.8vw, 40px);
  border-top: 1px solid rgba(228, 183, 107, .28);
  border-bottom: 1px solid rgba(228, 183, 107, .28);
  background:
    linear-gradient(90deg, rgba(0, 13, 12, .96), rgba(0, 28, 24, .9)),
    url("assets/imagenes/hero/11.webp") center / cover;
}

.credential-advisor-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, .58fr) minmax(240px, .42fr);
  border-color: rgba(228, 183, 107, .42);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(0, 10, 9, .84), rgba(0, 25, 22, .42)),
    url("assets/imagenes/hero/11.webp") center / cover;
  color: #fff;
  box-shadow: none;
}

.credential-advisor-card::after {
  content: "";
  position: absolute;
  inset: 4% 4% 0 auto;
  width: min(430px, 58%);
  aspect-ratio: 1;
  border: 3px solid rgba(228, 159, 44, .45);
  border-radius: 50%;
  pointer-events: none;
}

.credential-advisor-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  padding: clamp(22px, 2.8vw, 38px);
}

.credential-advisor-copy .eyebrow,
.credential-cert-panel .eyebrow,
.credential-registry .eyebrow {
  color: var(--gold-2);
}

.credential-advisor-copy h2 {
  color: #fff;
  font-size: clamp(40px, 4.4vw, 58px);
}

.credential-advisor-copy p {
  max-width: 430px;
  color: #f7f3ea;
  font-size: 16px;
}

.credential-advisor-copy ul {
  gap: 7px;
  margin: 14px 0;
}

.credential-advisor-copy li {
  color: #fff;
}

.credential-portrait {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.credential-portrait img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.credential-cert-panel {
  align-content: center;
  gap: clamp(12px, 1.5vw, 18px);
  border-color: rgba(228, 183, 107, .32);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(0, 48, 41, .96), rgba(0, 19, 17, .98)),
    var(--premium-dark);
  box-shadow: none;
  padding: clamp(20px, 2.6vw, 34px);
}

.credential-cert-panel > p:not(.eyebrow) {
  max-width: 820px;
  color: #f4f0e7;
  font-size: 16px;
  line-height: 1.55;
}

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

.credential-cert-panel .certificate-row {
  grid-template-columns: 82px minmax(0, 1fr);
  align-content: start;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(228, 183, 107, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
  padding: 12px;
}

.credential-cert-panel .certificate-thumb {
  border: 1px solid rgba(255, 255, 255, .18);
  background: #fff;
  padding: 6px;
}

.credential-cert-panel .certificate-thumb img {
  width: 68px;
  height: 86px;
}

.credential-cert-panel .certificate-row h3 {
  font-size: 22px;
}

.credential-cert-panel .certificate-row p {
  font-size: 14px;
  line-height: 1.3;
}

.credential-cert-panel .certificate-row small {
  display: block;
  margin-top: 6px;
  color: #f1c96f;
}

.credential-cert-panel .certificate-row .btn {
  grid-column: 1 / -1;
  justify-content: center;
  min-height: 34px;
  border-color: var(--gold);
  color: var(--gold-2);
  padding: 8px 10px;
  font-size: 11px;
}

.credential-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(228, 183, 107, .22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
  overflow: hidden;
}

.credential-value-grid div {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 86px;
  padding: 14px 12px;
  border-right: 1px solid rgba(255, 255, 255, .16);
  text-align: center;
}

.credential-value-grid div:last-child {
  border-right: 0;
}

.credential-value-grid i,
.registry-card i,
.registry-benefit-rail i,
.lead-intent-list i,
.lead-secure-note i,
.lead-form-heading i,
.lead-benefit-grid i {
  color: var(--gold-2);
  font-style: normal;
}

.credential-value-grid i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(228, 183, 107, .42);
  border-radius: 50%;
  font-size: 20px;
}

.credential-value-grid span {
  max-width: 140px;
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
}

.credential-registry {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 240px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: #fbf8f1;
  box-shadow: none;
  padding: clamp(20px, 2.8vw, 32px) clamp(24px, 4vw, 64px);
}

.registry-card,
.registry-logo-card {
  display: grid;
  gap: 10px;
  align-content: center;
}

.registry-card {
  grid-template-columns: 90px minmax(0, 1fr);
}

.registry-card i {
  grid-row: span 3;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--green);
  font-size: 30px;
}

.registry-card .eyebrow,
.registry-card strong,
.registry-card span {
  grid-column: 2;
}

.registry-card strong {
  color: var(--green);
  font-size: 18px;
  line-height: 1.25;
}

.registry-logo-card {
  justify-items: center;
  border-right: 1px solid rgba(180, 132, 51, .45);
  border-left: 1px solid rgba(180, 132, 51, .45);
  padding-inline: 24px;
  text-align: center;
}

.registry-logo-card img {
  max-width: 150px;
  max-height: 92px;
}

.registry-logo-card span {
  color: #1d2f2c;
  font-weight: 850;
}

.registry-benefit-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 8px;
  border: 1px solid rgba(228, 183, 107, .32);
  border-radius: var(--radius);
  background: var(--premium-dark);
  color: #fff;
  overflow: hidden;
}

.registry-benefit-rail div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px 14px;
  align-items: center;
  padding: 14px 18px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.registry-benefit-rail div:last-child {
  border-right: 0;
}

.registry-benefit-rail i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(228, 183, 107, .55);
  border-radius: 50%;
  font-size: 22px;
}

.registry-benefit-rail strong {
  color: #fff;
}

.registry-benefit-rail span {
  color: #dce7e2;
}

.lead-showcase {
  display: grid;
  grid-template-columns: minmax(400px, .64fr) minmax(520px, 1.16fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: clamp(28px, 3vw, 38px) clamp(24px, 4vw, 72px);
  background:
    linear-gradient(90deg, rgba(0, 10, 9, .94), rgba(0, 28, 24, .84)),
    url("assets/imagenes/hero/11.webp") center / cover;
  color: #fff;
}

.lead-intent-panel {
  display: grid;
  gap: 12px;
  max-width: 560px;
}

.lead-intent-panel h2 {
  max-width: 480px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.06;
}

.lead-intent-panel h2 span {
  color: var(--gold-2);
}

.lead-intent-panel p:not(.eyebrow) {
  max-width: 460px;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.lead-intent-list {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.lead-intent-list button {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(0, 38, 33, .66);
  color: #fff;
  display: grid;
  grid-template-columns: 44px 1fr 20px;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  text-align: left;
}

.lead-intent-list button.active {
  border-color: rgba(255, 211, 130, .8);
  background: linear-gradient(135deg, #d69a38, #f0c064);
  color: #061d19;
}

.lead-intent-list i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
}

.lead-intent-list button.active i {
  color: #fff;
}

.lead-intent-list strong,
.lead-intent-list small {
  display: block;
}

.lead-intent-list strong {
  text-transform: uppercase;
}

.lead-intent-list small {
  display: none;
  margin-top: 0;
  font-size: 12px;
  color: inherit;
  opacity: .86;
}

.lead-intent-list b {
  justify-self: end;
  font-size: 28px;
  font-weight: 300;
}

.lead-secure-note {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  width: min(460px, 100%);
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(0, 35, 31, .76);
  padding: 12px 14px;
}

.lead-secure-note i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
  font-size: 22px;
}

.lead-secure-note strong {
  color: var(--gold-2);
}

.lead-form-zone {
  display: grid;
  gap: 14px;
}

.lead-main-form {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(0, 32, 28, .86);
  color: #fff;
  box-shadow: none;
  padding: clamp(20px, 2.6vw, 34px);
}

.lead-form-heading {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.lead-form-heading i {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  font-size: 32px;
}

.lead-form-heading h3 {
  min-height: 0;
  color: #fff;
  font-size: clamp(28px, 2.8vw, 36px);
  text-transform: none;
}

.lead-form-heading p {
  min-height: 0;
  color: #fff;
  font-size: 15px;
}

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

.lead-field-grid label {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(0, 19, 17, .38);
  padding: 0 18px;
}

.lead-field-grid label.wide {
  grid-column: 1 / -1;
  display: block;
  min-height: 96px;
  padding: 12px 16px;
}

.lead-field-grid span {
  color: var(--gold-2);
  font-size: 22px;
}

.lead-field-grid input,
.lead-field-grid select,
.lead-field-grid textarea {
  min-height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 15px;
  outline: 0;
}

.lead-field-grid select option {
  color: #0e2521;
}

.lead-field-grid textarea {
  width: 100%;
  min-height: 72px;
  resize: vertical;
}

.lead-field-grid input::placeholder,
.lead-field-grid textarea::placeholder {
  color: rgba(255, 255, 255, .72);
}

.lead-main-form .full-btn {
  min-height: 48px;
  justify-content: center;
  margin-top: 8px;
  font-size: 16px;
  text-transform: uppercase;
}

.lead-main-form .full-btn span {
  margin-left: auto;
  font-size: 22px;
  line-height: 1;
}

.lead-main-form .lead-card-result {
  color: var(--gold-2);
  font-size: 14px;
}

.lead-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(0, 32, 28, .82);
  overflow: hidden;
}

.lead-benefit-grid div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 5px 10px;
  align-items: center;
  padding: 12px 14px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.lead-benefit-grid div:last-child {
  border-right: 0;
}

.lead-benefit-grid i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
  font-size: 18px;
}

.lead-benefit-grid strong {
  font-size: 13px;
}

.lead-benefit-grid span {
  font-size: 13px;
}

.lead-benefit-grid strong {
  color: var(--gold-2);
  text-transform: uppercase;
}

.lead-benefit-grid span {
  color: #dce7e2;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .premium-hero-inner,
  .credential-showcase,
  .lead-showcase,
  .premium-map-shell {
    grid-template-columns: 1fr;
  }

  .credential-showcase,
  .lead-showcase {
    min-height: auto;
  }

  .credential-advisor-card {
    min-height: auto;
  }

  .credential-cert-panel {
    min-height: auto;
  }

  .credential-portrait img {
    min-height: 440px;
    max-height: 560px;
  }

  .credential-registry,
  .registry-benefit-rail,
  .lead-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .registry-logo-card {
    border-right: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .premium-hero-inner,
  .intent-rail,
  .premium-map-shell,
  .credential-showcase,
  .credential-registry,
  .premium-process,
  .lead-showcase {
    width: 100%;
  }

  .premium-hero-inner,
  .credential-showcase,
  .credential-registry,
  .premium-process,
  .lead-showcase {
    padding-right: 16px;
    padding-left: 16px;
  }

  .credential-advisor-card,
  .certificate-card-grid,
  .credential-value-grid,
  .credential-registry,
  .registry-benefit-rail,
  .lead-field-grid,
  .lead-benefit-grid {
    grid-template-columns: 1fr;
  }

  .credential-advisor-card::after {
    width: 88%;
    inset: auto 6% 26% 6%;
  }

  .credential-portrait img {
    min-height: 340px;
    max-height: 430px;
  }

  .credential-cert-panel .certificate-row {
    grid-template-columns: 1fr;
  }

  .credential-value-grid div,
  .registry-benefit-rail div,
  .lead-benefit-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .registry-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .registry-card i {
    width: 62px;
    height: 62px;
    font-size: 28px;
  }

  .lead-form-heading {
    grid-template-columns: 1fr;
  }

  .lead-form-heading i {
    width: 82px;
    height: 82px;
    font-size: 42px;
  }

  .lead-intent-list button {
    grid-template-columns: 54px 1fr 22px;
    padding: 14px;
  }
}

/* Compact commercial template inspired by the full-page reference */
.template-site {
  --template-max: 1180px;
  background: #f6f4ef;
  color: #111d1a;
}

.template-top-strip {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px max(22px, calc((100vw - var(--template-max)) / 2));
  background: #00241f;
  color: #d9c58e;
  font-size: 12px;
  font-weight: 800;
}

.template-top-strip a {
  color: #d9c58e;
  text-decoration: none;
}

.template-site .template-nav {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 12px max(22px, calc((100vw - var(--template-max)) / 2));
  border-bottom: 1px solid #e5dfd3;
  background: rgba(255, 255, 255, .96);
  color: #061d19;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.template-site .commercial-brand img {
  width: 112px;
  height: 48px;
  object-fit: contain;
}

.template-site .commercial-header nav {
  justify-content: flex-end;
  gap: 20px;
}

.template-site .commercial-header nav a:not(.btn) {
  color: #12231f;
  font-size: 12px;
  font-weight: 950;
}

.template-site .commercial-header .btn.gold {
  border: 1px solid #b88936;
  background: transparent;
  color: #8a621f;
}

.template-hero {
  min-height: 390px;
  align-items: stretch;
  background-position: center;
}

.template-hero .premium-hero-inner {
  width: min(var(--template-max), calc(100% - 44px));
  grid-template-columns: minmax(300px, 460px) 1fr;
  padding: 68px 0 86px;
}

.template-hero .premium-hero-copy {
  gap: 16px;
  align-content: center;
}

.template-hero .premium-hero-copy h1 {
  max-width: 420px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.03;
  text-transform: none;
}

.template-hero .premium-hero-copy p {
  max-width: 370px;
  color: #fff;
  font-size: 16px;
}

.template-hero .premium-hero-copy .btn {
  justify-self: start;
}

.template-search-panel {
  position: relative;
  z-index: 3;
  width: min(var(--template-max), calc(100% - 44px));
  margin: -44px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(190px, .7fr);
  gap: 12px;
  padding: 16px;
  border: 1px solid #e5dfd3;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
}

.template-search-panel .commercial-filter {
  min-width: 0;
}

.template-search-panel .commercial-filter span {
  display: none;
}

.template-search-panel select,
.template-form-grid input,
.template-form-grid select,
.template-form-grid textarea {
  width: 100%;
  border: 1px solid #dcd8d0;
  border-radius: 2px;
  background: #fff;
  color: #17231f;
}

.template-search-panel select {
  min-height: 44px;
  padding: 0 12px;
}

.template-section {
  width: min(var(--template-max), calc(100% - 44px));
  margin: 0 auto;
  padding: 42px 0;
}

.template-section h2 {
  margin: 0 0 24px;
  color: #111d1a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  text-align: center;
}

.template-help {
  padding-top: 36px;
}

.template-help-grid {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 470px);
  gap: 90px;
  justify-content: center;
  align-items: start;
}

.template-intent-stack {
  display: grid;
  gap: 10px;
}

.template-intent-stack button {
  min-height: 58px;
  border: 1px solid #bfc7c1;
  background: #fff;
  color: #0d211d;
  display: grid;
  align-content: center;
  padding: 10px 20px;
  text-align: left;
}

.template-intent-stack button.active {
  border-color: #002b25;
  background: #002b25;
  color: #fff;
}

.template-intent-stack span {
  font-weight: 950;
  text-transform: uppercase;
}

.template-intent-stack small {
  margin-top: 2px;
  color: inherit;
  opacity: .82;
}

.template-lead-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid #e2ddd4;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
}

.template-lead-form h3 {
  margin: 0 0 4px;
  text-align: center;
}

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

.template-form-grid input,
.template-form-grid select {
  min-height: 40px;
  padding: 0 12px;
}

.template-form-grid select,
.template-form-grid textarea {
  grid-column: 1 / -1;
}

.template-form-grid textarea {
  min-height: 86px;
  padding: 12px;
  resize: vertical;
}

.template-lead-form small,
.template-lead-form .lead-card-result {
  text-align: center;
  font-size: 11px;
}

.template-map-section {
  padding-top: 28px;
}

.template-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
  text-align: center;
}

.template-stat-row strong,
.template-stat-row span {
  display: block;
}

.template-stat-row strong {
  color: #002b25;
  font-size: 20px;
}

.template-stat-row span {
  color: #5f6b66;
  font-size: 12px;
}

.template-site .premium-map-shell {
  width: 100%;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 410px;
  border: 1px solid #d9d4ca;
  border-radius: 0;
  box-shadow: none;
}

.template-site .premium-map-sidebar {
  padding: 18px;
}

.template-site .premium-map-sidebar h2 {
  display: none;
}

.template-site .map-filter-pills {
  display: none;
}

.template-site .map-list {
  max-height: 310px;
  overflow: auto;
}

.template-site .map-list-item {
  grid-template-columns: 82px 1fr;
  border-radius: 2px;
}

.template-site .map-list-item img {
  width: 82px;
  height: 68px;
}

.template-site .premium-map {
  min-height: 410px;
}

.template-site .map-selected-panel {
  top: 50%;
  right: 36px;
  transform: translateY(-50%);
  width: min(330px, calc(100% - 72px));
  border-radius: 2px;
  background: rgba(255, 255, 255, .96);
  color: #0e211d;
}

.template-site .map-selected-panel small,
.template-site .map-selected-panel span,
.template-site .map-selected-panel b {
  color: #0e211d;
}

.template-site .map-selected-panel .ghost.light {
  color: #0e211d;
  border-color: #b9c1bb;
}

.template-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.template-section-head h2 {
  margin: 0;
  text-align: left;
}

.template-property-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.template-property-card {
  border: 1px solid #dfd9cf;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.template-property-media {
  position: relative;
  display: block;
  min-height: 180px;
  background-size: cover;
  background-position: center;
}

.template-property-media span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: #d9a94d;
  color: #10231f;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 950;
}

.template-property-card > div {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.template-property-card h3 {
  margin: 0;
  font-size: 15px;
}

.template-property-card p {
  margin: 0;
  color: #60706b;
  font-size: 12px;
}

.template-property-card strong {
  color: #002b25;
}

.template-card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #5b6864;
  font-size: 12px;
}

.template-invest-band {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.4fr);
  gap: 32px;
  align-items: center;
  padding: 38px max(22px, calc((100vw - var(--template-max)) / 2));
  background:
    linear-gradient(90deg, rgba(0, 37, 32, .96), rgba(0, 37, 32, .9)),
    url("assets/imagenes/venta/riviera/cancun/solymar/principal.webp") center / cover;
  color: #fff;
}

.template-invest-band h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

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

.template-invest-metrics article {
  border-left: 1px solid rgba(255, 255, 255, .18);
  padding-left: 18px;
}

.template-invest-metrics strong,
.template-invest-metrics span {
  display: block;
}

.template-invest-metrics strong {
  color: #e0b15c;
  font-size: 24px;
}

.template-advisor {
  width: min(var(--template-max), calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(320px, .95fr) minmax(250px, .65fr);
  gap: 36px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid #e4ded4;
}

.template-advisor > img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center top;
}

.template-advisor h2 {
  margin: 4px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.template-cert-buttons {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.template-cert-buttons button {
  border: 1px solid #002b25;
  background: #002b25;
  color: #fff;
  padding: 10px 14px;
  font-weight: 950;
}

.template-advisor aside {
  display: grid;
  gap: 6px;
  border-left: 1px solid #ddd6ca;
  padding-left: 28px;
}

.template-advisor aside strong {
  color: #002b25;
  font-size: 20px;
}

.template-advisor aside span {
  margin-bottom: 10px;
  color: #69736e;
}

.template-process-line {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

.template-process-line article {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.template-process-line i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #bd9040;
  border-radius: 50%;
  color: #bd9040;
  font-style: normal;
  font-weight: 950;
}

.template-process-line strong {
  font-size: 13px;
}

.template-process-line span {
  color: #66716d;
  font-size: 12px;
}

.template-why {
  padding-top: 22px;
}

.template-why > div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.template-why article {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.template-why i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #0d2c27;
  border-radius: 50%;
  color: #0d2c27;
  font-style: normal;
}

.template-why strong {
  font-size: 13px;
}

.template-why span {
  color: #66716d;
  font-size: 12px;
}

.template-advice {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(360px, .9fr) minmax(260px, .8fr);
  gap: 28px;
  align-items: center;
  padding: 38px max(22px, calc((100vw - var(--template-max)) / 2));
  background: #002b25;
  color: #fff;
}

.template-advice h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.template-advice ul {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.template-phone {
  color: #e0b15c;
  font-size: 20px;
  font-weight: 950;
  text-decoration: none;
}

.template-advice .template-lead-form {
  box-shadow: none;
}

.template-advice figure {
  min-height: 280px;
  margin: 0;
  background-color: #d8c59b;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.template-faq > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 40px;
}

.template-faq details {
  border: 1px solid #ded8cf;
  background: #fff;
}

.template-faq summary {
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 900;
}

.template-faq p {
  margin: 0;
  padding: 0 18px 16px;
  color: #65716d;
}

.template-site .commercial-footer {
  margin-top: 0;
}

/* Full-screen commercial story sections with parallax */
.template-site {
  --template-max: min(1440px, calc(100vw - clamp(32px, 7vw, 120px)));
  --template-gold: #c89135;
  --template-green: #002b25;
  overflow-x: clip;
  background: #f8f5ee;
}

.template-site .template-top-strip {
  padding: 9px max(24px, calc((100vw - var(--template-max)) / 2));
  background: #001f1a;
}

.template-site .template-nav {
  z-index: 80;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - var(--template-max)) / 2));
  border-bottom: 1px solid rgba(0, 43, 37, .1);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
}

.template-site .commercial-brand {
  gap: 14px;
}

.template-site .commercial-brand img {
  width: 142px;
  height: 56px;
}

.template-site .commercial-header nav {
  gap: clamp(12px, 1.7vw, 28px);
}

.template-site .commercial-header nav a:not(.btn) {
  color: #071a17;
  font-size: 13px;
  letter-spacing: 0;
}

.template-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.template-site .template-hero,
.template-site .template-help,
.template-site .template-map-section,
.template-site .template-featured,
.template-site .template-invest-band,
.template-site .template-advisor,
.template-site .template-process,
.template-site .template-advice,
.template-site .commercial-footer {
  width: 100%;
  min-height: 100svh;
}

.template-site .template-hero {
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding: clamp(56px, 8vh, 94px) 0 clamp(32px, 5vh, 64px);
  background-position: center;
}

.template-hero .premium-hero-inner {
  width: var(--template-max);
  grid-template-columns: minmax(320px, 620px) 1fr;
  padding: 0;
}

.template-hero .premium-hero-copy {
  min-height: 380px;
}

.template-hero .premium-hero-copy::before {
  content: "Inmobiliaria premium";
  color: var(--template-gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.template-hero .premium-hero-copy h1 {
  max-width: 620px;
  color: #fff;
  font-size: clamp(54px, 6vw, 92px);
  line-height: .98;
}

.template-hero .premium-hero-copy p {
  max-width: 520px;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.45;
}

.template-hero .template-search-panel {
  width: var(--template-max);
  margin: clamp(28px, 5vh, 58px) auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(220px, .85fr);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .26);
}

.template-hero .template-search-panel .commercial-filter:nth-child(3) {
  grid-column: auto;
}

.template-hero .template-search-panel .btn {
  min-height: 52px;
}

.template-hero > .template-stat-row {
  width: var(--template-max);
  margin: clamp(18px, 3vh, 28px) auto 0;
  padding: 18px 24px;
  border: 1px solid rgba(200, 145, 53, .42);
  border-radius: 14px;
  background: rgba(0, 43, 37, .9);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .22);
}

.template-hero > .template-stat-row strong {
  color: var(--template-gold);
  font-size: clamp(20px, 2vw, 32px);
}

.template-hero > .template-stat-row span {
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
}

.template-site .template-section {
  width: 100%;
  margin: 0;
  padding: clamp(52px, 7vh, 88px) max(24px, calc((100vw - var(--template-max)) / 2));
}

.template-section-title {
  width: min(920px, 100%);
  margin: 0 auto clamp(34px, 5vh, 64px);
  text-align: center;
}

.template-section-title p,
.template-section-head p,
.template-invest-copy p,
.template-choice-panel > p,
.template-private-panel > p {
  margin: 0 0 10px;
  color: var(--template-gold);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.template-section-title h2,
.template-section-head h2,
.template-choice-panel h2,
.template-private-panel h2 {
  margin: 0;
  color: #081d19;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.03;
}

.template-section-title span,
.template-section-head span,
.template-invest-copy span,
.template-choice-panel > span,
.template-private-panel > span {
  display: block;
  margin-top: 16px;
  color: #33403c;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.55;
}

.template-section-title.split {
  width: var(--template-max);
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(460px, 1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  margin-bottom: 34px;
  text-align: left;
}

.template-section-title.split h2 {
  font-size: clamp(36px, 4vw, 62px);
}

.template-help {
  display: grid;
  align-content: center;
  background:
    linear-gradient(90deg, rgba(248, 245, 238, .92), rgba(248, 245, 238, .76)),
    url("assets/imagenes/venta/riviera/cancun/amara/c601/2.webp") center / cover fixed;
}

.template-help-grid {
  width: var(--template-max);
  margin: 0 auto;
  grid-template-columns: minmax(300px, 430px) minmax(520px, 720px);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

.template-intent-stack {
  gap: 20px;
}

.template-intent-stack button {
  min-height: 104px;
  border: 1px solid rgba(0, 43, 37, .15);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .08);
  padding: 22px 26px;
}

.template-intent-stack button.active {
  border-color: var(--template-gold);
  background: var(--template-green);
  box-shadow: 0 18px 50px rgba(0, 43, 37, .24);
}

.template-intent-stack span {
  font-size: 17px;
}

.template-help-form-panel {
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(0, 43, 37, .12);
  border-radius: 9px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .15);
}

.template-help-form-heading {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.template-help-form-heading i {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e4b766, #b87b24);
  color: #fff;
  font-size: 46px;
  font-style: normal;
}

.template-help-form-heading h3 {
  margin: 0;
  color: #081d19;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
}

.template-help-form-heading p {
  margin: 10px 0 0;
  color: #4d5a56;
  font-size: 17px;
}

.template-help-form-panel .template-lead-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.template-help-form-panel .template-lead-form h3 {
  display: none;
}

.template-form-grid {
  gap: 14px;
}

.template-form-grid input,
.template-form-grid select,
.template-form-grid textarea,
.template-search-panel select {
  border-radius: 5px;
}

.template-form-grid input,
.template-form-grid select {
  min-height: 56px;
}

.template-form-grid textarea {
  min-height: 110px;
}

.template-map-section {
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 25% 10%, rgba(200, 145, 53, .12), transparent 34%),
    linear-gradient(180deg, #fbf8f1 0%, #f5f0e7 100%);
  background-attachment: fixed;
}

.template-map-section .template-stat-row {
  margin: 0;
  align-self: center;
}

.template-map-section .template-stat-row div {
  min-height: 96px;
  display: grid;
  align-content: center;
  border-left: 1px solid #dfd5c5;
}

.template-map-section .template-stat-row div:first-child {
  border-left: 0;
}

.template-map-section .template-stat-row strong {
  font-size: clamp(24px, 2.4vw, 38px);
}

.template-site .premium-map-shell {
  width: var(--template-max);
  margin: 0 auto;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  min-height: min(58vh, 620px);
  max-height: 640px;
  overflow: hidden;
  border-radius: 9px;
  border: 1px solid #d8cbb7;
  background: #fff;
  box-shadow: 0 22px 65px rgba(0, 0, 0, .14);
}

.template-site .premium-map-sidebar {
  padding: 28px;
  background: #fff;
}

.template-site .premium-map {
  min-height: min(58vh, 620px);
}

.template-site .map-list {
  max-height: min(38vh, 430px);
  padding-right: 8px;
}

.template-site .map-list-item {
  grid-template-columns: 110px 1fr;
  padding: 10px;
}

.template-site .map-list-item img {
  width: 110px;
  height: 82px;
}

.template-site .map-selected-panel {
  right: clamp(20px, 4vw, 70px);
  width: min(440px, calc(100% - 80px));
  padding: 20px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .2);
}

.template-featured {
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 10% 8%, rgba(200, 145, 53, .12), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(0, 43, 37, .08), transparent 24%),
    #fbf8f1;
  background-attachment: fixed, fixed, scroll;
}

.template-section-head {
  width: var(--template-max);
  margin: 0 auto clamp(30px, 4vh, 52px);
}

.template-section-head h2 {
  font-size: clamp(38px, 4.8vw, 68px);
}

.template-property-grid {
  width: var(--template-max);
  margin: 0 auto;
  gap: clamp(20px, 2.3vw, 36px);
}

.template-property-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
}

.template-property-media {
  min-height: clamp(210px, 28vh, 330px);
}

.template-property-card > div {
  padding: clamp(18px, 2vw, 28px);
}

.template-property-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.8vw, 29px);
}

.template-property-card strong {
  font-size: 18px;
}

.template-featured-rail {
  width: var(--template-max);
  margin: clamp(34px, 5vh, 70px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid #e4d8c8;
  padding-top: 28px;
}

.template-featured-rail article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 6px 24px;
  border-right: 1px solid #e4d8c8;
}

.template-featured-rail article:last-child {
  border-right: 0;
}

.template-featured-rail i {
  color: var(--template-gold);
  font-size: 36px;
  font-style: normal;
}

.template-featured-rail strong,
.template-featured-rail span {
  display: block;
}

.template-featured-rail span {
  color: #5f6b66;
}

.template-invest-band {
  min-height: 100svh;
  grid-template-columns: 1fr;
  align-content: center;
  padding: clamp(64px, 8vh, 110px) max(24px, calc((100vw - var(--template-max)) / 2));
  background:
    linear-gradient(90deg, rgba(0, 27, 34, .9) 0%, rgba(0, 43, 37, .6) 48%, rgba(0, 43, 37, .16) 100%),
    url("assets/imagenes/hero/11.webp") center / cover fixed;
}

.template-invest-copy {
  width: min(720px, 100%);
}

.template-invest-copy h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6vw, 94px);
  line-height: .96;
}

.template-invest-copy h2::first-line {
  color: #fff;
}

.template-invest-copy span {
  color: #fff;
}

.template-invest-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(42px, 6vh, 76px);
}

.template-invest-metrics article {
  min-height: clamp(250px, 32vh, 360px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  border: 1px solid rgba(200, 145, 53, .7);
  border-radius: 12px;
  background: rgba(0, 43, 37, .72);
  padding: 26px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.template-invest-metrics i {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8bf70, #bd8127);
  color: #fff;
  font-size: 38px;
  font-style: normal;
}

.template-invest-metrics strong {
  color: #e8bf70;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.02;
}

.template-invest-metrics span {
  color: #fff;
  font-size: 16px;
  line-height: 1.45;
}

.template-invest-claim {
  width: min(900px, 100%);
  margin: clamp(30px, 4vh, 52px) auto 0;
  border: 1px solid rgba(200, 145, 53, .72);
  border-radius: 12px;
  background: rgba(0, 43, 37, .7);
  padding: 22px 34px;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  text-align: center;
}

.template-advisor {
  width: 100%;
  grid-template-columns: minmax(320px, .8fr) minmax(420px, 1fr) minmax(280px, .7fr);
  align-content: center;
  gap: clamp(32px, 4vw, 70px);
  padding: clamp(56px, 7vh, 90px) max(24px, calc((100vw - var(--template-max)) / 2));
  border-bottom: 0;
  background:
    radial-gradient(circle at 28% 12%, rgba(200, 145, 53, .12), transparent 28%),
    linear-gradient(180deg, #fffaf2, #f7f2e9);
  background-attachment: fixed, scroll;
}

.template-advisor > img {
  height: min(62vh, 660px);
  min-height: 420px;
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .12);
}

.template-advisor h2 {
  font-size: clamp(54px, 6vw, 88px);
  line-height: .98;
}

.template-advisor > div:not(.template-advisor-rail) > p {
  max-width: 720px;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.55;
}

.template-cert-buttons button {
  min-height: 76px;
  min-width: 150px;
  border-radius: 8px;
}

.template-advisor aside {
  gap: 14px;
}

.template-advisor aside strong {
  font-size: clamp(24px, 2vw, 34px);
}

.template-advisor-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(26px, 4vh, 48px);
  border-radius: 8px;
  background: rgba(0, 43, 37, .96);
  color: #fff;
  overflow: hidden;
}

.template-advisor-rail article {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: clamp(22px, 2.6vw, 36px);
  border-right: 1px solid rgba(255, 255, 255, .18);
  text-align: center;
}

.template-advisor-rail article:last-child {
  border-right: 0;
}

.template-advisor-rail i {
  color: var(--template-gold);
  font-size: 42px;
  font-style: normal;
}

.template-advisor-rail span {
  color: rgba(255, 255, 255, .82);
}

.template-process {
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(200, 145, 53, .08), transparent 30%),
    #fbf8f1;
  background-attachment: fixed;
}

.template-process .template-process-line {
  width: var(--template-max);
  margin: 0 auto;
  gap: 0;
}

.template-process-line article {
  position: relative;
  padding: 0 16px;
}

.template-process-line article::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 0;
  width: 100%;
  border-top: 1px dashed rgba(200, 145, 53, .65);
  z-index: 0;
}

.template-process-line i {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 86px;
  background: #fbf8f1;
  color: #062a24;
  font-size: 17px;
}

.template-process-line strong {
  margin-top: 12px;
  color: #071d19;
  font-size: clamp(16px, 1.45vw, 23px);
}

.template-process-line span {
  max-width: 210px;
  font-size: 14px;
  line-height: 1.55;
}

.template-faq-panel {
  width: var(--template-max);
  margin: clamp(54px, 7vh, 84px) auto 0;
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .06);
  padding: clamp(28px, 4vw, 56px);
}

.template-faq-panel h3 {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 48px);
}

.template-faq-panel p {
  color: var(--template-gold);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.template-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.template-faq-list details {
  border: 1px solid #e6ddd1;
  border-radius: 6px;
  background: #fff;
}

.template-faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #121d1a;
  font-weight: 950;
}

.template-faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: #56635f;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.template-advice {
  min-height: 100svh;
  grid-template-columns: minmax(420px, .95fr) minmax(520px, .85fr);
  gap: clamp(48px, 6vw, 92px);
  padding: clamp(62px, 8vh, 104px) max(24px, calc((100vw - var(--template-max)) / 2));
  background:
    linear-gradient(90deg, rgba(0, 18, 16, .94) 0%, rgba(0, 33, 29, .86) 48%, rgba(0, 33, 29, .42) 100%),
    url("assets/imagenes/venta/riviera/playa/corasol/E228/principal.webp") center / cover fixed;
}

.template-choice-panel h2,
.template-private-panel h2 {
  color: #fff;
}

.template-choice-panel > span,
.template-private-panel > span {
  color: rgba(255, 255, 255, .88);
}

.template-choice-grid {
  margin-top: clamp(34px, 5vh, 62px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.template-choice-grid article {
  min-height: 190px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(0, 20, 18, .46);
  padding: 22px;
  text-align: center;
}

.template-choice-grid i {
  color: var(--template-gold);
  font-size: 42px;
  font-style: normal;
}

.template-choice-grid span {
  color: rgba(255, 255, 255, .78);
  line-height: 1.45;
}

.template-private-panel {
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  color: #0a1d19;
  padding: clamp(28px, 4vw, 56px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.template-private-panel h2 {
  color: #071d19;
  font-size: clamp(44px, 4.7vw, 70px);
}

.template-private-panel > span {
  color: #34423d;
}

.template-private-panel .template-lead-form {
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.template-private-panel .template-lead-form h3 {
  display: none;
}

.template-contact-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.template-contact-mini a {
  border: 1px solid #e2d6c7;
  border-radius: 7px;
  padding: 14px 10px;
  color: #0c211d;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.template-site .commercial-footer {
  display: grid;
  align-content: center;
  padding: clamp(56px, 7vh, 96px) max(24px, calc((100vw - var(--template-max)) / 2)) 0;
  border-top: 2px solid var(--template-gold);
  background:
    radial-gradient(circle at 85% 18%, rgba(200, 145, 53, .12), transparent 28%),
    linear-gradient(135deg, #001f1a, #002f29 55%, #001f1a);
  background-attachment: fixed, fixed;
  color: #fff;
}

.template-site .commercial-footer .footer-main {
  width: var(--template-max);
  margin: 0 auto;
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(220px, .85fr));
  gap: clamp(32px, 5vw, 76px);
}

.template-site .commercial-footer .commercial-brand {
  display: grid;
  justify-items: start;
}

.template-site .commercial-footer .commercial-brand img {
  width: 230px;
  height: 130px;
  object-fit: contain;
}

.template-site .commercial-footer .footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.65;
}

.template-site .commercial-footer h3 {
  color: #fff;
  font-size: 23px;
}

.template-site .commercial-footer a {
  color: rgba(255, 255, 255, .88);
  font-size: 17px;
}

.template-site .commercial-footer .footer-bottom {
  width: calc(100% + max(48px, calc((100vw - var(--template-max)) / 2) * 2));
  margin: clamp(44px, 6vh, 84px) calc(max(24px, calc((100vw - var(--template-max)) / 2)) * -1) 0;
  padding: 34px max(24px, calc((100vw - var(--template-max)) / 2));
  border-top: 1px solid rgba(200, 145, 53, .38);
  color: rgba(255, 255, 255, .82);
}

@media (max-width: 1120px) {
  .template-site .template-nav,
  .template-top-strip {
    padding-right: 18px;
    padding-left: 18px;
  }

  .template-site .commercial-header nav {
    gap: 10px;
  }

  .template-search-panel,
  .template-help-grid,
  .template-site .premium-map-shell,
  .template-invest-band,
  .template-advisor,
  .template-advice {
    grid-template-columns: 1fr;
  }

  .template-property-grid,
  .template-invest-metrics,
  .template-why > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .template-process-line {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .template-top-strip {
    display: none;
  }

  .template-site .commercial-header nav {
    display: none;
  }

  .template-hero .premium-hero-inner {
    width: min(100% - 28px, var(--template-max));
    grid-template-columns: 1fr;
    padding: 54px 0 72px;
  }

  .template-search-panel,
  .template-property-grid,
  .template-stat-row,
  .template-faq > div,
  .template-process-line,
  .template-why > div {
    grid-template-columns: 1fr;
  }

  .template-section,
  .template-search-panel,
  .template-advisor {
    width: min(100% - 28px, var(--template-max));
  }

  .template-help-grid {
    gap: 22px;
  }

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

  .template-site .map-selected-panel {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    transform: none;
    width: auto;
  }

  .template-advice {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 1180px) {
  .template-site {
    --template-max: calc(100vw - 36px);
  }

  .template-site .commercial-header nav {
    gap: 10px;
  }

  .template-site .commercial-brand img {
    width: 118px;
  }

  .template-hero .template-search-panel,
  .template-section-title.split,
  .template-site .premium-map-shell,
  .template-property-grid,
  .template-featured-rail,
  .template-process .template-process-line,
  .template-faq-panel {
    width: var(--template-max);
  }

  .template-hero .template-search-panel,
  .template-help-grid,
  .template-section-title.split,
  .template-site .premium-map-shell,
  .template-advisor,
  .template-advice,
  .template-faq-panel {
    grid-template-columns: 1fr;
  }

  .template-invest-metrics,
  .template-advisor-rail,
  .template-featured-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .template-site .premium-map-shell,
  .template-site .premium-map,
  .template-site .map-list {
    max-height: none;
  }
}

@media (max-width: 760px) {
  .template-parallax,
  .template-help,
  .template-map-section,
  .template-invest-band,
  .template-process,
  .template-advice,
  .template-site .commercial-footer {
    background-attachment: scroll;
  }

  .template-site .template-hero,
  .template-site .template-help,
  .template-site .template-map-section,
  .template-site .template-featured,
  .template-site .template-invest-band,
  .template-site .template-advisor,
  .template-site .template-process,
  .template-site .template-advice,
  .template-site .commercial-footer {
    min-height: 100svh;
  }

  .template-hero .premium-hero-copy {
    min-height: auto;
  }

  .template-hero .premium-hero-copy h1,
  .template-section-title h2,
  .template-section-head h2,
  .template-invest-copy h2,
  .template-advisor h2,
  .template-choice-panel h2,
  .template-private-panel h2 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .template-hero .template-search-panel {
    grid-template-columns: 1fr;
  }

  .template-help-grid {
    width: var(--template-max);
  }

  .template-help-form-heading {
    grid-template-columns: 1fr;
  }

  .template-stat-row,
  .template-invest-metrics,
  .template-property-grid,
  .template-featured-rail,
  .template-advisor-rail,
  .template-faq-list,
  .template-choice-grid,
  .template-contact-mini,
  .template-site .commercial-footer .footer-main {
    grid-template-columns: 1fr;
  }

  .template-site .premium-map-sidebar {
    padding: 18px;
  }

  .template-site .premium-map {
    min-height: 470px;
  }

  .template-site .map-selected-panel {
    width: auto;
  }

  .template-process-line article::before {
    display: none;
  }

  .template-process-line i {
    width: 68px;
    height: 68px;
  }

  .template-private-panel {
    padding: 24px 18px;
  }

  .template-site .commercial-footer .footer-bottom {
    width: auto;
    margin-right: -18px;
    margin-left: -18px;
    padding-right: 18px;
    padding-left: 18px;
  }
}

/* Viewport-locked commercial sections */
html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.template-site::-webkit-scrollbar,
.template-site *::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.template-site,
.template-site * {
  scrollbar-width: none;
}

.template-site .template-hero,
.template-site .template-help,
.template-site .template-map-section,
.template-site .template-featured,
.template-site .template-invest-band,
.template-site .template-advisor,
.template-site .template-process,
.template-site .template-advice,
.template-site .commercial-footer {
  box-sizing: border-box;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  overflow: hidden auto;
}

.template-site .template-section,
.template-site .template-invest-band,
.template-site .template-advisor,
.template-site .template-advice,
.template-site .commercial-footer {
  padding-top: clamp(20px, 3.6vh, 44px);
  padding-bottom: clamp(20px, 3.6vh, 44px);
}

.template-site .template-hero {
  padding-top: clamp(20px, 4vh, 48px);
  padding-bottom: clamp(18px, 3vh, 34px);
}

.template-hero .premium-hero-copy {
  min-height: 0;
  gap: 12px;
}

.template-hero .premium-hero-copy h1 {
  font-size: clamp(44px, 5.2vw, 76px);
}

.template-hero .premium-hero-copy p {
  font-size: clamp(16px, 1.45vw, 21px);
}

.template-hero .template-search-panel {
  margin-top: clamp(18px, 3vh, 32px);
  padding: 12px;
}

.template-hero > .template-stat-row {
  margin-top: clamp(12px, 2vh, 20px);
  padding: 12px 18px;
}

.template-section-title {
  margin-bottom: clamp(18px, 3vh, 34px);
}

.template-section-title h2,
.template-section-head h2,
.template-choice-panel h2,
.template-private-panel h2 {
  font-size: clamp(34px, 4.1vw, 58px);
}

.template-section-title span,
.template-section-head span,
.template-invest-copy span,
.template-choice-panel > span,
.template-private-panel > span {
  margin-top: 10px;
  font-size: clamp(14px, 1.1vw, 18px);
}

.template-help-grid {
  gap: clamp(22px, 4vw, 58px);
}

.template-intent-stack {
  gap: 12px;
}

.template-intent-stack button {
  min-height: 74px;
  padding: 14px 20px;
}

.template-help-form-panel {
  padding: clamp(18px, 2.2vw, 30px);
}

.template-help-form-heading {
  grid-template-columns: 70px 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.template-help-form-heading i {
  width: 68px;
  height: 68px;
  font-size: 34px;
}

.template-help-form-heading h3 {
  font-size: clamp(24px, 2.4vw, 36px);
}

.template-form-grid {
  gap: 10px;
}

.template-form-grid input,
.template-form-grid select {
  min-height: 44px;
}

.template-form-grid textarea {
  min-height: 78px;
}

.template-map-section {
  display: grid;
  grid-template-rows: minmax(118px, 20%) minmax(0, 80%);
  gap: 0;
  align-content: stretch;
}

.template-map-section .template-section-title.split {
  width: var(--template-max);
  height: 100%;
  margin: 0 auto;
  align-content: center;
  overflow: hidden;
}

.template-map-section .template-section-title.split h2 {
  font-size: clamp(26px, 3.1vw, 46px);
}

.template-map-section .template-section-title.split span {
  font-size: clamp(12px, 1vw, 15px);
}

.template-map-section .template-stat-row {
  gap: 8px;
}

.template-map-section .template-stat-row div {
  min-height: 56px;
}

.template-map-section .template-stat-row strong {
  font-size: clamp(18px, 2vw, 28px);
}

.template-map-section .template-stat-row span {
  font-size: 11px;
}

.template-site .premium-map-shell {
  height: 100%;
  min-height: 0;
  max-height: none;
}

.template-site .premium-map,
.template-site .google-map-frame {
  height: 100%;
  min-height: 0;
}

.template-site .premium-map-sidebar {
  overflow: hidden auto;
}

.template-site .map-list {
  max-height: calc(100% - 88px);
  overflow: hidden auto;
}

.template-site .map-list-item {
  grid-template-columns: 92px 1fr;
}

.template-site .map-list-item img {
  width: 92px;
  height: 68px;
}

.template-section-head {
  margin-bottom: clamp(18px, 3vh, 32px);
}

.template-property-media {
  min-height: clamp(150px, 22vh, 240px);
}

.template-property-card > div {
  padding: clamp(12px, 1.5vw, 20px);
}

.template-property-card h3 {
  font-size: clamp(17px, 1.45vw, 23px);
}

.template-featured-rail {
  margin-top: clamp(18px, 3vh, 34px);
  padding-top: 18px;
}

.template-featured-rail article {
  padding: 4px 16px;
}

.template-invest-copy h2,
.template-advisor h2 {
  font-size: clamp(42px, 5vw, 72px);
}

.template-invest-metrics {
  margin-top: clamp(22px, 4vh, 44px);
}

.template-invest-metrics article {
  min-height: clamp(170px, 24vh, 240px);
  padding: 18px;
}

.template-invest-metrics i {
  width: 62px;
  height: 62px;
  font-size: 28px;
}

.template-invest-metrics strong {
  font-size: clamp(24px, 2.4vw, 38px);
}

.template-invest-metrics span {
  font-size: 13px;
}

.template-invest-claim {
  margin-top: clamp(18px, 3vh, 32px);
  padding: 14px 22px;
  font-size: clamp(17px, 1.6vw, 24px);
}

.template-advisor {
  gap: clamp(18px, 3vw, 42px);
}

.template-advisor > img {
  height: clamp(280px, 47vh, 460px);
  min-height: 0;
}

.template-advisor > div:not(.template-advisor-rail) > p {
  font-size: clamp(15px, 1.15vw, 18px);
}

.template-cert-buttons button {
  min-height: 54px;
}

.template-advisor-rail {
  margin-top: clamp(14px, 2vh, 24px);
}

.template-advisor-rail article {
  padding: clamp(14px, 1.7vw, 22px);
}

.template-advisor-rail i {
  font-size: 30px;
}

.template-process .template-process-line {
  align-items: start;
}

.template-process-line i {
  width: 66px;
  height: 66px;
}

.template-process-line strong {
  font-size: clamp(14px, 1.2vw, 18px);
}

.template-process-line span {
  font-size: 12px;
}

.template-faq-panel {
  margin-top: clamp(22px, 4vh, 42px);
  padding: clamp(18px, 2.6vw, 34px);
  gap: clamp(18px, 3vw, 42px);
}

.template-faq-panel h3 {
  font-size: clamp(25px, 2.7vw, 38px);
}

.template-faq-list {
  gap: 10px 16px;
}

.template-faq-list summary {
  padding: 12px 16px;
  font-size: 13px;
}

.template-faq-list p {
  padding: 0 16px 12px;
  font-size: 12px;
}

.template-advice {
  gap: clamp(24px, 4vw, 56px);
}

.template-choice-grid {
  margin-top: clamp(20px, 3vh, 34px);
  gap: 12px;
}

.template-choice-grid article {
  min-height: 136px;
  padding: 16px;
}

.template-choice-grid i {
  font-size: 30px;
}

.template-private-panel {
  padding: clamp(20px, 2.7vw, 36px);
}

.template-private-panel .template-lead-form {
  margin-top: 16px;
}

.template-contact-mini {
  margin-top: 14px;
}

.template-site .commercial-footer .footer-main {
  gap: clamp(22px, 4vw, 52px);
}

.template-site .commercial-footer .commercial-brand img {
  width: 190px;
  height: 96px;
}

.template-site .commercial-footer .footer-brand p,
.template-site .commercial-footer a {
  font-size: 14px;
}

.template-site .commercial-footer .footer-bottom {
  margin-top: clamp(22px, 4vh, 46px);
  padding-top: 22px;
  padding-bottom: 22px;
}

@media (max-width: 1180px) {
  .template-site .template-hero,
  .template-site .template-help,
  .template-site .template-map-section,
  .template-site .template-featured,
  .template-site .template-invest-band,
  .template-site .template-advisor,
  .template-site .template-process,
  .template-site .template-advice,
  .template-site .commercial-footer {
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
  }

  .template-map-section {
    grid-template-rows: minmax(116px, 20%) minmax(0, 80%);
  }

  .template-site .premium-map-shell {
    height: 100%;
  }

  .template-invest-metrics article,
  .template-choice-grid article {
    min-height: 128px;
  }
}

@media (max-width: 760px) {
  .template-site .template-hero,
  .template-site .template-help,
  .template-site .template-map-section,
  .template-site .template-featured,
  .template-site .template-invest-band,
  .template-site .template-advisor,
  .template-site .template-process,
  .template-site .template-advice,
  .template-site .commercial-footer {
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
    overflow: hidden auto;
  }

  .template-site .template-section,
  .template-site .template-invest-band,
  .template-site .template-advisor,
  .template-site .template-advice,
  .template-site .commercial-footer {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .template-map-section {
    grid-template-rows: minmax(132px, 20%) minmax(0, 80%);
  }

  .template-site .premium-map-shell,
  .template-site .premium-map,
  .template-site .google-map-frame {
    height: 100%;
    min-height: 0;
  }

  .template-site .premium-map-shell {
    overflow: hidden;
  }

  .template-site .premium-map-sidebar {
    max-height: 34%;
  }

  .template-site .premium-map {
    min-height: 0;
  }
}

/* Transparent auto-hiding commercial navigation and full-width map */
.template-site .template-top-strip,
.template-site .template-nav {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 120;
  transition: transform .32s ease, background-color .24s ease, box-shadow .24s ease;
}

.template-site .template-top-strip {
  top: 0;
  min-height: 32px;
  padding-top: 7px;
  padding-bottom: 7px;
  background: rgba(0, 31, 26, .42);
  color: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
}

.template-site .template-top-strip a {
  color: rgba(255, 255, 255, .92);
}

.template-site .template-nav {
  top: 32px;
  min-height: 74px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  background: rgba(0, 31, 26, .18);
  box-shadow: none;
  color: #fff;
  backdrop-filter: blur(18px);
}

body.commercial-nav-scrolled .template-site .template-nav {
  background: rgba(0, 31, 26, .62);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

body.commercial-nav-hidden .template-site .template-top-strip {
  transform: translateY(-120%);
}

body.commercial-nav-hidden .template-site .template-nav {
  transform: translateY(calc(-100% - 36px));
}

.template-site .commercial-header nav a:not(.btn),
.template-site .commercial-brand span {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .34);
}

.template-site .commercial-header .btn.gold {
  border-color: rgba(200, 145, 53, .92);
  background: rgba(200, 145, 53, .1);
  color: #fff;
}

.template-site .template-map-section {
  padding-right: 0;
  padding-left: 0;
  grid-template-rows: 20dvh 80dvh;
  overflow: hidden;
}

.template-map-section .template-section-title.split {
  width: min(var(--template-max), calc(100vw - 48px));
  max-height: 20dvh;
  padding: clamp(10px, 1.6vh, 18px) 0;
  grid-template-columns: minmax(360px, .8fr) minmax(460px, 1fr);
  gap: clamp(18px, 3vw, 44px);
}

.template-map-section .template-section-title.split > div {
  min-width: 0;
}

.template-map-section .template-section-title.split p {
  margin-bottom: 4px;
  font-size: clamp(10px, .82vw, 13px);
}

.template-map-section .template-section-title.split h2 {
  font-size: clamp(24px, 2.55vw, 40px);
  line-height: 1;
}

.template-map-section .template-section-title.split span {
  margin-top: 6px;
  font-size: clamp(12px, .92vw, 14px);
  line-height: 1.35;
}

.template-map-section .template-section-title.split .template-stat-row {
  align-self: center;
}

.template-map-section .template-stat-row {
  gap: 0;
}

.template-map-section .template-stat-row div {
  min-height: 52px;
  padding: 0 10px;
}

.template-map-section .template-stat-row strong {
  font-size: clamp(17px, 1.7vw, 25px);
}

.template-map-section .template-stat-row span {
  font-size: 10px;
  line-height: 1.25;
}

.template-site .premium-map-shell {
  position: relative;
  width: 100vw;
  max-width: none;
  height: 80dvh;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
}

.template-site .premium-map {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
}

.template-site .premium-map-sidebar {
  position: absolute;
  z-index: 7;
  top: clamp(12px, 2vh, 24px);
  bottom: clamp(12px, 2vh, 24px);
  left: clamp(14px, 3.5vw, 58px);
  width: min(380px, 31vw);
  max-height: none;
  border: 1px solid rgba(0, 43, 37, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}

.template-site .map-list {
  max-height: calc(100% - 92px);
}

.template-site .map-selected-panel {
  z-index: 8;
}

@media (max-width: 1180px) {
  .template-site .template-map-section {
    grid-template-rows: 20dvh 80dvh;
  }

  .template-map-section .template-section-title.split {
    width: calc(100vw - 32px);
    grid-template-columns: minmax(0, 1fr) minmax(340px, .95fr);
    gap: 16px;
  }

  .template-site .premium-map-shell {
    width: 100vw;
    height: 80dvh;
  }

  .template-site .premium-map-sidebar {
    width: min(340px, 42vw);
  }
}

@media (max-width: 760px) {
  .template-site .template-top-strip {
    display: none;
  }

  .template-site .template-nav {
    top: 0;
    min-height: 64px;
    background: rgba(0, 31, 26, .5);
  }

  body.commercial-nav-hidden .template-site .template-nav {
    transform: translateY(-110%);
  }

  .template-map-section .template-section-title.split {
    width: calc(100vw - 24px);
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 8px 0;
  }

  .template-map-section .template-section-title.split h2 {
    font-size: clamp(20px, 6vw, 28px);
  }

  .template-map-section .template-section-title.split span {
    display: none;
  }

  .template-map-section .template-stat-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .template-map-section .template-stat-row div {
    min-height: 36px;
    padding: 0 4px;
  }

  .template-map-section .template-stat-row strong {
    font-size: 13px;
  }

  .template-map-section .template-stat-row span {
    font-size: 8px;
  }

  .template-site .premium-map-sidebar {
    top: 10px;
    right: 10px;
    bottom: auto;
    left: 10px;
    width: auto;
    max-height: 34%;
    padding: 12px;
  }

  .template-site .map-selected-panel {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }
}

/* HERO section 1 redesign */
.template-site .hero-section-one {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  align-content: stretch;
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  padding: clamp(104px, 14vh, 148px) max(24px, calc((100vw - var(--template-max)) / 2)) 0;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
}

.hero-section-one::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .44));
}

.hero-section-one .premium-hero-inner,
.hero-section-one .template-search-panel,
.hero-section-one > .template-stat-row {
  position: relative;
  z-index: 2;
}

.hero-section-one .premium-hero-inner {
  width: min(var(--template-max), 100%);
  display: grid;
  grid-template-columns: minmax(320px, 760px) 1fr;
  align-items: end;
  align-self: end;
  padding: 0 0 clamp(22px, 4.8vh, 58px);
}

.hero-section-one .premium-hero-copy {
  max-width: 780px;
  min-height: 0;
  gap: clamp(12px, 1.8vh, 20px);
  color: #071714;
  text-shadow: 0 1px 18px rgba(255, 255, 255, .54);
}

.hero-section-one .premium-hero-copy::before {
  content: "Inmobiliaria premium";
  width: max-content;
  display: inline-grid;
  grid-template-columns: auto 72px;
  gap: 18px;
  align-items: center;
  color: #23170a;
  font-size: clamp(12px, 1vw, 17px);
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-section-one .premium-hero-copy::after {
  display: none;
}

.hero-section-one .premium-hero-copy::before {
  border: 0;
}

.hero-section-one .premium-hero-copy h1 {
  max-width: 770px;
  margin: 0;
  color: #071714;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5.4vw, 84px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: 0;
  text-transform: none;
}

.hero-section-one .premium-hero-copy h1 span {
  color: #a87527;
  text-shadow: 0 1px 18px rgba(255, 255, 255, .4);
}

.hero-section-one .premium-hero-copy p {
  max-width: 640px;
  margin: 0;
  color: #0e1916;
  font-size: clamp(15px, 1.35vw, 21px);
  font-weight: 760;
  line-height: 1.55;
}

.template-hero-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #071714;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 950;
}

.template-hero-location::before {
  content: "⌖";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #071714;
  color: #fff;
  font-size: 13px;
}

.hero-section-one .hero-cta {
  min-height: 58px;
  width: max-content;
  display: inline-grid;
  grid-template-columns: auto 56px;
  gap: 0;
  align-items: center;
  padding: 0 0 0 30px;
  border: 1px solid rgba(200, 145, 53, .75);
  border-radius: 0;
  background: #002b25;
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.hero-section-one .hero-cta span {
  height: 100%;
  display: grid;
  place-items: center;
  margin-left: 22px;
  background: linear-gradient(135deg, #c89135, #9f681e);
  color: #fff;
  font-size: 30px;
}

.hero-section-one .template-search-panel {
  width: min(var(--template-max), 100%);
  min-height: 92px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(220px, .78fr);
  gap: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .26);
  backdrop-filter: blur(16px);
}

.hero-section-one .template-search-panel .commercial-filter {
  position: relative;
  min-height: 70px;
  display: grid;
  align-content: center;
  padding: 0 26px 0 82px;
  border-right: 1px solid rgba(0, 43, 37, .18);
}

.hero-section-one .template-search-panel .commercial-filter::before {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #002b25;
  color: #fff;
  font-size: 25px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15);
}

.hero-section-one .template-search-panel .commercial-filter:nth-child(1)::before {
  content: "⌖";
}

.hero-section-one .template-search-panel .commercial-filter:nth-child(2)::before {
  content: "▤";
  background: linear-gradient(135deg, #d9ad4c, #ab721f);
}

.hero-section-one .template-search-panel .commercial-filter:nth-child(3)::before {
  content: "⌂";
}

.hero-section-one .template-search-panel .commercial-filter span {
  display: block;
  margin: 0 0 3px;
  color: #5b4630;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-section-one .template-search-panel select {
  min-height: 28px;
  border: 0;
  background: transparent;
  color: #101715;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 950;
  padding: 0;
}

.hero-section-one .template-search-panel .btn {
  min-height: 70px;
  align-self: center;
  border-radius: 3px;
  background: #002b25;
  color: #fff;
  font-size: 14px;
  box-shadow: none;
}

.hero-section-one > .template-stat-row {
  width: calc(100vw + max(48px, calc((100vw - var(--template-max)) / 2) * 2));
  margin: clamp(16px, 2.6vh, 26px) calc(max(24px, calc((100vw - var(--template-max)) / 2)) * -1) 0;
  padding: clamp(14px, 2.5vh, 26px) max(24px, calc((100vw - var(--template-max)) / 2));
  border-width: 1px 0 0;
  border-color: rgba(255, 255, 255, .25);
  border-radius: 0;
  background: rgba(0, 0, 0, .38);
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.hero-section-one > .template-stat-row div {
  min-height: 56px;
  display: grid;
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, .32);
}

.hero-section-one > .template-stat-row div:last-child {
  border-right: 0;
}

.hero-section-one > .template-stat-row strong {
  color: #f3d889;
  font-size: clamp(22px, 2.1vw, 34px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}

.hero-section-one > .template-stat-row span {
  color: #fff;
  font-size: clamp(11px, .9vw, 15px);
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .42);
}

@media (max-width: 1180px) {
  .template-site .hero-section-one {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-section-one .template-search-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(190px, .7fr);
  }

  .hero-section-one .template-search-panel .commercial-filter {
    padding-left: 66px;
    padding-right: 14px;
  }

  .hero-section-one .template-search-panel .commercial-filter::before {
    left: 10px;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

@media (max-width: 760px) {
  .template-site .hero-section-one {
    grid-template-rows: minmax(0, 1fr) auto auto;
    padding: 86px 14px 0;
    background-position: 58% center;
  }

  .hero-section-one .premium-hero-inner {
    width: 100%;
    grid-template-columns: 1fr;
    padding-bottom: 18px;
  }

  .hero-section-one .premium-hero-copy h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero-section-one .premium-hero-copy p {
    max-width: 92%;
    font-size: 14px;
  }

  .hero-section-one .hero-cta {
    min-height: 52px;
    padding-left: 18px;
    font-size: 12px;
  }

  .hero-section-one .hero-cta span {
    width: 46px;
    margin-left: 12px;
  }

  .hero-section-one .template-search-panel {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  .hero-section-one .template-search-panel .commercial-filter {
    min-height: 50px;
    padding-left: 56px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 43, 37, .12);
  }

  .hero-section-one .template-search-panel .commercial-filter::before {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .hero-section-one .template-search-panel .btn {
    min-height: 50px;
  }

  .hero-section-one > .template-stat-row {
    width: calc(100% + 28px);
    margin: 10px -14px 0;
    padding: 10px 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 0;
  }

  .hero-section-one > .template-stat-row div:nth-child(2) {
    border-right: 0;
  }
}

/* HERO nav and bottom metrics alignment refinement */
.template-site .template-top-strip,
.template-site .template-nav,
body.commercial-nav-scrolled .template-site .template-nav {
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.template-site .template-top-strip::before,
.template-site .template-top-strip::after,
.template-site .template-nav::before,
.template-site .template-nav::after {
  display: none;
}

.template-site .commercial-header .btn.gold {
  background: rgba(0, 31, 26, .18);
  box-shadow: none;
}

.hero-section-one > .template-stat-row {
  width: min(var(--template-max), 100%);
  margin: clamp(16px, 2.6vh, 26px) auto 0;
  padding: clamp(14px, 2.5vh, 26px) clamp(16px, 2.2vw, 34px);
}

@media (max-width: 760px) {
  .template-site .template-nav {
    background: transparent;
  }

  .hero-section-one > .template-stat-row {
    width: 100%;
    margin: 10px auto 0;
    padding: 10px 14px;
  }
}

/* First viewport exact proportions: image covers 100%, content lives inside 87.25% */
.template-site {
  --hero-strip-height: 2.5dvh;
  --hero-nav-height: 10dvh;
  --hero-content-height: 87.25dvh;
  --hero-content-offset: calc(100dvh - var(--hero-content-height));
}

.template-site .template-top-strip {
  height: var(--hero-strip-height);
  min-height: 20px;
  max-height: 30px;
  padding-top: 0;
  padding-bottom: 0;
  align-items: center;
  background: rgba(0, 43, 37, .96);
  color: rgba(255, 255, 255, .92);
  box-shadow: inset 0 -1px 0 rgba(200, 145, 53, .28);
}

.template-site .template-top-strip span,
.template-site .template-top-strip a {
  color: rgba(255, 255, 255, .92);
  font-size: clamp(9px, .72vw, 12px);
  line-height: 1;
}

.template-site .template-nav {
  top: var(--hero-strip-height);
  height: var(--hero-nav-height);
  min-height: 72px;
  max-height: 112px;
  padding-top: 0;
  padding-bottom: 0;
  align-items: center;
  border: 0;
  background: transparent !important;
  box-shadow: none;
  backdrop-filter: none;
}

.template-site .template-nav .commercial-brand,
.template-site .template-nav nav {
  height: 100%;
  align-items: center;
}

.template-site .template-nav .commercial-brand img {
  width: auto;
  height: clamp(48px, 7.2dvh, 78px);
}

body.commercial-nav-hidden .template-site .template-nav {
  transform: translateY(calc(-100% - var(--hero-strip-height)));
}

body.commercial-nav-scrolled .template-site .template-nav {
  background: transparent !important;
  box-shadow: none;
  backdrop-filter: none;
}

.template-site .hero-section-one {
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  margin-top: 0;
  grid-template-rows: minmax(0, 1fr) auto auto;
  row-gap: clamp(8px, 1.25dvh, 14px);
  padding-top: var(--hero-content-offset);
  padding-bottom: 0;
  box-sizing: border-box;
}

.hero-section-one .premium-hero-inner {
  min-height: 0;
  align-self: end;
  padding-bottom: clamp(8px, 1.8dvh, 20px);
}

.hero-section-one .premium-hero-copy {
  display: grid;
  align-content: end;
  gap: clamp(8px, 1.35dvh, 16px);
  max-height: 100%;
}

.hero-section-one .premium-hero-copy::before {
  font-size: clamp(10px, min(.95vw, 1.9dvh), 16px);
}

.hero-section-one .premium-hero-copy h1 {
  font-size: clamp(38px, min(5vw, 8.2dvh), 76px);
  line-height: .99;
}

.hero-section-one .premium-hero-copy p {
  font-size: clamp(14px, min(1.25vw, 2.2dvh), 20px);
  line-height: 1.42;
}

.template-hero-location {
  font-size: clamp(13px, min(1.1vw, 2dvh), 17px);
}

.hero-section-one .template-search-panel {
  min-height: clamp(62px, 7.7dvh, 82px);
  margin-top: 0;
  padding-top: clamp(8px, 1.1dvh, 12px);
  padding-bottom: clamp(8px, 1.1dvh, 12px);
}

.hero-section-one .template-search-panel .commercial-filter {
  min-height: clamp(50px, 6.2dvh, 64px);
}

.hero-section-one .template-search-panel .commercial-filter::before {
  width: clamp(40px, 5.2dvh, 52px);
  height: clamp(40px, 5.2dvh, 52px);
  font-size: clamp(18px, 2.6dvh, 25px);
}

.hero-section-one .template-search-panel .btn {
  min-height: clamp(50px, 6.2dvh, 64px);
}

.hero-section-one > .template-stat-row {
  margin-top: 0;
  padding-top: clamp(8px, 1.35dvh, 14px);
  padding-bottom: clamp(8px, 1.35dvh, 14px);
}

.hero-section-one > .template-stat-row div {
  min-height: clamp(46px, 6.4dvh, 62px);
}

.hero-section-one > .template-stat-row strong {
  font-size: clamp(20px, min(2vw, 3.8dvh), 32px);
}

.hero-section-one > .template-stat-row span {
  font-size: clamp(10px, min(.86vw, 1.7dvh), 14px);
}

/* Global link cleanup and transparent HERO metrics */
a,
a:visited,
a:hover,
a:focus,
a:active,
.btn,
.btn:hover,
.btn:focus,
.btn:active,
button,
button:hover,
button:focus,
button:active {
  text-decoration: none !important;
}

.hero-section-one .hero-cta {
  display: inline-flex;
  grid-template-columns: none;
  justify-content: center;
  min-width: clamp(260px, 25vw, 360px);
  padding: 0 clamp(24px, 2.4vw, 36px);
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

.hero-section-one .hero-cta span {
  display: none !important;
}

.hero-section-one .hero-cta:hover,
.hero-section-one .hero-cta:focus {
  background: #c89135;
  border-color: #c89135;
  color: #061d19;
  filter: none;
  transform: translateY(-1px);
}

.hero-section-one > .template-stat-row {
  border-color: rgba(255, 255, 255, .24);
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

@media (min-width: 761px) {
  .template-site .hero-section-one {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: var(--hero-content-offset);
  }

  .hero-section-one .premium-hero-inner {
    flex: 0 0 auto;
    align-self: center;
    margin-top: auto;
    padding-bottom: clamp(6px, 1.15dvh, 14px);
  }

  .hero-section-one .premium-hero-copy {
    align-content: start;
  }

  .hero-section-one .template-search-panel {
    flex: 0 0 auto;
    margin-top: clamp(4px, .85dvh, 10px);
    margin-bottom: auto;
  }

  .hero-section-one > .template-stat-row {
    flex: 0 0 auto;
    margin-top: 0;
    margin-bottom: clamp(8px, 1.5dvh, 16px);
  }
}

@media (max-width: 760px) {
  .template-site .template-top-strip {
    display: flex;
    gap: 6px;
    justify-content: space-between;
    min-height: 18px;
    overflow: hidden;
  }

  .template-site .template-top-strip span,
  .template-site .template-top-strip a {
    font-size: 8px;
    white-space: nowrap;
  }

  .template-site .template-nav {
    top: var(--hero-strip-height);
    height: var(--hero-nav-height);
    min-height: 58px;
    max-height: 84px;
    background: transparent !important;
  }

  .template-site .template-nav .commercial-brand img {
    height: clamp(42px, 7dvh, 58px);
  }

  .template-site .hero-section-one {
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
    margin-top: 0;
    padding-top: var(--hero-content-offset);
  }
}

/* Section 2: buyer objective form over the same transparent HERO background */
.template-site .template-help {
  position: relative;
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(12px, 2dvh, 22px);
  align-content: stretch;
  padding: clamp(96px, 12.5dvh, 132px) max(24px, calc((100vw - var(--template-max)) / 2)) clamp(20px, 3dvh, 34px);
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .48) 34%, rgba(0, 0, 0, .2) 64%, rgba(0, 0, 0, .38) 100%),
    var(--commercial-hero-bg, url("assets/imagenes/venta/riviera/cancun/solymar/13.webp"));
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.template-site .template-help::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 24%, rgba(200, 145, 53, .16), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .34));
}

.template-help-main,
.template-help-benefits {
  position: relative;
  z-index: 1;
  width: min(var(--template-max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.template-help-main {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(520px, 1.12fr) minmax(420px, .88fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: center;
}

.template-help-copy {
  display: grid;
  align-content: center;
  gap: clamp(14px, 2dvh, 24px);
  min-width: 0;
}

.section-two-kicker {
  position: relative;
  width: max-content;
  margin: 0;
  color: #d7a94d;
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 900;
  letter-spacing: .08em;
}

.section-two-kicker::after {
  content: "";
  display: inline-block;
  width: clamp(54px, 5vw, 82px);
  height: 1px;
  margin-left: 14px;
  vertical-align: middle;
  background: #d7a94d;
}

.template-help-copy h2 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, min(5.7vw, 9.4dvh), 92px);
  font-weight: 700;
  line-height: .96;
  letter-spacing: 0;
}

.template-help-copy h2 span {
  display: block;
  color: #d3a44a;
}

.template-help-copy > p:not(.section-two-kicker) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(18px, min(1.55vw, 2.7dvh), 26px);
  line-height: 1.42;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .4);
}

.template-site .section-two-intents {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.5dvh, 16px);
  width: min(680px, 100%);
  margin-top: clamp(6px, 1dvh, 12px);
}

.template-site .section-two-intents button {
  min-height: clamp(84px, 11.5dvh, 116px);
  display: grid;
  grid-template-columns: clamp(56px, 5.8vw, 76px) minmax(0, 1fr) auto;
  gap: clamp(12px, 1.4vw, 20px);
  align-items: center;
  padding: clamp(14px, 1.8dvh, 22px) clamp(16px, 1.8vw, 24px);
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  color: #081d19;
  text-align: left;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
  backdrop-filter: blur(8px);
}

.template-site .section-two-intents button:nth-child(5) {
  grid-column: 1 / -1;
}

.template-site .section-two-intents button.active {
  border-color: #d7a94d;
  background: rgba(0, 43, 37, .92);
  color: #fff;
  box-shadow: 0 22px 58px rgba(0, 43, 37, .34);
}

.section-two-intents button i {
  display: grid;
  place-items: center;
  width: clamp(54px, 5.6vw, 74px);
  height: clamp(54px, 5.6vw, 74px);
  border-radius: 999px;
  border: 1px solid #d7a94d;
  background: #002b25;
  color: #d7a94d;
  font-size: clamp(26px, 2.8vw, 40px);
  font-style: normal;
}

.section-two-intents button.active i {
  background: transparent;
}

.section-two-intents button span {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.section-two-intents button strong {
  color: inherit;
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 950;
  text-transform: uppercase;
}

.section-two-intents button small {
  color: inherit;
  font-size: clamp(12px, .98vw, 16px);
  line-height: 1.45;
  opacity: .88;
}

.section-two-intents button b {
  color: #c89135;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
}

.template-site .section-two-form-panel {
  position: relative;
  justify-self: end;
  width: min(550px, 100%);
  padding: clamp(34px, 5.4dvh, 56px) clamp(28px, 3.3vw, 46px) clamp(24px, 3.4dvh, 38px);
  border: 1px solid rgba(200, 145, 53, .46);
  border-radius: 18px;
  background:
    radial-gradient(circle at 15% 0%, rgba(200, 145, 53, .12), transparent 34%),
    rgba(0, 43, 37, .9);
  color: #fff;
  box-shadow: 0 28px 82px rgba(0, 0, 0, .24);
  backdrop-filter: blur(16px);
}

.section-two-form-badge {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: clamp(54px, 5.6dvh, 68px);
  height: clamp(54px, 5.6dvh, 68px);
  border-radius: 999px;
  background: linear-gradient(135deg, #d7a94d, #b67925);
  color: #fff;
  font-size: clamp(22px, 2.7dvh, 30px);
  font-style: normal;
  transform: translate(-50%, -45%);
  box-shadow: 0 12px 28px rgba(139, 91, 24, .28);
}

.template-site .section-two-form-panel .template-help-form-heading {
  display: block;
  margin: 0 0 clamp(18px, 2.4dvh, 28px);
  text-align: center;
}

.template-site .section-two-form-panel .template-help-form-heading h3 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, min(3vw, 4.8dvh), 46px);
  line-height: 1.08;
}

.template-site .section-two-form-panel .template-help-form-heading p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(14px, 1.1vw, 18px);
}

.section-two-form-panel .template-lead-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.section-two-form-panel .template-lead-form h3 {
  display: none;
}

.section-two-form-panel .template-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.5dvh, 14px);
}

.section-two-form-panel .template-form-grid input,
.section-two-form-panel .template-form-grid select,
.section-two-form-panel .template-form-grid textarea {
  min-height: clamp(48px, 6.8dvh, 62px);
  border: 1px solid rgba(200, 145, 53, .4);
  border-radius: 9px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font-size: clamp(13px, 1vw, 16px);
}

.section-two-form-panel .template-form-grid input::placeholder,
.section-two-form-panel .template-form-grid textarea::placeholder {
  color: rgba(255, 255, 255, .78);
}

.section-two-form-panel .template-form-grid select {
  color: rgba(255, 255, 255, .9);
}

.section-two-form-panel .template-form-grid input[name="email"],
.section-two-form-panel .template-form-grid select,
.section-two-form-panel .template-form-grid textarea {
  grid-column: 1 / -1;
}

.section-two-form-panel .template-form-grid textarea {
  min-height: clamp(78px, 11dvh, 112px);
}

.section-two-form-panel .full-btn {
  min-height: clamp(50px, 6.8dvh, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 48px);
  margin-top: clamp(12px, 1.8dvh, 18px);
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, #e0ad4a, #bc7b25);
  color: #051d19;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 950;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.section-two-form-panel .full-btn::after {
  content: "→";
  color: #051d19;
  font-size: 28px;
  font-weight: 400;
}

.section-two-form-panel .full-btn:hover {
  background: #fff;
  color: #061d19;
}

.section-two-form-panel .full-btn:hover::after {
  color: #061d19;
}

.section-two-form-panel .template-lead-form small {
  display: block;
  margin-top: clamp(10px, 1.5dvh, 16px);
  color: rgba(255, 255, 255, .88);
  text-align: center;
  font-size: clamp(12px, .95vw, 15px);
}

.section-two-form-panel .lead-card-result {
  margin-top: 8px;
  color: #f3cf79;
  text-align: center;
}

.template-help-benefits {
  min-height: clamp(96px, 13dvh, 132px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 7px;
  background: rgba(0, 23, 20, .7);
  color: #fff;
  box-shadow: 0 20px 54px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
}

.template-help-benefits article {
  min-height: 100%;
  display: grid;
  grid-template-columns: clamp(54px, 5.2vw, 72px) 1fr;
  gap: clamp(12px, 1.4vw, 20px);
  align-items: center;
  padding: clamp(16px, 2dvh, 24px) clamp(18px, 2vw, 30px);
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.template-help-benefits article:first-child {
  border-left: 0;
}

.template-help-benefits i {
  display: grid;
  place-items: center;
  width: clamp(50px, 4.6vw, 66px);
  height: clamp(50px, 4.6vw, 66px);
  border-radius: 999px;
  background: #002b25;
  color: #d7a94d;
  font-size: clamp(24px, 2.5vw, 34px);
  font-style: normal;
}

.template-help-benefits span {
  display: grid;
  gap: 8px;
}

.template-help-benefits strong {
  color: #fff;
  font-size: clamp(12px, .95vw, 15px);
  font-weight: 950;
  text-transform: uppercase;
}

.template-help-benefits small {
  color: rgba(255, 255, 255, .86);
  font-size: clamp(12px, .92vw, 15px);
  line-height: 1.4;
}

@media (min-width: 761px) {
  .template-site .template-help {
    --section-two-top: clamp(50px, 7.2dvh, 74px);
    --section-two-bottom: clamp(12px, 1.7dvh, 18px);
    --section-two-gap: clamp(10px, 1.35dvh, 14px);
    --section-two-benefits: clamp(78px, 10.4dvh, 104px);
    --section-two-main: calc(100dvh - var(--section-two-top) - var(--section-two-bottom) - var(--section-two-gap) - var(--section-two-benefits));
    grid-template-rows: minmax(0, var(--section-two-main)) var(--section-two-benefits);
    gap: var(--section-two-gap);
    padding-top: var(--section-two-top);
    padding-bottom: var(--section-two-bottom);
  }

  .template-help-main {
    height: var(--section-two-main);
    max-height: var(--section-two-main);
    align-items: center;
    gap: clamp(26px, 4vw, 70px);
  }

  .template-help-copy {
    max-height: 100%;
    gap: clamp(8px, 1.05dvh, 13px);
    overflow: visible;
  }

  .section-two-kicker {
    font-size: clamp(13px, min(1.1vw, 2dvh), 17px);
  }

  .section-two-kicker::after {
    width: clamp(42px, 4vw, 70px);
  }

  .template-help-copy h2 {
    max-width: 580px;
    font-size: clamp(42px, min(4.55vw, 7.1dvh), 72px);
    line-height: .94;
  }

  .template-help-copy > p:not(.section-two-kicker) {
    max-width: 560px;
    font-size: clamp(15px, min(1.25vw, 2.25dvh), 21px);
    line-height: 1.34;
  }

  .template-site .section-two-intents {
    gap: clamp(8px, 1.1dvh, 12px);
    width: min(640px, 100%);
    margin-top: clamp(4px, .7dvh, 8px);
  }

  .template-site .section-two-intents button {
    min-height: 0;
    height: clamp(64px, 9.4dvh, 88px);
    grid-template-columns: clamp(46px, 4.5vw, 62px) minmax(0, 1fr) auto;
    gap: clamp(10px, 1.1vw, 16px);
    padding: clamp(10px, 1.2dvh, 14px) clamp(12px, 1.35vw, 18px);
  }

  .section-two-intents button i {
    width: clamp(44px, 4.2vw, 58px);
    height: clamp(44px, 4.2vw, 58px);
    font-size: clamp(22px, 2.1vw, 32px);
  }

  .section-two-intents button span {
    gap: 3px;
  }

  .section-two-intents button strong {
    font-size: clamp(11px, .92vw, 14px);
    line-height: 1.12;
  }

  .section-two-intents button small {
    font-size: clamp(10px, .82vw, 13px);
    line-height: 1.25;
  }

  .section-two-intents button b {
    font-size: clamp(20px, 1.8vw, 28px);
  }

  .template-site .section-two-form-panel {
    width: min(520px, 100%);
    max-height: calc(var(--section-two-main) - 8px);
    padding: clamp(24px, 3.4dvh, 34px) clamp(22px, 2.6vw, 34px) clamp(16px, 2.1dvh, 24px);
    border-radius: 14px;
  }

  .section-two-form-badge {
    width: clamp(42px, 5dvh, 56px);
    height: clamp(42px, 5dvh, 56px);
    font-size: clamp(18px, 2.25dvh, 25px);
  }

  .template-site .section-two-form-panel .template-help-form-heading {
    margin-bottom: clamp(10px, 1.35dvh, 16px);
  }

  .template-site .section-two-form-panel .template-help-form-heading h3 {
    font-size: clamp(24px, min(2.6vw, 4.2dvh), 40px);
  }

  .template-site .section-two-form-panel .template-help-form-heading p {
    margin-top: 6px;
    font-size: clamp(12px, .95vw, 16px);
  }

  .section-two-form-panel .template-form-grid {
    gap: clamp(7px, 1dvh, 10px);
  }

  .section-two-form-panel .template-form-grid input,
  .section-two-form-panel .template-form-grid select,
  .section-two-form-panel .template-form-grid textarea {
    min-height: 0;
    height: clamp(40px, 5.5dvh, 52px);
    padding: 9px 14px;
    font-size: clamp(12px, .9vw, 14px);
  }

  .section-two-form-panel .template-form-grid textarea {
    height: clamp(58px, 8.4dvh, 82px);
  }

  .section-two-form-panel .full-btn {
    min-height: 0;
    height: clamp(42px, 5.7dvh, 54px);
    margin-top: clamp(8px, 1.1dvh, 12px);
    font-size: clamp(12px, .95vw, 15px);
  }

  .section-two-form-panel .full-btn::after {
    font-size: clamp(20px, 2vw, 26px);
  }

  .section-two-form-panel .template-lead-form small {
    margin-top: clamp(6px, .8dvh, 10px);
    font-size: clamp(10px, .78vw, 12px);
  }

  .section-two-form-panel .lead-card-result {
    margin-top: 4px;
    font-size: 12px;
  }

  .template-help-benefits {
    min-height: 0;
    height: var(--section-two-benefits);
  }

  .template-help-benefits article {
    grid-template-columns: clamp(42px, 4.4vw, 58px) 1fr;
    gap: clamp(10px, 1.2vw, 16px);
    padding: clamp(10px, 1.35dvh, 15px) clamp(14px, 1.7vw, 24px);
  }

  .template-help-benefits i {
    width: clamp(40px, 4vw, 54px);
    height: clamp(40px, 4vw, 54px);
    font-size: clamp(20px, 2vw, 28px);
  }

  .template-help-benefits span {
    gap: 4px;
  }

  .template-help-benefits strong {
    font-size: clamp(10px, .83vw, 13px);
    line-height: 1.18;
  }

  .template-help-benefits small {
    font-size: clamp(10px, .78vw, 12px);
    line-height: 1.25;
  }
}

@media (min-width: 761px) and (max-height: 760px) {
  .template-site .template-help {
    --section-two-top: 44px;
    --section-two-bottom: 10px;
    --section-two-gap: 8px;
    --section-two-benefits: 76px;
  }

  .template-help-copy h2 {
    font-size: clamp(38px, min(4.1vw, 6.4dvh), 60px);
  }

  .template-help-copy > p:not(.section-two-kicker) {
    font-size: 14px;
  }

  .template-site .section-two-intents button {
    height: clamp(58px, 8.7dvh, 72px);
  }

  .section-two-form-panel .template-form-grid textarea {
    height: clamp(50px, 7.3dvh, 64px);
  }
}

@media (max-width: 1120px) {
  .template-help-main {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .template-site .section-two-form-panel {
    justify-self: stretch;
    width: 100%;
  }

  .template-help-copy h2,
  .template-help-copy > p:not(.section-two-kicker) {
    max-width: 100%;
  }

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

@media (max-width: 760px) {
  .template-site .template-help {
    height: auto;
    min-height: 100dvh;
    max-height: none;
    padding: 86px 14px 18px;
    background-attachment: scroll;
  }

  .template-help-main {
    gap: 18px;
  }

  .template-help-copy h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .template-site .section-two-intents {
    grid-template-columns: 1fr;
  }

  .template-site .section-two-intents button:nth-child(5) {
    grid-column: auto;
  }

  .section-two-form-panel .template-form-grid {
    grid-template-columns: 1fr;
  }

  .template-help-benefits {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .template-help-benefits article {
    border-left: 0;
    border-top: 1px solid rgba(0, 43, 37, .14);
  }

  .template-help-benefits article:first-child {
    border-top: 0;
  }
}

/* Section 2 final hierarchy: H2 header, controls row, benefits bar */
.template-help-heading {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: clamp(6px, .9dvh, 10px);
  min-width: 0;
}

.template-help-heading h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, min(3.7vw, 5.8dvh), 58px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.template-help-heading h2 span {
  display: inline;
  color: #d3a44a;
}

.template-help-heading > p:not(.section-two-kicker) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(14px, min(1.1vw, 1.9dvh), 18px);
  line-height: 1.35;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .4);
}

@media (min-width: 761px) {
  .template-site .template-help {
    --section-two-top: clamp(42px, 6dvh, 62px);
    --section-two-bottom: clamp(10px, 1.5dvh, 16px);
    --section-two-gap: clamp(10px, 1.35dvh, 14px);
    --section-two-benefits: clamp(74px, 9.4dvh, 96px);
    --section-two-main: calc(100dvh - var(--section-two-top) - var(--section-two-bottom) - var(--section-two-gap) - var(--section-two-benefits));
  }

  .template-help-main {
    display: grid;
    grid-template-columns: minmax(430px, .94fr) minmax(420px, .86fr);
    grid-template-rows: auto minmax(0, 1fr);
    grid-template-areas:
      "heading form"
      "intents form";
    align-items: stretch;
    column-gap: clamp(28px, 4.6vw, 82px);
    row-gap: clamp(10px, 1.45dvh, 16px);
  }

  .template-help-heading {
    grid-area: heading;
    align-self: start;
  }

  .template-site .section-two-intents {
    grid-area: intents;
    align-self: end;
    width: min(640px, 100%);
    max-height: 100%;
    margin-top: 0;
    overflow: hidden;
  }

  .template-site .section-two-form-panel {
    grid-area: form;
    align-self: end;
    justify-self: end;
    max-height: 100%;
    overflow: hidden;
  }

  .template-site .section-two-intents button {
    height: clamp(58px, 8.4dvh, 78px);
  }

  .template-help-heading h2 {
    font-size: clamp(34px, min(3.4vw, 5.4dvh), 54px);
  }

  .template-help-heading > p:not(.section-two-kicker) {
    font-size: clamp(13px, min(1vw, 1.8dvh), 17px);
  }
}

@media (min-width: 761px) and (max-height: 760px) {
  .template-site .template-help {
    --section-two-top: 38px;
    --section-two-benefits: 68px;
  }

  .template-help-heading h2 {
    font-size: clamp(28px, min(3vw, 4.8dvh), 44px);
  }

  .template-help-heading > p:not(.section-two-kicker) {
    font-size: 12px;
  }

  .template-site .section-two-intents button {
    height: clamp(50px, 7.7dvh, 64px);
  }
}

@media (max-width: 760px) {
  .template-help-heading h2 {
    font-size: clamp(32px, 10vw, 44px);
  }
}

/* Section 2 proportional correction */
@media (min-width: 761px) {
  .template-site .template-help {
    --section-two-top: clamp(54px, 7dvh, 76px);
    --section-two-bottom: clamp(8px, 1.2dvh, 14px);
    --section-two-gap: clamp(8px, 1.2dvh, 12px);
    --section-two-benefits: calc((clamp(46px, 6.4dvh, 62px) + clamp(16px, 2.7dvh, 28px)) * 1.1);
    --section-two-main: calc(100dvh - var(--section-two-top) - var(--section-two-bottom) - var(--section-two-gap) - var(--section-two-benefits));
    grid-template-rows: minmax(0, var(--section-two-main)) var(--section-two-benefits);
    padding-top: var(--section-two-top);
    padding-bottom: var(--section-two-bottom);
  }

  .template-help-main {
    height: var(--section-two-main);
    max-height: var(--section-two-main);
    display: grid;
    grid-template-columns: minmax(430px, .92fr) minmax(460px, .88fr);
    grid-template-rows: auto minmax(0, 1fr);
    grid-template-areas:
      "heading form"
      "intents form";
    column-gap: clamp(30px, 5vw, 86px);
    row-gap: clamp(12px, 1.9dvh, 20px);
    align-items: stretch;
  }

  .template-help-heading {
    grid-area: heading;
    align-self: start;
    gap: clamp(7px, 1dvh, 11px);
  }

  .section-two-kicker {
    font-size: clamp(12px, min(.95vw, 1.8dvh), 16px);
  }

  .template-help-heading h2 {
    max-width: 570px;
    font-size: clamp(30px, min(3.15vw, 5.2dvh), 52px);
    line-height: 1.02;
    text-transform: uppercase;
  }

  .template-help-heading > p:not(.section-two-kicker) {
    max-width: 610px;
    font-size: clamp(12px, min(.98vw, 1.8dvh), 16px);
    line-height: 1.42;
  }

  .template-site .section-two-intents {
    grid-area: intents;
    align-self: center;
    width: min(650px, 100%);
    max-height: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(9px, 1.3dvh, 14px);
    margin-top: 0;
    overflow: hidden;
  }

  .template-site .section-two-intents button {
    min-height: 0;
    height: clamp(58px, 8.1dvh, 78px);
    grid-template-columns: clamp(42px, 4vw, 56px) minmax(0, 1fr) auto;
    gap: clamp(9px, 1vw, 14px);
    padding: clamp(9px, 1.1dvh, 13px) clamp(12px, 1.3vw, 18px);
    border-radius: 7px;
  }

  .section-two-intents button i {
    width: clamp(40px, 3.8vw, 54px);
    height: clamp(40px, 3.8vw, 54px);
    font-size: clamp(19px, 1.9vw, 28px);
  }

  .section-two-intents button strong {
    font-size: clamp(10px, .83vw, 13px);
    line-height: 1.15;
  }

  .section-two-intents button small {
    font-size: clamp(10px, .78vw, 12px);
    line-height: 1.25;
  }

  .template-site .section-two-form-panel {
    grid-area: form;
    align-self: center;
    justify-self: end;
    width: min(610px, 100%);
    min-height: clamp(450px, 57dvh, 560px);
    max-height: calc(var(--section-two-main) - 2px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 4dvh, 42px) clamp(28px, 3.2vw, 44px) clamp(22px, 3dvh, 34px);
    border-radius: 12px;
    overflow: visible;
  }

  .section-two-form-badge {
    width: clamp(44px, 5dvh, 58px);
    height: clamp(44px, 5dvh, 58px);
    font-size: clamp(18px, 2.25dvh, 24px);
  }

  .template-site .section-two-form-panel .template-help-form-heading {
    margin-bottom: clamp(14px, 2dvh, 22px);
  }

  .template-site .section-two-form-panel .template-help-form-heading h3 {
    font-size: clamp(25px, min(2.8vw, 4.4dvh), 42px);
  }

  .template-site .section-two-form-panel .template-help-form-heading p {
    font-size: clamp(12px, .95vw, 16px);
  }

  .section-two-form-panel .template-form-grid {
    gap: clamp(8px, 1.2dvh, 12px);
  }

  .section-two-form-panel .template-form-grid input,
  .section-two-form-panel .template-form-grid select,
  .section-two-form-panel .template-form-grid textarea {
    height: clamp(42px, 5.8dvh, 58px);
    padding: 10px 15px;
  }

  .section-two-form-panel .template-form-grid textarea {
    height: clamp(70px, 10dvh, 104px);
  }

  .section-two-form-panel .full-btn {
    height: clamp(44px, 6dvh, 60px);
    margin-top: clamp(10px, 1.5dvh, 16px);
  }

  .section-two-form-panel .template-lead-form small {
    margin-top: clamp(8px, 1.1dvh, 12px);
  }

  .template-help-benefits {
    width: min(var(--template-max), 100%);
    height: var(--section-two-benefits);
    min-height: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-width: 1px 0 0;
    border-color: rgba(255, 255, 255, .25);
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .template-help-benefits article {
    height: 100%;
    min-height: clamp(46px, 6.4dvh, 62px);
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 2px;
    padding: clamp(8px, 1.35dvh, 14px) clamp(16px, 2.2vw, 34px);
    border-left: 0;
    border-right: 1px solid rgba(255, 255, 255, .32);
  }

  .template-help-benefits article:last-child {
    border-right: 0;
  }

  .template-help-benefits i {
    display: none;
  }

  .template-help-benefits span {
    gap: 3px;
  }

  .template-help-benefits strong {
    color: #f3d889;
    font-size: clamp(18px, min(1.75vw, 3.2dvh), 28px);
    line-height: 1.05;
    text-transform: none;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
  }

  .template-help-benefits small {
    color: #fff;
    font-size: clamp(10px, min(.82vw, 1.55dvh), 13px);
    font-weight: 850;
    line-height: 1.25;
    letter-spacing: .04em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .42);
  }
}

@media (min-width: 761px) and (max-height: 760px) {
  .template-site .template-help {
    --section-two-top: 40px;
    --section-two-benefits: calc((clamp(46px, 6.4dvh, 62px) + clamp(16px, 2.7dvh, 28px)) * 1.1);
  }

  .template-site .section-two-form-panel {
    min-height: clamp(390px, 55dvh, 470px);
  }

  .template-site .section-two-intents button {
    height: clamp(50px, 7.4dvh, 62px);
  }

  .template-help-benefits strong {
    font-size: clamp(14px, 1.4vw, 20px);
  }
}

/* Section 2 intent buttons: full-width lower option and taller rectangles */
@media (min-width: 761px) {
  .template-help-main {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 610px);
    grid-template-rows: auto auto minmax(0, 1fr);
    grid-template-areas:
      "heading form"
      "intents form"
      ". form";
    column-gap: clamp(28px, 4.4vw, 72px);
    row-gap: clamp(14px, 2dvh, 22px);
  }

  .template-site .section-two-intents {
    align-self: start;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 1.7dvh, 18px);
    transform: translateY(clamp(68px, 9dvh, 100px));
  }

  .template-site .section-two-intents button {
    height: clamp(112px, 15.8dvh, 156px);
    grid-template-columns: clamp(58px, 5.2vw, 82px) minmax(0, 1fr) auto;
    gap: clamp(12px, 1.4vw, 20px);
    padding: clamp(16px, 2.1dvh, 24px) clamp(16px, 1.7vw, 24px);
  }

  .template-site .section-two-intents button:nth-child(5) {
    grid-column: 1 / -1;
  }

  .section-two-intents button i {
    width: clamp(54px, 5vw, 76px);
    height: clamp(54px, 5vw, 76px);
    font-size: clamp(24px, 2.4vw, 36px);
  }

  .section-two-intents button span {
    gap: clamp(5px, .7dvh, 8px);
  }

  .section-two-intents button strong {
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.15;
  }

  .section-two-intents button small {
    font-size: clamp(12px, .92vw, 15px);
    line-height: 1.35;
  }

  .section-two-intents button b {
    font-size: clamp(24px, 2.2vw, 34px);
  }

  .template-site .section-two-form-panel {
    align-self: center;
  }
}

@media (min-width: 761px) and (max-height: 760px) {
  .template-help-main {
    row-gap: 10px;
  }

  .template-site .section-two-intents {
    gap: 10px;
    transform: translateY(clamp(38px, 6.2dvh, 58px));
  }

  .template-site .section-two-intents button {
    height: clamp(92px, 13.6dvh, 112px);
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .section-two-intents button i {
    width: clamp(46px, 4.4vw, 62px);
    height: clamp(46px, 4.4vw, 62px);
  }
}

/* Section 2 dynamic forms and advisor-button alignment */
.lead-form-context {
  margin: -4px 0 10px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.35;
}

.section-two-form-panel .lead-form-context {
  display: none;
}

.section-two-form-panel .template-form-grid select {
  grid-column: auto;
}

.section-two-form-panel .template-form-grid input[name="email"],
.section-two-form-panel .template-form-grid .wide {
  grid-column: 1 / -1;
}

@media (min-width: 761px) {
  .template-site .section-two-intents button:nth-child(5) {
    margin-top: 0;
  }
}

@media (min-width: 761px) and (max-height: 760px) {
  .template-site .section-two-intents button:nth-child(5) {
    margin-top: 0;
  }
}

/* Section 2 final alignment: single-line H2 and matching button/benefit heights */
@media (min-width: 761px) {
  .template-site .template-help {
    --section-two-button-height: clamp(112px, 15.8dvh, 156px);
    --section-two-benefits: var(--section-two-button-height);
    --section-two-main: calc(100dvh - var(--section-two-top) - var(--section-two-bottom) - var(--section-two-gap) - var(--section-two-benefits));
  }

  .template-help-main {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 610px);
    grid-template-rows: auto minmax(0, 1fr);
    grid-template-areas:
      "heading form"
      "intents form";
    align-items: start;
  }

  .template-help-heading {
    align-self: start;
    padding-top: clamp(18px, 2.4dvh, 28px);
  }

  .template-help-heading h2 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(28px, min(2.85vw, 4.8dvh), 46px);
    line-height: 1;
  }

  .template-site .section-two-form-panel {
    align-self: start;
    min-height: min(calc(var(--section-two-main) - 4px), 560px);
  }

  .template-site .section-two-form-panel .template-help-form-heading {
    margin-top: 0;
  }

  .template-site .section-two-intents {
    align-self: start;
    transform: translateY(clamp(46px, 6.4dvh, 72px));
  }

  .template-site .section-two-intents button,
  .template-help-benefits {
    height: var(--section-two-button-height);
  }

  .template-help-benefits article {
    min-height: var(--section-two-button-height);
  }
}

@media (min-width: 761px) and (max-height: 760px) {
  .template-site .template-help {
    --section-two-button-height: clamp(92px, 13.6dvh, 112px);
    --section-two-benefits: var(--section-two-button-height);
  }

  .template-help-heading {
    padding-top: 14px;
  }

  .template-help-heading h2 {
    font-size: clamp(24px, min(2.55vw, 4.3dvh), 38px);
  }

  .template-site .section-two-intents {
    transform: translateY(clamp(28px, 4.8dvh, 42px));
  }
}

/* Section 2 heading copy alignment */
@media (min-width: 761px) {
  .template-help-heading {
    justify-items: start;
    text-align: left;
  }

  .template-help-heading h2,
  .template-help-heading > p:not(.section-two-kicker) {
    justify-self: start;
    margin-left: 0;
    text-align: left;
  }
}

/* Commercial nav belongs only to the hero viewport */
body.commercial-nav-outside-hero .template-site .template-top-strip,
body.commercial-nav-outside-hero .template-site .template-nav {
  pointer-events: none;
  transform: translateY(calc(-100% - var(--hero-strip-height, 24px))) !important;
}

body.commercial-nav-outside-hero .template-site .template-nav {
  transform: translateY(calc(-100% - var(--hero-strip-height, 24px) - 8px)) !important;
}

/* Section 3 map visual redesign, preserving section dimensions */
.template-site .template-map-section {
  --map-green: #002b25;
  --map-green-2: #0b3b32;
  --map-gold: #c89135;
  --map-cream: #fbf7ef;
  --map-line: #e3d9c9;
  background:
    radial-gradient(circle at 16% 0%, rgba(200, 145, 53, .14), transparent 32%),
    linear-gradient(180deg, #fffaf3 0%, #f6efe4 100%) !important;
}

.template-map-section .template-section-title.split p {
  color: var(--map-gold);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.template-map-section .template-section-title.split h2 {
  color: var(--map-green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0;
}

.template-map-section .template-section-title.split span {
  color: #2f4540;
}

.template-map-section .template-stat-row {
  color: var(--map-green);
}

.template-map-section .template-stat-row div {
  position: relative;
  gap: 3px;
  border-left-color: var(--map-line);
}

.template-map-section .template-stat-row div::before {
  content: "";
  width: clamp(34px, 4.4dvh, 54px);
  height: clamp(34px, 4.4dvh, 54px);
  margin: 0 auto 4px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #efe5d6;
  color: var(--map-green);
  font-size: clamp(18px, 2.2dvh, 28px);
  font-weight: 500;
}

.template-map-section .template-stat-row div:nth-child(1)::before {
  content: "⌂";
}

.template-map-section .template-stat-row div:nth-child(2)::before {
  content: "⌖";
}

.template-map-section .template-stat-row div:nth-child(3)::before {
  content: "$";
}

.template-map-section .template-stat-row div:nth-child(4)::before {
  content: "↻";
}

.template-map-section .template-stat-row strong {
  color: var(--map-green);
  font-weight: 950;
}

.template-map-section .template-stat-row span {
  color: #153b34;
  font-weight: 650;
}

.template-site .premium-map-shell {
  border-color: var(--map-line);
  background: #fff;
  box-shadow: 0 24px 70px rgba(14, 30, 26, .14);
}

.template-site .premium-map-sidebar {
  color: var(--map-green);
  background: rgba(255, 255, 255, .96);
  box-shadow: 16px 0 42px rgba(14, 30, 26, .09);
}

.template-site .premium-map-sidebar h3 {
  margin: 0 0 14px;
  color: var(--map-green);
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 950;
}

.template-site .map-filter-controls {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.template-site .map-filter-controls button {
  width: 100%;
  min-height: 42px;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid #ded8cf;
  border-radius: 8px;
  background: #fff;
  color: #102e28;
  padding: 8px 12px;
  text-align: left;
  font-weight: 750;
}

.template-site .map-filter-controls i,
.template-site .map-filter-controls b {
  color: var(--map-green);
  font-style: normal;
}

.template-site .map-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  color: var(--map-green);
  text-transform: uppercase;
}

.template-site .map-list-heading strong {
  font-size: clamp(12px, .92vw, 15px);
  font-weight: 950;
}

.template-site .map-list-heading span {
  color: var(--map-gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: none;
}

.template-site .map-list {
  max-height: calc(100% - 205px);
  padding-right: 6px;
  scrollbar-width: none;
}

.template-site .map-list::-webkit-scrollbar {
  display: none;
}

.template-site .map-list-item {
  border-color: #e5ded5;
  border-radius: 8px;
  background: #fff;
  color: var(--map-green);
  box-shadow: 0 10px 22px rgba(14, 30, 26, .06);
}

.template-site .map-list-item.active,
.template-site .map-list-item:hover {
  border-color: var(--map-gold);
  background: #fffaf2;
  box-shadow: 0 14px 30px rgba(200, 145, 53, .16);
}

.template-site .map-list-item img {
  border-radius: 7px;
}

.template-site .map-list-item strong {
  color: var(--map-green);
  font-weight: 950;
}

.template-site .map-list-item small {
  color: #36554d;
}

.template-site .map-list-item b {
  color: var(--map-gold);
  font-weight: 950;
}

.template-site .map-list-item em {
  color: #223f38;
}

.template-site .premium-map-sidebar .ghost-dark {
  width: 100%;
  min-height: 44px;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  background: var(--map-green);
  color: #fff;
}

.template-site .premium-map-sidebar .ghost-dark:hover {
  background: var(--map-gold);
  color: #fff;
}

.template-site .premium-map {
  background: #d9edf1;
}

.template-site .map-selected-panel {
  grid-template-columns: 1fr;
  gap: 12px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, .96);
  color: var(--map-green);
  box-shadow: 0 26px 70px rgba(14, 30, 26, .18);
}

.template-site .map-selected-panel img {
  width: 100%;
  height: clamp(150px, 22dvh, 230px);
  border-radius: 9px;
}

.template-site .map-selected-panel small {
  width: max-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: #efe1c9;
  color: var(--map-gold);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.template-site .map-selected-panel strong {
  margin-top: 8px;
  color: var(--map-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.8vw, 28px);
}

.template-site .map-selected-panel span {
  color: #33534b;
}

.template-site .map-selected-panel b {
  color: var(--map-green);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 950;
}

.template-site .map-selected-panel em {
  color: #33534b;
}

.template-site .map-popup-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.template-site .map-popup-actions .btn {
  width: 100%;
  min-height: 42px;
  justify-content: center;
  border-radius: 7px;
}

.template-site .map-popup-actions .btn.gold {
  border-color: var(--map-green);
  background: var(--map-green);
  color: #fff;
}

.template-site .map-popup-actions .ghost.light {
  border-color: #d8d2c8;
  background: #fff;
  color: var(--map-green);
}

/* New icon assets for hero search and section 2 intent buttons */
.editable-asset-icon {
  display: block;
  width: 1em;
  height: 1em;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
}

i > .editable-asset-icon {
  width: 62%;
  height: 62%;
  margin: auto;
}

.template-card-facts i,
.template-card-actions i {
  display: inline-grid;
  place-items: center;
  width: 1.15em;
  height: 1.15em;
  margin-right: 4px;
  vertical-align: -0.12em;
}

.template-card-facts i > .editable-asset-icon,
.template-card-actions i > .editable-asset-icon {
  width: 100%;
  height: 100%;
}

.final-socials .editable-asset-icon {
  width: 18px;
  height: 18px;
}

.hero-section-one .template-search-panel .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  padding: 0 clamp(14px, 1.5vw, 24px);
}

.hero-section-one .template-search-panel .commercial-filter::before {
  content: "";
}

.hero-section-one .template-search-panel .commercial-filter:nth-child(1)::before,
.hero-section-one .template-search-panel .commercial-filter:nth-child(2)::before,
.hero-section-one .template-search-panel .commercial-filter:nth-child(3)::before {
  content: "";
}

.hero-section-one .template-search-panel .commercial-filter::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 52px;
  height: 52px;
  background: #fff;
  transform: translateY(-50%);
  pointer-events: none;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 205%;
  mask-size: 205%;
}

.hero-section-one .template-search-panel .commercial-filter:nth-child(1)::after {
  -webkit-mask-image: url("assets/imagenes/iconos/hero/ubicacion.png");
  mask-image: url("assets/imagenes/iconos/hero/ubicacion.png");
}

.hero-section-one .template-search-panel .commercial-filter:nth-child(2)::after {
  -webkit-mask-image: url("assets/imagenes/iconos/hero/operacion.png");
  mask-image: url("assets/imagenes/iconos/hero/operacion.png");
}

.hero-section-one .template-search-panel .commercial-filter:nth-child(3)::after {
  -webkit-mask-image: url("assets/imagenes/iconos/hero/tipo.png");
  mask-image: url("assets/imagenes/iconos/hero/tipo.png");
}

.section-two-intents button i {
  position: relative;
  overflow: hidden;
  font-size: 0;
}

.section-two-intents button i::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: currentColor;
  -webkit-mask-image: var(--intent-icon);
  mask-image: var(--intent-icon);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 205%;
  mask-size: 205%;
}

@media (max-width: 760px) {
  .hero-section-one .template-search-panel .commercial-filter::after {
    left: 14px;
    width: clamp(40px, 5.2dvh, 52px);
    height: clamp(40px, 5.2dvh, 52px);
  }
}

/* Section 3 heading must match section 2 title scale and copy alignment */
.template-map-section .template-section-title.split > div {
  justify-items: start;
  text-align: left;
}

.template-map-section .template-section-title.split h2,
.template-map-section .template-section-title.split span {
  justify-self: start;
  margin-left: 0;
  text-align: left;
}

@media (min-width: 761px) {
  .template-map-section .template-section-title.split h2 {
    max-width: 760px;
    font-size: clamp(28px, min(2.85vw, 4.8dvh), 46px);
    line-height: 1;
  }

  .template-map-section .template-section-title.split span {
    max-width: 610px;
  }
}

@media (min-width: 761px) and (max-height: 760px) {
  .template-map-section .template-section-title.split h2 {
    font-size: clamp(24px, min(2.55vw, 4.3dvh), 38px);
  }
}

/* Section 4 featured properties visual redesign, preserving section dimensions */
.template-site .template-featured {
  --featured-green: #002b25;
  --featured-gold: #c89135;
  --featured-line: #e4d8c8;
  position: relative;
  align-content: center;
  gap: clamp(14px, 2.2dvh, 28px);
  background:
    radial-gradient(circle at 12% 4%, rgba(200, 145, 53, .11), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(0, 43, 37, .06), transparent 30%),
    linear-gradient(180deg, #fffaf3 0%, #f6efe4 100%) !important;
}

.template-site .template-featured::before,
.template-site .template-featured::after {
  position: absolute;
  z-index: 3;
  top: 49%;
  width: clamp(34px, 4.6dvh, 50px);
  height: clamp(34px, 4.6dvh, 50px);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--featured-green);
  font-size: clamp(18px, 2.4dvh, 25px);
  box-shadow: 0 12px 26px rgba(10, 26, 23, .12);
}

.template-site .template-featured::before {
  content: "←";
  left: clamp(8px, 1.4vw, 24px);
}

.template-site .template-featured::after {
  content: "→";
  right: clamp(8px, 1.4vw, 24px);
}

.template-featured .template-section-head {
  width: min(var(--template-max), calc(100% - clamp(42px, 6vw, 96px)));
  margin: 0 auto;
  align-items: start;
}

.template-featured .template-section-head p {
  margin: 0 0 4px;
  color: var(--featured-gold);
  font-size: clamp(12px, min(.95vw, 1.8dvh), 16px);
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.template-featured .template-section-head h2 {
  margin: 0;
  color: var(--featured-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, min(4.5vw, 7.2dvh), 72px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: 0;
}

.template-featured .template-section-head h2::after {
  content: "";
  width: clamp(34px, 3.4vw, 54px);
  height: 2px;
  display: block;
  margin-top: clamp(8px, 1.1dvh, 12px);
  background: var(--featured-gold);
}

.template-featured .template-section-head span {
  max-width: 760px;
  margin-top: clamp(8px, 1.3dvh, 14px);
  color: #1f3934;
  font-size: clamp(14px, min(1.15vw, 2dvh), 18px);
  line-height: 1.35;
}

.template-featured .featured-all-btn {
  min-height: clamp(44px, 5.8dvh, 58px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 20px);
  border: 1px solid var(--featured-gold);
  border-radius: 6px;
  background: rgba(255, 255, 255, .42);
  color: var(--featured-green);
  padding: 0 clamp(18px, 2.2vw, 34px);
  font-size: clamp(12px, .98vw, 16px);
  font-weight: 950;
  box-shadow: none;
}

.template-featured .featured-all-btn::before {
  content: "▦";
  color: var(--featured-green);
  font-size: clamp(18px, 1.7vw, 26px);
}

.template-featured .featured-all-btn::after {
  content: "→";
  color: var(--featured-green);
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 500;
}

.template-featured .template-property-grid {
  width: min(var(--template-max), calc(100% - clamp(42px, 6vw, 96px)));
  margin: 0 auto;
  gap: clamp(16px, 2vw, 28px);
}

.template-featured .template-property-card {
  display: grid;
  grid-template-rows: minmax(0, auto) 1fr;
  overflow: hidden;
  border: 1px solid rgba(228, 216, 200, .95);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(25, 34, 31, .11);
}

.template-featured .template-property-media {
  min-height: clamp(142px, 21dvh, 230px);
  background-size: cover;
  background-position: center;
}

.template-featured .template-property-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 43, 37, .16), transparent 48%);
}

.template-featured .template-property-media span {
  z-index: 1;
  top: 14px;
  right: auto;
  bottom: auto;
  left: 14px;
  border-radius: 5px;
  background: var(--featured-green);
  color: #d9a94d;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.template-featured .template-property-card > div {
  align-content: start;
  gap: clamp(7px, 1dvh, 12px);
  padding: clamp(14px, 1.85dvh, 22px) clamp(14px, 1.55vw, 22px);
}

.template-featured .template-property-card h3 {
  margin: 0;
  color: var(--featured-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, min(1.6vw, 2.8dvh), 27px);
  line-height: 1.05;
}

.template-featured .template-property-card p {
  margin: 0;
  color: #455a55;
  font-size: clamp(11px, .86vw, 14px);
  line-height: 1.25;
}

.template-featured .template-property-card p::before {
  content: "⌖";
  margin-right: 6px;
  color: var(--featured-gold);
  font-weight: 900;
}

.template-featured .template-property-card > div > strong {
  color: var(--featured-green);
  font-size: clamp(17px, min(1.55vw, 2.7dvh), 24px);
  font-weight: 950;
}

.template-featured .template-property-card > div > strong::after {
  content: "";
  width: 40px;
  height: 1px;
  display: block;
  margin-top: clamp(7px, 1dvh, 11px);
  background: var(--featured-gold);
}

.template-featured .template-card-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  color: #172f2a;
  font-size: clamp(10px, .78vw, 13px);
}

.template-featured .template-card-facts span {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 6px;
  border-left: 1px solid #eadfce;
  white-space: nowrap;
}

.template-featured .template-card-facts span:first-child {
  justify-content: start;
  border-left: 0;
  padding-left: 0;
}

.template-featured .template-card-facts i {
  color: var(--featured-gold);
  font-style: normal;
  font-size: 14px;
  line-height: 1;
}

.template-featured .template-card-actions {
  display: grid;
  grid-template-columns: .92fr 1.12fr;
  gap: clamp(8px, .85vw, 12px);
  margin-top: clamp(3px, .7dvh, 8px);
}

.template-featured .template-card-actions .btn {
  min-height: clamp(38px, 4.9dvh, 50px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 6px;
  padding: 0 10px;
  font-size: clamp(10px, .82vw, 13px);
  line-height: 1;
  white-space: nowrap;
}

.template-featured .template-card-actions .ghost {
  border-color: var(--featured-gold);
  background: #fff;
  color: var(--featured-green);
}

.template-featured .template-card-actions .gold {
  border-color: var(--featured-gold);
  background: linear-gradient(135deg, #d7a146, #b97724);
  color: #fff;
}

.template-featured .template-card-actions i {
  font-style: normal;
  font-size: 14px;
}

.template-featured .template-featured-rail {
  width: min(var(--template-max), calc(100% - clamp(42px, 6vw, 96px)));
  margin: 0 auto;
  padding-top: clamp(16px, 2.2dvh, 28px);
  border-top: 1px solid var(--featured-line);
}

.template-featured .template-featured-rail article {
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: start;
  gap: clamp(6px, 1dvh, 10px);
  min-height: clamp(108px, 15dvh, 162px);
  padding: clamp(8px, 1.4dvh, 16px) clamp(14px, 2vw, 34px);
  text-align: center;
}

.template-featured .template-featured-rail i {
  width: clamp(54px, 7dvh, 78px);
  height: clamp(54px, 7dvh, 78px);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #efe6d7;
  color: var(--featured-gold);
  font-size: clamp(28px, 3.3dvh, 42px);
}

.template-featured .template-featured-rail strong {
  color: var(--featured-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, min(1.35vw, 2.4dvh), 23px);
  line-height: 1.05;
}

.template-featured .template-featured-rail strong::after {
  content: "";
  width: 40px;
  height: 2px;
  display: block;
  margin: clamp(6px, .9dvh, 10px) auto 0;
  background: var(--featured-gold);
}

.template-featured .template-featured-rail span {
  max-width: 220px;
  color: #1e332f;
  font-size: clamp(11px, .9vw, 15px);
  line-height: 1.35;
}

@media (min-width: 761px) and (max-height: 760px) {
  .template-site .template-featured {
    gap: 12px;
  }

  .template-featured .template-section-head h2 {
    font-size: clamp(30px, min(3.6vw, 6dvh), 56px);
  }

  .template-featured .template-property-media {
    min-height: clamp(118px, 17.5dvh, 170px);
  }

  .template-featured .template-property-card > div {
    gap: 6px;
    padding: 12px 14px;
  }

  .template-featured .template-card-actions .btn {
    min-height: 36px;
  }

  .template-featured .template-featured-rail article {
    min-height: clamp(86px, 13dvh, 112px);
  }
}

@media (max-width: 760px) {
  .template-site .template-featured::before,
  .template-site .template-featured::after {
    display: none;
  }

  .template-featured .template-section-head {
    display: grid;
  }

  .template-featured .template-property-grid {
    grid-template-columns: 1fr;
    overflow: hidden auto;
  }

  .template-featured .template-featured-rail {
    grid-template-columns: 1fr 1fr;
  }
}

/* Section 6 certifications redesign, preserving section dimensions */
.template-site .template-advisor.certification-stage {
  --cert-green: #001f1b;
  --cert-gold: #d09a34;
  --cert-line: rgba(208, 154, 52, .5);
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(280px, .76fr) minmax(240px, .5fr) minmax(560px, 1.1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  grid-template-areas:
    "copy portrait credentials"
    "rail rail rail";
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
  padding: clamp(48px, 6.6dvh, 78px) max(24px, calc((100vw - var(--template-max)) / 2)) clamp(18px, 2.8dvh, 34px);
  border: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .74) 0%, rgba(0, 0, 0, .44) 34%, rgba(0, 0, 0, .22) 50%, rgba(0, 0, 0, .78) 100%),
    radial-gradient(circle at 77% 27%, rgba(208, 154, 52, .16), transparent 34%),
    var(--advisor-bg) center / cover no-repeat !important;
  color: #fff;
}

.template-site .template-advisor.certification-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .62)),
    linear-gradient(90deg, rgba(0, 31, 27, .5), transparent 38%, rgba(0, 31, 27, .62));
  pointer-events: none;
}

.template-site .template-advisor.certification-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 25%;
  z-index: -1;
  border-top: 1px solid rgba(208, 154, 52, .5);
  background: rgba(0, 22, 19, .72);
  pointer-events: none;
}

.certification-stage .advisor-brand-mark {
  position: absolute;
  top: clamp(22px, 3dvh, 38px);
  left: max(24px, calc((100vw - var(--template-max)) / 2));
  z-index: 2;
}

.certification-stage .advisor-brand-mark img {
  width: clamp(82px, 8.4vw, 136px);
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) sepia(.6) saturate(1.3) hue-rotate(350deg);
  opacity: .92;
}

.certification-stage .advisor-main-copy {
  grid-area: copy;
  align-self: center;
  display: grid;
  gap: clamp(10px, 1.45dvh, 18px);
  max-width: 540px;
  min-width: 0;
  padding-top: clamp(40px, 5dvh, 70px);
}

.certification-stage .advisor-kicker {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 22px);
  margin: 0;
  color: var(--cert-gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.certification-stage .advisor-kicker strong {
  color: var(--cert-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, min(4vw, 7dvh), 64px);
  font-weight: 500;
  line-height: 1;
}

.certification-stage .advisor-kicker strong::after {
  content: "";
  width: 1px;
  height: .74em;
  display: inline-block;
  margin-left: clamp(12px, 1.4vw, 22px);
  vertical-align: middle;
  background: var(--cert-gold);
}

.certification-stage .advisor-kicker span {
  color: var(--cert-gold);
  font-size: clamp(12px, min(1vw, 1.8dvh), 18px);
  font-weight: 500;
}

.certification-stage h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, min(7vw, 11dvh), 110px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: 0;
  text-shadow: 0 16px 48px rgba(0, 0, 0, .36);
}

.certification-stage .advisor-main-copy h3 {
  margin: 0;
  color: var(--cert-gold);
  font-size: clamp(17px, min(1.55vw, 2.8dvh), 27px);
  font-weight: 850;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.certification-stage .advisor-main-copy h3::after {
  content: "";
  width: clamp(42px, 4vw, 68px);
  height: 2px;
  display: block;
  margin-top: clamp(10px, 1.4dvh, 16px);
  background: var(--cert-gold);
}

.certification-stage .advisor-main-copy > p:not(.advisor-kicker) {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(13px, min(1.02vw, 1.9dvh), 17px);
  line-height: 1.6;
}

.certification-stage .advisor-appointment-card {
  width: min(430px, 100%);
  min-height: clamp(82px, 12dvh, 120px);
  display: grid;
  grid-template-columns: clamp(48px, 5.6dvh, 68px) 1fr;
  align-items: center;
  gap: clamp(12px, 1.2vw, 18px);
  margin-top: clamp(18px, 2.8dvh, 34px);
  border: 1px solid var(--cert-line);
  background: rgba(0, 0, 0, .22);
  color: #fff;
  padding: clamp(14px, 1.8dvh, 22px) clamp(16px, 1.7vw, 26px);
}

.certification-stage .advisor-appointment-card i {
  display: grid;
  place-items: center;
  color: var(--cert-gold);
  font-size: clamp(28px, 3.6dvh, 42px);
  font-style: normal;
}

.certification-stage .advisor-appointment-card strong,
.certification-stage .advisor-appointment-card small {
  display: block;
}

.certification-stage .advisor-appointment-card strong {
  color: #fff;
  font-size: clamp(12px, .95vw, 15px);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.certification-stage .advisor-appointment-card small {
  margin-top: 7px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(11px, .82vw, 13px);
  line-height: 1.45;
}

.certification-stage .advisor-credential-panel {
  grid-area: credentials;
  align-self: center;
  display: grid;
  gap: clamp(18px, 2.3dvh, 30px);
  min-width: 0;
  padding-top: clamp(28px, 3.4dvh, 48px);
}

.certification-stage .advisor-panel-title {
  display: grid;
  grid-template-columns: minmax(44px, 1fr) auto minmax(44px, 1fr);
  align-items: center;
  gap: clamp(12px, 1.4vw, 22px);
  color: #fff;
  text-align: center;
}

.certification-stage .advisor-panel-title span {
  height: 1px;
  background: var(--cert-line);
}

.certification-stage .advisor-panel-title h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(15px, min(1.25vw, 2.3dvh), 22px);
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.certification-stage .advisor-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.certification-stage .advisor-cert-item {
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: clamp(8px, 1.1dvh, 14px);
  min-height: clamp(190px, 29dvh, 290px);
  border: 0;
  border-left: 1px solid var(--cert-line);
  background: transparent;
  color: #fff;
  padding: clamp(10px, 1.4dvh, 18px) clamp(14px, 1.7vw, 24px);
  text-align: center;
}

.certification-stage .advisor-cert-item:first-child {
  border-left: 0;
}

button.advisor-cert-item {
  cursor: pointer;
}

.certification-stage .advisor-cert-item i {
  width: clamp(58px, 7.2dvh, 84px);
  height: clamp(58px, 7.2dvh, 84px);
  display: grid;
  place-items: center;
  border: 1px solid var(--cert-gold);
  border-radius: 999px;
  color: var(--cert-gold);
  font-size: clamp(30px, 4dvh, 48px);
  font-style: normal;
}

.certification-stage .advisor-cert-item small {
  color: var(--cert-gold);
  font-size: clamp(10px, .76vw, 12px);
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.certification-stage .advisor-cert-item strong {
  color: #fff;
  font-size: clamp(19px, min(1.7vw, 3dvh), 28px);
  line-height: 1.1;
}

.certification-stage .advisor-cert-item span {
  color: rgba(255, 255, 255, .88);
  font-size: clamp(11px, .86vw, 14px);
  line-height: 1.55;
}

.certification-stage .advisor-cert-item em {
  color: var(--cert-gold);
  font-size: clamp(10px, .78vw, 13px);
  font-style: normal;
  font-weight: 800;
}

.certification-stage .advisor-cert-item em::before {
  content: "✓ ";
}

.certification-stage .support-title {
  margin-top: clamp(4px, .7dvh, 10px);
}

.certification-stage .advisor-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.certification-stage .advisor-support-grid article {
  min-width: 0;
  min-height: clamp(118px, 17dvh, 170px);
  display: grid;
  align-content: start;
  gap: clamp(8px, 1.1dvh, 14px);
  border-left: 1px solid rgba(208, 154, 52, .38);
  padding: clamp(8px, 1.4dvh, 16px) clamp(14px, 1.7vw, 24px);
}

.certification-stage .advisor-support-grid article:first-child {
  border-left: 0;
}

.certification-stage .advisor-support-grid img {
  width: min(150px, 100%);
  height: clamp(38px, 5.8dvh, 68px);
  object-fit: contain;
  object-position: left center;
}

.certification-stage .advisor-support-grid strong {
  color: #fff;
  font-size: clamp(28px, min(2.7vw, 5.2dvh), 48px);
  line-height: .95;
}

.certification-stage .advisor-support-grid span {
  color: rgba(255, 255, 255, .84);
  font-size: clamp(11px, .86vw, 14px);
  line-height: 1.55;
}

.template-site .template-advisor.certification-stage .template-advisor-rail {
  grid-area: rail;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: clamp(12px, 2dvh, 26px) 0 0;
  border-top: 1px solid rgba(208, 154, 52, .48);
  border-radius: 0;
  background: transparent;
  color: #fff;
  overflow: visible;
}

.template-site .template-advisor.certification-stage .template-advisor-rail article {
  min-height: clamp(92px, 14dvh, 150px);
  display: grid;
  justify-items: center;
  align-content: start;
  gap: clamp(7px, 1dvh, 12px);
  padding: clamp(14px, 2dvh, 24px) clamp(12px, 1.6vw, 24px) 0;
  border-right: 1px solid rgba(208, 154, 52, .42);
  text-align: center;
}

.template-site .template-advisor.certification-stage .template-advisor-rail article:last-child {
  border-right: 0;
}

.template-site .template-advisor.certification-stage .template-advisor-rail i {
  color: var(--cert-gold);
  font-size: clamp(28px, 4.2dvh, 48px);
  font-style: normal;
}

.template-site .template-advisor.certification-stage .template-advisor-rail strong {
  color: var(--cert-gold);
  font-size: clamp(10px, .82vw, 13px);
  font-weight: 950;
  letter-spacing: .04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.template-site .template-advisor.certification-stage .template-advisor-rail span {
  max-width: 220px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(10px, .78vw, 13px);
  line-height: 1.45;
}

@media (min-width: 761px) and (max-height: 760px) {
  .template-site .template-advisor.certification-stage {
    gap: 16px;
    padding-top: 44px;
    padding-bottom: 14px;
  }

  .certification-stage .advisor-main-copy {
    gap: 8px;
    padding-top: 34px;
  }

  .certification-stage h2 {
    font-size: clamp(42px, min(5.6vw, 9dvh), 78px);
  }

  .certification-stage .advisor-cert-item {
    min-height: clamp(154px, 26dvh, 205px);
    gap: 7px;
  }

  .certification-stage .advisor-support-grid article {
    min-height: clamp(92px, 14dvh, 126px);
  }

  .template-site .template-advisor.certification-stage .template-advisor-rail article {
    min-height: clamp(76px, 12dvh, 100px);
  }
}

@media (max-width: 1180px) {
  .template-site .template-advisor.certification-stage {
    grid-template-columns: minmax(260px, .82fr) minmax(0, 1fr);
    grid-template-areas:
      "copy credentials"
      "rail rail";
    background-position: 46% center !important;
  }

  .certification-stage .advisor-cert-grid,
  .certification-stage .advisor-support-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .template-site .template-advisor.certification-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "credentials"
      "rail";
    align-content: start;
    overflow: hidden auto;
    background-position: center top !important;
  }

  .certification-stage .advisor-brand-mark {
    display: none;
  }

  .certification-stage .advisor-main-copy {
    padding-top: 0;
  }

  .certification-stage .advisor-cert-grid,
  .certification-stage .advisor-support-grid,
  .template-site .template-advisor.certification-stage .template-advisor-rail {
    grid-template-columns: 1fr;
  }

  .certification-stage .advisor-cert-item,
  .certification-stage .advisor-support-grid article,
  .template-site .template-advisor.certification-stage .template-advisor-rail article {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(208, 154, 52, .34);
  }
}

/* Site-wide section heading system and requested final adjustments */
.template-site {
  --site-title-font: Georgia, "Times New Roman", serif;
  --site-h1-size: clamp(48px, min(6vw, 9.5dvh), 86px);
  --site-h2-size: clamp(30px, min(3.35vw, 5.4dvh), 54px);
  --site-kicker-size: clamp(11px, min(.9vw, 1.65dvh), 15px);
  --site-copy-size: clamp(13px, min(1vw, 1.8dvh), 17px);
  --site-top-space: 10dvh;
  --site-section-x: max(24px, calc((100vw - var(--template-max)) / 2));
}

.hero-section-one .premium-hero-copy h1 {
  font-family: var(--site-title-font);
  font-size: var(--site-h1-size);
  line-height: .96;
}

.template-help-heading h2,
.template-map-section .template-section-title.split h2,
.template-featured .template-section-head h2,
.template-invest-copy h2,
.certification-stage h2,
.template-process .template-section-title h2,
.template-choice-panel h2,
.template-private-panel h2 {
  max-width: 820px;
  margin-left: 0;
  color: inherit;
  font-family: var(--site-title-font);
  font-size: var(--site-h2-size) !important;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
}

.template-help-heading h2::after,
.template-map-section .template-section-title.split h2::after,
.template-featured .template-section-head h2::after,
.template-invest-copy h2::after,
.certification-stage h2::after,
.template-process .template-section-title h2::after,
.template-choice-panel h2::after,
.template-private-panel h2::after {
  content: "";
  width: clamp(38px, 3.6vw, 62px);
  height: 2px;
  display: block;
  margin-top: clamp(8px, 1.2dvh, 14px);
  background: #c89135;
}

.template-section-title p,
.template-section-head p,
.template-invest-copy p,
.template-choice-panel > p,
.template-private-panel > p,
.section-two-kicker,
.certification-stage .advisor-kicker {
  width: max-content;
  max-width: 100%;
  margin: 0 0 clamp(8px, 1.2dvh, 14px);
  color: #c89135;
  font-size: var(--site-kicker-size);
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
}

.section-two-kicker::after,
.template-section-title p::after,
.template-section-head p::after,
.template-invest-copy p::after,
.template-choice-panel > p::after,
.template-private-panel > p::after {
  content: "";
  display: inline-block;
  width: clamp(46px, 4.2vw, 72px);
  height: 1px;
  margin-left: 14px;
  vertical-align: middle;
  background: currentColor;
}

.template-section-title span,
.template-section-head span,
.template-invest-copy span,
.template-choice-panel > span,
.template-private-panel > span,
.template-help-heading > p:not(.section-two-kicker) {
  max-width: 680px;
  margin-left: 0;
  font-size: var(--site-copy-size);
  line-height: 1.5;
  text-align: left;
}

@media (min-width: 761px) {
  .template-site .template-help {
    --section-two-top: var(--site-top-space);
  }

  .template-help-heading {
    padding-top: 0;
  }

  .template-featured,
  .template-invest-band,
  .template-advisor.certification-stage,
  .template-process,
  .template-advice {
    align-content: start !important;
    padding-top: var(--site-top-space) !important;
  }

  .template-map-section .template-section-title.split,
  .template-featured .template-section-head,
  .template-process .template-section-title {
    align-content: start;
    justify-items: start;
    text-align: left;
  }
}

/* Map filters, icon removal and stable selection layout */
.template-map-section .template-stat-row div::before,
.template-map-section .template-stat-row div:nth-child(1)::before,
.template-map-section .template-stat-row div:nth-child(2)::before,
.template-map-section .template-stat-row div:nth-child(3)::before,
.template-map-section .template-stat-row div:nth-child(4)::before {
  content: none !important;
  display: none !important;
}

.template-map-section .template-stat-row div {
  min-height: clamp(46px, 7dvh, 74px);
}

.template-site .map-filter-controls {
  gap: 10px;
  margin-bottom: 14px;
}

.template-site .map-filter-select {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.template-site .map-filter-select span {
  color: #5b6b66;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.template-site .map-filter-select select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #ded8cf;
  border-radius: 8px;
  background: #fff;
  color: #102e28;
  padding: 0 12px;
  font-weight: 800;
}

.template-site .map-list {
  max-height: calc(100% - 152px);
}

.template-site .map-empty {
  border: 1px dashed #d8cbb7;
  border-radius: 8px;
  color: #51645f;
  padding: 14px;
  text-align: center;
}

.template-site .premium-map-shell,
.template-site .premium-map,
.template-site .google-map-frame {
  min-height: 0 !important;
  max-height: none !important;
}

.template-site .map-selected-panel {
  max-height: min(76%, 620px);
  overflow: hidden auto;
}

/* Detail lightbox sizing and close behavior */
.public-lightbox {
  z-index: 240;
  cursor: pointer;
}

.public-lightbox-panel {
  cursor: default;
}

.property-lightbox-panel {
  width: 90vw !important;
  max-width: 90vw !important;
  max-height: 90dvh;
}

.lightbox-close {
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 20px;
  line-height: 1;
}

/* Investment section: Cancun panorama background and transparent metrics */
.template-invest-band {
  background:
    linear-gradient(90deg, rgba(0, 26, 31, .92) 0%, rgba(0, 43, 37, .58) 52%, rgba(0, 43, 37, .12) 100%),
    url("assets/imagenes/venta/riviera/cancun/solymar/15.webp") center / cover fixed !important;
}

.template-invest-metrics article {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Investment section final redesign */
.template-site .template-invest-band {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 3dvh, 34px);
  align-content: stretch !important;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  padding: var(--site-top-space) var(--site-section-x) 0 !important;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(0, 31, 27, .98) 0%, rgba(0, 31, 27, .72) 42%, rgba(0, 31, 27, .18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 31, 27, .92)),
    url("assets/imagenes/venta/riviera/cancun/cancun.webp") !important;
  background-position: center;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
  color: #fff;
}

.template-site .template-invest-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 28%, rgba(214, 163, 69, .16), transparent 30%),
    linear-gradient(180deg, rgba(0, 31, 27, .04), rgba(0, 31, 27, .24));
}

.template-site .template-invest-copy {
  width: var(--template-max);
  max-width: 100%;
  margin: 0 auto;
}

.template-site .template-invest-copy h2 {
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-family: var(--site-title-font);
  font-size: clamp(34px, min(4.4vw, 7.2dvh), 76px) !important;
  font-weight: 700;
  line-height: .96;
  letter-spacing: 0;
  white-space: nowrap;
}

.template-site .template-invest-copy h2::after {
  content: "";
  display: block;
  width: clamp(46px, 4.2vw, 72px);
  height: 2px;
  margin-top: clamp(9px, 1.4dvh, 16px);
  background: #d6a345;
}

.template-site .template-invest-copy h2 span {
  color: #d6a345;
  display: inline;
  font-family: inherit;
  font-size: inherit !important;
  font-weight: inherit;
  line-height: inherit;
}

.template-site .template-invest-copy > span {
  display: block;
  max-width: 720px;
  margin-top: clamp(10px, 1.6dvh, 18px);
  color: rgba(255, 255, 255, .94);
  font-size: var(--site-copy-size);
  line-height: 1.5;
}

.template-site .template-invest-metrics {
  width: var(--template-max);
  max-width: 100%;
  min-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 26px);
  align-items: center;
}

.template-site .template-invest-metrics article {
  position: relative;
  min-height: clamp(178px, 30dvh, 282px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(10px, 1.4dvh, 16px);
  border: 1px solid rgba(214, 163, 69, .66) !important;
  border-radius: 14px;
  background: rgba(0, 43, 37, .6) !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .18) !important;
  padding: clamp(18px, 2.4dvh, 28px) clamp(12px, 1.4vw, 22px);
  text-align: center;
  backdrop-filter: blur(9px) !important;
}

.template-site .template-invest-metrics i {
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(56px, 8dvh, 86px);
  height: clamp(56px, 8dvh, 86px);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8bf70, #bd8127);
  color: #fff;
  font-size: clamp(26px, 3.8dvh, 44px);
  font-style: normal;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
}

.template-site .template-invest-metrics strong {
  color: #d6a345;
  font-family: var(--site-title-font);
  font-size: clamp(26px, min(2.5vw, 4.6dvh), 46px);
  font-weight: 700;
  line-height: 1;
}

.template-site .template-invest-metrics strong::after {
  content: "";
  display: block;
  width: min(100%, 160px);
  height: 1px;
  margin: clamp(9px, 1.2dvh, 14px) auto 0;
  background: rgba(214, 163, 69, .72);
}

.template-site .template-invest-metrics span {
  max-width: 210px;
  color: rgba(255, 255, 255, .95);
  font-size: clamp(12px, min(.95vw, 1.75dvh), 16px);
  line-height: 1.45;
}

.template-invest-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: calc(100% + (var(--site-section-x) * 2));
  min-height: clamp(96px, 16dvh, 150px);
  margin: 0 calc(var(--site-section-x) * -1);
  border-top: 1px solid rgba(214, 163, 69, .28);
  background: rgba(0, 43, 37, .74);
  backdrop-filter: blur(10px);
}

.template-invest-benefits article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 3px clamp(12px, 1.3vw, 20px);
  align-content: center;
  min-width: 0;
  padding: 0 clamp(14px, 2.2vw, 34px);
  border-right: 1px solid rgba(214, 163, 69, .34);
}

.template-invest-benefits article:last-child {
  border-right: 0;
}

.template-invest-benefits i {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: clamp(44px, 6.5dvh, 70px);
  height: clamp(44px, 6.5dvh, 70px);
  border: 1px solid #d6a345;
  border-radius: 50%;
  color: #d6a345;
  font-size: clamp(20px, 3dvh, 34px);
  font-style: normal;
}

.template-invest-benefits strong {
  color: #fff;
  font-size: clamp(14px, 1.2vw, 21px);
  line-height: 1.2;
}

.template-invest-benefits span {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(10px, .78vw, 13px);
  line-height: 1.35;
}

.template-site .template-invest-claim {
  display: none;
}

@media (max-width: 1180px) {
  .template-site .template-invest-band {
    gap: 16px;
    padding-top: clamp(42px, 7dvh, 74px) !important;
  }

  .template-site .template-invest-copy h2 {
    font-size: clamp(28px, 4.2vw, 48px) !important;
  }

  .template-site .template-invest-metrics {
    gap: 10px;
  }

  .template-site .template-invest-metrics article {
    min-height: clamp(160px, 28dvh, 230px);
  }

  .template-invest-benefits article {
    padding: 0 14px;
  }
}

@media (max-width: 760px) {
  .template-site .template-invest-band {
    gap: 10px;
    padding: 18px 14px 0 !important;
    background-attachment: scroll;
  }

  .template-site .template-invest-copy,
  .template-site .template-invest-metrics {
    width: 100%;
  }

  .template-site .template-invest-copy h2 {
    font-size: clamp(21px, 6.5vw, 31px) !important;
  }

  .template-site .template-invest-copy > span {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.32;
  }

  .template-site .template-invest-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: center;
  }

  .template-site .template-invest-metrics article {
    min-height: 100px;
    gap: 5px;
    padding: 24px 8px 8px;
  }

  .template-site .template-invest-metrics article:nth-child(5) {
    grid-column: 1 / -1;
  }

  .template-site .template-invest-metrics i {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }

  .template-site .template-invest-metrics strong {
    font-size: 20px;
  }

  .template-site .template-invest-metrics span {
    font-size: 10px;
    line-height: 1.25;
  }

  .template-invest-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% + 28px);
    min-height: 92px;
    margin-right: -14px;
    margin-left: -14px;
  }

  .template-invest-benefits article {
    gap: 6px;
    padding: 8px 12px;
  }

  .template-invest-benefits i {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .template-invest-benefits strong {
    font-size: 11px;
  }

  .template-invest-benefits span {
    display: none;
  }
}

/* Certifications section final cleanup */
.certification-stage .advisor-brand-mark {
  display: none !important;
}

.template-site .template-advisor.certification-stage {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .42) 34%, rgba(0, 0, 0, .18) 50%, rgba(0, 0, 0, .78) 100%),
    radial-gradient(circle at 77% 27%, rgba(208, 154, 52, .16), transparent 34%),
    var(--advisor-bg) !important;
  background-color: #070807 !important;
  background-position: center, center, center center !important;
  background-repeat: no-repeat !important;
  background-size: cover, cover, contain !important;
}

.template-site .template-advisor.certification-stage::after {
  border-top: 0 !important;
}

.certification-stage .advisor-kicker {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
}

.certification-stage .advisor-kicker strong {
  color: #c89135;
  font-family: inherit;
  font-size: var(--site-kicker-size);
  font-weight: 950;
  line-height: 1;
}

.certification-stage .advisor-kicker strong::after {
  height: 1em;
  margin-left: clamp(10px, 1.2vw, 18px);
}

.certification-stage .advisor-kicker span {
  color: #c89135;
  font-size: var(--site-kicker-size);
  font-weight: 950;
}

.certification-stage .support-title span {
  display: none;
}

.certification-stage .advisor-support-grid article {
  border-top: 0 !important;
}

/* Dual buyer/seller process section */
.template-site .template-process.process-dual {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: clamp(12px, 2dvh, 22px);
  align-content: stretch !important;
  padding: var(--site-top-space) var(--site-section-x) clamp(18px, 3.2dvh, 34px) !important;
  overflow: hidden;
  color: #062a24;
  background-image:
    linear-gradient(90deg, rgba(250, 247, 238, .98) 0%, rgba(250, 247, 238, .88) 40%, rgba(250, 247, 238, .58) 74%, rgba(250, 247, 238, .78) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(250, 247, 238, .9)),
    url("assets/imagenes/venta/riviera/playa/corasol/area/fachada.png");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.template-site .template-process.process-dual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 92% 90%, rgba(0, 43, 37, .14), transparent 18%),
    radial-gradient(circle at 2% 86%, rgba(0, 43, 37, .12), transparent 18%),
    linear-gradient(180deg, transparent 0 75%, rgba(255, 255, 255, .44) 100%);
}

.process-dual-title {
  width: var(--template-max);
  max-width: 100%;
  margin: 0 auto !important;
}

.process-dual-title span strong {
  color: #c89135;
  font-weight: 950;
}

.process-dual-overview,
.process-dual-steps,
.process-cta-row {
  width: var(--template-max);
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.process-dual-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 54px);
  align-items: end;
}

.process-dual-overview article {
  display: grid;
  grid-template-columns: clamp(52px, 6dvh, 82px) minmax(0, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
  align-items: center;
  min-width: 0;
}

.process-dual-overview article:nth-child(2) {
  padding-left: clamp(18px, 3vw, 54px);
  border-left: 1px solid rgba(200, 145, 53, .52);
}

.process-dual-overview i {
  display: grid;
  place-items: center;
  width: clamp(52px, 6dvh, 82px);
  height: clamp(52px, 6dvh, 82px);
  border-radius: 50%;
  background: #002b25;
  color: #d6a345;
  font-size: clamp(24px, 3.2dvh, 42px);
  font-style: normal;
  box-shadow: 0 16px 38px rgba(0, 43, 37, .16);
}

.process-dual-overview article:nth-child(2) i {
  background: linear-gradient(135deg, #d6a345, #b77b21);
  color: #fff;
}

.process-dual-overview span {
  color: #12231f;
  font-size: clamp(10px, .78vw, 13px);
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.process-dual-overview h3 {
  margin: 2px 0 clamp(5px, .8dvh, 9px);
  color: #071d19;
  font-family: var(--site-title-font);
  font-size: clamp(22px, min(2.2vw, 3.4dvh), 36px);
  line-height: .95;
  text-transform: uppercase;
}

.process-dual-overview h3::after {
  content: "";
  display: block;
  width: clamp(28px, 2.4vw, 44px);
  height: 2px;
  margin-top: clamp(5px, .8dvh, 9px);
  background: #c89135;
}

.process-dual-overview p {
  max-width: 430px;
  margin: 0;
  color: #273c37;
  font-size: clamp(11px, .92vw, 15px);
  line-height: 1.42;
}

.process-dual-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 50px);
  align-self: stretch;
  min-height: 0;
}

.process-dual-steps::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(200, 145, 53, .42);
}

.process-step-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(6px, .8vw, 12px);
  min-width: 0;
  min-height: 0;
}

.process-step-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  justify-items: center;
  align-content: start;
  min-width: 0;
  min-height: 0;
  padding: clamp(10px, 1.5dvh, 18px) clamp(6px, .75vw, 12px);
  border: 1px solid rgba(200, 145, 53, .24);
  border-radius: 16px;
  background: rgba(255, 255, 255, .54);
  box-shadow: 0 14px 34px rgba(28, 20, 10, .05);
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.process-step-card::after {
  content: "";
  position: absolute;
  top: clamp(28px, 4dvh, 44px);
  right: -11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c89135;
}

.process-step-track .process-step-card:last-child::after {
  display: none;
}

.process-step-card i {
  color: #c89135;
  font-size: clamp(22px, min(2vw, 3.3dvh), 34px);
  font-style: normal;
  line-height: 1;
}

.process-step-card strong {
  display: block;
  margin-top: clamp(6px, 1dvh, 10px);
  color: #c89135;
  font-size: clamp(13px, min(1vw, 1.9dvh), 18px);
  line-height: 1;
}

.process-step-card h4 {
  margin: clamp(6px, 1dvh, 10px) 0 0;
  color: #071d19;
  font-family: inherit;
  font-size: clamp(9px, min(.74vw, 1.35dvh), 12px);
  font-weight: 950;
  line-height: 1.35;
  text-transform: uppercase;
}

.process-step-card span {
  display: block;
  margin-top: clamp(8px, 1.2dvh, 12px);
  color: #1f302c;
  font-size: clamp(9px, min(.72vw, 1.25dvh), 12px);
  line-height: 1.48;
}

.process-cta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  min-height: clamp(74px, 12dvh, 116px);
  border: 1px solid rgba(200, 145, 53, .72);
  border-radius: 18px;
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 18px 46px rgba(28, 20, 10, .07);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.process-cta-row button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px clamp(14px, 1.8vw, 24px);
  min-width: 0;
  border: 0;
  background: transparent;
  color: #071d19;
  padding: clamp(12px, 2dvh, 22px) clamp(18px, 2.6vw, 36px);
  text-align: left;
  cursor: pointer;
}

.process-cta-row button + button {
  border-left: 1px solid rgba(0, 43, 37, .32);
}

.process-cta-row button:hover {
  background: rgba(200, 145, 53, .12);
}

.process-cta-row button i {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: clamp(46px, 6dvh, 72px);
  height: clamp(46px, 6dvh, 72px);
  border-radius: 50%;
  background: #002b25;
  color: #d6a345;
  font-style: normal;
  font-size: clamp(22px, 2.9dvh, 34px);
}

.process-cta-row button:nth-child(2) i {
  background: linear-gradient(135deg, #d6a345, #b77b21);
  color: #fff;
}

.process-cta-row button span {
  color: #1f302c;
  font-size: clamp(11px, .9vw, 15px);
}

.process-cta-row button strong {
  color: #071d19;
  font-family: var(--site-title-font);
  font-size: clamp(18px, min(1.8vw, 3dvh), 30px);
  font-weight: 700;
  line-height: 1.05;
}

.process-cta-row button em {
  color: #c89135;
  font-style: normal;
}

.process-cta-row button b {
  grid-row: 1 / 3;
  color: #071d19;
  font-size: clamp(24px, 3.2dvh, 38px);
  font-weight: 400;
}

@media (max-width: 1180px) {
  .template-site .template-process.process-dual {
    gap: 10px;
    padding-top: clamp(42px, 7dvh, 74px) !important;
  }

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

  .process-step-card {
    padding: clamp(8px, 1.1dvh, 14px);
  }

  .process-step-card span {
    font-size: clamp(9px, .95vw, 11px);
    line-height: 1.32;
  }
}

@media (max-width: 760px) {
  .template-site .template-process.process-dual {
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    gap: 8px;
    padding: 18px 14px !important;
    background-attachment: scroll;
  }

  .process-dual-title,
  .process-dual-overview,
  .process-dual-steps,
  .process-cta-row {
    width: 100%;
  }

  .process-dual-title h2 {
    font-size: clamp(28px, 9vw, 40px) !important;
  }

  .process-dual-title span {
    font-size: 12px;
    line-height: 1.25;
  }

  .process-dual-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .process-dual-overview article,
  .process-dual-overview article:nth-child(2) {
    grid-template-columns: 34px 1fr;
    gap: 8px;
    padding-left: 0;
    border-left: 0;
  }

  .process-dual-overview i {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .process-dual-overview span {
    font-size: 8px;
  }

  .process-dual-overview h3 {
    font-size: 14px;
  }

  .process-dual-overview p {
    display: none;
  }

  .process-dual-steps {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-dual-steps::before {
    display: none;
  }

  .process-step-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .process-step-card {
    border-radius: 10px;
    padding: 7px 5px;
  }

  .process-step-card::after,
  .process-step-card span {
    display: none;
  }

  .process-step-card i {
    font-size: 17px;
  }

  .process-step-card strong {
    margin-top: 4px;
    font-size: 12px;
  }

  .process-step-card h4 {
    margin-top: 4px;
    font-size: 8px;
    line-height: 1.15;
  }

  .process-cta-row {
    grid-template-columns: 1fr;
    min-height: 86px;
    border-radius: 12px;
  }

  .process-cta-row button {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    padding: 8px 12px;
  }

  .process-cta-row button + button {
    border-top: 1px solid rgba(0, 43, 37, .22);
    border-left: 0;
  }

  .process-cta-row button i {
    width: 32px;
    height: 32px;
    font-size: 17px;
  }

  .process-cta-row button span {
    font-size: 10px;
  }

  .process-cta-row button strong {
    font-size: 15px;
  }

  .process-cta-row button b {
    font-size: 20px;
  }
}

/* Full-screen FAQ section */
.template-site .template-faq-showcase {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 3dvh, 34px);
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  padding: var(--site-top-space) var(--site-section-x) 0;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(0, 17, 15, .98) 0%, rgba(0, 30, 26, .9) 42%, rgba(0, 12, 11, .42) 100%),
    linear-gradient(180deg, rgba(0, 12, 11, .24) 0%, rgba(0, 29, 25, .94) 100%),
    url("assets/imagenes/venta/riviera/cancun/solymar/15.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.template-site .template-faq-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(200, 145, 53, .16) 0 1px, transparent 1px 76px) left center / 92px 92px no-repeat,
    radial-gradient(circle at 86% 12%, rgba(200, 145, 53, .16), transparent 28%);
  opacity: .75;
}

.faq-showcase-title {
  width: var(--template-max);
  max-width: 100%;
  margin: 0 auto !important;
  text-align: left;
}

.faq-showcase-title h2 {
  max-width: min(100%, 1120px);
  margin: 0;
  color: #fff;
  font-family: var(--site-title-font);
  font-size: var(--site-h2-size) !important;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
}

.faq-showcase-title h2 span {
  color: #d6a345;
}

.faq-showcase-title strong {
  display: block;
  max-width: 920px;
  margin-top: clamp(10px, 1.4dvh, 16px);
  color: rgba(255, 255, 255, .9);
  font-size: var(--site-copy-size);
  font-weight: 500;
  line-height: 1.45;
}

.faq-showcase-layout {
  width: var(--template-max);
  max-width: 100%;
  min-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .62fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: stretch;
}

.faq-accordion-list {
  display: grid;
  gap: clamp(8px, 1.2dvh, 14px);
  min-height: 0;
  max-height: 100%;
  overflow: hidden auto;
}

.faq-accordion-list details {
  border: 1px solid rgba(200, 145, 53, .48);
  border-radius: 8px;
  background: rgba(0, 31, 27, .62);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .14);
  backdrop-filter: blur(8px);
}

.faq-accordion-list summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(14px, 1.7vw, 22px);
  align-items: center;
  min-height: clamp(56px, 7.8dvh, 76px);
  padding: 0 clamp(16px, 2vw, 28px);
  cursor: pointer;
  color: #fff;
  font-size: clamp(16px, min(1.45vw, 2.4dvh), 24px);
  font-weight: 850;
  list-style: none;
}

.faq-accordion-list summary::-webkit-details-marker {
  display: none;
}

.faq-accordion-list summary i {
  display: grid;
  place-items: center;
  width: clamp(34px, 4.6dvh, 48px);
  height: clamp(34px, 4.6dvh, 48px);
  border: 1px solid #c89135;
  border-radius: 50%;
  color: #d6a345;
  font-style: normal;
  font-size: clamp(15px, 1.8dvh, 22px);
}

.faq-accordion-list summary span {
  min-width: 0;
}

.faq-accordion-list summary b {
  width: 28px;
  color: #d6a345;
  font-size: 0;
  font-weight: 400;
  text-align: center;
}

.faq-accordion-list summary b::before {
  content: "+";
  font-size: clamp(24px, 3.5dvh, 36px);
}

.faq-accordion-list details[open] summary b::before {
  content: "-";
}

.faq-accordion-list details[open] summary span {
  color: #d6a345;
}

.faq-accordion-list p {
  max-width: 760px;
  margin: 0;
  padding: 0 clamp(20px, 2.5vw, 96px) clamp(18px, 2.6dvh, 26px) clamp(64px, 6vw, 100px);
  color: rgba(255, 255, 255, .88);
  font-size: clamp(13px, min(1.05vw, 1.85dvh), 17px);
  line-height: 1.65;
}

.faq-help-card {
  box-sizing: border-box;
  align-self: center;
  display: grid;
  justify-items: center;
  gap: clamp(10px, 1.55dvh, 18px);
  align-content: center;
  min-height: 0;
  height: clamp(300px, 48dvh, 430px);
  max-height: 100%;
  border: 1px solid rgba(200, 145, 53, .82);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(0, 57, 49, .82), rgba(0, 29, 25, .94));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
  padding: clamp(20px, 3.2dvh, 36px);
  text-align: center;
  overflow: hidden;
}

.faq-help-card > i {
  display: grid;
  place-items: center;
  width: clamp(58px, 8dvh, 86px);
  height: clamp(58px, 8dvh, 86px);
  border: 2px solid #d6a345;
  border-radius: 50%;
  color: #d6a345;
  font-size: clamp(28px, 4dvh, 46px);
  font-style: normal;
  line-height: .6;
}

.faq-help-card h3 {
  max-width: 360px;
  margin: 0;
  color: #fff;
  font-family: var(--site-title-font);
  font-size: clamp(24px, min(2vw, 3.5dvh), 36px);
  font-weight: 700;
  line-height: 1.08;
}

.faq-help-card h3::before {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 0 auto clamp(14px, 2dvh, 22px);
  background: #d6a345;
}

.faq-help-card p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.5;
}

.faq-help-card .btn {
  display: inline-grid;
  place-items: center;
  min-height: clamp(44px, 6dvh, 58px);
  border: 0;
  border-radius: 7px;
  background: linear-gradient(90deg, #d09231, #e3ad45);
  color: #071d19;
  padding: 0 clamp(24px, 3.2vw, 46px);
  font-size: clamp(12px, .95vw, 16px);
  font-weight: 950;
  text-transform: uppercase;
}

.faq-whatsapp {
  display: grid;
  gap: clamp(10px, 1.4dvh, 14px);
  width: 100%;
  max-width: 330px;
  margin-top: clamp(4px, 1dvh, 10px);
}

.faq-whatsapp > span {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  color: #d6a345;
  font-size: clamp(12px, .9vw, 15px);
}

.faq-whatsapp > span::before,
.faq-whatsapp > span::after {
  content: "";
  height: 1px;
  background: rgba(200, 145, 53, .58);
}

.faq-whatsapp a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 12px;
  align-items: center;
  color: #fff;
  text-align: left;
  text-decoration: none;
}

.faq-whatsapp a i {
  grid-row: 1 / 3;
  color: #d6a345;
  font-size: clamp(36px, 5dvh, 54px);
  font-style: normal;
}

.faq-whatsapp a strong {
  color: #d6a345;
  font-size: clamp(14px, 1.1vw, 18px);
}

.faq-whatsapp a small {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(11px, .88vw, 14px);
}

.faq-benefit-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: calc(100% + (var(--site-section-x) * 2));
  margin: 0 calc(var(--site-section-x) * -1);
  min-height: clamp(84px, 14dvh, 134px);
  border-top: 1px solid rgba(200, 145, 53, .28);
  background: rgba(0, 43, 37, .76);
  backdrop-filter: blur(10px);
}

.faq-benefit-row article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
  align-items: center;
  min-width: 0;
  padding: 0 clamp(18px, 4vw, 74px);
  border-right: 1px solid rgba(200, 145, 53, .32);
}

.faq-benefit-row article:last-child {
  border-right: 0;
}

.faq-benefit-row i {
  display: grid;
  place-items: center;
  width: clamp(42px, 6dvh, 66px);
  height: clamp(42px, 6dvh, 66px);
  border: 1px solid #c89135;
  border-radius: 50%;
  color: #d6a345;
  font-style: normal;
  font-size: clamp(20px, 3dvh, 34px);
}

.faq-benefit-row span {
  color: #fff;
  font-size: clamp(14px, 1.25vw, 22px);
  line-height: 1.2;
}

@media (max-width: 1180px) {
  .template-site .template-faq-showcase {
    gap: 14px;
    padding-top: clamp(42px, 7dvh, 74px);
  }

  .faq-showcase-layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .48fr);
    gap: 18px;
  }

  .faq-help-card {
    min-height: 0;
    padding: 22px;
  }

  .faq-accordion-list summary {
    min-height: 52px;
    font-size: clamp(14px, 1.6vw, 18px);
  }

  .faq-accordion-list p {
    line-height: 1.42;
  }

  .faq-benefit-row article {
    padding: 0 18px;
  }
}

@media (max-width: 760px) {
  .template-site .template-faq-showcase {
    gap: 10px;
    padding: 18px 14px 0;
    background-attachment: scroll;
  }

  .faq-showcase-title,
  .faq-showcase-layout {
    width: 100%;
  }

  .faq-showcase-title h2 {
    font-size: clamp(27px, 8.4vw, 38px) !important;
  }

  .faq-showcase-title strong {
    font-size: 12px;
    line-height: 1.3;
  }

  .faq-showcase-layout {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .faq-help-card {
    display: none;
  }

  .faq-accordion-list {
    gap: 7px;
  }

  .faq-accordion-list summary {
    min-height: 44px;
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    gap: 10px;
    padding: 0 12px;
    font-size: 13px;
  }

  .faq-accordion-list summary i {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .faq-accordion-list p {
    max-height: 92px;
    padding: 0 14px 12px 56px;
    overflow: hidden auto;
    font-size: 11px;
    line-height: 1.35;
  }

  .faq-benefit-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% + 28px);
    min-height: 78px;
    margin-right: -14px;
    margin-left: -14px;
  }

  .faq-benefit-row article {
    gap: 8px;
    padding: 8px 12px;
  }

  .faq-benefit-row i {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .faq-benefit-row span {
    font-size: 11px;
  }
}

/* Combined final contact + footer section */
.template-site .template-final-footer {
  --final-gold: #d19a37;
  --final-green: #002b25;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: minmax(0, 46%) minmax(0, 54%);
  width: 100%;
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(0, 31, 27, .96) 0%, rgba(0, 31, 27, .72) 43%, rgba(0, 0, 0, .42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .16) 0%, rgba(0, 31, 27, .88) 100%),
    url("assets/imagenes/venta/riviera/cancun/solymar/15.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.template-site .template-final-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(209, 154, 55, .12), transparent 1px) 0 0 / 120px 100%,
    radial-gradient(circle at 88% 14%, rgba(209, 154, 55, .18), transparent 32%),
    radial-gradient(circle at 8% 42%, rgba(255, 255, 255, .08), transparent 26%);
  opacity: .65;
}

.template-site .template-final-footer a {
  color: inherit;
  text-decoration: none;
}

.final-contact-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr);
  align-items: center;
  gap: clamp(24px, 5vw, 90px);
  min-height: 0;
  padding: clamp(22px, 3.6dvh, 40px) var(--site-section-x);
  border-bottom: 1px solid rgba(209, 154, 55, .72);
}

.final-contact-copy {
  display: grid;
  align-content: center;
  gap: clamp(12px, 1.8dvh, 20px);
  min-width: 0;
}

.final-contact-copy > p {
  margin: 0;
  color: var(--final-gold);
  font-size: var(--site-kicker-size);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.final-contact-copy > p::after {
  content: "";
  display: inline-block;
  width: clamp(52px, 5vw, 92px);
  height: 1px;
  margin-left: 14px;
  vertical-align: middle;
  background: currentColor;
}

.final-contact-copy h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-family: var(--site-title-font);
  font-size: var(--site-h2-size);
  font-weight: 800;
  line-height: .98;
}

.final-contact-copy h2 span {
  display: block;
  color: var(--final-gold);
}

.final-contact-copy > span {
  max-width: 620px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.55;
}

.final-contact-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 26px);
  max-width: 760px;
  margin-top: clamp(8px, 2.2dvh, 22px);
}

.final-contact-benefits article {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 0;
  padding-inline: clamp(6px, 1vw, 14px);
  text-align: center;
}

.final-contact-benefits article + article {
  border-left: 1px solid rgba(209, 154, 55, .45);
}

.final-contact-benefits i {
  display: grid;
  place-items: center;
  width: clamp(32px, 3.4vw, 46px);
  height: clamp(32px, 3.4vw, 46px);
  border: 1px solid var(--final-gold);
  border-radius: 50%;
  color: var(--final-gold);
  font-style: normal;
  font-size: clamp(16px, 1.5vw, 22px);
}

.final-contact-benefits strong {
  color: #fff;
  font-size: clamp(10px, .92vw, 14px);
  line-height: 1.15;
}

.final-contact-benefits span {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(9px, .82vw, 12px);
  line-height: 1.35;
}

.final-contact-form {
  box-sizing: border-box;
  justify-self: end;
  display: grid;
  align-content: center;
  width: min(100%, 650px);
  max-height: 100%;
  gap: clamp(8px, 1.2dvh, 14px);
  padding: clamp(16px, 2.45dvh, 28px);
  border: 1px solid rgba(209, 154, 55, .8);
  border-radius: 16px;
  background: rgba(0, 20, 18, .66);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.final-form-heading {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 1.4vw, 15px);
}

.final-form-heading i {
  color: var(--final-gold);
  font-style: normal;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
}

.final-form-heading h3 {
  min-height: 0;
  margin: 0;
  color: #fff;
  font-family: var(--site-title-font);
  font-size: clamp(22px, min(2vw, 3.4dvh), 32px);
  font-weight: 800;
  line-height: 1;
  text-transform: none;
}

.final-form-heading h3 span {
  display: block;
  color: var(--final-gold);
}

.final-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 1.1dvh, 13px);
}

.final-contact-form label {
  display: block;
  min-width: 0;
}

.final-contact-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.final-contact-form .final-form-wide {
  grid-column: 1 / -1;
}

.final-contact-form input,
.final-contact-form select {
  width: 100%;
  min-height: clamp(38px, 4.8dvh, 52px);
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 6px;
  background: rgba(3, 14, 12, .28);
  color: #fff;
  padding: 0 clamp(12px, 1.2vw, 18px);
  font-size: clamp(12px, .92vw, 15px);
}

.final-contact-form input::placeholder {
  color: rgba(255, 255, 255, .8);
}

.final-contact-form select option {
  color: #09231f;
}

.final-contact-form .full-btn {
  display: grid;
  place-items: center;
  min-height: clamp(40px, 5dvh, 54px);
  margin: 0;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, #d09231, #e3ad45);
  color: #fff;
  font-size: clamp(12px, .96vw, 15px);
  font-weight: 950;
  letter-spacing: .02em;
  text-align: center;
  text-transform: uppercase;
}

.final-contact-form .full-btn:hover {
  background: linear-gradient(90deg, #0a342d, #002b25);
  color: var(--final-gold);
}

.final-contact-form small,
.final-contact-form .lead-card-result {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(10px, .82vw, 12px);
  text-align: center;
}

.final-footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  background: rgba(0, 31, 27, .96);
}

.final-footer-main {
  display: grid;
  grid-template-columns: minmax(170px, .9fr) minmax(120px, .56fr) minmax(160px, .72fr) minmax(210px, .9fr) minmax(180px, .68fr);
  gap: clamp(18px, 3.2vw, 56px);
  align-items: center;
  min-height: 0;
  padding: clamp(18px, 3.4dvh, 36px) var(--site-section-x);
}

.final-footer-brand,
.final-footer-column,
.final-footer-quote {
  min-width: 0;
}

.final-footer-brand {
  display: grid;
  gap: clamp(9px, 1.3dvh, 14px);
}

.final-brand {
  display: grid;
  gap: 8px;
  justify-items: start;
  width: fit-content;
}

.final-brand img {
  width: clamp(112px, 10vw, 172px);
  max-height: clamp(86px, 13dvh, 140px);
  object-fit: contain;
  filter: brightness(1.1);
}

.final-brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.final-footer-brand p,
.final-footer-column a,
.final-footer-column span,
.final-footer-quote p,
.final-footer-quote small {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(10px, .82vw, 13px);
  line-height: 1.55;
}

.final-footer-cta {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-height: 34px;
  border: 1px solid var(--final-gold);
  border-radius: 5px;
  color: var(--final-gold);
  padding: 7px 14px;
  font-size: clamp(10px, .78vw, 12px);
  font-weight: 950;
  text-transform: uppercase;
}

.final-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.final-socials a {
  display: grid;
  place-items: center;
  width: clamp(28px, 2.4vw, 36px);
  height: clamp(28px, 2.4vw, 36px);
  border: 1px solid var(--final-gold);
  border-radius: 50%;
  color: var(--final-gold);
  font-size: 11px;
  font-weight: 950;
}

.final-footer-column {
  display: grid;
  gap: clamp(7px, 1dvh, 11px);
}

.final-footer-column h3 {
  margin: 0 0 4px;
  color: #fff;
  font-family: inherit;
  font-size: clamp(12px, .96vw, 16px);
  font-weight: 950;
  text-transform: uppercase;
}

.final-footer-column h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 7px;
  background: var(--final-gold);
}

.final-footer-column a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.final-footer-column a::after {
  content: ">";
  color: var(--final-gold);
  font-size: 13px;
}

.final-footer-contact a,
.final-footer-contact span {
  justify-content: start;
}

.final-footer-contact a::after {
  content: none;
}

.final-schedule {
  display: grid;
  gap: 4px;
  margin-top: clamp(8px, 1.5dvh, 14px);
  padding-top: clamp(8px, 1.5dvh, 14px);
  border-top: 1px solid rgba(209, 154, 55, .35);
}

.final-footer-quote {
  display: grid;
  justify-items: center;
  gap: clamp(6px, 1dvh, 10px);
  padding-left: clamp(14px, 2vw, 34px);
  border-left: 1px solid rgba(209, 154, 55, .35);
  text-align: center;
}

.final-footer-quote > span {
  color: var(--final-gold);
  font-family: var(--site-title-font);
  font-size: clamp(34px, 4vw, 66px);
  line-height: .7;
}

.final-footer-quote img {
  width: clamp(110px, 11vw, 176px);
  max-height: 54px;
  object-fit: contain;
  filter: sepia(1) saturate(2.1) hue-rotate(352deg) brightness(1.22);
}

.final-footer-quote small {
  text-transform: uppercase;
}

.final-footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  padding: clamp(10px, 1.6dvh, 16px) var(--site-section-x);
  border-top: 1px solid rgba(209, 154, 55, .42);
  background: rgba(0, 21, 18, .98);
}

.final-footer-bottom,
.final-footer-bottom a,
.final-footer-bottom span {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(9px, .76vw, 12px);
}

.final-associations,
.final-footer-bottom nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 20px);
  min-width: 0;
}

.final-associations span {
  max-width: 110px;
  text-transform: uppercase;
}

.final-associations strong {
  color: #fff;
  font-size: clamp(10px, .9vw, 14px);
  line-height: 1.1;
}

.final-footer-bottom nav {
  justify-content: end;
  flex-wrap: wrap;
}

.final-footer-bottom nav a,
.final-footer-bottom nav span {
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .template-site .template-final-footer {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
    background-attachment: scroll;
  }

  .final-contact-band,
  .final-footer-main,
  .final-footer-bottom {
    grid-template-columns: 1fr;
  }

  .final-contact-band {
    align-items: start;
  }

  .final-contact-form {
    justify-self: stretch;
    width: 100%;
  }

  .final-footer-quote {
    align-items: start;
    justify-items: start;
    padding-left: 0;
    border-left: 0;
    text-align: left;
  }

  .final-footer-bottom nav {
    justify-content: start;
  }
}

@media (min-width: 1101px) and (max-height: 820px) {
  .template-site .template-final-footer {
    grid-template-rows: minmax(0, 48%) minmax(0, 52%);
  }

  .final-contact-band {
    padding-top: clamp(16px, 2.7dvh, 26px);
    padding-bottom: clamp(16px, 2.7dvh, 26px);
  }

  .final-contact-copy {
    gap: clamp(8px, 1.2dvh, 14px);
  }

  .final-contact-benefits {
    margin-top: clamp(5px, 1dvh, 10px);
  }

  .final-contact-form {
    gap: clamp(7px, 1dvh, 11px);
    padding: clamp(14px, 2.1dvh, 22px);
  }

  .final-contact-form input,
  .final-contact-form select {
    min-height: clamp(34px, 4.3dvh, 46px);
  }

  .final-contact-form .full-btn {
    min-height: clamp(36px, 4.4dvh, 48px);
  }

  .faq-help-card {
    height: clamp(270px, 43dvh, 380px);
    gap: clamp(8px, 1.2dvh, 13px);
    padding: clamp(16px, 2.4dvh, 26px);
  }

  .faq-help-card > i {
    width: clamp(48px, 6.4dvh, 66px);
    height: clamp(48px, 6.4dvh, 66px);
  }
}

@media (max-width: 720px) {
  .final-contact-benefits,
  .final-form-grid,
  .final-associations,
  .final-footer-bottom nav {
    grid-template-columns: 1fr;
  }

  .final-contact-benefits,
  .final-associations,
  .final-footer-bottom nav {
    display: grid;
  }

  .final-contact-benefits article {
    justify-items: start;
    text-align: left;
  }

  .final-contact-benefits article + article {
    border-left: 0;
    border-top: 1px solid rgba(209, 154, 55, .35);
    padding-top: 12px;
  }
}

/* Standard section geometry from the 80/20 reference template */
@media (min-width: 761px) {
  .template-site {
    --standard-section-x: max(64px, calc((100vw - var(--template-max)) / 2));
    --standard-section-pad-top: clamp(32px, 4dvh, 64px);
    --standard-section-pad-bottom: clamp(18px, 2.4dvh, 32px);
    --standard-rail-height: 20dvh;
    --standard-gap: clamp(10px, 1.45dvh, 18px);
    --standard-title-size: clamp(30px, min(3.4vw, 6.2dvh), 64px);
    --standard-copy-size: clamp(12px, min(.98vw, 2.1dvh), 18px);
  }

  .template-site > section,
  .template-site .hero-section-one {
    width: 100% !important;
    min-height: 100dvh !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    overflow: hidden !important;
  }

  .template-site .hero-section-one,
  .template-site .template-help,
  .template-site .template-invest-band,
  .template-site .template-advisor.certification-stage,
  .template-site .template-process.process-dual,
  .template-site .template-faq-showcase,
  .template-site .template-final-footer {
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
  }

  .template-site .template-help,
  .template-site .template-map-section,
  .template-site .template-featured,
  .template-site .template-invest-band,
  .template-site .template-advisor.certification-stage,
  .template-site .template-process.process-dual,
  .template-site .template-faq-showcase {
    padding-right: var(--standard-section-x) !important;
    padding-left: var(--standard-section-x) !important;
  }

  .template-site .template-help,
  .template-site .template-faq-showcase {
    grid-template-rows: minmax(0, calc(100dvh - var(--standard-section-pad-top) - var(--standard-rail-height))) var(--standard-rail-height) !important;
    gap: 0 !important;
    padding-top: var(--standard-section-pad-top) !important;
    padding-bottom: 0 !important;
  }

  .template-site .template-invest-band,
  .template-site .template-featured {
    grid-template-rows: auto minmax(0, 1fr) var(--standard-rail-height) !important;
    gap: var(--standard-gap) !important;
    padding-top: var(--standard-section-pad-top) !important;
    padding-bottom: 0 !important;
  }

  .template-site .template-map-section {
    display: grid !important;
    grid-template-rows: minmax(0, 20dvh) minmax(0, calc(80dvh - var(--standard-section-pad-bottom))) !important;
    gap: var(--standard-gap) !important;
    padding-top: var(--standard-section-pad-top) !important;
    padding-bottom: var(--standard-section-pad-bottom) !important;
  }

  .template-site .template-process.process-dual {
    grid-template-rows: auto auto minmax(0, 1fr) var(--standard-rail-height) !important;
    gap: clamp(8px, 1.2dvh, 14px) !important;
    padding-top: var(--standard-section-pad-top) !important;
    padding-bottom: 0 !important;
  }

  .template-site .template-advisor.certification-stage {
    grid-template-rows: minmax(0, calc(80dvh - var(--standard-section-pad-top))) var(--standard-rail-height) !important;
    gap: var(--standard-gap) !important;
    padding-top: var(--standard-section-pad-top) !important;
    padding-bottom: 0 !important;
  }

  .template-site .template-final-footer {
    grid-template-rows: minmax(0, 48dvh) minmax(0, 52dvh) !important;
  }

  .template-help-main,
  .template-featured .template-section-head,
  .template-featured .template-property-grid,
  .template-featured .template-featured-rail,
  .template-site .template-invest-copy,
  .template-site .template-invest-metrics,
  .template-invest-benefits,
  .process-dual-title,
  .process-dual-overview,
  .process-dual-steps,
  .process-cta-row,
  .faq-showcase-title,
  .faq-showcase-layout,
  .faq-benefit-row {
    width: min(var(--template-max), 100%) !important;
    max-width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .template-help-benefits,
  .template-featured .template-featured-rail,
  .template-invest-benefits,
  .template-site .template-advisor.certification-stage .template-advisor-rail,
  .process-cta-row,
  .faq-benefit-row {
    height: var(--standard-rail-height) !important;
    min-height: 0 !important;
    max-height: var(--standard-rail-height) !important;
    align-self: end !important;
    overflow: hidden !important;
  }

  .template-help-benefits article,
  .template-featured .template-featured-rail article,
  .template-invest-benefits article,
  .template-site .template-advisor.certification-stage .template-advisor-rail article,
  .faq-benefit-row article {
    min-height: 0 !important;
    height: 100% !important;
    align-content: center !important;
    padding-top: clamp(8px, 1.2dvh, 16px) !important;
    padding-bottom: clamp(8px, 1.2dvh, 16px) !important;
  }

  .process-cta-row button {
    min-height: 0 !important;
    height: 100% !important;
  }

  .template-help-heading h2,
  .template-map-section .template-section-title.split h2,
  .template-featured .template-section-head h2,
  .template-site .template-invest-copy h2,
  .certification-stage h2,
  .template-process .template-section-title h2,
  .faq-showcase-title h2,
  .final-contact-copy h2 {
    font-size: var(--standard-title-size) !important;
    line-height: 1 !important;
  }

  .template-map-section .template-section-title.split span,
  .template-featured .template-section-head span,
  .template-site .template-invest-copy > span,
  .process-dual-title span,
  .faq-showcase-title strong,
  .final-contact-copy > span,
  .template-help-heading > p:not(.section-two-kicker) {
    font-size: var(--standard-copy-size) !important;
    line-height: 1.42 !important;
  }

  .template-site .template-invest-band {
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }

  .template-site .template-invest-band::before {
    background:
      radial-gradient(circle at 82% 28%, rgba(214, 163, 69, .12), transparent 30%),
      linear-gradient(180deg, rgba(0, 31, 27, .02), rgba(0, 31, 27, .24)) !important;
  }

  .template-site .template-invest-copy h2 {
    white-space: nowrap !important;
  }

  .template-site .template-invest-copy h2 span {
    display: inline !important;
    font-size: inherit !important;
    line-height: inherit !important;
  }

  .template-site .section-two-form-panel,
  .faq-help-card,
  .final-contact-form {
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .template-site .section-two-form-panel {
    align-self: center !important;
    min-height: 0 !important;
    max-height: min(100%, calc(80dvh - var(--standard-section-pad-top) - 8px)) !important;
    padding-top: clamp(20px, 3dvh, 36px) !important;
    padding-bottom: clamp(16px, 2.3dvh, 28px) !important;
  }

  .section-two-form-panel .template-form-grid input,
  .section-two-form-panel .template-form-grid select,
  .section-two-form-panel .template-form-grid textarea,
  .final-contact-form input,
  .final-contact-form select {
    min-height: 0 !important;
  }

  .section-two-form-panel .template-form-grid input,
  .section-two-form-panel .template-form-grid select {
    height: clamp(34px, 5.1dvh, 52px) !important;
  }

  .section-two-form-panel .template-form-grid textarea {
    height: clamp(52px, 8dvh, 88px) !important;
  }

  .section-two-form-panel .full-btn,
  .final-contact-form .full-btn {
    min-height: 0 !important;
    height: clamp(36px, 5.2dvh, 54px) !important;
  }

  .faq-showcase-layout {
    align-items: center !important;
    min-height: 0 !important;
  }

  .faq-accordion-list {
    max-height: 100% !important;
    overflow: hidden auto !important;
  }

  .faq-help-card {
    height: min(100%, clamp(260px, 43dvh, 420px)) !important;
    max-height: 100% !important;
    padding: clamp(16px, 2.6dvh, 32px) !important;
  }

  .final-contact-band {
    min-height: 0 !important;
    height: 48dvh !important;
    padding-top: clamp(16px, 2.4dvh, 32px) !important;
    padding-bottom: clamp(16px, 2.4dvh, 32px) !important;
  }

  .final-contact-form {
    max-height: 100% !important;
    padding-top: clamp(14px, 2.1dvh, 26px) !important;
    padding-bottom: clamp(14px, 2.1dvh, 26px) !important;
  }

  .final-footer-content {
    min-height: 0 !important;
    height: 52dvh !important;
    overflow: hidden !important;
  }
}

@media (min-width: 761px) and (max-height: 720px) {
  .template-site {
    --standard-section-pad-top: clamp(18px, 3dvh, 32px);
    --standard-section-pad-bottom: clamp(8px, 1.5dvh, 16px);
    --standard-rail-height: 18dvh;
    --standard-gap: clamp(6px, 1dvh, 10px);
    --standard-title-size: clamp(24px, min(3vw, 5.8dvh), 48px);
    --standard-copy-size: clamp(10px, min(.86vw, 1.9dvh), 14px);
  }

  .template-site .section-two-intents button {
    height: clamp(46px, 8.2dvh, 66px) !important;
  }

  .template-site .template-invest-metrics article {
    min-height: clamp(112px, 24dvh, 180px) !important;
    padding-top: clamp(16px, 3dvh, 24px) !important;
    padding-bottom: clamp(10px, 1.8dvh, 16px) !important;
  }

  .template-featured .template-property-media {
    min-height: clamp(92px, 17dvh, 150px) !important;
  }

  .template-featured .template-property-card > div {
    gap: 5px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .faq-accordion-list summary {
    min-height: clamp(42px, 7dvh, 56px) !important;
  }

  .faq-help-card > i {
    width: clamp(42px, 6.5dvh, 58px) !important;
    height: clamp(42px, 6.5dvh, 58px) !important;
  }
}

/* Exact 80/20 section rows: main content + lower rail */
@media (min-width: 761px) {
  .template-site {
    --exact-main: 80dvh;
    --exact-rail: 20dvh;
    --exact-x: max(64px, calc((100vw - var(--template-max)) / 2));
    --exact-top-pad: clamp(24px, 4dvh, 56px);
    --exact-inner-gap: clamp(10px, 1.4dvh, 18px);
  }

  .hero-section-one > .template-stat-row,
  .template-help-benefits,
  .template-featured .template-featured-rail,
  .template-invest-benefits,
  .template-site .template-advisor.certification-stage .template-advisor-rail,
  .process-cta-row,
  .faq-benefit-row {
    box-sizing: border-box !important;
    height: var(--exact-rail) !important;
    min-height: var(--exact-rail) !important;
    max-height: var(--exact-rail) !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    overflow: hidden !important;
  }

  .template-help,
  .template-site .template-featured,
  .template-site .template-invest-band,
  .template-site .template-advisor.certification-stage,
  .template-site .template-process.process-dual,
  .template-site .template-faq-showcase {
    box-sizing: border-box !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: 100dvh !important;
    padding-right: var(--exact-x) !important;
    padding-left: var(--exact-x) !important;
    padding-bottom: 0 !important;
    gap: 0 !important;
    align-content: stretch !important;
    overflow: hidden !important;
  }

  .template-site .template-help {
    grid-template-rows: var(--exact-main) var(--exact-rail) !important;
    padding-top: 0 !important;
  }

  .template-help-main {
    box-sizing: border-box !important;
    height: var(--exact-main) !important;
    max-height: var(--exact-main) !important;
    padding-top: var(--exact-top-pad) !important;
    padding-bottom: var(--exact-inner-gap) !important;
  }

  .template-help-benefits {
    width: min(var(--template-max), 100%) !important;
    padding-top: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, .28) !important;
  }

  .template-site .template-featured {
    grid-template-rows: 18dvh 62dvh var(--exact-rail) !important;
    padding-top: 0 !important;
  }

  .template-featured .template-section-head {
    box-sizing: border-box !important;
    height: 18dvh !important;
    min-height: 0 !important;
    align-content: end !important;
    padding-top: clamp(16px, 2.6dvh, 34px) !important;
    padding-bottom: clamp(8px, 1.2dvh, 14px) !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .template-featured .template-property-grid {
    box-sizing: border-box !important;
    height: 62dvh !important;
    min-height: 0 !important;
    align-items: stretch !important;
    padding-top: clamp(8px, 1.2dvh, 14px) !important;
    padding-bottom: clamp(10px, 1.4dvh, 18px) !important;
    overflow: hidden !important;
  }

  .template-featured .template-property-card {
    height: 100% !important;
    min-height: 0 !important;
    grid-template-rows: minmax(92px, 42%) minmax(0, 1fr) !important;
  }

  .template-featured .template-property-media {
    min-height: 0 !important;
    height: 100% !important;
  }

  .template-featured .template-property-card > div {
    min-height: 0 !important;
    overflow: hidden !important;
  }

  .template-featured .template-featured-rail {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    padding-top: 0 !important;
  }

  .template-featured .template-featured-rail article {
    min-height: 0 !important;
    height: 100% !important;
    align-content: center !important;
    padding-top: clamp(8px, 1.2dvh, 16px) !important;
    padding-bottom: clamp(8px, 1.2dvh, 16px) !important;
  }

  .template-site .template-invest-band {
    grid-template-rows: 24dvh 56dvh var(--exact-rail) !important;
    padding-top: 0 !important;
  }

  .template-site .template-invest-copy {
    box-sizing: border-box !important;
    height: 24dvh !important;
    display: grid !important;
    align-content: center !important;
    padding-top: clamp(14px, 2.4dvh, 32px) !important;
    padding-bottom: clamp(8px, 1dvh, 14px) !important;
  }

  .template-site .template-invest-metrics {
    box-sizing: border-box !important;
    height: 56dvh !important;
    min-height: 0 !important;
    align-items: center !important;
    padding-top: clamp(18px, 3dvh, 36px) !important;
    padding-bottom: clamp(10px, 1.5dvh, 20px) !important;
  }

  .template-invest-benefits {
    width: min(var(--template-max), 100%) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    align-items: stretch !important;
  }

  .template-invest-benefits article {
    min-height: 0 !important;
    height: 100% !important;
    align-content: center !important;
  }

  .template-site .template-advisor.certification-stage {
    grid-template-rows: var(--exact-main) var(--exact-rail) !important;
    padding-top: 0 !important;
  }

  .certification-stage .advisor-main-copy,
  .certification-stage .advisor-credential-panel,
  .certification-stage .advisor-portrait {
    box-sizing: border-box !important;
    max-height: var(--exact-main) !important;
    align-self: center !important;
    overflow: hidden !important;
  }

  .template-site .template-advisor.certification-stage .template-advisor-rail {
    align-self: end !important;
    width: min(var(--template-max), 100%) !important;
    margin: 0 auto !important;
    border-top: 1px solid rgba(208, 154, 52, .48) !important;
  }

  .template-site .template-advisor.certification-stage .template-advisor-rail article {
    min-height: 0 !important;
    height: 100% !important;
    align-content: center !important;
    padding-top: clamp(8px, 1.2dvh, 16px) !important;
    padding-bottom: clamp(8px, 1.2dvh, 16px) !important;
  }

  .template-site .template-process.process-dual {
    grid-template-rows: 16dvh 13dvh 51dvh var(--exact-rail) !important;
    padding-top: 0 !important;
  }

  .process-dual-title {
    box-sizing: border-box !important;
    height: 16dvh !important;
    align-content: end !important;
    padding-top: clamp(14px, 2dvh, 24px) !important;
    padding-bottom: clamp(6px, .9dvh, 10px) !important;
  }

  .process-dual-overview {
    height: 13dvh !important;
    min-height: 0 !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  .process-dual-steps {
    height: 51dvh !important;
    min-height: 0 !important;
    align-self: stretch !important;
    overflow: hidden !important;
  }

  .process-step-track,
  .process-step-card {
    min-height: 0 !important;
  }

  .process-cta-row {
    align-self: end !important;
  }

  .template-site .template-faq-showcase {
    grid-template-rows: 22dvh 58dvh var(--exact-rail) !important;
    padding-top: 0 !important;
  }

  .faq-showcase-title {
    box-sizing: border-box !important;
    height: 22dvh !important;
    align-content: end !important;
    padding-top: clamp(14px, 2dvh, 24px) !important;
    padding-bottom: clamp(8px, 1.1dvh, 14px) !important;
  }

  .faq-showcase-layout {
    height: 58dvh !important;
    min-height: 0 !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  .faq-help-card {
    height: min(100%, clamp(260px, 43dvh, 420px)) !important;
    max-height: calc(58dvh - 8px) !important;
  }

  .faq-benefit-row {
    align-self: end !important;
    border-top: 1px solid rgba(214, 163, 69, .28) !important;
  }

  .faq-benefit-row article {
    min-height: 0 !important;
    height: 100% !important;
    align-content: center !important;
  }
}

@media (min-width: 761px) and (max-height: 760px) {
  .template-site {
    --exact-top-pad: clamp(14px, 2.5dvh, 28px);
  }

  .template-featured .template-section-head {
    height: 16dvh !important;
  }

  .template-site .template-featured {
    grid-template-rows: 16dvh 64dvh var(--exact-rail) !important;
  }

  .template-featured .template-property-grid {
    height: 64dvh !important;
  }

  .template-site .template-invest-band {
    grid-template-rows: 22dvh 58dvh var(--exact-rail) !important;
  }

  .template-site .template-invest-copy {
    height: 22dvh !important;
  }

  .template-site .template-invest-metrics {
    height: 58dvh !important;
  }

  .template-site .template-process.process-dual {
    grid-template-rows: 15dvh 11dvh 54dvh var(--exact-rail) !important;
  }

  .process-dual-title {
    height: 15dvh !important;
  }

  .process-dual-overview {
    height: 11dvh !important;
  }

  .process-dual-steps {
    height: 54dvh !important;
  }
}

@media print {
  body {
    background: #fff;
  }

  .sidebar,
  .topbar,
  .toolbar,
  .doc-aside,
  .card-actions,
  .no-print,
  .toast {
    display: none !important;
  }

  .app-shell,
  .main-area,
  .view-root,
  .doc-shell {
    display: block;
    min-height: auto;
    padding: 0;
  }

  .panel,
  .sheet-doc {
    box-shadow: none;
    border: none;
    border-radius: 0;
  }

  .panel:not(.print-panel) {
    display: none !important;
  }

  .sheet-doc {
    padding: 0;
  }

  .print-only {
    display: block;
  }
}
