.developer {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 280px;
  gap: 48px;
  align-items: start;
  background: #ebe9e1;
}
.developer-mark {
  width: 145px;
  height: 145px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  font: 400 42px Georgia, serif;
  letter-spacing: -0.08em;
  background: #006336;
}
.developer-mark img {
    width: 60%;
}
.developer-copy {
  max-width: 590px;
}
.developer-copy .section-label {
  margin-bottom: 28px;
}
.developer-copy h2 {
  margin: 0 0 24px;
  font: 400 clamp(48px, 6vw, 78px) / 0.92 Georgia, serif;
  letter-spacing: -0.06em;
}
.developer-copy h2 em {
  color: var(--green);
  font-style: italic;
}
.developer-copy .lead {
  margin-bottom: 20px;
}
.developer-values {
  border-top: 1px solid var(--line);
}
.developer-values div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.developer-values strong {
  color: var(--gold);
  font: 400 20px Georgia, serif;
}
:root {
  --green: #006336;
  --gold: #c49a4a;
  --ink: #1f2933;
  --paper: #f7f5ef;
  --line: #d9d8d0;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--paper);
}
body {
  margin: 0;
  background: #004c29;
  color: var(--ink);
  font-family: "Asap Sharp", sans-serif;
  line-height: 1.55;
  padding: 24px;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-shell {
  max-width: 1440px;
  margin: 0px auto;
  background: var(--paper);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 60px #1f29330d;
}
.footer-links {
  display: block;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links a {
  opacity: 0.68;
  transition: opacity 0.2s, color 0.2s;
  padding: 0 15px;
  font-size: 13px;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--green);
}
.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.8%;
  background: #FFF;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 17px;
  letter-spacing: 0.16em;
  font-weight: 700;
  line-height: 15px;
}
.brand img {
    width: 100px;
}
.brand em {
  color: var(--gold);
  font-style: normal;
}
.brand-mark {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links a:not(.nav-cta) {
  opacity: 0.68;
  transition: 0.2s;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--green);
}
.nav-cta,
.button {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s;
  border: 0;
  cursor: pointer;
}
.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  background: #004c29;
  color: #FFF;
}
.menu-button {
  display: none;
}
.hero {
  min-height: 650px;
  padding: 70px 7.8% 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  position: relative;
}
.eyebrow,
.section-label {
  color: var(--green);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero h1 {
  font-size: 110px;
  line-height: 0.85;
  letter-spacing: -0.07em;
  margin: 48px 0 35px;
  font-weight: 500;
}
.hero h1 i,
h2 em,
h3 em {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.06em;
}
.hero-text {
  /* max-width: 365px; */
  font-family: "Asap Sharp", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #5c625e;
  margin-bottom: 30px;
}
.hero-visual {
  position: relative;
  padding: 12px 0 45px 20px;
}
.hero-visual img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  border-radius: 160px 24px 24px 24px;
}
.floating-card {
  position: absolute;
  background: #fffdf8e8;
  box-shadow: 0 8px 25px #1f29331c;
  border-radius: 16px;
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 11px;
  line-height: 1.3;
}
.card-top {
  top: 56px;
  left: -2px;
}
.card-bottom {
  bottom: 25px;
  right: -8px;
}
.card-icon {
  color: var(--gold);
  font-size: 27px;
}
.card-number {
  font-size: 22px;
  color: var(--gold);
  font-family: Georgia, serif;
}
.hero-foot {
  position: absolute;
  bottom: 36px;
  left: 7.8%;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a817c;
}
.scroll-line {
  width: 54px;
  height: 1px;
  background: var(--gold);
}
.section {
  padding: 105px 8%;
}
.intro {
  background: #fffdf8;
}
.intro-content,
.location-grid,
.faq-grid,
.enquire {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr;
  gap: 90px;
}
.section h2 {
  font-size: clamp(43px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 500;
  margin: 0;
}
.lead {
  font-size: 23px;
  line-height: 1.35;
  margin: 0 0 25px;
  max-width: 540px;
}
.intro-content p:not(.lead),
.location-grid p:not(.lead),
.enquire-copy > p {
  color: #68716c;
  max-width: 520px;
  font-family: "Asap Sharp", sans-serif;
}
.text-link {
  color: var(--green);
  display: inline-block;
  margin-top: 22px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
  font-size: 12px;
  font-family: "Asap Sharp", sans-serif;
}
.highlights {
  background: var(--green);
  color: var(--white);
}
.highlights .section-label {
  color: #d7b773;
}
.residence-table-wrap {
  margin-top: 52px;
  overflow-x: auto;
  border-top: 2px solid var(--line);
}
.residence-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 12px;
}
.residence-table th {
  padding: 16px 14px;
  text-align: left;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--line);
}
.residence-table td {
  padding: 21px 14px;
  font-size: 14px;
  border-bottom: 2px solid #004c29;
  white-space: nowrap;
  font-family: "Asap Sharp", sans-serif;
}
.residence-table th:first-child,
.residence-table td:first-child {
  padding-left: 0;
}
.residence-table th:last-child,
.residence-table td:last-child {
  padding-right: 0;
}
.status-pill {
  display: inline-flex;
  padding: 5px 9px;
  border: 1px solid #c9d5c5;
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  background: #004c29;
}
.table-cta {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.table-cta span {
  color: var(--gold);
  margin-left: 4px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.highlight-grid {
  display: grid;
  grid-template-columns:
    1fr
    1fr 1fr;
  gap: 18px;
  margin-top: 50px;
}
.highlight-feature {
  min-height: 290px;
  background: #0b7544;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.highlight-feature.dark {
  background: #004c29;
}
.large-outline {
  font-size: 125px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff55;
  position: absolute;
  right: -8px;
  top: 10px;
  font-family: Georgia, serif;
}
.highlight-feature h3 {
  position: absolute;
  bottom: 45px;
  font-size: 29px;
  line-height: 1;
  font-weight: 400;
}
.highlight-feature p {
  position: absolute;
  bottom: 18px;
  font-size: 11px;
  opacity: 0.7;
}
.highlight-note {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #d7e0d9;
}
.highlight-note p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.highlight-note strong {
  font: 400 28px/1.15 Georgia, serif;
  color: #fff;
}
.split-section {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  gap: 9%;
  align-items: center;
}
.split-image {
  position: relative;
}
.split-image img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  border-radius: 20px 130px 20px 20px;
}
.image-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fffdf8e8;
  padding: 12px 15px;
  border-radius: 10px;
  font: italic 14px Georgia, serif;
}
.split-copy h2 {
  margin: 28px 0;
}
.amenity-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.amenity-list div {
  display: flex;
  gap: 28px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.amenity-list b {
  color: var(--gold);
  font: 16px Georgia, serif;
}
.location {
  background: #e9eee8;
}
.location-grid {
  margin-top: 35px;
  align-items: center;
}
.location-grid h2 {
  margin-bottom: 30px;
}
.map-card {
  height: 360px;
  background: #dae3d8;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid #c9d6c9;
}
.map-lines {
  position: absolute;
  inset: -30px;
  transform: rotate(-25deg);
  opacity: 0.45;
}
.map-lines span {
  display: block;
  height: 1px;
  background: #9eb6a1;
  margin: 67px 0;
  width: 150%;
}
.map-pin {
  z-index: 1;
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font: 24px Georgia, serif;
  box-shadow: 0 0 0 10px #00633622;
}
.map-card p {
  z-index: 1;
  position: absolute;
  top: 52%;
  text-align: center;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 12px;
}
.map-card small {
  font-size: 8px;
  color: #718273;
}
.map-distance {
  position: absolute;
  bottom: 20px;
  left: 25px;
  right: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  color: #6c7b6e;
  letter-spacing: 0.1em;
}
.map-distance b {
  color: var(--green);
  font: italic 13px Georgia, serif;
  letter-spacing: 0;
}
.gallery {
  background: #fffdf8;
}
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 35px 0 45px;
}
.gallery-head p {
  color: #68716c;
  max-width: 240px;
  font: italic 17px Georgia, serif;
}
.gallery-grid {
    display: grid;
    gap: 18px;
    grid-auto-flow: dense;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
}
.gallery-grid .gallery-main {
  grid-row: span 2;
}
.gallery-grid > div {
  position: relative;
}
.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
}
.gallery-main img {
  height: 520px;
}
.gallery-grid span {
  position: absolute;
  bottom: 17px;
  left: 17px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 1px 7px #000;
}
.plans {
  background: var(--ink);
  color: #fff;
}
.plans .section-label {
  color: #d7b773;
}
.plans-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 50px;
}
.plans-row h2 {
  align-self: center;
}
.plan-card {
  min-height: 235px;
  border: 1px solid #ffffff30;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.plan-card.highlighted {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.plan-card span {
  font-size: 11px;
  letter-spacing: 0.15em;
}
.plan-card strong {
  font: 25px/1.1 Georgia, serif;
  font-weight: 400;
}
.plan-card a {
  font-size: 11px;
  color: var(--gold);
}
.highlighted a {
  color: var(--ink);
}
.faq-grid {
  margin-top: 50px;
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: 0;
  font-size: 15px;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
}
.faq-item button b {
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
}
.faq-item p {
  color: #68716c;
  max-width: 570px;
  padding: 0 45px 20px 0;
  margin: 0;
  font-size: 14px;
}
.enquire {
  background: var(--gold);
  border-radius: 0;
}
.enquire .section-label {
  color: #fff9ea;
}
.enquire h2 {
  margin: 28px 0;
}
.enquire-copy > p {
  color: #3f443e;
}
.contact-links {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-links a {
  display: flex;
  justify-content: space-between;
  max-width: 340px;
  border-bottom: 1px solid #1f293344;
  padding-bottom: 10px;
  font-size: 16px;
}
.contact-links span {
  font-weight: 700;
}
.enquire-form {
  background: #fffdf8;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.enquire-form label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6d766e;
}
.enquire-form input,
.enquire-form select {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 13px 0;
  font: 15px Arial;
  color: var(--ink);
  outline: 0;
}
.enquire-form input:focus,
.enquire-form select:focus {
  border-color: var(--green);
}
.enquire-form small {
  font-size: 10px;
  color: #89908a;
}
.success-message {
  padding: 35px 0;
}
.success-message span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}
.success-message h3 {
  font: 38px Georgia, serif;
  margin: 28px 0 4px;
}
.success-message p {
  color: #68716c;
}
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 45px 8%;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
.site-footer a.footer-brand {
    text-align: center;
    display: block;
}
.site-footer > div {
  text-align: center;
  color: #aeb8b0;
}
.site-footer > a:last-child {
  color: #d7b773;
}
.disclaimer {
  padding: 20px 8%;
  background: var(--ink);
  color: #aeb8b0;
  border-top: 1px solid #ffffff1a;
  font-size: 10px;
}
.mobile-cta {
  display: none;
}
.button-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}
@media (max-width: 760px) {
  .developer {
    display: block;
  }
  .developer-mark {
    width: 100px;
    height: 100px;
    margin-bottom: 34px;
    font-size: 30px;
  }
  .developer-values {
    margin-top: 40px;
  }
  .developer-copy h2 {
    font-size: 53px;
  }
  body {
    background: var(--paper);
  }
  .site-shell {
    margin: 0;
    border-radius: 0;
  }
  .site-header {
    height: 72px;
    padding: 0 6%;
    position: sticky;
    top: 0;
    background: #f7f5efef;
    z-index: 10;
  }
  .menu-button {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
  }
  .menu-button span {
    width: 24px;
    height: 1px;
    background: var(--ink);
  }
  .nav-links {
    display: none;
    font-family: "Asap Sharp", sans-serif;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px 6%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 15px 20px #0000000d;
  }
  .nav-links.open {
    display: flex;
  }
  .hero {
    display: block;
    padding: 48px 6% 80px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 76px;
    margin: 36px 0 28px;
  }
  .hero-visual {
    padding: 45px 0 20px;
  }
  .hero-visual img {
    height: 370px;
    border-radius: 110px 18px 18px 18px;
  }
  .card-top {
    top: 25px;
    left: -10px;
  }
  .card-bottom {
    right: -5px;
  }
  .hero-foot {
    left: 6%;
    bottom: 28px;
  }
  .section {
    padding: 75px 6%;
  }
  .intro-content,
  .location-grid,
  .faq-grid,
  .enquire {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 35px;
  }
  .intro-content h2,
  .faq-grid h2 {
    font-size: 53px;
  }
  .lead {
    font-size: 20px;
  }
  .highlight-grid,
  .plans-row,
  .gallery-grid,
  .split-section {
    grid-template-columns: 1fr;
  }
  .highlight-feature {
    min-height: 230px;
  }
  .highlight-note {
    min-height: 160px;
    padding: 20px 0;
  }
  .split-image img {
    height: 350px;
    border-radius: 18px 100px 18px 18px;
  }
  .location-grid {
    gap: 45px;
  }
  .map-card {
    height: 300px;
  }
  .gallery-head {
    display: block;
    margin: 30px 0;
  }
  .gallery-head p {
    margin-top: 22px;
  }
  .gallery-grid {
    gap: 12px;
  }
  .gallery-main img,
  .gallery-grid img {
    height: 300px;
  }
  .plans-row h2 {
    margin-bottom: 12px;
  }
  .plan-card {
    min-height: 190px;
  }
  .site-footer {
    padding: 35px 6%;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: wrap;
  }
  .site-footer .footer-links {
    width: 100%;
    max-width: none;
  }
  .site-footer > div {
    text-align: left;
  }
  .site-footer > a:last-child {
    width: 100%;
  }
  .disclaimer {
    padding: 18px 6% 90px;
  }
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 14px;
    left: 6%;
    right: 6%;
    z-index: 20;
    background: var(--green);
    color: #fff;
    border-radius: 999px;
    padding: 16px 20px;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 8px 25px #00633655;
  }
  .enquire {
    padding-bottom: 40px;
  }
}
