:root {
  --bg: #f7f8f5;
  --panel: #ffffff;
  --paper: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29, 29, 31, 0.14);
  --accent: #6f665d;
  --acid: #d7ff00;
  --charcoal: #1d1d1f;
  --charcoal-soft: #2d2d2f;
  --inverse: #ffffff;
  --glass: rgba(255, 255, 255, 0.92);
  --glass-strong: #ffffff;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section: clamp(3.25rem, 6vw, 6rem);
  --sans: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  color: var(--inverse);
  background: var(--ink);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--inverse);
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(26px) saturate(1.35);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: var(--bg);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
}

.nav-shell {
  min-height: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0 var(--gutter);
}

.brand {
  display: inline-grid;
  gap: 0.05rem;
  width: fit-content;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.brand span:last-child {
  color: var(--muted);
  font-weight: 500;
}

.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.36rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(22px) saturate(1.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 1rem;
  height: 1px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3px) rotate(35deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-3px) rotate(-35deg);
}

.nav-links {
  grid-column: 1 / -1;
  display: none;
  padding: 0.75rem 0 1rem;
  border-top: 1px solid var(--line);
}

.nav-links.is-open {
  display: grid;
}

.nav-links a {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-areas: "hero";
  align-items: end;
  max-width: 1720px;
  min-height: calc(92svh - 4rem);
  margin: 0 auto;
  padding: clamp(0.85rem, 2vw, 1.4rem) var(--gutter) clamp(1.4rem, 3vw, 2.2rem);
}

.hero-media {
  grid-area: hero;
  height: min(74svh, 720px);
  min-height: 500px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.02) 50%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0) 58%);
}

.media-frame {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(21, 20, 18, 0.08), rgba(21, 20, 18, 0)),
    var(--panel);
  border-radius: var(--radius);
}

.media-frame::after {
  content: "Image placeholder";
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.media-frame.is-missing::after {
  display: grid;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 180ms ease, opacity 300ms ease, transform 700ms ease;
}

.media-frame.is-missing img {
  opacity: 0;
}

.hero-content {
  grid-area: hero;
  z-index: 2;
  width: min(660px, calc(100% - 2rem));
  max-width: none;
  margin: 0 0 clamp(1rem, 3vw, 2rem) clamp(0rem, 2vw, 1.6rem);
  padding: clamp(1.15rem, 2.6vw, 1.8rem);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(28px) saturate(1.25);
}

.hero-content > .eyebrow {
  text-transform: none;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.55;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  max-width: 15ch;
  font-family: var(--sans);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  margin-bottom: 1rem;
  font-size: 2.8rem;
}

h2 {
  margin-bottom: 1.4rem;
  font-size: 2.3rem;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.hero-copy {
  max-width: 44rem;
  margin-bottom: 1.4rem;
  color: rgba(29, 29, 31, 0.76);
  font-size: 1.08rem;
  line-height: 1.55;
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(29, 29, 31, 0.10);
  border-radius: 16px;
}

.summary-strip div {
  min-height: 4.7rem;
  display: grid;
  align-content: space-between;
  padding: 0.85rem 0.95rem;
  border-top: 1px solid rgba(29, 29, 31, 0.10);
}

.summary-strip div:nth-child(-n + 2) {
  border-top: 0;
}

dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

dd {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.text-button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.15rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, border-color 180ms ease;
}

.text-button.primary,
.text-button.secondary:hover,
.text-button.secondary:focus-visible {
  background: var(--acid);
  color: var(--ink);
  border-color: var(--acid);
}

.text-button.secondary {
  color: var(--ink);
  background: var(--paper);
}

.text-button.primary:hover,
.text-button.primary:focus-visible {
  background: #c7ec00;
  border-color: #c7ec00;
  box-shadow: 0 8px 22px rgba(35, 45, 0, 0.16);
}

.section {
  padding: var(--section) var(--gutter);
  border-top: 1px solid var(--line);
}

.overview-section,
.location-section {
  display: grid;
  gap: 2rem;
}

.section-heading {
  max-width: 64rem;
  margin-bottom: clamp(2.4rem, 6vw, 5rem);
}

.section-heading h2,
.overview-copy h2,
.location-copy h2,
.editorial-statement h2 {
  max-width: 16ch;
}

.overview-copy p,
.section-heading p:not(.eyebrow),
.location-copy p,
.editorial-statement p,
.text-columns p {
  max-width: 43rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.overview-section {
  align-items: start;
}

.overview-copy {
  min-width: 0;
}

.facts-grid,
.travel-grid,
.district-grid {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.facts-grid div,
.travel-grid div,
.district-grid div {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.compact-facts {
  margin-top: 2rem;
}

.compact-facts div {
  grid-template-columns: 0.72fr 1fr;
  gap: 1rem;
}

.enquiry-card {
  position: sticky;
  top: 5.5rem;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--glass-strong);
  border: 1px solid rgba(29, 29, 31, 0.11);
  border-radius: 26px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(24px) saturate(1.25);
}

.enquiry-card div {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(29, 29, 31, 0.10);
}

.enquiry-card span,
.card-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.enquiry-card strong {
  font-size: 1rem;
  line-height: 1.35;
}

.compound-section {
  background: var(--bg);
}

.amenity-grid {
  display: grid;
  gap: 0.9rem;
}

.amenity-grid article {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  min-height: 10rem;
  padding: 1.25rem;
  background: var(--glass-strong);
  border: 1px solid rgba(29, 29, 31, 0.10);
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(18px) saturate(1.2);
}

.amenity-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.55rem;
  color: var(--ink);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(229, 229, 234, 0.82));
  border: 1px solid rgba(29, 29, 31, 0.10);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 5px 14px rgba(0, 0, 0, 0.07);
  font-family: "Apple Symbols", "SF Pro Display", var(--sans);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1;
}

.amenity-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.home-amenities-section {
  background: var(--bg);
  scroll-margin-top: 5rem;
  padding-top: clamp(1.5rem, 3vw, 3rem);
}

.home-amenities-section .section-heading {
  margin-bottom: 1.25rem;
}

.home-amenity-groups {
  display: grid;
  gap: 2rem;
}

.home-amenity-group {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.home-amenity-group h3 {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.home-amenity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.home-amenity-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  min-height: 4rem;
  padding: 0.65rem 0.45rem 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  line-height: 1.35;
}

.home-amenity-icon {
  display: grid;
  flex: 0 0 2.4rem;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  color: var(--ink);
  background: var(--glass-strong);
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 50%;
}

.home-amenity-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.facts-grid dd {
  max-width: 22rem;
  font-size: 1.18rem;
}

.gallery-section {
  padding-left: 0;
  padding-right: 0;
}

.gallery-heading {
  padding: 0 var(--gutter);
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.gallery-grid {
  display: grid;
  gap: 0.65rem;
  padding: 0 var(--gutter);
}

.gallery-item {
  margin: 0;
  cursor: zoom-in;
}

.gallery-item img {
  aspect-ratio: 4 / 3;
}

.gallery-item.is-collapsed {
  display: none;
}

.gallery-grid.is-expanded .gallery-item.is-collapsed {
  display: block;
}

.gallery-wide img {
  aspect-ratio: 16 / 10;
}

.gallery-portrait img {
  aspect-ratio: 4 / 5;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  filter: brightness(0.9);
  transform: scale(1.012);
}

figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.62rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  padding: 1.2rem var(--gutter) 0;
}

.travel-panel {
  display: grid;
  gap: 2rem;
}

.map-block {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

.map-block iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.18) saturate(0.86) contrast(0.98);
}

.map-overlay {
  position: absolute;
  left: 1rem;
  top: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(29, 29, 31, 0.10);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(18px) saturate(1.2);
}

.map-block p {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.map-block strong {
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 760;
  line-height: 1.1;
}

.map-block .text-button {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(1.2);
}

.text-columns {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.text-columns article {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.district-grid dd,
.travel-grid dd {
  font-size: 1.15rem;
}

.corporate-section .editorial-statement {
  margin-top: clamp(2rem, 5vw, 4rem);
}

.text-button.inverse {
  background: var(--ink);
  color: var(--inverse);
  border-color: var(--ink);
}

.text-button.inverse:hover,
.text-button.inverse:focus-visible {
  background: #000000;
  border-color: #000000;
  box-shadow: var(--shadow);
}

.text-button.inverse-muted {
  color: var(--ink);
  border-color: var(--line);
}

.text-button.inverse-muted:hover,
.text-button.inverse-muted:focus-visible {
  background: var(--ink);
  color: var(--inverse);
  border-color: var(--ink);
}

.site-footer {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin: clamp(1rem, 2.4vw, 2rem) var(--gutter);
  padding: clamp(1.5rem, 3vw, 3rem);
  color: #ffffff;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.footer-enquiry {
  display: grid;
  justify-items: start;
  gap: 0.8rem;
  padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-enquiry .eyebrow,
.footer-enquiry h2,
.footer-enquiry p {
  margin-top: 0;
  color: #ffffff;
}

.footer-enquiry h2 {
  max-width: 32ch;
  margin-bottom: 0;
}

.footer-enquiry p:not(.eyebrow) {
  max-width: 43rem;
  margin-bottom: 0.2rem;
  font-size: 1rem;
  line-height: 1.65;
}

.footer-enquiry .contact-actions {
  margin-top: 0.2rem;
}

.site-footer .contact-actions .text-button {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.76);
}

.site-footer .contact-actions .text-button:hover,
.site-footer .contact-actions .text-button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: none;
}

.site-footer .contact-actions .text-button[data-whatsapp-link],
.site-footer .contact-actions .text-button[data-whatsapp-link]:hover,
.site-footer .contact-actions .text-button[data-whatsapp-link]:focus-visible {
  background: var(--acid);
  color: var(--ink);
  border-color: var(--acid);
}

.site-footer-meta {
  display: grid;
  gap: 0.25rem;
  color: #ffffff;
}

.site-footer-meta strong {
  color: #ffffff;
}

.site-footer a {
  width: fit-content;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.site-footer small {
  color: #ffffff;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem;
  color: var(--inverse);
  background: rgba(14, 13, 12, 0.96);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  grid-column: 1 / -1;
  grid-row: 2;
  min-height: 0;
  display: grid;
  align-content: center;
  place-items: center;
  margin: 0;
}

.lightbox img {
  max-height: calc(100svh - 12rem);
  width: auto;
  object-fit: contain;
}

.lightbox figcaption {
  position: static;
  margin-top: 1rem;
  background: transparent;
  text-align: center;
}

.lightbox button {
  min-height: 2.75rem;
  color: var(--inverse);
  background: transparent;
  border: 1px solid rgba(247, 242, 233, 0.35);
  cursor: pointer;
}

.lightbox-close {
  grid-column: 1 / -1;
  justify-self: end;
  padding: 0.65rem 0.9rem;
}

.lightbox-nav {
  grid-row: 3;
  padding: 0.75rem 1rem;
}

.lightbox-nav.prev {
  justify-self: start;
}

.lightbox-nav.next {
  justify-self: end;
}

@media (min-width: 700px) {
  .nav-shell {
    grid-template-columns: auto 1fr;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    grid-column: auto;
    display: flex;
    justify-content: flex-end;
    gap: clamp(1rem, 3vw, 2.2rem);
    padding: 0;
    border-top: 0;
  }

  .summary-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .summary-strip div {
    border-top: 0;
    border-left: 1px solid rgba(29, 29, 31, 0.10);
  }

  .summary-strip div:first-child {
    border-left: 0;
  }

  .overview-section {
    grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  }

  .location-section {
    grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 1.45fr);
  }

  .facts-grid,
  .travel-grid,
  .district-grid,
  .amenity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facts-grid div,
  .travel-grid div,
  .district-grid div {
    padding: 1.45rem 1.5rem 1.45rem 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    align-items: stretch;
  }

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

  .gallery-portrait {
    grid-column: span 1;
  }

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

  .gallery-portrait + .gallery-item {
    grid-column: span 4;
  }

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

  .text-columns article {
    min-height: 14rem;
    padding: 1.5rem 1.5rem 1.5rem 0;
    border-right: 1px solid var(--line);
  }

  .text-columns article:not(:first-child) {
    padding-left: 1.5rem;
  }

  .text-columns article:last-child {
    border-right: 0;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) auto;
    align-items: start;
  }

  .footer-enquiry {
    grid-column: 1 / -1;
  }

  .lightbox {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto 1fr;
    padding: 1.5rem;
  }

  .lightbox-close {
    grid-column: 1 / -1;
  }

  .lightbox-nav {
    align-self: center;
  }

  .lightbox-nav.next {
    margin-top: 0;
  }
}

@media (min-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-media {
    height: min(74svh, 720px);
  }

  .hero-content {
    margin-left: clamp(1rem, 3vw, 3.5rem);
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.9rem;
  }

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

  .compact-facts div {
    grid-template-columns: 1fr;
  }

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

  .home-amenity-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 5vw, 5rem);
  }

  .location-section {
    grid-template-columns: minmax(22rem, 0.8fr) minmax(0, 1.2fr);
  }

  .travel-panel {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

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

  .map-block {
    min-height: 100%;
  }

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

  .gallery-item {
    grid-column: span 3;
  }

  .gallery-portrait {
    grid-column: span 3;
  }

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

  .gallery-wide img {
    height: 100%;
    aspect-ratio: auto;
  }

  .gallery-portrait + .gallery-item {
    grid-column: span 3;
  }

  .gallery-item:nth-child(6) {
    grid-column: span 3;
  }

  .gallery-item:nth-child(8),
  .gallery-item:nth-child(9) {
    grid-column: span 6;
  }

  .gallery-item:nth-child(11),
  .gallery-item:nth-child(12) {
    grid-column: span 6;
  }
}

@media (min-width: 1500px) {
  :root {
    --gutter: 5.5rem;
  }

  .hero,
  .section,
  .site-footer {
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer {
    width: calc(100% - 2 * var(--gutter));
  }

  .site-header {
    background: var(--bg);
  }
}

@media (min-width: 700px) {
  .hero-content {
    width: min(400px, calc(100% - 2rem));
    margin: 0 0 2rem 0.9rem;
    padding: 1.1rem;
    background: rgba(255, 255, 255, 0.74);
    border-radius: 18px;
    backdrop-filter: blur(16px) saturate(1.15);
  }

  .hero-content > .eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .hero-content h1 {
    max-width: 24ch;
    margin-bottom: 0.75rem;
    font-size: 1.9rem;
    line-height: 1.04;
  }

  .hero-content .hero-copy {
    margin-bottom: 0.8rem;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .hero-content .summary-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 0.75rem;
    border-radius: 12px;
  }

  .hero-content .summary-strip div {
    min-height: 2.6rem;
    padding: 0.5rem 0.55rem;
  }

  .hero-content dt {
    font-size: 0.63rem;
  }

  .hero-content dd {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .hero-content .hero-actions {
    gap: 0.5rem;
  }

  .hero-content .text-button {
    min-height: 2.4rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem;
  }
}

@media (min-width: 700px) and (max-width: 1099px) {
  .hero-content {
    width: min(380px, calc(100% - 2rem));
  }
}

@media (max-width: 420px) {
  .text-button {
    width: 100%;
  }

  h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 699px) {
  .hero {
    display: block;
    min-height: 0;
    padding-top: 0.9rem;
  }

  .hero-media {
    min-height: 0;
    height: 46svh;
    border-radius: 22px;
  }

  .hero-content {
    position: relative;
    width: auto;
    margin: -3.4rem 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.78);
  }

  .enquiry-card {
    position: static;
  }

  .compact-facts div {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
    font-size: 2rem;
    line-height: 1.05;
  }

  h2 {
    font-size: 2rem;
  }
}

.listing-gallery-section {
  padding: 1.5rem var(--gutter) 0.5rem;
  border-top: 0;
}

.listing-gallery-shell {
  position: relative;
  max-width: 82rem;
  margin: 0 auto;
}

.listing-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(9.5rem, 14vw, 13rem);
  gap: 0.5rem;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
}

.listing-gallery-grid .gallery-item {
  grid-column: span 1;
  grid-row: span 1;
  min-width: 0;
  border-radius: 0;
}

.listing-gallery-grid .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.listing-gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.listing-gallery-grid .gallery-item figcaption {
  display: none;
}

.listing-gallery-grid .preview-only {
  cursor: default;
}

.listing-gallery-grid .preview-only:hover img {
  filter: none;
  transform: none;
}

.listing-gallery-grid:not(.is-expanded) .gallery-item:not(:first-child):not(.is-collapsed) {
  display: block;
}

.listing-gallery-grid.is-expanded + .gallery-actions {
  position: static;
  justify-content: flex-end;
  padding: 0.9rem 0 0;
}

.listing-gallery-shell > .gallery-actions {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0;
}

.listing-gallery-shell > .gallery-actions .text-button {
  min-height: 2.6rem;
  padding: 0.65rem 0.9rem;
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  font-size: 0.8rem;
}

.listing-gallery-grid.is-expanded .gallery-item.is-collapsed {
  display: block;
}

.photo-tour {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: 4.25rem minmax(0, 1fr);
  color: var(--ink);
  background: #ffffff;
}

.photo-tour[hidden] {
  display: none;
}

.photo-tour-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.photo-tour-header strong {
  justify-self: center;
  font-size: 0.95rem;
}

.photo-tour-header span {
  justify-self: end;
  color: var(--muted);
  font-size: 0.85rem;
}

.photo-tour-close {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
}

.photo-tour-scroll {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
}

.photo-tour-content {
  max-width: 64rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

.photo-tour-content > h1 {
  max-width: none;
  margin-bottom: 1.25rem;
  font-size: 2rem;
}

.photo-tour-nav {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  margin: 0 -0.25rem 1.5rem;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.photo-tour-nav::-webkit-scrollbar {
  display: none;
}

.photo-tour-category {
  flex: 0 0 auto;
  min-height: 3rem;
  padding: 0.75rem 0.8rem;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.photo-tour-category:hover,
.photo-tour-category.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.photo-tour-group {
  padding: 1.5rem 0 2.25rem;
  border-top: 1px solid var(--line);
  scroll-margin-top: 4.5rem;
}

.photo-tour-group h2 {
  max-width: none;
  margin-bottom: 1rem;
  font-size: 1.35rem;
  line-height: 1.25;
}

.photo-tour-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.photo-tour-tile {
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: #f2f2f0;
  border: 0;
  border-radius: 9px;
  cursor: zoom-in;
}

.photo-tour-tile:first-child {
  grid-column: 1 / -1;
}

.photo-tour-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.photo-tour-tile:first-child img {
  aspect-ratio: 16 / 8;
}

.photo-tour-tile:hover img,
.photo-tour-tile:focus-visible img {
  transform: scale(1.015);
}

.listing-overview {
  padding-top: 1.25rem;
  border-top: 0;
}

.listing-overview-copy h1 {
  max-width: 22ch;
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  line-height: 1.08;
}

.listing-eyebrow {
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.045em;
}

.listing-summary {
  margin: 0 0 2rem;
  background: #ffffff;
  border-radius: 12px;
}

.listing-summary div {
  min-height: 4.3rem;
  padding: 0.65rem 0.8rem;
  border-top: 0;
  border-left: 1px solid var(--line);
}

.listing-summary div:first-child {
  border-left: 0;
}

.listing-summary dt {
  font-size: 0.68rem;
}

.listing-summary dd {
  font-size: 0.9rem;
}

.listing-overview-copy h2 {
  max-width: 24ch;
  margin-bottom: 0.8rem;
  font-size: 1.55rem;
  line-height: 1.2;
}

.listing-overview .enquiry-card {
  top: 5.5rem;
  gap: 0.9rem;
  padding: 1.35rem;
  background: #ffffff;
  border-color: var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(29, 29, 31, 0.06);
  backdrop-filter: none;
}

.listing-overview .enquiry-card .text-button {
  width: 100%;
  min-height: 2.9rem;
  border-radius: 9px;
}

@media (max-width: 699px) {
  .listing-gallery-section {
    padding: 0.75rem 0 0;
  }

  .listing-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 18rem;
    grid-auto-rows: 8rem;
    gap: 0.35rem;
    border-radius: 0;
  }

  .listing-gallery-grid .gallery-item:first-child {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .listing-gallery-grid:not(.is-expanded) .gallery-item:not(:first-child) {
    display: none;
  }

  .listing-gallery-grid.is-expanded .gallery-item:not(:first-child) {
    display: block;
  }

  .listing-gallery-shell > .gallery-actions {
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .listing-overview {
    padding-top: 0.95rem;
  }

  .listing-overview-copy h1 {
    font-size: 2rem;
  }

  .listing-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1.75rem;
  }

  .listing-summary div:nth-child(odd) {
    border-left: 0;
  }

  .listing-summary div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .listing-overview .enquiry-card {
    position: static;
  }

  .photo-tour-header {
    padding: 0 0.9rem;
  }

  .photo-tour-content {
    padding: 1.5rem 1rem 3rem;
  }

  .photo-tour-content > h1 {
    font-size: 1.75rem;
  }

  .photo-tour-category {
    padding-right: 0.65rem;
    padding-left: 0.65rem;
    font-size: 0.78rem;
  }

  .photo-tour-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .photo-tour-tile:first-child {
    grid-column: auto;
  }

  .photo-tour-tile:first-child img {
    aspect-ratio: 4 / 3;
  }
}
