:root {
  --ink: #1d1d1f;
  --muted: #6f706f;
  --paper: #fbfaf7;
  --paper-deep: #f3f0e9;
  --white: #ffffff;
  --line: rgba(29, 29, 31, 0.12);
  --coral: #e6534c;
  --coral-dark: #c83c37;
  --navy: #14242d;
  --navy-soft: #20353f;
  --green: #2ba76f;
  --shadow: 0 22px 70px rgba(28, 31, 31, 0.12);
  --shadow-soft: 0 14px 40px rgba(28, 31, 31, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: rgba(230, 83, 76, .22); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section-pad { padding: 112px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 20px 0;
  pointer-events: none;
}
.nav-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 22px;
  background: rgba(251, 250, 247, .82);
  box-shadow: 0 12px 40px rgba(31, 34, 34, .07);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  pointer-events: auto;
  transition: box-shadow .3s ease, background .3s ease, transform .3s ease;
}
.site-header.scrolled .nav-shell {
  background: rgba(251, 250, 247, .94);
  box-shadow: 0 18px 50px rgba(31, 34, 34, .13);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--coral);
  border-radius: 14px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.04em;
  box-shadow: inset 0 -4px 10px rgba(126, 23, 20, .18);
}
.brand-type { display: grid; line-height: 1; gap: 4px; }
.brand-type strong { font-family: "Manrope", sans-serif; font-size: 15px; letter-spacing: .12em; }
.brand-type small { font-size: 8px; letter-spacing: .27em; color: var(--muted); }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a, .text-action {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #454746;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1.5px;
  background: var(--coral);
  transition: right .3s var(--ease);
}
.desktop-nav a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); margin: 5px auto; transition: transform .25s ease; }
.menu-toggle.active span:first-child { transform: translateY(3.2px) rotate(45deg); }
.menu-toggle.active span:last-child { transform: translateY(-3.2px) rotate(-45deg); }
.mobile-menu {
  pointer-events: auto;
  width: min(calc(100% - 40px), 620px);
  margin: 10px auto 0;
  padding: 18px;
  border-radius: 22px;
  background: rgba(251,250,247,.98);
  box-shadow: var(--shadow-soft);
}
.mobile-menu a:not(.button) { display: block; padding: 14px 8px; border-bottom: 1px solid var(--line); font-weight: 600; }
.mobile-menu .button { margin-top: 14px; width: 100%; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 16px;
  padding: 0 23px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--coral); box-shadow: 0 14px 30px rgba(230,83,76,.24); }
.button-primary:hover { background: var(--coral-dark); box-shadow: 0 18px 36px rgba(230,83,76,.3); }
.button-dark { color: #fff; background: var(--ink); }
.button-dark:hover { background: #000; box-shadow: 0 12px 25px rgba(0,0,0,.17); }
.button-ghost { color: var(--ink); background: rgba(255,255,255,.72); box-shadow: inset 0 0 0 1px var(--line); }
.button-ghost:hover { background: #fff; }
.button-light { color: var(--navy); background: #fff; }
.button-light:hover { box-shadow: 0 16px 35px rgba(0,0,0,.18); }
.button-small { min-height: 46px; border-radius: 14px; padding: 0 18px; }
.button-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 154px;
  padding-bottom: 74px;
  background:
    radial-gradient(circle at 10% 15%, rgba(230,83,76,.10), transparent 30%),
    radial-gradient(circle at 91% 20%, rgba(70,139,151,.11), transparent 28%),
    linear-gradient(180deg, #fffefb 0%, var(--paper) 70%);
}
.hero::before {
  content: "";
  position: absolute;
  left: -140px;
  top: 220px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(230,83,76,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(230,83,76,.025), 0 0 0 100px rgba(230,83,76,.018);
}
.hero-grid { display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 68px; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 22px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #6c6e6c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow span { width: 30px; height: 1.5px; background: var(--coral); }
.eyebrow-light { color: rgba(255,255,255,.72); }
.eyebrow-light span { background: #fff; }
h1, h2, h3 { margin: 0; font-family: "Manrope", sans-serif; }
h1 {
  max-width: 710px;
  font-size: clamp(52px, 5.5vw, 84px);
  line-height: .99;
  letter-spacing: -.065em;
  font-weight: 700;
}
h1 em, h2 em { color: var(--coral); font-style: normal; }
.hero-lead { max-width: 620px; margin: 28px 0 0; color: #626563; font-size: 18px; line-height: 1.68; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; padding-top: 26px; border-top: 1px solid var(--line); }
.trust-row div { display: grid; gap: 5px; }
.trust-row strong { font-family: "Manrope", sans-serif; font-size: 14px; }
.trust-row span { color: #858784; font-size: 11px; }

.hero-media { position: relative; min-height: 660px; }
.hero-photo { position: absolute; margin: 0; overflow: hidden; background: #ddd; box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.hero-media:hover .hero-photo img { transform: scale(1.025); }
.hero-photo-main { left: 0; top: 38px; width: 60%; height: 592px; border-radius: 36px; }
.hero-photo-main img { object-position: 52% 51%; }
.hero-photo-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(8,16,20,.63)); }
.hero-photo-main figcaption { position: absolute; z-index: 2; left: 24px; bottom: 23px; color: #fff; display: grid; gap: 3px; }
.hero-photo-main figcaption span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; opacity: .75; }
.hero-photo-main figcaption strong { font-family: "Manrope", sans-serif; font-size: 21px; }
.hero-photo-top { right: 0; top: 0; width: 35%; height: 318px; border-radius: 28px; }
.hero-photo-top img { object-position: center 56%; }
.hero-photo-bottom { right: 2%; bottom: 0; width: 39%; height: 296px; border-radius: 28px; }
.hero-photo-bottom img { object-position: center; }
.availability-card {
  position: absolute;
  z-index: 5;
  left: 49%;
  top: 310px;
  min-width: 230px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 45px rgba(23,29,31,.16);
  backdrop-filter: blur(14px);
}
.status-dot { width: 12px; height: 12px; flex: none; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(43,167,111,.13); }
.availability-card div { display: grid; gap: 4px; }
.availability-card strong { font-size: 12px; }
.availability-card small { color: var(--muted); font-size: 10px; }

.property-search {
  position: relative;
  z-index: 20;
  width: min(calc(100% - 40px), 1120px);
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr 1.15fr auto;
  align-items: center;
  gap: 0;
  margin: 52px auto 0;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 25px 70px rgba(35,38,38,.12);
  backdrop-filter: blur(18px);
}
.search-field { min-width: 0; display: grid; gap: 7px; padding: 9px 22px; border-right: 1px solid var(--line); }
.search-field-last { border-right: 0; }
.search-field label { font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.search-field select { width: 100%; border: 0; outline: 0; color: #777976; background: transparent; font-size: 13px; cursor: pointer; }
.search-button {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 22px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 14px 28px rgba(230,83,76,.28);
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease;
}
.search-button:hover { transform: scale(1.035); background: var(--coral-dark); }
.search-button svg { width: 24px; height: 24px; }
.search-button span { display: none; }

.properties-section { background: #fff; }
.section-head { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 70px; }
.section-head h2, .owner-copy h2, .profile-copy h2 { font-size: clamp(39px, 4.5vw, 66px); line-height: 1.05; letter-spacing: -.055em; }
.section-head p { margin: 0 0 6px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.filter-bar { display: flex; align-items: center; gap: 8px; margin-top: 48px; }
.filter-chip {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #5c5e5c;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}
.filter-chip:hover, .filter-chip.active { color: #fff; background: var(--ink); border-color: var(--ink); }
.carousel-controls { margin-left: auto; display: flex; gap: 8px; }
.round-control { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; transition: all .25s ease; }
.round-control:hover { color: #fff; background: var(--coral); border-color: var(--coral); }
.property-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(315px, 31.5%);
  gap: 22px;
  overflow-x: auto;
  padding: 10px 2px 24px;
  margin-top: 26px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.property-track::-webkit-scrollbar { display: none; }
.property-card { min-width: 0; scroll-snap-align: start; transition: opacity .25s ease, transform .25s ease; }
.property-card[hidden] { display: none; }
.card-image { position: relative; height: 372px; overflow: hidden; border-radius: 24px; background: var(--paper-deep); }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.property-card:hover .card-image img { transform: scale(1.045); }
.card-badge { position: absolute; left: 14px; top: 14px; padding: 8px 11px; border-radius: 999px; background: rgba(255,255,255,.93); font-size: 10px; font-weight: 700; box-shadow: 0 8px 20px rgba(0,0,0,.08); }
.favorite { position: absolute; right: 13px; top: 13px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(255,255,255,.92); font-size: 24px; line-height: 1; cursor: pointer; box-shadow: 0 8px 20px rgba(0,0,0,.08); transition: transform .2s ease, color .2s ease; }
.favorite:hover { transform: scale(1.06); }
.favorite.saved { color: var(--coral); }
.card-content { padding: 18px 4px 0; }
.card-location { color: #8a8c89; font-size: 11px; font-weight: 600; letter-spacing: .04em; }
.card-content h3 { margin-top: 8px; font-size: 19px; line-height: 1.32; letter-spacing: -.025em; }
.card-meta { display: flex; gap: 16px; margin-top: 14px; color: #6f716e; font-size: 12px; }
.card-price { display: flex; align-items: baseline; gap: 8px; margin-top: 15px; padding-top: 14px; border-top: 1px solid var(--line); }
.card-price strong { font-family: "Manrope", sans-serif; font-size: 18px; }
.card-price span { color: #929490; font-size: 10px; }
.demo-note { display: flex; align-items: flex-start; gap: 10px; width: fit-content; max-width: 760px; margin-top: 20px; padding: 13px 16px; border-radius: 14px; color: #747673; background: var(--paper); font-size: 11px; line-height: 1.6; }
.demo-note p { margin: 0; }

.owner-section { color: #fff; background: var(--navy); }
.owner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 78px; align-items: center; }
.owner-visual { position: relative; height: 720px; overflow: hidden; border-radius: var(--radius-xl); }
.owner-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(5,13,16,.6)); }
.owner-visual img { width: 100%; height: 100%; object-fit: cover; }
.visual-label { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 14px; padding: 17px 19px; border: 1px solid rgba(255,255,255,.26); border-radius: 18px; background: rgba(20,36,45,.54); backdrop-filter: blur(12px); }
.visual-label span { width: 42px; height: 42px; display: grid; place-items: center; flex: none; border-radius: 50%; background: #fff; color: var(--navy); font-size: 12px; font-weight: 700; }
.visual-label strong { font-family: "Manrope", sans-serif; font-size: 14px; }
.owner-copy > p { margin: 24px 0 0; color: rgba(255,255,255,.67); font-size: 16px; line-height: 1.72; }
.process-list { list-style: none; margin: 38px 0 38px; padding: 0; }
.process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.12); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.process-list > li > span { color: var(--coral); font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 700; }
.process-list strong { display: block; font-family: "Manrope", sans-serif; font-size: 17px; }
.process-list p { margin: 8px 0 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.6; }

.services-section { background: var(--paper-deep); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.service-card { position: relative; min-height: 410px; display: flex; flex-direction: column; padding: 26px; border: 1px solid rgba(29,29,31,.08); border-radius: 24px; background: #fff; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.service-card-featured { color: #fff; background: var(--coral); border-color: var(--coral); }
.service-card-featured::after { content: ""; position: absolute; right: -90px; bottom: -90px; width: 230px; height: 230px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 34px rgba(255,255,255,.06), 0 0 0 70px rgba(255,255,255,.04); }
.service-number { color: #969895; font-size: 11px; font-weight: 700; }
.service-card-featured .service-number { color: rgba(255,255,255,.72); }
.service-icon { width: 54px; height: 54px; margin-top: 42px; }
.service-card h3 { margin-top: 28px; font-size: 22px; letter-spacing: -.035em; }
.service-card p { margin: 14px 0 0; color: #777976; font-size: 13px; line-height: 1.68; }
.service-card-featured p { color: rgba(255,255,255,.75); }
.service-card a { position: relative; z-index: 2; display: flex; justify-content: space-between; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 700; }
.service-card-featured a { border-color: rgba(255,255,255,.25); }

.profile-section { background: #fff; }
.profile-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 95px; align-items: center; }
.profile-intro { margin: 26px 0 0; color: #3e403f !important; font-size: 18px !important; }
.profile-copy > p { color: var(--muted); font-size: 15px; line-height: 1.78; }
.profile-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 38px; }
.profile-facts div { padding: 18px 16px; border: 1px solid var(--line); border-radius: 17px; }
.profile-facts strong { display: block; font-family: "Manrope", sans-serif; font-size: 20px; }
.profile-facts span { display: block; margin-top: 6px; color: #8a8c89; font-size: 10px; line-height: 1.45; }
.profile-card { position: relative; min-height: 570px; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; border-radius: 34px; color: #fff; background:
  linear-gradient(160deg, rgba(15,27,34,.12), rgba(15,27,34,.78)),
  url("../img/antofagasta-coast.webp") center 58% / cover no-repeat;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.profile-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 22%, rgba(11,20,25,.9) 92%); }
.profile-monogram { position: absolute; z-index: 2; left: 28px; top: 28px; width: 82px; height: 82px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.42); border-radius: 24px; background: rgba(255,255,255,.12); backdrop-filter: blur(10px); font-family: "Manrope", sans-serif; font-size: 25px; font-weight: 800; }
.profile-card-body { position: relative; z-index: 2; }
.profile-role { color: rgba(255,255,255,.72); font-size: 10px; text-transform: uppercase; letter-spacing: .17em; }
.profile-card h3 { margin-top: 9px; font-size: 40px; letter-spacing: -.055em; }
.profile-card-body > p { margin: 8px 0 0; color: rgba(255,255,255,.65); font-size: 13px; }
.profile-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 25px; }
.profile-links a { display: flex; align-items: center; justify-content: space-between; min-height: 47px; padding: 0 13px; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; background: rgba(255,255,255,.08); font-size: 11px; font-weight: 600; transition: background .25s ease; }
.profile-links a:hover { background: rgba(255,255,255,.18); }
.profile-stamp { position: absolute; z-index: 2; right: 26px; top: 28px; padding: 12px 14px; border-radius: 14px; color: var(--navy); background: #fff; text-align: center; font-size: 8px; letter-spacing: .12em; }
.profile-stamp strong { font-size: 13px; letter-spacing: .03em; }

.contact-section { padding-top: 0; background: #fff; }
.contact-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; padding: 74px; border-radius: 38px; color: #fff; background: var(--coral); box-shadow: 0 32px 80px rgba(184,56,50,.2); }
.contact-copy h2 { max-width: 560px; font-size: clamp(40px, 4.3vw, 64px); line-height: 1.03; letter-spacing: -.06em; }
.contact-copy > p { max-width: 560px; margin: 24px 0 0; color: rgba(255,255,255,.76); font-size: 15px; line-height: 1.7; }
.contact-direct { display: grid; gap: 9px; margin-top: 38px; }
.contact-direct a { width: fit-content; display: grid; gap: 3px; }
.contact-direct span { color: rgba(255,255,255,.6); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.contact-direct strong { font-size: 14px; }
.contact-form { padding: 30px; border-radius: 26px; color: var(--ink); background: #fff; box-shadow: 0 18px 50px rgba(126,31,28,.15); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 14px; color: #555755; font-size: 11px; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 13px; outline: 0; color: var(--ink); background: var(--paper); transition: border .2s ease, box-shadow .2s ease; }
.contact-form input, .contact-form select { height: 49px; padding: 0 13px; }
.contact-form textarea { padding: 13px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(230,83,76,.6); box-shadow: 0 0 0 4px rgba(230,83,76,.09); }
.contact-form .button-light { color: #fff; background: var(--ink); }
.contact-form small { display: block; margin-top: 11px; color: #969895; font-size: 9px; text-align: center; }

.site-footer { padding: 64px 0 24px; background: var(--paper); }
.footer-top { display: grid; grid-template-columns: .8fr 1.2fr 1fr; gap: 60px; align-items: start; padding-bottom: 38px; }
.brand-footer .brand-mark { background: var(--ink); }
.footer-top > p { max-width: 460px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 25px; justify-self: end; }
.footer-links a { color: #555755; font-size: 12px; font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); color: #979995; font-size: 9px; }

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  color: #fff;
  background: #20b868;
  box-shadow: 0 18px 38px rgba(32,184,104,.32);
  font-size: 12px;
  font-weight: 700;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 22px 45px rgba(32,184,104,.4); }
.whatsapp-float svg { width: 29px; height: 29px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 12px; }
  .text-action { display: none; }
  .hero-grid { gap: 40px; }
  .hero-media { min-height: 580px; }
  .hero-photo-main { height: 520px; }
  .hero-photo-top { height: 270px; }
  .hero-photo-bottom { height: 260px; }
  .availability-card { top: 270px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 350px; }
  .property-track { grid-auto-columns: minmax(300px, 41%); }
  .contact-shell { padding: 58px; gap: 54px; }
}

@media (max-width: 900px) {
  .section-pad { padding: 86px 0; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .desktop-nav, .nav-actions .button-dark { display: none; }
  .menu-toggle { display: block; }
  .hero { padding-top: 135px; }
  .hero-grid, .owner-grid, .profile-grid, .contact-shell { grid-template-columns: 1fr; }
  .hero-copy { max-width: 690px; }
  .hero-media { min-height: 660px; margin-top: 8px; }
  .hero-photo-main { width: 61%; height: 590px; }
  .hero-photo-top { width: 35%; height: 310px; }
  .hero-photo-bottom { width: 39%; height: 300px; }
  .availability-card { top: 307px; }
  .property-search { grid-template-columns: 1fr 1fr; padding: 12px; border-radius: 24px; }
  .search-field { border-right: 0; border-bottom: 1px solid var(--line); }
  .search-field:nth-child(odd) { border-right: 1px solid var(--line); }
  .search-field:nth-child(3), .search-field:nth-child(4) { border-bottom: 0; }
  .search-button { width: auto; height: 54px; grid-column: 1 / -1; display: flex; gap: 10px; border-radius: 15px; }
  .search-button span { display: inline; font-weight: 700; }
  .section-head { grid-template-columns: 1fr; gap: 22px; }
  .section-head p { max-width: 650px; }
  .property-track { grid-auto-columns: minmax(300px, 55%); }
  .owner-grid { gap: 55px; }
  .owner-visual { height: 620px; }
  .profile-grid { gap: 55px; }
  .profile-card { min-height: 520px; }
  .contact-shell { gap: 42px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-self: start; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 72px 0; }
  .site-header { padding: 10px 10px 0; }
  .nav-shell { min-height: 64px; padding: 8px 8px 8px 13px; border-radius: 18px; }
  .brand-mark { width: 39px; height: 39px; border-radius: 13px; }
  .brand-type strong { font-size: 13px; }
  .brand-type small { font-size: 7px; }
  .menu-toggle { width: 43px; height: 43px; }
  .mobile-menu { width: calc(100% - 20px); }
  .hero { padding-top: 120px; padding-bottom: 54px; }
  .eyebrow { margin-bottom: 18px; font-size: 10px; }
  h1 { font-size: clamp(44px, 13vw, 62px); }
  .hero-lead { margin-top: 21px; font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 27px; }
  .button { width: 100%; }
  .trust-row { grid-template-columns: 1fr 1fr; margin-top: 34px; }
  .trust-row div:last-child { grid-column: 1 / -1; }
  .hero-media { min-height: 520px; margin-top: 18px; }
  .hero-photo-main { left: 0; top: 25px; width: 69%; height: 470px; border-radius: 26px; }
  .hero-photo-top { right: 0; width: 28%; height: 224px; border-radius: 20px; }
  .hero-photo-bottom { right: 0; bottom: 15px; width: 35%; height: 222px; border-radius: 20px; }
  .availability-card { left: auto; right: 7%; top: 220px; min-width: 205px; padding: 13px 15px; }
  .property-search { width: calc(100% - 28px); grid-template-columns: 1fr; margin-top: 30px; }
  .search-field, .search-field:nth-child(odd), .search-field:nth-child(3), .search-field:nth-child(4) { border-right: 0; border-bottom: 1px solid var(--line); }
  .search-field-last { border-bottom: 0 !important; }
  .section-head h2, .owner-copy h2, .profile-copy h2 { font-size: 39px; }
  .filter-bar { overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-chip { white-space: nowrap; }
  .carousel-controls { display: none; }
  .property-track { grid-auto-columns: 87%; gap: 15px; }
  .card-image { height: 348px; }
  .owner-grid { gap: 40px; }
  .owner-visual { height: 520px; border-radius: 26px; }
  .visual-label { left: 14px; right: 14px; bottom: 14px; }
  .process-list li { grid-template-columns: 37px 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .profile-facts { grid-template-columns: 1fr; }
  .profile-card { min-height: 500px; padding: 22px; border-radius: 27px; }
  .profile-card h3 { font-size: 34px; }
  .profile-links { grid-template-columns: 1fr; }
  .profile-monogram { left: 20px; top: 20px; }
  .profile-stamp { right: 20px; top: 20px; }
  .contact-shell { width: calc(100% - 20px); padding: 38px 20px 20px; border-radius: 28px; }
  .contact-copy h2 { font-size: 42px; }
  .contact-form { padding: 20px; border-radius: 21px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-top > p { grid-column: auto; grid-row: auto; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .whatsapp-float { right: 14px; bottom: 14px; min-height: 54px; width: 54px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
