@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #2e2e2e;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

:root {
  --green: #79482a;
  --green-dark: #334d2d;
  --muted: #707070;
  --section: #f6f6f6;
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
}


.qr-code {
    width: 100px;
    height: auto;
}

.sbmt-btn {
    width: 100%;
    height: 40px;
    margin-top: 24px;
    margin-bottom: 10px;
    border: 0;
    border-radius: 22px !important;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    background: var(--green) !important;
    color: #fff !important;
    cursor: pointer;
}


/* Header mirrors the reference: absolute over hero, then fixed after scrolling. */
.site-header {
    position: absolute;
    top: 5px;
    left: 50%;
    z-index: 50;
    width: calc(100% - 64px);
    min-height: 58px;
    padding: 4px 13px;
    display: flex;
    align-items: center;
    gap: 28px;
    transform: translateX(-50%);
    background: #ffffff;
    transition: width 0.2s ease, box-shadow 0.2s ease, top 0.2s ease;
}

.site-header.is-fixed {
  position: fixed;
  top: 5px;
  width: 100%;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
    width: 86px;
    height: auto;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  margin-left: auto;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: #000;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header nav {
    flex: 1;
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    transform: translateX(-39px);
}

.call-btn-header {
    background: #79482a;
    padding: 10px 20px 10px 20px;
    color: #fff !important;
    border-radius: 10px;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.site-header nav a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.site-header nav a:hover {
  color: var(--green);
}

.hero {
    position: relative;
    min-height: 750px;
    padding: 105px 46px 35px;
    background: linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)),
    url("assets/images/hero.webp") center center / cover no-repeat;
}

.hero-content {
  max-width: 1188px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 34px;
}

.launch-card {
  width: 385px;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  color: #111;
  background: #fff;
  box-shadow: var(--shadow);
}

.launch-head {
  padding: 10px 14px;
  color: #fff;
  background: var(--green);
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.launch-body {
  padding: 12px 18px 15px;
  text-align: center;
}

.launch-body h1 {
    margin: 0;
    color: #111;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.12;
}

.byline {
  margin: 4px 0 14px;
  color: #333;
  font-size: 15px;
}

.offer-box,
.price-badge,
.green-btn,
.lead-form button,
.pricing button,
.popup-form button,
.bottom-actions button {
  background: var(--green);
  color: #fff;
}

.offer-box {
    margin: 0 auto 11px;
    padding: 5px 5px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.15;
}

.offer-box p {
  margin: 3px 0;
}

.info-box {
  margin: 11px 0;
  padding: 11px 14px;
  border-radius: 8px;
  background: #f3f3f3;
}

.info-box p {
  margin: 0 0 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #555;
  font-size: 14px;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.info-box strong {
  color: #111;
  text-align: right;
}

.launch-body ul {
    margin: 0 0 12px;
    padding: 0;
    text-align: left;
    list-style: none;
    font-size: 13px;
    line-height: 1.55;
}

.launch-body li::before {
  content: "◆";
  margin-right: 8px;
  color: #111;
  font-size: 11px;
}

.launch-body li::before {
  content: "\25c6";
}

.price-badge {
  
  margin: 0 auto 15px;
  padding: 9px 16px;
  border-radius: 25px;
  display: grid;
  gap: 3px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.green-btn {
  min-width: 230px;
  min-height: 43px;
  padding: 0 24px;
  border: 0;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  text-transform: capitalize;
  box-shadow: 0 8px 18px rgba(75, 103, 59, 0.22);
}

.icon-btn::before {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  background: url("assets/images/calendar.gif") center / contain no-repeat;
  content: "";
}

.brochure-btn {
  gap: 0;
}

.brochure-badge {
  width: 25px;
  height: auto;
  max-width: none;
  margin-right: 10px;
  flex: 0 0 auto;
}

.lead-form {
    width: 306px;
    margin-left: auto;
    margin-top: 80px;
    padding: 16px 18px 18px;
    border-radius: 8px;
    color: #111;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.lead-form h2,
.popup-form h2 {
  margin: 0 0 6px;
  color: #111;
  font-size: 18px;
  line-height: 1.25;
  text-align: center;
}

.lead-form p,
.popup-form p {
  margin: 0 0 12px;
  color: #555;
  text-align: center;
  font-size: 13px;
}

.lead-form label {
  display: block;
  margin-bottom: 9px;
  color: #222;
  font-size: 13px;
  font-weight: 700;
}

.lead-form input,
.popup-form input {
  width: 100%;
  height: 38px;
  margin-top: 5px;
  padding: 0 12px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  color: #111;
  background: #fff;
  font-size: 13px;
}

.lead-form button,
.popup-form button {
  width: 100%;
  height: 40px;
  margin-top: 4px;
  border: 0;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-form small,
.popup-form small {
  display: block;
  margin-top: 10px;
  color: #777;
  text-align: center;
  font-size: 12px;
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.scroll-down span {
  width: 24px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 18px;
  position: relative;
}

.scroll-down span::after {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 9px;
  border-radius: 8px;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollPulse 1.4s ease-in-out infinite;
  content: "";
}

@keyframes scrollPulse {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  100% {
    opacity: 0.15;
    transform: translate(-50%, 18px);
  }
}

.section-white,
.section-grey {
  padding: 78px 6%;
}

.section-grey {
  background: var(--section);
}

h2 {
  margin: 0 0 30px;
  color: #111;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.18;
}

.section-grid{
    max-width:1240px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.12fr 0.88fr;
    gap:40px;
    align-items:start;
}
.section-grid > img {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: auto;
}
.section-copy h2 {
  margin-bottom: 10px;
  text-align: left;
}

.section-copy h3 {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 18px;
}

.section-copy p {
  margin: 0 0 15px;
  color: #505050;
}

.highlight-grid {
  max-width: 1160px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}
/* Right column (05,06,07) */
.highlight-item:nth-child(even) {
    grid-template-columns: 1fr 46px;
}

.highlight-item:nth-child(even) span {
    order: 2;
}

.highlight-item:nth-child(even) p {
    order: 1;
}
.highlight-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 13px;
}

.highlight-item span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-size: 18px;
  font-weight: 800;
}

.highlight-item p {
  min-height: 58px;
  margin: 0;
  padding: 16px 22px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.06);
  color: #222;
  font-size: 18px;
}

.centered {
  margin: 0 auto;
  display: flex;
}

.pricing-grid {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  justify-content: center;
  gap: 24px;
}

.pricing article {
  min-height: 235px;
  padding: 20px 18px 16px;
  border-radius: 8px;
  display: grid;
  align-items: center;
  justify-items: center;
  text-align: center;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.pricing h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
}

.pricing strong {
  color: #111;
  font-size: 23px;
}

.pricing p {
  margin: 0;
  color: #555;
  font-size: 15px;
  letter-spacing: 0;
}

.pricing button {
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: capitalize;
}

.small-title {
  max-width: 1372px;
  margin: 0 auto 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #222;
  color: #111;
  font-size: 17px;
  font-weight: 600;
}

.amenities h2 {
    max-width: 1372px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    font-size: 32px;
}

.wide-text {
  max-width: 1372px;
  margin: 0 auto 34px;
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}

.amenity-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 24px;
}

.amenity-grid figure {
  margin: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  justify-items: center;
  gap: 12px;
  cursor: default;
}

.amenity-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-icon svg {
  width: 34px;
  height: 34px;
}

.amenity-grid figure:hover .amenity-icon {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.amenity-grid figcaption {
  padding: 0 8px;
  color: #111;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.plans {
  text-align: center;
}

.plans.section-white {
  padding-top: 92px;
  padding-bottom: 86px;
}

.plan-tabs {
  margin-bottom: 38px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.plan-tabs button {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--green);
  border-radius: 22px;
  color: var(--green);
  background: #fff;
  font-size: 15px;
  font-weight: 700;
}

.plan-tabs button.active {
  color: #fff;
  background: var(--green);
}

.plan-panel {
  display: none;
}

.plan-panel.active {
    display: block;
}

#floor2.plan-panel.active {
    display: grid;
}
.plan-panel {
  max-width: 535px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
}

#floor2.plan-panel {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}
#floor2.plan-panel.active{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    max-width:1100px;
    margin:0 auto;
}
.floor-card {
  max-width: 535px;
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.floor-card:last-child {
  margin-bottom: 0;
}

.floor-image {
  position: relative;
  overflow: hidden;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floor-image img,
.floor-card img {
  width: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.floor-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  transform: scale(1.03);
}

.floor-view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 226px;
  min-height: 58px;
  padding: 0 25px;
  border: 0;
  border-radius: 0;
  color: #000;
  background: rgba(208, 191, 118, 0.78);
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floor-card h3 {
  margin: 0;
  padding: 24px 10px;
  border-top: 1px solid #ddd;
  color: #111;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.05;
}

.plan-panel img {
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.plan-panel h3 {
  margin: 0;
  padding: 24px 10px;
  border-top: 1px solid #ddd;
  color: #111;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.05;
}

.investment-intro {
  max-width: 1160px;
  margin: -8px auto 34px;
  color: #222;
  font-size: 17px;
  line-height: 1.7;
  text-align: left;
}

.investment {
  background: #f5f3ef;
}

.location-intro {
  max-width: 960px;
  margin: -10px auto 40px;
  text-align: center;
  color: #444;
  font-size: 17px;
}

.location-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 32px;
    align-items: start;
}

.location-grid > img{
    order:1;
    width:100%;
    height:auto;
    margin-top:20px;
    object-fit:contain;
    object-position:center;
    border-radius:0;
    box-shadow:none;
}
.accordion{
    order:2;
    width:100%;
}

.accordion article {
  border-bottom: 1px solid #d9d9d9;
}

.accordion article:last-child {
  border-bottom: 0;
}

.accordion h3 {
  margin: 0;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  color: #333;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.accordion ul {
  display: none;
  margin: 0;
  padding: 0 0 18px 18px;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.accordion article.open ul {
  display: block;
}

.check-grid {
  max-width: 1160px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 46px;
}

.check-grid p {
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
  color: #666;
  font-size: 15px;
  line-height: 1.45;
}

.check-grid span {
  color: var(--green);
  display: block;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
}

.gallery-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid img {
  height: 250px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: none;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.08);
}

@media (max-width: 1366px) {
  .gallery-grid img {
    height: 225px;
  }
}

.contact-band {
  max-width: 980px;
  margin: 0 auto;
  padding: 6px 0 0;
  display: block;
  color: #111;
  background: transparent;
  text-align: center;
}

.contact-band h2,
.contact-band p {
  margin: 0;
  color: #111;
  text-align: center;
}

.contact-band h2 {
  margin-bottom: 26px;
  font-size: 31px;
  line-height: 1.15;
}

.contact-band p {
  margin: 0 auto 24px;
  color: #676767;
  font-size: 21px;
  line-height: 1.35;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  margin-bottom: 12px;
  padding: 18px 20px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.faq-list summary {
  color: #111;
  font-weight: 700;
  cursor: pointer;
}

.faq-list p {
  margin: 12px 0 0;
  color: #555;
}

footer {
  color: #000;
  background: #f3f3f3;
}

.site-footer {
  padding: 70px 7% 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 72px;
  align-items: start;
}

.footer-about {
  max-width: 760px;
  margin: 0;
  text-align: left;
}

.footer-about h2 {
  margin-bottom: 24px;
  color: #000;
  text-align: left;
  font-size: 30px;
  font-weight: 700;
}

.footer-about p {
  margin: 0 0 26px;
  color: #111;
  font-size: 16px;
  line-height: 1.45;
}

.footer-about h5 {
    margin: 0 0 6px;
    color: #111;
    font-size: 19px;
    font-weight: 500;
}

.rera-number {
  margin: -18px 0 0;
  font-size: 16px;
  line-height: 1.3;
}

.footer-visit-form {
  max-width: none;
  margin: 0;
  padding: 26px 30px 36px;
  background: #fff;
  box-shadow: 20px 18px 42px rgba(0, 0, 0, 0.04);
}

.footer-visit-form h2 {
  margin: 0 0 20px;
  color: #000;
  text-align: left;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.footer-visit-form input[type="text"],
.footer-visit-form input[type="email"],
.footer-visit-form input[type="tel"] {
  width: 100%;
  height: 66px;
  padding: 16px 14px 8px;
  border: 0;
  border-bottom: 1px solid #111;
  border-radius: 0;
  color: #000;
  background: transparent;
  font-size: 18px;
  outline: 0;
}

.footer-visit-form input::placeholder {
  color: #000;
  opacity: 1;
}

.footer-visit-form button {
  width: 100%;
  max-width: 100%;
  height: 48px;
  margin: 20px 0 12px;
  border: 0;
  border-radius: 28px;
  color: #fff;
  background: var(--green);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.safe-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 12px;
  line-height: 1.35;
}

.safe-check input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #0d6efd;
}

.disclaimer {
  grid-column: 1 / -1;
  max-width: 100%;
  margin: 44px 0 0;
  padding: 16px 0 0;
  color: #000;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
}

.privacy-policy {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  text-align: center;
  font-size: 11px;
  line-height: 1.3;
}

.privacy-policy a {
  color: #000;
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .site-footer {
    padding: 42px 18px 92px;
    display: block;
  }

.footer-about h2, .footer-visit-form h2 {
    font-size: 23px;
    margin-bottom: 8px;
}

.footer-about p {
    margin: 0 0 26px;
    color: #111;
    font-size: 14px;
    line-height: 1.45;
}

  .footer-about h5,
  .rera-number {
    font-size: 16px;
  }

  .footer-visit-form {
    margin-bottom: 34px;
    padding: 18px 22px 38px;
  }

  .footer-visit-form input[type="text"],
  .footer-visit-form input[type="email"],
  .footer-visit-form input[type="tel"] {
    height: 62px;
    padding-left: 0;
    font-size: 17px;
  }

  .footer-visit-form button {
    height: 48px;
    font-size: 16px;
  }

  .disclaimer {
    font-size: 12px;
    line-height: 1.45;
  }

  .privacy-policy {
    font-size: 10px;
  }
}

.bottom-actions {
  position: fixed;
  right: 18px;
  bottom: 16px;
  z-index: 45;
  display: flex;
  gap: 8px;
}

.bottom-actions button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* Popup proportions are intentionally smaller to match the reference modal. */
.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.62);
}

.modal.open,
.lightbox.open {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(400px, 100%);
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.modal-card > img {
  height: 183px;
  margin: 17px auto 0;
  width: calc(100% - 34px);
  border-radius: 20px;
  object-fit: cover;
}

.modal-close,
.lightbox-close {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  font-size: 22px;
  line-height: 1;
}

.popup-form {
  padding: 10px 17px 14px;
}

.popup-form input {
  height: 55px;
  margin: 0 0 8px;
  border-radius: 10px;
  padding-left: 35px;
}

.popup-form button {
  height: 44px;
  font-size: 18px;
}

.lightbox img {
  max-width: min(980px, 96vw);
  max-height: 86vh;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

@media (max-width: 1100px) {
  .site-header {
    width: calc(100% - 24px);
    gap: 16px;
  }

  .site-header nav {
    gap: 14px;
  }

  .site-header nav a {
    font-size: 14px;
  }

  .brand img {
    width: 220px;
  }

  .hero {
    padding: 82px 24px 72px;
  }

  .hero-content {
    display: grid;
    grid-template-columns: minmax(320px, 390px) minmax(270px, 306px);
    justify-content: space-between;
    gap: 24px;
  }

  .launch-card,
  .lead-form {
    width: min(100%, 390px);
  }

.lead-form {
    margin: 0;
    width: 100%;
}

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

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

  #floor2.plan-panel.active {
    grid-template-columns: 1fr;
    max-width: 535px;
  }

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

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

.site-header {
    left: 0;
    width: 100%;
    transform: none;
    top: 0;
    min-height: 55px;
    padding: 0px 13px;
}

  .menu-toggle {
    display: block;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-header nav {
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    padding: 12px 16px 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header.menu-open nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

.brand img {
    width: 55px;
}

  .hero {
    min-height: auto;
    padding: 82px 16px 72px;
    background-position: center top;
  }

  .hero-content {
    grid-template-columns: 1fr;
    justify-items: start;
  }

.launch-card {
    border-radius: 22px 22px 0 0;
    width: 100%;
}

  .launch-body h1 {
    font-size: 23px;
  }

  .price-badge,
  .green-btn {
    width: 100%;
    min-width: 0;
  }

  .scroll-down {
    display: none;
  }

  .section-white,
  .section-grey {
    padding: 52px 20px;
  }

  h2 {
    font-size: 30px;
    line-height: 1.18;
  }

 .section-copy h2, .amenities h2 {
    text-align: center;
    font-size: 23px;
}

  .section-copy h3 {
    text-align: center;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
  }

.section-copy p, .wide-text, .location-intro {
    font-size: 15px;
    line-height: 28px;
    text-align: left;
}

.highlights h2, .pricing h2, .plans h2, .location h2 {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 22px;
}
.location h2, .investment h2, .gallery h2, .faq h2 {
    font-size: 23px;
    line-height: 1.2;
}

  .highlight-grid,
  .pricing-grid,
  .gallery-grid,
  .check-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    gap: 22px;
  }

  .highlight-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .highlight-item span {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .highlight-item p {
    min-height: 64px;
    padding: 16px 24px;
    font-size: 22px;
    line-height: 1.35;
  }

  .pricing-grid {
    gap: 24px;
  }

  .pricing article {
    min-height: 242px;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .pricing h3 {
    font-size: 25px;
  }

  .pricing strong {
    font-size: 24px;
  }

  .pricing p {
    font-size: 24px;
    text-transform: uppercase;
  }

  .pricing button {
    min-height: 64px;
    min-width: 270px;
    border-radius: 34px;
    font-size: 18px;
    text-transform: uppercase;
  }

  .small-title {
    text-align: center;
    font-size: 20px;
  }

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

  .amenity-grid figure {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .amenity-icon {
    width: 70px;
    height: 70px;
  }

  .amenity-icon svg {
    width: 30px;
    height: 30px;
  }

  .amenity-grid figcaption {
    padding: 0 4px;
    font-size: 15px;
    font-weight: 500;
  }

  .plan-tabs {
    gap: 26px;
  }

  .plan-tabs button {
    min-height: 46px;
    padding: 0 18px;
    font-size: 20px;
  }

  .plan-panel {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  }

  .plan-panel img {
    max-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .plan-panel h3 {
    padding: 24px 10px;
    border-top: 1px solid #ddd;
    font-size: 24px;
  }

  .floor-card {
    margin-bottom: 24px;
    border-radius: 22px;
  }

  .floor-card h3 {
    padding: 24px 10px;
    font-size: 24px;
  }

  .floor-view-btn {
    min-width: 226px;
    min-height: 58px;
    padding: 0 20px;
    font-size: 20px;
  }

  .investment-intro {
    font-size: 21px;
    line-height: 1.6;
    text-align: left;
  }

  .location-grid > img{
    width:100%;
    height:auto;
    object-fit:contain;
    object-position:center;
}

  .accordion {
    order: 1;
    box-shadow: none;
  }

.accordion h3 {
    padding: 16px 18px;
    font-size: 15px;
}

.accordion ul {
    padding: 0 34px 18px;
    font-size: 15px;
    line-height: 1.7;
}

  .check-grid {
    gap: 0;
  }

  .check-grid p {
    padding: 18px 0;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    background: transparent;
    font-size: 20px;
    line-height: 1.35;
  }

  .gallery-grid img {
    height: 225px;
    border-radius: 20px;
    box-shadow: none;
  }

  .contact-band {
    padding: 0;
  }

  .contact-band h2,
  .contact-band p {
    color: #111;
    text-align: center;
  }

.contact-band h2 {
    font-size: 23px;
}

  .contact-band p {
    font-size: 21px;
    line-height: 1.45;
  }

  .bottom-actions {
    right: 0;
    bottom: 0;
    left: 0;
    gap: 0;
  }

  .bottom-actions button {
    flex: 1;
    border-radius: 0;
  }

  footer {
    padding-bottom: 94px;
  }
}
/* Privacy Policy Page */

.privacy-page{
    padding:120px 20px 80px;
    background:#f8f8f8;
}

.privacy-page .container{
    max-width:1100px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.privacy-page h1{
    text-align:center;
    font-size:42px;
    margin-bottom:30px;
}

.privacy-page h2{
    margin-top:35px;
    margin-bottom:15px;
    color:#2f5e35;
    font-size:28px;
}

.privacy-page p{
    line-height:1.9;
    font-size:17px;
    color:#555;
    margin-bottom:20px;
}
/* Thank You Page */

.thank-you-page{
    padding:120px 20px 80px;
    background:#f7f7f7;
    min-height:70vh;
}

.thank-you-box{
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.thank-you-box h1{
    font-size:42px;
    color:#2f5e35;
    margin-bottom:20px;
}

.thank-you-box p{
    font-size:18px;
    color:#555;
    line-height:1.8;
    margin-bottom:15px;
}

.back-home-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 30px;
    background:#2f5e35;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
}

.back-home-btn:hover{
    background:#23492a;
}