:root {
  --green: #0c5b4a;
  --deep: #07362f;
  --lime: #b9d65b;
  --mint: #eaf4df;
  --paper: #f8f5ee;
  --ink: #1f2a26;
  --muted: #68756f;
  --line: rgba(12, 91, 74, 0.18);
  --shadow: 0 18px 46px rgba(12, 48, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
}

button,
input,
select {
  font: inherit;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 5vw;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0));
}

.site-header.scrolled {
  background: rgba(7, 54, 47, 0.96);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.brand img {
  width: 154px;
  min-width: 154px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  font-size: 14px;
}

.main-nav a {
  opacity: 0.9;
}

.nav-cta,
.hero-actions button,
.offer-panel button,
.brochure-band button,
.floor-card button,
.lead-form button,
.sticky-actions button {
  border: 0;
  color: var(--deep);
  background: var(--lime);
  border-radius: 4px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 37, 32, 0.88),
    rgba(4, 37, 32, 0.35) 48%,
    rgba(4, 37, 32, 0.05)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 92vw);
  margin: 0 5vw 8vh;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}

.hero .eyebrow {
  color: var(--lime);
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  line-height: 1.45;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.hero-facts span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 4px;
}

.hero-actions,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions a,
.pill-row a,
.outline-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 10px 16px;
  font-weight: 700;
}

section {
  padding: 88px 5vw;
}

.offer,
.location,
.contact,
.rera,
.tour {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 44px;
  align-items: center;
}

.section-copy h2,
.section-title h2 {
  max-width: 900px;
}

.section-copy p:not(.eyebrow),
.section-title p:not(.eyebrow),
.about-text,
.location p,
.contact p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.offer-panel,
.map-card,
.emi-result,
.floor-card,
.amenity-categories article,
.rera-cards article,
.lead-form,
.brochure-band {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.offer-panel {
  padding: 30px;
}

.offer-panel span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.offer-panel strong {
  display: block;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 22px;
}

.expect {
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 14px;
  margin: 34px 0;
}

.stats-grid article {
  min-height: 156px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mint);
}

.stats-grid img {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
}

.stats-grid span,
.emi-result span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.stats-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--deep);
  font-size: 19px;
  line-height: 1.25;
}

.about-text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.bank-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.bank-strip img {
  max-height: 42px;
  width: auto;
}

.brochure-band {
  margin: 0 5vw 44px;
  padding: 24px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
}

.brochure-band img {
  width: 120px;
  height: 88px;
  object-fit: cover;
  border-radius: 6px;
}

.brochure-band h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.floor-plans,
.tour,
.status,
.faq {
  background: #fff;
}

.floor-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 28px;
}

.floor-card img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.floor-card p {
  color: var(--muted);
  line-height: 1.6;
}

.emi-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}

.emi-result {
  padding: 32px;
  background: var(--deep);
  color: #fff;
}

.emi-result span,
.emi-result p {
  color: rgba(255, 255, 255, 0.74);
}

.emi-result strong {
  display: block;
  margin: 14px 0 20px;
  color: var(--lime);
  font-size: clamp(34px, 5vw, 54px);
}

.controls {
  display: grid;
  gap: 22px;
  padding: 32px;
  background: var(--mint);
  border-radius: 8px;
}

.controls label {
  display: grid;
  gap: 12px;
  color: var(--deep);
  font-weight: 700;
}

.controls label strong {
  color: var(--muted);
  font-size: 15px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--green);
}

.tour-image img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 8px;
}

.amenities {
  background: var(--deep);
  color: #fff;
}

.amenities .eyebrow {
  color: var(--lime);
}

.amenities .section-title p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.amenity-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0;
}

.amenity-categories article {
  min-height: 210px;
  padding: 24px;
  color: var(--ink);
}

.amenity-categories p {
  color: var(--muted);
  line-height: 1.6;
}

.location {
  background: var(--mint);
}

.map-card {
  padding: 34px;
}

.map-card img {
  width: 54px;
  margin-bottom: 22px;
}

.map-card strong,
.map-card span {
  display: block;
  line-height: 1.5;
}

.map-card span {
  margin-top: 8px;
  color: var(--muted);
}

.status img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 26px;
}

.rera {
  background: var(--paper);
}

.rera-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rera-cards article {
  padding: 20px;
  text-align: center;
}

.rera-cards img {
  width: 120px;
  height: 120px;
  margin: 0 auto 14px;
}

.contact {
  background: var(--deep);
  color: #fff;
}

.contact .eyebrow {
  color: var(--lime);
}

.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
}

.form-note {
  display: none;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.lead-form.submitted .form-note {
  display: block;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--deep);
  font-weight: 700;
  font-size: 18px;
}

.faq-list p {
  color: var(--muted);
  line-height: 1.65;
  margin: 14px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 5vw 86px;
  color: #fff;
  background: #062b25;
}

.site-footer img {
  width: 150px;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.sticky-actions {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 19;
  display: none;
  grid-template-columns: 1fr 1.4fr 1fr;
  width: min(520px, calc(100vw - 24px));
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.sticky-actions a,
.sticky-actions button {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: 0;
  border: 0;
  color: #fff;
  background: var(--green);
  font-weight: 700;
}

.sticky-actions button {
  color: var(--deep);
  background: var(--lime);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal.open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 22, 19, 0.72);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.modal-panel > img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.modal-panel h2 {
  margin: 22px 24px 0;
  font-size: 28px;
}

.modal-panel .lead-form {
  border: 0;
  box-shadow: none;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

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

  .offer,
  .location,
  .contact,
  .rera,
  .tour,
  .floor-card,
  .emi-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 122px;
    min-width: 122px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(4, 37, 32, 0.35),
      rgba(4, 37, 32, 0.9)
    );
  }

  .hero-content {
    margin: 0 20px 90px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  section {
    padding: 58px 20px;
  }

  .stats-grid,
  .about-text,
  .amenity-categories,
  .rera-cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }

  .brochure-band {
    margin: 0 20px 28px;
    grid-template-columns: 1fr;
  }

  .floor-card {
    padding: 18px;
  }

  .site-footer {
    display: block;
    padding-bottom: 104px;
  }

  .footer-links {
    margin-top: 22px;
  }

  .sticky-actions {
    display: grid;
  }
}
