:root {
  --blue: #3c6e89;
  --blue-dark: #244a60;
  --blue-deep: #173646;
  --gold: #d5972e;
  --gold-dark: #ad741b;
  --white: #ffffff;
  --ink: #16303e;
  --muted: #64757e;
  --sand: #f3f0e9;
  --line: #dce4e7;
  --success: #2f876b;
  --shadow-soft: 0 18px 48px rgba(24, 52, 66, 0.1);
  --shadow-card: 0 14px 38px rgba(24, 52, 66, 0.09);
  --container: 1220px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.page-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

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

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

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

button,
select {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(213, 151, 46, 0.48);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.material-symbols-outlined {
  font-size: 21px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.topbar {
  color: rgba(255, 255, 255, 0.9);
  background: var(--blue-deep);
  font-size: 13px;
}

.topbar__inner,
.topbar__contact,
.topbar p,
.topbar a {
  display: flex;
  align-items: center;
}

.topbar__inner {
  min-height: 38px;
  justify-content: space-between;
}

.topbar p {
  margin: 0;
  gap: 6px;
}

.topbar .material-symbols-outlined {
  color: var(--gold);
  font-size: 16px;
}

.topbar__contact {
  gap: 14px;
}

.topbar a {
  gap: 6px;
  transition: color 0.2s ease;
}

.topbar a:hover {
  color: var(--white);
}

.topbar__divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.28);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(36, 74, 96, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(22, 48, 62, 0.08);
}

.header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 235px;
  align-items: center;
  flex: 0 0 auto;
}

.brand img,
.footer__brand img {
  width: 100%;
  height: auto;
}

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

.desktop-nav a {
  position: relative;
  padding: 28px 0;
  color: #304957;
  font-weight: 600;
  font-size: 15px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone,
.menu-button,
.icon-button,
.favorite-button {
  display: inline-grid;
  border: 0;
  place-items: center;
}

.header-phone {
  width: 42px;
  height: 42px;
  color: var(--blue);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.button--small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 14px;
}

.button--primary {
  color: var(--white);
  background: var(--blue);
}

.button--primary:hover {
  background: var(--blue-dark);
}

.button--gold {
  color: var(--ink);
  background: var(--gold);
}

.button--gold:hover {
  background: #e0a33c;
}

.button--outline {
  color: var(--blue-dark);
  background: transparent;
  border-color: var(--blue);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
}

.button--ghost:hover {
  color: var(--ink);
  background: var(--white);
}

.button--full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--blue-dark);
  background: transparent;
}

.mobile-nav {
  position: absolute;
  z-index: 120;
  top: 100%;
  right: 0;
  left: 0;
  height: calc(100vh - 72px);
  overflow-y: auto;
  padding: 26px 24px;
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a:not(.button) {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.mobile-nav .button {
  width: 100%;
  margin-top: 26px;
}

.hero {
  position: relative;
  height: calc(100vh - 200px);
  color: var(--white);
  background: var(--blue-deep);
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: 50% 53%;
}

.hero__shade {
  z-index: -1;
  background: rgba(15, 43, 57, 0.26);
}

.hero__shade::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 58%;
  background: rgba(10, 30, 41, 0.58);
  content: "";
}

.hero__accent {
  position: absolute;
  top: 11%;
  right: 5%;
  display: grid;
  grid-template-columns: repeat(2, 18px);
  gap: 7px;
  opacity: 0.7;
}

.hero__accent span {
  width: 18px;
  height: 18px;
  background: var(--gold);
}

.hero__accent span:nth-child(1) {
  transform: translate(8px, -8px) rotate(-20deg);
}

.hero__content {
  display: flex;
  min-height: 560px;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 70px;
}

.hero__copy {
  width: min(720px, 68%);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #f1ba57;
}

.hero h1,
.section h2,
.publish-copy h2,
.contact-strip h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.99;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero__lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 19px;
  line-height: 1.6;
}

.hero__proof {
  display: flex;
  margin-top: 36px;
  gap: 0;
}

.hero__proof>div {
  display: grid;
  min-width: 145px;
  padding-right: 24px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hero__proof>div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__proof strong {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}

.hero__proof span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.search-shell {
  position: absolute;
  right: 0;
  bottom: -80px;
  left: 0;
}

.property-search {
  padding: 0 26px 26px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.search-tabs {
  display: flex;
  width: max-content;
  transform: translateY(-100%);
}

.search-tab {
  min-width: 128px;
  min-height: 48px;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.84);
  background: var(--blue-deep);
  border: 0;
  font-weight: 700;
}

.search-tab.is-active {
  color: #fff;
  background: var(--gold);
}

.search-fields {
  display: grid;
  margin-top: -30px;
  grid-template-columns: 1.05fr 1.15fr 0.9fr auto;
  align-items: end;
  gap: 0;
}

.search-field {
  display: grid;
  gap: 7px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.search-field:first-child {
  padding-left: 0;
}

.search-field>span:first-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.search-control {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--blue);
  padding: 5px;
}

.search-control .material-symbols-outlined {
  color: var(--gold-dark);
}

.search-control select {
  width: 100%;
  min-height: 34px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-weight: 600;
}

.search-submit {
  min-width: 150px;
  margin-left: 22px;
}

.sectionn {
  padding: 60px 0;
}

.properties {
  padding-top: 180px;
  background: #f8fafb;
}

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

.section-heading h2,
.story h2,
.publish-copy h2,
.contact-strip h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 700;
  line-height: 1.08;
}

.section-heading__aside {
  display: flex;
  align-items: center;
  gap: 24px;
}

.section-heading__aside p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.icon-button {
  width: 46px;
  height: 46px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.icon-button:hover:not(:disabled) {
  color: var(--white);
  background: var(--blue);
}

.icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.property-slider {
  display: grid;
  overflow-x: auto;
  grid-auto-columns: calc((100% - 48px) / 3);
  grid-auto-flow: column;
  gap: 24px;
  padding: 2px 2px 28px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.property-slider::-webkit-scrollbar {
  display: none;
}

.property-card {
  overflow: hidden;
  min-width: 0;
  background: var(--white);
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
}

.property-card[hidden] {
  display: none;
}

.property-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.43;
  background: var(--sand);
}

.property-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-card__media img {
  transform: scale(1.035);
}

.property-tag {
  position: absolute;
  top: 17px;
  left: 17px;
  padding: 6px 11px;
  color: var(--white);
  background: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.favorite-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: rgba(18, 45, 58, 0.62);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.favorite-button .material-symbols-outlined {
  font-size: 20px;
  font-variation-settings: "FILL" 0;
}

.favorite-button[aria-pressed="true"] {
  color: var(--white);
  background: var(--gold);
}

.favorite-button[aria-pressed="true"] .material-symbols-outlined {
  font-variation-settings: "FILL" 1;
}

.property-card__body {
  padding: 22px 22px 24px;
}

.property-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 13px;
}

.property-card__location .material-symbols-outlined {
  color: var(--gold-dark);
  font-size: 17px;
}

.property-card h3 {
  margin: 7px 0 1px;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  line-height: 1.25;
}

.property-price {
  margin: 5px 0 17px;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 800;
}

.property-price small {
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  padding: 14px 0;
  color: #526773;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

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

.property-features .material-symbols-outlined {
  color: var(--blue);
  font-size: 18px;
}

.property-link,
.text-link,
.service-item a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}

.property-link {
  margin-top: 17px;
  color: var(--ink);
  font-size: 14px;
}

.property-link .material-symbols-outlined,
.text-link .material-symbols-outlined,
.service-item a .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.property-link:hover .material-symbols-outlined,
.text-link:hover .material-symbols-outlined,
.service-item a:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.empty-results {
  padding: 64px 24px;
  text-align: center;
  background: var(--white);
  border: 1px dashed #b8c8cf;
}

.empty-results[hidden] {
  display: none;
}

.empty-results>.material-symbols-outlined {
  color: var(--gold);
  font-size: 46px;
}

.empty-results h3 {
  margin: 10px 0 2px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
}

.empty-results p {
  margin: 0 0 22px;
  color: var(--muted);
}

.story {
  overflow: hidden;
  background: var(--white);
}

.story__grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.story__visual {
  position: relative;
}

.story__visual::before {
  position: absolute;
  z-index: -1;
  top: -26px;
  right: -26px;
  width: 58%;
  height: 42%;
  background: var(--gold);
  content: "";
}

.story__visual img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
}

.story__stamp {
  position: absolute;
  right: -34px;
  bottom: 34px;
  display: flex;
  width: 220px;
  align-items: center;
  gap: 13px;
  padding: 20px;
  color: var(--white);
  background: var(--blue-deep);
  box-shadow: var(--shadow-soft);
}

.story__stamp>.material-symbols-outlined {
  color: var(--gold);
  font-size: 33px;
}

.story__stamp span:last-child {
  font-size: 13px;
  line-height: 1.4;
}

.story__stamp strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

.story__content>p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.story__points {
  display: grid;
  margin: 32px 0 30px;
  gap: 20px;
}

.story__points>div {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.story__points>div>.material-symbols-outlined {
  color: var(--gold-dark);
  font-size: 27px;
}

.story__points strong,
.story__points span {
  display: block;
}

.story__points strong {
  font-family: "Manrope", sans-serif;
}

.story__points span {
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  color: var(--blue-dark);
  border-bottom: 1px solid rgba(36, 74, 96, 0.25);
}

.trust-strip {
  display: grid;
  margin-top: 90px;
  padding: 34px 0;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--blue);
}

.trust-strip>div {
  display: grid;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
}

.trust-strip>div:last-child {
  border: 0;
}

.trust-strip strong {
  color: #f1ba57;
  font-family: "Manrope", sans-serif;
  font-size: 29px;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.services {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.services::after {
  position: absolute;
  right: -50px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 42px solid rgba(213, 151, 46, 0.1);
  border-radius: 50%;
  content: "";
}

.section-heading--light {
  align-items: end;
}

.section-heading--light>p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.service-item {
  position: relative;
  padding: 42px 38px 16px 0;
}

.service-item+.service-item {
  padding-left: 38px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.service-item__number {
  position: absolute;
  top: 35px;
  right: 28px;
  color: rgba(255, 255, 255, 0.13);
  font-family: "Manrope", sans-serif;
  font-size: 47px;
  font-weight: 800;
}

.service-item__icon {
  color: var(--gold);
  font-size: 42px;
}

.service-item h3 {
  margin: 18px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
}

.service-item p {
  min-height: 78px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.66);
}

.service-item a {
  color: var(--white);
  font-size: 14px;
}

.publish-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--sand);
}

.publish-section::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 11px;
  background: var(--gold);
  content: "";
}

.publish-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.publish-copy>p:not(.eyebrow) {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.publish-benefits {
  display: grid;
  margin: 30px 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.publish-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.publish-benefits .material-symbols-outlined {
  color: var(--gold-dark);
}

.publish-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 23px;
  border-top: 1px solid #d9d2c6;
  font-size: 13px;
  line-height: 1.5;
}

.publish-note>.material-symbols-outlined {
  color: var(--blue);
  font-size: 29px;
}

.lead-form {
  padding: 38px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.lead-form__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.lead-form__header>.material-symbols-outlined {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--blue);
  place-items: center;
  font-size: 27px;
}

.lead-form__header p,
.lead-form__header h3 {
  margin: 0;
}

.lead-form__header p {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-form__header h3 {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

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

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

.form-grid label>span {
  font-size: 13px;
  font-weight: 700;
}

.form-grid__full {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select {
  width: 100%;
  min-height: 49px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfcfc;
  border: 1px solid #cfdade;
  border-radius: 2px;
}

.form-grid input::placeholder {
  color: #99a7ad;
}

.form-grid input:focus,
.form-grid select:focus {
  border-color: var(--blue);
}

.form-grid .is-invalid,
.form-consent input.is-invalid {
  border-color: #b84848;
}

.field-error {
  display: none;
  color: #a23b3b;
  font-size: 11px;
}

.field-error.is-visible {
  display: block;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 20px 0 4px;
  color: var(--muted);
  font-size: 12px;
}

.form-consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.consent-error {
  margin: 0 0 12px 26px;
}

.lead-form .button--full {
  margin-top: 17px;
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 12px 0 0;
  color: #819097;
  font-size: 11px;
}

.form-privacy .material-symbols-outlined {
  font-size: 14px;
}

.contact-strip {
  padding: 68px 0;
  color: var(--white);
  background: var(--blue);
}

.contact-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact-strip .eyebrow {
  margin-bottom: 7px;
}

.contact-strip h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.contact-strip__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.footer {
  padding-top: 78px;
  color: rgba(255, 255, 255, 0.7);
  background: #102b39;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 1fr 0.8fr;
  gap: 55px;
  padding-bottom: 58px;
}

.footer__brand img {
  width: 250px;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer__brand p {
  max-width: 350px;
  margin: 0;
}

.footer h3 {
  margin: 3px 0 17px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.footer__grid>div:not(.footer__brand)>a,
.footer__grid>div:not(.footer__brand)>p {
  display: block;
  margin: 0 0 9px;
  font-size: 14px;
}

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

.social-links {
  display: flex;
  margin-top: 19px;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  place-items: center;
}

.social-links a:hover {
  background: var(--blue);
}

.footer__bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom div {
  display: flex;
  gap: 24px;
}

.whatsapp-fab {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: #27ae60;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(17, 73, 44, 0.28);
  place-items: center;
  transition: transform 0.2s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-4px);
}

.whatsapp-fab .material-symbols-outlined {
  font-size: 28px;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 26px;
  bottom: 26px;
  display: flex;
  width: min(430px, calc(100% - 40px));
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border-left: 5px solid var(--success);
  box-shadow: 0 18px 54px rgba(16, 43, 57, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast>.material-symbols-outlined {
  color: var(--success);
  font-size: 27px;
}

.toast div {
  display: grid;
  flex: 1;
}

.toast strong {
  font-family: "Manrope", sans-serif;
}

.toast span:not(.material-symbols-outlined) {
  color: var(--muted);
  font-size: 13px;
}

.toast button {
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 22px;
  }

  .desktop-cta {
    display: none;
  }

  .search-fields {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
  }

  .search-submit {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
  }

  .property-search {
    padding-bottom: 22px;
  }

  .search-shell {
    bottom: -110px;
  }

  .properties {
    padding-top: 208px;
  }

  .property-slider {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .story__stamp {
    right: -18px;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer__grid>div:last-child {
    display: none;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .topbar {
    display: none;
  }

  .header__inner {
    min-height: 72px;
  }

  .brand {
    width: 195px;
  }

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    top: 100%;
  }

  .hero {
    min-height: 800px;
  }

  .hero__content {
    min-height: 530px;
    align-items: flex-start;
    padding-top: 84px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3rem, 11vw, 4.5rem);
  }

  .hero__lead {
    max-width: 520px;
    font-size: 17px;
  }

  .hero__image {
    object-position: 61% center;
  }

  .hero__shade {
    background: rgba(15, 43, 57, 0.46);
  }

  .hero__shade::after {
    width: 78%;
    background: rgba(10, 30, 41, 0.46);
  }

  .search-shell {
    bottom: -145px;
  }

  .search-fields {
    grid-template-columns: 1fr 1fr;
  }

  .search-field {
    padding: 0 18px 15px 0;
  }

  .search-field:nth-child(2) {
    padding-right: 0;
    padding-left: 18px;
    border-right: 0;
  }

  .search-field:nth-child(3) {
    grid-column: 1 / -1;
    padding-top: 8px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .properties {
    padding-top: 245px;
  }

  .section {
    padding-bottom: 90px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading__aside p {
    display: none;
  }

  .story__grid,
  .publish-grid {
    grid-template-columns: 1fr;
  }

  .story__visual {
    max-width: 660px;
  }

  .story__visual img {
    min-height: 480px;
  }

  .story__stamp {
    right: 18px;
  }

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

  .trust-strip>div {
    padding-block: 16px;
  }

  .trust-strip>div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip>div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

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

  .service-item {
    padding: 34px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .service-item+.service-item {
    padding-left: 0;
    border-left: 0;
  }

  .service-item p {
    min-height: 0;
  }

  .contact-strip__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    width: 180px;
  }

  .hero {
    min-height: 900px;
  }

  .hero__content {
    min-height: 530px;
    padding-top: 67px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13vw, 3.85rem);
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero__proof {
    margin-top: 28px;
  }

  .hero__proof>div {
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero__proof strong {
    font-size: 17px;
  }

  .hero__proof span {
    font-size: 10px;
  }

  .search-shell {
    bottom: -52px;
  }

  .property-search {
    padding-right: 18px;
    padding-bottom: 18px;
    padding-left: 18px;
  }

  .search-tab {
    min-width: 118px;
  }

  .search-fields {
    grid-template-columns: 1fr;
    margin-top: -32px;
    gap: 0;
  }

  .search-field,
  .search-field:nth-child(2),
  .search-field:nth-child(3) {
    grid-column: auto;
    padding: 11px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .search-submit {
    margin-top: 14px;
  }

  .properties {
    padding-top: 132px;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section-heading h2,
  .story h2,
  .publish-copy h2 {
    font-size: 2.25rem;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .slider-controls {
    display: none;
  }

  .property-slider {
    margin-right: -14px;
    grid-auto-columns: 87%;
    gap: 15px;
  }

  .property-card__body {
    padding-right: 18px;
    padding-left: 18px;
  }

  .story__grid {
    gap: 62px;
  }

  .story__visual::before {
    top: -16px;
    right: -10px;
  }

  .story__visual img {
    min-height: 390px;
  }

  .story__stamp {
    right: 10px;
    bottom: -30px;
    width: 205px;
  }

  .trust-strip {
    margin-top: 70px;
  }

  .section-heading--light {
    display: block;
  }

  .section-heading--light>p {
    margin-top: 18px;
  }

  .publish-section {
    padding: 80px 0;
  }

  .publish-grid {
    gap: 50px;
  }

  .lead-form {
    margin-inline: -4px;
    padding: 26px 20px;
  }

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

  .form-grid__full {
    grid-column: auto;
  }

  .contact-strip {
    padding: 56px 0;
  }

  .contact-strip__actions {
    width: 100%;
    flex-direction: column;
  }

  .contact-strip__actions .button {
    width: 100%;
  }

  .footer {
    padding-top: 58px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer__grid>div:last-child {
    display: block;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }

  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }
}

/* =========================================================
   PUBLICAR INMUEBLE - versión con imagen de fondo
   Colocá la imagen en: assets/images/publicar-inmueble.jpg
   ========================================================= */
.publish-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 680px;
  padding: 64px 0;
  background:
    linear-gradient(90deg,
      rgba(246, 249, 250, 0.96) 0%,
      rgba(246, 249, 250, 0.82) 0%,
      rgba(246, 249, 250, 0.28) 0%,
      rgba(23, 54, 70, 0.08) 0%),
    url("/assets/images/formulario.jpeg") center 25% / cover no-repeat;
}

/* anula la barra dorada del diseño anterior */
.publish-section::before {
  content: none;
}

.publish-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 552px;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 430px);
  align-items: center;
  gap: clamp(40px, 7vw, 105px);
}

.publish-copy {
  align-self: start;
  max-width: 400px;
  padding-top: 74px;
}

.publish-copy h2 {
  margin: 0;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 3vw, 3.5rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.publish-copy__line {
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 22px;
  background: var(--blue-dark);
  border-radius: 999px;
}

.lead-form {
  width: 100%;
  max-width: 430px;
  justify-self: end;
  padding: 28px 26px 24px;
  color: var(--white);
  background: rgba(23, 54, 70, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  box-shadow: 0 24px 55px rgba(15, 43, 57, 0.25);
  backdrop-filter: blur(7px);
}

.lead-form__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 0;
  border: 0;
}

.lead-form__header .lead-form__icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  place-items: center;
  font-size: 32px;
}

.lead-form__header h3 {
  margin: 0;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.lead-form__header h3 strong {
  color: var(--gold);
  font-weight: 800;
}

.publish-section .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
}

.publish-section .form-grid label {
  display: grid;
  gap: 5px;
}

.publish-section .form-grid label>span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 600;
}

.publish-section .form-grid input,
.publish-section .form-grid select,
.publish-section .form-grid textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: #f8fafb;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 5px;
  outline: 0;
  font-size: 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.publish-section .form-grid textarea {
  min-height: 82px;
  padding-top: 11px;
  padding-bottom: 11px;
  resize: vertical;
}

.publish-section .form-grid input::placeholder,
.publish-section .form-grid textarea::placeholder {
  color: #819097;
}

.publish-section .form-grid input:focus,
.publish-section .form-grid select:focus,
.publish-section .form-grid textarea:focus,
.phone-control:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(213, 151, 46, 0.16);
}

.phone-control {
  display: flex;
  min-height: 42px;
  align-items: center;
  overflow: hidden;
  background: #f8fafb;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 5px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.publish-section .phone-control input {
  min-width: 0;
  min-height: 40px;
  border: 0;
  box-shadow: none;
}

.publish-section .phone-control input:focus {
  border: 0;
  box-shadow: none;
}

.phone-control__prefix {
  display: inline-flex;
  padding-left: 11px;
  align-items: center;
  font-size: 15px;
}

.phone-control>.material-symbols-outlined {
  padding-right: 10px;
  color: #7c8b93;
  font-size: 18px;
}

.publish-section .field-error {
  color: #ffd58c;
}

.publish-section .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 13px 0 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.35;
}

.publish-section .form-consent input {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 0;
  accent-color: var(--gold);
}

.publish-section .consent-error {
  margin-left: 23px;
}

.publish-section .lead-form__submit {
  min-height: 50px;
  margin-top: 13px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

.publish-section .lead-form__submit:hover {
  background: #e3a43a;
}

@media (max-width: 820px) {
  .publish-section {
    min-height: 0;
    padding: 62px 0;
    background:
      linear-gradient(180deg,
        rgba(246, 249, 250, 0.96) 0%,
        rgba(246, 249, 250, 0.80) 23%,
        rgba(246, 249, 250, 0.34) 48%,
        rgba(23, 54, 70, 0.18) 100%),
      url("assets/images/publicar-inmueble.jpg") 38% center / cover no-repeat;
  }

  .publish-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .publish-copy {
    max-width: 360px;
    padding-top: 0;
  }

  .lead-form {
    width: min(100%, 500px);
    max-width: none;
    justify-self: end;
  }
}

@media (max-width: 580px) {
  .publish-section {
    padding: 46px 0;
    background-position: 35% center;
  }

  .publish-copy h2 {
    font-size: 1.8rem;
  }

  .publish-grid {
    gap: 28px;
  }

  .lead-form {
    margin-inline: 0;
    padding: 24px 18px 20px;
    border-radius: 12px;
  }

  .lead-form__header .lead-form__icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    font-size: 28px;
  }

  .lead-form__header h3 {
    font-size: 16px;
  }
}

.finished-projects {
  background: #f8fafb;
}

.finished-projects .section-heading {
  margin-bottom: 28px;
}

.finished-projects__mosaic {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 175px 175px 50px;
  gap: 10px;
}

.mosaic-item {
  margin: 0;
  overflow: hidden;
  background: #e9eef0;
  box-shadow: var(--shadow-card);
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.mosaic-item:hover img {
  transform: scale(1.04);
}

/* Disposición igual a la referencia */
.item-1 {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.item-2 {
  grid-column: 2;
  grid-row: 1;
}

.item-3 {
  grid-column: 3;
  grid-row: 1;
}

.item-4 {
  grid-column: 2;
  grid-row: 2;
}

.item-5 {
  grid-column: 3;
  grid-row: 2;
}

.item-6 {
  grid-column: 2 / span 2;
  grid-row: 3;
}

/* Tablet */
@media (max-width: 980px) {
  .finished-projects__mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px 220px 220px;
  }

  .item-1 {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .item-2 {
    grid-column: 2;
    grid-row: 1;
  }

  .item-3 {
    grid-column: 2;
    grid-row: 2;
  }

  .item-4 {
    grid-column: 1;
    grid-row: 3;
  }

  .item-5 {
    grid-column: 2;
    grid-row: 3;
  }

  .item-6 {
    grid-column: 1 / -1;
    grid-row: 4;
  }
}

/* Móvil */
@media (max-width: 580px) {
  .finished-projects__mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .item-1,
  .item-2,
  .item-3,
  .item-4,
  .item-5,
  .item-6 {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }
}


/* =========================================================
   TRAYECTORIA / RESPALDO
========================================================= */

.respaldo-section {
  background: #f7f8f9;
}

.respaldo-hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  margin-bottom: 54px;
  background: #eef3f5;
  overflow: hidden;
}

.respaldo-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 420px;
  margin-left: 0;
  padding: 34px 30px;
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow-card);
  transform: translate(18px, 0);
}

.respaldo-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.respaldo-copy p + p {
  margin-top: 18px;
}

.respaldo-media {
  min-height: 280px;
}

.respaldo-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.respaldo-stats {
  padding: 10px 0 0;
}

.respaldo-heading {
  margin-bottom: 28px;
  text-align: center;
}

.respaldo-heading h2 {
  margin: 0;
  color: #1f2f38;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.respaldo-heading h2 span {
  color: var(--blue);
}

.respaldo-heading p {
  margin: 8px 0 0;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.respaldo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid #e4eaed;
}

.respaldo-card {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 210px;
  padding: 28px 22px 24px;
  text-align: center;
}

.respaldo-card + .respaldo-card {
  border-left: 1px solid #e7ecef;
}

.respaldo-card .material-symbols-outlined {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 54px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 48;
}

.respaldo-card strong {
  display: block;
  margin-bottom: 8px;
  color: #111;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.respaldo-card h3 {
  margin: 0;
  color: #243741;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .respaldo-hero {
    grid-template-columns: 1fr;
  }

  .respaldo-copy {
    max-width: 100%;
    margin: 0;
    transform: none;
  }

  .respaldo-media {
    min-height: 320px;
  }

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

  .respaldo-card:nth-child(3),
  .respaldo-card:nth-child(4) {
    border-top: 1px solid #e7ecef;
  }

  .respaldo-card:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 580px) {
  .respaldo-hero {
    margin-bottom: 40px;
  }

  .respaldo-copy {
    padding: 24px 20px;
  }

  .respaldo-copy p {
    font-size: 15px;
  }

  .respaldo-media {
    min-height: 250px;
  }

  .respaldo-heading {
    margin-bottom: 22px;
  }

  .respaldo-heading h2 {
    font-size: 2.1rem;
  }

  .respaldo-heading p {
    font-size: 11px;
  }

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

  .respaldo-card {
    min-height: auto;
    padding: 26px 18px;
  }

  .respaldo-card + .respaldo-card,
  .respaldo-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #e7ecef;
  }
}

/* ================ */

/* =========================================================
   OFRECÉ TU PROPIEDAD
========================================================= */

.sell-property {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.sell-property__layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: stretch;
  gap: clamp(45px, 7vw, 95px);
}


/* =========================================================
   CONTENIDO
========================================================= */

.sell-property__content {
  position: relative;
  z-index: 5;
  max-width: 470px;
  padding-top: 55px;
}

.sell-property__content .eyebrow {
  margin-bottom: 15px;
}

.sell-property__content h2 {
  margin: 0;

  color: var(--ink);

  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  font-weight: 600;
  line-height: 1.03;

  letter-spacing: -0.045em;
}

.sell-property__content h2 strong {
  color: var(--blue);
  font-weight: 800;
}

.sell-property__lead {
  max-width: 390px;
  margin: 30px 0 0;

  color: var(--ink);

  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.sell-property__description {
  max-width: 420px;
  margin: 18px 0 30px;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.65;
}


/* =========================================================
   GALERÍA / COLLAGE
========================================================= */

.sell-property__gallery {
  position: relative;

  width: 100%;
  min-height: 610px;
}

.sell-property__image {
  position: absolute;

  margin: 0;

  overflow: hidden;
  background: var(--sand);
}

.sell-property__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.55s cubic-bezier(.2, .7, .2, 1);
}

.sell-property__image:hover img {
  transform: scale(1.035);
}


/* =========================================================
   IMAGEN 1 - SUPERIOR DERECHA
========================================================= */

.sell-property__image--main {
  z-index: 1;

  top: 0;
  right: 0;

  width: 68%;
  height: 305px;
}


/* =========================================================
   IMAGEN 2 - CENTRO
========================================================= */

.sell-property__image--middle {
  z-index: 3;

  top: 235px;
  right: 7%;

  width: 61%;
  height: 305px;

  border: 7px solid var(--white);
}


/* =========================================================
   IMAGEN 3 - INFERIOR IZQUIERDA
========================================================= */

.sell-property__image--bottom {
  z-index: 2;

  bottom: 0;
  left: 0;

  width: 53%;
  height: 255px;

  border: 7px solid var(--white);
}


/* Línea decorativa */

.sell-property__gallery::after {
  position: absolute;

  z-index: 0;
  right: 0;
  bottom: 28px;

  width: 18%;
  height: 5px;

  background: var(--gold);

  content: "";
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

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

  .sell-property__content {
    max-width: 650px;
    padding-top: 0;
  }

  .sell-property__lead,
  .sell-property__description {
    max-width: 600px;
  }

  .sell-property__gallery {
    max-width: 720px;
    min-height: 590px;
    margin-inline: auto;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 580px) {

  .sell-property__layout {
    gap: 42px;
  }

  .sell-property__content h2 {
    font-size: 2.35rem;
  }

  .sell-property__lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .sell-property__description {
    font-size: 15px;
  }


  /* Collage */

  .sell-property__gallery {
    min-height: 465px;
  }


  /* Superior */

  .sell-property__image--main {
    width: 82%;
    height: 220px;
  }


  /* Centro */

  .sell-property__image--middle {
    top: 165px;
    right: 0;

    width: 68%;
    height: 235px;

    border-width: 5px;
  }


  /* Inferior */

  .sell-property__image--bottom {
    width: 55%;
    height: 190px;

    border-width: 5px;
  }

  .sell-property__gallery::after {
    display: none;
  }

}


/* ============================== */

/* =========================================================
   PROCESO DE TRABAJO
========================================================= */

.process-section {
  background: #f8fafb;
}

.process-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.process-heading .eyebrow {
  margin-bottom: 12px;
}

.process-heading h2 {
  margin: 0;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.process-heading > p:last-child {
  max-width: 700px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}


/* =========================================================
   GRID - 4 COLUMNAS / 2 FILAS
========================================================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 58px 34px;
  align-items: start;
}


/* =========================================================
   PASO
========================================================= */

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}


/* ICONO */

.process-step__icon {
  position: relative;
  z-index: 2;

  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;

  color: var(--blue-dark);
  background: var(--white);

  border: 2px solid var(--blue);
  border-radius: 12px;

  box-shadow: 0 10px 28px rgba(24, 52, 66, 0.08);

  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.process-step__icon .material-symbols-outlined {
  font-size: 40px;
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 48;
}


/* NÚMERO */

.process-step__number {
  position: relative;
  z-index: 2;

  display: inline-flex;
  min-width: 34px;
  height: 30px;
  align-items: center;
  justify-content: center;

  margin: 10px 0 10px;
  padding: 0 9px;

  color: var(--white);
  background: var(--blue-dark);

  border-radius: 100px;

  font-size: 12px;
  font-weight: 800;
  line-height: 1;

  transition:
    background .25s ease,
    color .25s ease;
}


/* TEXTO */

.process-step h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}


/* =========================================================
   CONECTORES
========================================================= */

/* Línea punteada */

/*.process-step::after {
  position: absolute;
  z-index: 0;

  top: 40px;
  left: calc(50% + 55px);

  width: calc(100% - 76px);

  border-top: 2px dashed rgba(213, 151, 46, .65);

  content: "";
}*/


/* Flecha */

.process-step::before {
  position: absolute;
  z-index: 1;

  top: 32px;
  right: -23px;

  color: var(--gold);

  font-size: 50px;
  font-weight: 700;

  content: "➜";
}


/*
 * El paso 04 termina la primera fila.
 * El paso 08 termina la segunda.
 */

.process-step:nth-child(4)::after,
.process-step:nth-child(4)::before,
.process-step:nth-child(8)::after,
.process-step:nth-child(8)::before {
  display: none;
}


/* =========================================================
   HOVER
========================================================= */

.process-step:hover .process-step__icon {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);

  transform: translateY(-5px);

  box-shadow: 0 16px 34px rgba(24, 52, 66, .15);
}

.process-step:hover .process-step__number {
  color: var(--ink);
  background: var(--gold);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 28px;
  }

  /*
   * Ahora cada fila termina en:
   * 02 - 04 - 06 - 08
   */

  .process-step::after,
  .process-step::before {
    display: block;
  }

  .process-step:nth-child(even)::after,
  .process-step:nth-child(even)::before {
    display: none;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 580px) {

  .process-heading {
    margin-bottom: 38px;
  }

  .process-heading h2 {
    font-size: 2.1rem;
  }

  .process-heading > p:last-child {
    font-size: 15px;
  }


  /*
   * Mantengo 2 columnas en mobile.
   * Con 8 pasos queda 2 x 4.
   */

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

  .process-step__icon {
    width: 68px;
    height: 68px;
    border-radius: 10px;
  }

  .process-step__icon .material-symbols-outlined {
    font-size: 33px;
  }

  .process-step__number {
    min-width: 31px;
    height: 26px;

    margin: 8px 0;

    font-size: 10px;
  }

  .process-step h3 {
    font-size: 12px;
    line-height: 1.35;
  }

  /* En móvil quitamos las flechas para evitar ruido */

  .process-step::after,
  .process-step::before {
    display: none !important;
  }
}


/* ================== */

/* =========================================================
   BOTÓN IA - HERO
========================================================= */

.hero-ai-button {
  position: relative;
  display: inline-flex;
  width: 400px;
  min-height: 100px;
  align-items: center;
  gap: 14px;

  margin-top: 30px;
  padding: 10px 18px 10px 14px;

  overflow: hidden;

  color: #000;
  background: linear-gradient(
    135deg,
    #fff 0%,
    #fff 100%
  );

  border: 1px solid rgba(255,255,255,.3);
  border-radius: 6px;

  box-shadow:
    0 14px 34px rgba(0,0,0,.18),
    0 0 0 1px rgba(255,255,255,.08);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}


/* brillo */

.hero-ai-button::before {
  position: absolute;
  top: -50%;
  right: -80px;

  width: 45px;
  height: 200%;

  background: rgba(255,255,255,.35);

  content: "";

  transform: rotate(25deg);

  transition: left .6s ease;
}

.hero-ai-button:hover::before {
  left: calc(100% + 40px);
}


/* hover */

.hero-ai-button:hover {
  color: var(--ink);

  transform: translateY(-3px);

  box-shadow:
    0 20px 44px rgba(0,0,0,.25),
    0 0 0 1px rgba(255,255,255,.16);
}


/* ICONO IA */

.hero-ai-button__icon {
  position: relative;
  z-index: 2;

  display: grid;

  width: 46px;
  height: 46px;

  flex: 0 0 46px;

  place-items: center;

  color: var(--white);
  background: var(--blue);

  border-radius: 50%;

  font-size: 24px;

  transition:
    transform .3s ease,
    background .3s ease;
}

.hero-ai-button:hover .hero-ai-button__icon {
  background: var(--blue);
  transform: rotate(-8deg) scale(1.07);
}


/* TEXTO */

.hero-ai-button__content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  line-height: 1.1;
}

.hero-ai-button__label {
  margin-bottom: 4px;

  color: rgba(22,48,62,.68);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-ai-button__content strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
}


/* FLECHA */

.hero-ai-button__arrow {
  position: relative;
  z-index: 2;

  margin-left: 8px;

  font-size: 21px;

  transition: transform .25s ease;
}

.hero-ai-button:hover .hero-ai-button__arrow {
  transform: translateX(5px);
}


/* MOBILE */

@media (max-width: 580px) {

  .hero-ai-button {
    width: 100%;
    max-width: 360px;

    min-height: 64px;

    padding: 9px 15px 9px 11px;
  }

  .hero-ai-button__icon {
    width: 42px;
    height: 42px;

    flex-basis: 42px;
  }

  .hero-ai-button__content strong {
    font-size: 14px;
  }

  .hero-ai-button__arrow {
    margin-left: auto;
  }
}

.hero__content {
  justify-content: flex-end;
}

.hero__copy {
  width: auto;
  max-width: none;
  margin-left: auto;
  padding-bottom: 145px;
  text-align: right;
}

.hero-ai-button {
  margin-left: auto;
}

/* =========================== */

/* =========================================================
   FAQ
========================================================= */

.faq-section {
  overflow: hidden;
  background: #f8fafb;
}


/* =========================================================
   HEADER
========================================================= */

.faq-heading {
  max-width: 750px;
  margin-bottom: 50px;
}

.faq-heading h2 {
  margin: 0;

  color: var(--ink);

  font-family: "Manrope", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  font-weight: 700;
  line-height: 1.08;

  letter-spacing: -0.045em;
}

.faq-heading > p:last-child {
  max-width: 650px;

  margin: 18px 0 0;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.7;
}


/* =========================================================
   LAYOUT
========================================================= */

.faq-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(380px, .95fr);

  align-items: start;

  gap: clamp(55px, 7vw, 100px);
}


/* =========================================================
   PREGUNTAS
========================================================= */

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

.faq-item {
  border-bottom: 1px solid var(--line);
}


/* pregunta */

.faq-question {
  display: grid;

  width: 100%;
  min-height: 88px;

  grid-template-columns: auto 1fr auto;

  align-items: center;

  gap: 18px;

  padding: 20px 4px;

  color: var(--ink);
  background: transparent;

  border: 0;

  text-align: left;
}


/* número */

.faq-question__number {
  color: var(--gold-dark);

  font-family: "Manrope", sans-serif;

  font-size: 12px;
  font-weight: 800;
}


/* título */

.faq-question__title {
  font-family: "Manrope", sans-serif;

  font-size: 18px;
  font-weight: 700;

  line-height: 1.35;

  transition: color .2s ease;
}


/* + / - */

.faq-question__icon {
  display: grid;

  width: 38px;
  height: 38px;

  place-items: center;

  color: var(--blue);

  border: 1px solid var(--line);
  border-radius: 50%;

  font-size: 20px;

  transition:
    color .25s ease,
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}


/* hover */

.faq-question:hover .faq-question__title {
  color: var(--blue);
}

.faq-question:hover .faq-question__icon {
  color: var(--white);

  background: var(--blue);

  border-color: var(--blue);
}


/* =========================================================
   RESPUESTA
========================================================= */

.faq-answer {
  display: grid;

  grid-template-rows: 0fr;

  overflow: hidden;

  transition: grid-template-rows .35s ease;
}

.faq-answer__inner {
  min-height: 0;
}

.faq-answer p {
  max-width: 610px;

  margin: 0;

  padding:
    0
    58px
    26px
    34px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.7;
}


/* activo */

.faq-item.is-active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-active .faq-question__title {
  color: var(--blue);
}

.faq-item.is-active .faq-question__icon {
  color: var(--white);

  background: var(--blue);

  border-color: var(--blue);
}


/* =========================================================
   IMAGEN
========================================================= */

.faq-visual {
  position: sticky;

  top: 120px;
}

.faq-visual__image {
  position: relative;

  height: 520px;

  overflow: hidden;

  background: var(--sand);
}

.faq-visual__image::after {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 65%,
      rgba(15, 43, 57, .16)
    );

  content: "";
}

.faq-visual__image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    opacity .22s ease,
    transform .5s ease;
}


/* clase usada por JS al cambiar */

.faq-visual__image img.is-changing {
  opacity: .2;
  transform: scale(1.02);
}


/* =========================================================
   TARJETA SOBRE IMAGEN
========================================================= */

.faq-visual__card {
  position: relative;

  z-index: 3;

  display: grid;

  grid-template-columns: auto 1fr;
  align-items: center;

  gap: 12px;

  width: calc(100% - 48px);

  margin:
    -72px
    auto
    0;

  padding: 22px;

  color: var(--white);
  background: var(--blue-deep);

  box-shadow: var(--shadow-soft);
}

.faq-visual__card > .material-symbols-outlined {
  color: var(--gold);

  font-size: 34px;
}

.faq-visual__card strong {
  display: block;

  font-family: "Manrope", sans-serif;

  font-size: 15px;
}

.faq-visual__card p {
  margin: 2px 0 0;

  color: rgba(255, 255, 255, .7);

  font-size: 12px;
}


/* link */

.faq-visual__card > a {
  display: inline-flex;

  grid-column: 2;

  align-items: center;

  gap: 5px;

  width: max-content;

  margin-top: 4px;

  color: var(--gold);

  font-size: 12px;
  font-weight: 700;
}

.faq-visual__card > a .material-symbols-outlined {
  font-size: 16px;

  transition: transform .2s ease;
}

.faq-visual__card > a:hover .material-symbols-outlined {
  transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-visual {
    position: relative;
    top: auto;

    max-width: 700px;
  }

  .faq-visual__image {
    height: 430px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 580px) {

  .faq-heading {
    margin-bottom: 35px;
  }

  .faq-heading h2 {
    font-size: 2.2rem;
  }

  .faq-heading > p:last-child {
    font-size: 15px;
  }


  .faq-question {
    min-height: 78px;

    grid-template-columns: auto 1fr auto;

    gap: 10px;

    padding: 17px 0;
  }

  .faq-question__title {
    font-size: 15px;
  }

  .faq-question__icon {
    width: 34px;
    height: 34px;
  }

  .faq-answer p {
    padding:
      0
      43px
      22px
      28px;

    font-size: 13px;
  }


  /* imagen */

  .faq-visual__image {
    height: 330px;
  }

  .faq-visual__card {
    width: calc(100% - 24px);

    margin-top: -45px;

    padding: 18px;
  }

}