:root {
  --ink: #111714;
  --ink-soft: #27302b;
  --night: #08110d;
  --night-soft: #14211a;
  --paper: #f5f1e7;
  --ivory: #fffdf7;
  --white: #ffffff;
  --muted: #697169;
  --line: #d8d1c2;
  --gold: #d4ad4f;
  --gold-pale: #efe1b5;
  --sea: #1e7373;
  --green: #455e47;
  --wine: #6b4333;
  --shadow: 0 24px 60px rgba(10, 15, 12, 0.18);
  --font-body: "Manrope", Arial, Helvetica, sans-serif;
  --font-display: "DM Serif Display", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  letter-spacing: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.popup-open {
  overflow: hidden;
}

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

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

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

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

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

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 10px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  background: rgba(7, 13, 9, 0.76);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 242px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

h1,
h2,
h3,
.quick-strip strong,
.plan-copy dt,
.footer-brand strong {
  font-family: var(--font-display);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 30px);
  color: rgba(255, 255, 255, 0.83);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  padding: 9px 0;
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.phone-mark {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4dbd73;
  box-shadow: 0 0 0 4px rgba(77, 189, 115, 0.18);
}

.header-cta,
.button,
.quick-strip button,
.plan-copy button,
.lead-dock button,
.lead-dock a,
.popup-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.header-cta {
  min-height: 42px;
  padding: 0 16px;
  color: #1a170d;
  background: var(--gold);
}

.header-cta:hover,
.button-gold:hover,
.quick-strip button:hover,
.form-submit:hover {
  background: #e2be65;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 90vh;
  min-height: 90svh;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero-slides,
.hero-slide,
.hero-slide img,
.hero-slide video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

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

.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 8s ease;
}

.hero-slide.is-active img,
.hero-slide.is-active video {
  transform: scale(1.07);
}

.hero-slide:first-child img {
  object-position: center 58%;
}

.hero-overlay {
  background: rgba(5, 11, 7, 0.56);
  box-shadow: inset 0 0 170px rgba(3, 7, 5, 0.66);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(255px, 330px);
  align-items: center;
  gap: clamp(32px, 7vw, 112px);
  width: min(1180px, calc(100% - 36px));
  min-height: 90vh;
  min-height: 90svh;
  margin: 0 auto;
  padding: 110px 0 92px;
}

.hero-copy {
  max-width: 735px;
  animation: rise-in 800ms ease both;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-location,
.hero-kicker,
.section-kicker,
.plan-tower,
.quick-label,
.popup-project {
  margin: 0;
  color: var(--gold-pale);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-location {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-kicker {
  margin-bottom: 12px;
}

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

h1,
h2,
h3 {
  font-weight: 400;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: 84px;
  line-height: 0.94;
}

h1 em {
  display: block;
  color: var(--gold-pale);
  font-style: normal;
}

.hero-description {
  max-width: 600px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.button {
  min-width: 168px;
  padding: 0 19px;
}

.button-gold {
  color: #18150c;
  background: var(--gold);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
  background: rgba(6, 15, 10, 0.18);
}

.button-ghost:hover {
  border-color: var(--gold-pale);
  color: var(--gold-pale);
  background: rgba(6, 15, 10, 0.46);
}

.hero-signals {
  display: grid;
  gap: 11px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.hero-signals > span,
.hero-access > span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-signals > span::before,
.hero-access > span::before {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold-pale);
  border-radius: 50%;
  content: "";
}

.hero-access ul {
  display: flex;
  max-width: 570px;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin: 8px 0 0 17px;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
  list-style: none;
}

.hero-access li {
  position: relative;
  padding-left: 10px;
}

.hero-access li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: var(--gold-pale);
}

.hero-aside {
  align-self: end;
  margin-bottom: 18px;
  padding: 22px 0 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid var(--gold);
  background: rgba(8, 17, 13, 0.52);
  animation: rise-in 800ms 140ms ease both;
}

.hero-aside p {
  margin-bottom: 10px;
  color: var(--gold-pale);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-aside strong,
.hero-aside span {
  display: block;
}

.hero-aside strong {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.06;
}

.hero-aside span {
  max-width: 250px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.hero-aside button {
  margin-top: 21px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid var(--gold);
  color: var(--white);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.hero-aside button:hover {
  color: var(--gold-pale);
}

.hero-slider-nav {
  position: absolute;
  z-index: 3;
  right: max(18px, calc((100% - 1180px) / 2));
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.hero-slider-nav > button,
.carousel-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  font-size: 18px;
  line-height: 1;
}

.hero-slider-nav > button {
  color: rgba(255, 255, 255, 0.88);
}

.hero-slider-nav > button:hover {
  color: var(--gold-pale);
}

.hero-dots {
  display: flex;
  gap: 7px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
}

.hero-dots button.is-active {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 173, 79, 0.16);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 190px;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.quick-strip > div,
.quick-strip button {
  min-height: 110px;
  padding: 24px clamp(18px, 3vw, 38px);
  border: 0;
  border-right: 1px solid var(--line);
}

.quick-strip > div {
  display: grid;
  align-content: center;
  gap: 7px;
}

.quick-label {
  color: var(--muted);
  font-size: 10px;
}

.quick-strip strong {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.15;
}

.quick-strip button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-right: 0;
  color: #161307;
  background: var(--gold);
}

.quick-strip button span:first-child {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
}

.quick-strip button span:last-child {
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: clamp(66px, 9vw, 112px) clamp(18px, 4vw, 56px);
}

.section-title {
  max-width: 710px;
}

.section-title.centered {
  margin: 0 auto 42px;
  text-align: center;
}

.section-kicker {
  margin-bottom: 13px;
  color: var(--wine);
}

.section-title h2,
.location-content h2,
.developer-section h2,
.enquiry-copy h2 {
  margin-bottom: 16px;
  font-size: 52px;
  line-height: 1.08;
}

.section-title > p:last-child,
.location-content > p:not(.section-kicker),
.enquiry-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.carousel-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 2px;
}

.highlight-card {
  display: flex;
  width: 318px;
  min-height: 310px;
  flex: 0 0 318px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--ivory);
}

.highlight-card.is-dark {
  border-color: var(--night-soft);
  color: var(--white);
  background: var(--night-soft);
}

.highlight-card.is-olive {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
}

.highlight-index {
  margin-bottom: auto;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.highlight-card h3 {
  margin-bottom: 11px;
  font-size: 31px;
  line-height: 1;
}

.highlight-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.highlight-card.is-dark p,
.highlight-card.is-olive p {
  color: rgba(255, 255, 255, 0.7);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 20px;
  color: var(--ink-soft);
}

.carousel-controls span {
  min-width: 125px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.carousel-controls button:hover {
  color: var(--wine);
}

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

.light-title .section-kicker {
  color: var(--gold-pale);
}

.light-title > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
  gap: 18px;
  width: min(1060px, 100%);
  margin: 0 auto;
}

.plan-card {
  position: relative;
  min-height: 575px;
  overflow: hidden;
  border-radius: 7px;
  background: #17231d;
}

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

.plan-card img {
  object-fit: cover;
  transition: transform 700ms ease;
}

.plan-shade {
  background: rgba(5, 12, 8, 0.54);
  box-shadow: inset 0 -220px 120px rgba(4, 9, 6, 0.82);
}

.plan-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 31px;
}

.plan-tower {
  display: block;
  margin-bottom: 9px;
}

.plan-copy h3 {
  max-width: 425px;
  margin-bottom: 22px;
  font-size: 37px;
  line-height: 1.02;
}

.plan-copy dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 25px;
}

.plan-copy dl div {
  min-width: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.plan-copy dt,
.plan-copy dd {
  margin: 0;
}

.plan-copy dt {
  margin-bottom: 5px;
  color: var(--gold-pale);
  font-size: 14px;
  font-weight: 500;
}

.plan-copy dd {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.35;
}

.plan-copy button {
  min-height: 41px;
  padding: 0 15px;
  border-color: var(--gold-pale);
  color: var(--night);
  background: var(--gold-pale);
}

.plan-copy button:hover {
  background: var(--white);
}

.plan-card:hover img {
  transform: scale(1.04);
}

.project-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.95fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: end;
  background: var(--paper);
}

.project-content {
  max-width: 790px;
}

.project-intro {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.project-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.project-stats div {
  display: grid;
  min-height: 145px;
  align-content: end;
  gap: 8px;
  padding: 21px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-stats strong {
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.project-stats span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.gallery-section {
  background: var(--ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1060px, 100%);
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  min-height: 325px;
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  background: var(--night);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-card:nth-child(1) img {
  object-position: center 68%;
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(7, 13, 9, 0.1);
  box-shadow: inset 0 -115px 78px rgba(3, 7, 5, 0.7);
}

.gallery-card figcaption {
  position: absolute;
  z-index: 1;
  right: 19px;
  bottom: 18px;
  left: 19px;
  color: var(--white);
}

.gallery-card figcaption span,
.gallery-card figcaption strong,
.gallery-card figcaption p {
  display: block;
}

.gallery-card figcaption span {
  margin-bottom: 6px;
  color: var(--gold-pale);
  font-size: 10px;
  font-weight: 800;
}

.gallery-card figcaption strong {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.08;
}

.gallery-card figcaption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(0, 0.8fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
  background: #eef0e9;
}

.location-map {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  border-radius: 7px;
  background: #d3ddd4;
  box-shadow: var(--shadow);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 490px;
  border: 0;
}

.map-water,
.map-land {
  position: absolute;
  inset: 0;
}

.map-water {
  clip-path: polygon(0 0, 55% 0, 43% 100%, 0 100%);
  background: #2b7d83;
}

.map-land {
  clip-path: polygon(55% 0, 100% 0, 100% 100%, 43% 100%);
  background: #d9d2c1;
}

.map-route {
  position: absolute;
  z-index: 1;
  height: 7px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 0 0 2px rgba(17, 23, 20, 0.08);
}

.map-route-one {
  top: 42%;
  left: 12%;
  width: 68%;
  transform: rotate(-12deg);
}

.map-route-two {
  top: 58%;
  left: 37%;
  width: 54%;
  transform: rotate(42deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  max-width: 154px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--white);
  background: var(--night-soft);
  box-shadow: 0 8px 22px rgba(10, 15, 12, 0.24);
  font-size: 11px;
  font-weight: 800;
}

.map-pin-project {
  top: 37%;
  left: 34%;
  background: var(--wine);
}

.map-pin-bkc {
  top: 22%;
  right: 13%;
}

.map-pin-sealink {
  top: 54%;
  left: 11%;
  color: #181409;
  background: var(--gold);
}

.map-pin-airport {
  right: 7%;
  bottom: 21%;
  background: var(--green);
}

.location-content .section-kicker {
  color: var(--wine);
}

.location-content h2 {
  max-width: 580px;
}

.connectivity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 27px 0 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.connectivity-list div {
  display: grid;
  gap: 5px;
  min-height: 83px;
  align-content: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.connectivity-list strong {
  font-size: 13px;
}

.connectivity-list span {
  color: var(--muted);
  font-size: 12px;
}

.location-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-bottom: 1px solid var(--wine);
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
}

.developer-section {
  display: grid;
  grid-template-columns: 92px minmax(0, 0.9fr) minmax(250px, 0.7fr);
  gap: 28px;
  align-items: center;
  color: #181409;
  background: var(--gold);
}

.developer-mark {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(24, 20, 9, 0.54);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 47px;
}

.developer-section .section-kicker {
  color: rgba(24, 20, 9, 0.72);
}

.developer-section h2 {
  margin-bottom: 0;
  font-size: 39px;
}

.why-points {
  display: grid;
  gap: 13px;
}

.why-points div {
  padding-top: 12px;
  border-top: 1px solid rgba(24, 20, 9, 0.44);
}

.why-points strong,
.why-points span {
  display: block;
}

.why-points strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.why-points span {
  color: rgba(24, 20, 9, 0.72);
  font-size: 12px;
  line-height: 1.4;
}

.enquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.9fr);
  gap: clamp(36px, 8vw, 118px);
  align-items: center;
  color: var(--white);
  background: var(--night);
}

.enquiry-copy .section-kicker {
  color: var(--gold-pale);
}

.enquiry-copy > p {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.66);
}

.enquiry-whatsapp {
  display: inline-flex;
  margin-top: 26px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-pale);
  font-size: 14px;
  font-weight: 800;
}

.enquiry-form,
.popup-dialog {
  border: 1px solid rgba(212, 173, 79, 0.38);
  border-radius: 7px;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.enquiry-form {
  padding: clamp(22px, 4vw, 36px);
}

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

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d8d1c4;
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: #fffdf8;
  font-size: 13px;
  font-weight: 500;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #8a8b82;
  opacity: 1;
}

textarea {
  min-height: 106px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(30, 115, 115, 0.16);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.consent input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  accent-color: var(--sea);
}

.form-submit {
  width: 100%;
  margin-top: 7px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  gap: 40px;
  padding: 33px clamp(18px, 4vw, 56px) 100px;
  color: rgba(255, 255, 255, 0.68);
  background: #050906;
}

.footer-brand .footer-logo,
.footer-brand span {
  display: block;
}

.footer-logo {
  width: 220px;
  height: auto;
  margin-bottom: 10px;
}

.footer-brand span,
.site-footer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.footer-credit {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px !important;
  text-align: center;
}

.footer-credit a {
  color: var(--gold-pale);
  font-weight: 700;
}

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

.lead-dock {
  position: fixed;
  z-index: 28;
  right: 18px;
  bottom: 17px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.28);
}

.lead-dock button,
.lead-dock a {
  min-width: 144px;
  min-height: 48px;
  padding: 0 15px;
  border: 0;
  border-radius: 0;
}

.lead-dock button {
  color: #181409;
  background: var(--gold);
}

.lead-dock a {
  gap: 7px;
  color: var(--white);
  background: #16864f;
}

.lead-dock a span:first-child {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  font-size: 8px;
}

.lead-dock button:hover,
.lead-dock a:hover {
  filter: brightness(1.08);
}

.popup[hidden] {
  display: none;
}

.popup {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 5, 0.82);
  backdrop-filter: blur(7px);
}

.popup-dialog {
  position: relative;
  width: min(482px, 100%);
  max-height: calc(100svh - 36px);
  overflow-y: auto;
  padding: 36px;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 25px;
  line-height: 1;
}

.popup-close:hover {
  color: var(--wine);
}

.popup-project {
  margin: 0 30px 8px;
  color: #8f742f;
  font-size: 10px;
  text-align: center;
}

.popup-dialog h2 {
  margin-bottom: 10px;
  color: #b28d30;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.06;
  text-align: center;
}

.popup-intro {
  max-width: 355px;
  margin: 0 auto 21px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.popup-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 23px;
  padding: 13px 0;
  border-top: 1px solid #d7c172;
  border-bottom: 1px solid #d7c172;
}

.popup-benefits span {
  display: grid;
  min-height: 36px;
  place-items: center;
  padding: 0 7px;
  border-right: 1px solid #d7c172;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.popup-benefits span:last-child {
  border-right: 0;
}

.popup-consent {
  margin-bottom: 16px;
}

.popup-or {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 17px 0;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.popup-or::before,
.popup-or::after {
  height: 1px;
  flex: 1;
  content: "";
  background: #d7c172;
}

.popup-whatsapp {
  width: 100%;
  border-color: #269862;
  color: #16864f;
  background: transparent;
}

.popup-whatsapp:hover {
  color: var(--white);
  background: #16864f;
}

.popup-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-copy,
  .hero-aside {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .plan-card img,
  .gallery-card img {
    transition: none;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(220px, 1fr) auto;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    grid-column: 2;
  }

  .hero-content {
    gap: 55px;
  }

  h1 {
    font-size: 72px;
  }

  .section-title h2,
  .location-content h2,
  .developer-section h2,
  .enquiry-copy h2 {
    font-size: 46px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    align-items: end;
    padding-bottom: 82px;
  }

  .hero-aside {
    display: none;
  }

  .hero-slider-nav {
    left: 18px;
    right: auto;
  }

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

  .quick-strip > div:nth-child(2) {
    border-right: 0;
  }

  .quick-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .quick-strip button {
    border-right: 0;
  }

  .project-section,
  .location-section,
  .enquiry-section {
    grid-template-columns: 1fr;
  }

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

  .developer-section {
    grid-template-columns: 76px 1fr;
  }

  .why-points {
    grid-column: 1 / -1;
    max-width: 660px;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    min-height: 62px;
    padding: 8px 14px;
  }

  .brand {
    width: 190px;
  }

  .header-phone {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 11px;
    font-size: 11px;
  }

  .hero,
  .hero-content {
    min-height: 89vh;
    min-height: 89svh;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding-top: 92px;
    padding-bottom: 72px;
  }

  .hero-location {
    margin-bottom: 16px;
    font-size: 10px;
  }

  .hero-kicker {
    font-size: 10px;
  }

  h1 {
    margin-bottom: 17px;
    font-size: 50px;
    line-height: 0.98;
  }

  .hero-description {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 290px;
  }

  .button {
    width: 100%;
  }

  .hero-signals {
    font-size: 11px;
  }

  .hero-access ul {
    gap: 6px 10px;
    font-size: 10px;
  }

  .hero-slider-nav {
    bottom: 19px;
  }

  .hero-slider-nav > button {
    width: 34px;
    height: 34px;
  }

  .quick-strip > div,
  .quick-strip button {
    min-height: 92px;
    padding: 17px;
  }

  .quick-strip strong {
    font-size: 17px;
  }

  .quick-strip button {
    font-size: 11px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-title.centered,
  .section-title.centered {
    margin-bottom: 31px;
  }

  .section-title h2,
  .location-content h2,
  .developer-section h2,
  .enquiry-copy h2 {
    font-size: 35px;
    line-height: 1.06;
  }

  .section-title > p:last-child,
  .location-content > p:not(.section-kicker),
  .enquiry-copy > p,
  .project-intro {
    font-size: 15px;
  }

  .highlight-card {
    width: min(78vw, 290px);
    min-height: 284px;
    flex-basis: min(78vw, 290px);
    padding: 23px;
  }

  .highlight-card h3 {
    font-size: 28px;
  }

  .carousel-controls {
    justify-content: center;
  }

  .carousel-controls span {
    min-width: 90px;
  }

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

  .plan-card {
    min-height: 515px;
  }

  .plan-copy {
    padding: 23px;
  }

  .plan-copy h3 {
    margin-bottom: 18px;
    font-size: 30px;
  }

  .plan-copy dl {
    gap: 8px;
    margin-bottom: 18px;
  }

  .plan-copy dt {
    font-size: 12px;
  }

  .plan-copy dd {
    font-size: 10px;
  }

  .project-stats {
    margin-top: 5px;
  }

  .project-stats div {
    min-height: 122px;
    padding: 16px;
  }

  .project-stats strong {
    font-size: 26px;
  }

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

  .gallery-card {
    min-height: 255px;
  }

  .gallery-card figcaption strong {
    font-size: 25px;
  }

  .location-map {
    min-height: 350px;
  }

  .map-pin {
    max-width: 112px;
    padding: 6px 7px;
    font-size: 9px;
  }

  .connectivity-list {
    margin-top: 22px;
  }

  .developer-section {
    grid-template-columns: 61px 1fr;
    gap: 18px;
  }

  .developer-mark {
    width: 58px;
    height: 58px;
    font-size: 31px;
  }

  .developer-section h2 {
    font-size: 31px;
  }

  .enquiry-section {
    gap: 32px;
  }

  .enquiry-form {
    padding: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 19px;
    padding-bottom: 118px;
  }

  .lead-dock {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .lead-dock button,
  .lead-dock a {
    min-width: 0;
    padding: 0 8px;
    font-size: 12px;
  }

  .popup {
    padding: 12px;
  }

  .popup-dialog {
    max-height: calc(100svh - 24px);
    padding: 28px 19px 22px;
  }

  .popup-dialog h2 {
    font-size: 34px;
  }

  .popup-benefits span {
    font-size: 9px;
  }
}
