@font-face {
  font-family: "Univia Pro";
  src: url("/assets/fonts/univia-pro-book.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Univia Pro";
  src: url("/assets/fonts/univia-pro-medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Univia Pro";
  src: url("/assets/fonts/univia-pro-bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Univia Pro";
  src: url("/assets/fonts/univia-pro-book-italic.woff") format("woff");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Univia Pro";
  src: url("/assets/fonts/univia-pro-bold-italic.woff") format("woff");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #113d64;
  --ink-deep: #071c2f;
  --ink-soft: #244f70;
  --blue: #076ab3;
  --blue-deep: #075b97;
  --aqua: #03a885;
  --aqua-bright: #2fd2b2;
  --green-deep: #015d48;
  --yellow: #feca05;
  --sky: #dff5f6;
  --mist: #f2f7fa;
  --white: #ffffff;
  --line: rgba(7, 28, 47, 0.14);
  --shadow: 0 24px 64px rgba(7, 28, 47, 0.14);
  --radius: 1.5rem;
  --shell: min(1180px, calc(100% - 3rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Calibri, "Univia Pro", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--ink);
  border-radius: .5rem;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 5.5rem;
  display: flex;
  align-items: center;
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 28, 47, .82), transparent);
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 rgba(7, 28, 47, .1);
  backdrop-filter: blur(14px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { position: relative; display: inline-flex; align-items: center; flex: 0 0 auto; width: 10.4rem; aspect-ratio: 1000 / 360; }
.brand img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 3px 12px rgba(0, 0, 0, .12)); transition: opacity .2s ease; }
.brand-logo-white { opacity: 1; }
.brand-logo-color { opacity: 0; }
.scrolled .brand-logo-white { opacity: 0; }
.scrolled .brand-logo-color { opacity: 1; }
.main-nav { display: flex; align-items: center; gap: 1.35rem; font-size: .86rem; font-weight: 650; }
.main-nav > a:not(.nav-cta) { position: relative; padding: .4rem 0; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--aqua-bright);
  transition: right .22s ease;
}
.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .72rem 1rem;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.scrolled .nav-cta { border-color: var(--line); background: var(--ink); color: var(--white); }
.nav-cta:hover { transform: translateY(-2px); background: var(--aqua); color: var(--ink-deep); border-color: var(--aqua); }
.nav-toggle { display: none; width: 2.8rem; height: 2.8rem; border: 0; background: transparent; padding: .65rem; }
.nav-toggle span { display: block; height: 2px; background: currentColor; margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  min-height: 51rem;
  padding: 9.8rem 0 3.5rem;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 169, 137, .19), transparent 30rem),
    linear-gradient(126deg, #061929 0%, #092a43 64%, #084d6e 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8rem -17rem 34%;
  height: 25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  transform: rotate(-8deg);
}
.hero-orbit { position: absolute; border: 1px solid rgba(47, 210, 178, .19); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 28rem; height: 28rem; right: -12rem; top: -10rem; }
.hero-orbit-two { width: 12rem; height: 12rem; right: 3rem; top: 2rem; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; gap: 5rem; align-items: center; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.3rem;
  color: var(--aqua-bright);
  font-size: .76rem;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow span { width: 2.25rem; height: 1px; background: currentColor; }
.eyebrow.dark { color: var(--blue-deep); }
.eyebrow.light { color: var(--aqua-bright); }
.hero h1,
.section h2 {
  margin: 0;
  font-family: "Univia Pro", Calibri, sans-serif;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.02;
}
.hero h1 { max-width: 13ch; font-size: clamp(3.3rem, 5.2vw, 5.5rem); }
.hero h1 em, .contact-panel h2 em { color: var(--aqua-bright); font-weight: 700; font-style: italic; }
.hero-lead { max-width: 37rem; margin: 2rem 0 0; color: rgba(255, 255, 255, .78); font-size: 1.12rem; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  min-height: 3.35rem;
  padding: .85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--aqua); color: var(--ink-deep); }
.button-primary:hover { background: var(--aqua-bright); color: var(--ink); }
.button-quiet { border-color: rgba(255, 255, 255, .28); color: var(--white); }
.button-quiet:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .5); }
.button-aqua { background: var(--aqua-bright); color: var(--ink); }
.button-aqua:hover { background: var(--white); }
.button-white { background: var(--white); color: var(--ink); }
.button-white:hover { background: var(--aqua-bright); }
.hero-proof { display: flex; gap: 1.6rem; margin: 2.6rem 0 0; }
.hero-proof div { min-width: 6rem; padding-right: 1.35rem; border-right: 1px solid rgba(255, 255, 255, .18); }
.hero-proof div:last-child { border: 0; }
.hero-proof dt { font-family: "Univia Pro", Calibri, sans-serif; font-size: 1.65rem; line-height: 1; color: var(--white); }
.hero-proof dd { margin: .5rem 0 0; color: rgba(255, 255, 255, .56); font-size: .73rem; line-height: 1.35; }
.hero-visual { position: relative; padding: 0 1.5rem 2.3rem 0; }
.hero-photo { position: relative; margin: 0; }
.hero-photo img { width: 100%; aspect-ratio: 1 / .82; object-fit: cover; border-radius: .3rem 7rem .3rem .3rem; box-shadow: 0 30px 80px rgba(0, 0, 0, .3); }
.hero-photo::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1.2rem -1.2rem 2rem 2rem;
  border: 1px solid rgba(47, 210, 178, .5);
  border-radius: .3rem 7.5rem .3rem .3rem;
}
.hero-photo figcaption { display: flex; justify-content: space-between; gap: 1rem; margin-top: .8rem; color: rgba(255, 255, 255, .57); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-stamp {
  position: absolute;
  top: 1.6rem;
  left: -2.7rem;
  width: 7.8rem;
  height: 7.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 50%;
  color: var(--ink);
  background: var(--aqua-bright);
  box-shadow: var(--shadow);
  transform: rotate(-7deg);
}
.stamp-mark { font-family: "Univia Pro", Calibri, sans-serif; font-size: 1.8rem; border-right: 1px solid rgba(7, 28, 47, .3); padding-right: .5rem; }
.hero-stamp span:last-child { font-size: .62rem; line-height: 1.25; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-note {
  position: absolute;
  right: -1rem;
  bottom: 0;
  max-width: 15rem;
  padding: 1.2rem 1.25rem;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}
.note-kicker { display: block; color: #648095; font-size: .7rem; letter-spacing: .04em; }
.hero-note strong { display: block; margin-top: .3rem; font-family: "Univia Pro", Calibri, sans-serif; font-size: 1.08rem; line-height: 1.25; }
.intent-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 3.2rem;
  padding: 1.05rem 1.15rem 1.05rem 1.5rem;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
  border-left: 4px solid var(--aqua);
}
.intent-panel > p { margin: 0; font-family: "Univia Pro", Calibri, sans-serif; font-size: 1.05rem; }
.intent-links { display: grid; grid-template-columns: repeat(4, 1fr); }
.intent-links a { display: flex; align-items: center; gap: .75rem; padding: .7rem 1rem; border-left: 1px solid var(--line); font-weight: 720; transition: color .2s ease, transform .2s ease; }
.intent-links a:hover { color: var(--aqua); transform: translateX(3px); }
.intent-links span { color: #8aa0af; font-size: .67rem; letter-spacing: .08em; }

.section { padding: 7.8rem 0; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 5rem; align-items: end; margin-bottom: 3.3rem; }
.section-heading h2 { max-width: 15ch; font-size: clamp(2.8rem, 4.3vw, 4.6rem); }
.section-heading > p { margin: 0 0 .2rem; color: #557084; font-size: 1.05rem; }
.section-services { background: var(--mist); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card {
  position: relative;
  min-height: 21rem;
  padding: 2.2rem;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { z-index: 2; transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card-accent { color: var(--white); background: var(--blue-deep); }
.service-card-accent p { color: rgba(255, 255, 255, .68) !important; }
.service-number { position: absolute; top: 1.25rem; right: 1.5rem; color: #8da2b1; font-size: .7rem; letter-spacing: .1em; }
.service-icon { width: 2.9rem; height: 2.9rem; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: var(--sky); }
.service-card-accent .service-icon { color: var(--ink); background: var(--aqua-bright); }
.service-icon svg { width: 1.45rem; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 3.5rem 0 .75rem; font-family: "Univia Pro", Calibri, sans-serif; font-size: 1.65rem; font-weight: 500; }
.service-card p { max-width: 34rem; margin: 0; color: #637c8d; }
.service-card a { position: absolute; left: 2.2rem; bottom: 2rem; font-size: .85rem; font-weight: 750; }
.service-card a span { margin-left: .4rem; color: var(--aqua); }

.section-properties { color: var(--white); background: var(--ink); }
.property-heading { align-items: end; }
.property-heading h2 { max-width: 18ch; }
.text-link { display: inline-flex; align-items: center; gap: .65rem; width: fit-content; padding-bottom: .25rem; border-bottom: 1px solid currentColor; font-size: .9rem; font-weight: 750; }
.light-link { justify-self: end; color: var(--white); }
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.property-card { color: var(--ink); background: var(--white); }
.property-image { position: relative; display: block; overflow: hidden; }
.property-image img { width: 100%; aspect-ratio: 1.25 / 1; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.property-image:hover img { transform: scale(1.035); }
.property-pill { position: absolute; top: 1rem; left: 1rem; max-width: calc(100% - 4.8rem); padding: .4rem .65rem; color: var(--ink); background: rgba(255, 255, 255, .92); font-size: .68rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.property-arrow { position: absolute; right: 1rem; bottom: 1rem; width: 2.65rem; height: 2.65rem; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--aqua); font-size: 1.15rem; }
.property-body { padding: 1.4rem 1.35rem 1.5rem; }
.property-location { margin: 0; color: var(--blue); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.property-card h3 { min-height: 3rem; margin: .65rem 0 1.15rem; font-family: "Univia Pro", Calibri, sans-serif; font-size: 1.35rem; line-height: 1.15; font-weight: 500; }
.property-facts { display: flex; flex-wrap: wrap; gap: .4rem .9rem; min-height: 3rem; padding: .75rem 0; color: #647b8b; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: .74rem; }
.property-facts span:not(:last-child)::after { content: "·"; margin-left: .9rem; color: #bac6cd; }
.property-price { display: flex; align-items: baseline; gap: .45rem; margin-top: 1rem; }
.property-price strong { font-size: 1.14rem; }
.property-price span { color: #8295a2; font-size: .62rem; letter-spacing: .1em; }
.property-disclaimer { margin: 1.2rem 0 0; color: rgba(255, 255, 255, .45); font-size: .72rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-map { background: var(--mist); }
.map-explorer { overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: 0 22px 60px rgba(17, 61, 100, .1); }
.map-toolbar { display: grid; grid-template-columns: minmax(15rem, .72fr) 1.55fr auto; gap: 1rem; align-items: center; padding: 1.1rem; }
.map-search-control { display: flex; align-items: center; gap: .7rem; min-height: 3rem; padding: 0 .9rem; border: 1px solid rgba(17, 61, 100, .2); background: #f8fbfc; transition: border-color .2s ease, box-shadow .2s ease; }
.map-search-control:focus-within { border-color: var(--aqua); box-shadow: 0 0 0 3px rgba(3, 168, 133, .13); }
.map-search-control svg { flex: 0 0 auto; width: 1.15rem; fill: none; stroke: var(--blue); stroke-width: 1.7; stroke-linecap: round; }
.map-search-control input { width: 100%; min-width: 0; padding: .4rem 0; color: var(--ink); background: transparent; border: 0; outline: 0; }
.map-search-control input::placeholder { color: #72899a; opacity: 1; }
.map-filters { display: flex; flex-wrap: wrap; gap: .45rem; }
.map-filter { min-height: 2.55rem; padding: .55rem .8rem; color: #4d687c; background: var(--white); border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: .75rem; font-weight: 700; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.map-filter:hover, .map-filter:focus-visible { border-color: var(--green-deep); color: var(--green-deep); }
.map-filter.is-active { color: var(--white); background: var(--ink); border-color: var(--ink); }
.map-count { margin: 0; color: #6a8192; font-size: .75rem; white-space: nowrap; }
.map-count strong { color: var(--blue); font-family: "Univia Pro", Calibri, sans-serif; font-size: 1.05rem; }
.map-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(18rem, .55fr); min-height: 35rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.property-map { position: relative; z-index: 1; height: clamp(25rem, 42vw, 35rem); min-height: 25rem; background: #dce8eb; }
.property-map .leaflet-container { width: 100%; height: 100%; min-height: 100%; }
.map-load-message { position: absolute; inset: 50% auto auto 50%; margin: 0; transform: translate(-50%, -50%); color: #526f82; font-weight: 700; }
.map-fallback { position: absolute; inset: 50% auto auto 50%; width: min(22rem, calc(100% - 2.5rem)); padding: 1.4rem; transform: translate(-50%, -50%); color: var(--ink); background: rgba(255,255,255,.92); border: 1px solid var(--line); box-shadow: 0 14px 30px rgba(17,61,100,.12); }
.map-fallback strong { display: block; font-family: "Univia Pro", Calibri, sans-serif; font-size: 1.1rem; font-weight: 500; }
.map-fallback p { margin: .45rem 0 .9rem; color: #60798a; font-size: .82rem; line-height: 1.5; }
.map-fallback a { color: var(--green-deep); font-size: .78rem; font-weight: 800; }
.map-results { max-height: 35rem; overflow-y: auto; background: #f8fbfc; border-left: 1px solid var(--line); }
.map-result-card { background: var(--white); border-bottom: 1px solid var(--line); transition: opacity .2s ease; }
.map-result-card[hidden] { display: none; }
.map-result-focus { display: grid; grid-template-columns: 2.35rem 1fr auto; gap: .7rem; align-items: start; width: 100%; padding: 1.35rem 1.2rem .85rem; color: var(--ink); text-align: left; background: transparent; border: 0; cursor: pointer; }
.map-result-focus:hover strong, .map-result-focus:focus-visible strong { color: var(--green-deep); }
.map-result-focus:focus-visible { outline: 3px solid rgba(3, 168, 133, .25); outline-offset: -3px; }
.map-result-index { display: grid; place-items: center; width: 2.2rem; height: 2.2rem; color: var(--white); background: var(--blue); border-radius: 50%; font-family: "Univia Pro", Calibri, sans-serif; font-size: .67rem; font-weight: 700; }
.map-result-focus small { display: block; margin-bottom: .35rem; color: var(--blue); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.map-result-focus strong { display: block; font-family: "Univia Pro", Calibri, sans-serif; font-size: 1rem; line-height: 1.25; font-weight: 500; transition: color .2s ease; }
.map-result-arrow { color: var(--aqua); font-size: 1.15rem; }
.map-result-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0 1.2rem 1.2rem 4.25rem; color: #647c8d; font-size: .75rem; }
.map-result-meta a { color: var(--ink); font-weight: 800; }
.map-result-meta a:hover { color: var(--green-deep); }
.map-result-card.is-selected { box-shadow: inset 4px 0 0 var(--aqua); }
.map-empty { margin: 1.5rem; padding: 1.2rem; color: #5c7486; background: var(--white); border: 1px dashed rgba(17, 61, 100, .25); }
.map-footer { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem 1.2rem; }
.map-footer p { margin: 0; color: #738897; font-size: .72rem; }
.map-footer .text-link { flex: 0 0 auto; font-size: .78rem; }
.leaflet-container { font-family: Calibri, "Univia Pro", "Segoe UI", Arial, sans-serif; }
.leaflet-control-attribution { font-size: .62rem !important; }
.leaflet-control-zoom a { color: var(--ink); }
.caribe-map-marker { background: transparent; border: 0; }
.caribe-map-pin { display: grid; place-items: center; width: 2.6rem; height: 2.6rem; color: var(--white); background: var(--green-deep); border: 3px solid var(--white); border-radius: 50% 50% 50% 8%; box-shadow: 0 8px 20px rgba(17, 61, 100, .3); transform: rotate(-45deg); font-family: "Univia Pro", Calibri, sans-serif; font-size: .68rem; font-weight: 700; }
.caribe-map-pin.is-area { background: var(--blue); border-style: dashed; }
.caribe-map-pin span { transform: rotate(45deg); }
.leaflet-popup-content-wrapper { color: var(--ink); border-radius: .8rem; box-shadow: 0 14px 32px rgba(17, 61, 100, .2); }
.leaflet-popup-content { min-width: 12.5rem; margin: 1rem 1.1rem; }
.map-popup small { display: block; color: var(--blue); font-size: .62rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.map-popup strong { display: block; margin: .35rem 0 .45rem; font-family: "Univia Pro", Calibri, sans-serif; font-size: 1rem; line-height: 1.2; font-weight: 500; }
.map-popup span { display: block; margin-bottom: .7rem; color: #647c8d; font-size: .78rem; }
.map-popup a { color: var(--green-deep); font-size: .75rem; font-weight: 800; }

/* Conversion landing pages */
.landing-page { background: var(--mist); }
.landing-header { position: sticky; z-index: 100; top: 0; min-height: 5.5rem; display: flex; align-items: center; color: var(--ink); background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.landing-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.landing-brand { display: block; width: 10.4rem; }
.landing-brand img { width: 100%; height: auto; }
.landing-back { font-size: .84rem; font-weight: 750; }
.landing-back span { margin-right: .35rem; color: var(--aqua); }
.landing-hero { position: relative; overflow: hidden; padding: 6.8rem 0 7rem; color: var(--white); background: linear-gradient(126deg, #061929 0%, #092a43 64%, #084d6e 100%); }
.landing-hero::after { content: ""; position: absolute; inset: auto -8rem -16rem 36%; height: 25rem; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; transform: rotate(-8deg); }
.landing-orbit { position: absolute; border: 1px solid rgba(47,210,178,.18); border-radius: 50%; pointer-events: none; }
.landing-orbit-one { width: 32rem; height: 32rem; right: -15rem; top: -16rem; }
.landing-orbit-two { width: 15rem; height: 15rem; right: 8rem; bottom: -8rem; }
.landing-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(22rem, .8fr); gap: 6rem; align-items: center; }
.landing-copy { max-width: 39rem; }
.landing-copy h1 { max-width: 12ch; margin: 0; font-family: "Univia Pro", Calibri, sans-serif; font-size: clamp(3.3rem, 5vw, 5.8rem); line-height: .97; font-weight: 400; letter-spacing: -.035em; }
.landing-lead { max-width: 34rem; margin: 1.8rem 0 2.4rem; color: rgba(255,255,255,.76); font-size: 1.12rem; line-height: 1.7; }
.landing-benefits { max-width: 35rem; border-top: 1px solid rgba(255,255,255,.2); }
.landing-benefits div { display: grid; grid-template-columns: 2.1rem 1fr; gap: .8rem; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.landing-benefits span { color: var(--aqua-bright); font-size: .68rem; font-weight: 800; letter-spacing: .08em; }
.landing-benefits p { margin: 0; color: rgba(255,255,255,.8); font-size: .9rem; }
.lead-card { min-width: 0; padding: 2rem; color: var(--ink); background: var(--white); border-bottom: .45rem solid var(--aqua); box-shadow: 0 24px 64px rgba(0,0,0,.24); }
.lead-card-heading h2 { max-width: 13ch; margin: 0; font-family: "Univia Pro", Calibri, sans-serif; font-size: clamp(2rem, 3.1vw, 3rem); line-height: 1.03; font-weight: 500; }
.lead-card-heading > p:last-child { margin: 1rem 0 0; color: #5f7686; font-size: .9rem; line-height: 1.6; }
.lead-form { margin-top: 1.5rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; }
.form-grid label { display: flex; min-width: 0; flex-direction: column; gap: .35rem; }
.form-grid label > span { color: var(--ink); font-size: .72rem; font-weight: 800; }
.form-full { grid-column: 1 / -1; }
.form-grid input, .form-grid select { width: 100%; min-width: 0; min-height: 3rem; padding: .7rem .75rem; color: var(--ink); background: #f8fbfc; border: 1px solid rgba(17,61,100,.2); border-radius: 0; outline: 0; }
.form-grid input:focus, .form-grid select:focus { border-color: var(--aqua); box-shadow: 0 0 0 3px rgba(3,168,133,.13); }
.form-grid input::placeholder { color: #8093a0; opacity: 1; }
.form-consent { display: flex; align-items: flex-start; gap: .6rem; margin: 1rem 0; color: #657c8c; font-size: .72rem; line-height: 1.45; }
.form-consent input { flex: 0 0 auto; width: 1rem; height: 1rem; margin-top: .1rem; accent-color: var(--aqua); }
.form-error { margin: -.35rem 0 .85rem; color: #9b2f27; font-size: .75rem; font-weight: 700; }
.form-submit { width: 100%; justify-content: space-between; }
.form-note { margin: .8rem 0 0; color: #8395a1; font-size: .68rem; line-height: 1.45; }
.lead-success[hidden], .form-error[hidden] { display: none; }
.success-mark { display: grid; place-items: center; width: 2.4rem; height: 2.4rem; color: var(--white); background: var(--aqua); border-radius: 50%; font-weight: 800; }
.lead-success h2 { max-width: 13ch; margin: 1.2rem 0 .7rem; font-family: "Univia Pro", Calibri, sans-serif; font-size: clamp(2rem, 3vw, 2.8rem); line-height: 1.05; font-weight: 500; }
.lead-success p { margin: 0; color: #5f7686; font-size: .92rem; line-height: 1.6; }
.success-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.success-actions .button { flex: 1 1 12rem; }
.landing-expectations { padding: 7rem 0; background: var(--white); }
.landing-expectations-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 6rem; align-items: start; }
.landing-expectations h2 { max-width: 14ch; margin: 0; font-family: "Univia Pro", Calibri, sans-serif; font-size: clamp(2.6rem, 4vw, 4.3rem); line-height: 1.02; font-weight: 400; }
.expectation-list { border-top: 1px solid var(--line); }
.expectation-list article { display: grid; grid-template-columns: 2.3rem 1fr; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.expectation-list article > span { color: var(--aqua); font-size: .7rem; font-weight: 800; letter-spacing: .08em; }
.expectation-list h3 { margin: 0; font-family: "Univia Pro", Calibri, sans-serif; font-size: 1.25rem; font-weight: 500; }
.expectation-list p { margin: .35rem 0 0; color: #637c8d; font-size: .92rem; }
.landing-footer { padding-top: 4.5rem; }
.landing-related { display: flex; flex-direction: column; gap: .35rem; margin-top: 2.2rem; padding: 1.1rem 1.2rem; color: var(--ink); background: var(--mist); border-left: 3px solid var(--aqua); }
.landing-related span { color: #637c8d; font-size: .78rem; }
.landing-related strong { font-family: "Univia Pro", Calibri, sans-serif; font-size: 1rem; font-weight: 500; }
.landing-related:hover strong { color: var(--green-deep); }

/* Blog and editorial pages */
.blog-page { background: var(--mist); }
.blog-header { position: sticky; z-index: 100; top: 0; min-height: 5.5rem; display: flex; align-items: center; color: var(--ink); background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.blog-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.blog-brand { display: block; width: 10.4rem; }
.blog-brand img { width: 100%; height: auto; }
.blog-nav { display: flex; align-items: center; gap: 1.5rem; font-size: .84rem; font-weight: 750; }
.blog-nav a:not(.blog-nav-cta):hover { color: var(--green-deep); }
.blog-nav-cta { display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1rem; color: var(--white); background: var(--ink); border: 1px solid var(--ink); border-radius: 999px; }
.blog-nav-cta:hover { background: var(--aqua); border-color: var(--aqua); color: var(--ink-deep); }
.blog-intro { padding: 6.5rem 0 5rem; background: var(--white); }
.blog-intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 6rem; align-items: end; }
.blog-intro h1 { max-width: 12ch; margin: 0; font-family: "Univia Pro", Calibri, sans-serif; font-size: clamp(3.1rem, 5vw, 5.8rem); line-height: .98; font-weight: 400; letter-spacing: -.035em; }
.blog-intro-grid > p { max-width: 30rem; margin: 0 0 .25rem; color: #607889; font-size: 1.08rem; line-height: 1.72; }
.blog-index { background: var(--white); }
.blog-list-heading { align-items: end; }
.blog-list-heading h2 { max-width: 14ch; }
.blog-grid, .blog-preview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.blog-card { min-width: 0; background: var(--mist); border-bottom: 3px solid var(--aqua); }
.blog-card-image { position: relative; display: block; overflow: hidden; aspect-ratio: 1.35 / 1; background: #dce8eb; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.blog-card-image:hover img { transform: scale(1.035); }
.blog-card-arrow { position: absolute; right: .9rem; bottom: .9rem; display: grid; place-items: center; width: 2.4rem; height: 2.4rem; color: var(--ink); background: var(--aqua-bright); border-radius: 50%; font-size: 1.1rem; }
.blog-card-body { min-width: 0; padding: 1.55rem 1.5rem 1.7rem; }
.blog-meta { display: flex; flex-wrap: wrap; gap: .35rem .8rem; margin: 0 0 .75rem; color: var(--blue); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.blog-meta span + span::before, .blog-meta time::before { content: "·"; margin-right: .8rem; color: #95a8b4; }
.blog-card h2, .blog-card h3 { margin: 0; font-family: "Univia Pro", Calibri, sans-serif; font-size: 1.45rem; line-height: 1.13; font-weight: 500; }
.blog-card h2 a:hover, .blog-card h3 a:hover { color: var(--green-deep); }
.blog-card-body > p:not(.blog-meta) { margin: .9rem 0 1.3rem; color: #607889; font-size: .9rem; line-height: 1.6; }
.blog-card-body .text-link { font-size: .78rem; font-weight: 800; }
.blog-preview-grid .blog-card-body { padding-bottom: 1.45rem; }
.blog-preview-grid .blog-card h3 { font-size: 1.28rem; }
.blog-related { padding: 4.5rem 0; color: var(--white); background: linear-gradient(120deg, #071c2f, #075b75); }
.blog-related-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.blog-related h2 { max-width: 18ch; margin: 0; font-family: "Univia Pro", Calibri, sans-serif; font-size: clamp(2rem, 3.5vw, 3.6rem); line-height: 1.02; font-weight: 400; }
.blog-related .button { flex: 0 0 auto; }
.blog-article-intro { padding: 5.8rem 0 4.6rem; color: var(--white); background: var(--ink); }
.blog-article-heading { max-width: 940px; }
.blog-article-heading .blog-meta { color: var(--aqua-bright); }
.blog-article-heading .blog-meta span + span::before, .blog-article-heading .blog-meta time::before { color: rgba(255,255,255,.45); }
.blog-article-heading h1 { max-width: 15ch; margin: 1rem 0 1.35rem; font-family: "Univia Pro", Calibri, sans-serif; font-size: clamp(3rem, 5.5vw, 6rem); line-height: .97; font-weight: 400; letter-spacing: -.035em; }
.blog-article-summary { max-width: 42rem; margin: 0; color: rgba(255,255,255,.74); font-size: 1.12rem; line-height: 1.7; }
.blog-article-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr); gap: 5.5rem; align-items: start; padding-top: 4.5rem; padding-bottom: 6.5rem; }
.blog-gallery { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, minmax(13rem, 1fr)); gap: .7rem; }
.blog-gallery figure { min-width: 0; min-height: 0; margin: 0; overflow: hidden; background: #dce8eb; }
.blog-gallery figure.is-featured { grid-row: 1 / 3; }
.blog-gallery figure img { width: 100%; height: 100%; min-height: 100%; object-fit: cover; }
.blog-gallery figcaption { padding: .65rem .8rem .75rem; color: #607889; background: var(--white); font-size: .7rem; line-height: 1.35; }
.blog-gallery figure img + figcaption { position: relative; margin-top: -3.1rem; color: var(--white); background: linear-gradient(transparent, rgba(7,28,47,.76)); }
.blog-content { min-width: 0; max-width: 38rem; }
.blog-content > p { margin: 0 0 1.35rem; color: #385368; font-size: 1.08rem; line-height: 1.85; }
.blog-article-cta { margin-top: 2.8rem; padding: 2rem; color: var(--white); background: var(--ink); border-bottom: .35rem solid var(--aqua); }
.blog-article-cta h2 { max-width: 14ch; margin: 0; font-family: "Univia Pro", Calibri, sans-serif; font-size: 2.15rem; line-height: 1.05; font-weight: 400; }
.blog-article-cta > p:not(.eyebrow) { margin: .9rem 0 1.4rem; color: rgba(255,255,255,.72); font-size: .9rem; line-height: 1.6; }
.blog-article-cta .button { width: 100%; justify-content: space-between; }
.blog-footer { margin-top: 0; }

.section-santa { position: relative; color: var(--white); background: linear-gradient(128deg, #113d64 0%, #075b97 56%, #047b7d 100%); overflow: hidden; }
.section-santa::before { content: ""; position: absolute; top: -18rem; left: 42%; width: 38rem; height: 38rem; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.santa-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 6rem; align-items: center; }
.santa-copy h2 { max-width: 16ch; font-size: clamp(2.8rem, 4.2vw, 4.5rem); }
.santa-lead { max-width: 40rem; margin: 1.7rem 0 2.1rem; color: rgba(255,255,255,.76); font-size: 1.08rem; line-height: 1.72; }
.investment-points { border-top: 1px solid rgba(255,255,255,.2); }
.investment-points article { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.investment-points article > span { padding-top: .15rem; color: var(--aqua-bright); font-size: .7rem; font-weight: 800; letter-spacing: .09em; }
.investment-points h3 { margin: 0; font-family: "Univia Pro", Calibri, sans-serif; font-size: 1.05rem; font-weight: 500; }
.investment-points p { margin: .35rem 0 0; color: rgba(255,255,255,.66); font-size: .9rem; line-height: 1.55; }
.santa-advice { margin: 1.6rem 0 1.5rem; padding: 1.1rem 1.2rem; color: var(--ink); background: var(--yellow); border-left: 4px solid var(--aqua-bright); }
.santa-advice strong { font-family: "Univia Pro", Calibri, sans-serif; font-weight: 700; }
.santa-advice p { margin: .25rem 0 0; font-size: .85rem; line-height: 1.5; }
.santa-visual { position: relative; min-height: 44rem; }
.santa-photo-main { position: absolute; inset: 0 1.6rem 7rem 0; margin: 0; }
.santa-photo-main img { width: 100%; height: 100%; object-fit: cover; border-radius: .2rem 6rem .2rem .2rem; box-shadow: 0 28px 70px rgba(0,0,0,.24); }
.santa-photo-main figcaption, .santa-photo-secondary figcaption { position: absolute; left: 1rem; bottom: 1rem; padding: .45rem .65rem; color: var(--white); background: rgba(7,28,47,.72); font-size: .64rem; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(8px); }
.santa-photo-secondary { position: absolute; right: -1.6rem; bottom: 0; width: 58%; height: 18rem; margin: 0; padding: .55rem; background: var(--white); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.santa-photo-secondary img { width: 100%; height: 100%; object-fit: cover; }
.santa-coordinate { position: absolute; top: 1.2rem; right: .35rem; display: flex; flex-direction: column; gap: .15rem; padding: .8rem .9rem; color: var(--white); background: var(--aqua); box-shadow: 0 12px 30px rgba(0,0,0,.2); font-size: .65rem; font-weight: 800; letter-spacing: .08em; }

.section-method { background: var(--white); }
.method-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7rem; align-items: start; }
.method-intro { position: sticky; top: 8rem; }
.method-intro h2 { max-width: 13ch; font-size: clamp(2.8rem, 4vw, 4.4rem); }
.method-intro > p:last-child { max-width: 32rem; margin: 1.8rem 0 0; color: #5a7284; font-size: 1.05rem; }
.method-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.method-steps li { display: grid; grid-template-columns: 4rem 1fr; gap: 1rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.method-steps > li > span { color: var(--aqua); font-size: .75rem; font-weight: 800; letter-spacing: .1em; }
.method-steps h3 { margin: 0; font-family: "Univia Pro", Calibri, sans-serif; font-size: 1.75rem; font-weight: 500; }
.method-steps p { margin: .45rem 0 0; color: #607889; }

.section-vacation { color: var(--white); background: linear-gradient(115deg, #064b7e 0%, #00669b 48%, #007c83 100%); }
.vacation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.vacation-art { position: relative; padding: 1.4rem 0 2.7rem 1.4rem; }
.vacation-image-wrap { position: relative; }
.vacation-image-wrap::before { content: ""; position: absolute; z-index: 0; inset: -1.4rem 1.4rem 1.4rem -1.4rem; border: 1px solid rgba(255,255,255,.35); }
.vacation-image-wrap img { position: relative; z-index: 1; width: 100%; aspect-ratio: 1 / .86; object-fit: cover; }
.vacation-metric { position: absolute; z-index: 2; right: -2rem; bottom: 0; display: flex; align-items: center; gap: 1rem; width: 15rem; padding: 1.15rem 1.25rem; color: var(--ink); background: var(--aqua-bright); }
.vacation-metric strong { font-family: "Univia Pro", Calibri, sans-serif; font-size: 2.1rem; }
.vacation-metric span { font-size: .72rem; line-height: 1.25; font-weight: 750; }
.vacation-copy h2 { max-width: 14ch; font-size: clamp(2.8rem, 4.2vw, 4.5rem); }
.vacation-copy > p { max-width: 34rem; color: rgba(255, 255, 255, .72); }
.check-list { margin: 1.8rem 0 2rem; padding: 0; list-style: none; }
.check-list li { position: relative; padding: .65rem 0 .65rem 1.8rem; border-bottom: 1px solid rgba(255,255,255,.15); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--aqua-bright); font-weight: 800; }

.section-about { background: var(--mist); }
.about-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 6rem; align-items: center; }
.about-mark { position: relative; min-height: 29rem; display: flex; align-items: center; justify-content: center; color: var(--white); background: var(--ink); overflow: hidden; }
.about-mark::before { content: ""; position: absolute; width: 25rem; height: 25rem; border: 1px solid rgba(47,210,178,.3); border-radius: 50%; }
.about-mark::after { content: ""; position: absolute; width: 14rem; height: 14rem; border: 1px solid rgba(47,210,178,.3); border-radius: 50%; }
.about-mark > span { position: relative; z-index: 1; font-family: "Univia Pro", Calibri, sans-serif; font-size: 10rem; line-height: 1; font-weight: 700; letter-spacing: -.08em; }
.about-mark small { position: relative; z-index: 1; margin-left: 1.1rem; color: var(--aqua-bright); font-size: .74rem; line-height: 1.3; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.about-copy h2 { max-width: 14ch; font-size: clamp(2.8rem, 4.2vw, 4.5rem); }
.about-lead { margin: 1.8rem 0 0; color: #385368; font-size: 1.14rem; line-height: 1.7; }
.about-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 1.5rem 0 2rem; color: #647b8b; }

.contact-section { padding-top: 0; background: var(--mist); }
.contact-panel { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: center; padding: 4rem; color: var(--white); background: var(--ink); border-bottom: .5rem solid var(--aqua); }
.contact-panel h2 { max-width: 17ch; font-size: clamp(2.6rem, 4vw, 4.2rem); }
.contact-actions { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.contact-phone { font-family: "Univia Pro", Calibri, sans-serif; font-size: 1.45rem; border-bottom: 1px solid rgba(255,255,255,.5); }

.site-footer { padding: 4.5rem 0 1.5rem; color: rgba(255,255,255,.72); background: #04131f; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr .7fr; gap: 3rem; }
.footer-grid > div { min-width: 0; }
.footer-brand img { width: 11rem; height: auto; }
.footer-brand p { max-width: 18rem; margin: 1.2rem 0 0; }
.footer-grid h2 { margin: .45rem 0 1rem; color: var(--white); font-family: inherit; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid address { font-style: normal; }
.footer-grid > div:not(:first-child) a { display: block; margin: .35rem 0; }
.footer-grid a, .footer-grid address, .footer-grid p, .footer-bottom p { max-width: 100%; overflow-wrap: anywhere; word-break: normal; }
.footer-grid a:hover { color: var(--aqua-bright); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .4rem 2rem; margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .72rem; }
.footer-bottom p { margin: 0; }

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 1.2rem;
  bottom: max(1.2rem, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: .6rem;
  min-height: 3rem;
  padding: .7rem 1rem;
  color: var(--ink);
  background: var(--aqua-bright);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(7,28,47,.24);
  font-size: .8rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(7,28,47,.3); }
.whatsapp-float svg { width: 1.35rem; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.visible { opacity: 1; transform: none; }

/* Property detail pages */
.detail-page { background: var(--mist); }
.detail-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  min-height: 5.5rem;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.detail-header-inner { display: grid; grid-template-columns: 11rem 1fr auto; gap: 2rem; align-items: center; }
.detail-brand { display: block; width: 10.4rem; }
.detail-brand img { width: 100%; height: auto; }
.detail-back { justify-self: start; font-size: .88rem; font-weight: 700; }
.detail-back span { margin-right: .35rem; color: var(--aqua); }
.detail-intro { padding: 5rem 0 2.2rem; color: var(--white); background: var(--ink); }
.detail-intro-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(17rem, .65fr); gap: 4rem; align-items: end; }
.detail-intro .eyebrow { color: rgba(255,255,255,.74); }
.detail-location { margin: 1.5rem 0 .5rem; color: var(--aqua-bright); font-size: .85rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.detail-intro h1 { max-width: 18ch; margin: 0; font-size: clamp(3rem, 5vw, 5.3rem); line-height: .98; }
.detail-price-card { min-width: 0; padding: 1.7rem; color: var(--ink); background: var(--white); border-bottom: .35rem solid var(--aqua); box-shadow: var(--shadow); }
.detail-price-card small, .detail-price-card span { display: block; color: #5e7585; }
.detail-price-card small { font-size: .75rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.detail-price-card strong { display: block; margin: .5rem 0 .2rem; font-family: "Univia Pro", Calibri, sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.1; overflow-wrap: anywhere; }
.detail-price-card span { font-size: .72rem; }
.detail-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(2, 14rem); gap: .75rem; margin-top: 2rem; padding: 0; overflow: hidden; }
.detail-gallery.is-compact { grid-template-columns: 2fr 1fr; }
.detail-gallery-item { min-width: 0; min-height: 0; margin: 0; overflow: hidden; background: #dbe6ec; }
.detail-gallery-item:first-child { grid-row: 1 / 3; }
.detail-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.detail-gallery-item:hover img { transform: scale(1.025); }
.detail-gallery-more { margin-top: 1rem; }
.detail-gallery-more summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; color: var(--ink); background: var(--white); border: 1px solid var(--line); cursor: pointer; font-weight: 700; list-style: none; }
.detail-gallery-more summary::-webkit-details-marker { display: none; }
.detail-gallery-more summary::after { content: "+"; display: grid; place-items: center; width: 1.8rem; height: 1.8rem; flex: 0 0 auto; color: var(--white); background: var(--aqua); border-radius: 50%; font-size: 1.2rem; line-height: 1; }
.detail-gallery-more[open] summary::after { content: "−"; }
.detail-gallery-more summary:hover { border-color: var(--aqua); }
.detail-gallery-more-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .75rem; margin-top: .75rem; }
.detail-gallery-more-item { aspect-ratio: 4 / 3; min-width: 0; margin: 0; overflow: hidden; background: #dbe6ec; }
.detail-gallery-more-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.detail-gallery-more-item:hover img { transform: scale(1.025); }
.detail-share { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 2.5rem; align-items: center; margin-top: 1rem; padding: 1.7rem 2rem; color: var(--ink); background: var(--white); border: 1px solid var(--line); }
.detail-share-copy, .detail-share-actions { min-width: 0; }
.detail-share-copy .eyebrow { margin-bottom: .8rem; }
.detail-share-copy h2 { max-width: 18ch; margin: 0; font-family: "Univia Pro", Calibri, sans-serif; font-size: clamp(1.65rem, 2.5vw, 2.5rem); font-weight: 400; line-height: 1.05; letter-spacing: -.025em; }
.detail-share-copy > p:last-child { max-width: 34rem; margin: .8rem 0 0; color: #5b7282; font-size: .9rem; line-height: 1.5; }
.detail-share-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .55rem; }
.share-action { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; min-height: 2.75rem; padding: .68rem .9rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: var(--mist); font-size: .78rem; font-weight: 750; line-height: 1.2; text-align: center; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.share-action:hover, .share-action:focus-visible { transform: translateY(-2px); border-color: var(--aqua); background: var(--sky); }
.share-action-primary { border-color: var(--aqua); background: var(--aqua); color: var(--ink-deep); }
.share-action-primary:hover, .share-action-primary:focus-visible { border-color: var(--aqua-bright); background: var(--aqua-bright); color: var(--ink); }
.detail-share-note { grid-column: 2; margin: .65rem 0 0; color: #6a7f8e; font-size: .72rem; line-height: 1.4; text-align: right; }
.detail-content { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(18rem, .65fr); gap: 4rem; align-items: start; padding-top: 4rem; padding-bottom: 7rem; }
.detail-main, .detail-sidebar { min-width: 0; }
.detail-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 4rem; background: var(--white); border: 1px solid var(--line); }
.detail-facts div { min-width: 0; padding: 1.35rem; border-right: 1px solid var(--line); }
.detail-facts div:last-child { border-right: 0; }
.detail-facts strong, .detail-facts span { display: block; }
.detail-facts strong { font-family: "Univia Pro", Calibri, sans-serif; font-size: 1.25rem; line-height: 1.2; overflow-wrap: anywhere; }
.detail-facts span { margin-top: .3rem; color: #6a7f8e; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.detail-description, .detail-feature-group, .detail-map-section { padding: 2.6rem; background: var(--white); border-top: 1px solid var(--line); }
.detail-description h2, .detail-feature-group h2, .detail-map-section h2, .detail-contact-card h2 { margin: .8rem 0 1.5rem; font-size: clamp(2rem, 3vw, 3rem); line-height: 1.03; }
.detail-prose { color: #385368; font-size: 1.05rem; line-height: 1.8; white-space: pre-line; }
.detail-feature-group { margin-top: 1rem; }
.detail-feature-group h2 { font-size: 1.7rem; }
.detail-feature-group ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem 2rem; margin: 0; padding: 0; list-style: none; }
.detail-feature-group li { position: relative; min-width: 0; padding: .7rem 0 .7rem 1.5rem; color: #385368; border-bottom: 1px solid var(--line); overflow-wrap: anywhere; }
.detail-feature-group li::before { content: "✓"; position: absolute; left: 0; color: var(--aqua); font-weight: 800; }
.detail-map-section { margin-top: 1rem; }
.detail-map-section > div:first-child { margin-bottom: 1.5rem; }
.detail-map-section p:last-child { max-width: 52rem; color: #526c7e; }
.detail-map { width: 100%; min-height: 25rem; background: #dbe6ec; }
.detail-sidebar { position: sticky; top: 7.5rem; display: grid; gap: 1rem; }
.detail-summary-card, .detail-contact-card { min-width: 0; padding: 2rem; background: var(--white); }
.detail-summary-card dl { margin: 1.5rem 0 0; }
.detail-summary-card dl div { display: grid; grid-template-columns: 1fr 1.1fr; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.detail-summary-card dt { color: #6a7f8e; }
.detail-summary-card dd { min-width: 0; margin: 0; text-align: right; font-weight: 700; overflow-wrap: anywhere; }
.detail-contact-card { color: var(--white); background: var(--ink); border-bottom: .4rem solid var(--aqua); }
.detail-contact-card > p { margin: 0; color: var(--aqua-bright); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.detail-contact-card h2 { margin-bottom: 1.8rem; font-size: 2.25rem; }
.detail-contact-card .button { width: 100%; justify-content: space-between; white-space: normal; }
.detail-contact-card > a:last-child { display: inline-block; margin-top: 1.3rem; border-bottom: 1px solid rgba(255,255,255,.45); }
.detail-footer { margin-top: 0; }
.detail-state { width: min(42rem, calc(100% - 2rem)); margin: 10vh auto; padding: 3rem; background: var(--white); box-shadow: var(--shadow); }
.detail-state > img { width: 12rem; margin-bottom: 3rem; }
.detail-state h1 { margin: 1rem 0; font-size: clamp(2.6rem, 7vw, 4.5rem); line-height: 1; }
.detail-state-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

@media (max-width: 1020px) {
  :root { --shell: min(100% - 2.2rem, 860px); }
  .nav-toggle { display: block; z-index: 2; color: inherit; }
  .main-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    color: var(--white);
    background: rgba(4, 19, 31, .98);
    font-family: "Univia Pro", Calibri, sans-serif;
    font-size: 1.8rem;
    transform: translateX(100%);
    transition: transform .28s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav .nav-cta { margin-top: 1rem; font-family: Calibri, "Univia Pro", "Segoe UI", Arial, sans-serif; font-size: .9rem; border-color: rgba(255,255,255,.4); background: var(--aqua); }
  .nav-toggle[aria-expanded="true"] { color: var(--white); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 8rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 4rem; }
  .hero h1 { max-width: 15ch; }
  .hero-visual { max-width: 42rem; margin-left: auto; }
  .intent-panel { grid-template-columns: 1fr; gap: .6rem; }
  .intent-links a:first-child { border-left: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-heading > p { max-width: 38rem; }
  .light-link { justify-self: start; }
  .property-grid { grid-template-columns: 1fr 1fr; }
  .property-card:last-child { grid-column: 1 / -1; max-width: calc(50% - .6rem); }
  .map-toolbar { grid-template-columns: 1fr; }
  .map-count { justify-self: start; }
  .map-layout { grid-template-columns: 1fr; }
  .property-map { height: 30rem; min-height: 30rem; }
  .map-results { display: grid; grid-template-columns: repeat(3, 1fr); max-height: none; border-top: 1px solid var(--line); border-left: 0; }
  .map-result-card { border-right: 1px solid var(--line); }
  .map-result-focus { grid-template-columns: 2.35rem 1fr; }
  .map-result-arrow { display: none; }
  .map-result-meta { align-items: flex-start; flex-direction: column; padding-left: 4.25rem; }
  .map-empty { grid-column: 1 / -1; }
  .santa-grid { grid-template-columns: 1fr; gap: 4rem; }
  .santa-copy { max-width: 48rem; }
  .santa-visual { min-height: 40rem; }
  .method-grid, .vacation-grid, .about-grid { gap: 3.5rem; }
  .about-grid { grid-template-columns: .85fr 1.15fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1.2fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .detail-intro-grid { gap: 2rem; }
  .detail-gallery { grid-template-rows: repeat(2, 11rem); }
  .detail-share { grid-template-columns: 1fr; gap: 1.4rem; }
  .detail-share-actions { justify-content: flex-start; }
  .detail-share-note { grid-column: auto; margin-top: 0; text-align: left; }
  .detail-content { grid-template-columns: minmax(0, 1fr) 19rem; gap: 2rem; }
  .landing-hero-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .landing-copy { max-width: 44rem; }
  .lead-card { max-width: 40rem; }
  .landing-expectations-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .blog-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .blog-intro-grid > p { max-width: 42rem; }
  .blog-article-layout { grid-template-columns: 1fr; gap: 3rem; }
  .blog-content { max-width: 48rem; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 2rem); }
  .site-header { height: 4.8rem; }
  .brand { width: 8.4rem; }
  .hero { min-height: 0; padding: 7.4rem 0 2rem; }
  .hero h1 { font-size: clamp(3rem, 13vw, 4.6rem); }
  .hero-lead { font-size: 1rem; }
  .hero-proof { gap: .8rem; }
  .hero-proof div { min-width: 0; flex: 1; padding-right: .7rem; }
  .hero-proof dt { font-size: 1.4rem; }
  .hero-proof dd { font-size: .66rem; }
  .hero-visual { padding-right: .5rem; }
  .hero-photo img { aspect-ratio: 1 / .9; border-radius: .2rem 4.2rem .2rem .2rem; }
  .hero-photo::before { inset: -.7rem -.7rem 1rem 1rem; border-radius: .2rem 4.6rem .2rem .2rem; }
  .hero-photo figcaption span:last-child { display: none; }
  .hero-stamp { top: -.5rem; left: -.6rem; width: 5.6rem; height: 5.6rem; }
  .stamp-mark { font-size: 1.35rem; }
  .hero-stamp span:last-child { font-size: .52rem; }
  .hero-note { right: -.2rem; max-width: 12rem; padding: .9rem; }
  .intent-panel { margin-top: 2.4rem; padding: 1.1rem; }
  .intent-links { grid-template-columns: 1fr 1fr; }
  .intent-links a { border-top: 1px solid var(--line); border-left: 0; padding: .8rem .4rem; }
  .intent-links a:nth-child(even) { border-left: 1px solid var(--line); padding-left: 1rem; }
  .section { padding: 5.5rem 0; }
  .section-heading { margin-bottom: 2.4rem; }
  .section-heading h2, .method-intro h2, .vacation-copy h2, .about-copy h2, .santa-copy h2 { font-size: clamp(2.65rem, 12vw, 3.8rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 20rem; padding: 1.7rem; }
  .service-card a { left: 1.7rem; }
  .property-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .property-card:last-child { grid-column: auto; max-width: none; }
  .property-image img { aspect-ratio: 1.38 / 1; }
  .map-toolbar { padding: .85rem; }
  .map-filters { flex-wrap: nowrap; padding-bottom: .2rem; overflow-x: auto; scrollbar-width: thin; }
  .map-filter { flex: 0 0 auto; }
  .property-map { height: 25rem; min-height: 25rem; }
  .map-results { grid-template-columns: 1fr; }
  .map-result-card { border-right: 0; }
  .map-result-focus { grid-template-columns: 2.35rem 1fr auto; }
  .map-result-arrow { display: inline; }
  .map-result-meta { align-items: center; flex-direction: row; }
  .map-footer { align-items: flex-start; flex-direction: column; gap: .8rem; }
  .santa-grid { gap: 3rem; }
  .santa-lead { font-size: 1rem; }
  .santa-visual { min-height: 31rem; }
  .santa-photo-main { inset: 0 0 5rem 0; }
  .santa-photo-main img { border-radius: .2rem 4rem .2rem .2rem; }
  .santa-photo-secondary { right: 0; width: 68%; height: 14rem; }
  .santa-coordinate { top: .8rem; right: -.2rem; }
  .method-grid, .vacation-grid, .about-grid, .contact-panel { grid-template-columns: 1fr; }
  .method-grid { gap: 3rem; }
  .method-intro { position: static; }
  .vacation-grid { gap: 4rem; }
  .vacation-art { padding-left: .7rem; }
  .vacation-image-wrap::before { inset: -.7rem .7rem .7rem -.7rem; }
  .vacation-metric { right: -.2rem; }
  .about-mark { min-height: 22rem; }
  .about-mark > span { font-size: 7.5rem; }
  .about-columns { grid-template-columns: 1fr; gap: .4rem; }
  .contact-panel { width: 100%; padding: 3rem 1.5rem; }
  .contact-panel > *, .contact-actions { min-width: 0; }
  .contact-panel h2 { font-size: clamp(2.35rem, 11vw, 3.5rem); line-height: 1.02; overflow-wrap: anywhere; }
  .contact-actions, .contact-actions .button { width: 100%; }
  .contact-actions .button { justify-content: space-between; white-space: normal; }
  .contact-phone { max-width: 100%; font-size: 1.25rem; overflow-wrap: anywhere; }
  .contact-section { padding-bottom: 0; }
  .site-footer { padding-bottom: calc(5.5rem + env(safe-area-inset-bottom)); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.3rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: .4rem; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 3.2rem; height: 3.2rem; justify-content: center; padding: 0; }
  .detail-header { min-height: 4.8rem; }
  .detail-header-inner { grid-template-columns: 8.4rem 1fr; gap: 1rem; }
  .detail-brand { width: 8.4rem; }
  .detail-back { justify-self: end; font-size: .78rem; }
  .detail-header-cta { display: none; }
  .landing-header { min-height: 4.8rem; }
  .landing-brand { width: 8.4rem; }
  .landing-back { font-size: .76rem; }
  .landing-hero { padding: 4.5rem 0 5rem; }
  .landing-copy h1 { font-size: clamp(3rem, 13vw, 4.8rem); }
  .landing-lead { font-size: 1rem; }
  .lead-card { padding: 1.35rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .success-actions { flex-direction: column; }
  .success-actions .button { width: 100%; }
  .landing-expectations { padding: 5.5rem 0; }
  .landing-expectations-grid { gap: 2.6rem; }
  .blog-header { min-height: 4.8rem; }
  .blog-brand { width: 8.4rem; }
  .blog-nav { gap: .9rem; font-size: .75rem; }
  .blog-nav a:nth-child(2) { display: none; }
  .blog-nav-cta { padding: .6rem .75rem; }
  .blog-intro { padding: 4.5rem 0 3.5rem; }
  .blog-intro h1 { font-size: clamp(3rem, 13vw, 4.8rem); }
  .blog-grid, .blog-preview-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .blog-card-image { aspect-ratio: 1.42 / 1; }
  .blog-related { padding: 3.7rem 0; }
  .blog-related-inner { align-items: flex-start; flex-direction: column; gap: 1.5rem; }
  .blog-related .button { width: 100%; justify-content: space-between; }
  .blog-article-intro { padding: 4.4rem 0 3.6rem; }
  .blog-article-heading h1 { font-size: clamp(2.8rem, 12vw, 4.8rem); }
  .blog-article-summary { font-size: 1rem; }
  .blog-article-layout { padding-top: 2.5rem; padding-bottom: 5rem; }
  .blog-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 15rem 8rem; gap: .5rem; }
  .blog-gallery figure.is-featured { grid-column: 1 / -1; grid-row: auto; }
  .blog-gallery figcaption { font-size: .64rem; }
  .blog-content > p { font-size: 1rem; line-height: 1.75; }
  .detail-intro { padding: 3.5rem 0 2rem; }
  .detail-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .detail-intro h1 { font-size: clamp(2.75rem, 12vw, 4rem); overflow-wrap: anywhere; }
  .detail-price-card { width: 100%; }
  .detail-gallery, .detail-gallery.is-compact { grid-template-columns: 1fr 1fr; grid-template-rows: 17rem 8.5rem 8.5rem; gap: .5rem; margin-top: 1rem; }
  .detail-gallery-item:first-child { grid-column: 1 / -1; grid-row: auto; }
  .detail-gallery-more-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem; }
  .detail-share { padding: 1.4rem 1.5rem; }
  .detail-share-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem; }
  .share-action { min-width: 0; padding-inline: .6rem; }
  .share-action-primary { grid-column: 1 / -1; }
  .detail-content { grid-template-columns: 1fr; gap: 2rem; padding-top: 2rem; padding-bottom: 5rem; }
  .detail-sidebar { position: static; grid-row: auto; }
  .detail-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 2rem; }
  .detail-facts div { border-bottom: 1px solid var(--line); }
  .detail-facts div:nth-child(even) { border-right: 0; }
  .detail-description, .detail-feature-group, .detail-map-section { padding: 1.5rem; }
  .detail-feature-group ul { grid-template-columns: 1fr; gap: .35rem; }
  .detail-map { min-height: 21rem; }
  .detail-state { margin: 4vh auto; padding: 2rem 1.5rem; }
}

@media (max-width: 440px) {
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof dd { max-width: 7rem; }
  .map-result-meta { align-items: flex-start; flex-direction: column; }
  .santa-photo-secondary { width: 78%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { margin-top: 2.3rem; }
  .detail-back { max-width: 8rem; text-align: right; line-height: 1.2; }
  .detail-gallery, .detail-gallery.is-compact { grid-template-rows: 14rem 7.5rem 7.5rem; }
  .detail-summary-card, .detail-contact-card { padding: 1.5rem; }
  .detail-summary-card dl div { grid-template-columns: minmax(0, 1fr); gap: .1rem; }
  .detail-summary-card dd { text-align: left; }
}

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