:root {
  color-scheme: light;
  --ink: #18202d;
  --muted: #657083;
  --paper: #fffdf9;
  --mist: #eef4f6;
  --line: #dbe3e7;
  --navy: #14213d;
  --green: #1f7a5a;
  --green-dark: #13563f;
  --sun: #f4b942;
  --pool: #1f9ec2;
  --clay: #bd634f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 33, 61, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.72), rgba(11, 18, 32, 0));
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
}

.top-nav a,
.site-footer a {
  border-bottom: 1px solid transparent;
}

.top-nav a:hover,
.site-footer a:hover {
  border-color: currentColor;
}

.header-cta,
.primary-cta,
.contact-cta,
.secondary-cta,
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 760;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta:hover,
.primary-cta:hover,
.contact-cta:hover,
.secondary-cta:hover,
.map-link:hover {
  transform: translateY(-1px);
}

.header-cta {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(20px, 6vw, 76px) 112px;
  color: var(--white);
}

.hero-media,
.hero-shade,
.hero-photo-link {
  position: absolute;
  inset: 0;
}

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: none;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0), rgba(255, 253, 249, 0.96) 34%);
  color: var(--white);
}

.consent-unset .consent-banner {
  display: block;
}

.consent-unset .sticky-contact {
  display: none;
}

.consent-panel {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  gap: 10px 18px;
  align-items: center;
  border: 1px solid rgba(20, 33, 61, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 70px rgba(20, 33, 61, 0.2);
  backdrop-filter: blur(18px);
}

.consent-panel .eyebrow {
  grid-column: 1;
  margin: 0;
  color: var(--green-dark);
}

.consent-panel h2 {
  grid-column: 1;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.consent-panel p {
  grid-column: 1;
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 0.94rem;
}

.consent-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.consent-actions .secondary-cta {
  color: var(--navy);
  border: 1px solid rgba(20, 33, 61, 0.18);
  background: var(--white);
}

.consent-privacy-link {
  grid-column: 3;
  grid-row: 1 / span 3;
  align-self: center;
  display: inline-flex;
  color: var(--muted);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(101, 112, 131, 0.38);
}

.hero-media {
  background-image: url("assets/hero-piscina.png");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 13, 24, 0.9) 0%, rgba(7, 13, 24, 0.72) 42%, rgba(7, 13, 24, 0.18) 82%),
    linear-gradient(180deg, rgba(7, 13, 24, 0.06) 58%, rgba(255, 253, 249, 0.98) 100%);
}

.hero-photo-link {
  z-index: 1;
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  width: 100%;
  max-width: 760px;
  font-size: clamp(2.9rem, 5.4vw, 6.25rem);
  line-height: 0.96;
  font-weight: 860;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.02;
  font-weight: 840;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.hero-badges span:first-child {
  border-color: rgba(244, 185, 66, 0.76);
  background: rgba(244, 185, 66, 0.2);
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-cta {
  background: var(--sun);
  color: #151a24;
  box-shadow: 0 18px 42px rgba(244, 185, 66, 0.3);
}

.hero .primary-cta {
  min-height: 56px;
  padding: 0 28px;
  font-size: 1.02rem;
}

.primary-cta:hover {
  background: #ffd166;
}

.primary-cta:not(.dark) {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 42px rgba(31, 122, 90, 0.32);
}

.primary-cta:not(.dark):hover {
  background: var(--green-dark);
}

.hero .primary-cta:not(.dark) {
  color: #151a24;
  background: var(--sun);
  box-shadow: 0 18px 42px rgba(244, 185, 66, 0.34);
}

.hero .primary-cta:not(.dark):hover {
  background: #ffd166;
}

.secondary-cta {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.contact-cta {
  min-height: 52px;
  border: 1px solid transparent;
  gap: 10px;
}

.contact-cta::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.contact-cta.whatsapp::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5.2 19.1 6.1 16A8.2 8.2 0 1 1 9 18.1z'/%3E%3Cpath d='M9.4 8.2c.3-.5.6-.5.9-.3l1 1c.2.3.2.6 0 .9l-.4.5c.7 1.3 1.7 2.3 3 3l.6-.4c.3-.2.6-.2.9.1l.9 1c.2.3.2.6-.2.9-.7.6-1.7.7-2.8.2-2.1-.8-4.2-2.9-5-5-.4-1-.2-1.9.1-2.4z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5.2 19.1 6.1 16A8.2 8.2 0 1 1 9 18.1z'/%3E%3Cpath d='M9.4 8.2c.3-.5.6-.5.9-.3l1 1c.2.3.2.6 0 .9l-.4.5c.7 1.3 1.7 2.3 3 3l.6-.4c.3-.2.6-.2.9.1l.9 1c.2.3.2.6-.2.9-.7.6-1.7.7-2.8.2-2.1-.8-4.2-2.9-5-5-.4-1-.2-1.9.1-2.4z'/%3E%3C/g%3E%3C/svg%3E");
}

.contact-cta.call::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M6.6 4.6 8.7 4c.6-.2 1.2.1 1.5.7l1 2.4c.2.5.1 1-.3 1.4l-1.1 1.1c.9 1.8 2.3 3.2 4.1 4.1l1.1-1.1c.4-.4.9-.5 1.4-.3l2.4 1c.6.3.9.9.7 1.5l-.6 2.1c-.2.7-.8 1.1-1.5 1.1C10.9 18 6 13.1 6 6.6c0-.7.4-1.3 1.1-1.5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M6.6 4.6 8.7 4c.6-.2 1.2.1 1.5.7l1 2.4c.2.5.1 1-.3 1.4l-1.1 1.1c.9 1.8 2.3 3.2 4.1 4.1l1.1-1.1c.4-.4.9-.5 1.4-.3l2.4 1c.6.3.9.9.7 1.5l-.6 2.1c-.2.7-.8 1.1-1.5 1.1C10.9 18 6 13.1 6 6.6c0-.7.4-1.3 1.1-1.5z'/%3E%3C/svg%3E");
}

.contact-cta.whatsapp {
  color: var(--white);
  background: rgba(18, 140, 126, 0.82);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 42px rgba(18, 140, 126, 0.18);
  backdrop-filter: blur(14px);
}

.contact-cta.call {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(20, 33, 61, 0.16);
  backdrop-filter: blur(14px);
}

.hero .contact-cta.call {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
}

.hero-note {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.quick-facts {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 40px));
  margin: -44px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-facts div,
.feature {
  background: var(--white);
}

.quick-facts div {
  min-height: 116px;
  padding: 22px;
}

.quick-facts span {
  display: block;
  color: var(--navy);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1;
  font-weight: 850;
}

.quick-facts strong {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.35;
}

.owner-sale-banner {
  width: min(1180px, calc(100% - 40px));
  margin: 22px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(31, 122, 90, 0.22);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: rgba(31, 122, 90, 0.08);
  color: var(--navy);
  box-shadow: 0 14px 38px rgba(20, 33, 61, 0.08);
}

.owner-sale-banner strong {
  color: var(--green-dark);
}

.owner-sale-banner span {
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) 0;
}

section[id] {
  scroll-margin-top: 88px;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.section-intro p,
.location-band p,
.city-copy p {
  max-width: 670px;
  margin: 18px 0 0;
  color: var(--muted);
}

.section-intro.wide {
  max-width: 820px;
  margin-bottom: 34px;
}

.intro-section .section-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: stretch;
}

.feature-photo {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe7e8;
  box-shadow: var(--shadow);
}

.feature-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 9, 17, 0.02) 35%, rgba(5, 9, 17, 0.72) 100%);
}

.feature-photo figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  line-height: 1.05;
  font-weight: 850;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-content: start;
  min-height: 131px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.feature span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(31, 122, 90, 0.1);
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.feature h3 {
  margin-bottom: 6px;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.areas-section {
  padding-top: 0;
}

.registry-area-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  margin-bottom: 28px;
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid rgba(31, 122, 90, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(31, 122, 90, 0.1), rgba(244, 185, 66, 0.1)),
    var(--white);
  box-shadow: var(--shadow);
}

.registry-area-copy p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
}

.registry-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.registry-area-grid div {
  min-height: 118px;
  padding: 22px;
  background: var(--white);
}

.registry-area-grid span {
  display: block;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
  font-weight: 860;
}

.registry-area-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.area-subhead {
  margin: clamp(42px, 6vw, 66px) 0 18px;
}

.area-subhead h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.floorplan-feature {
  display: grid;
  grid-template-columns: minmax(360px, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(24px, 4.5vw, 58px);
  align-items: center;
  margin: 0 0 24px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(20, 33, 61, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 247, 0.94)),
    var(--white);
  box-shadow: var(--shadow);
}

.floorplan-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 33, 61, 0.12);
  border-radius: 8px;
  background: #faf7f0;
}

.floorplan-image img {
  width: 100%;
  display: block;
}

.floorplan-image figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(20, 33, 61, 0.78);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 820;
  backdrop-filter: blur(12px);
}

.floorplan-copy {
  padding: clamp(6px, 2vw, 18px) clamp(4px, 1vw, 8px);
}

.floorplan-copy h3 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(1.6rem, 2.5vw, 2.55rem);
  line-height: 1.08;
}

.floorplan-copy p:not(.eyebrow) {
  color: var(--muted);
}

.floorplan-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}

.floorplan-points div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.floorplan-points dt {
  color: var(--green-dark);
  font-weight: 860;
}

.floorplan-points dd {
  margin: 0;
  color: var(--muted);
}

.area-source-note {
  max-width: 820px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  background: rgba(31, 122, 90, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
}

.area-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.area-summary div {
  min-height: 126px;
  padding: 24px;
  background: var(--white);
}

.area-summary span {
  display: block;
  color: var(--navy);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1;
  font-weight: 860;
}

.area-summary strong {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.area-details {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.area-details summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 74px;
  padding: 18px 56px 18px 20px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

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

.area-details summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(20, 33, 61, 0.14);
  border-radius: 50%;
  color: var(--green-dark);
  font-size: 1.2rem;
  font-weight: 760;
  transform: translateY(-50%);
}

.area-details[open] summary::after {
  content: "-";
}

.area-details summary span {
  font-size: 1rem;
  font-weight: 820;
}

.area-details summary strong {
  color: var(--green-dark);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.area-details[open] summary {
  border-bottom: 1px solid var(--line);
}

.area-details:not([open]) .area-table-wrap {
  display: none;
}

.area-table-wrap {
  overflow-x: auto;
  background: var(--white);
}

.area-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.area-table caption {
  padding: 18px 20px;
  color: var(--muted);
  text-align: left;
  font-weight: 760;
}

.area-table th,
.area-table td {
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.area-table th {
  color: var(--navy);
  background: var(--mist);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.area-table td:last-child {
  color: var(--navy);
  font-weight: 820;
  white-space: nowrap;
}

.technical-details {
  padding-top: clamp(54px, 7vw, 86px);
}

.upgrade-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: start;
  margin-bottom: clamp(54px, 7vw, 82px);
  border: 1px solid rgba(31, 122, 90, 0.28);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 42px);
  background:
    linear-gradient(135deg, rgba(31, 122, 90, 0.1), rgba(31, 158, 194, 0.12)),
    var(--white);
  box-shadow: var(--shadow);
}

.upgrade-panel p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
}

.upgrade-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.upgrade-panel li {
  position: relative;
  padding-left: 24px;
}

.upgrade-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.upgrade-panel strong {
  color: var(--navy);
}

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

.technical-card {
  min-height: 242px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.technical-icon {
  width: 58px;
  height: 58px;
  display: block;
  margin-bottom: 22px;
  padding: 10px;
  border-radius: 8px;
  color: var(--green-dark);
  background: linear-gradient(135deg, rgba(31, 122, 90, 0.12), rgba(244, 185, 66, 0.14));
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.technical-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.technical-card p {
  margin: 0;
  color: var(--muted);
}

.gallery-section {
  padding-top: 0;
}

.staging-note {
  max-width: 820px;
  padding: 14px 16px;
  border-left: 4px solid var(--sun);
  border-radius: 0 8px 8px 0;
  background: rgba(244, 185, 66, 0.12);
}

.staging-note strong {
  color: var(--navy);
}

.image-story {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 16px;
  padding-top: 0;
}

.image-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe7e8;
  box-shadow: var(--shadow);
}

.image-card.large {
  grid-column: span 3;
  grid-row: span 2;
}

.image-card:nth-child(2),
.image-card:nth-child(3),
.image-card:nth-child(4),
.image-card:nth-child(5) {
  grid-column: span 3;
}

.image-card:nth-child(n + 6) {
  grid-column: span 2;
}

.image-card:nth-child(10) {
  grid-column: span 3;
}

.image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 9, 17, 0) 48%, rgba(5, 9, 17, 0.68) 100%);
}

.image-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(320px, 1.28fr);
  align-items: center;
  gap: clamp(22px, 4vw, 42px);
  scroll-margin-top: 92px;
  margin-top: 22px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.video-copy h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.video-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 20px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 780;
}

.video-link:hover {
  background: var(--green-dark);
}

.video-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.video-frame iframe,
.video-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-frame iframe {
  border: 0;
}

.video-frame img {
  display: block;
  object-fit: cover;
}

.video-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 9, 17, 0.08), rgba(5, 9, 17, 0.52));
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  max-width: calc(100% - 36px);
  padding: 0 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 850;
  box-shadow: 0 18px 42px rgba(5, 9, 17, 0.28);
  transform: translate(-50%, -50%);
}

.video-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 10px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--green-dark);
}

.location-band {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 680px) minmax(320px, 460px);
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  padding-left: 20px;
  padding-right: 20px;
  background:
    linear-gradient(135deg, rgba(20, 33, 61, 0.95), rgba(31, 122, 90, 0.92)),
    var(--navy);
  color: var(--white);
}

.location-band .eyebrow {
  color: var(--sun);
}

.location-band p {
  color: rgba(255, 255, 255, 0.78);
}

.map-preview {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: #dfe9dd;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.map-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 55% 50%, rgba(31, 122, 90, 0.22) 0 8px, transparent 9px),
    linear-gradient(32deg, transparent 0 38%, rgba(255, 255, 255, 0.78) 39% 43%, transparent 44%),
    linear-gradient(148deg, transparent 0 30%, rgba(255, 255, 255, 0.7) 31% 35%, transparent 36%),
    linear-gradient(92deg, transparent 0 58%, rgba(255, 255, 255, 0.74) 59% 63%, transparent 64%),
    linear-gradient(0deg, rgba(31, 122, 90, 0.08), rgba(31, 158, 194, 0.12)),
    #dfe9dd;
}

.map-pin {
  position: absolute;
  left: 54%;
  top: 43%;
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: var(--green);
  transform: rotate(-45deg);
  box-shadow: 0 10px 24px rgba(19, 86, 63, 0.28);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--white);
}

.map-label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 820;
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.16);
}

.map-label.primary {
  left: 18px;
  top: 18px;
}

.map-label.secondary {
  right: 18px;
  top: 74px;
}

.map-preview iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 320px;
  display: block;
  border: 0;
  filter: saturate(0.92) contrast(1.03);
}

.map-preview .map-link {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 44px;
  background: rgba(20, 33, 61, 0.88);
  backdrop-filter: blur(12px);
}

.map-link {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.nearby-section {
  padding-bottom: clamp(72px, 9vw, 118px);
}

.nearby-details {
  border: 1px solid rgba(20, 33, 61, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.nearby-details summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 22px;
  align-items: center;
  min-height: 168px;
  padding: clamp(24px, 4vw, 42px) clamp(64px, 6vw, 86px) clamp(24px, 4vw, 42px) clamp(24px, 4vw, 42px);
  cursor: pointer;
  list-style: none;
}

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

.nearby-details summary::after {
  content: "+";
  position: absolute;
  right: clamp(22px, 3vw, 36px);
  top: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(20, 33, 61, 0.14);
  border-radius: 50%;
  color: var(--green-dark);
  font-size: 1.35rem;
  font-weight: 760;
  transform: translateY(-50%);
}

.nearby-details[open] summary {
  border-bottom: 1px solid var(--line);
}

.nearby-details[open] summary::after {
  content: "-";
}

.nearby-details summary .eyebrow,
.nearby-summary-title,
.nearby-summary-copy {
  grid-column: 1;
}

.nearby-summary-title {
  display: block;
  max-width: 880px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 860;
  line-height: 1.02;
}

.nearby-summary-copy {
  display: block;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.nearby-details summary strong {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: end;
  color: var(--green-dark);
  font-size: 0.86rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.nearby-details:not([open]) .nearby-grid {
  display: none;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}

.nearby-card {
  grid-column: span 3;
  min-height: 272px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
}

.nearby-card.highlight {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  border-color: rgba(31, 122, 90, 0.28);
  background:
    linear-gradient(135deg, rgba(31, 122, 90, 0.1), rgba(244, 185, 66, 0.12)),
    var(--white);
}

.nearby-image {
  height: 184px;
  margin: -26px -26px 22px;
  overflow: hidden;
  background: var(--mist);
}

.nearby-card.highlight .nearby-image {
  height: 100%;
  min-height: 340px;
  margin: 0;
  border-radius: 8px;
}

.nearby-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.services-card .nearby-image {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(31, 122, 90, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(31, 122, 90, 0.1), rgba(31, 158, 194, 0.12)),
    var(--mist);
}

.services-card .nearby-image img {
  width: min(132px, 46%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(19, 86, 63, 0.18));
}

.nearby-copy {
  align-self: center;
}

.nearby-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.nearby-card h3 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.nearby-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.nearby-card li {
  position: relative;
  padding-left: 20px;
}

.nearby-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sun);
}

.city-section {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  margin-top: 0;
  overflow: hidden;
  color: var(--white);
}

.city-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 16, 29, 0.86) 0%, rgba(8, 16, 29, 0.52) 48%, rgba(8, 16, 29, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 16, 29, 0.08) 0%, rgba(8, 16, 29, 0.82) 100%);
}

.city-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 130px) 0;
}

.city-copy .eyebrow {
  color: var(--sun);
}

.city-copy h2 {
  max-width: 760px;
}

.city-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

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

.visit-card {
  min-height: 152px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.visit-card {
  min-height: 232px;
}

.visit-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--green-dark);
  font-weight: 850;
}

.visit-card p {
  margin: 0;
  color: var(--muted);
}

.action-card {
  border-color: rgba(31, 122, 90, 0.35);
  background: #f5fbf8;
}

.action-card .primary-cta {
  margin-top: 22px;
  min-height: 44px;
  padding: 0 18px;
}

.primary-cta.dark {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 18px 42px rgba(20, 33, 61, 0.22);
}

.primary-cta.dark:hover {
  background: #0d172b;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.photo-credit {
  font-size: 0.82rem;
}

.sticky-contact {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 40;
  display: none;
  width: min(430px, calc(100% - 28px));
  transform: translateX(-50%);
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(20, 33, 61, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(20, 33, 61, 0.24);
  backdrop-filter: blur(18px);
}

.sticky-contact .contact-cta {
  flex: 1;
  min-height: 46px;
}

.privacy-page {
  background: var(--paper);
}

.privacy-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.privacy-header .header-cta {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.privacy-content {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.privacy-content h1 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
}

.privacy-content h2 {
  margin-top: 42px;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

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

.privacy-content .primary-cta {
  margin-top: 18px;
}

.backoffice-page {
  background: var(--paper);
}

.backoffice-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.backoffice-content h1 {
  max-width: 820px;
  color: var(--navy);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
}

.backoffice-lead {
  max-width: 760px;
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: clamp(28px, 5vw, 48px) 0;
}

.metric-card {
  min-height: 136px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(20, 33, 61, 0.08);
}

.metric-card span {
  display: block;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  font-weight: 860;
}

.metric-card strong {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.3;
}

.metric-card small {
  display: block;
  margin-top: 6px;
  color: rgba(92, 104, 115, 0.78);
  font-size: 0.78rem;
  line-height: 1.25;
}

.backoffice-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(460px, 1.3fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(20, 33, 61, 0.08);
}

.backoffice-panel h2 {
  margin-top: 0;
  color: var(--navy);
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
}

.backoffice-panel p {
  color: var(--muted);
}

.backoffice-panel code {
  color: var(--navy);
  font-size: 0.92em;
  overflow-wrap: anywhere;
}

.insight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.insight-list article,
.location-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(238, 244, 246, 0.42);
}

.insight-list strong,
.location-list strong {
  display: block;
  color: var(--navy);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.insight-list span {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 860;
  line-height: 1.15;
}

.insight-list small,
.location-list span,
.empty-state {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.35;
}

.hour-chart {
  display: grid;
  gap: 8px;
}

.hour-row {
  display: grid;
  grid-template-columns: 44px minmax(120px, 1fr) 128px;
  gap: 12px;
  align-items: center;
}

.hour-row > span {
  color: var(--navy);
  font-weight: 760;
  font-variant-numeric: tabular-nums;
}

.hour-row strong {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.bar-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--mist);
}

.bar-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.location-list {
  display: grid;
  gap: 10px;
}

.location-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.location-list b {
  color: var(--navy);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-variant-numeric: tabular-nums;
}

.technical-details {
  margin-top: 16px;
}

.technical-details summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 780;
}

.backoffice-table-wrap {
  margin-top: 12px;
  overflow-x: auto;
}

.backoffice-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.backoffice-tables {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.backoffice-tables.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.backoffice-tables table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.backoffice-tables caption,
.backoffice-table-wrap caption {
  padding: 12px 14px;
  background: var(--mist);
  color: var(--navy);
  text-align: left;
  font-weight: 820;
}

.backoffice-tables td,
.backoffice-table-wrap td {
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  overflow-wrap: anywhere;
}

.backoffice-tables td:last-child,
.backoffice-table-wrap td:last-child {
  color: var(--navy);
  font-weight: 820;
  text-align: right;
  white-space: nowrap;
}

.recent-events {
  display: grid;
  gap: 10px;
}

.recent-events article {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(238, 244, 246, 0.42);
}

.recent-events article > div {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.recent-events strong {
  color: var(--navy);
}

.event-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 3px 9px;
  background: rgba(43, 125, 99, 0.12);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 820;
  text-transform: uppercase;
  white-space: nowrap;
}

.event-tag.pageview {
  background: rgba(20, 33, 61, 0.08);
  color: var(--navy);
}

.recent-events span,
.recent-events small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    display: none;
  }

  .quick-facts,
  .split,
  .visit-section,
  .location-band,
  .registry-area-panel {
    grid-template-columns: 1fr;
  }

  .nearby-grid,
  .nearby-card.highlight,
  .upgrade-panel,
  .registry-area-grid,
  .backoffice-panel,
  .backoffice-tables,
  .backoffice-tables.compact,
  .insight-list {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    margin-top: -26px;
  }

  .feature-showcase,
  .floorplan-feature,
  .visit-grid,
  .area-summary,
  .technical-grid,
  .image-story,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .nearby-card,
  .nearby-card.highlight {
    grid-column: auto;
  }

  .image-story {
    grid-auto-rows: auto;
  }

  .feature-photo {
    min-height: 420px;
  }

  .image-card,
  .image-card.large {
    grid-column: auto;
    grid-row: auto;
    height: 280px;
  }

  .image-card.large {
    height: 360px;
  }

  .city-section {
    min-height: 560px;
  }

  .map-link {
    justify-self: start;
  }

  .map-preview .map-link {
    justify-self: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .brand {
    max-width: 150px;
    line-height: 1.05;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding: 96px 20px 84px;
  }

  .hero-media {
    background-image: url("assets/hero-mobile-piscina.jpg");
    background-position: center center;
  }

  .hero-content,
  .hero-copy,
  h1 {
    width: min(330px, 100%);
    max-width: min(330px, 100%);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 13, 24, 0.88), rgba(7, 13, 24, 0.42)),
      linear-gradient(180deg, rgba(7, 13, 24, 0.04) 54%, rgba(255, 253, 249, 0.95) 100%);
  }

  .hero-photo-link {
    display: block;
  }

  h1 {
    font-size: clamp(2.18rem, 9vw, 2.8rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges span {
    min-height: 34px;
    padding: 0 11px;
    font-size: 0.86rem;
  }

  .primary-cta,
  .contact-cta,
  .secondary-cta {
    width: 100%;
  }

  .hero-actions .contact-cta {
    display: none;
  }

  .sticky-contact {
    display: flex;
  }

  .site-footer {
    padding-bottom: 104px;
  }

  .consent-banner {
    padding: 10px;
  }

  .consent-panel {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .consent-panel .eyebrow,
  .consent-panel h2,
  .consent-panel p,
  .consent-actions,
  .consent-privacy-link {
    grid-column: 1;
    grid-row: auto;
  }

  .consent-actions {
    justify-content: stretch;
  }

  .consent-actions .primary-cta,
  .consent-actions .secondary-cta {
    flex: 1 1 100%;
    width: 100%;
  }

  .quick-facts {
    width: calc(100% - 28px);
  }

  .quick-facts div {
    min-height: 104px;
    padding: 18px;
  }

  .section {
    width: calc(100% - 28px);
    padding: 62px 0;
  }

  .gallery-section {
    padding-top: 0;
  }

  .image-story {
    padding-top: 0;
  }

  .video-feature {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .feature-photo {
    min-height: 320px;
  }

  .feature {
    min-height: 0;
    grid-template-columns: auto 1fr;
    row-gap: 0;
  }

  .floorplan-feature {
    padding: 12px;
  }

  .floorplan-copy {
    padding: 12px 4px 4px;
  }

  .floorplan-points div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .area-details summary {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 82px;
    padding-right: 54px;
  }

  .feature span {
    grid-row: span 2;
  }

  .image-card,
  .image-card.large {
    min-height: 0;
    height: 260px;
  }

  .image-card.large {
    height: 330px;
  }

  .location-band {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .nearby-details summary {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px 58px 24px 18px;
  }

  .nearby-summary-title {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .nearby-details summary strong {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 8px;
  }

  .nearby-grid {
    padding: 12px;
  }

  .map-preview,
  .map-preview iframe {
    min-height: 280px;
    height: 280px;
  }

  .city-copy {
    width: calc(100% - 36px);
    padding: 76px 0;
  }

  .site-footer {
    flex-direction: column;
    padding: 26px 18px;
  }
}
