:root {
  --charcoal: #17221f;
  --slate: #304f55;
  --palm: #6f7d54;
  --teak: #b0845a;
  --limestone: #f3f0e7;
  --white: #ffffff;
  --ink: #102325;
  --muted: #5f6a63;
  --line: rgba(23, 34, 31, 0.14);
  --heading-font: "Clash Display", "Segoe UI", sans-serif;
  --body-font: "Cabinet Grotesk", "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/ClashDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/ClashDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/ClashDisplay-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/ClashDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("assets/fonts/CabinetGrotesk-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("assets/fonts/CabinetGrotesk-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("assets/fonts/CabinetGrotesk-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("assets/fonts/CabinetGrotesk-Extrabold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("assets/fonts/CabinetGrotesk-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--limestone);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

html[lang="th"] body,
html[lang="zh"] body,
html[lang="ar"] body {
  line-height: 1.65;
}

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

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

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

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

[hidden] {
  display: none !important;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.brand-row {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) auto minmax(110px, 1fr);
  align-items: center;
  padding: 10px 24px 4px;
}

.for-sale-badge {
  grid-column: 1;
  justify-self: start;
  width: clamp(82px, 8vw, 128px);
  margin-left: 2px;
  transform: rotate(-4deg);
  transform-origin: 50% 12%;
  transition:
    transform 160ms ease,
    filter 160ms ease;
}

.for-sale-badge:hover,
.for-sale-badge:focus-visible {
  filter: drop-shadow(0 10px 18px rgba(23, 34, 31, 0.16));
  outline: none;
  transform: rotate(-2deg) translateY(-1px);
}

.for-sale-badge img {
  width: 100%;
  height: auto;
}

.brand {
  grid-column: 2;
  width: min(280px, 64vw);
}

.mobile-nav-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible {
  border-color: rgba(111, 125, 84, 0.45);
  box-shadow: 0 12px 24px rgba(23, 34, 31, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.mobile-nav-toggle-box {
  display: grid;
  gap: 5px;
  width: 18px;
  margin: 0 auto;
}

.mobile-nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.site-header[data-mobile-nav-open="true"] .mobile-nav-toggle {
  border-color: rgba(23, 34, 31, 0.82);
  color: var(--white);
  background: var(--charcoal);
}

.site-header[data-mobile-nav-open="true"] .mobile-nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header[data-mobile-nav-open="true"] .mobile-nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header[data-mobile-nav-open="true"] .mobile-nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 24px;
  overflow-x: auto;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  scrollbar-width: none;
}

.primary-nav::-webkit-scrollbar {
  display: none;
}

.primary-nav a {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  overflow: hidden;
  transition:
    color 700ms ease,
    transform 700ms ease;
}

.primary-nav a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--palm);
  box-shadow: inset 0 0 0 1px rgba(111, 125, 84, 0.38);
  content: "";
  opacity: 0;
  transform: scaleX(0.08) scaleY(0.86);
  transform-origin: center;
  transition:
    opacity 760ms ease,
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 760ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--white);
  outline: none;
  transform: translateY(-1px);
}

.primary-nav a:hover::before,
.primary-nav a:focus-visible::before {
  box-shadow: inset 0 0 0 1px rgba(111, 125, 84, 0.7), 0 10px 20px rgba(23, 34, 31, 0.12);
  opacity: 1;
  transform: scaleX(1) scaleY(1);
}

/* Drawer close button is only used by the desktop left-side drawer. */
.drawer-close {
  display: none;
}

.section-nav-rail {
  position: fixed;
  top: 50%;
  right: 14px;
  z-index: 18;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(10px);
  visibility: hidden;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.section-nav-rail.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
  visibility: visible;
}

.section-nav-rail a {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(23, 34, 31, 0.34);
  border-radius: 50%;
  background: rgba(243, 240, 231, 0.74);
  backdrop-filter: blur(8px);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.section-nav-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(23, 34, 31, 0.42);
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.section-nav-label {
  position: absolute;
  right: 42px;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 10px 6px;
  color: var(--white);
  background: rgba(23, 34, 31, 0.86);
  box-shadow: 0 12px 28px rgba(23, 34, 31, 0.16);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate(8px, -50%);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  white-space: nowrap;
}

.section-nav-rail a:hover,
.section-nav-rail a:focus-visible,
.section-nav-rail a.is-active {
  border-color: var(--palm);
  background: rgba(255, 255, 255, 0.92);
  outline: none;
}

.section-nav-rail a:hover,
.section-nav-rail a:focus-visible {
  transform: translateX(-1px);
}

.section-nav-rail a:hover .section-nav-label,
.section-nav-rail a:focus-visible .section-nav-label {
  opacity: 1;
  transform: translate(0, -50%);
}

.section-nav-rail a.is-active .section-nav-dot {
  background: var(--palm);
  transform: scale(1.32);
}

.section-nav-strip {
  display: none;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.section-nav-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 11px 18px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.section-nav-scroll::-webkit-scrollbar {
  display: none;
}

.section-nav-strip a {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px 7px;
  color: var(--charcoal);
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.section-nav-strip a:hover,
.section-nav-strip a:focus-visible,
.section-nav-strip a.is-active {
  border-color: var(--palm);
  color: var(--white);
  background: var(--palm);
  outline: none;
}

.language-switcher {
  position: absolute;
  top: 14px;
  right: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
}

.language-count {
  color: var(--slate);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.language-select {
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 8px;
  color: var(--charcoal);
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}

.language-select:hover,
.language-select:focus-visible {
  border-color: var(--palm);
  color: var(--slate);
  outline: none;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-slides,
.hero-slide,
.hero-media {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 420ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-media {
  background-color: #d9ded0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.012);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 35, 37, 0.78), rgba(16, 35, 37, 0.28) 48%, rgba(16, 35, 37, 0.04)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58) 0 18%, transparent 18%),
    linear-gradient(12deg, rgba(255, 255, 255, 0.46) 0 12%, transparent 12%);
}

.hero-media::after {
  content: "";
}

.hero-slide-1 .hero-media {
  background-image: url("assets/gallery/01-hero-pool-wide.jpg");
  background-position: center 50%;
}

.hero-slide-2 .hero-media {
  background-image: url("assets/gallery/13-wide-villa-rooftop-render.jpg");
  background-position: center 50%;
}

.hero-slide-3 .hero-media {
  background-image: url("assets/gallery/05-open-plan-kitchen-dining.jpg");
  background-position: center 50%;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 130px));
  padding: 58px 0 88px 76px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--palm);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #dce8d0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading-font);
  line-height: 1.04;
  font-weight: 500;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: 68px;
  text-wrap: balance;
}

html[lang="ru"] h1,
html[lang="de"] h1,
html[lang="fr"] h1,
html[lang="ar"] h1 {
  max-width: 900px;
  font-size: 60px;
}

html:not([lang="en"]) .hero-title-line {
  white-space: normal;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

h2 {
  font-size: 44px;
  max-width: 100%;
  overflow-wrap: break-word;
}

h3 {
  font-size: 22px;
}

.hero-copy {
  max-width: 540px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
}

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

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

.button-secondary-dark {
  border-color: var(--line);
  color: var(--charcoal);
  background: var(--white);
}

.button-form {
  width: 100%;
  background: var(--charcoal);
  color: var(--white);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 12px 28px rgba(23, 34, 31, 0.16);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--white);
  background: rgba(23, 34, 31, 0.18);
  cursor: pointer;
}

.hero-arrow span {
  display: block;
  transform: translateY(-2px);
  font-size: 34px;
  line-height: 1;
}

.hero-arrow-prev {
  left: 24px;
}

.hero-arrow-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 76px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--white);
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.fact {
  min-width: 0;
  padding: 20px clamp(10px, 1.35vw, 22px);
  border-right: 1px solid var(--line);
}

.fact strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--heading-font);
  font-size: clamp(19px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.1;
}

.fact span {
  display: block;
  color: var(--palm);
  font-size: clamp(10px, 0.78vw, 12px);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.section {
  padding: 64px 24px;
  scroll-margin-top: 0;
}

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

.section-light {
  background: var(--limestone);
}

.section-stone {
  background: #e7e2d6;
}

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

.section-comparables {
  position: relative;
  overflow: hidden;
  padding: 42px 18px 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(176, 132, 90, 0.16), transparent 24%),
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(17, 37, 33, 0.99), rgba(17, 37, 33, 0.97));
}

@media (min-width: 1501px) {
  .section-comparables {
    padding-right: clamp(76px, 5vw, 96px);
    padding-left: clamp(42px, 5vw, 96px);
  }
}

.section-comparables::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 16, 14, 0.18) 0%, transparent 16%, transparent 84%, rgba(9, 16, 14, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.02));
  content: "";
  pointer-events: none;
}

.section-comparables .section-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-width: 0;
}

#location .section-inner {
  width: min(1540px, 100%);
}

#gallery .section-inner {
  width: min(1600px, 100%);
}

.two-column,
.video-layout,
.investment-layout,
.comparison-layout,
.comparables-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
}

.video-layout-placeholder-only {
  grid-template-columns: minmax(0, 1fr);
}

.two-column > *,
.video-layout > *,
.investment-layout > *,
.comparison-layout > *,
.comparables-layout > *,
.contact-layout > *,
.section-heading,
.lead-block {
  min-width: 0;
}

.lead-block p,
.section-heading p,
.video-layout p,
.investment-layout p,
.comparison-points p,
.comparables-intro p,
.comparables-card p,
.contact-layout p {
  color: var(--muted);
  font-size: 18px;
}

.section-charcoal p {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.narrow {
  max-width: 680px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

/* Desktop gallery fills the full canvas width in a balanced grid, so the
   images sit in two even rows instead of a tall, half-empty stack. The last
   panoramic shot keeps a 2-column span to fill the final row exactly. */
.gallery-grid .gallery-wide {
  grid-column: auto;
}

.gallery-grid .gallery-wide ~ .gallery-wide {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--limestone);
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}

.gallery-trigger:focus-visible {
  outline: 3px solid rgba(176, 132, 90, 0.58);
  outline-offset: -5px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 360ms ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.045);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(23, 34, 31, 0.74);
  font-size: 13px;
  font-weight: 800;
  pointer-events: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: block;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(7, 12, 11, 0.96);
  cursor: zoom-out;
}

.lightbox-shell {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  transform: translateY(12px) scale(0.985);
  opacity: 0;
  transition:
    transform 260ms ease,
    opacity 260ms ease;
  contain: layout paint;
  will-change: transform, opacity;
}

.lightbox.is-open .lightbox-shell {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lightbox-figure {
  position: absolute;
  inset: 0;
  display: block;
  height: 100%;
  margin: 0;
}

.lightbox-image-frame {
  position: absolute;
  inset: 0;
  display: flex;
  min-height: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  overflow: hidden;
  background: rgba(7, 12, 11, 0.96);
  box-shadow: none;
}

.lightbox-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: none;
  border-radius: 0;
  object-fit: contain;
  opacity: 1;
  transition: opacity 140ms ease;
}

.lightbox-image.is-loading {
  opacity: 0;
}

.lightbox-caption,
.lightbox-count {
  color: var(--white);
  font-weight: 600;
  text-align: center;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.48);
}

.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  width: min(760px, calc(100vw - 180px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 11px 18px;
  background: rgba(12, 20, 18, 0.62);
  backdrop-filter: blur(12px);
  font-size: 16px;
  transform: translateX(-50%);
}

.lightbox.is-floor-plan .lightbox-caption {
  top: 22px;
  right: auto;
  bottom: auto;
  left: 22px;
  width: max-content;
  max-width: calc(100vw - 180px);
  border-radius: 999px;
  padding: 10px 16px;
  transform: none;
}

.lightbox-count {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(12, 20, 18, 0.52);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: var(--white);
  background: rgba(23, 34, 31, 0.52);
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(23, 34, 31, 0.78);
  outline: none;
  transform: translateY(-1px);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  z-index: 4;
  width: 44px;
  height: 44px;
  font-size: 30px;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: translateY(calc(-50% - 1px));
}

.lightbox-nav span {
  display: block;
  transform: translateY(-2px);
  font-size: 42px;
  line-height: 1;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

body.lightbox-active {
  overflow: hidden;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 25;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: var(--white);
  background: rgba(23, 34, 31, 0.84);
  box-shadow: 0 18px 36px rgba(23, 34, 31, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  visibility: hidden;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease,
    background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--palm);
  outline: none;
  transform: translateY(-2px);
}

.back-to-top span {
  display: block;
  transform: translateY(-1px);
  font-size: 24px;
  line-height: 1;
}

body.lightbox-active .back-to-top {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

body.lightbox-active .section-nav-rail {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.video-placeholder {
  display: grid;
  min-height: 360px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(48, 79, 85, 0.95), rgba(111, 125, 84, 0.84)),
    #304f55;
  font-weight: 800;
  text-align: center;
}

.video-showcase {
  display: grid;
  gap: 22px;
}

.video-card,
.progress-summary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.video-card {
  overflow: hidden;
  box-shadow: 0 24px 44px rgba(7, 12, 11, 0.18);
}

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

.video-card-media {
  position: relative;
  background: rgba(6, 10, 9, 0.88);
}

.progress-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: rgba(6, 10, 9, 0.88);
  object-fit: cover;
}

.video-card-copy {
  display: grid;
  gap: 10px;
  padding: 18px 20px 22px;
  background: rgba(244, 239, 230, 0.96);
}

.video-card-header,
.progress-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.media-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 13px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card .media-pill {
  color: var(--slate);
  background: rgba(23, 34, 31, 0.08);
}

.video-card-meta {
  color: rgba(23, 34, 31, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.video-card-label {
  color: var(--slate);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.progress-summary {
  margin-bottom: 20px;
  padding: 16px 18px;
  border-color: rgba(23, 34, 31, 0.1);
  background: linear-gradient(135deg, rgba(241, 238, 232, 0.9), rgba(250, 248, 243, 0.98));
  box-shadow: 0 18px 32px rgba(23, 34, 31, 0.08);
}

.progress-summary .media-pill {
  color: var(--slate);
  background: rgba(23, 34, 31, 0.08);
}

.progress-open-all {
  white-space: nowrap;
  color: var(--slate);
  border-color: rgba(23, 34, 31, 0.12);
  background: rgba(23, 34, 31, 0.08);
}

.progress-open-all:hover,
.progress-open-all:focus-visible {
  color: var(--white);
  background: var(--palm);
}

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

.progress-gallery-archive {
  display: none;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--slate);
  font-weight: 900;
  border-bottom: 2px solid var(--teak);
}

.feature-grid,
.location-grid,
.comparison-points {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.core-feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.package-feature-grid {
  grid-template-columns: repeat(5, 1fr);
}

.location-grid,
.comparison-points {
  grid-template-columns: repeat(3, 1fr);
}

.comparables-shell {
  display: grid;
  gap: 16px;
}

.comparables-stage {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.comparables-visual {
  position: relative;
  display: flex;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 28px;
  background: #1b2d28;
  box-shadow: 0 34px 80px rgba(4, 10, 9, 0.32);
}

.comparables-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.02) contrast(1.04);
}

.comparables-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 20, 17, 0.12) 0%, rgba(10, 20, 17, 0.18) 56%, rgba(10, 20, 17, 0.68) 100%),
    linear-gradient(90deg, rgba(17, 35, 31, 0.38) 0%, transparent 24%, transparent 72%, rgba(17, 35, 31, 0.36) 100%);
  content: "";
  pointer-events: none;
}

.comparables-visual figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 8px;
  max-width: 540px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(10, 21, 18, 0.68);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.comparables-visual figcaption span,
.comparables-card-label,
.comparables-a86-feature span,
.comparables-metrics article span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.comparables-visual figcaption strong {
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.05;
}

.comparables-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: stretch;
  align-items: stretch;
}

.comparables-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-content: start;
  padding: 0;
}

.comparables-intro p {
  max-width: 430px;
}

.section-comparables .comparables-intro .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.section-comparables .comparables-intro h2 {
  max-width: 520px;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(44px, 3.35vw, 54px);
  font-weight: 400;
  line-height: 0.96;
}

.section-comparables .comparables-intro p {
  color: rgba(255, 255, 255, 0.76);
}

.section-comparables .comparables-intro .text-link {
  width: fit-content;
  color: var(--white);
  border-bottom-color: rgba(176, 132, 90, 0.92);
}

.comparables-a86-feature {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  max-width: none;
  padding: 14px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.comparables-feature-icon,
.comparables-metric-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(176, 132, 90, 0.45);
  border-radius: 50%;
  color: #d6c49f;
}

.comparables-feature-icon {
  width: 44px;
  height: 44px;
  font-size: 12px;
  letter-spacing: 0;
}

.comparables-a86-feature strong {
  display: block;
  margin: 4px 0 5px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.1;
}

.comparables-a86-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.4;
}

.comparables-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: stretch;
}

.comparables-card {
  display: grid;
  gap: 9px;
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 233, 0.98)),
    var(--white);
  box-shadow: 0 18px 32px rgba(7, 15, 13, 0.18);
}

.comparables-card::before {
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--palm), var(--teak));
  content: "";
}

.comparables-card-a86 {
  background:
    linear-gradient(180deg, rgba(241, 243, 232, 0.98), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.comparables-card-label {
  margin: 0;
  color: var(--palm);
}

.comparables-card strong {
  color: var(--charcoal);
  font-size: 20px;
  line-height: 1.05;
}

.comparables-card .comparables-price-range {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  color: var(--palm);
  font-size: 14px;
  font-weight: 800;
}

.comparables-card .comparables-price-range::before,
.comparables-card .comparables-price-range::after {
  height: 1px;
  background: rgba(111, 125, 84, 0.3);
  content: "";
}

.comparables-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
}

.comparables-card em {
  width: fit-content;
  margin-top: auto;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--palm);
  background: rgba(111, 125, 84, 0.16);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.comparables-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.comparables-metrics article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 96px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparables-metrics article:last-child {
  border-right: 0;
}

.comparables-metric-icon {
  width: 50px;
  height: 50px;
  font-size: 18px;
  letter-spacing: 0;
}

.comparables-metrics strong {
  display: block;
  color: #fbf8ef;
  font-family: var(--heading-font);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.comparables-metrics article span:not(.comparables-metric-icon) {
  display: block;
  margin: 5px 0;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.12em;
}

.comparables-metrics p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.35;
}

.feature-group-label,
.features-package-heading h3 {
  margin: 0 0 14px;
  color: var(--palm);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.features-package-heading {
  margin-top: 26px;
}

.features-package-intro {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--charcoal);
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: 800;
  line-height: 1.28;
}

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

.location-grid {
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 10px;
}

.plan-card,
.feature-card,
.location-grid article,
.comparison-points article,
.yield-panel,
.enquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.plan-card,
.feature-card,
.location-grid article,
.comparison-points article {
  padding: 24px;
}

.location-grid article {
  min-width: 0;
  padding: 16px 10px;
}

.plan-preview {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--palm);
  background: var(--limestone);
  font-weight: 800;
  overflow: hidden;
}

.plan-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #d4f5dd;
  transition: transform 360ms ease;
}

.plan-preview:hover img,
.plan-preview:focus-visible img {
  transform: scale(1.018);
}

.plan-preview:focus-visible {
  outline: 3px solid rgba(176, 132, 90, 0.58);
  outline-offset: 3px;
}

.plan-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(23, 34, 31, 0.74);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
}

.plan-card p,
.feature-card p,
.location-grid span,
.comparison-points p {
  color: var(--muted);
}

.feature-card {
  position: relative;
  min-height: 184px;
  overflow: hidden;
}

.feature-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--palm), var(--teak));
  content: "";
}

.features-package-note {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  border: 1px solid rgba(48, 79, 85, 0.18);
  border-radius: 8px;
  padding: 22px 26px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 35, 37, 0.96), rgba(48, 79, 85, 0.9)),
    var(--charcoal);
}

.features-package-note strong {
  font-family: var(--heading-font);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 650;
  line-height: 1.18;
}

.features-package-note p {
  margin: 0;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 500;
  line-height: 1.38;
}

.features-package-note span {
  color: var(--sand);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-card h3,
.plan-card h3,
.comparison-points h3 {
  margin-bottom: 10px;
}

.location-grid article strong,
.location-grid article span {
  display: block;
}

.location-grid article strong {
  margin-bottom: 6px;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.28;
}

.location-grid article span {
  font-size: 14px;
  line-height: 1.38;
}

.distance-map {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.6fr);
  gap: 18px;
  margin-top: 28px;
}

.distance-map-visual,
.distance-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--limestone);
}

.distance-map-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #eef3e8 0%, #e2eadf 46%, #d8e4d7 100%);
}

.map-base {
  position: absolute;
  z-index: 0;
  inset: -54px;
  width: calc(100% + 108px);
  height: calc(100% + 108px);
  border: 0;
  filter: saturate(1.55) contrast(1.04) brightness(1.0);
  opacity: 1;
  pointer-events: none;
}

.distance-map-visual::after {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 10px;
  border-radius: 999px;
  padding: 4px 8px;
  color: rgba(48, 79, 85, 0.72);
  background: rgba(255, 255, 255, 0.78);
  content: "© OpenStreetMap contributors";
  font-size: 11px;
  font-weight: 700;
}

.map-routes {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-routes line,
.map-routes path {
  fill: none;
  stroke: rgba(88, 104, 67, 0.62);
  stroke-linecap: round;
  stroke-width: 0.65;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.6));
  vector-effect: non-scaling-stroke;
}

.map-pin {
  position: absolute;
  z-index: 3;
  left: var(--active-x, var(--x));
  top: var(--active-y, var(--y));
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(48, 79, 85, 0.12);
  border-radius: 999px;
  padding: 5px 12px 5px 5px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 10px 22px rgba(23, 34, 31, 0.16),
    0 2px 5px rgba(23, 34, 31, 0.1);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

/* Small tail so each pill reads as a marker anchored to its spot. */
.map-pin::before {
  position: absolute;
  bottom: -4px;
  left: 50%;
  z-index: -1;
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(48, 79, 85, 0.12);
  border-bottom: 1px solid rgba(48, 79, 85, 0.12);
  background: inherit;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.map-pin:hover {
  z-index: 6;
  box-shadow:
    0 16px 30px rgba(23, 34, 31, 0.22),
    0 3px 7px rgba(23, 34, 31, 0.12);
  transform: translate(-50%, calc(-50% - 4px)) scale(1.04);
}

.map-thumb {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 12px rgba(23, 34, 31, 0.14);
}

.map-home {
  z-index: 4;
  min-height: 44px;
  border-color: rgba(111, 125, 84, 0.5);
  padding: 9px 16px;
  color: var(--white);
  background: var(--palm);
  box-shadow:
    0 12px 26px rgba(111, 125, 84, 0.32),
    0 2px 6px rgba(23, 34, 31, 0.18);
  font-size: 15px;
}

.map-home::before {
  border-color: rgba(111, 125, 84, 0.5);
}

/* Soft radius pulse marking A86 as the focal point of the map. */
.map-home::after {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -2;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(111, 125, 84, 0.55);
  content: "";
  transform: translate(-50%, -50%);
  animation: mapHomePulse 2600ms ease-out infinite;
}

@keyframes mapHomePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(111, 125, 84, 0.4);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(111, 125, 84, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(111, 125, 84, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-home::after {
    animation: none;
  }
}

.distance-panel {
  padding: 24px;
}

.distance-panel h3 {
  margin-bottom: 18px;
}

.distance-list {
  display: grid;
  gap: 9px;
}

.distance-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 9px;
}

.distance-list span {
  color: var(--charcoal);
  font-weight: 700;
}

.distance-list strong {
  flex: 0 0 auto;
  color: var(--palm);
  font-size: 18px;
  font-weight: 900;
}

.distance-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.amenities-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.amenities-heading > div:first-child {
  max-width: 760px;
}

.amenity-controls {
  display: flex;
  gap: 10px;
}

.amenity-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--white);
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.amenity-arrow:hover,
.amenity-arrow:focus-visible {
  border-color: var(--palm);
  color: var(--white);
  background: var(--palm);
  outline: none;
  transform: translateY(-1px);
}

.amenity-arrow span {
  display: block;
  transform: translateY(-2px);
  font-size: 34px;
  line-height: 1;
}

.amenity-carousel {
  position: relative;
  overflow: hidden;
}

.amenity-track {
  display: grid;
  grid-auto-columns: calc((100% - 18px) / 2);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.amenity-track::-webkit-scrollbar {
  display: none;
}

.amenity-slide {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(23, 34, 31, 0.12);
  scroll-snap-align: start;
}

.amenity-slide img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.amenity-slide figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(12, 20, 18, 0.68);
  backdrop-filter: blur(10px);
}

.amenity-slide strong,
.amenity-slide span {
  display: block;
}

.amenity-slide strong {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.amenity-slide span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.35;
}

.amenity-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.amenity-progress-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.amenity-progress-dot {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.amenity-progress-dot::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(48, 79, 85, 0.34);
  content: "";
  transition:
    width 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.amenity-progress-dot:hover::before,
.amenity-progress-dot:focus-visible::before,
.amenity-progress-dot.is-active::before {
  width: 18px;
  background: var(--palm);
}

.amenity-progress-dot:focus-visible {
  outline: 2px solid rgba(48, 79, 85, 0.35);
  outline-offset: 2px;
}

.amenity-progress-count {
  min-width: 54px;
  border: 1px solid rgba(48, 79, 85, 0.16);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--slate);
  background: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.yield-panel {
  padding: 34px;
  color: var(--charcoal);
}

.panel-label {
  display: block;
  margin-bottom: 10px;
  color: var(--palm);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.yield-panel strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.04;
}

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

.rental-evidence {
  margin-top: 22px;
  border: 1px solid rgba(48, 79, 85, 0.16);
  border-radius: 8px;
  padding: 0;
  background: var(--limestone);
  overflow: hidden;
}

.rental-evidence summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  list-style: none;
}

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

.rental-evidence summary::after {
  content: "+";
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border: 1px solid rgba(48, 79, 85, 0.18);
  border-radius: 50%;
  color: var(--palm);
  background: var(--white);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.rental-evidence[open] summary::after {
  content: "-";
}

.yield-panel .rental-evidence-intro {
  margin: 0;
  padding: 0 16px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.rental-source-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 16px 16px;
  list-style: none;
}

.rental-source-list li {
  border-top: 1px solid rgba(48, 79, 85, 0.12);
  padding-top: 10px;
}

.rental-source-list a {
  color: var(--charcoal);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.rental-source-list span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  background: var(--limestone);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 8%, rgba(111, 125, 84, 0.13), transparent 28%),
    linear-gradient(180deg, #f6f2e9 0%, #efeade 100%);
}

.contact-layout {
  width: min(1440px, 100%);
  grid-template-columns: minmax(420px, 0.64fr) minmax(560px, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

.contact-copy {
  max-width: 600px;
  margin: 0;
  color: rgba(16, 35, 31, 0.72);
  font-size: 18px;
}

.contact-intro .eyebrow {
  position: relative;
  margin-bottom: 34px;
  color: var(--palm);
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
}

.contact-intro .eyebrow::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 16px;
  background: var(--palm);
}

.contact-intro h2 {
  max-width: 640px;
  font-family: var(--heading-font);
  font-size: clamp(48px, 4.6vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-direct article {
  position: relative;
  min-height: 72px;
  border: 1px solid rgba(111, 125, 84, 0.22);
  border-radius: 9px;
  padding: 15px 82px 15px 82px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 28px rgba(23, 34, 31, 0.05);
}

.contact-detail-row::before,
.contact-detail-row::after {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.contact-detail-row::before {
  left: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(111, 125, 84, 0.42);
  border-radius: 999px;
  color: var(--palm);
  background: rgba(246, 242, 233, 0.72);
  font-size: 22px;
  font-weight: 700;
}

.contact-detail-profile::before {
  content: "○";
}

.contact-detail-phone::before {
  content: "☎";
}

.contact-detail-email::before {
  content: "✉";
}

.contact-direct-locked .contact-detail-row::after {
  right: 16px;
  width: 54px;
  height: 30px;
  border: 1px solid rgba(111, 125, 84, 0.28);
  border-radius: 999px;
  color: var(--palm);
  content: "unlock";
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.contact-direct span,
.contact-qr-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-qr-card span {
  min-height: 2.7em;
}

.contact-direct strong {
  display: block;
  margin-top: 3px;
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-direct a {
  display: block;
  margin-top: 3px;
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-actions {
  width: 100%;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: flex-start;
}

.contact-intro {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.contact-layout .enquiry-form {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.contact-actions .button {
  width: 100%;
  height: 108px;
  min-height: 108px;
  flex-direction: column;
  gap: 9px;
  border-radius: 9px;
  padding: 16px 14px;
  background: var(--palm);
  color: var(--white);
  font-size: clamp(17px, 1.25vw, 23px);
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 18px 32px rgba(23, 34, 31, 0.12);
}

.contact-actions .button::before {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.contact-actions [data-gated-contact="call"]::before {
  content: "☎";
}

.contact-actions [data-gated-contact="whatsapp"]::before {
  content: "";
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 34 34' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='17' cy='17' r='15.5' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M9.9 25.1l1.35-4.78A9.05 9.05 0 1 1 14.9 23.8l-5 1.3z' fill='none' stroke='white' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M14.3 12.1c-.25-.56-.52-.57-.76-.58h-.65c-.23 0-.6.08-.91.42-.31.34-1.2 1.17-1.2 2.86 0 1.68 1.23 3.31 1.4 3.54.17.22 2.38 3.81 5.86 5.18 2.9 1.14 3.49.91 4.12.85.63-.06 2.04-.83 2.32-1.63.29-.8.29-1.49.2-1.63-.08-.14-.31-.22-.66-.4-.34-.17-2.03-1-2.35-1.12-.31-.11-.54-.17-.77.17-.23.34-.88 1.12-1.08 1.34-.2.23-.4.26-.74.09-.34-.17-1.45-.53-2.76-1.7-1.02-.91-1.71-2.03-1.91-2.37-.2-.34-.02-.53.15-.7.15-.15.34-.4.51-.6.17-.2.23-.34.34-.57.11-.23.06-.43-.03-.6-.09-.17-.76-1.83-1.08-2.56z' fill='white'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.contact-actions [data-gated-contact="line"]::before {
  content: "LINE";
  border-radius: 999px;
  padding: 4px 7px;
  color: var(--palm);
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
}

.contact-call-button,
.contact-whatsapp-option,
.contact-line-option {
  grid-column: span 2;
}

.contact-actions .button-secondary-dark::before {
  display: none;
}

.contact-actions .button.is-locked::after {
  content: "Form first";
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.contact-actions .button.is-unlocked::after {
  content: "Unlocked";
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--white);
  background: rgba(48, 79, 85, 0.72);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.contact-qr-option {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-qr-card {
  width: 100%;
  max-width: none;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: var(--white);
}

.contact-qr-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(48, 79, 85, 0.12);
  border-radius: 6px;
  background: var(--white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.contact-qr-image[data-contact-qr="whatsapp"].is-loaded {
  background-image: var(--contact-whatsapp-qr);
}

.contact-qr-image[data-contact-qr="line"].is-loaded {
  background-image: var(--contact-line-qr);
}

.contact-qr-card strong {
  display: block;
  margin-top: 6px;
  color: var(--charcoal);
  font-size: clamp(10px, 0.9vw, 14px);
  font-weight: 900;
  line-height: 1.2;
}

.contact-security-note {
  position: relative;
  margin: auto 0 0;
  padding-left: 44px;
  color: rgba(16, 35, 31, 0.66);
  font-size: 14px;
  font-weight: 700;
}

.contact-security-note::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(111, 125, 84, 0.5);
  border-radius: 999px;
  color: var(--palm);
  transform: translateY(-50%);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 18px;
  padding: clamp(26px, 3vw, 40px);
  border-color: rgba(111, 125, 84, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82)),
    var(--white);
  box-shadow: 0 24px 60px rgba(23, 34, 31, 0.1);
}

.form-heading,
.form-trust-row,
.enquiry-form .button-form,
.form-status {
  grid-column: 1 / -1;
}

.form-heading {
  margin-bottom: 4px;
}

.form-kicker {
  margin: 0 0 6px;
  color: var(--palm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enquiry-form h3 {
  margin: 0;
  font-size: clamp(28px, 2.2vw, 38px);
}

.form-heading p:last-child {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.enquiry-form label {
  display: grid;
  gap: 9px;
  margin: 0;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field-half {
  grid-column: span 1;
}

.form-field-full {
  grid-column: 1 / -1;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(111, 125, 84, 0.24);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.enquiry-form textarea {
  min-height: 132px;
  resize: vertical;
}

.form-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.form-trust-row span {
  border: 1px solid rgba(111, 125, 84, 0.18);
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(16, 35, 31, 0.72);
  background: rgba(243, 240, 231, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.enquiry-form .button-form {
  min-height: 56px;
  margin-top: 2px;
  border-radius: 8px;
  padding: 15px 18px;
  background: var(--palm);
  font-size: 15px;
  font-weight: 900;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--palm);
  outline: 3px solid rgba(111, 125, 84, 0.18);
}

.enquiry-form .is-invalid {
  border-color: #a94734;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  font-weight: 700;
}

.form-status:not(:empty) {
  margin-top: 12px;
}

.site-footer {
  padding: 42px 24px 30px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
  font-size: 14px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(220px, 1fr) minmax(170px, 0.8fr) minmax(170px, 0.8fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-logo {
  display: block;
  width: min(240px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  margin-bottom: 14px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.96);
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-location,
.footer-tagline {
  margin: 0;
}

.footer-location {
  color: var(--white);
  font-weight: 600;
}

.footer-tagline {
  max-width: 330px;
  margin-top: 10px;
}

.footer-heading {
  margin: 0 0 12px;
  color: var(--teak);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.footer-detail {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-detail strong,
.footer-detail span {
  display: block;
}

.footer-detail strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
}

.footer-detail span {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
}

.footer-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-link-grid a {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.footer-link-grid a:hover,
.footer-link-grid a:focus-visible,
.footer-logo:hover,
.footer-logo:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--teak);
  outline: none;
}

.footer-credit {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
}

.footer-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--teak);
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .primary-nav,
html[dir="rtl"] .contact-actions {
  direction: rtl;
}

html[dir="rtl"] .language-switcher {
  right: auto;
  left: 24px;
}

html[dir="rtl"] .section-nav-rail {
  right: auto;
  left: 14px;
  transform: translateY(-50%) translateX(-10px);
}

html[dir="rtl"] .section-nav-rail.is-visible {
  transform: translateY(-50%) translateX(0);
}

html[dir="rtl"] .section-nav-label {
  right: auto;
  left: 42px;
  transform: translate(-8px, -50%);
}

html[dir="rtl"] .section-nav-rail a:hover,
html[dir="rtl"] .section-nav-rail a:focus-visible {
  transform: translateX(1px);
}

html[dir="rtl"] .section-nav-rail a:hover .section-nav-label,
html[dir="rtl"] .section-nav-rail a:focus-visible .section-nav-label {
  transform: translate(0, -50%);
}

html[dir="rtl"] .hero-media::before {
  background:
    linear-gradient(270deg, rgba(16, 35, 37, 0.78), rgba(16, 35, 37, 0.28) 48%, rgba(16, 35, 37, 0.04)),
    linear-gradient(225deg, rgba(255, 255, 255, 0.58) 0 18%, transparent 18%),
    linear-gradient(-12deg, rgba(255, 255, 255, 0.46) 0 12%, transparent 12%);
}

html[dir="rtl"] .hero-overlay {
  margin-right: auto;
  margin-left: 0;
  padding: 58px 76px 88px 0;
  text-align: right;
}

html[dir="rtl"] .hero-dots {
  right: 76px;
  left: auto;
}

html[dir="rtl"] .gallery-item figcaption {
  right: 14px;
  left: auto;
}

html[dir="rtl"] .lightbox-count {
  right: auto;
  left: 28px;
}

html[dir="rtl"] .enquiry-form,
html[dir="rtl"] .enquiry-form input,
html[dir="rtl"] .enquiry-form select,
html[dir="rtl"] .enquiry-form textarea,
html[dir="rtl"] .form-status {
  text-align: right;
}

@media (max-width: 1500px) {
  .section-nav-rail {
    display: none;
  }
}

@media (max-width: 1060px) {
  .section-nav-rail {
    display: none;
  }

  .section-nav-strip {
    display: block;
  }

  .primary-nav {
    justify-content: flex-start;
    gap: 26px;
  }

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

  .gallery-grid .gallery-wide {
    grid-column: span 2;
  }

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

  .amenity-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .lightbox-shell {
    width: 100%;
  }

  .feature-grid,
  .location-grid,
  .comparison-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparables-stage {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .comparables-story {
    grid-template-columns: 1fr;
  }

  .comparables-visual {
    min-height: 420px;
  }

  .comparables-cards {
    grid-template-columns: 1fr;
  }

  .comparables-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparables-metrics article:nth-child(2) {
    border-right: 0;
  }

  .comparables-metrics article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .distance-map {
    grid-template-columns: 1fr;
  }

  .distance-map-visual {
    min-height: 360px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section-nav-strip {
    display: none;
  }

  .brand-row {
    grid-template-columns: 70px minmax(0, 1fr) 70px;
    padding: 10px 18px 4px;
  }

  .for-sale-badge {
    width: 66px;
    margin-left: 0;
  }

  .brand {
    width: min(230px, 58vw);
  }

  .mobile-nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    min-height: 0;
    max-height: 0;
    margin: 0 18px 10px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: none;
    font-size: 12px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    scroll-padding-inline: 0;
    transition:
      max-height 260ms ease,
      padding 260ms ease,
      opacity 220ms ease,
      transform 260ms ease,
      border-color 260ms ease,
      box-shadow 260ms ease;
  }

  .site-header[data-mobile-nav-open="true"] .primary-nav {
    max-height: min(calc(100vh - 90px), 720px);
    padding: 14px;
    border-color: rgba(23, 34, 31, 0.1);
    box-shadow: 0 20px 42px rgba(23, 34, 31, 0.12);
    opacity: 1;
    overflow-y: auto;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    width: 100%;
    min-height: 38px;
    justify-content: center;
    padding: 0 10px;
    text-align: center;
    white-space: normal;
  }

  .language-switcher {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0 18px 8px;
  }

  .language-select {
    height: 28px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    width: 100%;
    max-width: 520px;
    padding: 52px 24px 92px;
  }

  h1 {
    max-width: 340px;
    font-size: 38px;
  }

  .hero-title-line {
    white-space: normal;
  }

  h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .two-column h2,
  .lead-block h2,
  .section-heading h2 {
    max-width: min(100%, 320px);
  }

  .lead-block p,
  .section-heading p,
  .video-layout p,
  .investment-layout p,
  .comparison-points p,
  .contact-layout p {
    max-width: min(100%, 330px);
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .hero-copy {
    font-size: 16px;
    max-width: 310px;
  }

  .contact-intro .eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .contact-intro h2 {
    max-width: min(100%, 350px);
    font-size: clamp(38px, 12vw, 48px);
  }

  .contact-copy {
    max-width: min(100%, 350px);
  }

  .section-comparables .comparables-intro h2 {
    max-width: min(100%, 350px);
    font-size: clamp(36px, 10vw, 48px);
  }

  .comparables-stage {
    grid-template-columns: 1fr;
  }

  .comparables-visual {
    min-height: 140px;
  }

  .comparables-visual figcaption {
    right: 14px;
    bottom: 10px;
    left: 14px;
    max-width: 280px;
    padding: 8px 10px;
  }

  .comparables-visual figcaption strong {
    font-size: 18px;
    line-height: 1.08;
  }

  .comparables-cards {
    grid-template-columns: 1fr;
  }

  .comparables-card {
    min-height: 0;
    padding: 20px;
  }

  .comparables-metrics {
    grid-template-columns: 1fr;
  }

  .comparables-metrics article,
  .comparables-metrics article:nth-child(2),
  .comparables-metrics article:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .comparables-metrics article:last-child {
    border-bottom: 0;
  }

  .hero-media::after {
    display: none;
  }

  .hero-arrow {
    top: auto;
    bottom: 24px;
  }

  .hero-arrow-prev {
    left: auto;
    right: 84px;
  }

  .hero-arrow-next {
    right: 24px;
  }

  .hero-dots {
    left: 24px;
  }

  html[dir="rtl"] .language-switcher {
    right: auto;
    left: auto;
  }

  html[dir="rtl"] .hero-overlay {
    padding: 52px 24px 92px;
  }

  html[dir="rtl"] .hero-dots {
    right: 24px;
    left: auto;
  }

  .fact-strip {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    background: var(--limestone);
  }

  .fact {
    grid-column: span 3;
    min-height: 72px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px 8px;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(23, 34, 31, 0.06);
  }

  .fact strong {
    margin-bottom: 5px;
    font-size: clamp(15px, 4.5vw, 20px);
  }

  .fact span {
    font-size: clamp(8px, 2.3vw, 10px);
  }

  .fact:nth-child(5) {
    grid-column: span 4;
  }

  .fact:nth-child(6) {
    grid-column: span 4;
  }

  .fact:nth-child(7) {
    grid-column: span 4;
  }

  .section {
    padding: 45px 18px;
  }

  .section-inner,
  .two-column,
  .video-layout,
  .investment-layout,
  .comparison-layout,
  .comparables-layout,
  .contact-layout,
  .section-heading,
  .lead-block {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .two-column,
  .video-layout,
  .investment-layout,
  .comparison-layout,
  .comparables-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-intro,
  .contact-layout .enquiry-form,
  .contact-actions {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .contact-call-button {
    grid-column: span 1;
    order: 1;
  }

  .contact-whatsapp-option {
    grid-column: span 1;
    order: 2;
  }

  .contact-line-option {
    grid-column: span 1;
    order: 3;
  }

  .contact-actions .button {
    height: 88px;
    min-height: 88px;
    gap: 7px;
    padding: 12px 6px 10px;
    font-size: clamp(13px, 3.4vw, 16px);
    white-space: normal;
  }

  .contact-actions .button::before {
    min-height: 24px;
    font-size: 25px;
  }

  .contact-actions [data-gated-contact="whatsapp"]::before {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    flex-basis: 30px;
  }

  .contact-actions [data-gated-contact="line"]::before {
    padding: 4px 6px;
    font-size: 11px;
  }

  .contact-actions .button.is-locked::after,
  .contact-actions .button.is-unlocked::after {
    padding: 5px 9px;
    font-size: 11px;
  }

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

  .form-field-half,
  .form-field-full,
  .form-trust-row,
  .enquiry-form .button-form,
  .form-status {
    grid-column: 1;
  }

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

  .contact-qr-card strong {
    font-size: 15px;
  }

  .contact-qr-card span {
    font-size: 13px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  /* Single-column mobile grid: wide items must not span 2 columns, or they
     spawn a phantom column that collapses the real one to 0px. Both selectors
     are needed to outrank the base/tablet span rules at this width. */
  .gallery-grid .gallery-wide,
  .gallery-grid .gallery-wide ~ .gallery-wide {
    grid-column: auto;
  }

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

  .video-card-copy {
    padding: 16px 16px 18px;
  }

  .video-card-label {
    font-size: 18px;
  }

  .progress-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .progress-open-all {
    width: 100%;
    justify-content: center;
  }

  .progress-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }

  .progress-grid .gallery-wide {
    grid-column: span 2;
  }

  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .amenities-heading {
    align-items: start;
    flex-direction: column;
  }

  .amenity-track {
    grid-auto-columns: minmax(270px, 86%);
  }

  .amenity-slide,
  .amenity-slide img {
    min-height: 320px;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
  }

  .back-to-top span {
    font-size: 20px;
  }

  .lightbox {
    padding: 0;
  }

  .lightbox-shell {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: none;
  }

  .lightbox-image-frame,
  .lightbox-image {
    max-height: none;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-nav span {
    font-size: 34px;
  }

  .lightbox-caption {
    bottom: 18px;
    width: calc(100vw - 40px);
    padding: 10px 14px;
    font-size: 14px;
  }

  .lightbox.is-floor-plan .lightbox-caption {
    top: 16px;
    right: auto;
    bottom: auto;
    left: 16px;
    width: max-content;
    max-width: calc(100vw - 112px);
  }

  .lightbox-count {
    top: 16px;
    left: 16px;
    right: auto;
    bottom: auto;
  }

  .feature-grid,
  .location-grid,
  .comparison-points {
    grid-template-columns: 1fr;
  }

  .comparables-cards {
    grid-template-columns: 1fr;
  }

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

  .distance-map {
    gap: 14px;
    margin-top: 22px;
  }

  .distance-map-visual {
    min-height: 400px;
  }

  .map-base {
    transform: scale(1.18);
    transform-origin: 64% 58%;
  }

  .map-pin {
    min-height: 34px;
    gap: 6px;
    padding: 4px 10px 4px 4px;
    font-size: 10px;
    box-shadow:
      0 10px 22px rgba(23, 34, 31, 0.14),
      inset 0 -1px 0 rgba(48, 79, 85, 0.05);
  }

  .map-thumb {
    width: 24px;
    height: 24px;
    border-width: 1.5px;
    box-shadow: 0 4px 10px rgba(23, 34, 31, 0.12);
  }

  .map-home {
    z-index: 5;
    min-height: 42px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .distance-panel {
    padding: 20px;
  }

  .distance-list article {
    align-items: flex-start;
  }

  .site-footer {
    padding: 36px 18px 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-link-grid a {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* Desktop hamburger drawer — slides in from the left, stays white. */
@media (min-width: 761px) {
  .mobile-nav-toggle {
    position: absolute;
    top: 12px;
    left: 18px;
    z-index: 30;
    display: inline-grid;
    place-items: center;
  }

  .for-sale-badge {
    margin-left: 58px;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 60;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    width: min(330px, 88vw);
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 80px 22px 28px;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--white);
    box-shadow: 0 24px 60px rgba(23, 34, 31, 0.22);
    transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 240ms ease,
      visibility 360ms ease;
  }

  .site-header[data-mobile-nav-open="true"] .primary-nav {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding: 0 18px;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition:
      color 320ms ease,
      transform 320ms ease;
  }

  .primary-nav a::before {
    transform: scaleX(0.12) scaleY(0.7);
    transition:
      opacity 300ms ease,
      transform 460ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 300ms ease;
  }

  /* "close X" that morphs into a single horizontal dash on hover. */
  .drawer-close {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-end;
    margin-bottom: 14px;
    padding: 6px 4px;
    border: 0;
    color: var(--charcoal);
    background: transparent;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 220ms ease;
  }

  .drawer-close:hover,
  .drawer-close:focus-visible {
    color: var(--palm);
    outline: none;
  }

  .drawer-close-mark {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
  }

  .drawer-close-mark::before,
  .drawer-close-mark::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transform-origin: center;
    transition:
      transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 240ms ease;
  }

  .drawer-close-mark::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .drawer-close-mark::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .drawer-close:hover .drawer-close-mark::before,
  .drawer-close:focus-visible .drawer-close-mark::before {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .drawer-close:hover .drawer-close-mark::after,
  .drawer-close:focus-visible .drawer-close-mark::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 34px;
    max-width: 330px;
  }

  h2 {
    font-size: 25px;
  }

  .hero-copy {
    max-width: 310px;
  }

  .button {
    width: 100%;
  }

  .contact-actions {
    gap: 8px;
  }

  .contact-actions .button {
    height: 82px;
    min-height: 82px;
    padding-inline: 4px;
    font-size: clamp(12px, 3.35vw, 14px);
  }

  .contact-actions .button.is-locked::after,
  .contact-actions .button.is-unlocked::after {
    padding-inline: 7px;
    font-size: 10px;
  }

  .distance-map-visual {
    min-height: 390px;
  }

  .map-pin {
    min-height: 32px;
    gap: 5px;
    padding: 3px 8px 3px 3px;
    font-size: 9px;
  }

  .map-thumb {
    width: 20px;
    height: 20px;
  }

  .map-home {
    min-height: 40px;
    padding: 9px 15px;
    font-size: 13px;
  }

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