:root {
  --ink: #17221c;
  --muted: #5b665f;
  --paper: #f7f3eb;
  --soft: #e8dfd1;
  --stone: #b9aa95;
  --forest: #20342a;
  --deep: #0b130f;
  --white: #fffaf1;
  --line: rgba(23, 34, 28, 0.14);
  --shadow: 0 24px 70px rgba(11, 19, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans Thai", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 243, 235, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 40px rgba(11, 19, 15, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  gap: 1px;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  min-width: 152px;
}

.brand span {
  font-size: 18px;
}

.brand small {
  font-family: inherit;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.78;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.nav-cta {
  border: 1px solid currentColor;
  padding: 10px 14px;
  border-radius: 2px;
}

.lang-link {
  font-weight: 800;
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--deep);
}

.hero picture,
.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-shade {
  background: linear-gradient(180deg, rgba(11, 19, 15, 0.2), rgba(11, 19, 15, 0.18) 35%, rgba(11, 19, 15, 0.76));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 76px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(58px, 13vw, 154px);
}

h2 {
  font-size: clamp(34px, 6vw, 74px);
}

h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

:lang(th) body {
  font-family: "Noto Sans Thai", "Th Sarabun New", "Leelawadee UI", Tahoma, sans-serif;
}

:lang(th) h1,
:lang(th) h2,
:lang(th) .hero-subtitle,
:lang(th) .brand {
  font-family: "Noto Serif Thai", "Noto Sans Thai", "Th Sarabun New", Tahoma, sans-serif;
  line-height: 1.08;
}

:lang(th) .nav,
:lang(th) .eyebrow,
:lang(th) .hero-badges span {
  letter-spacing: 0.03em;
}

:lang(th) .hero-copy,
:lang(th) .section-copy,
:lang(th) .section-heading p,
:lang(th) .residence-caption-copy p:last-child {
  line-height: 1.75;
}

.hero-subtitle {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(22px, 3vw, 34px);
  font-family: Georgia, "Times New Roman", serif;
}

.hero-position {
  max-width: 760px;
  margin-bottom: 18px;
  color: rgba(255, 250, 241, 0.9);
  font-size: clamp(17px, 2.2vw, 24px);
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 20px;
  color: rgba(255, 250, 241, 0.88);
  font-size: clamp(16px, 2vw, 20px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 250, 241, 0.5);
  background: rgba(255, 250, 241, 0.08);
  color: rgba(255, 250, 241, 0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-actions,
.final-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


.hero-brochure-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 250, 241, 0.48);
}

.hero-brochure-link:hover,
.hero-brochure-link:focus-visible {
  color: var(--white);
  border-bottom-color: var(--white);
}

.hero-contact {
  margin: 18px 0 0;
  color: rgba(255, 250, 241, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.button.secondary {
  color: var(--white);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--forest);
  color: var(--white);
}

.trust-bar div,
.performance-grid div,
.infra-grid div {
  padding: 24px 18px;
  border-right: 1px solid rgba(255, 250, 241, 0.16);
}

.trust-bar strong,
.performance-grid strong,
.infra-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.05;
}

.trust-bar span,
.performance-grid span,
.infra-grid span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sale-trust-strip {
  padding: 18px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.sale-trust-strip div {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 5px;
}

.sale-trust-strip strong {
  color: var(--ink);
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 600;
}

.sale-trust-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section,
.gallery-section,
.spec-section,
.hospitality,
.site-plan-section,
.floorplans-section,
.brochure-section,
.estate-dossier,
.enquiry-section,
.final-cta {
  padding: clamp(70px, 10vw, 140px) clamp(18px, 5vw, 70px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 8vw, 110px);
  align-items: start;
}

.section-copy {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.section-subtitle {
  max-width: 520px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.12;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.site-plan-section {
  border-top: 1px solid var(--line);
  background: #efe7da;
}

.site-plan-figure {
  margin: 0;
}

.site-plan-media {
  position: relative;
  display: block;
  max-width: min(920px, 100%);
  margin-inline: auto;
  overflow: hidden;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.site-plan-media picture {
  display: block;
}

.site-plan-figure img {
  aspect-ratio: 1086 / 1448;
  object-fit: cover;
}

.site-plan-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-plan-labels span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  max-width: 170px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 250, 241, 0.66);
  background: rgba(11, 19, 15, 0.48);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.site-plan-figure figcaption {
  max-width: min(920px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.floorplans-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.floorplans-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.floorplan-stats {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(120px, 0.7fr));
  margin: 0 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.68);
}

.floorplan-stats div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.floorplan-stats div:last-child {
  border-right: 0;
}

.floorplan-stats span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floorplan-stats strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  line-height: 1;
}

.floorplan-measurement-note {
  max-width: 980px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 15px;
}

.floorplan-card {
  margin: 0;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 18px 48px rgba(11, 19, 15, 0.08);
}

.floorplan-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  margin-bottom: 22px;
}

.floorplan-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}

.floorplan-card figcaption p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.floorplan-image-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(23, 34, 28, 0.1);
  background: var(--white);
  cursor: zoom-in;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.floorplan-image-button::after {
  content: "View larger";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: rgba(11, 19, 15, 0.72);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 180ms ease;
}

.floorplan-image-button:hover,
.floorplan-image-button:focus-visible {
  border-color: rgba(23, 34, 28, 0.24);
  box-shadow: 0 16px 38px rgba(11, 19, 15, 0.12);
  transform: translateY(-2px);
}

.floorplan-image-button:hover::after,
.floorplan-image-button:focus-visible::after {
  opacity: 1;
}

.floorplan-image-button img {
  width: 100%;
  height: clamp(360px, 46vw, 720px);
  object-fit: contain;
  background: var(--white);
}

.floorplans-helper {
  margin: -14px 0 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floorplans-note {
  max-width: 820px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 250px;
  padding: 0;
  border: 0;
  background: var(--deep);
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 520px;
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 520px;
}

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

.story-section {
  padding: clamp(70px, 10vw, 140px) clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--line);
}

.residence-arrival {
  padding: 0 clamp(18px, 5vw, 70px) clamp(70px, 10vw, 140px);
}

.arrival-media {
  position: relative;
  min-height: clamp(360px, 58vw, 760px);
  overflow: hidden;
  background: var(--deep);
}

.arrival-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 58vw, 760px);
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
}

.arrival-image-base {
  z-index: 0;
  animation: arrivalBaseDrift 14s ease-in-out infinite;
}

.arrival-image-fade {
  z-index: 1;
  opacity: 0;
  animation: arrivalPoolFade 14s ease-in-out infinite;
}

@keyframes arrivalPoolFade {
  0%,
  35% {
    opacity: 0;
    transform: scale(1.01);
  }

  50%,
  85% {
    opacity: 1;
    transform: scale(1.035);
  }

  100% {
    opacity: 0;
    transform: scale(1.01);
  }
}

@keyframes arrivalBaseDrift {
  0%,
  35% {
    transform: scale(1.01);
  }

  50%,
  85% {
    transform: scale(1.025);
  }

  100% {
    transform: scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  .arrival-image-base,
  .arrival-image-fade {
    animation: none;
    transform: none;
  }

  .arrival-image-fade {
    opacity: 0.45;
  }
}

.residence-caption {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(32px, 7vw, 120px);
  padding-top: clamp(34px, 5vw, 64px);
}

.residence-caption h2 {
  margin-bottom: 0;
  max-width: 820px;
  font-size: clamp(34px, 4.6vw, 78px);
  line-height: 0.96;
}

.residence-caption-copy {
  max-width: 520px;
  padding-top: 6px;
}

.residence-caption-copy p:last-child {
  margin-top: clamp(40px, 10vw, 150px);
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.55;
}

.story-section:nth-of-type(even) {
  background: #efe7da;
}

.editorial-images {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.editorial-images img {
  min-height: 360px;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.editorial-images img:first-child {
  min-height: 520px;
}

.editorial-images.three {
  grid-template-columns: 1.35fr 1fr 0.85fr;
}

.lounge-section .editorial-images {
  grid-template-columns: 1.35fr 1fr 1fr;
}

.lounge-section .editorial-images img,
.teak-section .editorial-images img {
  object-position: center center;
}

.lounge-section .editorial-images img:first-child {
  object-position: center 55%;
}

.teak-section .editorial-images img:first-child {
  object-position: center 48%;
}

.lifestyle-grid,
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lifestyle-grid article {
  background: var(--white);
  border: 1px solid var(--line);
}

.lifestyle-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lifestyle-grid h3,
.lifestyle-grid p {
  padding-inline: 22px;
}

.lifestyle-grid h3 {
  margin: 22px 0 8px;
}

.lifestyle-grid p {
  margin-bottom: 24px;
  color: var(--muted);
}

.spec-section {
  background: #efe7da;
}

.spec-grid > div {
  padding: 30px;
  background: rgba(255, 250, 241, 0.66);
  border: 1px solid var(--line);
}

.feature-card-grid > div {
  min-height: 164px;
}

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

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

li + li {
  margin-top: 8px;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(70px, 10vw, 140px) clamp(18px, 5vw, 70px);
  background: var(--forest);
  color: var(--white);
}

.feature-panel img {
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-panel p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.78);
  font-size: 18px;
}

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

.feature-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 250, 241, 0.18);
}

dt {
  font-weight: 700;
}

dd {
  margin: 0;
  color: rgba(255, 250, 241, 0.72);
  text-align: right;
}

.infra-grid,
.performance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--forest);
  color: var(--white);
}

.infra-grid div,
.performance-grid div {
  border-bottom: 1px solid rgba(255, 250, 241, 0.16);
}

.hospitality {
  background: var(--ink);
  color: var(--white);
}

.hospitality .section-heading p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.76);
}


.ownership-options {
  margin-top: clamp(34px, 6vw, 72px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.56);
}

.ownership-options-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.ownership-options-heading h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.05;
}

.ownership-options-heading p:not(.eyebrow),
.ownership-note {
  color: var(--muted);
  font-size: 15px;
}

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

.ownership-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(56, 45, 34, 0.14);
  background: rgba(247, 243, 235, 0.72);
}

.ownership-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--stone);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ownership-card h4 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.08;
}

.ownership-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.ownership-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.review-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 0 0 28px;
}

.review-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  background: rgba(255, 250, 241, 0.08);
  box-shadow: 0 18px 46px rgba(11, 19, 15, 0.16);
}

.review-stars {
  color: rgba(255, 250, 241, 0.72);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.review-card blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.2;
}

.review-card footer {
  display: grid;
  gap: 3px;
}

.review-card footer strong {
  font-size: 15px;
}

.review-card footer span {
  color: rgba(255, 250, 241, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-source {
  margin: -6px 0 28px;
  color: rgba(255, 250, 241, 0.62);
  font-size: 13px;
}

.review-source a {
  border-bottom: 1px solid rgba(255, 250, 241, 0.38);
}

.performance-note {
  max-width: 860px;
  margin: 18px 0 0;
  color: rgba(255, 250, 241, 0.66);
  font-size: 13px;
}

.performance-grid .wide {
  grid-column: span 3;
}

.location {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.1fr);
  background: var(--paper);
  color: var(--ink);
}

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

.location-points {
  display: grid;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.location-points li {
  position: relative;
  padding-left: 1.25rem;
}

.location-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

.location-map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  margin-top: 1.5rem;
  border: 1px dashed rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}


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

.brochure-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.62);
}

.brochure-card .section-heading {
  max-width: 720px;
  margin-bottom: 0;
  text-align: left;
}

.brochure-card .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
}

.brochure-file-card {
  display: grid;
  min-height: 180px;
  place-items: center;
  padding: 24px;
  border: 1px solid rgba(56, 45, 34, 0.18);
  background: rgba(247, 243, 235, 0.72);
  color: var(--stone);
  text-align: center;
}

.brochure-file-card span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.estate-dossier {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.estate-dossier-intro {
  position: sticky;
  top: 112px;
}

.estate-dossier-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}


.estate-dossier-intro .estate-dossier-note {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

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

.estate-dossier ul {
  columns: 2;
  align-self: end;
}

.estate-dossier-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.58);
}

.estate-dossier-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--stone);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.estate-dossier-card h3 {
  max-width: 420px;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.05;
}

.estate-dossier-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.complete-estate {
  background: #efe7da;
}

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

.enquiry-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.72);
}

.contact-line {
  font-size: 14px;
}

.contact-line a {
  border-bottom: 1px solid currentColor;
}

.line-contact-card {
  display: inline-grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 420px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  background: rgba(255, 250, 241, 0.08);
  color: var(--white);
  text-align: left;
}

.line-contact-card img {
  width: 82px;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
}

.line-contact-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.line-contact-card span {
  display: block;
  color: rgba(255, 250, 241, 0.72);
  font-size: 14px;
  line-height: 1.35;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enquiry-form .full,
.enquiry-form button {
  grid-column: 1 / -1;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 0;
  background: rgba(255, 250, 241, 0.08);
  color: var(--white);
  font: inherit;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  padding: 14px 13px;
}

.enquiry-form select option {
  color: var(--ink);
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form button {
  width: fit-content;
  margin-top: 8px;
}

.final-cta {
  flex-direction: column;
  align-items: flex-start;
  background: var(--forest);
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 250, 241, 0.76);
  font-size: 18px;
}

.final-cta .contact-line {
  font-size: 14px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  padding: 26px clamp(18px, 4vw, 54px);
  background: var(--deep);
  color: rgba(255, 250, 241, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  border-bottom: 1px solid rgba(255, 250, 241, 0.38);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 64px 18px 24px;
  background: rgba(11, 19, 15, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1180px, 100%);
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 250, 241, 0.7);
  background: transparent;
  color: var(--white);
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: rgba(247, 243, 235, 0.98);
    color: var(--ink);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .trust-bar,
  .split,
  .residence-caption,
  .feature-panel,
  .brochure-card,
  .estate-dossier {
    grid-template-columns: 1fr;
  }

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

  .residence-caption-copy p:last-child {
    margin-top: 24px;
  }

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

  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 2;
    grid-row: auto;
    min-height: 360px;
  }

  .lifestyle-grid,
  .spec-grid,
  .floorplans-list,
  .floorplan-stats,
  .editorial-images,
  .editorial-images.three,
  .infra-grid,
  .performance-grid,
  .ownership-grid,
  .review-quotes,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .editorial-images img,
  .editorial-images img:first-child {
    min-height: 320px;
  }

  .performance-grid .wide {
    grid-column: auto;
  }

  .estate-dossier-intro {
    position: static;
  }

  .estate-dossier-items {
    grid-template-columns: 1fr;
  }

  .estate-dossier ul {
    columns: 1;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-bottom: 44px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-brochure-link {
    max-width: 100%;
    font-size: 11px;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: 32ch;
    overflow-wrap: break-word;
  }

  .hero-subtitle {
    max-width: 30ch;
  }

  .hero-badges {
    display: grid;
  }

  .site-plan-labels span {
    max-width: 118px;
    padding: 5px 7px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .site-plan-labels {
    display: none;
  }

  .floorplan-card figcaption {
    display: grid;
    gap: 8px;
  }

  .floorplans-section h2 {
    max-width: 11ch;
  }

  .floorplan-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .floorplan-stats div:last-child {
    border-bottom: 0;
  }

  .floorplan-card figcaption p {
    text-align: left;
  }

  .floorplan-image-button img {
    height: auto;
  }

  .button {
    width: 100%;
  }

  .trust-bar,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    min-height: 300px;
  }

  .feature-panel img {
    min-height: 300px;
  }
}
