:root {
  --ink: #101712;
  --muted: #5d675e;
  --green: #b9ff5a;
  --leaf: #6e9337;
  --paper: #f7f8f4;
  --line: #e5eadf;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img,
svg {
  display: block;
}

button,
input,
select {
  font: inherit;
}

.wrap {
  width: min(100% - 32px, 1120px);
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #0b120d;
  color: #fff;
}

.hero-glow {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(185, 255, 90, 0.36), transparent 34%),
    linear-gradient(130deg, rgba(21, 58, 24, 0.25), transparent 48%);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 22px 0 40px;
}

.topbar,
.section-head,
.launch-top,
.phone-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand span {
  display: block;
  color: var(--green);
  font-size: clamp(1.45rem, 5vw, 2rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.call-btn,
.primary-action,
.sticky-call,
.enquiry-form button {
  border: 0;
  background: var(--green);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(185, 255, 90, 0.2);
}

.call-btn {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 0.78rem;
}

.hero-copy {
  margin-top: 54px;
  max-width: 680px;
}

.location-pill,
.tag-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
}

.location-pill {
  margin-top: 18px;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 800;
}

.location-pill svg,
.phone-line svg,
figcaption svg,
.location-list svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

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

h1 {
  margin-top: 22px;
  font-size: clamp(3.35rem, 15vw, 6.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
}

h1 span,
.launch-card h2 span {
  display: block;
  color: var(--green);
}

.hero-copy > p {
  margin-top: 22px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 2.8vw, 1.16rem);
  line-height: 1.8;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.tag-row span {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 800;
}

.price-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  padding: 76px 22px 22px;
  backdrop-filter: blur(14px);
}

.price-card small,
.launch-card > p:first-child,
.section-head p,
.phone-line p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.price-card strong {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 4px;
  color: var(--green);
  font-size: clamp(3rem, 13vw, 5rem);
  font-weight: 900;
  line-height: 0.86;
}

.price-card strong span {
  margin-top: 10px;
  font-size: 1.3rem;
}

.price-card p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
}

.registry-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  align-self: start;
  border-radius: 18px;
  background: var(--green);
  color: var(--ink);
  padding: 14px 16px;
  text-align: right;
  animation: pulse 1.5s ease-in-out infinite;
}

.registry-badge small,
.launch-badge small {
  color: currentColor;
  font-size: 0.64rem;
  opacity: 0.72;
}

.registry-badge b,
.launch-badge b {
  display: block;
  margin-top: 3px;
  font-size: 1.05rem;
}

.hero-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 2px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  border-radius: 17px;
  font-size: 0.92rem;
}

.hero-image {
  position: relative;
  overflow: hidden;
  margin: 28px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: #182118;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.32);
}

.hero-image img {
  width: 100%;
  height: clamp(260px, 58vw, 520px);
  object-fit: cover;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.12), transparent);
}

figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.5rem;
  font-weight: 900;
}

figcaption small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

figcaption a {
  display: grid;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
}

.section {
  padding: 44px 0;
}

.white {
  background: #fff;
}

.section-head p {
  color: var(--leaf);
}

.section-head h2,
.launch-card h2,
.enquiry-form h2 {
  margin-top: 8px;
  font-size: clamp(1.9rem, 7vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
}

.section-head > span {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #e7f4d2;
  color: #4e6c22;
  padding: 10px 14px;
  font-size: 0.74rem;
  font-weight: 900;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.amenity-grid article,
.location-list article {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 23, 18, 0.04);
}

.amenity-grid article {
  min-height: 144px;
  border-radius: 28px;
  padding: 18px;
}

.amenity-grid i,
.location-list i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 16px;
  background: #eef7df;
  color: var(--leaf);
  font-style: normal;
  font-weight: 900;
}

.amenity-grid h3 {
  margin-top: 18px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

.launch-card {
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, #101712, #23351a);
  color: #fff;
  padding: clamp(22px, 5vw, 34px);
  box-shadow: 0 24px 70px rgba(16, 23, 18, 0.22);
}

.launch-card .launch-top p {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.launch-badge {
  flex: 0 0 auto;
  border-radius: 18px;
  background: var(--green);
  color: var(--ink);
  padding: 14px;
  animation: softScale 1.8s ease-in-out infinite;
}

.launch-text {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.plot-sizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 22px;
}

.plot-sizes span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.plot-sizes b {
  display: block;
  color: var(--green);
  font-size: clamp(1.15rem, 5vw, 1.7rem);
  letter-spacing: 0;
}

.slim {
  margin-top: 34px;
}

.location-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.location-list article {
  display: flex;
  gap: 16px;
  border-radius: 28px;
  padding: 18px;
}

.location-list .featured {
  background: #f4f8ee;
}

.location-list h3 {
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.28;
}

.location-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.contact-zone {
  padding: 44px 0 88px;
}

.contact-card {
  border-radius: 34px;
  background: var(--ink);
  color: #fff;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(16, 23, 18, 0.22);
}

.phone-line {
  justify-content: flex-start;
}

.phone-line span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
}

.phone-line a {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.45rem, 6vw, 2.2rem);
  font-weight: 900;
}

.enquiry-form {
  display: grid;
  gap: 13px;
  margin-top: 26px;
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  padding: 20px;
}

.enquiry-form > p {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.enquiry-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.enquiry-form input,
.enquiry-form select {
  width: 100%;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: 0;
  background: #f8faf5;
  color: var(--ink);
  padding: 0 16px;
}

.enquiry-form input:focus,
.enquiry-form select:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(110, 147, 55, 0.13);
}

.enquiry-form button {
  min-height: 56px;
  cursor: pointer;
  border-radius: 16px;
}

.enquiry-form button:disabled {
  cursor: wait;
  opacity: 0.74;
}

.form-status {
  min-height: 22px;
  color: var(--leaf);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-status.error {
  color: #b42318;
}

.sticky-actions {
  position: fixed;
  z-index: 10;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sticky-call,
.sticky-enquire {
  display: grid;
  min-height: 52px;
  place-items: center;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(16, 23, 18, 0.2);
}

.sticky-enquire {
  background: #fff;
  color: var(--ink);
}

.reveal {
  animation: riseIn 0.55s ease-out both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  50% {
    opacity: 0.76;
  }
}

@keyframes softScale {
  50% {
    transform: scale(1.05);
  }
}

@media (min-width: 720px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: end;
    padding-bottom: 70px;
  }

  .topbar {
    grid-column: 1 / -1;
  }

  .hero-copy {
    margin-top: 70px;
  }

  .hero-image {
    margin-top: 0;
  }

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

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

  .location-list .featured {
    grid-column: 1 / -1;
  }

  .contact-card {
    display: grid;
    grid-template-columns: 0.86fr 1fr;
    gap: 28px;
    align-items: center;
    padding: 34px;
  }

  .enquiry-form {
    margin-top: 0;
  }

  .sticky-actions {
    right: 22px;
    left: auto;
    width: 360px;
  }
}

@media (max-width: 430px) {
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .topbar {
    align-items: flex-start;
  }

  .brand small {
    max-width: 170px;
    line-height: 1.5;
  }

  .registry-badge {
    text-align: right;
  }

  .launch-top,
  .section-head {
    align-items: flex-start;
  }

  .section-head {
    flex-direction: column;
  }

  .launch-top {
    flex-direction: column;
  }
}
