:root {
  --ink: #1c2430;
  --muted: #667085;
  --line: #d9ded8;
  --paper: #f7f4ed;
  --white: #ffffff;
  --forest: #224236;
  --leaf: #6d8f72;
  --gold: #c68a35;
  --clay: #b86f4d;
  --shadow: 0 22px 60px rgba(20, 34, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(34, 66, 54, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--forest);
  background: url(..//logo.png) ;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: #344054;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--forest);
}

.header-cta,
.primary-btn,
.secondary-btn,
.price-card button,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.header-cta,
.primary-btn,
.price-card button,
.lead-form button {
  color: var(--white);
  background: var(--forest);
}

.secondary-btn {
  color: var(--forest);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 132px clamp(18px, 5vw, 64px) 56px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 37, 31, 0.88), rgba(18, 37, 31, 0.28)),
    url(".//birla-evam.jpg")
      center / cover;
}

.hero-content {
  position: relative;
  width: min(1080px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: #f1c376;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 840px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.offer-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.offer-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 1px;
  width: min(920px, 100%);
  margin-top: 52px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow);
}

.hero-stats article {
  min-height: 112px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

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

.hero-stats strong {
  color: var(--forest);
  font-size: 24px;
}

.hero-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

section {
  padding: 86px clamp(18px, 5vw, 64px);
}

.intro-section,
.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-heading p,
.payment-panel p,
.enquiry-copy p,
footer p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.quick-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-card dl {
  display: grid;
  gap: 24px;
  margin: 0;
}

.quick-card div {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.quick-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.quick-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.quick-card dd {
  margin: 8px 0 0;
  color: var(--forest);
  font-size: 20px;
  font-weight: 800;
}

.price-section {
  background: var(--white);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.price-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.price-card.featured {
  border-color: rgba(198, 138, 53, 0.55);
  box-shadow: var(--shadow);
}

.tag {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #7a4c18;
  background: #fff0d8;
  font-size: 12px;
  font-weight: 800;
}

.area {
  margin: 12px 0;
  color: var(--muted);
}

.price {
  margin: 20px 0 26px;
  color: var(--forest);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1;
}

.payment-section {
  color: var(--white);
  background: var(--forest);
}

.payment-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.payment-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.payment-steps {
  display: grid;
  gap: 18px;
}

.payment-steps article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.payment-steps strong {
  display: block;
  color: #f6c978;
  font-size: 56px;
  line-height: 1;
}

.payment-steps span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
}

.payment-cta {
  min-height: 48px;
  margin-top: 22px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  color: var(--forest);
  background: #f6c978;
  cursor: pointer;
  font-weight: 800;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.amenity-grid article {
  overflow: hidden;
  min-height: 270px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.amenity-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.amenity-grid h3 {
  padding: 18px;
  font-size: 18px;
}

.connectivity-list {
  display: grid;
  gap: 14px;
}

.connectivity-list span {
  padding: 20px 22px;
  background: var(--white);
  border-left: 5px solid var(--clay);
  border-radius: 4px;
  box-shadow: 0 12px 34px rgba(35, 45, 38, 0.08);
  font-weight: 800;
}

.enquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(34, 66, 54, 0.92), rgba(34, 66, 54, 0.72)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=80")
      center / cover;
}

.enquiry-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #cfd7cf;
  border-radius: 4px;
  color: var(--ink);
  font: inherit;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-weight: 500 !important;
}

.consent input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

.sticky-actions {
  position: fixed;
  z-index: 9;
  left: 50%;
  bottom: 16px;
  display: flex;
  overflow: hidden;
  width: min(520px, calc(100% - 28px));
  transform: translateX(-50%);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(16, 27, 23, 0.24);
}

.sticky-actions a,
.sticky-actions button {
  flex: 1;
  min-height: 52px;
  border: 0;
  color: var(--white);
  background: var(--forest);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.sticky-actions a {
  display: grid;
  place-items: center;
}

.sticky-actions a + button,
.sticky-actions button + a {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.modal-backdrop {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(11, 20, 17, 0.68);
}

.modal-backdrop.is-open {
  display: flex;
}

.modal-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 24px;
  width: min(860px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 30px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #eef2ef;
  cursor: pointer;
  font-weight: 800;
}

.modal-copy {
  align-self: center;
}

.modal-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.popup-form {
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: none;
}

body.modal-open {
  overflow: hidden;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 5vw, 64px);
  background: #101b17;
}

footer p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

@media (max-width: 920px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
    padding-top: 74px;
  }

  .hero-stats,
  .intro-section,
  .payment-panel,
  .location-section,
  .enquiry-section {
    grid-template-columns: 1fr;
  }

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

  .modal-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-cta {
    display: none;
  }

  .hero {
    padding-bottom: 34px;
  }

  .hero-stats,
  .price-grid,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

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

  .price-card,
  .quick-card,
  .lead-form {
    padding: 24px;
  }

  footer {
    display: grid;
    padding-bottom: 92px;
  }

  .modal-card {
    padding: 24px;
  }
}

