@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/playfair-display-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/playfair-display-latin-600-normal.woff2") format("woff2");
}

:root {
  --black: #0b0b0b;
  --black-soft: #171612;
  --gold: #dfba6b;
  --gold-deep: #b88b38;
  --cream: #f5f1e8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #1a1916;
  --muted: #6e6a61;
  --line: rgba(26, 25, 22, 0.13);
  --shadow: 0 24px 70px rgba(17, 15, 10, 0.14);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-pill: 999px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section-space {
  padding: 110px 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f2cd82;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 11px 22px;
  font-size: 0.84rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-gold {
  border-color: #e7c983;
  background: linear-gradient(135deg, #f1d48d 0%, var(--gold) 48%, #bd8e3c 100%);
  box-shadow: 0 12px 34px rgba(191, 144, 58, 0.2);
  color: #15130e;
}

.button-gold:hover {
  box-shadow: 0 16px 36px rgba(191, 144, 58, 0.32);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
}

.text-link.light {
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(11, 11, 11, 0.91);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1320px, calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-link img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-wordmark {
  display: grid;
  gap: 0;
  line-height: 1;
}

.brand-wordmark strong {
  color: #f1d48d;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.brand-wordmark span {
  margin-top: 3px;
  color: #d9b872;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.76rem;
  font-style: italic;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius-pill);
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 500;
  white-space: nowrap;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav-item > a:hover,
.nav-item:focus-within > a {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 260px;
  padding: 18px;
  border: 1px solid rgba(223, 186, 107, 0.26);
  border-radius: 20px;
  background: rgba(17, 16, 13, 0.98);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 170ms ease,
    transform 170ms ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  inset: -14px 0 auto;
  height: 14px;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown p {
  margin: 0 0 9px;
  color: #b8aa8e;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-dropdown a {
  display: block;
  border-radius: 10px;
  padding: 8px 9px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
}

.nav-dropdown a:hover {
  background: rgba(223, 186, 107, 0.1);
  color: var(--gold);
}

.nav-dropdown .dropdown-all {
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  padding-top: 14px;
  color: var(--gold);
}

.header-cta {
  min-height: 42px;
  padding: 8px 17px;
  font-size: 0.75rem;
}

.menu-toggle,
.mobile-panel {
  display: none;
}

.home-hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 6, 5, 0.91) 0%, rgba(6, 6, 5, 0.7) 37%, rgba(6, 6, 5, 0.16) 67%, rgba(6, 6, 5, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 8, 6, 0.64) 0%, transparent 45%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  min-height: 780px;
  padding-top: calc(var(--header-height) + 82px);
  padding-bottom: 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}

.hero-copy {
  width: min(700px, 63%);
}

.hero-copy h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 5.2vw, 5.2rem);
  text-wrap: balance;
}

.hero-copy h1 em {
  color: #e8c87e;
  font-weight: inherit;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.79);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-search-wrap {
  position: relative;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: rgba(18, 17, 14, 0.56);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.search-intro {
  display: flex;
  align-items: baseline;
  gap: 15px;
  padding: 0 7px 12px;
}

.search-intro span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
}

.search-intro small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
}

.property-search {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr auto;
  gap: 8px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.98);
  padding: 7px;
  color: var(--ink);
}

.property-search label {
  display: grid;
  gap: 1px;
  min-width: 0;
  padding: 8px 15px;
  border-right: 1px solid var(--line);
}

.property-search label span {
  color: #8c7c60;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-search select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #27231c;
  font-size: 0.81rem;
  font-weight: 500;
}

.search-submit {
  display: inline-flex;
  min-width: 128px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.search-submit:hover {
  background: #252018;
  transform: translateY(-1px);
}

.split-heading {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 60px;
  align-items: end;
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4.2vw, 4.1rem);
}

.split-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
}

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

.pathways-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 16px;
}

.pathway-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 10px 45px rgba(29, 25, 17, 0.08);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.pathway-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.pathway-card > svg {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 28px;
  height: 28px;
}

.pathway-card > p,
.pathway-card > div p {
  margin-bottom: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  opacity: 0.72;
}

.pathway-card h3 {
  max-width: 290px;
  margin-bottom: 14px;
  font-size: 2.2rem;
}

.pathway-card span {
  display: block;
  max-width: 320px;
  margin-bottom: 28px;
  font-size: 0.9rem;
  line-height: 1.65;
  opacity: 0.78;
}

.pathway-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
}

.pathway-image {
  color: var(--white);
}

.pathway-image img {
  object-fit: cover;
  transition: transform 700ms ease;
}

.pathway-image:hover img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  inset: 0;
  margin: 0 !important;
  background: linear-gradient(0deg, rgba(8, 8, 6, 0.92) 0%, rgba(8, 8, 6, 0.15) 78%);
  opacity: 1 !important;
}

.pathway-image > div {
  position: relative;
  z-index: 2;
}

.pathway-image > div > svg {
  position: absolute;
  right: 0;
  bottom: 0;
}

.light-card {
  border: 1px solid rgba(184, 139, 56, 0.22);
  background: #fff;
}

.light-card > svg {
  color: var(--gold-deep);
}

.gold-card {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.44), transparent 22%),
    linear-gradient(145deg, #edcf87, #c3923e);
  color: #17130d;
}

.home-promise {
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.promise-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.promise-visual {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(223, 186, 107, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(223, 186, 107, 0.17), transparent 42%),
    repeating-radial-gradient(circle at center, transparent 0 62px, rgba(223, 186, 107, 0.08) 63px 64px);
}

.promise-orbit {
  position: absolute;
  inset: 50%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(223, 186, 107, 0.38);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 90px rgba(223, 186, 107, 0.08);
}

.promise-orbit svg {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--gold);
}

.promise-orbit span {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}

.promise-copy h2 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 4.4vw, 4.3rem);
}

.promise-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.check-list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.check-list svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.home-promise .text-link {
  color: var(--gold);
}

.centered-heading {
  width: min(760px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}

.centered-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4.3vw, 4rem);
}

.centered-heading > p:last-child {
  color: var(--muted);
}

.method-section {
  background: var(--cream);
}

.method-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  counter-reset: method;
}

.method-grid li {
  position: relative;
  min-height: 260px;
  padding: 34px 28px;
  border-top: 1px solid rgba(184, 139, 56, 0.34);
  border-right: 1px solid rgba(26, 25, 22, 0.1);
}

.method-grid li:last-child {
  border-right: 0;
}

.method-grid li > span {
  display: block;
  margin-bottom: 70px;
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.method-grid h3 {
  margin-bottom: 12px;
  font-size: 1.75rem;
}

.method-grid p {
  color: var(--muted);
  font-size: 0.86rem;
}

.featured-development {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--white);
}

.featured-development > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.featured-development:hover > img {
  transform: scale(1.035);
}

.featured-development-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 6, 0.87), rgba(8, 8, 6, 0.25) 65%),
    linear-gradient(0deg, rgba(8, 8, 6, 0.62), transparent 65%);
}

.featured-development-content {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
}

.feature-location {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.featured-development-content h2 {
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.featured-development-content > p:not(.eyebrow, .feature-location) {
  max-width: 580px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: start;
}

.faq-grid > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-grid h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
}

.faq-grid > div:first-child > p:last-child {
  color: var(--muted);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 7px;
  color: var(--gold-deep);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  max-width: 620px;
  padding: 0 46px 22px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.conversion-section {
  background:
    radial-gradient(circle at 0% 100%, rgba(223, 186, 107, 0.12), transparent 32%),
    #fff;
}

.conversion-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 85px;
  align-items: start;
}

.conversion-grid > div:first-child {
  padding-top: 22px;
}

.conversion-grid h2 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 4.5vw, 4.3rem);
}

.conversion-grid > div:first-child > p:last-child {
  color: var(--muted);
}

.lead-form {
  padding: 30px;
  border: 1px solid rgba(184, 139, 56, 0.24);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--paper);
  box-shadow: 0 20px 60px rgba(33, 28, 17, 0.08);
}

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

.lead-form label > span:first-child {
  color: #6f624d;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(26, 25, 22, 0.16);
  border-radius: 14px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  transition:
    border 160ms ease,
    box-shadow 160ms ease;
}

.lead-form input,
.lead-form select {
  min-height: 49px;
  padding: 10px 13px;
}

.lead-form textarea {
  resize: vertical;
  padding: 12px 13px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(223, 186, 107, 0.16);
}

.lead-form .form-wide {
  grid-column: 1 / -1;
}

.privacy-check {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.privacy-check input {
  width: 17px;
  min-height: 17px;
  margin-top: 3px;
}

.privacy-check span {
  color: var(--muted) !important;
  font-size: 0.7rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.privacy-check a {
  color: var(--gold-deep);
  text-decoration: underline;
}

.form-submit {
  width: fit-content;
  grid-column: 1 / -1;
}

.form-success {
  min-height: 300px;
  padding: 38px;
  border: 1px solid rgba(184, 139, 56, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--cream);
}

.form-success > svg {
  flex: 0 0 auto;
  color: var(--gold-deep);
}

.form-success h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.form-success p {
  color: var(--muted);
}

.inner-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
}

.inner-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-breathe 20s ease-in-out infinite alternate;
}

.inner-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 6, 5, 0.9), rgba(6, 6, 5, 0.28) 72%),
    linear-gradient(0deg, rgba(6, 6, 5, 0.56), transparent);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 50px);
}

.inner-hero-content h1 {
  max-width: 830px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 6vw, 6rem);
}

.inner-hero-content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

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

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.destination-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--white);
}

.destination-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.destination-card:hover > img {
  transform: scale(1.05);
}

.destination-card > div {
  position: absolute;
  z-index: 2;
  inset: auto 36px 36px;
}

.destination-card svg {
  margin-bottom: 20px;
  color: var(--gold);
}

.destination-card p {
  margin-bottom: 5px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.destination-card h3 {
  margin-bottom: 8px;
  font-size: 3.2rem;
}

.destination-card div > span {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.destination-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
}

.selection-principles {
  background: var(--black);
  color: var(--white);
}

.principles-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.principles-grid h2 {
  font-size: clamp(2.8rem, 4.6vw, 4.5rem);
}

.principles-list article {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 50px 0.8fr 1fr;
  gap: 20px;
  align-items: baseline;
}

.principles-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.principles-list span {
  color: var(--gold);
  font-size: 0.7rem;
}

.principles-list h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.principles-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

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

.development-catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.development-card {
  overflow: hidden;
  border: 1px solid rgba(184, 139, 56, 0.2);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 16px 50px rgba(33, 28, 17, 0.07);
}

.development-card-image {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.development-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.development-card:hover img {
  transform: scale(1.04);
}

.development-card-image > span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 13px;
  border-radius: var(--radius-pill);
  background: rgba(11, 11, 11, 0.8);
  color: var(--gold);
  font-size: 0.68rem;
  backdrop-filter: blur(10px);
}

.development-card-copy {
  padding: 28px;
}

.development-card-copy > p {
  margin-bottom: 7px;
  color: var(--gold-deep);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.development-card-copy h3 {
  margin-bottom: 13px;
  font-size: 2.5rem;
}

.development-card-copy > span {
  display: block;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.88rem;
}

.project-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--white);
}

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

.project-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.78), transparent 75%),
    linear-gradient(0deg, rgba(7, 7, 6, 0.89), transparent 70%);
}

.project-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
}

.project-hero-content h1 {
  margin-bottom: 12px;
  font-size: clamp(4.6rem, 10vw, 9rem);
}

.project-hero-content > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.75);
}

.project-subnav {
  position: sticky;
  z-index: 50;
  top: var(--header-height);
  min-height: 58px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 30px rgba(20, 17, 11, 0.06);
  backdrop-filter: blur(14px);
}

.project-subnav a {
  color: #5e574a;
  font-size: 0.74rem;
  font-weight: 600;
}

.project-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.project-intro h2 {
  font-size: clamp(2.8rem, 4.6vw, 4.6rem);
}

.project-intro-grid > div:last-child {
  padding-top: 35px;
  color: var(--muted);
}

.project-facts {
  background: var(--cream);
}

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

.facts-grid article {
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(184, 139, 56, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
}

.facts-grid svg {
  margin-bottom: 70px;
  color: var(--gold-deep);
}

.facts-grid article > span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.facts-grid h3 {
  margin-bottom: 11px;
  font-size: 1.8rem;
}

.facts-grid p {
  color: var(--muted);
  font-size: 0.83rem;
}

.review-section {
  background: var(--black);
  color: var(--white);
}

.review-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 80px;
  align-items: center;
}

.review-icon {
  aspect-ratio: 1;
  border: 1px solid rgba(223, 186, 107, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(223, 186, 107, 0.15), transparent 65%);
}

.review-icon svg {
  width: 70px;
  height: 70px;
  color: var(--gold);
}

.review-grid h2 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 4.6vw, 4.5rem);
}

.review-grid > div:last-child > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.buy-search-band {
  position: relative;
  z-index: 10;
  margin-top: -48px;
}

.buy-search-band .property-search {
  box-shadow: var(--shadow);
}

.results-section {
  padding-top: 90px;
}

.results-heading {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.results-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.results-heading > span {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.property-card {
  overflow: hidden;
  border: 1px solid rgba(184, 139, 56, 0.2);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 16px 50px rgba(33, 28, 17, 0.07);
}

.property-card:first-child {
  grid-column: span 2;
}

.property-image {
  position: relative;
  height: 390px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-image span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(11, 11, 11, 0.8);
  color: var(--gold);
  font-size: 0.67rem;
}

.property-copy {
  padding: 26px;
}

.property-copy > p {
  margin-bottom: 7px;
  color: var(--gold-deep);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.property-copy h3 {
  margin-bottom: 18px;
  font-size: 2.2rem;
}

.property-features {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: var(--muted);
  font-size: 0.72rem;
}

.property-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.assisted-search {
  margin-top: 70px;
  padding: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--black);
  color: var(--white);
}

.assisted-search h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 2.5rem;
}

.seller-value {
  background: var(--paper);
}

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

.service-grid article {
  min-height: 330px;
  padding: 30px;
  border: 1px solid rgba(184, 139, 56, 0.2);
  border-radius: var(--radius-md);
  background: #fff;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-grid article:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-grid svg {
  margin-bottom: 80px;
  color: var(--gold-deep);
}

.service-grid h3 {
  margin-bottom: 13px;
  font-size: 1.65rem;
}

.service-grid p {
  color: var(--muted);
  font-size: 0.82rem;
}

.seller-process {
  background: var(--black);
  color: var(--white);
}

.seller-process h2 {
  margin-bottom: 48px;
  font-size: clamp(3rem, 5vw, 5rem);
}

.seller-process ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.seller-process li {
  padding: 30px;
  border-top: 1px solid rgba(223, 186, 107, 0.32);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.seller-process li:last-child {
  border-right: 0;
}

.seller-process li > span {
  display: block;
  margin-bottom: 80px;
  color: var(--gold);
  font-size: 0.7rem;
}

.seller-process h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.seller-process li p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.about-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 30%, rgba(223, 186, 107, 0.2), transparent 30%),
    var(--black);
  color: var(--white);
}

.about-orbit {
  position: absolute;
  right: 3vw;
  color: rgba(223, 186, 107, 0.1);
  font-family: "Playfair Display", Georgia, serif;
  font-size: min(46vw, 660px);
  line-height: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
}

.about-hero-content h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.about-hero-content > p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.65);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 90px;
}

.manifesto-grid h2 {
  font-size: clamp(2.8rem, 4.6vw, 4.5rem);
}

.manifesto-grid > div:last-child {
  padding-top: 35px;
  color: var(--muted);
}

.values-section {
  background: var(--cream);
}

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

.values-grid article {
  min-height: 320px;
  padding: 32px;
  border: 1px solid rgba(184, 139, 56, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
}

.values-grid svg {
  margin-bottom: 90px;
  color: var(--gold-deep);
}

.values-grid h3 {
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.values-grid p {
  color: var(--muted);
  font-size: 0.84rem;
}

.founders-section {
  background: #fff;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.founders-grid article {
  min-height: 280px;
  padding: 38px;
  border: 1px solid rgba(184, 139, 56, 0.2);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: end;
  background: var(--paper);
}

.founders-grid article > span {
  width: 100px;
  height: 100px;
  border: 1px solid rgba(184, 139, 56, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
}

.founders-grid article p {
  margin-bottom: 5px;
  color: var(--gold-deep);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founders-grid article h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.founders-grid article small {
  color: var(--muted);
  font-size: 0.78rem;
}

.founders-cta {
  margin-top: 34px;
  text-align: center;
}

.contact-hero {
  min-height: 100vh;
  padding: calc(var(--header-height) + 80px) 0 90px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 12% 16%, rgba(223, 186, 107, 0.15), transparent 27%),
    var(--black);
  color: var(--white);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: center;
}

.contact-hero-grid h1 {
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 5.8vw, 5.8rem);
}

.contact-hero-grid > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
}

.contact-details {
  margin-top: 40px;
  display: grid;
  gap: 16px;
}

.contact-details a,
.contact-details span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.contact-details svg {
  color: var(--gold);
}

.contact-hero .lead-form {
  color: var(--ink);
}

.legal-page {
  min-height: 85vh;
  padding: calc(var(--header-height) + 85px) 0 110px;
  background: var(--paper);
}

.legal-content {
  max-width: 850px;
}

.legal-content h1 {
  margin-bottom: 45px;
  font-size: clamp(3.4rem, 6vw, 5.6rem);
}

.legal-content h2 {
  margin: 42px 0 14px;
  font-size: 1.7rem;
}

.legal-content > p {
  color: var(--muted);
}

.legal-notice {
  padding: 26px;
  border: 1px solid rgba(184, 139, 56, 0.3);
  border-radius: 18px;
  background: var(--cream);
}

.legal-notice strong {
  color: var(--gold-deep);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-notice p {
  margin: 9px 0 0;
  color: #5f594f;
  font-size: 0.84rem;
}

.legal-date {
  margin-top: 55px;
  font-size: 0.72rem;
}

.not-found-page {
  min-height: 100vh;
  padding: calc(var(--header-height) + 80px) 24px 80px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.not-found-page > div {
  max-width: 750px;
}

.not-found-page > div > span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.not-found-page h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.not-found-page > div > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.62);
}

.whatsapp-float {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  min-width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-pill);
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #1fae5b;
  box-shadow: 0 16px 38px rgba(20, 101, 56, 0.33);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(20, 101, 56, 0.42);
}

.cookie-banner {
  position: fixed;
  z-index: 130;
  right: 24px;
  bottom: 96px;
  width: min(560px, calc(100% - 48px));
  padding: 20px;
  border: 1px solid rgba(223, 186, 107, 0.26);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  background: rgba(14, 14, 12, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.cookie-banner strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
}

.cookie-banner p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  line-height: 1.55;
}

.cookie-banner p a {
  color: var(--gold);
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-actions > button:not(.button) {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.cookie-actions .button {
  min-height: 38px;
  padding: 7px 14px;
  font-size: 0.72rem;
}

.site-footer {
  background: #080808;
  color: var(--white);
}

.footer-main {
  padding: 76px 0 52px;
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.65fr 1fr;
  gap: 50px;
}

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.footer-brand img {
  border-radius: 50%;
}

.footer-brand > div p {
  margin-bottom: 1px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0.1em;
}

.footer-brand > div span {
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.72rem;
}

.footer-statement {
  grid-column: 1 / -1;
  max-width: 360px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.footer-main h2 {
  margin: 10px 0 18px;
  color: #e8c87e;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-main > div:not(.footer-brand) a {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

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

.footer-legal {
  padding: 20px 0 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
}

.footer-legal div {
  display: flex;
  gap: 22px;
}

@keyframes hero-breathe {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.085);
  }
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: transparent;
    color: var(--white);
  }

  .mobile-panel {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 0;
    padding: 30px 24px;
    background: rgba(11, 11, 11, 0.985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .mobile-panel.is-open {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-panel nav {
    margin-bottom: 28px;
  }

  .mobile-panel nav > a,
  .mobile-panel summary {
    width: 100%;
    padding: 15px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.86);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.12rem;
    list-style: none;
  }

  .mobile-panel summary::-webkit-details-marker {
    display: none;
  }

  .mobile-panel details a {
    display: block;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
  }

  .home-hero,
  .home-hero-content {
    min-height: 820px;
  }

  .hero-copy {
    width: min(720px, 84%);
  }

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

  .pathways-grid .pathway-card:first-child {
    grid-column: 1 / -1;
  }

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

  .footer-main > div:last-child {
    grid-column: 2 / -1;
  }

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

  .method-grid li:nth-child(2) {
    border-right: 0;
  }

  .service-grid,
  .seller-process ol {
    grid-template-columns: 1fr 1fr;
  }

  .seller-process li:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .page-shell {
    width: min(100% - 30px, 1180px);
  }

  .section-space {
    padding: 76px 0;
  }

  .brand-link img {
    width: 54px;
    height: 54px;
  }

  .brand-wordmark {
    display: none;
  }

  .home-hero,
  .home-hero-content {
    min-height: 900px;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(6, 6, 5, 0.86), rgba(6, 6, 5, 0.4)),
      linear-gradient(0deg, rgba(6, 6, 5, 0.88) 0%, rgba(6, 6, 5, 0.14) 65%);
  }

  .home-hero-content {
    padding-top: calc(var(--header-height) + 62px);
    padding-bottom: 28px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 12vw, 4.1rem);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.92rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .hero-search-wrap {
    padding: 12px;
    border-radius: 26px;
  }

  .search-intro {
    display: grid;
    gap: 1px;
  }

  .property-search {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .property-search label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .search-submit {
    min-height: 50px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .split-heading h2 {
    font-size: 2.65rem;
  }

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

  .pathways-grid .pathway-card:first-child {
    grid-column: auto;
  }

  .pathway-card {
    min-height: 390px;
  }

  .promise-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .promise-visual {
    min-height: 340px;
  }

  .promise-copy h2 {
    font-size: 2.75rem;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 54px;
    min-width: 54px;
    height: 54px;
    padding: 0;
  }

  .whatsapp-float span {
    display: none;
  }

  .cookie-banner {
    right: 15px;
    bottom: 80px;
    width: calc(100% - 30px);
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-actions {
    justify-content: flex-end;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 22px;
  }

  .footer-brand,
  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }

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

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

  .method-grid li,
  .method-grid li:nth-child(2) {
    border-right: 0;
  }

  .featured-development {
    min-height: 610px;
  }

  .faq-grid,
  .conversion-grid,
  .principles-grid,
  .project-intro-grid,
  .review-grid,
  .manifesto-grid,
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-grid > div:first-child {
    position: static;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .lead-form .form-wide,
  .form-submit {
    grid-column: auto;
  }

  .inner-hero {
    min-height: 680px;
  }

  .inner-hero > img {
    object-position: 65% center;
  }

  .inner-hero-content h1 {
    font-size: 3.25rem;
  }

  .destination-grid,
  .development-catalog,
  .facts-grid,
  .values-grid,
  .founders-grid {
    grid-template-columns: 1fr;
  }

  .principles-list article {
    grid-template-columns: 35px 1fr;
  }

  .principles-list article p {
    grid-column: 2;
  }

  .project-hero {
    min-height: 690px;
  }

  .project-hero-content h1 {
    font-size: 4rem;
  }

  .project-subnav {
    padding: 0 15px;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
  }

  .review-icon {
    width: min(280px, 76vw);
  }

  .buy-search-band {
    margin-top: -32px;
  }

  .results-heading,
  .assisted-search {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .property-card:first-child {
    grid-column: auto;
  }

  .service-grid,
  .seller-process ol {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: 280px;
  }

  .seller-process li,
  .seller-process li:nth-child(2) {
    border-right: 0;
  }

  .seller-process li > span {
    margin-bottom: 40px;
  }

  .about-orbit {
    right: -30vw;
    font-size: 110vw;
  }

  .founders-grid article {
    min-height: 240px;
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding-top: calc(var(--header-height) + 60px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Infinity Living — unified visual system v2 */

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-tilt] {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --focus-x: 50%;
  --focus-y: 50%;
  transform: perspective(1200px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

[data-tilt]:hover {
  box-shadow: 0 28px 76px rgba(27, 22, 13, 0.15);
}

.site-header {
  background: rgba(7, 7, 7, 0.94);
}

.brand-link img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #070707;
}

.home-hero,
.home-hero-content {
  min-height: 700px;
  height: clamp(700px, 100svh, 840px);
}

.hero-image {
  object-position: center;
}

.hero-scrim {
  background:
    linear-gradient(
      90deg,
      rgba(5, 10, 14, 0.78) 0%,
      rgba(5, 10, 14, 0.52) 35%,
      rgba(5, 10, 14, 0.08) 70%
    ),
    linear-gradient(0deg, rgba(5, 10, 14, 0.38) 0%, transparent 43%);
}

.home-hero-content {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 28px;
  gap: 28px;
}

.hero-copy {
  width: min(680px, 61%);
}

.hero-copy h1 {
  max-width: 670px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 4.9vw, 5rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-search-wrap {
  padding: 13px;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(8, 12, 14, 0.5);
}

.search-intro {
  padding-bottom: 9px;
}

.pathways-grid-v2 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pathway-card-v2 {
  overflow: hidden;
  border: 1px solid rgba(184, 139, 56, 0.2);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 14px 44px rgba(29, 25, 17, 0.07);
}

.pathway-card-v2-image {
  aspect-ratio: 1.08;
  overflow: hidden;
  background: #fff;
}

.pathway-card-v2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.pathway-card-v2:hover .pathway-card-v2-image img {
  transform: scale(1.045);
}

.pathway-card-v2-copy {
  min-height: 285px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.pathway-card-v2-copy > p {
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.pathway-card-v2-copy h3 {
  margin-bottom: 13px;
  font-size: 2rem;
}

.pathway-card-v2-copy > span {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.85rem;
}

.pathway-card-v2-copy strong {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-deep);
  font-size: 0.76rem;
}

.founder-philosophy {
  background:
    radial-gradient(circle at 10% 20%, rgba(223, 186, 107, 0.14), transparent 25%),
    #fff;
}

.founder-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.founder-philosophy-card {
  overflow: hidden;
  border: 1px solid rgba(184, 139, 56, 0.22);
  border-radius: 30px;
  display: grid;
  grid-template-columns: minmax(210px, 0.82fr) minmax(0, 1.18fr);
  min-height: 430px;
  padding: 18px;
  gap: 10px;
  align-items: center;
  background: var(--paper);
}

.founder-philosophy-card.reverse .founder-portrait {
  order: 2;
}

.founder-philosophy-card.reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(210px, 0.82fr);
}

.founder-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.founder-philosophy-card:hover .founder-portrait img {
  transform: scale(1.035);
}

.founder-philosophy-card > div:last-child {
  height: 100%;
  min-width: 0;
  padding: 28px 26px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  align-content: center;
}

.founder-philosophy-card blockquote {
  margin: 0 0 24px;
  color: #363128;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.55;
}

.founder-philosophy-card h3 {
  margin-bottom: 4px;
  font-size: 1.75rem;
}

.founder-philosophy-card > div:last-child > span {
  color: var(--muted);
  font-size: 0.72rem;
}

.method-heading {
  max-width: 900px;
  margin-bottom: 50px;
}

.method-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 4.6vw, 4.45rem);
}

.method-heading > p:last-child {
  max-width: 850px;
  color: var(--muted);
}

.method-grid-v2 li {
  min-height: 390px;
  padding: 30px 24px;
}

.method-grid-v2 li > span {
  margin-bottom: 15px;
}

.method-grid-v2 li > img {
  width: 112px;
  height: 112px;
  margin: 42px auto;
  display: block;
  object-fit: contain;
  transition: transform 300ms ease;
}

.method-grid-v2 li:hover > img {
  transform: translateY(-6px) scale(1.03);
}

.method-grid-v2 h3 {
  margin-bottom: 0;
  text-align: center;
}

.method-grid-v2 p {
  margin-bottom: 0;
  text-align: center;
}

.buy-hero {
  position: relative;
  min-height: 700px;
  height: clamp(700px, 100svh, 810px);
  overflow: hidden;
  color: #fff;
}

.buy-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-breathe 20s ease-in-out infinite alternate;
}

.buy-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(11, 16, 18, 0.78) 0%,
      rgba(11, 16, 18, 0.5) 34%,
      rgba(11, 16, 18, 0.05) 69%
    ),
    linear-gradient(0deg, rgba(11, 16, 18, 0.42), transparent 44%);
}

.buy-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  padding-top: calc(var(--header-height) + 54px);
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.buy-hero-copy {
  width: min(700px, 58%);
}

.buy-hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 5.5vw, 5.65rem);
}

.buy-hero-copy > p:last-child {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.86);
}

.buy-hero-search {
  width: 100%;
}

.results-section {
  padding-top: 100px;
}

.property-card {
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.property-card:hover .property-image img {
  transform: scale(1.04);
}

.property-image img {
  transition: transform 700ms ease;
}

.seller-value-proof {
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 186, 107, 0.17), transparent 30%),
    var(--cream);
}

.seller-value-proof-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: start;
}

.seller-value-proof-grid h2 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 4.8vw, 4.6rem);
}

.seller-value-proof-grid > div:first-child > p:last-child {
  color: var(--muted);
}

.seller-value-points article {
  padding: 27px 0;
  border-top: 1px solid rgba(26, 25, 22, 0.16);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
}

.seller-value-points article:last-child {
  border-bottom: 1px solid rgba(26, 25, 22, 0.16);
}

.seller-value-points article > span {
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 600;
}

.seller-value-points h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.seller-value-points p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.inner-hero {
  min-height: 620px;
  height: min(760px, 92svh);
}

.inner-hero-content {
  padding-top: calc(var(--header-height) + 25px);
  padding-bottom: 24px;
}

.inner-hero-content h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 5.5vw, 5.55rem);
}

.about-hero-v2 {
  min-height: 660px;
  height: min(780px, 96svh);
  background: #f4ecdf;
  color: var(--ink);
}

.about-hero-v2 > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-breathe 20s ease-in-out infinite alternate;
}

.about-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(251, 247, 239, 0.97) 0%,
    rgba(251, 247, 239, 0.9) 31%,
    rgba(251, 247, 239, 0.18) 63%,
    transparent 78%
  );
}

.about-hero-v2 .about-hero-content {
  width: min(1180px, calc(100% - 48px));
  padding-top: calc(var(--header-height) + 28px);
}

.about-hero-v2 .about-hero-content h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 6vw, 6.1rem);
}

.about-hero-v2 .about-hero-content > p:not(.eyebrow) {
  max-width: 610px;
  color: #4f493f;
  font-size: 1rem;
}

.about-hero-v2 .button {
  margin-top: 14px;
}

.founders-grid-v2 article {
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: stretch;
}

.founders-grid-v2 article > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.founders-grid-v2 article:hover > img {
  transform: scale(1.035);
}

.founders-grid-v2 article > div {
  padding: 34px;
  align-self: center;
}

.founders-grid-v2 article strong {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-deep);
  font-size: 0.72rem;
}

.founders-grid-v2 blockquote {
  margin: 0;
  color: var(--muted);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.55;
}

.whatsapp-float {
  min-width: 54px;
  height: 54px;
  border-color: rgba(37, 211, 102, 0.72);
  background: rgba(7, 20, 13, 0.34);
  box-shadow: 0 14px 36px rgba(8, 45, 23, 0.18);
  color: #62e794;
  backdrop-filter: blur(12px);
}

.whatsapp-float:hover {
  border-color: #25d366;
  background: rgba(11, 54, 28, 0.58);
  box-shadow: 0 18px 42px rgba(16, 120, 56, 0.24);
}

.whatsapp-float svg {
  width: 21px;
  height: 21px;
}

/* Approved developments experience */

.developments-experience {
  background: #fff;
}

.dev-catalog-hero,
.dev-city-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.dev-catalog-hero {
  min-height: 610px;
}

.dev-city-hero {
  min-height: 550px;
}

.dev-catalog-hero > img,
.dev-city-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  animation: hero-breathe 22s ease-in-out infinite alternate;
}

.dev-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 9, 0.78), rgba(7, 10, 9, 0.32) 58%, transparent 86%),
    linear-gradient(0deg, rgba(7, 10, 9, 0.52), transparent 58%);
}

.dev-catalog-hero-content,
.dev-city-hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 45px);
  padding-bottom: 54px;
}

.dev-catalog-hero-content h1,
.dev-city-hero-content h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(3.3rem, 6vw, 5.8rem);
}

.dev-catalog-hero-content > p:not(.eyebrow),
.dev-city-hero-content > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.86);
}

.dev-destinations,
.dev-city-catalog {
  background: var(--paper);
}

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

.dev-city-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
  background: var(--black);
  box-shadow: var(--shadow);
}

.dev-city-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.dev-city-card:hover > img {
  transform: scale(1.055);
}

.dev-city-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 9, 7, 0.93), rgba(9, 9, 7, 0.1) 76%);
}

.dev-city-card-content {
  position: absolute;
  z-index: 2;
  inset: auto 30px 30px;
  display: block;
}

.dev-city-card-count {
  display: block;
  color: #f2cf82;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dev-city-card-content > strong {
  display: block;
  margin: 7px 0 1px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.3rem;
  font-weight: 500;
}

.dev-city-card-content > span:not(.dev-city-card-count, .dev-city-card-link) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.dev-city-card-link {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
}

.dev-selection-note {
  margin-top: 30px;
  padding: 24px 26px;
  border: 1px solid rgba(184, 139, 56, 0.26);
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  background: var(--cream);
}

.dev-selection-note > span {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
}

.dev-selection-note strong {
  display: block;
  margin-bottom: 4px;
}

.dev-selection-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.dev-breadcrumb {
  margin-bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.dev-filter-bar {
  margin-bottom: 42px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.dev-filter-bar strong,
.dev-filter-bar span {
  display: block;
}

.dev-filter-bar > div > span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

.dev-filter-status {
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  color: #6a572f;
  background: #f1e5c9;
  font-size: 0.69rem;
  font-weight: 600;
}

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

.dev-development-card {
  overflow: hidden;
  border-radius: 24px;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(430px, 1.05fr);
  background: #fff;
  box-shadow: var(--shadow);
}

.dev-development-card-image {
  position: relative;
  min-height: 570px;
  overflow: hidden;
}

.dev-development-card-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.dev-development-card-image:hover > img {
  transform: scale(1.04);
}

.dev-development-card-image > span {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  color: #17130d;
  background: #e8c676;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dev-development-card-copy {
  align-self: center;
  padding: clamp(38px, 6vw, 72px);
}

.dev-project-wordmark {
  width: min(290px, 82%);
  max-height: 95px;
  object-fit: contain;
  object-position: left center;
}

.dev-project-place {
  margin: 24px 0 8px;
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dev-development-card-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 3.8vw, 3.45rem);
}

.dev-development-card-copy > p:not(.dev-project-place) {
  color: var(--muted);
}

.dev-quick-facts {
  margin: 30px 0;
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dev-quick-facts div {
  padding: 16px 9px 16px 0;
}

.dev-quick-facts dt {
  color: var(--muted);
  font-size: 0.66rem;
}

.dev-quick-facts dd {
  margin: 5px 0 0;
  font-size: 0.8rem;
  font-weight: 600;
}

.dev-development-card-copy > small {
  margin-top: 14px;
  display: block;
  color: var(--muted);
  font-size: 0.66rem;
}

/* Development detail */

.project-hero-v2 {
  min-height: 690px;
  height: min(820px, 100svh);
}

.project-hero-v2 .project-hero-content {
  padding-top: calc(var(--header-height) + 30px);
  padding-bottom: 40px;
}

.project-isla-logo {
  width: min(260px, 56vw);
  max-height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

.project-hero-v2 .project-hero-content h1 {
  max-width: 830px;
  margin-bottom: 16px;
  font-size: clamp(3.15rem, 5.6vw, 5.75rem);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(8, 8, 7, 0.16);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.project-facts-band {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.project-facts-band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-facts-band-grid > div {
  padding: 21px 24px;
  border-right: 1px solid var(--line);
}

.project-facts-band-grid > div:first-child {
  padding-left: 0;
}

.project-facts-band-grid > div:last-child {
  border-right: 0;
}

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

.project-facts-band span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-facts-band strong {
  font-size: 0.86rem;
}

.project-subnav {
  color: #4b4438;
}

.project-subnav a {
  color: #4b4438;
}

.project-editorial-grid,
.project-masterplan-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 80px;
  align-items: center;
}

.project-editorial h2,
.project-masterplan h2 {
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 4.5vw, 4.35rem);
}

.project-editorial p,
.project-masterplan p {
  color: var(--muted);
}

.project-check-list {
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.project-check-list li {
  padding: 11px 0 11px 28px;
  border-top: 1px solid var(--line);
  position: relative;
  font-size: 0.84rem;
}

.project-check-list li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--gold-deep);
  font-weight: 700;
}

.project-editorial figure,
.project-masterplan figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.project-editorial figure img,
.project-masterplan figure img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.project-editorial figure:hover img,
.project-masterplan figure:hover img {
  transform: scale(1.035);
}

.project-editorial figcaption,
.project-masterplan figcaption,
.project-gallery-grid figcaption {
  padding: 10px 14px;
  color: var(--muted);
  background: #fff;
  font-size: 0.66rem;
}

.project-private-section {
  background: var(--cream);
}

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

.project-private-grid article {
  min-height: 370px;
  padding: 28px;
  border: 1px solid rgba(184, 139, 56, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.project-private-grid article.is-highlighted {
  border-color: rgba(184, 139, 56, 0.62);
  background: #fff;
  box-shadow: 0 18px 50px rgba(83, 60, 19, 0.1);
}

.project-private-head {
  min-height: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 9px;
}

.project-private-head > span {
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  color: #241d12;
  background: #e8c676;
  font-size: 0.65rem;
  font-weight: 700;
}

.project-private-head small {
  color: var(--muted);
  font-size: 0.65rem;
}

.project-private-grid h3 {
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.project-private-grid article > p {
  min-height: 86px;
  color: var(--muted);
  font-size: 0.82rem;
}

.project-private-grid dl {
  margin: 26px 0 0;
  border-top: 1px solid var(--line);
}

.project-private-grid dl > div {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.72rem;
}

.project-private-grid dt {
  color: var(--muted);
}

.project-private-grid dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

.project-masterplan {
  background: #fff;
}

.project-masterplan-grid {
  grid-template-columns: minmax(300px, 0.7fr) minmax(520px, 1.3fr);
}

.project-masterplan figure img {
  height: 540px;
  object-fit: contain;
  background: #f5f4f0;
}

.project-gallery-section {
  background: var(--black);
  color: #fff;
}

.project-gallery-section .split-heading > p {
  color: rgba(255, 255, 255, 0.64);
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}

.project-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #171717;
}

.project-gallery-grid figure.is-large {
  grid-row: span 2;
}

.project-gallery-grid img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.project-gallery-grid .is-large img {
  height: 675px;
}

.project-gallery-grid figure:hover img {
  transform: scale(1.04);
}

.project-gallery-grid figcaption {
  color: rgba(255, 255, 255, 0.62);
  background: #171717;
}

.project-render-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.69rem;
}

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

.project-price-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 24px;
  align-items: start;
}

.project-price-card {
  padding: 34px;
  border: 1px solid rgba(184, 139, 56, 0.25);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.project-price-card > div {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.project-price-card > div span,
.project-price-card > div strong {
  display: block;
}

.project-price-card > div span {
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 600;
}

.project-price-card > div strong {
  margin-top: 7px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 500;
}

.project-price-card dl {
  margin: 0;
}

.project-price-card dl > div {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.project-price-card dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.project-price-card dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: right;
}

.project-clarity-card {
  padding: 28px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  background: #efe4ca;
}

.project-clarity-card > svg {
  color: var(--gold-deep);
}

.project-clarity-card strong {
  display: block;
  margin-bottom: 8px;
}

.project-clarity-card p {
  margin-bottom: 10px;
  color: #5e5545;
  font-size: 0.8rem;
}

.project-location-section {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: stretch;
  background: #fff;
}

.project-location-image {
  min-height: 590px;
  overflow: hidden;
}

.project-location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.project-location-image:hover img {
  transform: scale(1.035);
}

.project-location-copy {
  padding: clamp(55px, 8vw, 120px);
  align-self: center;
}

.project-location-copy > svg {
  margin-bottom: 28px;
  color: var(--gold-deep);
}

.project-location-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 4.5vw, 4.25rem);
}

.project-location-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

.project-trust-section {
  background:
    linear-gradient(rgba(8, 8, 7, 0.9), rgba(8, 8, 7, 0.92)),
    url("../images/developments/entrada.webp") center / cover;
  color: #fff;
}

.project-trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.project-trust-grid > div > svg {
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  color: var(--gold);
}

.project-trust-grid h2 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 4.6vw, 4.5rem);
}

.project-trust-grid > div > p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.project-review-card {
  padding: 32px;
  border: 1px solid rgba(223, 186, 107, 0.32);
  border-radius: 24px;
  background: rgba(19, 19, 17, 0.82);
  backdrop-filter: blur(14px);
}

.project-review-card h3 {
  margin-bottom: 22px;
  font-size: 2rem;
}

.project-review-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-review-card li {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.project-review-card li span {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.76rem;
}

.project-review-card li strong {
  font-size: 0.78rem;
  text-align: right;
}

.project-review-card > p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
}

.project-faq-section {
  background: #fff;
}

.project-faq-section .section-heading {
  max-width: 760px;
}

.project-faq-section .section-heading h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
}

@media (max-width: 1100px) {
  .home-hero,
  .home-hero-content {
    min-height: 740px;
    height: clamp(740px, 100svh, 870px);
  }

  .hero-copy {
    width: min(720px, 82%);
  }

  .pathways-grid-v2,
  .dev-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pathway-card-v2:last-child {
    grid-column: 1 / -1;
  }

  .founder-philosophy-grid {
    grid-template-columns: 1fr;
  }

  .founder-philosophy-card {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  }

  .founder-philosophy-card.reverse {
    grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  }

  .dev-development-card {
    grid-template-columns: minmax(320px, 0.88fr) minmax(400px, 1.12fr);
  }

  .project-editorial-grid,
  .project-masterplan-grid {
    gap: 50px;
  }

  .project-subnav {
    justify-content: flex-start;
    overflow-x: auto;
  }
}

@media (max-width: 760px) {
  .brand-link img {
    width: 58px;
    height: 58px;
  }

  .home-hero,
  .home-hero-content {
    min-height: 830px;
    height: auto;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(5, 10, 14, 0.76), rgba(5, 10, 14, 0.28)),
      linear-gradient(0deg, rgba(5, 10, 14, 0.75), rgba(5, 10, 14, 0.08) 70%);
  }

  .home-hero-content {
    padding-top: calc(var(--header-height) + 38px);
    padding-bottom: 20px;
    gap: 22px;
  }

  .hero-copy h1 {
    margin-bottom: 13px;
    font-size: clamp(2.45rem, 11vw, 3.35rem);
  }

  .hero-copy > p:not(.eyebrow) {
    margin-bottom: 18px;
    font-size: 0.86rem;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 17px;
  }

  .hero-search-wrap {
    padding: 10px;
  }

  .search-intro small {
    display: none;
  }

  .property-search label {
    padding-block: 6px;
  }

  .pathways-grid-v2,
  .dev-city-grid {
    grid-template-columns: 1fr;
  }

  .pathway-card-v2:last-child {
    grid-column: auto;
  }

  .pathway-card-v2-copy {
    min-height: 240px;
  }

  .founder-philosophy-card,
  .founder-philosophy-card.reverse {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .founder-philosophy-card.reverse .founder-portrait {
    order: 0;
  }

  .founder-portrait {
    width: min(100%, 440px);
    margin-inline: auto;
  }

  .founder-philosophy-card > div:last-child {
    min-height: 310px;
    padding: 28px 20px 24px;
  }

  .method-grid-v2 li {
    min-height: 330px;
  }

  .method-grid-v2 li > img {
    margin: 30px auto;
  }

  .buy-hero {
    min-height: 800px;
    height: auto;
  }

  .buy-hero > img {
    object-position: 66% center;
  }

  .buy-hero-scrim {
    background:
      linear-gradient(90deg, rgba(11, 16, 18, 0.78), rgba(11, 16, 18, 0.24)),
      linear-gradient(0deg, rgba(11, 16, 18, 0.72), rgba(11, 16, 18, 0.07) 72%);
  }

  .buy-hero-content {
    padding-top: calc(var(--header-height) + 38px);
    padding-bottom: 20px;
    gap: 25px;
  }

  .buy-hero-copy {
    width: 100%;
  }

  .buy-hero-copy h1 {
    font-size: 3rem;
  }

  .seller-value-proof-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .inner-hero {
    min-height: 630px;
    height: auto;
  }

  .inner-hero-content {
    padding-block: calc(var(--header-height) + 40px) 38px;
  }

  .about-hero-v2 {
    min-height: 650px;
    height: auto;
  }

  .about-hero-v2 > img {
    object-position: 66% center;
  }

  .about-hero-scrim {
    background:
      linear-gradient(90deg, rgba(251, 247, 239, 0.94), rgba(251, 247, 239, 0.5)),
      linear-gradient(0deg, rgba(251, 247, 239, 0.78), transparent 75%);
  }

  .about-hero-v2 .about-hero-content {
    width: min(100% - 30px, 1180px);
    padding-block: calc(var(--header-height) + 52px) 48px;
  }

  .about-hero-v2 .about-hero-content h1 {
    font-size: 3.25rem;
  }

  .founders-grid-v2 article {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .founders-grid-v2 article > img {
    min-height: 460px;
  }

  .dev-catalog-hero {
    min-height: 650px;
  }

  .dev-city-hero {
    min-height: 610px;
  }

  .dev-catalog-hero-content h1,
  .dev-city-hero-content h1 {
    font-size: 3.45rem;
  }

  .dev-city-card {
    min-height: 400px;
  }

  .dev-filter-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .dev-development-card {
    grid-template-columns: 1fr;
  }

  .dev-development-card-image {
    min-height: 410px;
  }

  .dev-development-card-copy {
    padding: 30px 24px;
  }

  .dev-quick-facts {
    grid-template-columns: 1fr;
  }

  .dev-quick-facts div {
    border-bottom: 1px solid var(--line);
  }

  .project-hero-v2 {
    min-height: 720px;
    height: auto;
  }

  .project-hero-v2 .project-hero-content {
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 34px;
  }

  .project-hero-v2 .project-hero-content h1 {
    font-size: 3.3rem;
  }

  .project-hero-v2 .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .project-facts-band-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-facts-band-grid > div,
  .project-facts-band-grid > div:first-child {
    padding: 17px 14px;
    border-bottom: 1px solid var(--line);
  }

  .project-editorial-grid,
  .project-masterplan-grid,
  .project-price-layout,
  .project-location-section,
  .project-trust-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .project-editorial figure img,
  .project-masterplan figure img {
    height: 380px;
  }

  .project-private-grid {
    grid-template-columns: 1fr;
  }

  .project-private-grid article > p {
    min-height: 0;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .project-gallery-grid figure.is-large {
    grid-row: auto;
  }

  .project-gallery-grid img,
  .project-gallery-grid .is-large img {
    height: 330px;
  }

  .project-price-card {
    padding: 25px 20px;
  }

  .project-price-card > div strong {
    font-size: 2.45rem;
  }

  .project-price-card dl > div,
  .project-review-card li {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .project-price-card dd,
  .project-review-card li strong {
    text-align: left;
  }

  .project-location-image {
    min-height: 390px;
  }

  .project-location-copy {
    padding: 65px 24px;
  }

  .whatsapp-float {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }
}

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

  [data-tilt] {
    transform: none !important;
  }
}

/* WordPress integration layer */

body.ilsm-site {
  overflow-x: hidden;
}

body.ilsm-site #masthead,
body.ilsm-site #colophon,
body.ilsm-site .ast-mobile-header-wrap,
body.ilsm-site .ild-whatsapp-float {
  display: none !important;
}

body.ilsm-site.ilsm-managed-page .site-content,
body.ilsm-site.ilsm-managed-page .site-content > .ast-container,
body.ilsm-site.ilsm-managed-page #primary,
body.ilsm-site.ilsm-managed-page .site-main,
body.ilsm-site.ilsm-managed-page article.page,
body.ilsm-site.ilsm-managed-page .entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.ilsm-site.ilsm-managed-page article.page > .entry-header,
body.ilsm-site.ilsm-managed-page .entry-title {
  display: none !important;
}

body.ilsm-site .site-header,
body.ilsm-site .site-footer,
body.ilsm-site .whatsapp-float,
body.ilsm-site .cookie-banner {
  font-family: "Inter", Arial, sans-serif;
}

body.ilsm-site .site-header h1,
body.ilsm-site .site-header h2,
body.ilsm-site .site-header h3,
body.ilsm-site .site-footer h1,
body.ilsm-site .site-footer h2,
body.ilsm-site .site-footer h3 {
  font-family: "Playfair Display", Georgia, serif;
}

.ilsm-skip-link {
  position: fixed;
  z-index: 10000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #111;
  transform: translateY(-150%);
}

.ilsm-skip-link:focus {
  transform: translateY(0);
}

.ilsm-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.lead-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-error {
  border-color: rgba(152, 43, 43, 0.26);
  background: #fff8f8;
}

.form-error > span {
  background: #8f2f2f;
}

.cookie-banner[hidden] {
  display: none !important;
}

body.ilsm-site .ild .ild-button--dark,
body.ilsm-site .ild a.ild-button--dark {
  color: #fff !important;
}

body.ilsm-site .ild .ild-button--gold,
body.ilsm-site .ild a.ild-button--gold {
  color: #111 !important;
}

body.ilsm-site .ild .ild-city-card,
body.ilsm-site .ild .ild-city-card:hover,
body.ilsm-site .ild .ild-city-card:focus {
  color: #fff !important;
}

body.ilsm-site .ilp .ilp-button--dark,
body.ilsm-site .ilp a.ilp-button--dark {
  color: #fff !important;
}

body.ilsm-site .ilp .ilp-button--gold,
body.ilsm-site .ilp a.ilp-button--gold {
  color: #111 !important;
}

body.ilsm-site .ild-hero--catalog {
  min-height: 610px;
  background-image: url("../images/developments-hero-v2.webp") !important;
  background-position: center 58% !important;
}

body.ilsm-site .ild-hero--catalog::before {
  background:
    linear-gradient(90deg, rgba(7, 10, 9, 0.8), rgba(7, 10, 9, 0.3) 60%, rgba(7, 10, 9, 0.06)),
    linear-gradient(0deg, rgba(7, 10, 9, 0.48), transparent 58%);
}

body.ilsm-site .ilp-search-hero {
  min-height: 700px;
  background:
    linear-gradient(90deg, rgba(11, 16, 18, 0.8) 0%, rgba(11, 16, 18, 0.5) 40%, rgba(11, 16, 18, 0.08) 78%),
    linear-gradient(0deg, rgba(11, 16, 18, 0.48), transparent 48%),
    url("../images/buy-hero-v2.webp") center / cover no-repeat;
}

body.ilsm-site .ilp-search-hero::after {
  display: none;
}

body.ilsm-site .ilp-search-hero__inner {
  min-height: 700px;
  padding-top: calc(var(--header-height) + 54px);
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

@media (max-width: 782px) {
  body.admin-bar.ilsm-site .site-header {
    top: 46px;
  }

  body.ilsm-site .ilp-search-hero,
  body.ilsm-site .ilp-search-hero__inner {
    min-height: auto;
  }

  body.ilsm-site .ilp-search-hero__inner {
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 36px;
  }
}

@media (min-width: 783px) {
  body.admin-bar.ilsm-site .site-header {
    top: 32px;
  }
}

/* v1.0.1 — review reliability and approved first viewport */

body.ilsm-site.ilsm-managed-page #ilsm-contenido {
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.ilsm-site.ilsm-managed-page #ilsm-contenido h1,
body.ilsm-site.ilsm-managed-page #ilsm-contenido h2,
body.ilsm-site.ilsm-managed-page #ilsm-contenido h3,
body.ilsm-site.ilsm-managed-page #ilsm-contenido h4 {
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 500 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.025em !important;
}

.motion-ready body.ilsm-site [data-reveal] {
  opacity: 1;
  transform: translateY(16px);
}

.motion-ready body.ilsm-site [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.ilsm-site .home-hero,
body.ilsm-site .home-hero-content {
  min-height: 680px;
  height: min(760px, 100svh);
}

body.admin-bar.ilsm-site .home-hero,
body.admin-bar.ilsm-site .home-hero-content {
  height: min(760px, calc(100svh - 32px));
}

body.ilsm-site .home-hero-content {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  justify-content: stretch;
  gap: 18px;
  padding-top: calc(var(--header-height) + 28px);
  padding-bottom: 22px;
}

body.ilsm-site .hero-copy {
  align-self: center;
}

body.ilsm-site .hero-copy h1 {
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 4.55vw, 4.7rem);
  line-height: 1.02 !important;
}

body.ilsm-site .hero-copy > p:not(.eyebrow) {
  margin-bottom: 20px;
  line-height: 1.6;
}

body.ilsm-site .hero-search-wrap {
  z-index: 4;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}

body.ilsm-site .ild .ild-button--gold,
body.ilsm-site .ild a.ild-button--gold,
body.ilsm-site .ild button.ild-button--gold {
  border-color: #e7c983 !important;
  background: linear-gradient(135deg, #f1d48d 0%, #dfba6b 52%, #bd8e3c 100%) !important;
  color: #111 !important;
  -webkit-text-fill-color: #111;
}

body.ilsm-site .ild .ild-button--dark,
body.ilsm-site .ild a.ild-button--dark {
  border-color: #0b0b0b !important;
  background: #0b0b0b !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

body.ilsm-site .ild .ild-button--ghost,
body.ilsm-site .ild a.ild-button--ghost {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

@media (max-width: 782px) {
  body.admin-bar.ilsm-site .home-hero,
  body.admin-bar.ilsm-site .home-hero-content,
  body.ilsm-site .home-hero,
  body.ilsm-site .home-hero-content {
    min-height: 0;
    height: auto;
  }

  body.ilsm-site .home-hero-content {
    grid-template-rows: auto auto;
    gap: 30px;
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 34px;
  }

  body.ilsm-site .hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }
}

/* v1.0.2 — WordPress isolation, contrast and interaction polish */

body.ilsm-site #ilsm-contenido .home-hero,
body.ilsm-site #ilsm-contenido .inner-hero,
body.ilsm-site #ilsm-contenido .featured-development,
body.ilsm-site #ilsm-contenido .seller-process,
body.ilsm-site #ilsm-contenido .contact-hero {
  color: #fff;
}

body.ilsm-site #ilsm-contenido .home-hero .hero-copy h1,
body.ilsm-site #ilsm-contenido .inner-hero .inner-hero-content h1,
body.ilsm-site #ilsm-contenido .featured-development-content h2,
body.ilsm-site #ilsm-contenido .seller-process h2,
body.ilsm-site #ilsm-contenido .seller-process h3,
body.ilsm-site #ilsm-contenido .contact-hero-grid h1 {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

body.ilsm-site #ilsm-contenido .home-hero .hero-copy h1 em {
  color: #dfba6b !important;
  -webkit-text-fill-color: #dfba6b;
}

body.ilsm-site #ilsm-contenido .home-hero .hero-copy > p:not(.eyebrow),
body.ilsm-site #ilsm-contenido .inner-hero .inner-hero-content > p:not(.eyebrow),
body.ilsm-site #ilsm-contenido .featured-development-content > p:not(.eyebrow, .feature-location),
body.ilsm-site #ilsm-contenido .seller-process li p,
body.ilsm-site #ilsm-contenido .contact-hero-grid > div > p:not(.eyebrow),
body.ilsm-site #ilsm-contenido .contact-details a,
body.ilsm-site #ilsm-contenido .contact-details span {
  color: rgba(255, 255, 255, 0.76) !important;
  -webkit-text-fill-color: currentColor;
}

body.ilsm-site #ilsm-contenido .seller-process li > span,
body.ilsm-site #ilsm-contenido .seller-process .eyebrow,
body.ilsm-site #ilsm-contenido .contact-hero .eyebrow {
  color: #dfba6b !important;
  -webkit-text-fill-color: #dfba6b;
}

.ilsm-search-effect-ready body.ilsm-site .home-hero .hero-search-wrap {
  opacity: 0 !important;
  pointer-events: none;
  transform: translateY(24px) !important;
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.ilsm-search-effect-ready body.ilsm-site .home-hero .hero-search-wrap.is-search-visible {
  opacity: 1 !important;
  pointer-events: auto;
  transform: translateY(0) !important;
}

.featured-development-logo {
  display: block;
  width: min(390px, 72vw);
  max-height: 126px;
  margin: 12px 0 22px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.28));
}

body.ilsm-site .ild-anchor-nav {
  z-index: 92 !important;
  top: var(--header-height) !important;
}

body.admin-bar.ilsm-site .ild-anchor-nav {
  top: calc(var(--header-height) + 32px) !important;
}

body.ilsm-site .ild [id] {
  scroll-margin-top: calc(var(--header-height) + 72px);
}

body.ilsm-site #colophon,
body.ilsm-site .elementor-location-footer,
body.ilsm-site [data-elementor-type="footer"],
body.ilsm-site .site-primary-footer-wrap,
body.ilsm-site .site-below-footer-wrap {
  display: none !important;
}

body.ilsm-site #ilsm-site-footer {
  position: relative;
  z-index: 2;
  display: block !important;
  width: 100%;
  background: #0b0b0b !important;
  color: #fff !important;
}

body.ilsm-site #ilsm-site-footer h2 {
  color: #dfba6b !important;
  -webkit-text-fill-color: #dfba6b;
}

body.ilsm-site #ilsm-site-footer a,
body.ilsm-site #ilsm-site-footer p,
body.ilsm-site #ilsm-site-footer span {
  color: rgba(255, 255, 255, 0.67);
}

body.ilsm-site #ilsm-site-footer .footer-brand > div p {
  color: #dfba6b;
}

@media (max-width: 782px) {
  body.admin-bar.ilsm-site .ild-anchor-nav {
    top: calc(var(--header-height) + 46px) !important;
  }

  .ilsm-search-effect-ready body.ilsm-site .home-hero .hero-search-wrap {
    opacity: 1 !important;
    pointer-events: auto;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ilsm-search-effect-ready body.ilsm-site .home-hero .hero-search-wrap {
    opacity: 1 !important;
    pointer-events: auto;
    transform: none !important;
  }
}

/* v1.0.3 — route protection and mobile full-bleed fixes */

body.ilsm-site.ilsm-managed-page .wp-block-shortcode,
body.ilsm-site.ild-template .wp-block-shortcode,
body.ilsm-site.ilp-template .wp-block-shortcode {
  width: 100%;
  max-width: none;
  margin: 0 !important;
  padding: 0 !important;
}

body.ilsm-site.ild-template .site-content,
body.ilsm-site.ild-template .site-content > .ast-container,
body.ilsm-site.ild-template #primary,
body.ilsm-site.ild-template .site-main,
body.ilsm-site.ild-template article.page,
body.ilsm-site.ild-template .entry-content,
body.ilsm-site.ilp-template .site-content,
body.ilsm-site.ilp-template .site-content > .ast-container,
body.ilsm-site.ilp-template #primary,
body.ilsm-site.ilp-template .site-main,
body.ilsm-site.ilp-template article.page,
body.ilsm-site.ilp-template .entry-content {
  width: 100%;
  max-width: none;
  margin: 0 !important;
  padding: 0 !important;
}

body.ilsm-site.ild-template article.page > .entry-header,
body.ilsm-site.ild-template .entry-title,
body.ilsm-site.ilp-template article.page > .entry-header,
body.ilsm-site.ilp-template .entry-title {
  display: none !important;
}

body.ilsm-site.ilp-template .site-content {
  background: #0b0b0b !important;
}

body.ilsm-site.ilp-template .ilp-results-page,
body.ilsm-site.ilp-template .ilp-search-hero {
  margin-top: 0 !important;
}

body.ilsm-site #ilsm-site-footer .footer-main > div:not(.footer-brand) a {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 782px) {
  body.ilsm-site.ilsm-managed-page #ilsm-contenido,
  body.ilsm-site.ild-template .ild,
  body.ilsm-site.ilp-template .ilp-results-page {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-right: -50vw !important;
    margin-left: -50vw !important;
  }

  body.ilsm-site.ilsm-managed-page .site-content,
  body.ilsm-site.ild-template .site-content,
  body.ilsm-site.ilp-template .site-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body.ilsm-site.ilp-template .ilp-search-hero {
    border-top: 0 !important;
  }
}
