:root {
  --forest-950: #062D26;
  --forest-900: #093B32;
  --forest-700: #145246;
  --river-600: #2D7D78;
  --gold-500: #C9A556;
  --gold-300: #E4C978;
  --mist-100: #F7F3EA;
  --sand-200: #E8DDCA;
  --stone-400: #B9B0A2;
  --coffee-700: #543A2E;
  --charcoal-950: #171714;
  --white: #FFFFFF;
  --line: rgba(6, 45, 38, .12);
  --shadow: 0 20px 60px rgba(6, 45, 38, .12);
  --container: 1440px;
  --pad: clamp(32px, 5vw, 96px);
  --fixed-header-offset: 104px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal-950);
  background: var(--mist-100);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--white); padding: 8px 12px; z-index: 20; }
.skip-link:focus { left: 8px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(6, 45, 38, .82);
  box-shadow: 0 12px 36px rgba(6, 45, 38, .14);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.brand { display: flex; flex: 0 1 300px; align-items: center; gap: 0; min-width: 230px; max-width: 330px; }
.brand-copy { display: grid; gap: 1px; min-width: 0; white-space: nowrap; }
.brand strong {
  display: block;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.62rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: .95;
  text-shadow: 0 2px 14px rgba(0,0,0,.28);
}
.brand small {
  display: block;
  max-width: 360px;
  color: var(--gold-300);
  font-size: .84rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
}
.top-nav { display: flex; align-items: center; gap: 22px; font-size: 1.02rem; font-weight: 800; }
.top-nav a { padding: 8px 0; text-shadow: 0 1px 8px rgba(0,0,0,.28); }
.top-nav a.nav-contact-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(228,201,120,.54);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--white);
  background: rgba(3, 47, 39, .96);
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
  font-size: .86rem;
  line-height: 1;
  text-shadow: none;
  white-space: nowrap;
}
.top-nav a.nav-contact-pill:hover {
  color: var(--white);
  background: var(--forest-950);
}
.nav-contact-pill svg {
  width: 17px;
  height: 17px;
  color: var(--gold-300);
}
.nav-contact-pill strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 950;
}
.top-nav a.language-link {
  flex: 0 0 auto;
  min-width: 62px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  padding: 0 12px 0 9px;
  color: var(--white);
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  font-size: .86rem;
  line-height: 1;
  text-shadow: none;
  white-space: nowrap;
}
.top-nav a.language-link:hover {
  border-color: rgba(201,165,86,.72);
  background: rgba(201,165,86,.18);
}
.language-link-mark {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 0 0 0 3px rgba(201,165,86,.16);
}
.language-link-mark::before,
.language-link-mark::after {
  display: none;
}
.language-link-code {
  font-weight: 950;
  letter-spacing: 0;
}
.language-link-label {
  display: none;
  font-weight: 850;
}
.mobile-menu-toggle,
.mobile-nav-extra {
  display: none;
}
.mobile-menu-toggle {
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  padding: 0 12px 0 14px;
  color: var(--white);
  background: rgba(255,255,255,.1);
  font-weight: 900;
  cursor: pointer;
}
.mobile-menu-icon {
  position: relative;
  display: grid;
  gap: 4px;
  width: 18px;
}
.mobile-menu-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.site-header.is-menu-open .mobile-menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-header.is-menu-open .mobile-menu-icon span:nth-child(2) {
  opacity: 0;
}
.site-header.is-menu-open .mobile-menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 160px var(--pad) 92px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 45, 38, .92), rgba(6, 45, 38, .56) 43%, rgba(6, 45, 38, .12)),
    linear-gradient(0deg, rgba(6, 45, 38, .74), rgba(6, 45, 38, 0) 42%),
    url("../img/jarabacoa/mountain-villa-aerial-jarabacoa.jpg") center/cover;
}
.hero-content { width: 100%; max-width: 900px; min-width: 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-300);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: .98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}
h1 { margin: 0; font-size: 5.1rem; max-width: 900px; }
h2 { margin: 0; font-size: 3.4rem; }
h3 { margin: 0; font-size: 1.8rem; }
.hero-title-line { display: block; }
.hero-copy { max-width: 720px; margin: 24px 0 0; font-size: 1.42rem; line-height: 1.45; color: rgba(255,255,255,.88); }
.home-hero h1 { max-width: 920px; font-size: 4.94rem; }
.home-hero .hero-title-line { white-space: nowrap; }
.home-hero .hero-copy { max-width: 680px; font-size: 1.24rem; line-height: 1.5; }
.hero-actions, .card-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; }
.btn, .icon-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}
.btn { white-space: normal; }
.btn svg, .icon-btn svg { width: 19px; height: 19px; }
.btn.primary { background: var(--forest-950); color: var(--white); }
.btn.primary:hover { background: var(--gold-500); color: var(--forest-950); }
.hero .btn.primary {
  border-color: rgba(255, 255, 255, .32);
  color: var(--white);
  background: var(--forest-950);
  font-weight: 950;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .22);
}
.hero .btn.primary:hover {
  border-color: rgba(255, 255, 255, .58);
  color: var(--white);
  background: var(--forest-800);
}
.btn.secondary { border-color: var(--line); background: rgba(255,255,255,.72); color: var(--forest-950); }
.btn.ghost { border-color: rgba(255,255,255,.48); color: var(--white); background: rgba(255,255,255,.08); }
.btn.whatsapp, .whatsapp-float { background: #1FAF62; color: var(--white); }
.btn.call {
  border-color: rgba(6,45,38,.2);
  color: var(--forest-950);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,243,234,.88));
}
.btn.call:hover {
  border-color: rgba(201,165,86,.52);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6,45,38,.1);
}
.icon-btn { width: 48px; min-height: 48px; padding: 0; background: var(--white); border-color: var(--line); color: var(--forest-950); }

.share-card {
  display: flex;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
  border: 1px solid rgba(84, 58, 46, .18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 46px rgba(6, 45, 38, .1);
  overflow-x: auto;
  scrollbar-width: none;
}
.share-card::-webkit-scrollbar { display: none; }
.share-card-label {
  flex: 0 0 auto;
  color: rgba(23, 23, 20, .62);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.share-card-rule {
  flex: 0 0 1px;
  height: 54px;
  background: rgba(84, 58, 46, .18);
}
.share-card-action {
  flex: 0 0 auto;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(84, 58, 46, .18);
  border-radius: 8px;
  padding: 0 18px;
  color: #111827;
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.1;
}
.share-card-action:hover {
  border-color: rgba(6, 45, 38, .34);
  box-shadow: 0 10px 22px rgba(6, 45, 38, .08);
  transform: translateY(-1px);
}
.share-card-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  font-size: .86rem;
  font-weight: 950;
}
.share-card-icon svg {
  width: 17px;
  height: 17px;
}
.share-card-icon.facebook { background: #1877F2; }
.share-card-icon.x { background: #111827; }
.share-card-icon.whatsapp { background: #25D366; color: #06351f; }
.share-card-icon.email { background: #64748B; }
.share-card-icon.copy { background: var(--forest-950); }
.share-card-icon.print { background: rgba(84, 58, 46, .12); color: var(--coffee-700); }
.property-share-card,
.article-share-card {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
}
.property-share-card {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  max-width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: 18px auto 30px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 18px;
  border-color: rgba(6, 45, 38, .12);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 34px rgba(6, 45, 38, .08);
  overflow: visible;
}
.property-share-card .share-card-label {
  font-size: .88rem;
  letter-spacing: .05em;
}
.property-share-card .share-card-rule {
  height: 48px;
  background: rgba(6, 45, 38, .12);
}
.property-share-card .share-card-action {
  min-height: 52px;
  gap: 10px;
  border-color: rgba(6, 45, 38, .13);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--forest-950);
  font-size: .98rem;
  background: rgba(255, 255, 255, .82);
}
.property-share-card .share-card-action:hover {
  background: var(--white);
  border-color: rgba(6, 45, 38, .24);
  box-shadow: 0 8px 18px rgba(6, 45, 38, .08);
}
.property-share-card .share-card-icon {
  width: 32px;
  height: 32px;
  font-size: .78rem;
  background: rgba(6, 45, 38, .08);
  color: var(--forest-950);
}
.property-share-card .share-card-icon svg {
  width: 16px;
  height: 16px;
}
.property-share-card .share-card-icon.facebook { background: rgba(24, 119, 242, .1); color: #1769d7; }
.property-share-card .share-card-icon.x { background: rgba(17, 24, 39, .08); color: #111827; }
.property-share-card .share-card-icon.whatsapp { background: rgba(37, 211, 102, .14); color: #075e35; }
.property-share-card .share-card-icon.email { background: rgba(100, 116, 139, .12); color: #475569; }
.property-share-card .share-card-icon.copy { background: rgba(6, 45, 38, .1); color: var(--forest-950); }
.property-share-card .share-card-icon.print { background: rgba(84, 58, 46, .1); color: var(--coffee-700); }
.property-contact-strip {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: -12px auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: rgba(23,23,20,.7);
  font-size: .94rem;
  font-weight: 850;
}
.property-contact-strip span {
  color: var(--forest-950);
}
.property-contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(6,45,38,.14);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--forest-950);
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 20px rgba(6,45,38,.06);
  font-size: 1.02rem;
  font-weight: 950;
}
.property-contact-strip svg {
  width: 17px;
  height: 17px;
  color: var(--gold-600);
}

.action-rail {
  position: relative;
  z-index: 3;
  margin-top: -42px;
  padding: 0 var(--pad) 34px;
  color: var(--forest-950);
  background: linear-gradient(180deg, rgba(247,243,234,0), var(--mist-100) 42px);
}
.action-rail-inner {
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto;
  border: 1px solid rgba(6,45,38,.14);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 52px rgba(6,45,38,.14);
  backdrop-filter: blur(16px);
}
.action-rail-item {
  min-width: 0;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(6,45,38,.08);
  border-radius: 8px;
  padding: 12px;
  background: rgba(247,243,234,.76);
}
.action-rail-item svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--gold-500);
}
.action-rail-item strong {
  min-width: 0;
  color: var(--forest-950);
  font-size: .96rem;
  line-height: 1.18;
  font-weight: 900;
}
.market-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 34px var(--pad);
  border-top: 1px solid rgba(84, 58, 46, .16);
  border-bottom: 1px solid rgba(84, 58, 46, .18);
  background:
    linear-gradient(135deg, rgba(232, 221, 202, .96), rgba(210, 192, 160, .92)),
    var(--sand-200);
}
.market-proof div {
  min-width: 0;
  padding: 6px 24px;
  border-left: 1px solid rgba(84, 58, 46, .18);
}
.market-proof div:first-child { border-left: 0; padding-left: 0; }
.market-proof span {
  display: block;
  margin-bottom: 6px;
  color: var(--forest-700);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.market-proof strong {
  display: block;
  color: var(--forest-950);
  font-size: 1rem;
  line-height: 1.35;
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 82px var(--pad);
}
.section-heading { max-width: 880px; margin-bottom: 30px; }
.section-heading.split { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section-heading p:not(.eyebrow) { max-width: 720px; }

.reservation-banner-section {
  position: relative;
  z-index: 3;
  overflow: hidden;
  width: min(1260px, calc(100% - (var(--pad) * 2)));
  min-height: 286px;
  margin: -52px auto 0;
  display: grid;
  grid-template-columns: minmax(245px, .72fr) minmax(430px, 1.12fr) minmax(250px, .62fr);
  gap: 0;
  border: 1px solid rgba(235,210,132,.32);
  border-radius: 10px;
  padding: 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6,45,38,.98), rgba(14,79,67,.96)),
    var(--forest-950);
  box-shadow: 0 26px 72px rgba(6,45,38,.22);
}
.reservation-banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 16%, rgba(235,210,132,.16), transparent 30%),
    linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.05) 54%, rgba(255,255,255,0));
}
.reservation-banner-media {
  position: relative;
  min-height: 286px;
  background:
    linear-gradient(90deg, rgba(6,45,38,.08), rgba(6,45,38,.22)),
    url("../img/jarabacoa/modern-villa-pool-jarabacoa.jpg") center/cover;
  clip-path: polygon(0 0, 86% 0, 100% 50%, 86% 100%, 0 100%);
}
.reservation-banner-media::after {
  content: "";
  position: absolute;
  top: -18%;
  right: 4%;
  width: 54px;
  height: 140%;
  transform: rotate(18deg);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(235,210,132,.98), rgba(201,165,86,.78));
  box-shadow: 0 0 0 10px rgba(235,210,132,.1);
}
.reservation-banner-copy {
  position: relative;
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 34px 32px 34px 22px;
  color: var(--white);
  background: transparent;
}
.reservation-banner-copy .eyebrow { margin-bottom: 0; color: var(--gold-300); }
.reservation-banner-copy h2 {
  margin: 0;
  max-width: 560px;
  color: var(--white);
  font-size: clamp(2.55rem, 3.4vw, 4.12rem);
  line-height: .9;
}
.reservation-banner-copy p {
  margin: 0;
  max-width: 520px;
  color: rgba(255,255,255,.82);
  font-size: 1.02rem;
  font-weight: 820;
  line-height: 1.34;
}
.reservation-banner-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 590px;
}
.reservation-banner-offer {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 126px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 14px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.reservation-banner-offer:hover {
  border-color: rgba(235,210,132,.68);
  transform: translateY(-1px);
}
.reservation-banner-offer span {
  color: var(--gold-300);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.reservation-banner-offer strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--white);
  font-size: clamp(2.48rem, 3vw, 3.24rem);
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  line-height: .86;
  white-space: nowrap;
}
.reservation-banner-offer small {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: .86rem;
  font-weight: 880;
}
.reservation-banner-contact {
  position: relative;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px 28px;
  color: var(--forest-950);
  background: rgba(255,255,255,.96);
}
.reservation-banner-contact-label {
  color: var(--forest-700);
  font-size: .82rem;
  font-weight: 950;
  line-height: 1.12;
  text-transform: uppercase;
}
.reservation-banner-phone {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 78px;
  border: 1px solid rgba(6,45,38,.1);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--forest-950);
  background: linear-gradient(135deg, #efd77b, #c9a556);
  box-shadow: 0 16px 36px rgba(6,45,38,.16);
}
.reservation-banner-phone svg {
  width: 24px;
  height: 24px;
}
.reservation-banner-phone span {
  display: grid;
  gap: 3px;
  min-width: 0;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.reservation-banner-phone strong {
  display: block;
  color: var(--forest-950);
  font-size: 1.36rem;
  line-height: 1;
  white-space: nowrap;
}
.reservation-banner-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.reservation-banner-contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 46px;
  border: 1px solid rgba(6,45,38,.12);
  border-radius: 8px;
  color: var(--forest-950);
  background: var(--white);
  font-size: .92rem;
  font-weight: 950;
}
.reservation-banner-contact-actions svg {
  width: 17px;
  height: 17px;
  color: var(--gold-500);
}

.ad-landing-hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 168px var(--pad) 122px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6,45,38,.94), rgba(6,45,38,.6) 48%, rgba(6,45,38,.18)),
    linear-gradient(0deg, rgba(6,45,38,.72), rgba(6,45,38,0) 44%);
  background-position: center;
  background-size: cover;
}
.ad-landing-lots {
  background-image:
    linear-gradient(90deg, rgba(6,45,38,.94), rgba(6,45,38,.58) 48%, rgba(6,45,38,.16)),
    linear-gradient(0deg, rgba(6,45,38,.7), rgba(6,45,38,0) 44%),
    url("../img/jarabacoa/jarabacoa-valley-farms.jpg");
}
.ad-landing-villas {
  background-image:
    linear-gradient(90deg, rgba(6,45,38,.94), rgba(6,45,38,.58) 48%, rgba(6,45,38,.16)),
    linear-gradient(0deg, rgba(6,45,38,.7), rgba(6,45,38,0) 44%),
    url("../img/jarabacoa/modern-villa-pool-jarabacoa.jpg");
}
.ad-hero-layout {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr);
  gap: 28px;
  align-items: center;
}
.ad-hero-content {
  width: min(900px, 100%);
  min-width: 0;
}
.ad-hero-content h1 {
  max-width: 860px;
  font-size: clamp(3.6rem, 5.6vw, 5.8rem);
  line-height: .9;
}
.ad-hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 1.26rem;
  line-height: 1.48;
}
.ad-offer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.ad-offer-pills span {
  min-width: 190px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(6,45,38,.72);
  box-shadow: 0 16px 38px rgba(0,0,0,.16);
}
.ad-offer-pills small {
  display: block;
  color: var(--gold-300);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}
.ad-offer-pills strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 950;
  line-height: 1.08;
}
.ad-hero-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(235,210,132,.36);
  border-radius: 10px;
  padding: 26px;
  color: var(--forest-950);
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 68px rgba(0,0,0,.22);
}
.ad-hero-card > span {
  color: var(--forest-700);
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
}
.ad-hero-card > strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--forest-950);
  font-size: 4.75rem;
  font-variant-numeric: tabular-nums;
  font-weight: 760;
  line-height: .82;
  white-space: nowrap;
}
.ad-hero-card > small {
  color: rgba(23,23,20,.68);
  font-size: 1rem;
  font-weight: 900;
}
.ad-hero-card a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 76px;
  margin-top: 12px;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--forest-950);
  background: linear-gradient(135deg, #efd77b, #c9a556);
  box-shadow: 0 16px 38px rgba(6,45,38,.14);
}
.ad-hero-card a svg {
  width: 23px;
  height: 23px;
}
.ad-hero-card a span {
  display: grid;
  gap: 3px;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.ad-hero-card a b {
  font-size: 1.3rem;
  line-height: 1;
}
.ad-landing-intake {
  position: relative;
  z-index: 4;
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  scroll-margin-top: var(--fixed-header-offset);
  margin: -76px auto 0;
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: 18px;
  align-items: stretch;
}
.ad-intake-copy,
.ad-intake-form-panel {
  border: 1px solid rgba(6,45,38,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 62px rgba(6,45,38,.14);
}
.ad-intake-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 26px;
}
.ad-intake-copy .eyebrow { margin: 0; color: var(--forest-700); }
.ad-intake-copy h2 {
  margin: 0;
  color: var(--forest-950);
  font-size: 2.55rem;
  line-height: .98;
}
.ad-trust-grid {
  display: grid;
  gap: 9px;
}
.ad-trust-grid span {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  color: rgba(23,23,20,.78);
  font-size: .95rem;
  font-weight: 850;
  line-height: 1.3;
}
.ad-trust-grid svg,
.ad-proof-copy svg {
  width: 19px;
  height: 19px;
  color: var(--gold-500);
}
.ad-safety-note {
  margin: 0;
  border-top: 1px solid rgba(6,45,38,.1);
  padding-top: 14px;
  color: rgba(23,23,20,.66);
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.45;
}
.ad-intake-form-panel {
  padding: 22px;
}
.instagram-lead-form {
  margin-top: 0;
}
.instagram-form-head {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}
.instagram-form-head strong {
  color: var(--forest-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}
.instagram-form-head span {
  color: rgba(23,23,20,.68);
  font-size: .98rem;
  font-weight: 650;
  line-height: 1.45;
}
.instagram-form-grid {
  gap: 11px;
}
.instagram-lead-form textarea {
  min-height: 88px;
}
.instagram-lead-form .btn.primary {
  width: 100%;
  margin-top: 16px;
}
.ad-highlight-grid,
.ad-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.ad-highlight-grid article,
.ad-step-grid article,
.ad-link-panel,
.ad-faq-section .faq-list article {
  min-width: 0;
  border: 1px solid rgba(6,45,38,.11);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6,45,38,.06);
}
.ad-highlight-grid svg {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 10px;
  color: var(--forest-950);
  background: rgba(201,165,86,.22);
}
.ad-highlight-grid h3,
.ad-step-grid h3,
.ad-faq-section h3 {
  margin-top: 16px;
  color: var(--forest-950);
  font-size: 1.68rem;
  line-height: 1.05;
}
.ad-highlight-grid p,
.ad-step-grid p,
.ad-faq-section p {
  margin: 10px 0 0;
  color: rgba(23,23,20,.7);
  font-size: .98rem;
  line-height: 1.48;
}
.ad-process-band {
  margin-top: 18px;
  padding: 76px var(--pad);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6,45,38,.96), rgba(20,82,70,.88)),
    var(--forest-950);
}
.ad-process-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.ad-process-heading {
  max-width: 820px;
  margin-bottom: 26px;
}
.ad-process-heading h2 {
  color: var(--white);
  font-size: 3.05rem;
}
.ad-step-grid article {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}
.ad-step-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--forest-950);
  background: var(--gold-300);
  font-weight: 950;
}
.ad-step-grid h3 {
  color: var(--white);
}
.ad-step-grid p {
  color: rgba(255,255,255,.76);
}
.ad-proof-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .58fr);
  gap: 18px;
  align-items: start;
}
.ad-proof-copy h2 {
  max-width: 780px;
}
.ad-proof-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.ad-proof-copy li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  color: rgba(23,23,20,.74);
  font-size: 1rem;
  font-weight: 850;
}
.ad-link-panel {
  display: grid;
  gap: 10px;
}
.ad-link-panel strong {
  display: block;
  color: var(--forest-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}
.ad-link-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  border: 1px solid rgba(6,45,38,.12);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--forest-950);
  background: var(--mist-100);
  font-weight: 900;
}
.ad-link-panel svg {
  width: 17px;
  height: 17px;
  color: var(--gold-500);
}
.ad-faq-section {
  padding-top: 42px;
}

.path-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  grid-template-areas:
    "land villas"
    "homes plans";
  grid-auto-rows: minmax(290px, 1fr);
  gap: 16px;
  align-items: stretch;
}
.path-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
  color: var(--white);
  background: var(--forest-700);
  isolation: isolate;
  box-shadow: 0 16px 40px rgba(6,45,38,.1);
}
.path-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(6,45,38,.88), rgba(6,45,38,.18) 62%),
    linear-gradient(90deg, rgba(6,45,38,.3), rgba(6,45,38,0));
  z-index: -1;
}
.path-panel.land {
  grid-area: land;
  background: url("../img/jarabacoa/jarabacoa-valley-farms.jpg") center/cover;
}
.path-panel.villas {
  grid-area: villas;
  background: url("../img/jarabacoa/modern-villa-pool-jarabacoa.jpg") center/cover;
}
.path-panel.homes {
  grid-area: homes;
  background: url("../img/jarabacoa/mountain-villa-aerial-jarabacoa.jpg") center/cover;
}
.path-panel.plans {
  grid-area: plans;
  background: url("../img/jarabacoa/alterra-residences-concept-jarabacoa.jpg") center/cover;
}
.path-panel span { color: var(--gold-300); font-weight: 900; text-transform: uppercase; font-size: .78rem; }
.path-panel strong {
  display: block;
  max-width: 620px;
  margin-top: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.72rem, 2.4vw, 2.55rem);
  line-height: 1;
}
.path-panel:not(.land) strong {
  max-width: 520px;
}

.inventory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}
.home-inventory-section {
  padding-bottom: 68px;
}
.home-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.home-featured-grid .property-card-large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: stretch;
}
.home-featured-grid .property-card-large .property-image {
  aspect-ratio: auto;
  min-height: 380px;
  height: 100%;
}
.home-featured-grid .property-card-large .property-card-body {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 48px);
}
.home-featured-grid .property-card-large h3 {
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
}
.home-featured-grid .property-card-large p {
  max-width: 56ch;
  font-size: 1.1rem;
}
.home-featured-grid .property-card:not(.property-card-large) .property-image {
  aspect-ratio: 16 / 9;
}
.home-featured-grid .property-card:not(.property-card-large) .property-card-body {
  padding: 24px;
}
.inventory-more {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}
.featured-grid, .property-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.listing-page .property-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.property-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6,45,38,.06);
}
.property-card-large { grid-column: span 2; }
.property-image { position: relative; display: block; aspect-ratio: 4 / 3; background: var(--sand-200); overflow: hidden; }
.property-card-gallery {
  position: relative;
  overflow: hidden;
  background: var(--sand-200);
}
.property-card-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .28s ease;
}
.property-card-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
}
.property-card-large .property-image { aspect-ratio: 16 / 9; }
.listing-page .property-card .property-image { aspect-ratio: 16 / 10; }
.property-image img, .property-card-slide img, .property-gallery-slide img, .blog-hero img, .blog-tile img, .gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-gallery-slide.is-contained img {
  object-fit: contain;
  object-position: center top;
}
.property-card-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  color: var(--white);
  background: rgba(6,45,38,.72);
  box-shadow: 0 12px 28px rgba(6,45,38,.2);
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.property-card-nav svg { width: 20px; height: 20px; }
.property-card-prev { left: 12px; }
.property-card-next { right: 12px; }
.property-card-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 8px;
  background: rgba(6,45,38,.72);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}
.property-card-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255,255,255,.52);
  cursor: pointer;
}
.property-card-dots button.is-active { width: 18px; border-radius: 999px; background: var(--gold-300); }
.rendering-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(6,45,38,.78);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.15;
  backdrop-filter: blur(8px);
}
.property-card-body { padding: 22px; }
.listing-page .property-card-body { padding: 26px; }
.property-meta, .spec-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}
.property-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: var(--forest-950);
  border: 1px solid rgba(6,45,38,.12);
  background: rgba(239, 243, 235, .92);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .86rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.property-meta span:last-child {
  border-color: rgba(45,125,120,.16);
  color: #064638;
  background: rgba(45,125,120,.12);
}
.property-card h3 {
  --card-title-line-height: 1.02;
  display: -webkit-box;
  min-height: calc(2em * var(--card-title-line-height));
  margin-top: 14px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: var(--card-title-line-height);
}
.listing-page .property-card h3 {
  margin-top: 16px;
  font-size: clamp(1.8rem, 2.35vw, 2.45rem);
}
.property-card p {
  --card-description-line-height: 1.52;
  display: -webkit-box;
  min-height: calc(3em * var(--card-description-line-height));
  margin-top: 12px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  color: rgba(23,23,20,.78);
  font-size: 1.03rem;
  line-height: var(--card-description-line-height);
}
.listing-page .property-card p { font-size: 1.06rem; line-height: 1.52; }
.spec-line {
  gap: 9px 13px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(6,45,38,.1);
}
.spec-line strong {
  color: var(--forest-950);
  font-size: 1.24rem;
  letter-spacing: .01em;
}
.spec-line span {
  color: rgba(23,23,20,.76);
  font-size: 1rem;
  font-weight: 780;
}
.starting-line {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin-top: 12px;
  border: 1px solid rgba(201, 165, 86, .48);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--forest-950);
  background: linear-gradient(180deg, rgba(238, 207, 131, .34), rgba(201, 165, 86, .14));
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.sticky-lead, .action-panel {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.lead-form { margin-top: 18px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
label span { display: block; margin-bottom: 6px; color: var(--forest-950); font-size: .82rem; font-weight: 800; }
.lead-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not(.hp-field),
.lead-form select,
.lead-form textarea,
.action-panel form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.action-panel form select,
.action-panel form textarea,
.filters select,
.recovery-search input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.chatbot-entry input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--charcoal-950);
  background-color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}
select:not([multiple]) {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--forest-950) 50%),
    linear-gradient(135deg, var(--forest-950) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}
.sticky-lead .form-grid, .action-panel .form-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}
.sticky-lead .span-2, .action-panel .span-2 { grid-column: auto; }
.lead-form label:not(.checkbox-line),
.action-panel form label:not(.checkbox-line),
.recovery-search label {
  display: grid;
  gap: 7px;
  min-width: 0;
}
.lead-form label span,
.action-panel form label span,
.recovery-search label span { margin-bottom: 0; }
.lead-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not(.hp-field),
.lead-form select,
.lead-form textarea,
.action-panel form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.action-panel form select,
.action-panel form textarea,
.recovery-search input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]) {
  min-height: 50px;
  border-radius: 12px;
  border-color: rgba(6,45,38,.16);
  background-color: rgba(255,255,255,.96);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}
.lead-form textarea,
.action-panel form textarea { min-height: 112px; resize: vertical; }
.lead-form input:not([type="checkbox"]):not([type="radio"]):not(.hp-field):focus,
.lead-form select:focus,
.lead-form textarea:focus,
.action-panel form input:not([type="checkbox"]):not([type="radio"]):focus,
.action-panel form select:focus,
.action-panel form textarea:focus,
.recovery-search input:focus,
.chatbot-entry input:focus {
  border-color: var(--gold-500);
  outline: 3px solid rgba(201,165,86,.18);
}
.span-2 { grid-column: 1 / -1; }
.visit-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.sticky-lead .visit-fields, .action-panel .visit-fields { grid-template-columns: 1fr; }
.visit-fields[hidden] { display: none; }
.checkbox-line, .filters .check {
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkbox-line input, .filters .check input { width: auto; }
.lead-form .checkbox-line,
.action-panel form .checkbox-line {
  align-items: center;
  gap: 11px;
  min-height: 50px;
  border: 1px solid rgba(6,45,38,.14);
  border-radius: 12px;
  padding: 12px;
  background: rgba(247,243,234,.72);
}
.checkbox-line input[type="checkbox"],
.filters .check input[type="checkbox"] {
  appearance: none;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  min-height: 0;
  margin: 0;
  border: 1.5px solid rgba(6,45,38,.38);
  border-radius: 6px;
  padding: 0;
  background: var(--white);
  box-shadow: none;
  cursor: pointer;
}
.checkbox-line input[type="checkbox"]:checked,
.filters .check input[type="checkbox"]:checked {
  border-color: var(--forest-950);
  background: var(--forest-950);
}
.checkbox-line input[type="checkbox"]:checked::after,
.filters .check input[type="checkbox"]:checked::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) translateY(-1px);
}
.checkbox-line input[type="checkbox"]:focus-visible,
.filters .check input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(201,165,86,.24);
  outline-offset: 2px;
}
.checkbox-line span { margin: 0; line-height: 1.28; }
.consent-line { align-items: flex-start; margin-top: 2px; }
.consent-line span { margin-bottom: 0; line-height: 1.35; font-size: .78rem; font-weight: 700; }
.consent-line a { color: var(--forest-700); text-decoration: underline; text-underline-offset: 2px; }
.form-note {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: var(--mist-100);
}
.form-note strong, .form-note span { display: block; }
.form-note strong { color: var(--forest-950); font-size: .86rem; }
.form-note span { margin-top: 4px; color: rgba(23,23,20,.68); font-size: .82rem; line-height: 1.35; }
.contact-requirement {
  margin: -2px 0 2px;
  border: 1px solid rgba(45,125,120,.18);
  border-radius: 12px;
  padding: 10px 12px;
  color: rgba(6,45,38,.76);
  background: rgba(45,125,120,.08);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.35;
}
.form-status { min-height: 22px; color: var(--forest-700); font-weight: 700; }
.hp-field,
.lead-form .hp-field {
  position: fixed !important;
  top: 0 !important;
  left: -100vw !important;
  width: 1px !important;
  min-height: 0;
  height: 1px !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  clip: rect(0, 0, 0, 0);
  overflow: hidden !important;
  opacity: 0;
  pointer-events: none;
}
.lead-form .btn.primary {
  display: flex;
  width: min(100%, 292px);
  min-height: 58px;
  margin: 18px auto 0;
  padding: 15px 24px 14px;
}

.lifestyle-band {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(320px, .74fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: 82px var(--pad);
  background:
    linear-gradient(90deg, rgba(6,45,38,.94), rgba(6,45,38,.72) 48%, rgba(6,45,38,.42)),
    url("../img/jarabacoa/salto-baiguate-waterfall-jarabacoa.jpg") center/cover;
  color: var(--white);
}
.lifestyle-band h2 { max-width: 820px; }
.lifestyle-copy p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 20px;
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
  line-height: 1.55;
}
.lifestyle-proof-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255,255,255,.94);
  color: var(--forest-950);
  box-shadow: 0 22px 58px rgba(0,0,0,.2);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.lifestyle-proof-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-500), var(--river-600));
}
.proof-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--forest-950);
  background: rgba(201,165,86,.18);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.lifestyle-proof-card > p {
  margin: 18px 0 22px;
  color: rgba(23,23,20,.82);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 850;
  line-height: 1.32;
}
.lifestyle-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.lifestyle-proof-grid span {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(6,45,38,.1);
  border-radius: 8px;
  padding: 12px;
  background: var(--mist-100);
}
.lifestyle-proof-grid svg {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  padding: 8px;
  color: var(--forest-950);
  background: rgba(45,125,120,.14);
}
.lifestyle-proof-grid strong {
  display: block;
  color: var(--forest-950);
  font-size: .9rem;
  line-height: 1.2;
}
.lead-magnet {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.lead-copy p:not(.eyebrow) { font-size: 1.1rem; color: rgba(23,23,20,.72); }
.home-request-panel {
  position: relative;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: stretch;
  margin-top: 24px;
  margin-bottom: 24px;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 44px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6,45,38,.98), rgba(20,82,70,.9)),
    var(--forest-950);
  box-shadow: 0 28px 82px rgba(6,45,38,.18);
  overflow: hidden;
}
.home-request-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-500), var(--river-600));
}
.home-request-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
}
.home-request-copy .eyebrow {
  margin: 0;
}
.home-request-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: 3.5rem;
  line-height: .96;
}
.home-request-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.8);
  font-size: 1.06rem;
  line-height: 1.55;
}
.home-request-signals {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}
.home-request-signals span {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255,255,255,.08);
}
.home-request-signals svg {
  width: 22px;
  height: 22px;
  color: var(--gold-500);
}
.home-request-signals strong {
  color: rgba(255,255,255,.88);
  font-size: .94rem;
  line-height: 1.3;
}
.home-request-card {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: clamp(18px, 2.4vw, 26px);
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.home-request-card .lead-form {
  margin-top: 0;
}
.home-request-card .lead-form .btn.primary {
  margin: 18px 0 0 auto;
}
.home-request-card .form-status {
  text-align: right;
}

.blog-pathways {
  padding-bottom: 24px;
}
.blog-path-grid, .article-action-grid, .contextual-link-grid, .related-guide-list, .recovery-path-grid {
  display: grid;
  gap: 14px;
}
.blog-path-grid, .article-action-grid, .contextual-link-grid, .recovery-path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.blog-path-grid a, .article-action-grid a, .contextual-link-grid a, .related-guide-list a, .recovery-path-grid a {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}
.blog-path-grid svg, .article-action-grid svg, .contextual-link-grid svg, .recovery-path-grid svg {
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  color: var(--gold-500);
}
.blog-path-grid strong, .article-action-grid strong, .contextual-link-grid strong, .related-guide-list strong, .recovery-path-grid strong {
  display: block;
  color: var(--forest-950);
  line-height: 1.2;
}
.blog-path-grid span, .article-action-grid span, .contextual-link-grid span, .related-guide-list span, .recovery-path-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(23,23,20,.7);
  font-size: .94rem;
  line-height: 1.45;
}
.article-next-steps, .contextual-links, .related-guides {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.article-next-steps .section-heading, .contextual-links .section-heading, .related-guides .section-heading { margin-bottom: 24px; }
.article-next-steps .section-heading h2, .contextual-links .section-heading h2, .related-guides .section-heading h2 { margin-top: 0; }
.not-found-recovery {
  padding-bottom: 24px;
}
.recovery-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}
.blog-library {
  padding-top: 62px;
}
.blog-filter-form {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 34px rgba(6,45,38,.06);
}
.blog-search-field {
  display: grid;
  gap: 7px;
}
.blog-search-field span {
  color: var(--forest-950);
  font-size: .82rem;
  font-weight: 900;
}
.blog-search-field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(6,45,38,.14);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--charcoal-950);
  background: var(--white);
}
.blog-search-field input:focus {
  border-color: var(--gold-500);
  outline: 3px solid rgba(201,165,86,.18);
}
.blog-category-filters {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-category-filters button {
  min-height: 42px;
  border: 1px solid rgba(6,45,38,.14);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--forest-950);
  background: var(--white);
  font-size: .88rem;
  font-weight: 900;
  cursor: pointer;
}
.blog-category-filters button.is-active,
.blog-category-filters button:hover {
  border-color: var(--forest-950);
  color: var(--white);
  background: var(--forest-950);
}
.blog-card-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.blog-card,
.blog-tile {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6,45,38,.06);
}
.blog-card-media,
.blog-tile > img {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sand-200);
}
.blog-card-media img,
.blog-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-body {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: stretch;
  gap: 12px;
  padding: 20px;
}
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.blog-card-meta span,
.blog-tile span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 9px;
  color: var(--forest-700);
  background: var(--mist-100);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}
.blog-card h3 {
  margin: 0;
  color: var(--forest-950);
  font-size: 1.9rem;
  line-height: 1.08;
  min-height: 2.16em;
  max-height: 2.16em;
  overflow: hidden;
}
.blog-card h3 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.blog-card p,
.blog-tile p {
  margin: 0;
  color: rgba(23,23,20,.72);
  font-size: .97rem;
  line-height: 1.52;
  min-height: 4.56em;
  max-height: 4.56em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  align-self: end;
  gap: 8px;
  justify-self: start;
  margin-top: 10px;
  color: var(--forest-950);
  font-style: normal;
  font-weight: 950;
}
.blog-read-more svg {
  width: 17px;
  height: 17px;
}
.blog-tile {
  align-content: start;
}
.blog-tile span,
.blog-tile strong,
.blog-tile p {
  margin: 14px 18px 0;
}
.blog-tile strong {
  display: -webkit-box;
  min-height: 2.1em;
  max-height: 2.1em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  color: var(--forest-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.05;
}
.blog-tile p {
  margin-bottom: 18px;
}
.blog-tile .blog-read-more {
  margin: 14px 18px 18px;
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.pagination > a,
.pagination > span,
.pagination div a,
.pagination div span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--forest-950);
  background: var(--white);
  font-weight: 900;
}
.pagination div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.pagination .is-current {
  border-color: var(--forest-950);
  color: var(--white);
  background: var(--forest-950);
}
.pagination .is-disabled {
  color: rgba(23,23,20,.38);
  background: rgba(255,255,255,.55);
}
.empty-state {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
}
.empty-state h2 {
  margin-top: 0;
  color: var(--forest-950);
}

.subhero {
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  padding: 132px var(--pad) 60px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6,45,38,.9), rgba(6,45,38,.45)),
    url("../img/jarabacoa/jarabacoa-paragliding-panorama.jpg") center/cover;
}
.subhero.compact-hero { min-height: 48vh; }
.page-contact .subhero.compact-hero {
  min-height: 56vh;
  padding-bottom: 72px;
}
.page-why .subhero { background-image: linear-gradient(90deg, rgba(6,45,38,.9), rgba(6,45,38,.36)), url("../img/jarabacoa/salto-baiguate-waterfall-jarabacoa.jpg"); }
.page-buying_guide .subhero { background-image: linear-gradient(90deg, rgba(6,45,38,.9), rgba(6,45,38,.36)), url("../img/jarabacoa/jarabacoa-paragliding-panorama.jpg"); }
.page-payment_plans .subhero { background-image: linear-gradient(90deg, rgba(6,45,38,.9), rgba(6,45,38,.36)), url("../img/jarabacoa/villa-pool-lifestyle-jarabacoa.jpg"); }
.page-private_showings .subhero { background-image: linear-gradient(90deg, rgba(6,45,38,.9), rgba(6,45,38,.34)), url("../img/jarabacoa/rafting-river-jarabacoa.jpg"); }
.page-contact .subhero { background-image: linear-gradient(90deg, rgba(6,45,38,.9), rgba(6,45,38,.34)), url("../img/jarabacoa/horseback-riding-jarabacoa-valley.jpg"); }
.page-privacy .subhero,
.page-terms .subhero { background-image: linear-gradient(90deg, rgba(6,45,38,.94), rgba(6,45,38,.54)), url("../img/jarabacoa/jarabacoa-green-valley.jpg"); }
.category-hero.solares { background-image: linear-gradient(90deg, rgba(6,45,38,.9), rgba(6,45,38,.36)), url("../img/jarabacoa/jarabacoa-valley-farms.jpg"); }
.category-hero.villas { background-image: linear-gradient(90deg, rgba(6,45,38,.9), rgba(6,45,38,.36)), url("../img/jarabacoa/modern-villa-pool-jarabacoa.jpg"); }
.category-hero.en-plano { background-image: linear-gradient(90deg, rgba(6,45,38,.9), rgba(6,45,38,.36)), url("../img/jarabacoa/alterra-residences-concept-jarabacoa.jpg"); }
.subhero > div { width: 100%; max-width: 900px; min-width: 0; }
.subhero p { max-width: 740px; font-size: 1.15rem; color: rgba(255,255,255,.84); }

.listing-page { padding-top: 42px; }
.filters {
  display: block;
  margin-bottom: 30px;
  padding: 16px;
  border: 1px solid rgba(6, 45, 38, .14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,243,234,.84)),
    var(--white);
  box-shadow: 0 14px 34px rgba(6,45,38,.08);
}
.filter-primary-row,
.filter-advanced-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  align-items: end;
}
.filter-primary-row {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.filters label {
  min-width: 0;
}
.filters label span {
  color: rgba(6,45,38,.78);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.filters select {
  min-height: 54px;
  border-color: rgba(6,45,38,.14);
  border-radius: 12px;
  padding: 11px 40px 11px 14px;
  color: var(--forest-950);
  background-color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  text-overflow: ellipsis;
}
.filters select:focus {
  border-color: var(--river-600);
  outline: 3px solid rgba(45,125,120,.18);
}
.filter-submit {
  width: 100%;
  min-height: 54px;
  border-radius: 12px;
  padding-inline: 18px;
}
.advanced-filters {
  margin-top: 14px;
  border-top: 1px solid rgba(6,45,38,.08);
}
.advanced-filters summary {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(6,45,38,.14);
  border-radius: 999px;
  color: var(--forest-950);
  background: rgba(255,255,255,.82);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  box-shadow: 0 8px 20px rgba(6,45,38,.06);
}
.advanced-filters summary::-webkit-details-marker {
  display: none;
}
.advanced-filters summary small {
  color: rgba(6,45,38,.58);
  font-size: .82rem;
  font-weight: 800;
}
.advanced-filters summary svg {
  width: 18px;
  height: 18px;
  transition: transform .18s ease;
}
.advanced-filters[open] summary svg {
  transform: rotate(180deg);
}
.filter-advanced-grid {
  margin-top: 14px;
  padding-top: 2px;
}

.property-media-hero {
  position: relative;
  color: var(--white);
  background: var(--forest-900);
  overflow: visible;
}
.property-detail {
  padding-top: 0;
}
.property-gallery-stage {
  position: relative;
  min-height: clamp(522px, calc(72vh + 2px), 782px);
  overflow: hidden;
  background: var(--forest-900);
}
.property-gallery-slide {
  position: absolute;
  inset: 2px 0 0;
}
.property-gallery-slide {
  margin: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(45, 125, 120, .2), rgba(6, 45, 38, 0) 38%),
    linear-gradient(90deg, #031f1a 0%, #07362f 46%, #07362f 54%, #031f1a 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .34s ease;
}
.property-gallery-slide.is-contained {
  background:
    radial-gradient(circle at 50% 45%, rgba(212, 166, 70, .12), rgba(6, 45, 38, 0) 42%),
    linear-gradient(90deg, #031f1a 0%, #07362f 40%, #0a4037 50%, #07362f 60%, #031f1a 100%);
}
.property-gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.property-gallery-slide img {
  object-fit: contain;
  object-position: center top;
}
.property-gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 45, 38, .62), rgba(6, 45, 38, .12) 46%, rgba(6, 45, 38, .34)),
    linear-gradient(0deg, rgba(6, 45, 38, .66), rgba(6, 45, 38, 0) 42%);
}
.property-gallery-slide.is-contained::after {
  background:
    linear-gradient(90deg, rgba(3, 31, 26, .34), rgba(6, 45, 38, .04) 34%, rgba(6, 45, 38, .04) 66%, rgba(3, 31, 26, .34)),
    linear-gradient(0deg, rgba(6, 45, 38, .52), rgba(6, 45, 38, 0) 36%);
}
.property-gallery-slide figcaption {
  position: absolute;
  left: var(--pad);
  bottom: 132px;
  z-index: 2;
  max-width: 420px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(6, 45, 38, .78);
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}
.property-gallery-empty {
  min-height: 100%;
  display: grid;
  align-content: end;
  padding: 160px var(--pad) 120px;
  background:
    linear-gradient(90deg, rgba(6, 45, 38, .92), rgba(6, 45, 38, .36)),
    url("../img/jarabacoa/jarabacoa-green-valley.jpg") center/cover;
}
.property-gallery-empty h1 {
  color: var(--white);
}
.gallery-nav,
.gallery-thumbnail {
  cursor: pointer;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  color: var(--white);
  background: rgba(6, 45, 38, .42);
  box-shadow: 0 14px 34px rgba(6, 45, 38, .22);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
}
.gallery-nav:hover {
  background: rgba(255, 255, 255, .18);
}
.gallery-nav.previous { left: var(--pad); }
.gallery-nav.next { right: var(--pad); }
.gallery-nav svg {
  width: 26px;
  height: 26px;
}
.gallery-counter {
  position: absolute;
  top: 108px;
  right: var(--pad);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(6, 45, 38, .5);
  font-size: .86rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}
.gallery-thumbnails {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-right: 260px;
  padding: 14px var(--pad) 16px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: #031f1a;
  box-shadow: 0 14px 30px rgba(6, 45, 38, .22);
  scrollbar-width: none;
}
.gallery-thumbnails::-webkit-scrollbar { display: none; }
.gallery-thumbnail {
  flex: 0 0 clamp(72px, 7vw, 108px);
  height: 62px;
  border: 2px solid rgba(255, 255, 255, .42);
  border-radius: 8px;
  padding: 0;
  background: rgba(255, 255, 255, .12);
  opacity: .72;
  overflow: hidden;
}
.gallery-thumbnail.is-active {
  border-color: var(--gold-300);
  opacity: 1;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
}
.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.print-mode {
  background: var(--white);
}
.print-mode .site-header,
.print-mode .site-footer,
.print-mode .floating-actions,
.print-mode .mobile-bottom-bar,
.print-mode .chatbot,
.print-mode .share-card,
.print-mode .gallery-nav,
.print-mode .gallery-counter,
.print-mode .gallery-thumbnails,
.print-mode .action-panel {
  display: none;
}
.print-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px var(--pad);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.print-toolbar .eyebrow {
  margin-bottom: 4px;
  color: var(--river-600);
}
.print-toolbar strong {
  color: var(--forest-950);
  font-size: .98rem;
}
.print-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.print-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 30px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--forest-950);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}
.print-summary div {
  min-width: 0;
}
.print-summary span {
  display: block;
  color: rgba(23,23,20,.62);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.print-summary strong {
  display: block;
  margin-top: 4px;
  color: var(--forest-950);
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.print-summary p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: rgba(23,23,20,.72);
  font-size: .9rem;
  font-weight: 700;
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}
.detail-main h1 { color: var(--forest-950); }
.detail-main, .rich-copy { min-width: 0; }
.project-label { color: var(--river-600); font-weight: 800; }
.spec-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 30px;
}
.spec-rail div, .payment-terms div, .metric-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}
.spec-rail strong { display: block; color: var(--forest-950); font-size: 1.2rem; }
.spec-rail span { color: rgba(23,23,20,.62); font-weight: 700; }
.detail-block { margin: 38px 0; }
.detail-block h2 { margin-bottom: 16px; color: var(--forest-950); font-size: 2.5rem; }
.detail-block p {
  color: rgba(23,23,20,.78);
  font-size: 1.08rem;
  line-height: 1.62;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  border-block: 1px solid rgba(6, 45, 38, .12);
  padding: 16px 0;
}
.feature-list span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 0;
  padding: 2px 0;
  color: rgba(6, 45, 38, .9);
  background: transparent;
  font-size: .92rem;
  font-weight: 800;
}
.feature-list span::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201, 165, 86, .14);
}
.buyer-checklist ul {
  counter-reset: buyer-step;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(6, 45, 38, .14);
}
.buyer-checklist li {
  counter-increment: buyer-step;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(6, 45, 38, .14);
  border-radius: 0;
  padding: 18px 0;
  background: transparent;
}
.buyer-checklist li::before {
  content: counter(buyer-step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(6, 45, 38, .18);
  border-radius: 50%;
  color: var(--forest-950);
  background: linear-gradient(180deg, rgba(201, 165, 86, .2), rgba(255, 255, 255, .72));
  font-size: .78rem;
  font-weight: 950;
}
.buyer-checklist strong {
  display: block;
  grid-column: 2;
  margin: 1px 0 6px;
  color: var(--forest-950);
  font-size: 1.05rem;
  line-height: 1.2;
}
.buyer-checklist span {
  display: block;
  grid-column: 2;
  max-width: 62ch;
  color: rgba(23,23,20,.68);
  font-size: .96rem;
  line-height: 1.48;
}
.payment-terms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0; }
.payment-terms dt { color: rgba(23,23,20,.6); font-weight: 800; }
.payment-terms dd { margin: 4px 0 0; color: var(--forest-950); font-weight: 900; }
.payment-intro {
  max-width: 72ch;
  color: rgba(23,23,20,.76);
  font-size: 1.04rem;
  line-height: 1.58;
}
.purchase-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 20px;
}
.purchase-option-card {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(6,45,38,.12);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(239,243,235,.74)),
    var(--white);
  box-shadow: 0 14px 32px rgba(6,45,38,.06);
}
.purchase-option-card span {
  color: var(--gold-600);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.purchase-option-card strong {
  color: var(--forest-950);
  font-size: 1.22rem;
  line-height: 1.05;
}
.purchase-option-card p {
  margin: 0;
  color: rgba(23,23,20,.68);
  font-size: .95rem;
  line-height: 1.45;
}
.purchase-option-card em {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--forest-950);
  background: rgba(201,165,86,.2);
  font-style: normal;
  font-weight: 950;
}
.purchase-option-featured {
  border-color: rgba(201,165,86,.4);
  background:
    linear-gradient(135deg, rgba(251,241,212,.94), rgba(255,255,255,.92)),
    var(--white);
}
.fine-print { color: rgba(23,23,20,.68); font-size: .92rem; }
.closing-cost-box {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.closing-cost-box h3 {
  color: var(--forest-950);
  font-size: 2rem;
}
.closing-cost-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.instruction-box {
  margin: 22px 0;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-500);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}
.instruction-box p { margin: 0 0 12px; }
.instruction-box p:last-child { margin-bottom: 0; }
.gallery-grid > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: 8px; background: var(--white); }
.gallery-grid img { aspect-ratio: 16 / 10; }
.gallery-grid figcaption { padding: 10px 12px; color: var(--coffee-700); font-size: .84rem; font-weight: 800; }
.action-panel {
  display: grid;
  align-self: start;
  align-content: start;
  gap: 14px;
}
.action-panel h2 {
  font-size: clamp(2rem, 3vw, 2.35rem);
}
.action-panel > p {
  margin: 0;
  color: rgba(23,23,20,.72);
  font-size: 1.04rem;
  line-height: 1.52;
}
.deposit-summary-card {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(201,165,86,.42);
  border-radius: 8px;
  padding: 16px;
  color: var(--forest-950);
  background:
    linear-gradient(145deg, rgba(251,241,212,.92), rgba(255,255,255,.88)),
    var(--white);
  box-shadow: 0 16px 34px rgba(6,45,38,.08);
}
.deposit-summary-card span {
  color: var(--gold-700);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.deposit-summary-card strong {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.72rem;
  line-height: 1;
}
.deposit-summary-card p {
  margin: 0;
  color: rgba(23,23,20,.68);
  font-size: .92rem;
  font-weight: 760;
}
.action-panel > .btn {
  width: 100%;
  min-height: 48px;
}
.action-panel > .btn svg {
  width: 18px;
  height: 18px;
}
.action-panel > .btn.secondary {
  border-radius: 8px;
}
.action-panel .lead-form {
  margin-top: 4px;
}
.action-panel .form-grid,
.action-panel .visit-fields {
  grid-template-columns: 1fr;
}
.action-panel form { display: grid; gap: 12px; }

.content-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: start;
}
.content-page.contact-page-layout {
  display: block;
}
.content-page.buyer-page-layout {
  display: block;
}
.content-page.contact-page-layout .rich-copy,
.content-page.buyer-page-layout .rich-copy {
  max-width: none;
}
.content-page.contact-page-layout .rich-copy > p,
.content-page.buyer-page-layout .rich-copy > p {
  max-width: 820px;
}
.rich-copy {
  max-width: 820px;
  font-size: 1.08rem;
}
.rich-copy h2 { margin-top: 30px; font-size: 2.4rem; color: var(--forest-950); }
.rich-copy p { margin: 0 0 18px; }
.why-evidence {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.why-evidence .section-heading { margin-bottom: 24px; }
.why-evidence .section-heading h2 { margin-top: 0; }
.why-signal-grid, .buyer-fit-grid {
  display: grid;
  gap: 14px;
}
.why-signal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.buyer-fit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}
.why-signal-grid article, .buyer-fit-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}
.why-signal-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--river-600);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.why-signal-grid strong, .buyer-fit-grid strong {
  display: block;
  color: var(--forest-950);
  line-height: 1.2;
}
.why-signal-grid p, .buyer-fit-grid p {
  margin: 10px 0 0;
  color: rgba(23,23,20,.7);
  font-size: .94rem;
  line-height: 1.45;
}
.buyer-fit-grid svg {
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  color: var(--gold-500);
}
.source-note {
  margin-top: 18px !important;
  border-left: 4px solid var(--gold-500);
  padding: 12px 14px;
  color: rgba(23,23,20,.72);
  background: rgba(255,255,255,.72);
  font-size: .92rem;
  font-weight: 700;
}
.source-note a { color: var(--forest-700); text-decoration: underline; text-underline-offset: 3px; }
.contact-routing {
  margin-top: 10px;
}
.contact-routing .section-heading { margin-bottom: 24px; }
.contact-routing .section-heading h2 { margin-top: 0; }
.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 14px;
  margin-top: 18px;
}
.contact-method-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 14px;
  align-items: center;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 28px rgba(6,45,38,.06);
}
.contact-method-grid article:only-child {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 6px 16px;
  align-items: center;
  padding: 20px 22px;
}
.contact-method-grid article:only-child svg {
  grid-row: 1 / span 2;
  align-self: center;
  margin: 0;
}
.contact-method-grid article:only-child strong {
  align-self: end;
}
.contact-method-grid article:only-child p {
  align-self: start;
  margin: 0;
}
.contact-method-grid article:only-child .table-action {
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-self: end;
  white-space: nowrap;
}
.contact-method-grid svg {
  grid-row: 1 / span 3;
  width: 22px;
  height: 22px;
  margin: 0;
  color: var(--gold-500);
}
.contact-method-grid strong, .contact-prep strong {
  display: block;
  color: var(--forest-950);
  line-height: 1.2;
}
.contact-method-grid p {
  margin: 0;
  color: rgba(23,23,20,.7);
  font-size: .9rem;
  line-height: 1.45;
}
.contact-method-grid .table-action {
  width: fit-content;
  margin-top: 4px;
}
.contact-support-strip {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: rgba(255,255,255,.7);
}
.contact-support-strip span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--forest-950);
  background: rgba(201,165,86,.2);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-support-strip p {
  margin: 0;
  color: rgba(23,23,20,.72);
  font-size: .96rem;
  font-weight: 720;
  line-height: 1.45;
}
.contact-request-panel {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
  margin-top: 26px;
  border: 1px solid rgba(6,45,38,.14);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(6,45,38,.94), rgba(45,125,120,.72)),
    var(--forest-900);
  box-shadow: 0 24px 70px rgba(6,45,38,.16);
  overflow: hidden;
}
.contact-request-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  color: var(--white);
}
.contact-request-copy .eyebrow {
  margin: 0;
}
.contact-request-copy h2 {
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-size: 3.6rem;
  line-height: .95;
}
.contact-request-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 1.02rem;
  line-height: 1.55;
}
.contact-response-list {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.contact-response-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255,255,255,.08);
}
.contact-response-list svg {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: var(--gold-500);
}
.contact-response-list span {
  color: rgba(255,255,255,.84);
  font-size: .94rem;
  font-weight: 750;
  line-height: 1.35;
}
.contact-request-card {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: clamp(18px, 2.4vw, 26px);
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.contact-request-card .lead-form {
  margin-top: 0;
}
.contact-request-card .lead-form .btn.primary {
  margin: 18px 0 0 auto;
}
.contact-request-card .form-status {
  text-align: right;
}
.buying-guide-experience .article-action-grid {
  margin-top: 28px;
}
.buying-guide-request-panel {
  margin-top: 34px;
}
.payment-trust {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.payment-trust .section-heading { margin-bottom: 24px; }
.payment-trust .section-heading h2 { margin-top: 0; }
.payment-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.payment-step-grid article, .thank-you-step-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}
.payment-step-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--forest-950);
  background: var(--gold-300);
  font-weight: 900;
}
.payment-step-grid strong, .payment-guardrails strong, .thank-you-step-grid strong {
  display: block;
  color: var(--forest-950);
  line-height: 1.2;
}
.payment-step-grid p, .thank-you-step-grid p {
  margin: 10px 0 0;
  color: rgba(23,23,20,.7);
  font-size: .94rem;
  line-height: 1.45;
}
.thank-you-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.thank-you-step-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest-950);
  font-weight: 900;
}
.thank-you-step-grid .table-action {
  display: inline-block;
  margin-top: 12px;
}
.payment-guardrails {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-500);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255,255,255,.72);
}
.payment-guardrails ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}
.payment-guardrails li { color: rgba(23,23,20,.72); }
.buying-roadmap {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.buying-roadmap .section-heading { margin-bottom: 24px; }
.buying-roadmap .section-heading h2 { margin-top: 0; }
.roadmap-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.roadmap-steps article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}
.roadmap-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest-950);
  font-weight: 900;
}
.roadmap-steps strong, .document-checklist strong {
  display: block;
  color: var(--forest-950);
  line-height: 1.2;
}
.roadmap-steps p {
  margin: 10px 0 0;
  color: rgba(23,23,20,.7);
  font-size: .94rem;
  line-height: 1.45;
}
.document-checklist {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--river-600);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255,255,255,.72);
}
.document-checklist ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}
.document-checklist li { color: rgba(23,23,20,.72); }
.neighborhood-context {
  margin: 30px 0;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.neighborhood-context .section-heading { margin-bottom: 24px; }
.neighborhood-context .section-heading h2 { margin-top: 0; }
.neighborhood-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.neighborhood-signal-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}
.neighborhood-signal-grid span {
  display: block;
  color: var(--gold-500);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: .9;
}
.neighborhood-signal-grid strong, .area-checklist strong {
  display: block;
  margin-top: 10px;
  color: var(--forest-950);
  line-height: 1.2;
}
.neighborhood-signal-grid p {
  margin: 10px 0 0;
  color: rgba(23,23,20,.7);
  font-size: .94rem;
  line-height: 1.45;
}
.area-checklist {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--river-600);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255,255,255,.72);
}
.area-checklist ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}
.area-checklist li { color: rgba(23,23,20,.72); }
.neighborhood-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.neighborhood-card {
  min-width: 0;
  display: grid;
  gap: 18px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6,45,38,.06);
}
.neighborhood-card h3 {
  margin: 8px 0 10px;
  color: var(--forest-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.05;
}
.neighborhood-card p:not(.eyebrow) {
  color: rgba(23,23,20,.7);
  font-size: .95rem;
  line-height: 1.45;
}
.neighborhood-card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.neighborhood-card-stats span {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  color: rgba(23,23,20,.68);
  background: var(--mist-100);
  font-size: .78rem;
  font-weight: 800;
}
.neighborhood-card-stats strong {
  display: block;
  color: var(--forest-950);
  font-size: 1.25rem;
}
.neighborhood-index-cta {
  padding-top: 24px;
}
.category-guidance {
  padding-bottom: 24px;
}
.inventory-context {
  padding-bottom: 24px;
}
.inventory-context.seo-context-block {
  padding: clamp(24px, 3.4vw, 38px);
}
.inventory-context .buyer-guide-panel {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
}
.inventory-context .buyer-guide-copy h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 4.2vw, 4.35rem);
  line-height: .98;
}
.inventory-context .buyer-guide-copy p {
  max-width: 760px;
  font-size: 1.1rem;
}
.inventory-context .buyer-guide-aside {
  display: block;
  min-height: auto;
  padding: 22px;
}
.inventory-context .buyer-guide-aside span {
  display: block;
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.inventory-context .buyer-guide-aside strong {
  display: block;
  max-width: 34ch;
  font-size: 1.2rem;
  line-height: 1.32;
  text-wrap: balance;
}
.inventory-context .buyer-guide-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 16px;
}
.inventory-context .buyer-guide-card {
  min-height: 0;
  padding: 20px;
}
.inventory-context .buyer-guide-card > div {
  min-width: 0;
}
.inventory-context .buyer-guide-card p {
  max-width: 34ch;
}
.seo-context-block {
  position: relative;
  margin-top: 42px;
  border: 1px solid rgba(6,45,38,.1);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  background:
    radial-gradient(circle at 12% 0%, rgba(201,165,86,.16), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(244,241,232,.92)),
    var(--white);
  box-shadow: 0 18px 48px rgba(6,45,38,.07);
  overflow: hidden;
}
.seo-context-block::before {
  content: "";
  position: absolute;
  inset: 20px auto auto 20px;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold-500);
}
.seo-context-block .section-heading p,
.buyer-guide-copy p {
  max-width: 620px;
  color: rgba(23,23,20,.68);
  line-height: 1.55;
}
.buyer-guide-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: clamp(18px, 4vw, 38px);
  align-items: stretch;
}
.buyer-guide-copy h2 {
  max-width: 850px;
  color: var(--forest-950);
  text-wrap: balance;
}
.buyer-guide-copy p {
  margin: 18px 0 0;
  font-size: 1.02rem;
}
.buyer-guide-aside {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-content: start;
  border-radius: 8px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6,45,38,.98), rgba(20,82,70,.92)),
    var(--forest-950);
  box-shadow: 0 16px 34px rgba(6,45,38,.14);
}
.buyer-guide-aside:has(> svg) {
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 8px 14px;
}
.buyer-guide-aside > svg {
  grid-row: auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 12px;
  color: var(--gold-300);
  background: rgba(255,255,255,.08);
}
.buyer-guide-aside:has(> svg) > svg {
  grid-row: 1 / span 3;
}
.buyer-guide-aside span {
  color: var(--gold-300);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.buyer-guide-aside strong {
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  line-height: 1.32;
}
.buyer-guide-aside .btn {
  grid-column: 1 / -1;
  justify-self: start;
  width: auto;
  max-width: 100%;
  padding-inline: 22px;
  min-height: 44px;
  border-color: rgba(255,255,255,.28);
  color: var(--forest-950);
  background: var(--gold-300);
  white-space: nowrap;
}
.buyer-guide-aside:has(> svg) .btn {
  grid-column: 2;
}
.category-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.inventory-stats {
  max-width: 640px;
}
.category-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(23,23,20,.72);
  background: var(--white);
  font-size: .88rem;
  font-weight: 800;
}
.category-stats strong {
  color: var(--forest-950);
  font-size: 1.2rem;
}
.category-guidance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border: 0;
}
.category-guidance-grid article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
  gap: 14px;
  min-width: 0;
  border: 1px solid rgba(6,45,38,.1);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 28px rgba(6,45,38,.05);
  overflow: hidden;
}
.category-guidance-grid article:nth-child(-n+3) {
  border-top: 1px solid rgba(6,45,38,.1);
}
.buyer-guide-grid {
  margin-top: 24px;
}
.seo-section-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.seo-section-list article {
  border: 1px solid rgba(6,45,38,.1);
  border-radius: 8px;
  padding: clamp(18px, 2.4vw, 24px);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 28px rgba(6,45,38,.05);
}
.seo-section-list h3 {
  margin: 0 0 10px;
  color: var(--forest-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}
.seo-section-list p {
  margin: 0;
  color: rgba(23,23,20,.72);
  font-size: 1rem;
  line-height: 1.58;
}
.authority-hero {
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(6,45,38,.92), rgba(6,45,38,.42)),
    url("../img/jarabacoa/modern-villa-pool-jarabacoa.jpg") center/cover;
}
.authority-page {
  display: grid;
  gap: 28px;
}
.authority-answer-panel {
  align-items: center;
  border: 1px solid rgba(6,45,38,.1);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 46px rgba(6,45,38,.08);
}
.authority-stat-card strong {
  display: block;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: .82;
}
.authority-stat-card p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.4;
}
.authority-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.authority-path-grid a {
  display: grid;
  gap: 10px;
  min-width: 0;
  border: 1px solid rgba(6,45,38,.1);
  border-radius: 8px;
  padding: 20px;
  color: var(--text);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6,45,38,.06);
}
.authority-path-grid a:hover {
  border-color: rgba(45,125,120,.28);
  transform: translateY(-2px);
}
.authority-path-grid svg {
  width: 38px;
  height: 38px;
  color: var(--gold-500);
}
.authority-path-grid span {
  color: var(--forest-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.9rem, 4vw, 4.2rem);
  font-weight: 800;
  line-height: .85;
}
.authority-path-grid strong {
  color: var(--forest-950);
  font-size: 1.04rem;
  line-height: 1.2;
}
.authority-path-grid p {
  margin: 0;
  color: rgba(23,23,20,.7);
  line-height: 1.48;
}
.authority-featured {
  margin-top: 8px;
}
.authority-faq {
  margin-top: 4px;
}
.category-link-grid {
  margin-top: 18px;
}
.guide-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: var(--forest-950);
  background: rgba(201,165,86,.18);
}
.guide-icon svg {
  width: 22px;
  height: 22px;
}
.guide-number {
  display: none;
}
.category-guidance-grid article > svg {
  grid-column: 1;
  grid-row: 1;
  width: 30px;
  height: 30px;
  align-self: start;
  margin-top: 2px;
}
.category-guidance-grid strong {
  display: block;
  grid-column: 2;
  grid-row: 1;
  color: var(--forest-950);
  font-size: 1.02rem;
  line-height: 1.2;
  min-height: 2.4em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.category-guidance-grid p {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 8px 0 0;
  color: rgba(23,23,20,.7);
  font-size: .92rem;
  line-height: 1.48;
  min-height: 4.44em;
  max-height: 4.44em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.buyer-faq {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 16px;
  border: 1px solid rgba(6,45,38,.1);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255,255,255,.64);
}
.buyer-faq h3 {
  color: var(--forest-950);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  text-wrap: balance;
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.buyer-faq .faq-list {
  grid-template-columns: 1fr;
  margin-top: 0;
}
.faq-list details {
  border: 1px solid rgba(6,45,38,.1);
  border-radius: 8px;
  padding: 0;
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 20px rgba(6,45,38,.035);
  overflow: hidden;
}
.faq-list summary {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 16px 46px 16px 16px;
  color: var(--forest-950);
  font-weight: 900;
  line-height: 1.25;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 16px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--forest-950);
  background: rgba(201,165,86,.2);
  transform: translateY(-50%);
}
.faq-list details[open] summary::after {
  content: "-";
  background: var(--forest-950);
  color: var(--white);
}
.faq-list p {
  margin: 0;
  border-top: 1px solid rgba(6,45,38,.08);
  padding: 14px 16px 16px;
  color: rgba(23,23,20,.7);
  font-size: .94rem;
  line-height: 1.45;
}
.listing-heading {
  margin-bottom: 18px;
}
.result-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(23,23,20,.72);
  background: var(--white);
  font-weight: 800;
}
.result-count strong {
  color: var(--forest-950);
  font-size: 1.2rem;
}
.blog-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--forest-900);
  overflow: hidden;
}
.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,45,38,.9), rgba(6,45,38,.2));
}
.blog-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}
.blog-hero > div {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: 132px var(--pad) 60px;
}
.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--white);
  background: rgba(255,255,255,.1);
  font-size: .86rem;
  font-weight: 900;
}
.article-back-link svg {
  width: 17px;
  height: 17px;
}
.blog-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.blog-hero-meta span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: 0 11px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.1);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.article-copy {
  font-size: 1.08rem;
}
.article-copy > p:first-child {
  font-size: 1.18rem;
  color: rgba(23,23,20,.82);
}
.article-answer-block {
  margin-bottom: 28px;
  border-left: 4px solid var(--river-600);
  padding: 20px 22px;
  background: rgba(45,125,120,.1);
}
.article-answer-block p:last-child {
  margin-bottom: 0;
  color: rgba(23,23,20,.82);
  font-size: 1.12rem;
  line-height: 1.55;
}
.article-supporting-image {
  margin: 28px 0 30px;
}
.article-supporting-image img {
  display: block;
  width: 100%;
  height: clamp(220px, 30vw, 360px);
  border-radius: 8px;
  object-fit: cover;
}
.article-faq {
  margin-top: 36px;
  margin-bottom: 8px;
}
.article-sidebar > p:not(.eyebrow) {
  margin: 0;
  color: rgba(23,23,20,.68);
  font-size: .95rem;
  line-height: 1.45;
}
.related-guide-list a p {
  margin: 8px 0 0;
  color: rgba(23,23,20,.66);
  font-size: .9rem;
  line-height: 1.4;
}

.dashboard { padding: 128px var(--pad) 90px; max-width: var(--container); margin: 0 auto; }
.dashboard-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(6,45,38,.12);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(6,45,38,.98), rgba(13,68,56,.9) 56%, rgba(45,125,120,.82)),
    var(--forest-950);
  box-shadow: 0 18px 48px rgba(6,45,38,.14);
}
.dashboard-heading h1 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2.1rem, 4.4vw, 4.05rem);
}
.dashboard-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 1rem;
}
.dashboard-heading-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.dashboard-heading .btn.secondary {
  border-color: rgba(255,255,255,.32);
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.dashboard-heading .btn.primary {
  color: var(--forest-950);
  background: var(--gold-300);
}
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.metric-grid div {
  min-width: 0;
  border-color: rgba(17,46,38,.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.82)),
    var(--white);
  box-shadow: 0 8px 24px rgba(6,45,38,.05);
}
.metric-grid span { color: rgba(23,23,20,.62); font-weight: 800; }
.metric-grid strong { display: block; color: var(--forest-950); font-size: 2rem; }
.dashboard-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.dashboard-panels section {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6,45,38,.05);
}
.wide-panel { grid-column: 1 / -1; }
.panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.panel-heading h2 { min-width: 0; }
.panel-heading p { margin: 6px 0 0; color: rgba(23,23,20,.64); font-size: .92rem; font-weight: 700; line-height: 1.4; }
.compact-panel-heading { align-items: end; margin-top: 4px; }
.compact-heading { margin: 0 0 10px; color: var(--forest-950); font-family: "Inter", system-ui, sans-serif; font-size: .88rem; line-height: 1.2; text-transform: uppercase; }
.queue-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; }
.queue-grid > div { min-width: 0; }
.table-wrap { max-width: 100%; overflow-x: auto; }
.crm-panel {
  border-left: 5px solid var(--gold-500) !important;
  background: linear-gradient(180deg, rgba(246,248,243,.92), #fff) !important;
}
.crm-pipeline {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 20px;
}
.crm-pipeline a {
  min-width: 0;
  border: 1px solid rgba(17,46,38,.12);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  text-decoration: none;
}
.crm-pipeline span {
  display: block;
  color: rgba(23,23,20,.62);
  font-size: .76rem;
  font-weight: 900;
  line-height: 1.2;
}
.crm-pipeline strong {
  display: block;
  margin-top: 6px;
  color: var(--forest-950);
  font-size: 1.6rem;
  line-height: 1;
}
.crm-table td:first-child strong,
.crm-table td:first-child span {
  display: block;
}
.crm-table {
  min-width: 620px;
}
.crm-table td:first-child span {
  margin-top: 3px;
  color: rgba(23,23,20,.58);
  font-size: .78rem;
  font-weight: 800;
}
.crm-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 9px;
  color: var(--white);
  background: var(--forest-700);
  font-size: .76rem;
  font-weight: 900;
  white-space: nowrap;
}
.crm-note-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.crm-note-list li {
  border: 1px solid rgba(17,46,38,.12);
  border-radius: 8px;
  padding: 13px;
  background: #fff;
}
.crm-note-list span {
  color: var(--gold-500);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}
.crm-note-list strong {
  display: block;
  margin-top: 4px;
  color: var(--forest-950);
}
.crm-note-list p {
  margin: 6px 0 0;
  color: rgba(23,23,20,.68);
  font-size: .9rem;
  line-height: 1.4;
}
.crm-note-list small {
  display: block;
  margin-top: 7px;
  color: rgba(23,23,20,.58);
  font-weight: 900;
}
.readiness-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin: 8px 0 16px; }
.readiness-summary span {
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--white);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.status-error { background: #9F2D20; }
.status-warning { background: #95681E; }
.status-ok { background: #24775B; }
.readiness-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.readiness-list li {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--mist-100);
}
.readiness-list strong { color: var(--forest-950); text-transform: uppercase; font-size: .76rem; }
.readiness-list span, .readiness-list small { min-width: 0; }
.readiness-list small { grid-column: 2; color: rgba(23,23,20,.62); font-weight: 700; }
.readiness-error { border-left: 4px solid #9F2D20 !important; }
.readiness-warning { border-left: 4px solid #95681E !important; }
.readiness-ok { border-left: 4px solid #24775B !important; }
.readiness-actions {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.readiness-action-list {
  display: grid;
  gap: 0;
}
.readiness-action-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.readiness-action-row:first-child { border-top: 0; }
.readiness-action-row > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest-950);
  font-weight: 900;
}
.readiness-action-row strong {
  display: block;
  color: var(--forest-950);
  line-height: 1.2;
}
.readiness-action-row p {
  margin: 6px 0 0;
  color: rgba(23,23,20,.7);
  font-size: .9rem;
  line-height: 1.4;
}
.readiness-action-row small {
  display: block;
  margin-top: 6px;
  color: rgba(23,23,20,.58);
  font-weight: 800;
}
.readiness-action-row em {
  color: rgba(23,23,20,.58);
  font-size: .86rem;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}
table { width: 100%; border-collapse: collapse; }
th, td { padding: 10px; border-bottom: 1px solid var(--line); text-align: left; }
.muted-cell { color: rgba(23,23,20,.62); font-size: .88rem; }
.table-action { color: var(--forest-700); font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.issue-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--coffee-700);
  background: var(--mist-100);
  font-size: .78rem;
  font-weight: 900;
}
.module-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.module-links a { border: 1px solid var(--line); border-radius: 8px; padding: 12px; font-weight: 800; }
.intake-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.intake-actions a {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--mist-100);
}
.intake-actions strong,
.intake-actions span {
  display: block;
}
.intake-actions strong {
  color: var(--forest-950);
  line-height: 1.2;
}
.intake-actions span {
  margin-top: 6px;
  color: rgba(23,23,20,.64);
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.35;
}
.dashboard-note {
  margin: 14px 0 0;
  color: rgba(23,23,20,.66);
  font-size: .86rem;
  font-weight: 700;
}
.dashboard-note code {
  color: var(--forest-950);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 24px;
  padding: 56px var(--pad) 96px;
  background: var(--charcoal-950);
  color: var(--white);
}
.site-footer p { color: rgba(255,255,255,.66); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px 18px;
  font-weight: 800;
}
.footer-links a { color: rgba(255,255,255,.82); }
.footer-links a:hover { color: var(--gold-300); }
.footer-disclaimer {
  grid-column: 1 / -1;
  max-width: 1180px;
  margin: 2px 0 0;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
  color: rgba(255,255,255,.58);
  font-size: .82rem;
  line-height: 1.55;
}
.footer-credit {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 0;
  padding-top: 22px;
  color: rgba(255,255,255,.68);
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
}
.footer-credit a {
  color: var(--gold-300);
  font-weight: 900;
}
.footer-credit a:hover {
  color: var(--white);
}
.floating-actions { position: fixed; right: 22px; bottom: 22px; z-index: 12; }
.whatsapp-float { min-height: 60px; display: inline-flex; align-items: center; gap: 10px; border-radius: 999px; padding: 0 18px 0 14px; font-weight: 900; box-shadow: var(--shadow); }
.whatsapp-float span {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}
.whatsapp-float small {
  color: var(--white);
  font-size: 1rem;
  font-weight: 950;
}
.mobile-bottom-bar { display: none; }

.chatbot { position: fixed; right: 22px; bottom: 92px; z-index: 13; }
.chatbot-launcher {
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto;
  max-width: min(290px, calc(100vw - 44px));
  min-height: 66px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  padding: 10px 18px 10px 11px;
  color: var(--forest-950);
  background: var(--gold-500);
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
}
.chatbot-launcher-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest-950);
}
.chatbot-launcher-icon svg { width: 22px; height: 22px; }
.chatbot-launcher-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.chatbot-launcher-copy strong {
  color: var(--forest-950);
  font-size: .98rem;
  font-weight: 950;
  line-height: 1.08;
  white-space: nowrap;
}
.chatbot-launcher-copy small {
  color: rgba(6, 45, 38, .76);
  font-size: .74rem;
  font-weight: 850;
  line-height: 1.15;
}
.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 80px;
  width: 360px;
  max-width: calc(100vw - 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.chatbot-panel header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  color: var(--white);
  background: var(--forest-950);
}
.chatbot-panel header button { border: 0; color: var(--white); background: transparent; }
.chatbot-log { min-height: 180px; max-height: 260px; overflow: auto; padding: 14px; }
.chatbot-log p { margin: 0 0 10px; padding: 10px 12px; border-radius: 8px; background: var(--mist-100); }
.chatbot-log .user { background: var(--forest-950); color: var(--white); }
.chatbot-entry input {
  min-height: 44px;
  border-color: rgba(6,45,38,.16);
  font-size: .92rem;
}
.chatbot-entry { display: grid; grid-template-columns: 1fr 52px; gap: 8px; padding: 12px; border-top: 1px solid var(--line); }
.chatbot-entry button { border: 0; border-radius: 10px; color: var(--white); background: var(--forest-950); }

.static-page .floating-actions, .static-page .chatbot { display: none; }

@media (max-width: 1100px) {
  h1 { font-size: 3.7rem; }
  .home-hero h1 { font-size: 3.57rem; }
  h2 { font-size: 2.8rem; }
  .reservation-banner-section,
  .ad-landing-intake,
  .ad-proof-section {
    grid-template-columns: 1fr;
  }
  .reservation-banner-section {
    min-height: 0;
  }
  .reservation-banner-media {
    min-height: 220px;
    clip-path: none;
    background-position: center 58%;
  }
  .reservation-banner-media::after {
    display: none;
  }
  .reservation-banner-copy {
    padding: 26px;
  }
  .reservation-banner-copy h2,
  .reservation-banner-copy p {
    max-width: 680px;
  }
  .reservation-banner-contact {
    padding: 24px 26px 26px;
  }
  .ad-hero-content h1 {
    font-size: 3.5rem;
  }
  .ad-hero-layout {
    grid-template-columns: 1fr;
  }
  .ad-hero-card {
    max-width: 420px;
  }
  .ad-intake-copy h2 {
    font-size: 2.3rem;
  }
  .ad-highlight-grid,
  .ad-step-grid {
    grid-template-columns: 1fr;
  }
  .site-header { gap: 16px; }
  .brand { flex-basis: 250px; min-width: 220px; }
  .brand strong { font-size: 1.42rem; }
  .brand small { font-size: .8rem; }
  .top-nav { gap: 15px; font-size: .96rem; }
  .nav-contact-label { display: none; }
  .top-nav a.nav-contact-pill { padding: 0 11px; }
  .inventory-layout, .detail-layout, .content-page, .lead-magnet, .lifestyle-band { grid-template-columns: 1fr; }
  .action-rail-inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .market-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 0; }
  .market-proof div:nth-child(odd) { border-left: 0; padding-left: 0; }
  .sticky-lead, .action-panel { position: static; }
  .featured-grid, .property-list-grid, .blog-grid, .blog-card-grid, .blog-path-grid, .article-action-grid, .contextual-link-grid, .recovery-path-grid, .why-signal-grid, .buyer-fit-grid, .contact-method-grid, .payment-step-grid, .thank-you-step-grid, .roadmap-steps, .neighborhood-signal-grid, .neighborhood-card-grid, .category-guidance-grid, .faq-list, .intake-actions, .seo-section-list, .authority-path-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-guidance-grid article,
  .category-guidance-grid article:nth-child(-n+3),
  .category-guidance-grid article:nth-child(-n+2) {
    border: 1px solid rgba(6,45,38,.1);
  }
  .buyer-guide-panel,
  .inventory-context .buyer-guide-panel,
  .buyer-faq { grid-template-columns: 1fr; }
  .inventory-context .buyer-guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .crm-pipeline { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .filter-primary-row,
  .filter-advanced-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
  .filters select {
    font-size: .92rem;
  }
}

@media (max-width: 980px) {
  .home-request-panel {
    grid-template-columns: 1fr;
  }
  .home-request-copy h2 {
    max-width: 720px;
    font-size: 3rem;
  }
  .home-request-card .lead-form .btn.primary {
    margin-right: auto;
  }
  .home-request-card .form-status {
    text-align: center;
  }
  .contact-request-panel {
    grid-template-columns: 1fr;
  }
  .contact-request-copy h2 {
    max-width: 720px;
    font-size: 3rem;
  }
  .contact-request-card .lead-form .btn.primary {
    margin-right: auto;
  }
  .contact-request-card .form-status {
    text-align: center;
  }
  .contact-support-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-method-grid article:only-child {
    grid-template-columns: 38px minmax(0, 1fr);
  }
  .contact-method-grid article:only-child .table-action {
    grid-column: 2;
    grid-row: auto;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 20px;
    --fixed-header-offset: 78px;
  }
  html,
  body {
    width: 100%;
    max-width: 100%;
  }
  body { padding-bottom: 72px; }
  .reservation-banner-section {
    width: calc(100% - 32px);
    margin-top: -32px;
    border-radius: 8px;
  }
  .reservation-banner-media {
    min-height: 148px;
  }
  .reservation-banner-copy h2 {
    font-size: 2.36rem;
  }
  .reservation-banner-copy p {
    font-size: .96rem;
  }
  .reservation-banner-copy {
    padding: 22px 18px;
  }
  .reservation-banner-offers {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .reservation-banner-offer {
    min-height: 0;
    padding: 13px;
  }
  .reservation-banner-offer strong {
    font-size: 2.55rem;
  }
  .reservation-banner-contact {
    padding: 20px 18px;
  }
  .reservation-banner-phone {
    min-height: 70px;
  }
  .reservation-banner-phone strong {
    font-size: 1.22rem;
  }
  .ad-landing-hero {
    min-height: 74vh;
    padding: 118px var(--pad) 78px;
  }
  .ad-hero-content h1 {
    font-size: 2.68rem;
  }
  .ad-hero-copy {
    font-size: 1.06rem;
  }
  .ad-hero-card {
    max-width: none;
    padding: 20px;
  }
  .ad-hero-card > strong {
    font-size: 3.25rem;
  }
  .ad-hero-card a b {
    font-size: 1.18rem;
  }
  .ad-offer-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ad-offer-pills span {
    min-width: 0;
    padding: 10px;
  }
  .ad-offer-pills small {
    font-size: .68rem;
  }
  .ad-offer-pills strong {
    font-size: 1.12rem;
  }
  .ad-landing-intake {
    width: calc(100% - 32px);
    margin-top: -52px;
  }
  .ad-intake-copy,
  .ad-intake-form-panel,
  .ad-highlight-grid article,
  .ad-step-grid article,
  .ad-link-panel,
  .ad-faq-section .faq-list article {
    padding: 18px;
  }
  .ad-intake-copy h2,
  .ad-process-heading h2 {
    font-size: 2.08rem;
  }
  .instagram-form-head strong,
  .ad-link-panel strong {
    font-size: 1.72rem;
  }
  .ad-process-band {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  body.mobile-menu-open { overflow: hidden; }
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(6, 45, 38, .9);
    z-index: 30;
  }
  .brand { flex: 0 1 auto; min-width: 0; width: auto; max-width: none; }
  .brand strong {
    max-width: 170px;
    font-size: 1.18rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .brand small { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
  .mobile-menu-toggle span:first-child { font-size: .86rem; }
  .top-nav {
    position: absolute;
    z-index: 90;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border: 1px solid rgba(6,45,38,.14);
    border-radius: 8px;
    padding: 10px;
    color: var(--forest-950);
    background: #fffdf7;
    box-shadow: 0 18px 52px rgba(6,45,38,.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }
  .site-header.is-menu-open .top-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-nav-extra { display: flex; }
  .top-nav a {
    min-width: 0;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(6,45,38,.1);
    border-radius: 8px;
    padding: 10px;
    color: var(--forest-950);
    background: #f7f3ea;
    font-size: .92rem;
    line-height: 1.12;
    text-align: center;
    text-shadow: none;
  }
  .top-nav a.nav-contact-pill {
    grid-column: 1 / -1;
    min-height: 52px;
    color: var(--forest-950);
    background: var(--gold-500);
  }
  .nav-contact-label {
    display: inline;
  }
  .top-nav a:active {
    background: rgba(201,165,86,.2);
  }
  .top-nav a.language-link {
    grid-column: 1 / -1;
    min-height: 50px;
    min-width: 0;
    border-color: rgba(6,45,38,.16);
    border-radius: 8px;
    padding: 0 14px;
    background: var(--forest-950) !important;
    color: var(--white) !important;
    font-size: .96rem;
    box-shadow: 0 10px 24px rgba(6,45,38,.18);
  }
  .language-link-mark {
    width: 19px;
    height: 19px;
  }
  .language-link-label {
    display: inline;
    color: rgba(255,255,255,.84);
  }
  .hero { min-height: 82vh; padding-top: 118px; padding-bottom: 54px; }
  .subhero {
    min-height: 46vh;
    padding-top: 116px;
    padding-bottom: 44px;
  }
  .page-contact .subhero.compact-hero {
    min-height: 54vh;
    padding-bottom: 52px;
  }
  .hero-content, .hero-copy, .subhero > div, .subhero p, .detail-main, .rich-copy {
    width: min(100%, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
  }
  h1 {
    width: auto;
    max-width: min(17ch, calc(100vw - 40px));
    font-size: clamp(1.78rem, 9.24vw, 2.07rem);
    line-height: 1.04;
  }
  .home-hero h1 {
    max-width: calc(100vw - 40px);
    font-size: clamp(1.72rem, 8.2vw, 2rem);
  }
  .home-hero .hero-title-line { white-space: normal; }
  .hero h1, .detail-main h1 { max-width: min(17ch, calc(100vw - 40px)); }
  .home-hero h1 { max-width: calc(100vw - 40px); }
  .hero-copy, .subhero p { max-width: min(34ch, calc(100vw - 40px)); }
  h2 { font-size: 2.2rem; }
  .hero-copy { font-size: 1.12rem; }
  .home-hero .hero-copy { font-size: 1rem; line-height: 1.52; }
  .hero-actions .btn, .btn { width: 100%; min-height: 52px; }
  .buyer-guide-aside .btn {
    width: auto;
    min-width: min(100%, 220px);
    white-space: normal;
  }
  .hero-actions,
  .card-actions {
    gap: 10px;
  }
  .action-rail {
    margin-top: -28px;
    padding: 0 12px 28px;
  }
  .action-rail-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
  }
  .action-rail-item {
    min-height: 64px;
    gap: 8px;
    padding: 10px;
  }
  .action-rail-item svg {
    width: 20px;
    height: 20px;
  }
  .action-rail-item strong {
    font-size: .84rem;
  }
  .path-grid, .featured-grid, .property-list-grid, .blog-grid, .blog-card-grid, .blog-path-grid, .article-action-grid, .contextual-link-grid, .recovery-path-grid, .spec-rail, .payment-terms, .purchase-option-grid, .closing-cost-grid, .gallery-grid > div, .metric-grid, .dashboard-panels, .queue-grid, .market-proof, .buyer-checklist ul, .why-signal-grid, .buyer-fit-grid, .contact-method-grid, .payment-step-grid, .thank-you-step-grid, .roadmap-steps, .neighborhood-signal-grid, .neighborhood-card-grid, .category-guidance-grid, .faq-list, .buyer-guide-panel, .buyer-faq, .intake-actions, .seo-section-list, .authority-path-grid {
    grid-template-columns: 1fr;
  }
  .category-guidance-grid article,
  .category-guidance-grid article:nth-child(-n+2),
  .category-guidance-grid article:first-child {
    border: 1px solid rgba(6,45,38,.1);
  }
  .inventory-context .buyer-guide-grid { grid-template-columns: 1fr; }
  .inventory-context .buyer-guide-card p,
  .inventory-context .buyer-guide-aside strong { max-width: none; }
  .guide-icon svg {
    margin-left: 0;
  }
  .buyer-checklist li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 0;
  }
  .buyer-checklist li::before {
    width: 34px;
    height: 34px;
    font-size: .7rem;
  }
  .listing-page .property-list-grid {
    grid-template-columns: 1fr;
  }
  .home-featured-grid {
    grid-template-columns: 1fr;
  }
  .home-featured-grid .property-card-large {
    grid-column: auto;
    display: block;
  }
  .home-featured-grid .property-card-large .property-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .property-card {
    width: 100%;
    max-width: 100%;
  }
  .property-card-body,
  .listing-page .property-card-body,
  .home-featured-grid .property-card:not(.property-card-large) .property-card-body {
    padding: 18px;
  }
  .property-card h3,
  .home-featured-grid .property-card-large h3,
  .listing-page .property-card h3 {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
    line-height: 1.04;
  }
  .listing-page .property-card .property-image,
  .home-featured-grid .property-card:not(.property-card-large) .property-image {
    aspect-ratio: 16 / 11;
  }
  .property-meta {
    gap: 8px;
  }
  .property-meta span {
    min-height: 30px;
    padding: 6px 10px;
    font-size: .8rem;
  }
  .spec-line {
    gap: 8px 11px;
  }
  .spec-line strong {
    flex-basis: 100%;
    font-size: 1.2rem;
  }
  .spec-line span {
    font-size: .96rem;
  }
  .starting-line {
    border-radius: 8px;
    padding: 9px 11px;
    font-size: .92rem;
  }
  .property-card .card-actions .btn {
    flex: 1 1 170px;
    width: auto;
  }
  .property-card .card-actions .icon-btn {
    flex: 0 0 48px;
  }
  .blog-filter-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .blog-filter-form .btn {
    width: 100%;
  }
  .blog-category-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-category-filters button {
    width: 100%;
    border-radius: 8px;
  }
  .blog-card-body {
    padding: 18px;
  }
  .blog-card h3 {
    font-size: 1.62rem;
  }
  .pagination {
    display: grid;
    justify-items: stretch;
  }
  .pagination > a,
  .pagination > span {
    width: 100%;
  }
  .pagination div {
    order: -1;
  }
  .blog-hero {
    min-height: 62vh;
  }
  .blog-hero > div {
    width: min(100%, calc(100vw - 40px));
    padding: 116px 20px 44px;
  }
  .blog-hero-meta {
    gap: 6px;
  }
  .article-back-link {
    margin-bottom: 14px;
  }
  .crm-pipeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-stats { justify-content: flex-start; }
  .market-proof div { border-left: 0; padding: 0; }
  .path-panel:first-child, .property-card-large { grid-row: auto; grid-column: auto; }
  .path-grid {
    grid-template-areas: none;
    grid-auto-rows: auto;
  }
  .path-panel.land,
  .path-panel.villas,
  .path-panel.plans {
    grid-area: auto;
  }
  .path-panel { min-height: 280px; }
  .section { padding-top: 52px; padding-bottom: 52px; }
  .lifestyle-band {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .lifestyle-proof-grid {
    grid-template-columns: 1fr;
  }
  .lifestyle-proof-card > p {
    font-size: 1.12rem;
  }
  .section-heading.split, .dashboard-heading, .panel-heading, .site-footer { display: block; }
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .footer-links a { min-width: 0; }
  .form-grid, .filters, .recovery-search, .module-links, .visit-fields { grid-template-columns: 1fr; }
  .filter-primary-row,
  .filter-advanced-grid {
    grid-template-columns: 1fr;
  }
  .advanced-filters summary {
    width: 100%;
    justify-content: space-between;
    border-radius: 12px;
  }
  .advanced-filters summary small {
    display: none;
  }
  .readiness-action-row { grid-template-columns: 42px minmax(0, 1fr); align-items: start; }
  .readiness-action-row .table-action, .readiness-action-row em { grid-column: 2; justify-self: start; text-align: left; }
  .readiness-list li {
    grid-template-columns: 1fr;
  }
  .readiness-list small {
    grid-column: auto;
  }
  .readiness-list span,
  .readiness-list small,
  .readiness-action-row p,
  .dashboard-note,
  .dashboard-note code {
    overflow-wrap: anywhere;
  }
  .dashboard-panels > *,
  .wide-panel {
    min-width: 0;
    max-width: 100%;
  }
  .dashboard table,
  .dashboard thead,
  .dashboard tbody,
  .dashboard tr,
  .dashboard th,
  .dashboard td {
    display: block;
    min-width: 0 !important;
    width: 100%;
    max-width: 100%;
  }
  .dashboard .crm-table {
    min-width: 0 !important;
  }
  .dashboard thead {
    display: none;
  }
  .dashboard tr {
    margin-bottom: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 10px;
    background: #fff;
  }
  .dashboard td,
  .dashboard th {
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }
  .dashboard td:last-child,
  .dashboard th:last-child {
    border-bottom: 0;
  }
  .dashboard {
    padding: 104px 16px 88px;
  }
  .dashboard-heading {
    margin-bottom: 16px;
    padding: 18px;
  }
  .dashboard-heading h1 {
    font-size: clamp(1.76rem, 8.8vw, 2.46rem);
  }
  .dashboard-heading p:not(.eyebrow) {
    font-size: .95rem;
  }
  .dashboard-heading-actions {
    justify-content: stretch;
    margin-top: 14px;
  }
  .dashboard-heading-actions .btn {
    width: 100%;
  }
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .metric-grid div,
  .dashboard-panels section {
    padding: 16px;
  }
  .metric-grid strong {
    font-size: 1.65rem;
  }
  .panel-heading {
    display: grid;
    gap: 10px;
  }
  .panel-heading .table-action,
  .panel-heading .btn {
    justify-self: start;
  }
  .crm-pipeline {
    gap: 8px;
  }
  .crm-pipeline a {
    padding: 10px;
  }
  .intake-actions a,
  .module-links a {
    padding: 12px;
  }
  .property-media-hero {
    min-height: 0;
  }
  .property-gallery-stage {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .property-gallery-slide {
    inset: 2px 0 0;
  }
  .gallery-nav {
    top: auto;
    bottom: 20px;
    width: 44px;
    height: 44px;
    transform: none;
  }
  .gallery-nav.previous { left: 20px; }
  .gallery-nav.next { right: 20px; }
  .gallery-counter {
    top: 96px;
    right: 20px;
  }
  .gallery-thumbnails {
    margin-right: 0;
    padding: 10px 20px 12px;
  }
  .gallery-thumbnail {
    flex-basis: 64px;
    height: 48px;
    border-radius: 8px;
  }
  .property-gallery-slide figcaption {
    left: 20px;
    right: 20px;
    bottom: 84px;
    max-width: none;
    border-radius: 8px;
  }
  .property-gallery-slide img {
    object-fit: contain;
    object-position: center top;
  }
  .property-share-card,
  .article-share-card {
    width: calc(100vw - 32px);
  }
  .article-share-card { margin-top: -22px; }
  .property-share-card {
    max-width: none;
    margin-top: 12px;
    margin-bottom: 22px;
    padding: 12px;
  }
  .property-contact-strip {
    width: calc(100vw - 32px);
    margin-top: -8px;
    margin-bottom: 22px;
    justify-content: flex-start;
    border: 1px solid rgba(6,45,38,.1);
    border-radius: 8px;
    padding: 12px;
    background: rgba(255,255,255,.76);
  }
  .share-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    overflow: visible;
  }
  .share-card-label {
    grid-column: 1 / -1;
    font-size: .78rem;
  }
  .share-card-rule {
    display: none;
  }
  .share-card-action {
    width: 100%;
    min-height: 48px;
    gap: 8px;
    padding: 0 12px;
    font-size: .9rem;
  }
  .share-card-icon {
    width: 30px;
    height: 30px;
    font-size: .76rem;
  }
  .property-share-card .share-card-action {
    min-height: 48px;
    padding: 0 12px;
    font-size: .9rem;
  }
  .property-share-card .share-card-icon {
    width: 30px;
    height: 30px;
  }
  .sticky-lead,
  .action-panel {
    padding: 18px;
    box-shadow: 0 14px 40px rgba(6,45,38,.1);
  }
  .action-panel {
    gap: 12px;
  }
  .action-panel h2 {
    font-size: clamp(1.8rem, 8vw, 2.1rem);
  }
  .lead-form {
    margin-top: 14px;
  }
  .lead-form .btn.primary,
  .action-panel .btn.primary {
    justify-self: center;
    width: min(100%, 340px);
  }
  .lead-form .checkbox-line,
  .action-panel form .checkbox-line {
    align-items: flex-start;
  }
  .checkbox-line input[type="checkbox"],
  .filters .check input[type="checkbox"] {
    margin-top: 2px;
  }
  .floating-actions { display: none; }
  .mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(6,45,38,.1);
  }
  .mobile-bottom-bar a, .mobile-bottom-bar button {
    display: grid;
    place-items: center;
    gap: 3px;
    border: 0;
    background: transparent;
    color: var(--forest-950);
    font-size: .72rem;
    font-weight: 800;
  }
  .mobile-bottom-bar svg { width: 20px; height: 20px; }
  .chatbot { display: none; }
  .chatbot-panel {
    position: fixed;
    inset: auto 0 0 0;
    width: 100vw;
    max-width: none;
    border-radius: 8px 8px 0 0;
  }
}

@media print {
  .site-header, .site-footer, .floating-actions, .mobile-bottom-bar, .chatbot, .share-card, .gallery-nav, .gallery-counter, .gallery-thumbnails, .action-panel, .lead-form, .btn, .filters, .print-toolbar { display: none !important; }
  body { background: white; color: black; padding: 0; }
  .property-detail { padding-top: 0; }
  .property-media-hero { height: auto; min-height: 0; overflow: visible; }
  .property-gallery-stage { position: static; }
  .property-gallery-slide { display: none; position: static; opacity: 1; pointer-events: auto; }
  .property-gallery-slide.is-active { display: block; }
  .property-gallery-slide::after { display: none; }
  .property-gallery-slide img { max-height: 360px; object-fit: cover; }
  .section, .detail-layout { display: block; padding: 20px 0; max-width: none; }
  .detail-block { margin: 22px 0; }
  .print-summary { border-color: #444; border-left-color: #111; break-inside: avoid; }
  a::after { content: ""; }
}
