@font-face {
  font-family: ArialLocal;
  src: url("../fonts/arial/ARIAL.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: ArialLocal;
  src: url("../fonts/arial/ARIALBD.TTF") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --cyan: #00b8d4;
  --ink: #111a2c;
  --white: #fff;
  --muted: #d4d6dd;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: ArialLocal, Arial, sans-serif;
  font-weight: 400;
  color: var(--white);
  background: #080f20;
}
button,
input,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-weight: 600;
}
h1,
h2,
strong {
  font-weight: 600;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 5px;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 10;
  padding: 12px 20px;
  background: white;
  color: var(--ink);
  border-radius: 8px;
}
.skip-link:focus {
  top: 16px;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 24px 100px;
  overflow: hidden;
}
.hero-image,
.hero-image img,
.hero::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image {
  z-index: -2;
}
.hero-image img {
  object-fit: cover;
  object-position: center center;
}
.hero::after {
  content: "";
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(15, 18, 30, 0.69) 0%,
    rgba(10, 17, 30, 0.62) 47%,
    rgba(3, 9, 25, 0.96) 100%
  );
}
.header {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 48px));
  min-height: 68px;
  padding: 12px 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #f8f8f9;
  border: 1px solid #dedee1;
  border-radius: 60px;
  color: var(--ink);
  z-index: 3;
}
.logo {
  display: flex;
  flex-shrink: 0;
}
.logo img {
  width: 150px;
  height: auto;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}
.navigation a,
.navigation button {
  border: 0;
  background: none;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: #263248;
  white-space: nowrap;
  transition: color 0.2s;
}
.navigation a:hover,
.navigation button:hover {
  color: #008fa9;
}
.button {
  border: 1px solid transparent;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.header-cta {
  background: #000;
  color: white;
  padding: 12px 24px;
  white-space: nowrap;
}
.header-cta:hover {
  background: #183344;
}
.menu-toggle {
  display: none;
}
.hero-content {
  width: 100%;
  max-width: 850px;
  text-align: center;
  margin-top: 14px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid #06677b;
  border-radius: 40px;
  background: rgba(0, 58, 77, 0.78);
  color: #40dbf0;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 600;
}
.status-dot {
  height: 8px;
  width: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cyan);
}
h1 {
  font-size: clamp(42px, 3.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -1.5px;
  margin: 25px 0 24px;
}
.hero-description {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 auto;
  max-width: 780px;
}
.hero-description strong {
  color: #42d9ed;
  white-space: nowrap;
}
.highlights {
  padding: 0;
  margin: 25px 0 32px;
  list-style: none;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.highlights li {
  border: 1px solid #334259;
  background: rgba(15, 24, 42, 0.88);
  border-radius: 30px;
  padding: 8px 15px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  color: #d4d9e3;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.button-primary {
  background: var(--cyan);
  color: #031624;
  box-shadow: 0 6px 24px #00b8d41a;
}
.button-primary:hover {
  background: #39d0e5;
  box-shadow: 0 6px 28px #00b8d438;
}
.circle-icon {
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}
.button-glass {
  color: #f4f5f7;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff40;
  backdrop-filter: blur(12px);
  min-width: 180px;
}
.button-glass:hover {
  background: rgba(255, 255, 255, 0.2);
}
.dialog {
  width: min(540px, calc(100% - 32px));
  max-height: calc(100svh - 48px);
  padding: 38px;
  border: 1px solid #dde6e9;
  border-radius: 24px;
  color: var(--ink);
  background: #fafcfc;
  box-shadow: 0 24px 100px #0005;
}
.dialog::backdrop {
  background: #040b1bba;
  backdrop-filter: blur(6px);
}
.dialog-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: #eaf0f2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
}
.dialog-label {
  color: #00859b;
  font-size: 11px;
  letter-spacing: 1.7px;
  font-weight: 600;
  margin: 0 0 12px;
}
.dialog h2 {
  font-size: 30px;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin: 0 0 18px;
}
.dialog-intro,
#info-content {
  font-size: 15px;
  line-height: 1.6;
  color: #586275;
}
.dialog-enquire {
  margin-top: 20px;
}
#info-content ul {
  padding-left: 20px;
}
#info-content li {
  margin: 9px 0;
}
#info-content details {
  border-bottom: 1px solid #dce4e8;
  padding: 12px 0;
}
#info-content summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}
label {
  display: block;
  margin: 16px 0 7px;
  font-size: 13px;
  font-weight: 600;
}
input,
select {
  width: 100%;
  min-width: 0;
  padding: 13px 12px;
  border: 1px solid #d5dee3;
  background: #fff;
  border-radius: 9px;
  color: var(--ink);
  font-size: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-submit {
  width: 100%;
  margin-top: 22px;
}
.form-note {
  font-size: 12px;
  line-height: 1.6;
  color: #73808e;
  margin-bottom: 0;
}
#form-status {
  font-size: 13px;
  line-height: 1.5;
  color: #007889;
}
body.dialog-open {
  overflow: hidden;
}
@media (min-width: 1600px) {
  .header {
    width: 1180px;
  }
  .hero-content {
    margin-top: 15px;
  }
}
@media (max-width: 1100px) {
  .header {
    gap: 20px;
    padding: 12px 22px;
  }
  .navigation {
    gap: 20px;
  }
  .logo img {
    width: 140px;
  }
  .header-cta {
    padding: 12px 20px;
  }
}
@media (max-width: 900px) {
  .header {
    width: calc(100% - 40px);
    min-height: 64px;
    gap: 16px;
    padding: 12px 20px;
  }
  .header-cta {
    margin-left: auto;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    border: 0;
    background: none;
    padding: 6px;
  }
  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .navigation {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 14px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: 24px;
    background: #f8f8f9;
    box-shadow: 0 14px 40px #0003;
  }
  .navigation.is-open {
    display: flex;
  }
  .navigation a,
  .navigation button {
    padding: 13px 0;
    text-align: left;
  }
  .hero {
    padding: 130px 24px 90px;
  }
  h1 {
    font-size: 54px;
  }
  .hero-description {
    font-size: 17px;
  }
  .desktop-break {
    display: none;
  }
}
@media (max-width: 600px) {
  .header {
    top: 14px;
    width: calc(100% - 28px);
    padding: 10px 15px;
    min-height: 60px;
    gap: 10px;
  }
  .logo img {
    width: 125px;
  }
  .header-cta {
    font-size: 11px;
    padding: 11px 14px;
  }
  .menu-toggle {
    width: 30px;
  }
  .hero {
    min-height: 100svh;
    padding: 135px 20px 80px;
  }
  .hero-image img {
    object-position: 50% center;
  }
  .hero-content {
    margin-top: 0;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.5px;
    padding: 8px 10px;
    gap: 6px;
  }
  .status-dot {
    width: 6px;
    height: 6px;
  }
  h1 {
    font-size: clamp(35px, 8.4vw, 49px);
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 24px 0 22px;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.75;
    max-width: 390px;
  }
  .highlights {
    gap: 8px;
    margin: 24px auto 28px;
    max-width: 350px;
  }
  .highlights li {
    font-size: 10px;
    padding: 8px 11px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 330px;
    margin: auto;
    gap: 12px;
  }
  .button {
    padding: 16px 22px;
    font-size: 13px;
  }
  .header-cta {
    padding: 11px 14px;
    font-size: 11px;
  }
  .dialog {
    padding: 32px 22px;
  }
  .dialog h2 {
    font-size: 27px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-height: 600px) and (min-width: 601px) {
  .hero {
    padding-top: 130px;
    padding-bottom: 50px;
  }
  .hero-content {
    margin: 0;
  }
  h1 {
    font-size: 44px;
    margin: 18px 0;
  }
  .highlights {
    margin: 18px 0 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* About the project */
.about {
  background: #f7f6f2;
  color: #183238;
  padding: 104px 32px 80px;
  scroll-margin-top: 28px;
}
.about-container {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
}
.about-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: #66817e;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.section-kicker span {
  width: 30px;
  height: 1px;
  background: #9d9279;
}
.about h2 {
  margin: 0;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 400;
  letter-spacing: -1.7px;
  line-height: 1.18;
}
.about h2 span {
  color: #7a918c;
}
.about-location {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin: 0 0 5px;
  color: #4c6665;
  font-size: 12px;
  line-height: 1.8;
}
.about-location svg {
  color: #998d74;
  flex-shrink: 0;
}
.about-location strong {
  color: #7b827e;
  font-size: 11px;
  font-weight: 400;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  align-items: center;
  gap: 64px;
}
.about-visual {
  min-width: 0;
  margin: 0;
}
.about-image-frame {
  position: relative;
  padding: 10px;
  border: 1px solid #dcded5;
  border-radius: 4px;
}
.about-image-frame::before {
  content: "";
  position: absolute;
  inset: 26px -15px -16px 25px;
  border: 1px solid #d8d4c8;
  border-radius: 4px;
  pointer-events: none;
}
.about-image-frame img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.25;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
}
.about-visual figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: #808980;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.4px;
}
.caption-line {
  width: 22px;
  height: 1px;
  flex-shrink: 0;
  background: #a59980;
}
.about-copy {
  min-width: 0;
}
.about-copy p {
  margin: 0 0 17px;
  color: #6c746f;
  font-size: 14px;
  line-height: 1.85;
}
.about-copy .about-lead {
  margin-bottom: 22px;
  color: #2a4749;
  font-size: 18px;
  line-height: 1.65;
}
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #244b4d;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
}
.about-cta-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid #b6c5be;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.about-cta:hover .about-cta-icon {
  background: #244b4d;
  color: #fff;
  transform: translateX(3px);
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 58px 0 0;
  padding-top: 32px;
  border-top: 1px solid #dcded5;
}
.about-facts > div {
  display: flex;
  flex-direction: column-reverse;
  gap: 11px;
  padding: 0 32px;
  border-left: 1px solid #dcded5;
}
.about-facts > div:first-child {
  padding-left: 0;
  border-left: 0;
}
.about-facts > div:last-child {
  padding-right: 0;
}
.about-facts dt {
  color: #81877c;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.6;
}
.about-facts dd {
  margin: 0;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
}
.about-facts dd span {
  margin-left: 4px;
  font-size: 14px;
  letter-spacing: 0;
  color: #6d7e76;
}
.about-fact-lifestyle dd {
  font-size: 30px;
  line-height: 1.27;
}
@media (max-width: 1100px) {
  .about-grid {
    gap: 38px;
  }
  .about-facts > div {
    padding: 0 22px;
  }
  .about-facts dd span {
    font-size: 12px;
  }
  .about-fact-lifestyle dd {
    font-size: 26px;
  }
}
@media (max-width: 900px) {
  .about {
    padding: 76px 28px 60px;
  }
  .about-heading {
    align-items: flex-start;
    margin-bottom: 36px;
  }
  .about h2 {
    font-size: 39px;
  }
  .about-location {
    margin-top: 41px;
    font-size: 11px;
  }
  .about-location strong {
    font-size: 10px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .about-image-frame img {
    aspect-ratio: 1.65;
  }
  .about-copy {
    max-width: 690px;
  }
  .about-facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
    margin-top: 40px;
  }
  .about-facts > div:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
  .about-facts dd span {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .about {
    padding: 58px 22px 48px;
  }
  .about-heading {
    flex-direction: column;
    gap: 22px;
    margin-bottom: 30px;
  }
  .section-kicker {
    margin-bottom: 19px;
    font-size: 10px;
    letter-spacing: 1.8px;
  }
  .about h2 {
    font-size: clamp(29px, 7.5vw, 40px);
    letter-spacing: -1px;
  }
  .about-location {
    margin: 0;
    font-size: 11px;
  }
  .about-image-frame {
    padding: 7px;
  }
  .about-image-frame::before {
    inset: 20px -8px -10px 18px;
  }
  .about-image-frame img {
    aspect-ratio: 1.35;
  }
  .about-visual figcaption {
    margin-top: 22px;
    font-size: 9px;
  }
  .about-grid {
    gap: 30px;
  }
  .about-copy .about-lead {
    font-size: 17px;
  }
  .about-copy p {
    font-size: 14px;
    line-height: 1.8;
  }
  .about-cta {
    gap: 16px;
  }
  .about-facts {
    padding-top: 26px;
    gap: 26px 0;
  }
  .about-facts > div {
    padding: 0 16px;
    gap: 9px;
  }
  .about-facts dd {
    font-size: 32px;
  }
  .about-facts dd span {
    font-size: 12px;
    margin-left: 2px;
  }
  .about-facts dt {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  .about-fact-lifestyle dd {
    font-size: 25px;
    line-height: 1.28;
  }
  .about-fact-lifestyle dd span {
    display: block;
    margin: 4px 0 0;
  }
}

/* Location & connectivity */
.location {
  padding: 100px 32px 96px;
  background: #fff;
  color: #183238;
  scroll-margin-top: 28px;
}
.location-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.location h2 {
  margin: 0;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -1.7px;
}
.location h2 span {
  color: #7a918c;
}
.location-intro {
  max-width: 285px;
  margin: 0 0 4px;
  color: #79817b;
  font-size: 14px;
  line-height: 1.8;
}
.location-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  align-items: start;
  gap: 56px;
}
.location-destinations {
  min-width: 0;
}
.destination-group + .destination-group {
  margin-top: 24px;
}
.destination-group h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 9px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.5;
  color: #446462;
}
.destination-group h3 > span {
  color: #a4967d;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.destination-list {
  margin: 0;
}
.destination-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #edf0eb;
}
.destination-list dt {
  color: #4f615c;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}
.destination-list dd {
  flex-shrink: 0;
  min-width: 81px;
  margin: 0;
  padding: 7px 10px;
  border-radius: 30px;
  background: #edf3f0;
  color: #406763;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}
.destination-list dd span {
  font-weight: 400;
  font-size: 10px;
}
.location-note {
  margin: 18px 0 0;
  color: #90968e;
  font-size: 10px;
  line-height: 1.7;
}
.location-map {
  position: sticky;
  top: 28px;
  align-self: start;
  min-width: 0;
  margin: 0;
}
.map-card {
  overflow: hidden;
  border: 1px solid #dfe6df;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 20px 50px #244b4d08;
}
.map-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid #edf0eb;
}
.map-label {
  font-size: 9px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #75867b;
}
.map-expand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  color: #365b58;
  font-size: 11px;
  transition: color 0.2s;
}
.map-expand:hover {
  color: #008fa9;
}
.map-image-link {
  display: block;
  padding: 14px;
  cursor: zoom-in;
}
.map-image-link img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100svh - 245px);
  object-fit: contain;
}
.map-address {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 26px;
  background: #1e3c3e;
  color: #f5f6f0;
}
.map-pin {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid #76918a70;
  border-radius: 50%;
  color: #c8c3a7;
}
.map-address p {
  margin: 0 0 8px;
  color: #a6b9af;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 1.6px;
}
.map-address h3 {
  margin: 0 0 5px;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1.3;
}
.map-address div > span {
  color: #aabbb4;
  font-size: 11px;
}
.map-address-mark {
  margin-left: auto;
  color: #91a49d;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -3px;
}
.location-map figcaption {
  margin-top: 16px;
  color: #90968e;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  text-align: center;
}
@media (max-width: 1100px) {
  .location-grid {
    gap: 32px;
    grid-template-columns: 1fr 1.3fr;
  }
  .destination-list dt {
    font-size: 12px;
  }
  .map-card-heading {
    padding: 18px 16px;
  }
  .map-label {
    letter-spacing: 0.8px;
  }
  .map-address {
    padding: 22px 18px;
    gap: 13px;
  }
  .map-address h3 {
    font-size: 17px;
  }
}
@media (max-width: 900px) {
  .location {
    padding: 76px 28px 60px;
  }
  .location-heading {
    gap: 28px;
    margin-bottom: 36px;
  }
  .location h2 {
    font-size: 39px;
  }
  .location-intro {
    max-width: 210px;
    font-size: 12px;
  }
  .location-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
  }
  .map-address {
    padding: 24px;
  }
  .map-address h3 {
    font-size: 20px;
  }
  .map-card-heading {
    padding: 16px 12px;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .location {
    padding: 58px 22px 48px;
  }
  .location-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
  .location h2 {
    font-size: clamp(29px, 7.5vw, 40px);
    letter-spacing: -1px;
  }
  .location-intro {
    max-width: 330px;
    font-size: 13px;
    margin: 0;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .location-map {
    position: static;
    grid-row: 1;
  }
  .map-image-link img {
    max-height: none;
  }
  .map-card-heading {
    padding: 14px 12px;
    gap: 8px;
  }
  .map-label {
    font-size: 8px;
    letter-spacing: 0.6px;
  }
  .map-expand {
    font-size: 10px;
    gap: 5px;
  }
  .map-expand svg {
    width: 13px;
  }
  .map-image-link {
    padding: 7px;
  }
  .map-address {
    padding: 20px 14px;
    gap: 11px;
  }
  .map-pin {
    width: 38px;
    height: 38px;
  }
  .map-pin svg {
    width: 18px;
  }
  .map-address p {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .map-address h3 {
    font-size: 16px;
  }
  .map-address div > span {
    font-size: 10px;
  }
  .map-address-mark {
    font-size: 32px;
  }
  .location-map figcaption {
    font-size: 9px;
  }
  .location-destinations {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .destination-list dt {
    font-size: 12px;
  }
  .destination-list > div {
    padding: 12px 0;
    gap: 12px;
  }
  .destination-list dd {
    min-width: 76px;
  }
}

/* Residences: the coastal editorial style used throughout the page. */
.residences {
  padding: 100px 32px 76px;
  background: #f7f6f2;
  color: #183238;
  scroll-margin-top: 28px;
}
.residences-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 46px;
}
.residences-heading h2 {
  margin: 0;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -1.7px;
}
.residences-heading h2 span {
  color: #7a918c;
}
.residences-intro {
  max-width: 275px;
  margin: 0 0 4px;
  color: #79817b;
  font-size: 14px;
  line-height: 1.8;
}
.residence-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #dcded5;
  border-bottom: 1px solid #dcded5;
  margin-bottom: 46px;
}
.residence-tabs button {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px 12px;
  padding: 23px 24px;
  border: 0;
  border-left: 1px solid #dcded5;
  border-radius: 0;
  background: transparent;
  text-align: left;
  color: #75867e;
  font-size: 15px;
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
}
.residence-tabs button:first-child {
  border-left: 0;
}
.tab-number {
  color: #a4967d;
  font-size: 10px;
}
.tab-area {
  grid-column: 2;
  font-size: 9px;
  letter-spacing: 1px;
  color: #90988d;
}
.residence-tabs button:hover {
  background: #eeeee7;
}
.residence-tabs button[aria-selected="true"] {
  color: #244b4d;
  background: #e9eee7;
}
.residence-tabs button[aria-selected="true"]::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: #577b72;
}
.residence-panel {
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  gap: 76px;
  align-items: center;
}
.residence-panel[hidden] {
  display: none;
}
.residence-preview,
.residence-details {
  min-width: 0;
}
.residence-detail-kicker {
  color: #8b927e;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  margin: 0 0 19px;
}
.residence-details h3 {
  font-size: clamp(29px, 2.8vw, 39px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0 0 20px;
}
.residence-description {
  margin: 0 0 28px;
  color: #768078;
  font-size: 14px;
  line-height: 1.85;
  max-width: 410px;
}
.residence-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 29px;
  padding: 22px 0;
  border-top: 1px solid #dcded5;
  border-bottom: 1px solid #dcded5;
}
.residence-specs > div + div {
  padding-left: 24px;
  border-left: 1px solid #dcded5;
}
.residence-specs dt {
  font-size: 9px;
  color: #92998b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.residence-specs dd {
  font-size: 22px;
  font-weight: 400;
  margin: 0;
  color: #355650;
}
.residence-specs dd span {
  font-size: 11px;
  color: #879186;
}
.residence-price > span {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #919887;
  margin-bottom: 10px;
}
.residence-price strong {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 400;
  letter-spacing: -0.8px;
  color: #355650;
}
.residence-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-top: 30px;
}
.residence-availability {
  border: 0;
  padding: 8px 0;
  border-bottom: 1px solid #c5ccbf;
  background: transparent;
  color: #819180;
  font-size: 11px;
  font-weight: 400;
}
.residence-availability:hover {
  color: #244b4d;
  border-color: #244b4d;
}
.residence-availability span {
  margin-left: 8px;
}
.plan-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 17px;
  color: #879380;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.floor-plan-image {
  position: relative;
  display: block;
  padding: 28px 18px 52px;
  border: 1px solid #dcded5;
  background: #f0f0e9;
  cursor: zoom-in;
}
.floor-plan-image img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}
.plan-zoom {
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-size: 10px;
  color: #698377;
}
.plan-zoom > span {
  margin-left: 9px;
}
.plan-preview-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  color: #92988c;
  font-size: 10px;
  line-height: 1.6;
}
.plan-preview-footer a {
  color: #5b796c;
}
.plan-preview-footer a:hover {
  text-decoration: underline;
}
.plan-preview-footer a span {
  margin-left: 9px;
}
.residence-area-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 410px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid #d2dbce;
  background: #e7ece2;
  color: #526f60;
}
.visual-collection {
  position: relative;
  z-index: 1;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.visual-area {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 45px 0;
}
.visual-area strong {
  font-size: clamp(85px, 9vw, 130px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -7px;
}
.visual-area > span {
  margin-top: 16px;
  font-size: 9px;
  letter-spacing: 2.3px;
}
.visual-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #9dab9260;
  font-size: 11px;
}
.visual-footer > span:last-child {
  font-size: 20px;
  color: #8c9b80;
}
.visual-waterline {
  position: absolute;
  width: 300px;
  height: 430px;
  right: -180px;
  top: 25px;
  border: 1px solid #9dab9240;
  border-radius: 50%;
  transform: rotate(25deg);
}
.visual-waterline::before,
.visual-waterline::after {
  content: "";
  position: absolute;
  inset: -22px;
  border: 1px solid #9dab9240;
  border-radius: 50%;
}
.visual-waterline::after {
  inset: -44px;
}
.residence-panel-3 .residence-area-visual {
  background: #ece6db;
  border-color: #d9cfbe;
  color: #82745c;
}
.residence-panel-3 .visual-waterline {
  top: -170px;
  right: -100px;
  width: 440px;
  height: 480px;
  transform: rotate(-25deg);
  border-color: #ab9f8740;
}
.residence-panel-3 .visual-waterline::before,
.residence-panel-3 .visual-waterline::after {
  border-color: #ab9f8740;
}
.residence-panel-penthouse .residence-area-visual {
  background: #1e3c3e;
  border-color: #1e3c3e;
  color: #d7d5bd;
}
.residence-panel-penthouse .visual-waterline {
  right: -140px;
  top: 0;
  width: 360px;
  height: 520px;
  border-color: #b1bc9b30;
}
.residence-panel-penthouse .visual-waterline::before,
.residence-panel-penthouse .visual-waterline::after {
  border-color: #b1bc9b30;
}
.residence-panel-penthouse .visual-footer {
  border-color: #b1bc9b30;
}
.residence-panel-penthouse .visual-footer > span:last-child {
  color: #b0b89c;
}
.plan-preview-caption {
  margin: 18px 0 0;
  font-size: 10px;
  color: #92988c;
  line-height: 1.6;
}
.residences-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid #dcded5;
  color: #8c978a;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.4px;
}
@media (max-width: 1100px) {
  .residence-panel {
    gap: 42px;
  }
  .residence-tabs button {
    padding: 20px 17px;
    font-size: 14px;
  }
  .residence-actions {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .residences {
    padding: 76px 28px 60px;
  }
  .residences-heading {
    gap: 28px;
  }
  .residences-heading h2 {
    font-size: 39px;
  }
  .residences-intro {
    max-width: 210px;
    font-size: 12px;
  }
  .residence-tabs button {
    gap: 8px;
    padding: 18px 12px;
    font-size: 12px;
  }
  .tab-area {
    font-size: 8px;
  }
  .residence-panel {
    gap: 28px;
  }
  .residence-details h3 {
    font-size: 28px;
  }
  .residence-description {
    font-size: 13px;
  }
  .residence-specs dd {
    font-size: 18px;
  }
  .residence-specs > div + div {
    padding-left: 15px;
  }
  .residence-area-visual {
    min-height: 380px;
    padding: 24px;
  }
  .visual-area strong {
    font-size: 95px;
  }
  .plan-heading {
    font-size: 8px;
  }
  .plan-preview-footer {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 600px) {
  .residences {
    padding: 58px 22px 48px;
  }
  .residences-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
  .residences-heading h2 {
    font-size: clamp(29px, 7.5vw, 40px);
    letter-spacing: -1px;
  }
  .residences-intro {
    max-width: 340px;
    font-size: 13px;
    margin: 0;
  }
  .residence-tabs {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 30px;
  }
  .residence-tabs button {
    padding: 18px 14px;
    font-size: 13px;
  }
  .residence-tabs button:nth-child(3) {
    border-left: 0;
  }
  .residence-tabs button:nth-child(n + 3) {
    border-top: 1px solid #dcded5;
  }
  .residence-tabs button[aria-selected="true"]::after {
    left: 14px;
    right: 14px;
  }
  .tab-area {
    font-size: 8px;
  }
  .residence-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .residence-area-visual {
    min-height: 330px;
    padding: 26px;
  }
  .visual-area {
    margin: 32px 0;
  }
  .visual-area strong {
    font-size: 104px;
  }
  .residence-details h3 {
    font-size: 31px;
  }
  .residence-price strong {
    font-size: 32px;
  }
  .residence-specs dd {
    font-size: 21px;
  }
  .plan-preview-footer {
    flex-direction: row;
    font-size: 9px;
  }
  .residence-actions {
    justify-content: space-between;
    gap: 16px;
  }
  .residences-footer {
    flex-direction: column;
    gap: 8px;
    margin-top: 36px;
    font-size: 9px;
  }
}

/* Payment plan & expected completion */
.payment {
  padding: 100px 32px 80px;
  background: #fff;
  color: #183238;
  scroll-margin-top: 28px;
}
.payment-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.payment-heading h2 {
  margin: 0;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -1.7px;
}
.payment-heading h2 span {
  color: #7a918c;
}
.payment-heading-mark {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  flex-shrink: 0;
  border: 1px solid #deded2;
  border-radius: 50%;
  color: #a4967d;
  margin-bottom: 4px;
}
.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;
}
.payment-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
  border: 1px solid #dce2d4;
  background: #edf0e8;
}
.payment-summary > div {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 0;
  padding: 27px 30px 25px;
  border-right: 1px solid #d1d9c8;
}
.payment-summary > div:last-child {
  border-right: 0;
  background: #1e3c3e;
  color: #d7d5bd;
}
.payment-summary > div > span {
  color: #8c9b87;
  font-size: 9px;
  letter-spacing: 1.4px;
}
.payment-summary p {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  color: #667b6e;
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.payment-summary > div:last-child p { color: #acb9a6; }
.payment-summary strong {
  color: #3b6053;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -3px;
  font-weight: 400;
}
.payment-summary > div:last-child strong { color: #d7d5bd; }
.payment-schedule {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(520px, 1.55fr);
  border: 1px solid #dce2d4;
  background: #f7f7f3;
}
.payment-schedule-intro {
  display: flex;
  flex-direction: column;
  padding: 34px 34px 30px;
  border-right: 1px solid #dce2d4;
}
.payment-schedule-intro > p {
  margin: 42px 0 32px;
  color: #6c7d76;
  font-size: 14px;
  line-height: 1.75;
}
.payment-total {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid #d8ddd3;
}
.payment-total span,
.payment-total small {
  color: #87958c;
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.payment-total strong {
  margin: 5px 0;
  color: #3b6053;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -1px;
}
.payment-table-wrap { padding: 12px 22px; }
.payment-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.payment-table th {
  padding: 12px 14px;
  color: #8a978d;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.3px;
  text-align: left;
  text-transform: uppercase;
}
.payment-table th:last-child,
.payment-table td:last-child { text-align: right; }
.payment-table td {
  padding: 10px 14px;
  border-top: 1px solid #dde2d8;
  color: #405a53;
  font-size: 13px;
}
.payment-table td:first-child {
  width: 18%;
  color: #9aa69d;
  font-size: 10px;
  letter-spacing: 1px;
}
.payment-table td:last-child {
  width: 22%;
  color: #3b6053;
  font-size: 14px;
  font-weight: 600;
}
.payment-table tbody tr:hover { background: #edf0e8; }
.payment-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}
.payment-split-card,
.payment-completion-card {
  min-width: 0;
  padding: 34px 38px 28px;
  border-radius: 4px;
}
.payment-split-card {
  background: #edf0e8;
  border: 1px solid #dce2d4;
}
.payment-completion-card {
  display: flex;
  flex-direction: column;
  background: #1e3c3e;
  color: #d7d5bd;
  border: 1px solid #1e3c3e;
}
.payment-card-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #748773;
}
.payment-card-label svg {
  flex-shrink: 0;
}
.payment-card-label h3 {
  margin: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.payment-completion-card .payment-card-label {
  color: #acb9a6;
}
.payment-ratio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0 34px;
}
.payment-ratio > span {
  color: #3b6053;
  font-size: clamp(68px, 7.5vw, 106px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -5px;
  white-space: nowrap;
}
.payment-ratio > span:last-child {
  color: #85987e;
}
.payment-ratio small {
  margin-left: 3px;
  font-size: 0.34em;
  font-weight: 400;
  letter-spacing: -1px;
}
.payment-ratio .payment-divider {
  color: #bdc5b3;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 0;
}
.payment-proportion {
  display: flex;
  gap: 5px;
  width: 100%;
  height: 4px;
}
.payment-proportion span:first-child {
  flex: 3;
  background: #446b59;
}
.payment-proportion span:last-child {
  flex: 7;
  background: #b7c4a8;
}
.payment-ratio-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  font-size: 9px;
  color: #84927b;
  letter-spacing: 1px;
}
.payment-ratio-caption > span:last-child {
  font-size: 8px;
  letter-spacing: 1.7px;
}
.payment-date {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 33px 0 30px;
}
.payment-date > span {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.payment-date strong {
  font-size: clamp(68px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -4px;
  font-weight: 400;
}
.payment-completion-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid #a0b39b30;
  color: #a5b7a8;
  font-size: 9px;
  letter-spacing: 0.5px;
}
.completion-line {
  height: 1px;
  width: 20px;
  background: #b4b79a;
  flex-shrink: 0;
}
.payment-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}
.payment-footer p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #8b9489;
  font-size: 10px;
  line-height: 1.8;
}
.payment-footer p strong {
  color: #657e6e;
  font-weight: 400;
}
.payment-footer p > span {
  margin: 0 9px;
  color: #b3b9ab;
}
.payment-footer .about-cta {
  margin: 0;
  font-size: 11px;
  gap: 18px;
  flex-shrink: 0;
}
@media (max-width: 1100px) {
  .payment-split-card,
  .payment-completion-card {
    padding: 30px 28px 25px;
  }
  .payment-ratio {
    gap: 12px;
  }
  .payment-ratio > span {
    font-size: 85px;
  }
  .payment-footer {
    align-items: flex-start;
  }
  .payment-footer p {
    max-width: 400px;
  }
}
@media (max-width: 900px) {
  .payment {
    padding: 76px 28px 60px;
  }
  .payment-heading {
    margin-bottom: 36px;
  }
  .payment-heading h2 {
    font-size: 39px;
  }
  .payment-summary > div { padding: 23px 20px; }
  .payment-summary strong { font-size: 50px; }
  .payment-schedule { grid-template-columns: 1fr; }
  .payment-schedule-intro {
    border-right: 0;
    border-bottom: 1px solid #dce2d4;
  }
  .payment-schedule-intro > p { margin: 26px 0; }
  .payment-grid {
    gap: 18px;
    grid-template-columns: 1.3fr 1fr;
  }
  .payment-split-card,
  .payment-completion-card {
    padding: 26px 22px 24px;
  }
  .payment-card-label {
    gap: 9px;
  }
  .payment-card-label h3 {
    font-size: 9px;
    letter-spacing: 1px;
  }
  .payment-ratio {
    margin: 38px 0 34px;
    gap: 8px;
  }
  .payment-ratio > span {
    font-size: 67px;
    letter-spacing: -3px;
  }
  .payment-ratio .payment-divider {
    font-size: 36px;
  }
  .payment-date {
    margin: 32px 0 24px;
  }
  .payment-date > span {
    font-size: 22px;
  }
  .payment-date strong {
    font-size: 70px;
  }
  .payment-footer {
    flex-direction: column;
    gap: 20px;
  }
  .payment-footer p {
    max-width: none;
  }
}
@media (max-width: 600px) {
  .payment {
    padding: 58px 22px 48px;
  }
  .payment-heading {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 30px;
  }
  .payment-heading h2 {
    font-size: clamp(29px, 7.5vw, 40px);
    letter-spacing: -1px;
  }
  .payment-heading-mark {
    display: none;
  }
  .payment-summary {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }
  .payment-summary > div {
    align-items: center;
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid #d1d9c8;
  }
  .payment-summary > div:last-child { border-bottom: 0; }
  .payment-summary p {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }
  .payment-summary strong {
    font-size: 40px;
    letter-spacing: -2px;
  }
  .payment-schedule-intro { padding: 26px 22px; }
  .payment-schedule-intro > p {
    margin: 24px 0;
    font-size: 13px;
  }
  .payment-table-wrap { padding: 8px 10px 12px; }
  .payment-table th { padding: 10px 8px; }
  .payment-table td { padding: 9px 8px; font-size: 12px; }
  .payment-table td:first-child { width: 15%; }
  .payment-table td:last-child { width: 24%; font-size: 13px; }
  .payment-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .payment-split-card,
  .payment-completion-card {
    padding: 27px 25px 25px;
  }
  .payment-card-label h3 {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .payment-ratio {
    margin: 35px 0 30px;
    justify-content: space-around;
  }
  .payment-ratio > span {
    font-size: clamp(67px, 20vw, 87px);
  }
  .payment-date {
    margin: 28px 0;
    gap: 10px;
  }
  .payment-date > span {
    font-size: 25px;
  }
  .payment-date strong {
    font-size: 86px;
  }
  .payment-footer {
    margin-top: 26px;
  }
  .payment-footer p {
    font-size: 9px;
    gap: 5px;
  }
  .payment-footer p > span {
    flex-basis: 100%;
    height: 0;
    visibility: hidden;
    margin: 0;
  }
  .payment-footer .about-cta {
    font-size: 11px;
  }
}

/* The investment & lifestyle cases */
.investment {
  padding: 100px 32px 76px;
  background: #f7f6f2;
  color: #183238;
  scroll-margin-top: 28px;
}
.usp-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 46px;
}
.usp-heading h2 {
  margin: 0;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -1.7px;
}
.usp-heading h2 span {
  color: #7a918c;
}
.usp-audience {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 7px;
  font-size: 9px;
  color: #879582;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.6;
}
.usp-audience-line {
  width: 36px;
  height: 1px;
  background: #b6b6a0;
}
.investment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.investment-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 224px;
  padding: 28px;
  border: 1px solid #dcded5;
  background: #fbfbf7;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}
.investment-item:first-child {
  background: #e9eee4;
  border-color: #d6dece;
}
.investment-item:nth-child(4) {
  background: #eeeadf;
  border-color: #dfd8c8;
}
.investment-item:hover {
  border-color: #99ad99;
  background: #edf0e8;
}
.investment-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 27px;
  color: #839a84;
}
.usp-number {
  color: #a4977d;
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 400;
}
.investment-item h3 {
  margin: 0 0 15px;
  max-width: 260px;
  color: #3c5b52;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.4px;
}
.investment-item p {
  margin: 0 0 20px;
  color: #798574;
  font-size: 12px;
  line-height: 1.8;
}
.usp-card-rule {
  display: block;
  height: 1px;
  width: 28px;
  background: #bab69d;
  margin-top: auto;
}
.usp-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #dcded5;
}
.usp-footer > span {
  color: #8c9789;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 0.3px;
}
.usp-footer .about-cta {
  margin: 0;
  font-size: 11px;
}
.lifestyle {
  padding: 100px 32px 76px;
  color: #f2f2e9;
  background: #1e3c3e;
  scroll-margin-top: 28px;
}
.lifestyle .section-kicker {
  color: #a6b8a8;
}
.lifestyle .section-kicker span {
  background: #c1bea0;
}
.lifestyle .usp-heading h2 span {
  color: #a7b8a6;
}
.lifestyle .usp-audience {
  color: #a6b8a8;
}
.lifestyle .usp-audience-line {
  background: #82937d;
}
.lifestyle-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 44px;
  align-items: stretch;
}
.lifestyle-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 9px;
  border: 1px solid #8eaa9238;
  border-radius: 4px;
}
.lifestyle-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: 42% center;
  border-radius: 2px;
}
.lifestyle-visual::after {
  content: "";
  position: absolute;
  inset: 9px;
  background: linear-gradient(180deg, transparent 55%, #102b32db);
  pointer-events: none;
}
.lifestyle-visual figcaption {
  position: absolute;
  z-index: 1;
  left: 30px;
  right: 30px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lifestyle-visual figcaption > span:first-child {
  color: #f0f0e4;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.6px;
}
.lifestyle-visual figcaption > span:last-child {
  color: #c7d0bd;
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: 1.6px;
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-content: stretch;
}
.lifestyle-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 23px 0;
  border-bottom: 1px solid #91a89035;
}
.lifestyle-connectivity {
  grid-column: 1/-1;
  padding-top: 0;
  padding-bottom: 25px;
}
.lifestyle-item-icon {
  flex-shrink: 0;
  margin-top: 5px;
  color: #b2b89a;
}
.lifestyle-item-icon svg {
  width: 23px;
  height: 25px;
}
.lifestyle-item .usp-number {
  display: block;
  color: #829b87;
  font-size: 8px;
  margin-bottom: 9px;
}
.lifestyle-item h3 {
  color: #e2e5d6;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.2px;
  margin: 0;
}
.lifestyle-item p {
  color: #a7b9a8;
  font-size: 12px;
  line-height: 1.85;
  max-width: 530px;
  margin: 10px 0 0;
}
.lifestyle .usp-footer {
  border-color: #91a89035;
}
.lifestyle .usp-footer > span {
  color: #9eb2a0;
}
.lifestyle .about-cta {
  color: #dce1ce;
}
.lifestyle .about-cta-icon {
  border-color: #8faa8c65;
}
.lifestyle .about-cta:hover .about-cta-icon {
  color: #1e3c3e;
  background: #dce1ce;
}
@media (max-width: 1100px) {
  .investment-item {
    padding: 24px;
  }
  .investment-item h3 {
    font-size: 21px;
  }
  .lifestyle-layout {
    grid-template-columns: 0.85fr 1.4fr;
    gap: 30px;
  }
  .lifestyle-grid {
    gap: 0 20px;
  }
  .lifestyle-item {
    gap: 12px;
  }
  .lifestyle-item h3 {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .investment,
  .lifestyle {
    padding: 76px 28px 60px;
  }
  .usp-heading {
    margin-bottom: 36px;
    gap: 28px;
  }
  .usp-heading h2 {
    font-size: 39px;
  }
  .usp-audience {
    font-size: 8px;
    letter-spacing: 1px;
    gap: 12px;
  }
  .usp-audience-line {
    width: 24px;
  }
  .investment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .investment-item {
    min-height: 210px;
  }
  .lifestyle-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lifestyle-visual img {
    height: 340px;
    min-height: 0;
    object-position: center 54%;
  }
  .lifestyle-grid {
    gap: 0 28px;
  }
  .lifestyle-item h3 {
    font-size: 18px;
  }
  .lifestyle-connectivity {
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .investment,
  .lifestyle {
    padding: 58px 22px 48px;
  }
  .usp-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
  .usp-heading h2 {
    font-size: clamp(29px, 7.5vw, 40px);
    letter-spacing: -1px;
  }
  .usp-audience {
    margin: 0;
    font-size: 9px;
  }
  .investment-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .investment-item {
    min-height: 0;
    padding: 24px;
  }
  .investment-item-top {
    margin-bottom: 21px;
  }
  .investment-item h3 {
    max-width: none;
    font-size: 23px;
    margin-bottom: 20px;
  }
  .investment-item p {
    font-size: 12px;
    margin-bottom: 22px;
  }
  .usp-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 27px;
  }
  .usp-footer > span {
    font-size: 9px;
  }
  .lifestyle-visual img {
    height: 300px;
  }
  .lifestyle-visual figcaption {
    left: 26px;
    right: 26px;
    bottom: 28px;
  }
  .lifestyle-visual figcaption > span:first-child {
    font-size: 26px;
  }
  .lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lifestyle-item {
    padding: 22px 0;
    gap: 18px;
  }
  .lifestyle-connectivity {
    padding-top: 0;
  }
  .lifestyle-item h3 {
    font-size: 20px;
  }
  .lifestyle-item p {
    font-size: 12px;
  }
}

/* Refined SVG icons: one optical size and a restrained brass accent. */
.investment-icon-badge,
.lifestyle-item-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 14px;
  transition: background 0.2s, border-color 0.2s;
}
.investment-icon-badge {
  border: 1px solid #d9e1d2;
  background: #eff3eb;
  color: #527562;
  box-shadow: inset 0 1px 0 #ffffffb3;
}
.investment-item:hover .investment-icon-badge {
  border-color: #a7b9a0;
  background: #e2eadc;
}
.usp-icon {
  display: block;
}
.usp-icon .icon-accent {
  stroke: #ad9872;
}
.lifestyle-item-icon {
  width: 46px;
  height: 46px;
  margin-top: 1px;
  border: 1px solid #a5bb9b30;
  background: #a5bb9b0a;
  color: #c3cfb6;
  box-shadow: inset 0 1px 0 #c3cfb609;
}
.lifestyle-item-icon .usp-icon {
  width: 27px;
  height: 27px;
}
.lifestyle-item-icon .icon-accent {
  stroke: #c7b287;
}
.lifestyle-item:hover .lifestyle-item-icon {
  border-color: #a5bb9b60;
  background: #a5bb9b15;
}
@media (max-width: 1100px) {
  .lifestyle-item-icon {
    width: 42px;
    height: 42px;
  }
  .lifestyle-item-icon .usp-icon {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 600px) {
  .investment-icon-badge {
    width: 48px;
    height: 48px;
  }
  .lifestyle-item-icon {
    width: 46px;
    height: 46px;
  }
  .lifestyle-item-icon .usp-icon {
    width: 27px;
    height: 27px;
  }
}

/* Frequently asked questions */
.faq {
  padding: 100px 32px 86px;
  background: #f7f6f2;
  color: #183238;
  scroll-margin-top: 28px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 76px;
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 32px;
  min-width: 0;
}
.faq-intro h2 {
  margin: 0 0 24px;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1.4px;
}
.faq-intro h2 span {
  color: #7a918c;
}
.faq-intro-copy {
  color: #7f887a;
  font-size: 14px;
  line-height: 1.85;
  max-width: 320px;
  margin: 0 0 34px;
}
.faq-help {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 27px;
  border-top: 1px solid #dcded5;
}
.faq-help-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #d9e1d2;
  border-radius: 14px;
  background: #edf0e7;
  color: #71886e;
  flex-shrink: 0;
}
.faq-help p {
  margin: 0 0 10px;
  color: #8d9687;
  font-size: 11px;
  line-height: 1.6;
}
.faq-help .about-cta {
  margin: 0;
  gap: 12px;
  font-size: 11px;
}
.faq-decorative-line {
  display: block;
  margin-top: 32px;
  width: 30px;
  height: 1px;
  background: #b3aa8f;
}
.faq-accordion {
  min-width: 0;
  border-top: 1px solid #dcded5;
}
.faq-item {
  border-bottom: 1px solid #dcded5;
}
.faq-item summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::marker {
  content: "";
}
.faq-item summary:focus-visible {
  outline: 2px solid #577b72;
  outline-offset: 5px;
  border-radius: 2px;
}
.faq-number {
  flex-shrink: 0;
  color: #a4967d;
  font-size: 9px;
  letter-spacing: 0.7px;
}
.faq-item h3 {
  flex: 1;
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  color: #52695e;
  line-height: 1.5;
  letter-spacing: -0.15px;
  transition: color 0.2s;
}
.faq-toggle {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  border: 1px solid #d1daca;
  border-radius: 50%;
  transition: background 0.2s, border-color 0.2s;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: 14px;
  height: 1px;
  background: #71866b;
}
.faq-toggle::after {
  transform: rotate(90deg);
  transition: transform 0.2s;
}
.faq-item summary:hover h3,
.faq-item[open] h3 {
  color: #244b4d;
}
.faq-item[open] .faq-toggle {
  background: #e7ede1;
  border-color: #afc0a4;
}
.faq-item[open] .faq-toggle::after {
  transform: rotate(0);
}
.faq-answer {
  padding: 0 49px 25px 34px;
}
.faq-answer p {
  margin: 0;
  color: #818b7d;
  font-size: 13px;
  line-height: 1.9;
}
.faq-bottom-caption {
  margin: 21px 0 0;
  color: #9aa28f;
  font-size: 8px;
  letter-spacing: 1.6px;
  line-height: 1.6;
  text-align: right;
}
@media (max-width: 1100px) {
  .faq-layout {
    gap: 44px;
    grid-template-columns: 0.85fr 1.3fr;
  }
  .faq-item h3 {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .faq {
    padding: 76px 28px 60px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-intro {
    position: static;
  }
  .faq-intro h2 {
    font-size: 39px;
  }
  .faq-intro-copy {
    max-width: 480px;
    margin-bottom: 25px;
  }
  .faq-help {
    max-width: 400px;
    padding-top: 22px;
  }
  .faq-decorative-line {
    display: none;
  }
}
@media (max-width: 600px) {
  .faq {
    padding: 58px 22px 48px;
  }
  .faq-layout {
    gap: 32px;
  }
  .faq .section-kicker {
    font-size: 9px;
    letter-spacing: 1.3px;
  }
  .faq-intro h2 {
    font-size: clamp(29px, 7.5vw, 40px);
    letter-spacing: -1px;
  }
  .faq-intro-copy {
    font-size: 13px;
  }
  .faq-item summary {
    padding: 21px 0;
    gap: 12px;
  }
  .faq-item h3 {
    font-size: 15px;
    line-height: 1.6;
  }
  .faq-number {
    font-size: 8px;
  }
  .faq-toggle {
    width: 28px;
    height: 28px;
  }
  .faq-toggle::before,
  .faq-toggle::after {
    top: 12.5px;
    left: 8px;
    right: 8px;
  }
  .faq-answer {
    padding: 0 0 23px 26px;
  }
  .faq-answer p {
    font-size: 12px;
    line-height: 1.9;
  }
  .faq-bottom-caption {
    font-size: 7px;
    letter-spacing: 1.1px;
  }
}

/* Gallery */
.gallery {
  padding: 100px 32px 76px;
  background: #fff;
  color: #183238;
  scroll-margin-top: 28px;
}
.gallery-intro {
  max-width: 265px;
  color: #798779;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 4px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px;
}
.gallery-tile {
  position: relative;
  display: block;
  min-width: 0;
  height: 225px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  overflow: hidden;
  background: #e9eee4;
  text-align: left;
}
.gallery-tile[hidden] {
  display: none;
}
.gallery-tile-featured {
  grid-row: span 2;
  height: 466px;
}
.gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-tile-featured img {
  object-position: 58% center;
}
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, #122e36b8);
  pointer-events: none;
}
.gallery-tile:hover img {
  transform: scale(1.045);
}
.gallery-tile-caption {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #f4f3e8;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}
.gallery-tile-featured .gallery-tile-caption {
  font-size: 19px;
  left: 25px;
  right: 25px;
  bottom: 26px;
}
.gallery-tile-expand {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  border: 1px solid #fff5;
  border-radius: 50%;
  font-size: 18px;
  background: #ffffff0d;
}
.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 23px;
  border-top: 1px solid #dcded5;
}
.gallery-footer > span {
  color: #909b89;
  font-size: 10px;
  line-height: 1.6;
}
.gallery-footer .about-cta {
  margin: 0;
  font-size: 11px;
}
.gallery-dialog {
  width: min(1100px, calc(100% - 32px));
  max-height: calc(100svh - 40px);
  padding: 20px;
  border: 1px solid #637d6e80;
  border-radius: 10px;
  background: #183638;
  color: #e2e5d5;
}
.gallery-dialog::backdrop {
  background: #061c20df;
  backdrop-filter: blur(8px);
}
.lightbox-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 18px;
  min-height: 45px;
}
.lightbox-top > span {
  color: #b1bda8;
  font-size: 9px;
  letter-spacing: 1.8px;
}
.gallery-dialog .dialog-close {
  position: static;
  background: #28494a;
  color: #e2e5d5;
  border: 1px solid #647d6550;
}
.gallery-dialog figure {
  margin: 0;
}
.gallery-dialog figure img {
  display: block;
  width: 100%;
  max-height: calc(100svh - 225px);
  object-fit: contain;
  background: #102b2e;
}
.gallery-dialog figcaption {
  margin-top: 17px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
.lightbox-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 18px;
}
.lightbox-bottom button {
  width: 38px;
  height: 38px;
  border: 1px solid #71896c70;
  border-radius: 50%;
  background: transparent;
  color: #d8deca;
  font-weight: 400;
  font-size: 19px;
}
.lightbox-bottom button:hover {
  background: #355552;
}
#gallery-counter {
  color: #b1bda8;
  font-size: 11px;
  min-width: 55px;
  text-align: center;
}
/* Closing invitation */
.closing-cta {
  padding: 80px 32px;
  background: #1e3c3e;
  color: #eeeee2;
  scroll-margin-top: 28px;
}
.closing-cta-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.closing-cta .section-kicker {
  color: #a6b8a8;
}
.closing-cta .section-kicker span {
  background: #c1bea0;
}
.closing-cta h2 {
  margin: 0 0 26px;
  font-size: clamp(43px, 4.6vw, 66px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -2px;
}
.closing-cta h2 span {
  color: #b6c1a9;
}
.closing-cta-copy > p:not(.section-kicker) {
  max-width: 365px;
  margin: 0 0 30px;
  color: #adbcaa;
  font-size: 14px;
  line-height: 1.85;
}
.closing-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.closing-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 23px;
  background: #e4e6d4;
  color: #244b4d;
  border: 1px solid #e4e6d4;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 400;
  transition: background 0.2s;
}
.closing-cta-button:hover {
  background: #f1f2e7;
}
.closing-cta-button > span {
  font-size: 19px;
}
.closing-cta-actions a {
  font-size: 11px;
  color: #b8c5ad;
  border-bottom: 1px solid #82967b60;
  padding: 9px 0;
}
.closing-cta-actions a > span {
  margin-left: 10px;
}
.closing-cta-address {
  display: block;
  margin-top: 40px;
  color: #8fa58e;
  font-size: 8px;
  line-height: 1.7;
  letter-spacing: 1.6px;
}
.closing-cta-visual {
  position: relative;
  margin: 0;
  padding: 9px;
  border: 1px solid #9ab28b40;
  border-radius: 4px;
}
.closing-cta-visual img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: 43% center;
}
.closing-cta-visual::after {
  content: "";
  position: absolute;
  inset: 9px;
  background: linear-gradient(180deg, transparent 60%, #123439b0);
  pointer-events: none;
}
.closing-cta-visual figcaption {
  position: absolute;
  z-index: 1;
  bottom: 27px;
  left: 29px;
  right: 29px;
  font-size: 11px;
  line-height: 1.6;
  color: #eeeee2;
  letter-spacing: 0.4px;
}
/* Footer */
.site-footer {
  padding: 64px 32px 24px;
  background: #f7f6f2;
  color: #526c60;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 42px;
}
.footer-brand img {
  display: block;
  width: 170px;
  height: auto;
}
.footer-brand p {
  margin: 24px 0;
  color: #8b9687;
  font-size: 12px;
  line-height: 1.85;
}
.footer-brand-line {
  display: block;
  height: 1px;
  width: 30px;
  background: #aaa081;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.footer-grid h2 {
  margin: 0 0 8px;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8d957d;
}
.footer-nav a {
  font-size: 11px;
  color: #72836f;
  line-height: 1.6;
}
.footer-nav a:hover,
.footer-map-link:hover {
  color: #244b4d;
  text-decoration: underline;
}
.footer-address p {
  margin: 15px 0 20px;
  font-size: 11px;
  color: #83907b;
  line-height: 1.85;
}
.footer-address .about-cta {
  margin: 0;
  font-size: 11px;
  gap: 10px;
}
.footer-map-link {
  display: block;
  margin-top: 15px;
  color: #8c987f;
  font-size: 10px;
  line-height: 1.6;
}
.footer-map-link > span {
  margin-left: 7px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 23px;
  border-top: 1px solid #dcded5;
  color: #939d89;
  font-size: 9px;
  line-height: 1.7;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom a {
  color: #6a816c;
}
.footer-bottom a > span {
  margin-left: 10px;
}
@media (max-width: 1100px) {
  .closing-cta-layout {
    gap: 40px;
  }
  .footer-grid {
    gap: 28px;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  }
  .footer-brand img {
    width: 155px;
  }
}
@media (max-width: 900px) {
  .gallery {
    padding: 76px 28px 60px;
  }
  .gallery-intro {
    max-width: 210px;
    font-size: 12px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .gallery-tile {
    height: 225px;
  }
  .gallery-tile-featured {
    grid-row: auto;
    grid-column: 1/-1;
    height: 340px;
  }
  .closing-cta {
    padding: 64px 28px;
  }
  .closing-cta-layout {
    gap: 32px;
  }
  .closing-cta h2 {
    font-size: 47px;
  }
  .closing-cta-visual img {
    height: 390px;
  }
  .site-footer {
    padding: 54px 28px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 14px 24px;
  }
  .footer-bottom > span {
    display: none;
  }
}
@media (max-width: 600px) {
  .gallery {
    padding: 58px 22px 48px;
  }
  .gallery-intro {
    max-width: 340px;
    font-size: 13px;
    margin: 0;
  }
  .gallery-grid {
    gap: 10px;
  }
  .gallery-tile {
    height: 160px;
  }
  .gallery-tile-featured {
    height: 260px;
  }
  .gallery-tile-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 6px;
    font-size: 10px;
  }
  .gallery-tile-expand {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
  .gallery-tile-featured .gallery-tile-caption {
    left: 19px;
    right: 19px;
    bottom: 20px;
    font-size: 17px;
  }
  .gallery-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .gallery-footer > span {
    font-size: 9px;
  }
  .gallery-dialog {
    padding: 14px;
  }
  .gallery-dialog figcaption {
    font-size: 14px;
  }
  .lightbox-top > span {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .closing-cta {
    padding: 54px 22px;
  }
  .closing-cta-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .closing-cta h2 {
    font-size: clamp(43px, 12vw, 60px);
    letter-spacing: -1.5px;
  }
  .closing-cta-copy > p:not(.section-kicker) {
    font-size: 13px;
  }
  .closing-cta-address {
    margin-top: 28px;
    font-size: 7px;
  }
  .closing-cta-visual img {
    height: 290px;
  }
  .site-footer {
    padding: 48px 22px 24px;
  }
  .footer-grid {
    gap: 32px 24px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand p {
    margin: 18px 0;
  }
  .footer-address {
    grid-column: 1/-1;
    padding-top: 24px;
    border-top: 1px solid #dcded5;
  }
  .footer-nav {
    gap: 12px;
  }
  .footer-nav a {
    font-size: 10px;
  }
  .footer-bottom {
    margin-top: 30px;
    font-size: 8px;
    gap: 18px;
  }
}

/* Hero & navigation, aligned with the coastal editorial palette. */
.hero {
  min-height: max(780px, 100svh);
  padding: 175px 32px 210px;
  justify-content: center;
  align-items: center;
}
.hero::after {
  background: linear-gradient(
      90deg,
      #132f36db 0%,
      #132f36a6 38%,
      #132f361a 100%
    ),
    linear-gradient(180deg, #152b354d 0%, #16303a1a 48%, #10292fe6 100%);
}
.hero-image img {
  object-position: 56% center;
}
.header {
  top: 24px;
  width: min(1640px, calc(100% - 64px));
  padding: 18px 25px;
  min-height: 78px;
  border: 1px solid #e9eadecc;
  border-radius: 8px;
  background: #f7f6f2f5;
  color: #244b4d;
  gap: 22px;
  box-shadow: 0 10px 35px #10292f12;
}
.header .logo img {
  width: 145px;
}
.header .navigation {
  gap: 19px;
}
.header .navigation a {
  font-size: 14px;
  font-weight: 400;
  color: #607464;
  padding: 10px 0;
}
.header .navigation a:hover {
  color: #244b4d;
}
.header .header-cta {
  padding: 13px 19px;
  border-radius: 4px;
  background: #244b4d;
  color: #f0f0e1;
  font-size: 11px;
  font-weight: 400;
}
.header .header-cta:hover {
  background: #355c55;
}
.hero-content {
  width: 100%;
  max-width: 1640px;
  text-align: left;
  margin: 0;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 27px;
  color: #d1d4bc;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.6;
}
.hero-kicker > span {
  width: 33px;
  height: 1px;
  background: #c0b695;
}
.hero h1 {
  margin: 0 0 28px;
  font-size: clamp(52px, 5.4vw, 79px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -2.8px;
  color: #f9f8ef;
}
.hero h1 > span {
  color: #c5ceb5;
}
.hero .hero-description {
  max-width: 475px;
  margin: 0;
  color: #d2d9ce;
  font-size: 15px;
  line-height: 1.85;
}
.hero-actions {
  justify-content: flex-start;
  align-items: center;
  gap: 26px;
  margin: 32px 0 0;
}
.hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  padding: 18px 24px;
  border: 1px solid #e2e5d1;
  border-radius: 3px;
  background: #e2e5d1;
  color: #244b4d;
  font-size: 12px;
  font-weight: 400;
  transition: background 0.2s;
}
.hero-primary:hover {
  background: #f3f4e8;
}
.hero-enquire {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid #c8d0b57d;
  border-radius: 0;
  background: none;
  color: #e5e8d7;
  font-size: 12px;
  font-weight: 400;
}
.hero-enquire:hover {
  color: #fff;
  border-color: #fff;
}
.hero-address {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 31px 0 0;
  color: #b1c0ac;
  font-size: 8px;
  line-height: 1.7;
  letter-spacing: 1.4px;
}
.hero-address svg {
  color: #c0b695;
  flex-shrink: 0;
}
.hero-bottom {
  position: absolute;
  bottom: 43px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1640px, calc(100% - 64px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-top: 25px;
  border-top: 1px solid #bbc8ab40;
}
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c2cdb6;
  font-size: 10px;
  flex-shrink: 0;
}
.hero-scroll-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #bbc8ab60;
  border-radius: 50%;
  font-size: 17px;
}
.hero-scroll:hover .hero-scroll-icon {
  background: #bbc8ab22;
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  gap: 0;
}
.hero-facts > div {
  padding: 0 35px;
  border-left: 1px solid #bbc8ab35;
}
.hero-facts > div:first-child {
  border-left: 0;
}
.hero-facts > div:last-child {
  padding-right: 0;
}
.hero-facts dt {
  margin: 0 0 9px;
  color: #9eb49d;
  font-size: 8px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-facts dd {
  margin: 0;
  color: #e7e9d9;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1.4;
}
@media (max-width: 1100px) {
  .header {
    width: calc(100% - 48px);
    top: 20px;
    padding: 15px 22px;
    min-height: 70px;
  }
  .header .header-cta {
    margin-left: auto;
  }
  .header .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border: 0;
    background: none;
  }
  .header .menu-toggle span {
    width: 22px;
    height: 2px;
    background: #244b4d;
  }
  .header .navigation {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 14px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #f7f6f2;
    border: 1px solid #e1e5d8;
    border-radius: 8px;
    box-shadow: 0 14px 40px #10292f33;
    max-height: calc(100svh - 135px);
    overflow-y: auto;
  }
  .header .navigation.is-open {
    display: flex;
  }
  .header .navigation a {
    padding: 12px 0;
    font-size: 13px;
    text-align: left;
  }
  .hero-facts > div {
    padding: 0 24px;
  }
  .hero-facts dd {
    font-size: 19px;
  }
}
@media (max-width: 900px) {
  .hero {
    padding: 155px 28px 195px;
  }
  .hero h1 {
    font-size: 61px;
  }
  .hero-bottom {
    width: calc(100% - 56px);
    gap: 24px;
  }
  .hero-scroll {
    font-size: 9px;
    gap: 9px;
  }
  .hero-facts > div {
    padding: 0 17px;
  }
  .hero-facts dd {
    font-size: 17px;
  }
  .hero-facts dt {
    font-size: 7px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: 100svh;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 140px 22px 34px;
  }
  .header {
    top: 14px;
    width: calc(100% - 28px);
    min-height: 62px;
    padding: 11px 15px;
    gap: 10px;
  }
  .header .logo img {
    width: 125px;
  }
  .header .header-cta {
    padding: 12px 13px;
    font-size: 10px;
  }
  .header .menu-toggle {
    width: 30px;
  }
  .hero::after {
    background: linear-gradient(180deg, #123038a6, #12303899 45%, #10292feb),
      linear-gradient(90deg, #132f3699, transparent);
  }
  .hero-image img {
    object-position: 51% center;
  }
  .hero-kicker {
    margin-bottom: 24px;
    font-size: 8px;
    letter-spacing: 1.6px;
  }
  .hero h1 {
    font-size: clamp(38px, 10.2vw, 59px);
    line-height: 1.12;
    letter-spacing: -1.5px;
    margin-bottom: 23px;
  }
  .hero .hero-description {
    font-size: 14px;
    line-height: 1.85;
    max-width: 370px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 370px;
    gap: 19px;
    margin: 28px 0 0;
  }
  .hero-primary {
    padding: 17px 18px;
    font-size: 11px;
    gap: 17px;
  }
  .hero-enquire {
    align-self: flex-start;
    font-size: 11px;
  }
  .hero-address {
    margin-top: 25px;
    font-size: 7px;
    letter-spacing: 1px;
  }
  .hero-bottom {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 45px;
    padding-top: 22px;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 24px;
  }
  .hero-facts {
    grid-template-columns: 1fr 1fr;
    gap: 20px 0;
  }
  .hero-facts > div {
    padding: 0 14px;
  }
  .hero-facts > div:first-child,
  .hero-facts > div:last-child {
    padding-left: 0;
    border-left: 0;
  }
  .hero-facts > div:last-child {
    grid-column: 1/-1;
  }
  .hero-facts dt {
    font-size: 7px;
    margin-bottom: 6px;
  }
  .hero-facts dd {
    font-size: 18px;
  }
  .hero-scroll {
    align-self: flex-start;
  }
}
@media (max-height: 600px) and (min-width: 601px) {
  .hero {
    min-height: 740px;
    padding-top: 150px;
    padding-bottom: 195px;
  }
  .hero h1 {
    font-size: 57px;
  }
}

/* Keep the navigation visible while scrolling through the page. */
.header {
  position: fixed;
  z-index: 20;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
html {
  scroll-padding-top: 124px;
}
@media (max-width: 1100px) {
  html {
    scroll-padding-top: 112px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 94px;
  }
}

/* Fixed WhatsApp & telephone shortcuts. */
.quick-contact {
  position: fixed;
  right: 24px;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.quick-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  min-height: 49px;
  padding: 13px 19px;
  border: 1px solid #9cb49a55;
  border-radius: 40px;
  box-shadow: 0 6px 24px #153d3226;
  font-size: 12px;
  font-weight: 400;
  transition: transform 0.2s, background 0.2s;
}
.quick-whatsapp {
  background: #386650;
  color: #f3f4e6;
}
.quick-call {
  background: #ecefdf;
  color: #244b4d;
  border-color: #cdd7c2;
}
.quick-contact-link:not([aria-disabled="true"]):hover {
  transform: translateY(-2px);
}
.quick-whatsapp:not([aria-disabled="true"]):hover {
  background: #285a42;
}
.quick-call:not([aria-disabled="true"]):hover {
  background: #fafbee;
}
.quick-contact-link[aria-disabled="true"] {
  cursor: default;
}
.quick-contact-link svg {
  flex-shrink: 0;
}
body.dialog-open .quick-contact {
  display: none;
}
@media (max-width: 600px) {
  .quick-contact {
    right: 15px;
    bottom: max(18px, env(safe-area-inset-bottom));
    flex-direction: row;
    gap: 8px;
  }
  .quick-contact-link {
    min-height: 44px;
    padding: 11px 14px;
    gap: 8px;
    font-size: 10px;
  }
  .quick-contact-link svg {
    width: 19px;
    height: 19px;
  }
  .footer-bottom {
    padding-bottom: 58px;
  }
}
