:root {
  --stone: #f6f3ec;
  --stone-2: #efeadd;
  --sand: #e7dfc9;
  --ink: #20261c;
  --ink-2: #3a4432;
  --sage: #5f7355;
  --sage-deep: #333f2c;
  --terracotta: #bd6a45;
  --brass: #a6884f;
  --line: rgba(32, 38, 28, 0.14);
  --radius: 2px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--stone);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: 1240px;
  margin: 0 auto;
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--terracotta);
  display: inline-block;
}
.devanagari {
  font-family: "Noto Sans Devanagari", sans-serif;
}
button {
  font-family: "Inter", sans-serif;
  cursor: pointer;
  border: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 25px;
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: all 0.25s ease;
}
.btn:hover {
  background: var(--ink);
  color: var(--stone);
}
.btn-solid {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-solid:hover {
  background: var(--ink);
  color: var(--stone);
}
.btn-light {
  border-color: rgba(246, 243, 236, 0.5);
  color: var(--stone);
}
.btn-light:hover {
  background: var(--stone);
  color: var(--ink);
}

/* Performance: avoid inline-gap quirks now that images are wrapped in <picture> */
picture {
  display: block;
  height: 100%;
}

/* ---------- HEADER ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 236, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease,
    background 0.35s ease;
  will-change: transform;
}
header.is-scrolled {
  box-shadow: 0 10px 30px -18px rgba(32, 38, 28, 0.28);
  background: rgba(246, 243, 236, 0.97);
}
header.header-hidden {
  transform: translateY(-100%);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
}
.logo-text {
  font-family: "Fraunces", serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.logo-text span {
  display: block;
  font-family: "Inter";
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
}
nav.links {
  display: flex;
  align-items: center;
  gap: 34px;
}
nav.links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    border-color 0.25s ease,
    + color 0.25s ease,
    + background 0.25s ease;
}
nav.links a:hover,
nav.links a.active {
  color: var(--stone);
  border-color: var(--ink);
  background-color: var(--ink);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---------- HERO (home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0 0;
  background: var(--stone);
}
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  font-family: "Noto Sans Devanagari";
  font-size: 320px;
  line-height: 1;
  color: var(--sand);
  z-index: 0;
  user-select: none;
  pointer-events: none;
  opacity: 0.6;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 70px;
}
.hero-ring {
  position: absolute;
  left: -60px;
  top: 40%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid var(--sage);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  animation: breathe 7s ease-in-out infinite;
}
.hero-ring.r2 {
  width: 460px;
  height: 460px;
  left: -120px;
  border-color: var(--brass);
  opacity: 0.3;
  animation-delay: 0.6s;
}
@keyframes breathe {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-50%) scale(1.06);
    opacity: 0.85;
  }
}
.hero-copy .eyebrow {
  margin-bottom: 22px;
}
.hero-copy h1 {
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.04;
  font-weight: 500;
  max-width: 12ch;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 400;
}
.hero-copy p.lead {
  margin-top: 24px;
  max-width: 44ch;
  font-size: 16.5px;
  color: var(--ink-2);
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stats div strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 30px;
  font-weight: 500;
}
.hero-stats div span {
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
}
.hero-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 70px -30px rgba(32, 38, 28, 0.35);
}
.hero-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-card:hover img {
  transform: scale(1.06);
}
.hero-card .tag {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--stone);
  padding: 7px 14px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-deep);
}
.hero-card .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px 26px 22px;
  color: #fff;
  background: linear-gradient(
    0deg,
    rgba(20, 24, 16, 0.82) 0%,
    rgba(20, 24, 16, 0.1) 100%
  );
}
.hero-card .info h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 6px;
}
.hero-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 12.5px;
  opacity: 0.9;
}

/* ---------- PAGE HEADER (inner pages) ---------- */
.page-header {
  position: relative;
  overflow: hidden;
  padding: 50px 0 90px;
  background: var(--sage-deep);
  color: var(--stone);
}
.page-header .hero-watermark {
  color: rgba(246, 243, 236, 0.08);
  left: auto;
  right: 30px;
}
.page-header .eyebrow {
  color: var(--brass);
}
.page-header .eyebrow::before {
  background: var(--brass);
}
.page-header h1 {
  color: var(--stone);
  font-size: clamp(34px, 4.4vw, 54px);
  max-width: 16ch;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}
.page-header p {
  color: var(--sand);
  max-width: 52ch;
  margin-top: 18px;
  font-size: 15.5px;
  position: relative;
  z-index: 1;
}

/* ---------- MARQUEE ---------- */
.marquee-strip {
  background: var(--sage-deep);
  color: var(--stone);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(246, 243, 236, 0.15);
  border-bottom: 1px solid rgba(246, 243, 236, 0.15);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 26s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: "Fraunces", serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  font-weight: 400;
  opacity: 0.9;
}
.marquee-track span em {
  color: var(--brass);
  font-style: normal;
  padding: 0 8px;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- SECTION GENERIC ---------- */
section {
  padding: 50px 0;
}
.section-head {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
}
.section-head::after {
  content: "";
  flex: 1 1 auto;
  min-width: 40px;
  height: 1px;
  align-self: flex-end;
  margin-bottom: 8px;
  background: var(--line);
}
.section-head h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 500;
  max-width: 14ch;
  flex: 0 0 auto;
}
.section-head p {
  position: relative;
  max-width: 34ch;
  padding-left: 28px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  flex: 0 1 auto;
}
.section-head p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 1px;
  background: var(--line);
}

/* ---------- LEGACY / ABOUT ---------- */
.legacy {
  background: var(--sage-deep);
  color: var(--stone);
  position: relative;
  overflow: hidden;
}
.legacy .wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.legacy-number {
  position: relative;
}
.legacy-number .big {
  font-family: "Fraunces", serif;
  font-size: clamp(120px, 14vw, 220px);
  font-weight: 300;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--brass);
}
.legacy-number .label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 10px;
  color: var(--sand);
}
.legacy-copy .eyebrow {
  color: var(--brass);
}
.legacy-copy .eyebrow::before {
  background: var(--brass);
}
.legacy-copy h2 {
  color: var(--stone);
  margin-top: 20px;
  font-size: clamp(26px, 3vw, 36px);
  max-width: 16ch;
}
.legacy-copy p {
  margin-top: 22px;
  color: var(--sand);
  max-width: 56ch;
  font-size: 15.5px;
}
.legacy-copy .btn {
  margin-top: 30px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.value-card {
  background: var(--stone-2);
  padding: 40px 32px;
}
.value-card .num {
  font-family: "Fraunces", serif;
  font-size: 14px;
  color: var(--terracotta);
  margin-bottom: 22px;
}
.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  color: var(--ink-2);
  max-width: 34ch;
}

/* ---------- PROJECTS ---------- */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  padding: 9px 20px;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-2);
  transition: all 0.2s ease;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--stone);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.project-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -30px rgba(32, 38, 28, 0.3);
}
.project-thumb {
  position: relative;
  height: 230px;
  overflow: hidden;
}
img[alt="Shantam 01"] {
  object-position: center 30%;
}
.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-thumb img {
  transform: scale(1.06);
}
.status-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(246, 243, 236, 0.95);
  padding: 6px 12px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--sage-deep);
}
.project-body {
  padding: 24px;
}
.project-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.project-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.project-meta div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}
.project-link {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.project-link:hover {
  color: var(--terracotta);
}

/* ---------- OPPORTUNITIES ---------- */
.opps {
  background: var(--stone-2);
}
.opp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.opp-card {
  background: var(--stone-2);
  padding: 44px 34px;
  transition: background 0.25s ease;
}
.opp-card:hover {
  background: var(--stone);
}
.opp-card .num {
  font-family: "Fraunces", serif;
  font-size: 14px;
  color: var(--terracotta);
  margin-bottom: 26px;
}
.opp-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}
.opp-card p {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 26px;
  max-width: 34ch;
}

/* ---------- CONTACT PAGE ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
}
.contact-info h2 {
  font-size: clamp(26px, 3vw, 34px);
  max-width: 14ch;
  margin-bottom: 20px;
}
.contact-info p.lead {
  color: var(--ink-2);
  font-size: 15px;
  max-width: 40ch;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
  padding: 12px;
  margin-left: -12px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.contact-detail:hover {
  background: var(--stone-2);
  transform: translateX(5px);
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.contact-detail h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  font-family: "Inter";
  font-weight: 700;
  color: var(--ink-2);
}

.contact-detail p,
.contact-detail a {
  font-size: 15px;
  color: var(--ink);
}
.contact-form {
  padding: 0;
}
.ghl-form-wrap {
  width: 100%;
  min-height: 735px;
}
.ghl-form-wrap iframe {
  display: block;
  min-height: 735px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--line);
  background: var(--stone);
  padding: 13px 14px;
  font-family: "Inter";
  font-size: 14.5px;
  color: var(--ink);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.contact-form button[type="submit"] {
  width: 100%;
  margin-top: 8px;
  padding: 16px 26px;
}
.form-status {
  margin-top: 16px;
  font-size: 13.5px;
  display: none;
}
.form-status.success {
  display: block;
  color: var(--sage-deep);
  font-weight: 600;
}
.form-status.error {
  display: block;
  color: var(--terracotta);
  font-weight: 600;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--ink);
  color: var(--stone);
  padding: 50px 0;
  text-align: center;
  position: relative;
}
.cta-band .devanagari {
  font-size: 15px;
  color: var(--brass);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  display: block;
}
.cta-band h2 {
  color: var(--stone);
  font-size: clamp(30px, 4vw, 50px);
  max-width: 16ch;
  margin: 0 auto 30px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- PROJECT DETAIL PAGE ---------- */
.project-hero {
  position: relative;
  overflow: hidden;
  background: var(--sage-deep);
  color: var(--stone);
  padding: 50px 0 0;
}
.project-hero .hero-watermark {
  color: rgba(246, 243, 236, 0.08);
  left: auto;
  right: 30px;
}
.project-hero-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.project-hero-top .hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  font-size: 130px;
  z-index: 0;
}
@media (max-width: 640px) {
  .project-hero-top .hero-watermark {
    display: none;
  }
}
.project-hero-top .eyebrow {
  color: var(--brass);
}
.project-hero-top .eyebrow::before {
  background: var(--brass);
}
.project-hero-top h1 {
  color: var(--stone);
  font-size: clamp(32px, 4.2vw, 52px);
  margin-top: 16px;
  max-width: 20ch;
}
.project-hero-top .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(246, 243, 236, 0.35);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sand);
  white-space: nowrap;
}
.project-hero-top .status-pill .dot {
  width: 7px;
  height: 7px;
  background: var(--terracotta);
}
.project-hero-media {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.45);
}
.project-hero-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* quick facts strip */
.quick-facts {
  background: var(--ink);
  color: var(--stone);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(246, 243, 236, 0.14);
}
.fact {
  background: var(--ink);
  padding: 30px 28px;
}
.fact .label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 10px;
}
.fact .value {
  font-family: "Fraunces", serif;
  font-size: 19px;
  color: var(--stone);
}

/* detail layout: content + sticky enquiry sidebar */
.detail-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 60px;
  align-items: start;
}
.detail-block {
  margin-bottom: 64px;
}
.detail-block:last-child {
  margin-bottom: 0;
}
.detail-block h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 18px;
}
.detail-block > p {
  color: var(--ink-2);
  font-size: 15px;
  max-width: 62ch;
}

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}
.gallery-grid .g-wide {
  grid-column: 1 / -1;
  height: 260px;
}
.gallery-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-2);
  opacity: 0.75;
}

.gallery-grid-shlok {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.gallery-grid-shlok img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}
.gallery-grid-shlok .g-wide {
  grid-column: 1 / -1;
  height: 260px;
}

/* amenities */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--stone-2);
  border: 1px solid var(--line);
  padding: 16px 18px;
  font-size: 14px;
  color: var(--ink);
}
.amenity .ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--stone);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* specs table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.spec-table tr {
  border-bottom: 1px solid var(--line);
}
.spec-table tr:last-child {
  border-bottom: none;
}
.spec-table td {
  padding: 14px 4px;
  color: var(--ink-2);
}
.spec-table td:first-child {
  color: var(--ink);
  font-weight: 600;
  width: 38%;
}

/* location list */
.location-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.location-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
  align-items: baseline;
}
.location-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  transform: translateY(-2px);
}

/* rera strip */
.rera-strip {
  background: var(--stone-2);
  border: 1px dashed var(--line);
  padding: 18px 22px;
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 10px;
}
.rera-strip strong {
  color: var(--ink);
}

/* sticky enquiry sidebar */
.detail-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  padding: 0;
}
.sidebar-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.sidebar-card p.sub {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.sidebar-card .form-group {
  margin-bottom: 16px;
}
.sidebar-card button[type="submit"] {
  width: 100%;
  margin-top: 4px;
}
.sidebar-contact {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-contact a {
  font-size: 13.5px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-contact a:hover {
  color: var(--sage-deep);
}

@media (max-width: 980px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .detail-sidebar {
    position: static;
  }
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid,
  .amenity-grid {
    grid-template-columns: 1fr;
  }
  .project-hero-media img {
    height: 320px;
  }
}
@media (max-width: 640px) {
  .project-hero {
    padding: 120px 0 0;
  }
  .fact {
    padding: 22px 20px;
  }
  .project-hero-media img {
    height: 240px;
  }
  .gallery-grid img,
  .gallery-grid-shlok img,
  .gallery-grid .g-wide,
  .gallery-grid-shlok .g-wide {
    height: 210px;
  }
}
@media (max-width: 400px) {
  .facts-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--sage-deep);
  color: var(--sand);
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(246, 243, 236, 0.15);
}
.footer-brand .logo-text,
.footer-brand .logo-text span {
  color: var(--stone);
}
.footer-logo-plate {
  background: var(--stone);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.footer-brand p {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--sand);
  max-width: 34ch;
  opacity: 0.85;
}
.footer-col h4 {
  color: var(--stone);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: "Inter";
  font-weight: 700;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--sand);
  opacity: 0.85;
  margin-bottom: 12px;
  transition: opacity 0.2s;
}
.footer-col a:hover {
  opacity: 1;
  color: var(--brass);
}
.footer-contact div {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: var(--sand);
  opacity: 0.9;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact .contact-link {
  display: block;
  color: inherit;
  text-decoration: none;
  margin: 10px 0;
  transition: color 0.3s ease;
}

.footer-contact .contact-link:hover {
  color: #f4b400; /* Change to your theme color */
}
.newsletter {
  display: flex;
  margin-top: 16px;
  border: 1px solid rgba(246, 243, 236, 0.3);
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 14px;
  color: var(--stone);
  font-size: 13px;
}
.newsletter input::placeholder {
  color: rgba(246, 243, 236, 0.5);
}
.newsletter button {
  background: var(--brass);
  color: var(--ink);
  padding: 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12.5px;
  color: var(--sand);
  opacity: 0.7;
}
.socials {
  display: flex;
  gap: 14px;
}
.socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(246, 243, 236, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--sand);
}
.socials a:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }
  .hero-ring {
    display: none;
  }
  .legacy .wrap {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .opp-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .opp-card:last-child {
    padding-bottom: 70px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  nav.links {
    display: none;
  }
  nav.links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--stone);
    padding: 8px 32px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(32, 38, 28, 0.08);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
  }
  nav.links.open a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid var(--line);
  }
  nav.links.open a:last-child {
    border-bottom: none;
  }
  nav.links.open a.active {
    border-radius: 999px;
    border-bottom: none;
  }
  /* Once collapsed, the pill "Contact Us" button and the hamburger were
     fighting for space next to the logo, which is what was crowding the
     header on phones. "Contact" already lives in the menu, so on mobile
     we drop the duplicate button and keep only the hamburger. */
  .nav-cta .btn-solid {
    display: none;
  }
  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 50%;
  }
  .nav-toggle:active {
    background: rgba(32, 38, 28, 0.06);
  }
  body.nav-open {
    overflow: hidden;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
  section {
    padding: 70px 0;
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-watermark {
    font-size: 220px;
  }
  .hero-card img {
    height: 340px;
  }
  .hero-card .info h3 {
    font-size: 20px;
  }
  .page-header {
    padding: 130px 0 60px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .section-head::after {
    display: none;
  }
  .section-head p {
    padding-left: 0;
    max-width: none;
  }
  .section-head p::before {
    display: none;
  }

  /* --- Nav: give logo room, keep header from crowding --- */
  .nav {
    padding: 8px 0;
  }
  .logo-mark-img {
    width: 34px;
    height: 34px;
  }
  .logo-text {
    font-size: 16px;
  }
  .nav-cta {
    gap: 12px;
  }
  .nav-cta .btn {
    padding: 10px 16px;
    font-size: 11.5px;
  }

  /* --- Hero: stop stats from crowding/overflowing --- */
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 22px;
  }
  .hero-stats div strong {
    font-size: 26px;
  }
  .hero-actions {
    width: 100%;
  }
  .hero-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  /* --- Cards & grids: comfortable padding on small screens --- */
  .value-card,
  .opp-card {
    padding: 32px 24px;
  }
  .project-thumb {
    height: 200px;
  }
  .contact-detail {
    gap: 14px;
  }

  /* --- Opportunities: less dead space before the CTA band --- */
  .opps {
    padding-bottom: 30px;
  }
  .opp-card:last-child {
    padding-bottom: 90px;
  }

  /* --- CTA band --- */
  .cta-band {
    padding: 64px 0;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-actions .btn {
    justify-content: center;
  }

  /* --- Footer --- */
  .newsletter {
    flex-direction: column;
    border: none;
    gap: 10px;
  }
  .newsletter input {
    border: 1px solid rgba(246, 243, 236, 0.3);
    padding: 12px 14px;
  }
  .newsletter button {
    padding: 12px 18px;
    align-self: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* --- Forms: 16px stops iOS Safari auto-zooming on focus --- */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }

  /* --- Projects filter bar: allow horizontal scroll instead of wrap-crowding --- */
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    margin-bottom: 32px;
  }
  .filter-btn {
    flex-shrink: 0;
  }
}

/* ---------- EXTRA-SMALL PHONES ---------- */
@media (max-width: 400px) {
  .wrap {
    padding: 0 16px;
  }
  .logo-text span {
    display: none;
  }
  .hero-copy h1 {
    max-width: none;
  }
  .hero-watermark {
    font-size: 150px;
  }
  .legacy-number .big {
    font-size: 90px;
  }
  .hero-card img {
    height: 280px;
  }
  .hero-actions {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ring,
  .marquee-track {
    animation: none;
  }
}

/* Force-remove underline from all links in every state */
a,
a:link,
a:visited,
a:hover,
a:focus,
a:active {
  text-decoration: none !important;
}

/* ---------- WHATSAPP FLOAT BUTTON ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--sage-deep);
  box-shadow: 0 12px 28px -8px rgba(32, 38, 28, 0.45);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  background: var(--sage);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 34px -8px rgba(32, 38, 28, 0.5);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--stone);
}
.whatsapp-float .wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.55;
  animation: wa-ping 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: -1;
}
@keyframes wa-ping {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  75%,
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float .wa-pulse {
    animation: none;
  }
}
